remove duplicate aidls and blobs

This commit is contained in:
SaschaNes
2025-08-13 00:56:09 +02:00
parent fb2ac00da2
commit 9f87105940
2224 changed files with 7 additions and 568522 deletions

View File

@@ -1,28 +0,0 @@
cc_library_shared {
name: "libipanat",
header_libs: ["device_kernel_headers"]+["qti_kernel_headers"]+["qti_ipa_kernel_headers"],
srcs: [
"src/ipa_nat_map.cpp",
"src/ipa_table.c",
"src/ipa_nat_statemach.c",
"src/ipa_nat_drvi.c",
"src/ipa_nat_drv.c",
"src/ipa_mem_descriptor.c",
"src/ipa_nat_utils.c",
"src/ipa_ipv6ct.c",
],
shared_libs:
["libcutils",
"libdl",
"libbase",
"libutils",
],
export_include_dirs: ["inc"],
vendor: true,
cflags: ["-DDEBUG"] + ["-DFEATURE_IPA_ANDROID"] + ["-Wno-int-conversion"],
}

View File

@@ -1,26 +0,0 @@
Copyright (c) 2021 The Linux Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of The Linux Foundation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -1,159 +0,0 @@
/*
* Copyright (c) 2018, 2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_IPV6CT_H
#define IPA_IPV6CT_H
#include <stdint.h>
#include <stdbool.h>
#include <linux/msm_ipa.h>
/**
* enum ipa_ipv6_ct_direction_settings_type - direction filter settings
*
* IPA_IPV6CT_DIRECTION_DENY_ALL - deny inbound and outbound
* IPA_IPV6CT_DIRECTION_ALLOW_OUT - allow outbound and deny inbound
* IPA_IPV6CT_DIRECTION_ALLOW_IN - allow inbound and deny outbound
* IPA_IPV6CT_DIRECTION_ALLOW_ALL - allow inbound and outbound
*/
typedef enum
{
IPA_IPV6CT_DIRECTION_DENY_ALL = 0,
IPA_IPV6CT_DIRECTION_ALLOW_OUT = 1,
IPA_IPV6CT_DIRECTION_ALLOW_IN = 2,
IPA_IPV6CT_DIRECTION_ALLOW_ALL = 3
} ipa_ipv6_ct_direction_settings_type;
/**
* struct ipa_ipv6ct_rule - To hold IPv6CT rule
* @src_ipv6_lsb: source IPv6 address LSB
* @src_ipv6_msb: source IPv6 address MSB
* @dest_ipv6_lsb: destination IPv6 address LSB
* @dest_ipv6_msb: destination IPv6 address MSB
* @direction_settings: direction filter settings (inbound/outbound) (see ipa_ipv6_ct_direction_settings_type)
* @src_port: source port
* @dest_port: destination port
* @protocol: protocol of rule (tcp/udp)
* @uc_activation_index: index pointing to uc activation table
* @s: bit indication to use the system or local (1 or 0) addr for above table
* @ucp: enable uc processing
*/
typedef struct {
uint64_t src_ipv6_lsb;
uint64_t src_ipv6_msb;
uint64_t dest_ipv6_lsb;
uint64_t dest_ipv6_msb;
ipa_ipv6_ct_direction_settings_type direction_settings;
bool ucp;
bool s;
uint16_t uc_activation_index;
uint16_t src_port;
uint16_t dest_port;
uint8_t protocol;
} ipa_ipv6ct_rule;
/**
* ipa_ipv6ct_add_tbl() - create IPv6CT table
* @number_of_entries: [in] number of IPv6CT entries
* @table_handle: [out] handle of new IPv6CT table
*
* To create new IPv6CT table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_add_tbl(uint16_t number_of_entries, uint32_t* table_handle);
/**
* ipa_ipv6ct_del_tbl() - delete IPv6CT table
* @table_handle: [in] Handle of IPv6CT table
*
* To delete given IPv6CT table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_del_tbl(uint32_t table_handle);
/**
* ipa_ipv6ct_add_rule() - to insert new IPv6CT rule
* @table_handle: [in] handle of IPv6CT table
* @user_rule: [in] Pointer to new rule
* @rule_handle: [out] Return the handle to rule
*
* To insert new rule into a IPv6CT table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_add_rule(uint32_t table_handle, const ipa_ipv6ct_rule* user_rule, uint32_t* rule_handle);
/**
* ipa_ipv6ct_del_rule() - to delete IPv6CT rule
* @table_handle: [in] handle of IPv6CT table
* @rule_handle: [in] IPv6CT rule handle
*
* To delete a rule from a IPv6CT table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_del_rule(uint32_t table_handle, uint32_t rule_handle);
/**
* ipa_ipv6ct_query_timestamp() - to query timestamp
* @table_handle: [in] handle of IPv6CT table
* @rule_handle: [in] IPv6CT rule handle
* @time_stamp: [out] time stamp of rule
*
* To retrieve the timestamp that lastly the IPv6CT rule was accessed
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_query_timestamp(uint32_t table_handle, uint32_t rule_handle, uint32_t* time_stamp);
/**
* ipa_ipv6ct_dump_table() - dumps IPv6CT table
* @table_handle: [in] handle of IPv6CT table
*/
void ipa_ipv6ct_dump_table(uint32_t tbl_hdl);
/**
* ipa_ipv6ct_add_uc_act_entry() - add uc activation entry
* @u: [in] structure specifying the uC activation entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_add_uc_act_entry(union ipa_ioc_uc_activation_entry *u);
/**
* ipa_ipv6ct_del_uc_act_entry() - del uc activation entry
* @index: [in] index of the uc activation entry to be removed
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_del_uc_act_entry(uint16_t index);
#endif

View File

@@ -1,151 +0,0 @@
/*
* Copyright (c) 2018, 2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_IPV6CTI_H
#define IPA_IPV6CTI_H
#include "ipa_table.h"
#include "ipa_mem_descriptor.h"
#include "ipa_nat_utils.h"
#define IPA_IPV6CT_MAX_TBLS 1
#define IPA_IPV6CT_RULE_FLAG_FIELD_OFFSET 34
#define IPA_IPV6CT_RULE_NEXT_FIELD_OFFSET 40
#define IPA_IPV6CT_RULE_PROTO_FIELD_OFFSET 38
#define IPA_IPV6CT_FLAG_ENABLE_BIT 1
#define IPA_IPV6CT_DIRECTION_ALLOW_BIT 1
#define IPA_IPV6CT_DIRECTION_DISALLOW_BIT 0
#define IPA_IPV6CT_INVALID_PROTO_FIELD_VALUE 0xFF00
#define IPA_IPV6CT_INVALID_PROTO_FIELD_CMP 0xFF
typedef enum
{
IPA_IPV6CT_TABLE_FLAGS,
IPA_IPV6CT_TABLE_NEXT_INDEX,
IPA_IPV6CT_TABLE_PROTOCOL,
IPA_IPV6CT_TABLE_DMA_CMD_MAX
} ipa_ipv6ct_table_dma_cmd_type;
/*------------------------ IPV6CT Table Entry ---------------------------------------------------
-------------------------------------------------------------------------------------------------
| 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
---------------------------------------------------------------------------------------------------
| Outbound Src IPv6 Address (8 LSB Bytes) |
---------------------------------------------------------------------------------------------------
| Outbound Src IPv6 Address (8 MSB Bytes) |
---------------------------------------------------------------------------------------------------
| Outbound Dest IPv6 Address (8 LSB Bytes) |
---------------------------------------------------------------------------------------------------
| Outbound Dest IPv6 Address (8 MSB Bytes) |
---------------------------------------------------------------------------------------------------
| Protocol | TimeStamp (3B) | Flags (2B) |Rsvd |S |uC activatio|
| (1B) | |Enable|Redirect|Resv |[15:14]|13|Index [12:0]|
---------------------------------------------------------------------------------------------------
|Reserved |Settings | Src Port (2B) | Dest Port (2B) | Next Index (2B) |
| (1B) | (1B) | | | |
---------------------------------------------------------------------------------------------------
| SW Specific Parameters(4B) | Reserved (4B) |
| Prev Index (2B) | Reserved (2B) | |
---------------------------------------------------------------------------------------------------
| Reserved (8B) |
---------------------------------------------------------------------------------------------------
Settings(1B)
-----------------------------------------------
|IN Allowed|OUT Allowed|Reserved|uC processing|
|[7:7] |[6:6] |[5:1] |[0:0] |
-----------------------------------------------
Dont change below structure definition.
It should be same as above(little endian order)
-------------------------------------------------------------------------------------------------*/
typedef struct
{
uint64_t src_ipv6_lsb : 64;
uint64_t src_ipv6_msb : 64;
uint64_t dest_ipv6_lsb : 64;
uint64_t dest_ipv6_msb : 64;
uint64_t uc_activation_index : 13;
uint64_t s : 1;
uint64_t rsvd1 : 16;
uint64_t redirect : 1;
uint64_t enable : 1;
uint64_t time_stamp : 24;
uint64_t protocol : 8;
uint64_t next_index : 16;
uint64_t dest_port : 16;
uint64_t src_port : 16;
uint64_t ucp : 1;
uint64_t rsvd2 : 5;
uint64_t out_allowed : 1;
uint64_t in_allowed : 1;
uint64_t rsvd3 : 8;
uint64_t rsvd4 : 48;
uint64_t prev_index : 16;
uint64_t rsvd5 : 64;
} ipa_ipv6ct_hw_entry;
/*
----------------------
| 1 | 0 |
----------------------
| Flags(2B) |
|Enable|Redirect|Resv|
----------------------
*/
typedef struct
{
uint16_t rsvd1 : 14;
uint16_t redirect : 1;
uint16_t enable : 1;
} ipa_ipv6ct_flags;
typedef struct
{
ipa_mem_descriptor mem_desc;
ipa_table table;
ipa_table_dma_cmd_helper table_dma_cmd_helpers[IPA_IPV6CT_TABLE_DMA_CMD_MAX];
} ipa_ipv6ct_table;
typedef struct
{
ipa_descriptor* ipa_desc;
ipa_ipv6ct_table tables[IPA_IPV6CT_MAX_TBLS];
uint8_t table_cnt;
} ipa_ipv6ct;
#endif

View File

@@ -1,71 +0,0 @@
/*
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_MEM_DESCRIPTOR_H
#define IPA_MEM_DESCRIPTOR_H
#include <stdint.h>
#include <stdbool.h>
#include <linux/msm_ipa.h>
typedef struct
{
int orig_rqst_size;
int mmap_size;
void* base_addr;
void* mmap_addr;
uint32_t addr_offset;
unsigned long allocate_ioctl_num;
unsigned long delete_ioctl_num;
char name[IPA_RESOURCE_NAME_MAX];
uint8_t table_index;
uint8_t valid;
bool consider_using_sram;
bool sram_available;
bool sram_to_be_used;
struct ipa_nat_in_sram_info nat_sram_info;
} ipa_mem_descriptor;
void ipa_mem_descriptor_init(
ipa_mem_descriptor* desc,
const char* device_name,
int size,
uint8_t table_index,
unsigned long allocate_ioctl_num,
unsigned long delete_ioctl_num,
bool consider_using_sram );
int ipa_mem_descriptor_allocate_memory(
ipa_mem_descriptor* desc,
int ipa_fd);
int ipa_mem_descriptor_delete(
ipa_mem_descriptor* desc,
int ipa_fd);
#endif

View File

@@ -1,271 +0,0 @@
/*
* Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_NAT_DRV_H
#define IPA_NAT_DRV_H
#include "ipa_nat_utils.h"
#include <stdint.h> /* uint32_t */
#include <stdbool.h>
/**
* ipa_nat_is_sram_supported() - Reports if sram is available for use
*/
bool ipa_nat_is_sram_supported(void);
/**
* struct ipa_nat_ipv4_rule - To hold ipv4 nat rule
* @target_ip: destination ip address
* @private_ip: private ip address
* @target_port: destination port
* @private_port: private port
* @protocol: protocol of rule (tcp/udp)
* @pdn_index: PDN index in the PDN config table
* @redirect: used internally by various API calls
* @enable: used internally by various API calls
* @time_stamp: used internally by various API calls
* @uc_activation_index: index pointing to uc activation table
* @s: bit indication to use the system or local (1 or 0) addr for above table
* @ucp: enable uc processing
* @dst_only: construct NAT for DL only
* @src_only: construct NAT for UL only
*/
typedef struct {
uint32_t target_ip;
uint32_t private_ip;
uint16_t target_port;
uint16_t private_port;
uint16_t public_port;
uint8_t protocol;
uint8_t pdn_index;
uint8_t redirect;
uint8_t enable;
uint32_t time_stamp;
uint16_t uc_activation_index;
bool s;
bool ucp;
bool dst_only;
bool src_only;
} ipa_nat_ipv4_rule;
static inline char* prep_nat_ipv4_rule_4print(
ipa_nat_ipv4_rule* rule_ptr,
char* buf_ptr,
uint32_t buf_sz )
{
if ( rule_ptr && buf_ptr && buf_sz )
{
snprintf(
buf_ptr, buf_sz,
"IPV4 RULE: "
"protocol(0x%02X) "
"public_port(0x%04X) "
"target_ip(0x%08X) "
"target_port(0x%04X) "
"private_ip(0x%08X) "
"private_port(0x%04X) "
"pdn_index(0x%02X)",
rule_ptr->protocol,
rule_ptr->public_port,
rule_ptr->target_ip,
rule_ptr->target_port,
rule_ptr->private_ip,
rule_ptr->private_port,
rule_ptr->pdn_index);
}
return buf_ptr;
}
/**
* struct ipa_nat_pdn_entry - holds a PDN entry data
* @public_ip: PDN's public ip address
* @src_metadata: metadata to be used for source NAT metadata replacement
* @dst_metadata: metadata to be used for destination NAT metadata replacement
*/
typedef struct {
uint32_t public_ip;
uint32_t src_metadata;
uint32_t dst_metadata;
} ipa_nat_pdn_entry;
/**
* ipa_nat_add_ipv4_tbl() - create ipv4 nat table
* @public_ip_addr: [in] public ipv4 address
* @mem_type_ptr: [in] type of memory table is to reside in
* @number_of_entries: [in] number of nat entries
* @table_handle: [out] Handle of new ipv4 nat table
*
* To create new ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_add_ipv4_tbl(
uint32_t public_ip_addr,
const char *mem_type_ptr,
uint16_t number_of_entries,
uint32_t *table_handle);
/**
* ipa_nat_del_ipv4_tbl() - delete ipv4 table
* @table_handle: [in] Handle of ipv4 nat table
*
* To delete given ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_del_ipv4_tbl(uint32_t table_handle);
/**
* ipa_nat_add_ipv4_rule() - to insert new ipv4 rule
* @table_handle: [in] handle of ipv4 nat table
* @rule: [in] Pointer to new rule
* @rule_handle: [out] Return the handle to rule
*
* To insert new ipv4 nat rule into ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_add_ipv4_rule(uint32_t table_handle,
const ipa_nat_ipv4_rule * rule,
uint32_t *rule_handle);
/**
* ipa_nat_del_ipv4_rule() - to delete ipv4 nat rule
* @table_handle: [in] handle of ipv4 nat table
* @rule_handle: [in] ipv4 nat rule handle
*
* To insert new ipv4 nat rule into ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_del_ipv4_rule(uint32_t table_handle,
uint32_t rule_handle);
/**
* ipa_nat_query_timestamp() - to query timestamp
* @table_handle: [in] handle of ipv4 nat table
* @rule_handle: [in] ipv4 nat rule handle
* @time_stamp: [out] time stamp of rule
*
* To retrieve the timestamp that lastly the
* nat rule was accessed
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_query_timestamp(uint32_t table_handle,
uint32_t rule_handle,
uint32_t *time_stamp);
/**
* ipa_nat_modify_pdn() - modify single PDN entry in the PDN config table
* @table_handle: [in] handle of ipv4 nat table
* @pdn_index : [in] the index of the entry to be modified
* @pdn_info : [in] values for the PDN entry to be changed
*
* Modify a PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_modify_pdn(uint32_t tbl_hdl,
uint8_t pdn_index,
ipa_nat_pdn_entry *pdn_info);
/**
* ipa_nat_get_pdn_index() - get a PDN index for a public ip
* @public_ip : [in] IPv4 address of the PDN entry
* @pdn_index : [out] the index of the requested PDN entry
*
* Get a PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_get_pdn_index(uint32_t public_ip, uint8_t *pdn_index);
/**
* ipa_nat_alloc_pdn() - allocate a PDN for new WAN
* @pdn_info : [in] values for the PDN entry to be created
* @pdn_index : [out] the index of the requested PDN entry
*
* allocate a new PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_alloc_pdn(ipa_nat_pdn_entry *pdn_info,
uint8_t *pdn_index);
/**
* ipa_nat_get_pdn_count() - get the number of allocated PDNs
* @pdn_cnt : [out] the number of allocated PDNs
*
* get the number of allocated PDNs
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_get_pdn_count(uint8_t *pdn_cnt);
/**
* ipa_nat_dealloc_pdn() - deallocate a PDN entry
* @pdn_index : [in] pdn index to be deallocated
*
* deallocate a PDN in specified index - zero the PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_dealloc_pdn(uint8_t pdn_index);
/**
* ipa_nat_dump_ipv4_table() - dumps IPv4 NAT table
* @table_handle: [in] handle of IPv4 NAT table
*/
void ipa_nat_dump_ipv4_table(uint32_t tbl_hdl);
/**
* ipa_nat_vote_clock() - used for voting clock
* @vote_type: [in] desired vote type
*/
int ipa_nat_vote_clock(
enum ipa_app_clock_vote_type vote_type );
/**
* ipa_nat_switch_to() - While in HYBRID mode only, used for switching
* from SRAM to DDR or the reverse.
* @nmi: memory type to switch to
* @hold_state: Will the new memory type get locked in (ie. no more
* oscilation between the memory types)
*/
int ipa_nat_switch_to(
enum ipa3_nat_mem_in nmi,
bool hold_state );
#endif

View File

@@ -1,404 +0,0 @@
/*
* Copyright (c) 2013-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_NAT_DRVI_H
#define IPA_NAT_DRVI_H
#include "ipa_table.h"
#include "ipa_mem_descriptor.h"
#include "ipa_nat_utils.h"
#undef MAKE_TBL_HDL
#define MAKE_TBL_HDL(hdl, mt) \
((mt) << 31 | (hdl))
#undef BREAK_TBL_HDL
#define BREAK_TBL_HDL(hdl_in, mt, hdl_out) \
do { \
mt = (hdl_in) >> 31 & 0x0000000001; \
hdl_out = (hdl_in) & 0x00000000FF; \
} while ( 0 )
#undef VALID_TBL_HDL
#define VALID_TBL_HDL(h) \
(((h) & 0x00000000FF) == IPA_NAT_MAX_IP4_TBLS)
/*======= IMPLEMENTATION related data structures and functions ======= */
#define IPA_NAT_MAX_IP4_TBLS 1
#define IPA_NAT_RULE_FLAG_FIELD_OFFSET 18
#define IPA_NAT_RULE_NEXT_FIELD_OFFSET 8
#define IPA_NAT_RULE_PROTO_FIELD_OFFSET 22
#define IPA_NAT_INDEX_RULE_NEXT_FIELD_OFFSET 2
#define IPA_NAT_INDEX_RULE_NAT_INDEX_FIELD_OFFSET 0
#define IPA_NAT_FLAG_ENABLE_BIT 1
#define IPA_NAT_INVALID_PROTO_FIELD_VALUE 0xFF00
/*
* IPA_NAT_INVALID_PROTO_FIELD_VALUE above is what's passed to the IPA
* in a DMA command. It is written into the NAT's rule, by the
* IPA. After being written, It minifests in the rule in the form
* below, hence it will be used when perusing the "struct
* ipa_nat_rule".
*/
#define IPA_NAT_INVALID_PROTO_FIELD_VALUE_IN_RULE 0xFF
typedef enum {
IPA_NAT_TABLE_FLAGS,
IPA_NAT_TABLE_NEXT_INDEX,
IPA_NAT_TABLE_PROTOCOL,
IPA_NAT_INDEX_TABLE_ENTRY,
IPA_NAT_INDEX_TABLE_NEXT_INDEX,
IPA_NAT_TABLE_DMA_CMD_MAX
} ipa_nat_table_dma_cmd_type;
/*
* ------------------------ NAT Table Entry -----------------------------------------
*
* ------------------------------------------------------------------------------------
* | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
* ------------------------------------------------------------------------------------
* | Target IP(4B) | Private IP(4B) |
* ------------------------------------------------------------------------------------
* |Target Port(2B) | Private Port(2B) | Public Port(2B) | Next Index(2B) |
* ------------------------------------------------------------------------------------
* | Proto | TimeStamp(3B) | Flags(2B) | IP check sum Diff(2B)|
* | (1B) | |EN|Redirect|Resv | |
* ------------------------------------------------------------------------------------
* | TCP/UDP checksum |PDN info|Reserved | SW Specific Parameters(4B) |
* | diff (2B) | (1B) | (1B) | |
* ------------------------------------------------------------------------------------
*
* Dont change below structure definition.
*
* It should be same as above(little endian order)
*
* -------------------------------------------------------------------------------
*/
struct ipa_nat_rule {
uint64_t private_ip:32;
uint64_t target_ip:32;
uint64_t next_index:16;
uint64_t public_port:16;
uint64_t private_port:16;
uint64_t target_port:16;
uint64_t ip_chksum:16;
/*--------------------------------------------------
IPA NAT Flag is interpreted as follows
---------------------------------------------------
| EN |FIN/RST| S | IPv4 uC activation index |
| [15] | [14] | [13] | [12:0] |
---------------------------------------------------
--------------------------------------------------*/
uint64_t uc_activation_index:13;
uint64_t s:1;
uint64_t redirect:1;
uint64_t enable:1;
uint64_t time_stamp:24;
uint64_t protocol:8;
/*--------------------------------------------------
32 bit sw_spec_params is interpreted as follows
------------------------------------
| 16 bits | 16 bits |
------------------------------------
| index table | prev index |
| entry | |
------------------------------------
--------------------------------------------------*/
uint64_t prev_index:16;
uint64_t indx_tbl_entry:16;
uint64_t rsvd2:8;
/*-----------------------------------------
8 bit PDN info is interpreted as following
-----------------------------------------------------
| 4 bits | 1 bit | 3 bits |
-----------------------------------------------------
| PDN index | uC processing | src dst Rsrv3 |
| [7:4] | [3] | [2] [1] [0] |
-----------------------------------------------------
-------------------------------------------*/
uint64_t rsvd3:1;
uint64_t dst_only:1;
uint64_t src_only:1;
uint64_t ucp:1;
uint64_t pdn_index:4;
uint64_t tcp_udp_chksum:16;
};
static inline char* prep_nat_rule_4print(
struct ipa_nat_rule* rule_ptr,
char* buf_ptr,
uint32_t buf_sz )
{
if ( rule_ptr && buf_ptr && buf_sz )
{
snprintf(
buf_ptr, buf_sz,
"NAT RULE: "
"protocol(0x%02X) "
"public_port(0x%04X) "
"target_ip(0x%08X) "
"target_port(0x%04X) "
"private_ip(0x%08X) "
"private_port(0x%04X) "
"pdn_index(0x%02X) "
"ip_chksum(0x%04X) "
"tcp_udp_chksum(0x%04X) "
"redirect(0x%02X) "
"enable(0x%02X) "
"time_stamp(0x%08X) "
"indx_tbl_entry(0x%04X) "
"prev_index(0x%04X) "
"next_index(0x%04X)",
rule_ptr->protocol,
rule_ptr->public_port,
rule_ptr->target_ip,
rule_ptr->target_port,
rule_ptr->private_ip,
rule_ptr->private_port,
rule_ptr->pdn_index,
rule_ptr->ip_chksum,
rule_ptr->tcp_udp_chksum,
rule_ptr->redirect,
rule_ptr->enable,
rule_ptr->time_stamp,
rule_ptr->indx_tbl_entry,
rule_ptr->prev_index,
rule_ptr->next_index);
}
return buf_ptr;
}
static inline const char *ipa3_nat_mem_in_as_str(
enum ipa3_nat_mem_in nmi)
{
switch (nmi) {
case IPA_NAT_MEM_IN_DDR:
return "IPA_NAT_MEM_IN_DDR";
case IPA_NAT_MEM_IN_SRAM:
return "IPA_NAT_MEM_IN_SRAM";
default:
break;
}
return "???";
}
static inline char *ipa_ioc_v4_nat_init_as_str(
struct ipa_ioc_v4_nat_init *ptr,
char *buf,
uint32_t buf_sz)
{
if (ptr && buf && buf_sz) {
snprintf(
buf, buf_sz,
"V4 NAT INIT: tbl_index(0x%02X) ipv4_rules_offset(0x%08X) expn_rules_offset(0x%08X) index_offset(0x%08X) index_expn_offset(0x%08X) table_entries(0x%04X) expn_table_entries(0x%04X) ip_addr(0x%08X)",
ptr->tbl_index,
ptr->ipv4_rules_offset,
ptr->expn_rules_offset,
ptr->index_offset,
ptr->index_expn_offset,
ptr->table_entries,
ptr->expn_table_entries,
ptr->ip_addr);
}
return buf;
}
/*
IPA NAT Flag is interpreted as follows
---------------------------------------------------
| EN |FIN/RST| S | IPv4 uC activation index |
| [15] | [14] | [13] | [12:0] |
---------------------------------------------------
*/
typedef struct {
uint32_t uc_activation_index:13;
uint32_t s:1;
uint32_t redirect:1;
uint32_t enable:1;
} ipa_nat_flags;
struct ipa_nat_indx_tbl_rule {
uint16_t tbl_entry;
uint16_t next_index;
};
struct ipa_nat_indx_tbl_meta_info {
uint16_t prev_index;
};
struct ipa_nat_ip4_table_cache {
uint32_t public_addr;
ipa_mem_descriptor mem_desc;
ipa_table table;
ipa_table index_table;
struct ipa_nat_indx_tbl_meta_info *index_expn_table_meta;
ipa_table_dma_cmd_helper table_dma_cmd_helpers[IPA_NAT_TABLE_DMA_CMD_MAX];
};
struct ipa_nat_cache {
ipa_descriptor* ipa_desc;
struct ipa_nat_ip4_table_cache ip4_tbl[IPA_NAT_MAX_IP4_TBLS];
uint8_t table_cnt;
enum ipa3_nat_mem_in nmi;
};
int ipa_nati_add_ipv4_tbl(
uint32_t public_ip_addr,
const char *mem_type_ptr,
uint16_t number_of_entries,
uint32_t *table_hanle);
int ipa_nati_del_ipv4_table(uint32_t tbl_hdl);
int ipa_nati_query_timestamp(uint32_t tbl_hdl,
uint32_t rule_hdl,
uint32_t *time_stamp);
int ipa_nati_modify_pdn(struct ipa_ioc_nat_pdn_entry *entry);
int ipa_nati_get_pdn_index(uint32_t public_ip, uint8_t *pdn_index);
int ipa_nati_alloc_pdn(ipa_nat_pdn_entry *pdn_info, uint8_t *pdn_index);
int ipa_nati_get_pdn_cnt(void);
int ipa_nati_dealloc_pdn(uint8_t pdn_index);
int ipa_nati_add_ipv4_rule(uint32_t tbl_hdl,
const ipa_nat_ipv4_rule *clnt_rule,
uint32_t *rule_hdl);
int ipa_nati_del_ipv4_rule(uint32_t tbl_hdl,
uint32_t rule_hdl);
int ipa_nati_get_sram_size(
uint32_t* size_ptr);
int ipa_nati_clear_ipv4_tbl(
uint32_t tbl_hdl );
int ipa_nati_copy_ipv4_tbl(
uint32_t src_tbl_hdl,
uint32_t dst_tbl_hdl,
ipa_table_walk_cb copy_cb );
typedef enum
{
USE_NAT_TABLE = 0,
USE_INDEX_TABLE = 1,
USE_MAX
} WhichTbl2Use;
#define VALID_WHICHTBL2USE(w) \
( (w) >= USE_NAT_TABLE && (w) < USE_MAX )
int ipa_nati_walk_ipv4_tbl(
uint32_t tbl_hdl,
WhichTbl2Use which,
ipa_table_walk_cb walk_cb,
void* arb_data_ptr );
/*
* The following used for retrieving table stats.
*/
typedef struct
{
enum ipa3_nat_mem_in nmi;
uint32_t tot_ents;
uint32_t tot_base_ents;
uint32_t tot_base_ents_filled;
uint32_t tot_expn_ents;
uint32_t tot_expn_ents_filled;
uint32_t tot_chains;
uint32_t min_chain_len;
uint32_t max_chain_len;
float avg_chain_len;
} ipa_nati_tbl_stats;
int ipa_nati_ipv4_tbl_stats(
uint32_t tbl_hdl,
ipa_nati_tbl_stats* nat_stats_ptr,
ipa_nati_tbl_stats* idx_stats_ptr );
int ipa_nati_vote_clock(
enum ipa_app_clock_vote_type vote_type );
int ipa_NATI_add_ipv4_tbl(
enum ipa3_nat_mem_in nmi,
uint32_t public_ip_addr,
uint16_t number_of_entries,
uint32_t* tbl_hdl);
int ipa_NATI_del_ipv4_table(
uint32_t tbl_hdl);
int ipa_NATI_clear_ipv4_tbl(
uint32_t tbl_hdl );
int ipa_NATI_walk_ipv4_tbl(
uint32_t tbl_hdl,
WhichTbl2Use which,
ipa_table_walk_cb walk_cb,
void* arb_data_ptr );
int ipa_NATI_ipv4_tbl_stats(
uint32_t tbl_hdl,
ipa_nati_tbl_stats* nat_stats_ptr,
ipa_nati_tbl_stats* idx_stats_ptr );
int ipa_NATI_query_timestamp(
uint32_t tbl_hdl,
uint32_t rule_hdl,
uint32_t* time_stamp);
int ipa_NATI_add_ipv4_rule(
uint32_t tbl_hdl,
const ipa_nat_ipv4_rule* clnt_rule,
uint32_t* rule_hdl);
int ipa_NATI_del_ipv4_rule(
uint32_t tbl_hdl,
uint32_t rule_hdl);
int ipa_NATI_post_ipv4_init_cmd(
uint32_t tbl_hdl );
#endif /* #ifndef IPA_NAT_DRVI_H */

View File

@@ -1,107 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if !defined(_IPA_NATI_MAP_H_)
# define _IPA_NATI_MAP_H_
#include <stdint.h>
# ifdef __cplusplus
extern "C"
{
# endif /* __cplusplus */
/* Used below */
#define MAKE_AS_STR_CASE(v) case v: return #v
/*
* The following is used to describe which map to use.
*
* PLEASE KEEP THE FOLLOWING IN SYNC WITH ipa_which_map_as_str()
* BELOW.
*/
typedef enum
{
MAP_NUM_00 = 0,
MAP_NUM_01 = 1,
MAP_NUM_02 = 2,
MAP_NUM_03 = 3,
MAP_NUM_99 = 4,
MAP_NUM_MAX
} ipa_which_map;
#define VALID_IPA_USE_MAP(w) \
( (w) >= MAP_NUM_00 || (w) < MAP_NUM_MAX )
/* KEEP THE FOLLOWING IN SYNC WITH ABOVE. */
static inline const char* ipa_which_map_as_str(
ipa_which_map w )
{
switch ( w )
{
MAKE_AS_STR_CASE(MAP_NUM_00);
MAKE_AS_STR_CASE(MAP_NUM_01);
MAKE_AS_STR_CASE(MAP_NUM_02);
MAKE_AS_STR_CASE(MAP_NUM_03);
MAKE_AS_STR_CASE(MAP_NUM_99);
default:
break;
}
return "???";
}
int ipa_nat_map_add(
ipa_which_map which,
uint32_t key,
uint32_t val );
int ipa_nat_map_find(
ipa_which_map which,
uint32_t key,
uint32_t* val_ptr );
int ipa_nat_map_del(
ipa_which_map which,
uint32_t key,
uint32_t* val_ptr );
int ipa_nat_map_clear(
ipa_which_map which );
int ipa_nat_map_dump(
ipa_which_map which );
# ifdef __cplusplus
}
# endif /* __cplusplus */
#endif /* #if !defined(_IPA_NATI_MAP_H_) */

View File

@@ -1,297 +0,0 @@
/*
* Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if !defined(_IPA_NAT_STATEMACH_H_)
# define _IPA_NAT_STATEMACH_H_
typedef uintptr_t arb_t;
#define MAKE_AS_STR_CASE(v) case v: return #v
/******************************************************************************/
/**
* The following enum represents the states that a nati object can be
* in.
*/
typedef enum {
NATI_STATE_NULL = 0,
NATI_STATE_DDR_ONLY = 1, /* NAT in DDR only (traditional) */
NATI_STATE_SRAM_ONLY = 2, /* NAT in SRAM only (new) */
NATI_STATE_HYBRID = 3, /* NAT simultaneously in both SRAM/DDR */
NATI_STATE_HYBRID_DDR = 4, /* NAT transitioned from SRAM to DDR */
NATI_STATE_LAST
} ipa_nati_state;
/* KEEP THE FOLLOWING IN SYNC WITH ABOVE. */
static inline const char* ipa_nati_state_as_str(
ipa_nati_state s )
{
switch ( s )
{
MAKE_AS_STR_CASE(NATI_STATE_NULL);
MAKE_AS_STR_CASE(NATI_STATE_DDR_ONLY);
MAKE_AS_STR_CASE(NATI_STATE_SRAM_ONLY);
MAKE_AS_STR_CASE(NATI_STATE_HYBRID);
MAKE_AS_STR_CASE(NATI_STATE_HYBRID_DDR);
MAKE_AS_STR_CASE(NATI_STATE_LAST);
default:
break;
}
return "???";
}
# undef strcasesame
# define strcasesame(a, b) (!strcasecmp(a, b))
static inline ipa_nati_state mem_type_str_to_ipa_nati_state(
const char* str )
{
if ( str ) {
if (strcasesame(str, "HYBRID" ))
return NATI_STATE_HYBRID;
if (strcasesame(str, "SRAM" ))
return NATI_STATE_SRAM_ONLY;
}
return NATI_STATE_DDR_ONLY;
}
/******************************************************************************/
/**
* The following enum represents the API triggers that may or may not
* cause a nati object to transition through its various allowable
* states defined in ipa_nati_state above.
*/
typedef enum {
NATI_TRIG_NULL = 0,
NATI_TRIG_ADD_TABLE = 1,
NATI_TRIG_DEL_TABLE = 2,
NATI_TRIG_CLR_TABLE = 3,
NATI_TRIG_WLK_TABLE = 4,
NATI_TRIG_TBL_STATS = 5,
NATI_TRIG_ADD_RULE = 6,
NATI_TRIG_DEL_RULE = 7,
NATI_TRIG_TBL_SWITCH = 8,
NATI_TRIG_GOTO_DDR = 9,
NATI_TRIG_GOTO_SRAM = 10,
NATI_TRIG_GET_TSTAMP = 11,
NATI_TRIG_LAST
} ipa_nati_trigger;
/******************************************************************************/
/**
* The following structure used to keep switch stats.
*/
typedef struct
{
uint32_t pass;
uint32_t fail;
} nati_switch_stats;
/******************************************************************************/
/**
* The following structure used to direct map usage.
*
* Maps are needed to map rule handles..orig to new and new to orig.
* See comments in ipa_nat_statemach.c on this topic...
*/
typedef struct
{
uint32_t orig2new_map;
uint32_t new2orig_map;
} nati_map_pair;
/******************************************************************************/
/**
* The following is a nati object that will maintain state relative to
* various API calls.
*/
typedef struct
{
ipa_nati_state prev_state;
ipa_nati_state curr_state;
bool hold_state;
ipa_nati_state state_to_hold;
uint32_t ddr_tbl_hdl;
uint32_t sram_tbl_hdl;
uint32_t tot_slots_in_sram;
uint32_t back_to_sram_thresh;
/*
* tot_rules_in_table[0] for ddr, and
* tot_rules_in_table[1] for sram
*/
uint32_t tot_rules_in_table[2];
/*
* map_pairs[0] for ddr, and
* map_pairs[1] for sram
*/
nati_map_pair map_pairs[2];
/*
* sw_stats[0] for ddr, and
* sw_stats[1] for sram
*/
nati_switch_stats sw_stats[2];
} ipa_nati_obj;
/*
* For use with the arrays above..in ipa_nati_obj...
*/
#undef DDR_SUB
#undef SRAM_SUB
#define DDR_SUB 0
#define SRAM_SUB 1
#undef BACK2_UNSTARTED_STATE
#define BACK2_UNSTARTED_STATE() \
nati_obj.prev_state = nati_obj.curr_state = NATI_STATE_NULL;
#undef IN_UNSTARTED_STATE
#define IN_UNSTARTED_STATE() \
( nati_obj.prev_state == NATI_STATE_NULL )
#undef IN_HYBRID_STATE
#define IN_HYBRID_STATE() \
( nati_obj.curr_state == NATI_STATE_HYBRID || \
nati_obj.curr_state == NATI_STATE_HYBRID_DDR )
#undef COMPATIBLE_NMI_4SWITCH
#define COMPATIBLE_NMI_4SWITCH(n) \
( (n) == IPA_NAT_MEM_IN_SRAM && nati_obj.curr_state == NATI_STATE_HYBRID_DDR ) || \
( (n) == IPA_NAT_MEM_IN_DDR && nati_obj.curr_state == NATI_STATE_HYBRID ) || \
( (n) == IPA_NAT_MEM_IN_DDR && nati_obj.curr_state == NATI_STATE_DDR_ONLY ) || \
( (n) == IPA_NAT_MEM_IN_SRAM && nati_obj.curr_state == NATI_STATE_SRAM_ONLY )
#undef GEN_HOLD_STATE
#define GEN_HOLD_STATE() \
( ! IN_HYBRID_STATE() ) ? nati_obj.curr_state : \
(nati_obj.curr_state == NATI_STATE_HYBRID) ? NATI_STATE_SRAM_ONLY : \
NATI_STATE_DDR_ONLY
#undef SRAM_CURRENTLY_ACTIVE
#define SRAM_CURRENTLY_ACTIVE() \
( nati_obj.curr_state == NATI_STATE_SRAM_ONLY || \
nati_obj.curr_state == NATI_STATE_HYBRID )
#define SRAM_TO_BE_ACCESSED(t) \
( SRAM_CURRENTLY_ACTIVE() || \
(t) == NATI_TRIG_GOTO_SRAM || \
(t) == NATI_TRIG_TBL_SWITCH )
/*
* NOTE: The exclusion of timestamp retrieval and table creation
* below.
*
* Why?
*
* In re timestamp:
*
* Because timestamp retrieval institutes too many repetitive
* accesses, hence would lead to too many successive votes. Instead,
* it will be handled differently and in the app layer above.
*
* In re table creation:
*
* Because it can't be known, apriori, whether or not sram is
* really available for use. Instead, we'll move table creation
* voting to a place where we know sram is available.
*/
#undef VOTE_REQUIRED
#define VOTE_REQUIRED(t) \
( SRAM_TO_BE_ACCESSED(t) && \
(t) != NATI_TRIG_GET_TSTAMP && \
(t) != NATI_TRIG_ADD_TABLE )
/******************************************************************************/
/**
* A helper macro for changing a nati object's state...
*/
# undef SET_NATIOBJ_STATE
# define SET_NATIOBJ_STATE(x, s) { \
(x)->prev_state = (x)->curr_state; \
(x)->curr_state = s; \
}
/******************************************************************************/
/**
* A function signature for a state/trigger callback function...
*/
typedef int (*nati_statemach_cb)(
ipa_nati_obj* nati_obj_ptr,
ipa_nati_trigger trigger,
arb_t* arb_data_ptr );
/******************************************************************************/
/**
* A structure for relating state to trigger callbacks.
*/
typedef struct
{
ipa_nati_state state;
ipa_nati_trigger trigger;
nati_statemach_cb sm_cb;
const char* state_as_str;
const char* trigger_as_str;
const char* sm_cb_as_str;
} nati_statemach_tuple;
#undef SM_ROW
#define SM_ROW(s, t, f) \
{ s, t, f, #s, #t, #f }
/******************************************************************************/
/**
* FUNCTION: ipa_nati_statemach
*
* PARAMS:
*
* @nati_obj_ptr (IN) A pointer to an initialized nati object
*
* @trigger (IN) The trigger to run through the state machine
*
* @arb_data_ptr (IN) Anything you like. Will be passed, untouched,
* to the state/trigger callback function.
*
* DESCRIPTION:
*
* This function allows a nati object and a trigger to be run
* through the state machine.
*
* RETURNS:
*
* zero on success, otherwise non-zero
*/
int ipa_nati_statemach(
ipa_nati_obj* nati_obj_ptr,
ipa_nati_trigger trigger,
arb_t* arb_data_ptr );
#endif /* #if !defined(_IPA_NAT_STATEMACH_H_) */

View File

@@ -1,201 +0,0 @@
/*
* Copyright (c) 2013, 2018-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Changes from Qualcomm Innovation Center are provided under the following license:
*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted (subject to the limitations in the
* disclaimer below) provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
* GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
*/
#ifndef IPA_NAT_UTILS_H
#define IPA_NAT_UTILS_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include <linux/msm_ipa.h>
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#define MAX_DMA_ENTRIES_FOR_ADD 4
#define MAX_DMA_ENTRIES_FOR_DEL 3
#if !defined(MSM_IPA_TESTS) && !defined(FEATURE_IPA_ANDROID)
#ifdef USE_GLIB
#include <glib.h>
#define strlcpy g_strlcpy
#else
size_t strlcpy(char* dst, const char* src, size_t size);
#endif
#endif
#define IPAERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);
#define IPAINFO(fmt, ...) printf("INFO: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);
#define IPAWARN(fmt, ...) printf("WARN: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);
#ifdef NAT_DEBUG
#define IPADBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);
#else
#define IPADBG(fmt, ...)
#endif
typedef struct
{
int fd;
enum ipa_hw_type ver;
} ipa_descriptor;
ipa_descriptor* ipa_descriptor_open(void);
void ipa_descriptor_close(
ipa_descriptor*);
void ipa_read_debug_info(
const char* debug_file_path);
static inline char* prep_ioc_nat_dma_cmd_4print(
struct ipa_ioc_nat_dma_cmd* cmd_ptr,
char* buf_ptr,
uint32_t buf_sz )
{
uint32_t i, len, buf_left;
if ( cmd_ptr && buf_ptr && buf_sz )
{
snprintf(
buf_ptr,
buf_sz,
"NAT_DMA_CMD: mem_type(%u) entries(%u) ",
cmd_ptr->mem_type,
cmd_ptr->entries);
for ( i = 0; i < cmd_ptr->entries; i++ )
{
len = strlen(buf_ptr);
buf_left = buf_sz - len;
if ( buf_left > 0 && buf_left < buf_sz )
{
snprintf(
buf_ptr + len,
buf_left,
"[%u](table_index(0x%02X) base_addr(0x%02X) offset(0x%08X) data(0x%04X)) ",
i,
cmd_ptr->dma[i].table_index,
cmd_ptr->dma[i].base_addr,
cmd_ptr->dma[i].offset,
(uint32_t) cmd_ptr->dma[i].data);
}
}
}
return buf_ptr;
}
#undef NANOS_PER_SEC
#undef MICROS_PER_SEC
#undef MILLIS_PER_SEC
#define NANOS_PER_SEC 1000000000
#define MICROS_PER_SEC 1000000
#define MILLIS_PER_SEC 1000
/**
* A macro for converting seconds to nanoseconds...
*/
#define SECS2NanSECS(x) ((x) * NANOS_PER_SEC)
/**
* A macro for converting seconds to microseconds...
*/
#define SECS2MicSECS(x) ((x) * MICROS_PER_SEC)
/**
* A macro for converting seconds to milliseconds...
*/
#define SECS2MilSECS(x) ((x) * MILLIS_PER_SEC)
/******************************************************************************/
typedef enum
{
TimeAsNanSecs = 0,
TimeAsMicSecs = 1,
TimeAsMilSecs = 2
} TimeAs_t;
#undef VALID_TIMEAS
#define VALID_TIMEAS(ta) \
( (ta) == TimeAsNanSecs || \
(ta) == TimeAsMicSecs || \
(ta) == TimeAsMilSecs )
int currTimeAs(
TimeAs_t timeAs,
uint64_t* valPtr );
#endif /* IPA_NAT_UTILS_H */

View File

@@ -1,323 +0,0 @@
/*
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef IPA_TABLE_H
#define IPA_TABLE_H
#include <stdint.h>
#include <stdbool.h>
#include <linux/msm_ipa.h>
#define IPA_TABLE_MAX_ENTRIES 5120
#define IPA_TABLE_INVALID_ENTRY 0x0
#undef VALID_INDEX
#define VALID_INDEX(idx) \
( (idx) != IPA_TABLE_INVALID_ENTRY )
#undef VALID_RULE_HDL
#define VALID_RULE_HDL(hdl) \
( (hdl) != IPA_TABLE_INVALID_ENTRY )
#undef GOTO_REC
#define GOTO_REC(tbl, rec_idx) \
( (tbl)->table_addr + ((rec_idx) * (tbl)->entry_size) )
typedef enum
{
IPA_NAT_BASE_TBL = 0,
IPA_NAT_EXPN_TBL = 1,
IPA_NAT_INDX_TBL = 2,
IPA_NAT_INDEX_EXPN_TBL = 3,
IPA_IPV6CT_BASE_TBL = 4,
IPA_IPV6CT_EXPN_TBL = 5,
} ipa_table_dma_type;
#define VALID_IPA_TABLE_DMA_TYPE(t) \
( (t) >= IPA_NAT_BASE_TBL && (t) <= IPA_IPV6CT_EXPN_TBL )
/*
* --------- NAT Rule Handle Entry ID structure ---------
*
* +-----------+-----------+------------------+----------------+
* | 1 bit | 2 bits | 12 bits | 1 bit |
* +-----------+-----------+------------------+----------------+
* | 0 - DDR | reserved | index into table | 0 - base |
* | 1 - SRAM | | | 1 - expansion |
* +-----------+-----------+------------------+----------------+
*/
#define IPA_TABLE_TYPE_BITS 0x00000001
#define IPA_TABLE_TYPE_MASK 0x00000001
#define IPA_TABLE_INDX_MASK 0x00000FFF
#define IPA_TABLE_TYPE_MEM_SHIFT 15
#undef BREAK_RULE_HDL
#define BREAK_RULE_HDL(tbl, hdl, mt, iet, indx) \
do { \
mt = ((hdl) >> IPA_TABLE_TYPE_MEM_SHIFT) & IPA_TABLE_TYPE_MASK; \
iet = (hdl) & IPA_TABLE_TYPE_MASK; \
indx = ((hdl) >> IPA_TABLE_TYPE_BITS) & IPA_TABLE_INDX_MASK; \
indx += (iet) ? tbl->table_entries : 0; \
/*IPADBG("hdl(%u) -> mt(%u) iet(%u) indx(%u)\n", hdl, mt, iet, indx);*/ \
} while ( 0 )
typedef int (*entry_validity_checker)(
void* entry);
typedef uint16_t (*entry_next_index_getter)(
void* entry);
typedef uint16_t (*entry_prev_index_getter)(
void* entry,
uint16_t entry_index,
void* meta,
uint16_t base_table_size);
typedef void (*entry_prev_index_setter)(
void* entry,
uint16_t entry_index,
uint16_t prev_index,
void* meta,
uint16_t base_table_size);
typedef int (*entry_head_inserter)(
void* entry,
void* user_data,
uint16_t* dma_command_data);
typedef int (*entry_tail_inserter)(
void* entry,
void* user_data);
typedef uint16_t (*entry_delete_head_dma_command_data_getter)(
void* head,
void* next_entry);
typedef struct
{
entry_validity_checker entry_is_valid;
entry_next_index_getter entry_get_next_index;
entry_prev_index_getter entry_get_prev_index;
entry_prev_index_setter entry_set_prev_index;
entry_head_inserter entry_head_insert;
entry_tail_inserter entry_tail_insert;
entry_delete_head_dma_command_data_getter
entry_get_delete_head_dma_command_data;
} ipa_table_entry_interface;
typedef enum
{
HELP_UPDATE_HEAD = 0,
HELP_UPDATE_ENTRY = 1,
HELP_DELETE_HEAD = 2,
HELP_UPDATE_MAX,
} dma_help_type;
#undef VALID_DMA_HELP_TYPE
#define VALID_DMA_HELP_TYPE(t) \
( (t) >= HELP_UPDATE_HEAD && (t) < HELP_UPDATE_MAX )
typedef struct
{
uint32_t offset;
ipa_table_dma_type table_type;
ipa_table_dma_type expn_table_type;
uint8_t table_indx;
} ipa_table_dma_cmd_helper;
typedef struct
{
char name[IPA_RESOURCE_NAME_MAX];
enum ipa3_nat_mem_in nmi;
int entry_size;
uint16_t table_entries;
uint16_t expn_table_entries;
uint32_t tot_tbl_ents;
uint8_t* table_addr;
uint8_t* expn_table_addr;
uint16_t cur_tbl_cnt;
uint16_t cur_expn_tbl_cnt;
ipa_table_entry_interface* entry_interface;
ipa_table_dma_cmd_helper* dma_help[HELP_UPDATE_MAX];
void* meta;
int meta_entry_size;
} ipa_table;
typedef struct
{
uint16_t prev_index;
void* prev_entry;
uint16_t curr_index;
void* curr_entry;
uint16_t next_index;
void* next_entry;
} ipa_table_iterator;
void ipa_table_init(
ipa_table* table,
const char* table_name,
enum ipa3_nat_mem_in nmi,
int entry_size,
void* meta,
int meta_entry_size,
ipa_table_entry_interface* entry_interface);
int ipa_table_calculate_entries_num(
ipa_table* table,
uint16_t number_of_entries,
enum ipa3_nat_mem_in nmi);
int ipa_table_calculate_size(
ipa_table* table);
uint8_t* ipa_table_calculate_addresses(
ipa_table* table,
uint8_t* base_addr);
void ipa_table_reset(
ipa_table* table);
int ipa_table_add_entry(
ipa_table* table,
void* user_data,
uint16_t* index,
uint32_t* rule_hdl,
struct ipa_ioc_nat_dma_cmd* cmd);
void ipa_table_create_delete_command(
ipa_table* table,
struct ipa_ioc_nat_dma_cmd* cmd,
ipa_table_iterator* iterator);
void ipa_table_delete_entry(
ipa_table* table,
ipa_table_iterator* iterator,
uint8_t is_prev_empty);
void ipa_table_erase_entry(
ipa_table* table,
uint16_t index);
int ipa_table_get_entry(
ipa_table* table,
uint32_t entry_handle,
void** entry,
uint16_t* entry_index);
void* ipa_table_get_entry_by_index(
ipa_table* table,
uint16_t index);
void ipa_table_dma_cmd_helper_init(
ipa_table_dma_cmd_helper* dma_cmd_helper,
uint8_t table_indx,
ipa_table_dma_type table_type,
ipa_table_dma_type expn_table_type,
uint32_t offset);
void ipa_table_dma_cmd_generate(
ipa_table_dma_cmd_helper* dma_cmd_helper,
uint8_t is_expn,
uint32_t entry_offset,
uint16_t data,
struct ipa_ioc_nat_dma_cmd* cmd);
int ipa_table_iterator_init(
ipa_table_iterator* iterator,
ipa_table* table,
void* curr_entry,
uint16_t curr_index);
int ipa_table_iterator_next(
ipa_table_iterator* iterator,
ipa_table* table);
int ipa_table_iterator_end(
ipa_table_iterator* iterator,
ipa_table* table,
uint16_t head_index,
void* head);
int ipa_table_iterator_is_head_with_tail(
ipa_table_iterator* iterator);
int ipa_calc_num_sram_table_entries(
uint32_t sram_size,
uint32_t table1_ent_size,
uint32_t table2_ent_size,
uint16_t* num_entries_ptr);
typedef int (*ipa_table_walk_cb)(
ipa_table* table_ptr,
uint32_t rule_hdl,
void* record_ptr,
uint16_t record_index,
void* meta_record_ptr,
uint16_t meta_record_index,
void* arb_data_ptr );
typedef enum
{
WHEN_SLOT_EMPTY = 0,
WHEN_SLOT_FILLED = 1,
WHEN_SLOT_MAX
} When2Callback;
#define VALID_WHEN2CALLBACK(w) \
( (w) >= WHEN_SLOT_EMPTY && (w) < WHEN_SLOT_MAX )
int ipa_table_walk(
ipa_table* table,
uint16_t start_index,
When2Callback when,
ipa_table_walk_cb walk_cb,
void* arb_data_ptr );
int ipa_table_add_dma_cmd(
ipa_table* tbl_ptr,
dma_help_type help_type,
void* rec_ptr,
uint16_t rec_index,
uint16_t data_for_entry,
struct ipa_ioc_nat_dma_cmd* cmd_ptr );
#endif

View File

@@ -1,37 +0,0 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign
AM_CFLAGS = -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -I../inc
#AM_CFLAGS += -g -DDEBUG -DNAT_DEBUG
common_CFLAGS = -DUSE_GLIB @GLIB_CFLAGS@
common_LDFLAGS = -lrt @GLIB_LIBS@
library_includedir = $(pkgincludedir)
cpp_sources = ipa_nat_map.cpp
c_sources = ipa_nat_drv.c \
ipa_nat_drvi.c \
ipa_nat_utils.c \
ipa_table.c \
ipa_mem_descriptor.c \
ipa_ipv6ct.c \
ipa_nat_statemach.c
library_include_HEADERS = ../inc/ipa_nat_drvi.h \
../inc/ipa_nat_drv.h \
../inc/ipa_nat_utils.h \
../inc/ipa_table.h \
../inc/ipa_mem_descriptor.h \
../inc/ipa_ipv6ct.h \
../inc/ipa_nat_statemach.h \
../inc/ipa_nat_map.h
lib_LTLIBRARIES = libipanat.la
libipanat_la_C = @C@
libipanat_la_CC = @CC@
libipanat_la_SOURCES = $(c_sources) $(cpp_sources)
libipanat_la_CFLAGS = $(AM_CFLAGS) $(common_CFLAGS)
libipanat_la_CXXFLAGS = $(AM_CFLAGS) $(common_CPPFLAGS)
libipanat_la_LDFLAGS = -shared $(common_LDFLAGS) -version-info 1:0:0

View File

@@ -1,85 +0,0 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT(data-ipanat, 1.0.0)
AM_INIT_AUTOMAKE(data-ipanat, 1.0.0)
AC_OUTPUT(Makefile)
AC_CONFIG_SRCDIR([ipa_nat_drv.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_CXX
# Checks for libraries.
AC_ARG_WITH(sanitized-headers,
AS_HELP_STRING([--with-sanitized-headers=DIR],
[Specify the location of the sanitized Linux headers]),
[CPPFLAGS="$CPPFLAGS -idirafter $withval"])
AM_CONDITIONAL(KERNELMODULES, [test -n -eq 0])
AC_ARG_WITH([glib],
AC_HELP_STRING([--with-glib],
[enable glib, building HLOS systems which use glib]))
if (test "x${with_glib}" = "xyes"); then
AC_DEFINE(ENABLE_USEGLIB, 1, [Define if HLOS systems uses glib])
PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= 2.16, dummy=yes,
AC_MSG_ERROR(GThread >= 2.16 is required))
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes,
AC_MSG_ERROR(GLib >= 2.16 is required))
GLIB_CFLAGS="$GLIB_CFLAGS $GTHREAD_CFLAGS"
GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS"
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
fi
AM_CONDITIONAL(USE_GLIB, test "x${with_glib}" = "xyes")
AC_ARG_ENABLE(target,
[AS_HELP_STRING([--enable-target=TARGET], [Specify the target product to build])],
[TARGET=$enableval],
[TARGET=none]
)
if test "x$TARGET" = "xsdx20"; then
echo "\n UL firewall feature enabled\n"
CPPFLAGS="${CPPFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS"
CFLAGS="${CFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS"
fi
if test "x$TARGET" = "xsdxpoorwills"; then
echo "\n UL firewall feature enabled\n"
CPPFLAGS="${CPPFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN -DFEATURE_L2TP"
CFLAGS="${CFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN -DFEATURE_L2TP"
fi
if test "x$TARGET" = "xsdxprairie"; then
echo "\n UL firewall feature enabled\n"
CPPFLAGS="${CPPFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN"
CFLAGS="${CFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN"
fi
if test "x$TARGET" = "xsdxlemur"; then
echo "\n UL firewall feature enabled\n"
CPPFLAGS="${CPPFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN"
CFLAGS="${CFLAGS} -DFEATURE_IPACM_UL_FIREWALL -DFEATURE_IPACM_PER_CLIENT_STATS -DFEATURE_VLAN_MPDN"
fi
AM_CONDITIONAL(NO_L2TP, test "x$TARGET" = "xsdx20" || test "x$TARGET" = "xsdxpoorwills" || test "x$TARGET" = "xsdxprairie" || test "x$TARGET" = "xsdxlemur")
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h netinet/in.h sys/ioctl.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_OFF_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_CHECK_FUNCS([memset munmap])
AC_OUTPUT

View File

@@ -1,933 +0,0 @@
/*
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Changes from Qualcomm Innovation Center are provided under the following license:
*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted (subject to the limitations in the
* disclaimer below) provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
* GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
*/
#include "ipa_ipv6ct.h"
#include "ipa_ipv6cti.h"
#include <sys/ioctl.h>
#include <stdlib.h>
#include <errno.h>
#include <pthread.h>
#include <unistd.h>
#include <linux/msm_ipa.h>
#define IPA_IPV6CT_DEBUG_FILE_PATH "/sys/kernel/debug/ipa/ipv6ct"
#define IPA_UC_ACT_DEBUG_FILE_PATH "/sys/kernel/debug/ipa/uc_act_table"
#define IPA_IPV6CT_TABLE_NAME "IPA IPv6CT table"
#define IPA_MAX_DMA_ENTRIES_FOR_ADD 2
#define IPA_MAX_DMA_ENTRIES_FOR_DEL 2
static int ipa_ipv6ct_create_table(ipa_ipv6ct_table* ipv6ct_table, uint16_t number_of_entries, uint8_t table_index);
static int ipa_ipv6ct_destroy_table(ipa_ipv6ct_table* ipv6ct_table);
static void ipa_ipv6ct_create_table_dma_cmd_helpers(ipa_ipv6ct_table* ipv6ct_table, uint8_t table_indx);
static int ipa_ipv6ct_post_init_cmd(ipa_ipv6ct_table* ipv6ct_table, uint8_t tbl_index);
static int ipa_ipv6ct_post_dma_cmd(struct ipa_ioc_nat_dma_cmd* cmd);
static uint16_t ipa_ipv6ct_hash(const ipa_ipv6ct_rule* rule, uint16_t size);
static uint16_t ipa_ipv6ct_xor_segments(uint64_t num);
static int table_entry_is_valid(void* entry);
static uint16_t table_entry_get_next_index(void* entry);
static uint16_t table_entry_get_prev_index(void* entry, uint16_t entry_index, void* meta, uint16_t base_table_size);
static void table_entry_set_prev_index(void* entry, uint16_t entry_index, uint16_t prev_index,
void* meta, uint16_t base_table_size);
static int table_entry_head_insert(void* entry, void* user_data, uint16_t* dma_command_data);
static int table_entry_tail_insert(void* entry, void* user_data);
static uint16_t table_entry_get_delete_head_dma_command_data(void* head, void* next_entry);
static ipa_ipv6ct ipv6ct;
static pthread_mutex_t ipv6ct_mutex = PTHREAD_MUTEX_INITIALIZER;
static ipa_table_entry_interface entry_interface =
{
table_entry_is_valid,
table_entry_get_next_index,
table_entry_get_prev_index,
table_entry_set_prev_index,
table_entry_head_insert,
table_entry_tail_insert,
table_entry_get_delete_head_dma_command_data
};
/**
* ipa_ipv6ct_add_tbl() - Adds a new IPv6CT table
* @number_of_entries: [in] number of IPv6CT entries
* @table_handle: [out] handle of new IPv6CT table
*
* This function creates new IPv6CT table and posts IPv6CT init command to HW
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_add_tbl(uint16_t number_of_entries, uint32_t* table_handle)
{
int ret;
ipa_ipv6ct_table* ipv6ct_table;
IPADBG("\n");
if (table_handle == NULL || number_of_entries == 0)
{
IPAERR("Invalid parameters table_handle=%pK number_of_entries=%d\n", table_handle, number_of_entries);
return -EINVAL;
}
*table_handle = 0;
if (ipv6ct.table_cnt >= IPA_IPV6CT_MAX_TBLS)
{
IPAERR("Can't add addition IPv6 connection tracking table. Maximum %d tables allowed\n", IPA_IPV6CT_MAX_TBLS);
return -EINVAL;
}
if (!ipv6ct.ipa_desc)
{
ipv6ct.ipa_desc = ipa_descriptor_open();
if (ipv6ct.ipa_desc == NULL)
{
IPAERR("failed to open IPA driver file descriptor\n");
return -EIO;
}
}
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
ret = -EPERM;
goto bail_ipa_desc;
}
ipv6ct_table = &ipv6ct.tables[ipv6ct.table_cnt];
ret = ipa_ipv6ct_create_table(ipv6ct_table, number_of_entries, ipv6ct.table_cnt);
if (ret)
{
IPAERR("unable to create ipv6ct table Error: %d\n", ret);
goto bail_ipa_desc;
}
/* Initialize the ipa hw with ipv6ct table dimensions */
ret = ipa_ipv6ct_post_init_cmd(ipv6ct_table, ipv6ct.table_cnt);
if (ret)
{
IPAERR("unable to post ipv6ct_init command Error %d\n", ret);
goto bail_ipv6ct_table;
}
/* Return table handle */
++ipv6ct.table_cnt;
*table_handle = ipv6ct.table_cnt;
IPADBG("Returning table handle 0x%x\n", *table_handle);
return 0;
bail_ipv6ct_table:
ipa_ipv6ct_destroy_table(ipv6ct_table);
bail_ipa_desc:
if (!ipv6ct.table_cnt) {
ipa_descriptor_close(ipv6ct.ipa_desc);
ipv6ct.ipa_desc = NULL;
}
return ret;
}
int ipa_ipv6ct_del_tbl(uint32_t table_handle)
{
ipa_ipv6ct_table* ipv6ct_table;
int ret;
IPADBG("\n");
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
return -EINVAL;
}
if (table_handle == IPA_TABLE_INVALID_ENTRY || table_handle > IPA_IPV6CT_MAX_TBLS)
{
IPAERR("invalid table handle %d passed\n", table_handle);
return -EINVAL;
}
IPADBG("Passed Table Handle: 0x%x\n", table_handle);
if (pthread_mutex_lock(&ipv6ct_mutex))
{
IPAERR("unable to lock the ipv6ct mutex\n");
return -EINVAL;
}
ipv6ct_table = &ipv6ct.tables[table_handle - 1];
if (!ipv6ct_table->mem_desc.valid)
{
IPAERR("invalid table handle %d\n", table_handle);
ret = -EINVAL;
goto unlock;
}
ret = ipa_ipv6ct_destroy_table(ipv6ct_table);
if (ret)
{
IPAERR("unable to delete IPV6CT table with handle %d\n", table_handle);
goto unlock;
}
if (!--ipv6ct.table_cnt) {
ipa_descriptor_close(ipv6ct.ipa_desc);
ipv6ct.ipa_desc = NULL;
}
unlock:
if (pthread_mutex_unlock(&ipv6ct_mutex))
{
IPAERR("unable to unlock the ipv6ct mutex\n");
return (ret) ? ret : -EPERM;
}
IPADBG("return\n");
return ret;
}
int ipa_ipv6ct_add_rule(uint32_t table_handle, const ipa_ipv6ct_rule* user_rule, uint32_t* rule_handle)
{
int ret;
ipa_ipv6ct_table* ipv6ct_table;
uint16_t new_entry_index;
uint32_t new_entry_handle;
uint32_t cmd_sz = sizeof(struct ipa_ioc_nat_dma_cmd) +
(IPA_MAX_DMA_ENTRIES_FOR_ADD * sizeof(struct ipa_ioc_nat_dma_one));
char cmd_buf[cmd_sz];
struct ipa_ioc_nat_dma_cmd* cmd;
IPADBG("\n");
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
return -EINVAL;
}
if (table_handle == IPA_TABLE_INVALID_ENTRY || table_handle > IPA_IPV6CT_MAX_TBLS ||
rule_handle == NULL || user_rule == NULL)
{
IPAERR("Invalid parameters table_handle=%d rule_handle=%pK user_rule=%pK\n",
table_handle, rule_handle, user_rule);
return -EINVAL;
}
IPADBG("Passed Table handle: 0x%x\n", table_handle);
if (user_rule->protocol == IPA_IPV6CT_INVALID_PROTO_FIELD_CMP)
{
IPAERR("invalid parameter protocol=%d\n", user_rule->protocol);
return -EINVAL;
}
if (pthread_mutex_lock(&ipv6ct_mutex))
{
IPAERR("unable to lock the ipv6ct mutex\n");
return -EINVAL;
}
ipv6ct_table = &ipv6ct.tables[table_handle - 1];
if (!ipv6ct_table->mem_desc.valid)
{
IPAERR("invalid table handle %d\n", table_handle);
ret = -EINVAL;
goto unlock;
}
memset(cmd_buf, 0, sizeof(cmd_buf));
cmd = (struct ipa_ioc_nat_dma_cmd*) cmd_buf;
cmd->entries = 0;
new_entry_index = ipa_ipv6ct_hash(user_rule, ipv6ct_table->table.table_entries - 1);
ret = ipa_table_add_entry(&ipv6ct_table->table, (void*)user_rule, &new_entry_index, &new_entry_handle, cmd);
if (ret)
{
IPAERR("failed to add a new IPV6CT entry\n");
goto unlock;
}
ret = ipa_ipv6ct_post_dma_cmd(cmd);
if (ret)
{
IPAERR("unable to post dma command\n");
goto bail;
}
if (pthread_mutex_unlock(&ipv6ct_mutex))
{
IPAERR("unable to unlock the ipv6ct mutex\n");
return -EPERM;
}
*rule_handle = new_entry_handle;
IPADBG("return\n");
return 0;
bail:
ipa_table_erase_entry(&ipv6ct_table->table, new_entry_index);
unlock:
if (pthread_mutex_unlock(&ipv6ct_mutex))
IPAERR("unable to unlock the ipv6ct mutex\n");
return ret;
}
int ipa_ipv6ct_del_rule(uint32_t table_handle, uint32_t rule_handle)
{
ipa_ipv6ct_table* ipv6ct_table;
ipa_table_iterator table_iterator;
ipa_ipv6ct_hw_entry* entry;
uint32_t cmd_sz = sizeof(struct ipa_ioc_nat_dma_cmd) +
(IPA_MAX_DMA_ENTRIES_FOR_DEL * sizeof(struct ipa_ioc_nat_dma_one));
char cmd_buf[cmd_sz];
struct ipa_ioc_nat_dma_cmd* cmd;
uint16_t index;
int ret;
IPADBG("\n");
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
return -EINVAL;
}
if (table_handle == IPA_TABLE_INVALID_ENTRY || table_handle > IPA_IPV6CT_MAX_TBLS ||
rule_handle == IPA_TABLE_INVALID_ENTRY)
{
IPAERR("Invalid parameters table_handle=%d rule_handle=%d\n", table_handle, rule_handle);
return -EINVAL;
}
IPADBG("Passed Table: 0x%x and rule handle 0x%x\n", table_handle, rule_handle);
if (pthread_mutex_lock(&ipv6ct_mutex))
{
IPAERR("unable to lock the ipv6ct mutex\n");
return -EINVAL;
}
ipv6ct_table = &ipv6ct.tables[table_handle - 1];
if (!ipv6ct_table->mem_desc.valid)
{
IPAERR("invalid table handle %d\n", table_handle);
ret = -EINVAL;
goto unlock;
}
ret = ipa_table_get_entry(&ipv6ct_table->table, rule_handle, (void**)&entry, &index);
if (ret)
{
IPAERR("unable to retrive the entry with handle=%d in IPV6CT table with handle=%d\n",
rule_handle, table_handle);
goto unlock;
}
ret = ipa_table_iterator_init(&table_iterator, &ipv6ct_table->table, entry, index);
if (ret)
{
IPAERR("unable to create iterator which points to the entry index=%d in IPV6CT table with handle=%d\n",
index, table_handle);
goto unlock;
}
memset(cmd_buf, 0, sizeof(cmd_buf));
cmd = (struct ipa_ioc_nat_dma_cmd*) cmd_buf;
cmd->entries = 0;
ipa_table_create_delete_command(&ipv6ct_table->table, cmd, &table_iterator);
ret = ipa_ipv6ct_post_dma_cmd(cmd);
if (ret)
{
IPAERR("unable to post dma command\n");
goto unlock;
}
if (!ipa_table_iterator_is_head_with_tail(&table_iterator))
{
/* The entry can be deleted */
uint8_t is_prev_empty = (table_iterator.prev_entry != NULL &&
((ipa_ipv6ct_hw_entry*)table_iterator.prev_entry)->protocol == IPA_IPV6CT_INVALID_PROTO_FIELD_CMP);
ipa_table_delete_entry(&ipv6ct_table->table, &table_iterator, is_prev_empty);
}
unlock:
if (pthread_mutex_unlock(&ipv6ct_mutex))
{
IPAERR("unable to unlock the ipv6ct mutex\n");
return (ret) ? ret : -EPERM;
}
IPADBG("return\n");
return ret;
}
int ipa_ipv6ct_query_timestamp(uint32_t table_handle, uint32_t rule_handle, uint32_t* time_stamp)
{
int ret;
ipa_ipv6ct_table* ipv6ct_table;
ipa_ipv6ct_hw_entry *entry;
IPADBG("\n");
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
return -EINVAL;
}
if (table_handle == IPA_TABLE_INVALID_ENTRY || table_handle > IPA_IPV6CT_MAX_TBLS ||
rule_handle == IPA_TABLE_INVALID_ENTRY || time_stamp == NULL)
{
IPAERR("invalid parameters passed table_handle=%d rule_handle=%d time_stamp=%pK\n",
table_handle, rule_handle, time_stamp);
return -EINVAL;
}
IPADBG("Passed Table: %d and rule handle %d\n", table_handle, rule_handle);
if (pthread_mutex_lock(&ipv6ct_mutex))
{
IPAERR("unable to lock the ipv6ct mutex\n");
return -EINVAL;
}
ipv6ct_table = &ipv6ct.tables[table_handle - 1];
if (!ipv6ct_table->mem_desc.valid)
{
IPAERR("invalid table handle %d\n", table_handle);
ret = -EINVAL;
goto unlock;
}
ret = ipa_table_get_entry(&ipv6ct_table->table, rule_handle, (void**)&entry, NULL);
if (ret)
{
IPAERR("unable to retrive the entry with handle=%d in IPV6CT table with handle=%d\n",
rule_handle, table_handle);
goto unlock;
}
*time_stamp = entry->time_stamp;
unlock:
if (pthread_mutex_unlock(&ipv6ct_mutex))
{
IPAERR("unable to unlock the ipv6ct mutex\n");
return (ret) ? ret : -EPERM;
}
IPADBG("return\n");
return ret;
}
/**
* ipv6ct_hash() - Find the index into ipv6ct table
* @rule: [in] an IPv6CT rule
* @size: [in] size of the IPv6CT table
*
* This hash method is used to find the hash index of an entry into IPv6CT table.
* In case of result zero, N-1 will be returned, where N is size of IPv6CT table.
*
* Returns: >0 index into IPv6CT table, negative on failure
*/
static uint16_t ipa_ipv6ct_hash(const ipa_ipv6ct_rule* rule, uint16_t size)
{
uint16_t hash = 0;
IPADBG("src_ipv6_lsb 0x%llx\n", rule->src_ipv6_lsb);
IPADBG("src_ipv6_msb 0x%llx\n", rule->src_ipv6_msb);
IPADBG("dest_ipv6_lsb 0x%llx\n", rule->dest_ipv6_lsb);
IPADBG("dest_ipv6_msb 0x%llx\n", rule->dest_ipv6_msb);
IPADBG("src_port: 0x%x dest_port: 0x%x\n", rule->src_port, rule->dest_port);
IPADBG("protocol: 0x%x size: 0x%x\n", rule->protocol, size);
hash ^= ipa_ipv6ct_xor_segments(rule->src_ipv6_lsb);
hash ^= ipa_ipv6ct_xor_segments(rule->src_ipv6_msb);
hash ^= ipa_ipv6ct_xor_segments(rule->dest_ipv6_lsb);
hash ^= ipa_ipv6ct_xor_segments(rule->dest_ipv6_msb);
hash ^= rule->src_port;
hash ^= rule->dest_port;
hash ^= rule->protocol;
/*
* The size passed to hash function expected be power^2-1, while the actual size is power^2,
* actual_size = size + 1
*/
hash &= size;
/* If the hash resulted to zero then set it to maximum value as zero is unused entry in ipv6ct table */
if (hash == 0)
{
hash = size;
}
IPADBG("ipa_ipv6ct_hash returning value: %d\n", hash);
return hash;
}
static uint16_t ipa_ipv6ct_xor_segments(uint64_t num)
{
const uint64_t mask = 0xffff;
const size_t bits_in_two_byte = 16;
uint16_t ret = 0;
IPADBG("\n");
while (num)
{
ret ^= (uint16_t)(num & mask);
num >>= bits_in_two_byte;
}
IPADBG("return\n");
return ret;
}
static int table_entry_is_valid(void* entry)
{
ipa_ipv6ct_hw_entry* ipv6ct_entry = (ipa_ipv6ct_hw_entry*)entry;
IPADBG("\n");
return ipv6ct_entry->enable;
}
static uint16_t table_entry_get_next_index(void* entry)
{
uint16_t result;
ipa_ipv6ct_hw_entry* ipv6ct_entry = (ipa_ipv6ct_hw_entry*)entry;
IPADBG("\n");
result = ipv6ct_entry->next_index;
IPADBG("Next entry of %pK is %d\n", entry, result);
return result;
}
static uint16_t table_entry_get_prev_index(void* entry, uint16_t entry_index, void* meta, uint16_t base_table_size)
{
uint16_t result;
ipa_ipv6ct_hw_entry* ipv6ct_entry = (ipa_ipv6ct_hw_entry*)entry;
IPADBG("\n");
result = ipv6ct_entry->prev_index;
IPADBG("Previous entry of %d is %d\n", entry_index, result);
return result;
}
static void table_entry_set_prev_index(void* entry, uint16_t entry_index, uint16_t prev_index,
void* meta, uint16_t base_table_size)
{
ipa_ipv6ct_hw_entry* ipv6ct_entry = (ipa_ipv6ct_hw_entry*)entry;
IPADBG("Previous entry of %d is %d\n", entry_index, prev_index);
ipv6ct_entry->prev_index = prev_index;
IPADBG("return\n");
}
static int table_entry_copy_from_user(void* entry, void* user_data)
{
ipa_ipv6ct_hw_entry* ipv6ct_entry = (ipa_ipv6ct_hw_entry*)entry;
const ipa_ipv6ct_rule* user_rule = (const ipa_ipv6ct_rule*)user_data;
IPADBG("\n");
ipv6ct_entry->src_ipv6_lsb = user_rule->src_ipv6_lsb;
ipv6ct_entry->src_ipv6_msb = user_rule->src_ipv6_msb;
ipv6ct_entry->dest_ipv6_lsb = user_rule->dest_ipv6_lsb;
ipv6ct_entry->dest_ipv6_msb = user_rule->dest_ipv6_msb;
ipv6ct_entry->protocol = user_rule->protocol;
ipv6ct_entry->src_port = user_rule->src_port;
ipv6ct_entry->dest_port = user_rule->dest_port;
ipv6ct_entry->ucp = user_rule->ucp;
ipv6ct_entry->uc_activation_index = user_rule->uc_activation_index;
ipv6ct_entry->s = user_rule->s;
switch (user_rule->direction_settings)
{
case IPA_IPV6CT_DIRECTION_DENY_ALL:
break;
case IPA_IPV6CT_DIRECTION_ALLOW_OUT:
ipv6ct_entry->out_allowed = IPA_IPV6CT_DIRECTION_ALLOW_BIT;
break;
case IPA_IPV6CT_DIRECTION_ALLOW_IN:
ipv6ct_entry->in_allowed = IPA_IPV6CT_DIRECTION_ALLOW_BIT;
break;
case IPA_IPV6CT_DIRECTION_ALLOW_ALL:
ipv6ct_entry->out_allowed = IPA_IPV6CT_DIRECTION_ALLOW_BIT;
ipv6ct_entry->in_allowed = IPA_IPV6CT_DIRECTION_ALLOW_BIT;
break;
default:
IPAERR("wrong value for IPv6CT direction setting parameter %d\n", user_rule->direction_settings);
return -EINVAL;
}
IPADBG("return\n");
return 0;
}
static int table_entry_head_insert(void* entry, void* user_data, uint16_t* dma_command_data)
{
int ret;
IPADBG("\n");
ret = table_entry_copy_from_user(entry, user_data);
if (ret)
{
IPAERR("unable to copy from user a new entry\n");
return ret;
}
*dma_command_data = 0;
((ipa_ipv6ct_flags*)dma_command_data)->enable = IPA_IPV6CT_FLAG_ENABLE_BIT;
IPADBG("return\n");
return 0;
}
static int table_entry_tail_insert(void* entry, void* user_data)
{
int ret;
IPADBG("\n");
ret = table_entry_copy_from_user(entry, user_data);
if (ret)
{
IPAERR("unable to copy from user a new entry\n");
return ret;
}
((ipa_ipv6ct_hw_entry*)entry)->enable = IPA_IPV6CT_FLAG_ENABLE_BIT;
IPADBG("return\n");
return 0;
}
static uint16_t table_entry_get_delete_head_dma_command_data(void* head, void* next_entry)
{
IPADBG("\n");
return IPA_IPV6CT_INVALID_PROTO_FIELD_VALUE;
}
/**
* ipa_ipv6ct_create_table() - Creates a new IPv6CT table
* @ipv6ct_table: [in] IPv6CT table
* @number_of_entries: [in] number of IPv6CT entries
* @table_index: [in] the index of the IPv6CT table
*
* This function creates new IPv6CT table:
* - Initializes table, memory descriptor and table_dma_cmd_helpers structures
* - Allocates, maps and clears the memory for table
*
* Returns: 0 On Success, negative on failure
*/
static int ipa_ipv6ct_create_table(ipa_ipv6ct_table* ipv6ct_table, uint16_t number_of_entries, uint8_t table_index)
{
int ret, size;
IPADBG("\n");
ipa_table_init(
&ipv6ct_table->table, IPA_IPV6CT_TABLE_NAME, IPA_NAT_MEM_IN_DDR,
sizeof(ipa_ipv6ct_hw_entry), NULL, 0, &entry_interface);
ret = ipa_table_calculate_entries_num(
&ipv6ct_table->table, number_of_entries, IPA_NAT_MEM_IN_DDR);
if (ret)
{
IPAERR("unable to calculate number of entries in ipv6ct table %d, while required by user %d\n",
table_index, number_of_entries);
return ret;
}
size = ipa_table_calculate_size(&ipv6ct_table->table);
IPADBG("IPv6CT table size: %d\n", size);
ipa_mem_descriptor_init(
&ipv6ct_table->mem_desc,
IPA_IPV6CT_DEV_NAME,
size,
table_index,
IPA_IOC_ALLOC_IPV6CT_TABLE,
IPA_IOC_DEL_IPV6CT_TABLE,
false); /* false here means don't consider using sram */
ret = ipa_mem_descriptor_allocate_memory(
&ipv6ct_table->mem_desc,
ipv6ct.ipa_desc->fd);
if (ret)
{
IPAERR("unable to allocate ipv6ct memory descriptor Error: %d\n", ret);
goto bail;
}
ipa_table_calculate_addresses(&ipv6ct_table->table, ipv6ct_table->mem_desc.base_addr);
ipa_table_reset(&ipv6ct_table->table);
ipa_ipv6ct_create_table_dma_cmd_helpers(ipv6ct_table, table_index);
IPADBG("return\n");
return 0;
bail:
memset(ipv6ct_table, 0, sizeof(*ipv6ct_table));
return ret;
}
static int ipa_ipv6ct_destroy_table(ipa_ipv6ct_table* ipv6ct_table)
{
int ret;
IPADBG("\n");
ret = ipa_mem_descriptor_delete(&ipv6ct_table->mem_desc, ipv6ct.ipa_desc->fd);
if (ret)
IPAERR("unable to delete IPV6CT descriptor\n");
memset(ipv6ct_table, 0, sizeof(*ipv6ct_table));
IPADBG("return\n");
return ret;
}
/**
* ipa_ipv6ct_create_table_dma_cmd_helpers() -
* Creates dma_cmd_helpers for base table in the received IPv6CT table
* @ipv6ct_table: [in] IPv6CT table
* @table_indx: [in] The index of the IPv6CT table
*
* A DMA command helper helps to generate the DMA command for one
* specific field change. Each table has 3 different types of field
* change: update_head, update_entry and delete_head. This function
* creates the helpers and updates the base table correspondingly.
*/
static void ipa_ipv6ct_create_table_dma_cmd_helpers(
ipa_ipv6ct_table* ipv6ct_table,
uint8_t table_indx )
{
IPADBG("\n");
ipa_table_dma_cmd_helper_init(
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_FLAGS],
table_indx,
IPA_IPV6CT_BASE_TBL,
IPA_IPV6CT_EXPN_TBL,
ipv6ct_table->mem_desc.addr_offset + IPA_IPV6CT_RULE_FLAG_FIELD_OFFSET);
ipa_table_dma_cmd_helper_init(
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_NEXT_INDEX],
table_indx,
IPA_IPV6CT_BASE_TBL,
IPA_IPV6CT_EXPN_TBL,
ipv6ct_table->mem_desc.addr_offset + IPA_IPV6CT_RULE_NEXT_FIELD_OFFSET);
ipa_table_dma_cmd_helper_init(
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_PROTOCOL],
table_indx,
IPA_IPV6CT_BASE_TBL,
IPA_IPV6CT_EXPN_TBL,
ipv6ct_table->mem_desc.addr_offset + IPA_IPV6CT_RULE_PROTO_FIELD_OFFSET);
ipv6ct_table->table.dma_help[HELP_UPDATE_HEAD] =
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_FLAGS];
ipv6ct_table->table.dma_help[HELP_UPDATE_ENTRY] =
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_NEXT_INDEX];
ipv6ct_table->table.dma_help[HELP_DELETE_HEAD] =
&ipv6ct_table->table_dma_cmd_helpers[IPA_IPV6CT_TABLE_PROTOCOL];
IPADBG("return\n");
}
static int ipa_ipv6ct_post_init_cmd(ipa_ipv6ct_table* ipv6ct_table, uint8_t tbl_index)
{
struct ipa_ioc_ipv6ct_init cmd;
int ret;
IPADBG("\n");
cmd.tbl_index = tbl_index;
cmd.base_table_offset = ipv6ct_table->mem_desc.addr_offset;
cmd.expn_table_offset = cmd.base_table_offset + (ipv6ct_table->table.table_entries * sizeof(ipa_ipv6ct_hw_entry));
/* Driverr/HW expected base table size to be power^2-1 due to H/W hash calculation */
cmd.table_entries = ipv6ct_table->table.table_entries - 1;
cmd.expn_table_entries = ipv6ct_table->table.expn_table_entries;
ret = ioctl(ipv6ct.ipa_desc->fd, IPA_IOC_INIT_IPV6CT_TABLE, &cmd);
if (ret)
{
IPAERR("unable to post init cmd Error: %d IPA fd %d\n", ret, ipv6ct.ipa_desc->fd);
return ret;
}
IPADBG("Posted IPA_IOC_INIT_IPV6CT_TABLE to kernel successfully\n");
return 0;
}
static int ipa_ipv6ct_post_dma_cmd(struct ipa_ioc_nat_dma_cmd* cmd)
{
IPADBG("\n");
cmd->mem_type = IPA_NAT_MEM_IN_DDR;
if (ioctl(ipv6ct.ipa_desc->fd, IPA_IOC_TABLE_DMA_CMD, cmd))
{
IPAERR("ioctl (IPA_IOC_TABLE_DMA_CMD) on fd %d has failed\n",
ipv6ct.ipa_desc->fd);
return -EIO;
}
IPADBG("posted IPA_IOC_TABLE_DMA_CMD to kernel successfully\n");
return 0;
}
void ipa_ipv6ct_dump_table(uint32_t table_handle)
{
ipa_ipv6ct_table* ipv6ct_table;
if (ipv6ct.ipa_desc->ver < IPA_HW_v4_0)
{
IPAERR("IPv6 connection tracking isn't supported for IPA version %d\n", ipv6ct.ipa_desc->ver);
return;
}
if (table_handle == IPA_TABLE_INVALID_ENTRY || table_handle > IPA_IPV6CT_MAX_TBLS)
{
IPAERR("invalid parameters passed %d\n", table_handle);
return;
}
if (pthread_mutex_lock(&ipv6ct_mutex))
{
IPAERR("unable to lock the ipv6ct mutex\n");
return;
}
ipv6ct_table = &ipv6ct.tables[table_handle - 1];
if (!ipv6ct_table->mem_desc.valid)
{
IPAERR("invalid table handle %d\n", table_handle);
goto unlock;
}
/* Prevents interleaving with later kernel printouts. Flush doesn't help. */
sleep(1);
ipa_read_debug_info(IPA_IPV6CT_DEBUG_FILE_PATH);
ipa_read_debug_info(IPA_UC_ACT_DEBUG_FILE_PATH);
sleep(1);
unlock:
if (pthread_mutex_unlock(&ipv6ct_mutex))
IPAERR("unable to unlock the ipv6ct mutex\n");
}
/**
* ipa_ipv6ct_add_uc_act_entry() - add uc activation entry
* @u: [in] structure specifying the uC activation entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_add_uc_act_entry(union ipa_ioc_uc_activation_entry *u)
{
IPADBG("\n");
if(ioctl(ipv6ct.ipa_desc->fd, IPA_IOC_ADD_UC_ACT_ENTRY, u))
{
IPAERR("ioctl (IPA_IOC_ADD_UC_ACT_ENTRY) on fd %d has failed\n",
ipv6ct.ipa_desc->fd);
return -EIO;
}
IPADBG("posted IPA_IOC_ADD_UC_ACT_ENTRY to kernel successfully, index %d\n",
u->ipv6_nat.index);
return 0;
}
/**
* ipa_ipv6ct_del_uc_act_entry() - del uc activation entry
* @index: [in] index of the uc activation entry to be removed
*
* Returns: 0 On Success, negative on failure
*/
int ipa_ipv6ct_del_uc_act_entry(uint16_t index)
{
IPADBG("\n");
if(ioctl(ipv6ct.ipa_desc->fd, IPA_IOC_DEL_UC_ACT_ENTRY, index))
{
IPAERR("ioctl (IPA_IOC_DEL_UC_ACT_ENTRY) on fd %d has failed\n",
ipv6ct.ipa_desc->fd);
return -EIO;
}
IPADBG("posted IPA_IOC_DEL_UC_ACT_ENTRY to kernel successfully, index %d\n",
index);
return 0;
}

View File

@@ -1,363 +0,0 @@
/*
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "ipa_mem_descriptor.h"
#include "ipa_nat_utils.h"
#include <sys/ioctl.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <errno.h>
#include <unistd.h>
#define IPA_DEV_DIR "/dev/"
#ifdef IPA_ON_R3PC
#define IPA_DEVICE_MMAP_MEM_SIZE (2 * 1024UL * 1024UL - 1)
#endif
static int AllocateMemory(
ipa_mem_descriptor* desc,
int ipa_fd)
{
struct ipa_ioc_nat_ipv6ct_table_alloc cmd;
int ret = 0;
IPADBG("In\n");
#ifndef IPA_ON_R3PC
/*
* If/when the number of NAT table entries requested yields a byte
* count that will fit in SRAM, SRAM will be used to hold the NAT
* table. When SRAM is used, some odd things can happen, relative
* to mmap'ing's virtual memory scheme, that require us to make
* some adjustments.
*
* To be more specific, the real physical SRAM location for the
* table and the table's size may not play well with Linux's
* mmap'ing virtual memory scheme....which likes everything to be
* PAGE_SIZE aligned and sized in multiples of PAGE_SIZE.
*
* Given the above, if the NAT table's (in SRAM) physical address
* in not on a PAGE_SIZE boundary, it will be offset into the
* mmap'd virtual memory, hence we need to know that offset in
* order to get to the table. If said offset plus the table's
* size takes it across a PAGE_SIZE boundary, we need to allocate
* more space to ensure that the table is completely within the
* mmap'd virtual memory.
*/
desc->sram_available = desc->sram_to_be_used = false;
memset(&desc->nat_sram_info, 0, sizeof(desc->nat_sram_info));
ret = ioctl(
ipa_fd,
IPA_IOC_GET_NAT_IN_SRAM_INFO,
&desc->nat_sram_info);
if ( ret == 0 )
{
IPADBG("sram_mem_available_for_nat(0x%08x) "
"nat_table_offset_into_mmap(0x%08x) "
"best_nat_in_sram_size_rqst(0x%08x)\n",
desc->nat_sram_info.sram_mem_available_for_nat,
desc->nat_sram_info.nat_table_offset_into_mmap,
desc->nat_sram_info.best_nat_in_sram_size_rqst);
desc->sram_available = true;
if ( desc->consider_using_sram )
{
if (desc->orig_rqst_size <=
desc->nat_sram_info.sram_mem_available_for_nat)
{
desc->sram_to_be_used = true;
}
}
}
#endif
/*
* Now do the actual allocation...
*/
memset(&cmd, 0, sizeof(cmd));
cmd.size = desc->orig_rqst_size;
ret = ioctl(ipa_fd, desc->allocate_ioctl_num, &cmd);
if (ret)
{
IPAERR("Unable to post %s allocate table command. Error %d IPA fd %d\n",
desc->name, ret, ipa_fd);
goto bail;
}
desc->addr_offset = cmd.offset;
IPADBG("The memory desc for %s allocated successfully\n", desc->name);
bail:
IPADBG("Out\n");
return ret;
}
static int MapMemory(
ipa_mem_descriptor* desc,
int ipa_fd)
{
char device_full_path[IPA_RESOURCE_NAME_MAX];
size_t ipa_dev_dir_path_len;
int device_fd;
int ret = 0;
IPADBG("In\n");
ipa_dev_dir_path_len =
strlcpy(device_full_path, IPA_DEV_DIR, IPA_RESOURCE_NAME_MAX);
if (ipa_dev_dir_path_len >= IPA_RESOURCE_NAME_MAX)
{
IPAERR("Unable to copy a string with size %d to buffer with size %d\n",
(int)ipa_dev_dir_path_len, IPA_RESOURCE_NAME_MAX);
ret = -EINVAL;
goto bail;
}
strlcpy(device_full_path + ipa_dev_dir_path_len,
desc->name, IPA_RESOURCE_NAME_MAX - ipa_dev_dir_path_len);
device_fd = open(device_full_path, O_RDWR);
if (device_fd < 0)
{
IPAERR("unable to open the desc %s in path %s. Error:%d\n",
desc->name, device_full_path, device_fd);
ret = -EIO;
goto bail;
}
#ifndef IPA_ON_R3PC
/*
* If/when the number of NAT table entries requested yields a byte
* count that will fit in SRAM, SRAM will be used to hold the NAT
* table. When SRAM is used, some odd things can happen, relative
* to mmap'ing's virtual memory scheme, that require us to make
* some adjustments.
*
* To be more specific, the real physical SRAM location for the
* table and the table's size may not play well with Linux's
* mmap'ing virtual memory scheme....which likes everything to be
* PAGE_SIZE aligned and sized in multiples of PAGE_SIZE.
*
* Given the above, if the NAT table's (in SRAM) physical address
* in not on a PAGE_SIZE boundary, it will be offset into the
* mmap'd virtual memory, hence we need to know that offset in
* order to get to the table. If said offset plus the table's
* size takes it across a PAGE_SIZE boundary, we need to allocate
* more space to ensure that the table is completely within the
* mmap'd virtual memory.
*/
desc->mmap_size =
( desc->sram_to_be_used ) ?
desc->nat_sram_info.best_nat_in_sram_size_rqst :
desc->orig_rqst_size;
desc->mmap_addr = desc->base_addr =
(void* )mmap(
NULL,
desc->mmap_size,
PROT_READ | PROT_WRITE,
MAP_SHARED,
device_fd,
0);
#else
IPADBG("user space r3pc\n");
desc->mmap_addr = desc->base_addr =
(void *) mmap(
(caddr_t)0,
IPA_DEVICE_MMAP_MEM_SIZE,
PROT_READ | PROT_WRITE,
MAP_SHARED,
device_fd,
0);
#endif
if (desc->base_addr == MAP_FAILED)
{
IPAERR("Unable to mmap the memory for %s\n", desc->name);
ret = -EINVAL;
goto close;
}
if ( desc->sram_to_be_used )
{
desc->base_addr =
(uint8_t*) (desc->base_addr) +
desc->nat_sram_info.nat_table_offset_into_mmap;
}
IPADBG("mmap for %s return value 0x%lx -> 0x%lx\n",
desc->name,
(long unsigned int) desc->mmap_addr,
(long unsigned int) desc->base_addr);
close:
if (close(device_fd))
{
IPAERR("unable to close the file descriptor for %s\n", desc->name);
ret = -EINVAL;
}
bail:
IPADBG("Out\n");
return ret;
}
static int DeallocateMemory(
ipa_mem_descriptor* desc,
int ipa_fd)
{
struct ipa_ioc_nat_ipv6ct_table_del cmd;
int ret = 0;
IPADBG("In\n");
memset(&cmd, 0, sizeof(cmd));
cmd.table_index = desc->table_index;
cmd.mem_type =
( desc->sram_to_be_used ) ?
IPA_NAT_MEM_IN_SRAM :
IPA_NAT_MEM_IN_DDR;
ret = ioctl(ipa_fd, desc->delete_ioctl_num, &cmd);
if (ret)
{
IPAERR("unable to post table delete command for %s Error: %d IPA fd %d\n",
desc->name, ret, ipa_fd);
goto bail;
}
IPADBG("posted delete command for %s to kernel successfully\n", desc->name);
bail:
IPADBG("Out\n");
return ret;
}
void ipa_mem_descriptor_init(
ipa_mem_descriptor* desc,
const char* device_name,
int size,
uint8_t table_index,
unsigned long allocate_ioctl_num,
unsigned long delete_ioctl_num,
bool consider_using_sram )
{
IPADBG("In\n");
strlcpy(desc->name, device_name, IPA_RESOURCE_NAME_MAX);
desc->orig_rqst_size = desc->mmap_size = size;
desc->table_index = table_index;
desc->allocate_ioctl_num = allocate_ioctl_num;
desc->delete_ioctl_num = delete_ioctl_num;
desc->consider_using_sram = consider_using_sram;
IPADBG("Out\n");
}
int ipa_mem_descriptor_allocate_memory(
ipa_mem_descriptor* desc,
int ipa_fd)
{
int ret;
IPADBG("In\n");
ret = AllocateMemory(desc, ipa_fd);
if (ret)
{
IPAERR("unable to allocate %s\n", desc->name);
goto bail;
}
ret = MapMemory(desc, ipa_fd);
if (ret)
{
IPAERR("unable to map %s\n", desc->name);
DeallocateMemory(desc, ipa_fd);
goto bail;
}
desc->valid = TRUE;
bail:
IPADBG("Out\n");
return ret;
}
int ipa_mem_descriptor_delete(
ipa_mem_descriptor* desc,
int ipa_fd)
{
int ret = 0;
IPADBG("In\n");
if (! desc->valid)
{
IPAERR("invalid desc handle passed\n");
ret = -EINVAL;
goto bail;
}
desc->valid = FALSE;
#ifndef IPA_ON_R3PC
munmap(desc->mmap_addr, desc->mmap_size);
#else
munmap(desc->mmap_addr, IPA_DEVICE_MMAP_MEM_SIZE);
#endif
ret = DeallocateMemory(desc, ipa_fd);
bail:
IPADBG("Out\n");
return ret;
}

View File

@@ -1,348 +0,0 @@
/*
* Copyright (c) 2013-2020 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "ipa_nat_drv.h"
#include "ipa_nat_drvi.h"
#include <errno.h>
/**
* ipa_nat_add_ipv4_tbl() - create ipv4 nat table
* @public_ip_addr: [in] public ipv4 address
* @mem_type_ptr: [in] type of memory table is to reside in
* @number_of_entries: [in] number of nat entries
* @table_handle: [out] Handle of new ipv4 nat table
*
* To create new ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_add_ipv4_tbl(
uint32_t public_ip_addr,
const char *mem_type_ptr,
uint16_t number_of_entries,
uint32_t *tbl_hdl)
{
int ret;
if (tbl_hdl == NULL || mem_type_ptr == NULL || number_of_entries == 0) {
IPAERR(
"Invalid parameters tbl_hdl=%pK mem_type_ptr=%p number_of_entries=%d\n",
tbl_hdl,
mem_type_ptr,
number_of_entries);
return -EINVAL;
}
*tbl_hdl = 0;
ret = ipa_nati_add_ipv4_tbl(
public_ip_addr, mem_type_ptr, number_of_entries, tbl_hdl);
if (ret) {
IPAERR("unable to add NAT table\n");
return ret;
}
IPADBG("Returning table handle 0x%x\n", *tbl_hdl);
return ret;
} /* __ipa_nat_add_ipv4_tbl() */
/**
* ipa_nat_del_ipv4_tbl() - delete ipv4 table
* @table_handle: [in] Handle of ipv4 nat table
*
* To delete given ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_del_ipv4_tbl(
uint32_t tbl_hdl)
{
if ( ! VALID_TBL_HDL(tbl_hdl) ) {
IPAERR("Invalid table handle passed 0x%08X\n", tbl_hdl);
return -EINVAL;
}
IPADBG("Passed Table Handle: 0x%08X\n", tbl_hdl);
return ipa_nati_del_ipv4_table(tbl_hdl);
}
/**
* ipa_nat_add_ipv4_rule() - to insert new ipv4 rule
* @table_handle: [in] handle of ipv4 nat table
* @rule: [in] Pointer to new rule
* @rule_handle: [out] Return the handle to rule
*
* To insert new ipv4 nat rule into ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_add_ipv4_rule(
uint32_t tbl_hdl,
const ipa_nat_ipv4_rule *clnt_rule,
uint32_t *rule_hdl)
{
int result = -EINVAL;
if ( ! VALID_TBL_HDL(tbl_hdl) ||
rule_hdl == NULL ||
clnt_rule == NULL ) {
IPAERR(
"Invalid parameters tbl_hdl=%d clnt_rule=%pK rule_hdl=%pK\n",
tbl_hdl, clnt_rule, rule_hdl);
return result;
}
IPADBG("Passed Table handle: 0x%x\n", tbl_hdl);
if (ipa_nati_add_ipv4_rule(tbl_hdl, clnt_rule, rule_hdl)) {
return result;
}
IPADBG("Returning rule handle %u\n", *rule_hdl);
return 0;
}
/**
* ipa_nat_del_ipv4_rule() - to delete ipv4 nat rule
* @table_handle: [in] handle of ipv4 nat table
* @rule_handle: [in] ipv4 nat rule handle
*
* To insert new ipv4 nat rule into ipv4 nat table
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_del_ipv4_rule(
uint32_t tbl_hdl,
uint32_t rule_hdl)
{
int result = -EINVAL;
if ( ! VALID_TBL_HDL(tbl_hdl) || ! VALID_RULE_HDL(rule_hdl) )
{
IPAERR("Invalid parameters tbl_hdl=0x%08X rule_hdl=0x%08X\n",
tbl_hdl, rule_hdl);
return result;
}
IPADBG("Passed Table: 0x%08X and rule handle 0x%08X\n", tbl_hdl, rule_hdl);
result = ipa_nati_del_ipv4_rule(tbl_hdl, rule_hdl);
if (result) {
IPAERR(
"Unable to delete rule with handle 0x%08X "
"from hw for NAT table with handle 0x%08X\n",
rule_hdl, tbl_hdl);
return result;
}
return 0;
}
/**
* ipa_nat_query_timestamp() - to query timestamp
* @table_handle: [in] handle of ipv4 nat table
* @rule_handle: [in] ipv4 nat rule handle
* @time_stamp: [out] time stamp of rule
*
* To retrieve the timestamp that lastly the
* nat rule was accessed
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_query_timestamp(
uint32_t tbl_hdl,
uint32_t rule_hdl,
uint32_t *time_stamp)
{
if ( ! VALID_TBL_HDL(tbl_hdl) ||
! VALID_RULE_HDL(rule_hdl) ||
time_stamp == NULL )
{
IPAERR("Invalid parameters passed tbl_hdl=0x%x rule_hdl=%u time_stamp=%pK\n",
tbl_hdl, rule_hdl, time_stamp);
return -EINVAL;
}
IPADBG("Passed Table 0x%x and rule handle %u\n", tbl_hdl, rule_hdl);
return ipa_nati_query_timestamp(tbl_hdl, rule_hdl, time_stamp);
}
/**
* ipa_nat_modify_pdn() - modify single PDN entry in the PDN config table
* @table_handle: [in] handle of ipv4 nat table
* @pdn_index : [in] the index of the entry to be modified
* @pdn_info : [in] values for the PDN entry to be changed
*
* Modify a PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_modify_pdn(
uint32_t tbl_hdl,
uint8_t pdn_index,
ipa_nat_pdn_entry *pdn_info)
{
struct ipa_ioc_nat_pdn_entry pdn_data;
if ( ! VALID_TBL_HDL(tbl_hdl) ||
pdn_info == NULL) {
IPAERR(
"invalid parameters passed tbl_hdl=%d pdn_info=%pK\n",
tbl_hdl, pdn_info);
return -EINVAL;
}
if (pdn_index > IPA_MAX_PDN_NUM) {
IPAERR(
"PDN index %d is out of range maximum %d",
pdn_index, IPA_MAX_PDN_NUM);
return -EINVAL;
}
pdn_data.pdn_index = pdn_index;
pdn_data.public_ip = pdn_info->public_ip;
pdn_data.src_metadata = pdn_info->src_metadata;
pdn_data.dst_metadata = pdn_info->dst_metadata;
return ipa_nati_modify_pdn(&pdn_data);
}
/**
* ipa_nat_get_pdn_index() - get a PDN index for a public ip
* @public_ip : [in] IPv4 address of the PDN entry
* @pdn_index : [out] the index of the requested PDN entry
*
* Get a PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_get_pdn_index(
uint32_t public_ip,
uint8_t *pdn_index)
{
if(!pdn_index)
{
IPAERR("NULL PDN index\n");
return -EINVAL;
}
return ipa_nati_get_pdn_index(public_ip, pdn_index);
}
/**
* ipa_nat_alloc_pdn() - allocate a PDN for new WAN
* @pdn_info : [in] values for the PDN entry to be created
* @pdn_index : [out] the index of the requested PDN entry
*
* allocate a new PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_alloc_pdn(
ipa_nat_pdn_entry *pdn_info,
uint8_t *pdn_index)
{
if(!pdn_info)
{
IPAERR("NULL PDN info\n");
return -EINVAL;
}
if(!pdn_index)
{
IPAERR("NULL PDN index\n");
return -EINVAL;
}
return ipa_nati_alloc_pdn(pdn_info, pdn_index);
}
/**
* ipa_nat_get_pdn_count() - get the number of allocated PDNs
* @pdn_cnt : [out] the number of allocated PDNs
*
* get the number of allocated PDNs
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_get_pdn_count(
uint8_t *pdn_cnt)
{
if(!pdn_cnt)
{
IPAERR("NULL PDN count\n");
return -EINVAL;
}
*pdn_cnt = ipa_nati_get_pdn_cnt();
return 0;
}
/**
* ipa_nat_dealloc_pdn() - deallocate a PDN entry
* @pdn_index : [in] pdn index to be deallocated
*
* deallocate a PDN in specified index - zero the PDN entry
*
* Returns: 0 On Success, negative on failure
*/
int ipa_nat_dealloc_pdn(
uint8_t pdn_index)
{
if(pdn_index > IPA_MAX_PDN_NUM) {
IPAERR("PDN index is out of range %d", pdn_index);
return -EINVAL;
}
return ipa_nati_dealloc_pdn(pdn_index);
}
/**
* ipa_nat_vote_clock() - used for voting clock
* @vote_type: [in] desired vote type
*/
int ipa_nat_vote_clock(
enum ipa_app_clock_vote_type vote_type )
{
if ( ! (vote_type >= IPA_APP_CLK_DEVOTE &&
vote_type <= IPA_APP_CLK_RESET_VOTE) )
{
IPAERR("Bad vote_type(%u) parameter\n", vote_type);
return -EINVAL;
}
return ipa_nati_vote_clock(vote_type);
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,231 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <map>
#include <iterator>
#include "ipa_nat_utils.h"
#include "ipa_nat_map.h"
static std::map<uint32_t, uint32_t> map_array[MAP_NUM_MAX];
/******************************************************************************/
int ipa_nat_map_add(
ipa_which_map which,
uint32_t key,
uint32_t val )
{
int ret_val = 0;
std::pair<std::map<uint32_t, uint32_t>::iterator, bool> ret;
IPADBG("In\n");
if ( ! VALID_IPA_USE_MAP(which) )
{
IPAERR("Bad arg which(%u)\n", which);
ret_val = -1;
goto bail;
}
IPADBG("[%s] key(%u) -> val(%u)\n",
ipa_which_map_as_str(which), key, val);
ret = map_array[which].insert(std::pair<uint32_t, uint32_t>(key, val));
if ( ret.second == false )
{
IPAERR("[%s] key(%u) already exists in map\n",
ipa_which_map_as_str(which),
key);
ret_val = -1;
}
bail:
IPADBG("Out\n");
return ret_val;
}
/******************************************************************************/
int ipa_nat_map_find(
ipa_which_map which,
uint32_t key,
uint32_t* val_ptr )
{
int ret_val = 0;
std::map<uint32_t, uint32_t>::iterator it;
IPADBG("In\n");
if ( ! VALID_IPA_USE_MAP(which) )
{
IPAERR("Bad arg which(%u)\n", which);
ret_val = -1;
goto bail;
}
IPADBG("[%s] key(%u)\n",
ipa_which_map_as_str(which), key);
it = map_array[which].find(key);
if ( it == map_array[which].end() )
{
IPAERR("[%s] key(%u) not found in map\n",
ipa_which_map_as_str(which),
key);
ret_val = -1;
}
else
{
if ( val_ptr )
{
*val_ptr = it->second;
IPADBG("[%s] key(%u) -> val(%u)\n",
ipa_which_map_as_str(which),
key, *val_ptr);
}
}
bail:
IPADBG("Out\n");
return ret_val;
}
/******************************************************************************/
int ipa_nat_map_del(
ipa_which_map which,
uint32_t key,
uint32_t* val_ptr )
{
int ret_val = 0;
std::map<uint32_t, uint32_t>::iterator it;
IPADBG("In\n");
if ( ! VALID_IPA_USE_MAP(which) )
{
IPAERR("Bad arg which(%u)\n", which);
ret_val = -1;
goto bail;
}
IPADBG("[%s] key(%u)\n",
ipa_which_map_as_str(which), key);
it = map_array[which].find(key);
if ( it == map_array[which].end() )
{
IPAERR("[%s] key(%u) not found in map\n",
ipa_which_map_as_str(which),
key);
ret_val = -1;
}
else
{
if ( val_ptr )
{
*val_ptr = it->second;
IPADBG("[%s] key(%u) -> val(%u)\n",
ipa_which_map_as_str(which),
key, *val_ptr);
}
map_array[which].erase(it);
}
bail:
IPADBG("Out\n");
return ret_val;
}
int ipa_nat_map_clear(
ipa_which_map which )
{
int ret_val = 0;
IPADBG("In\n");
if ( ! VALID_IPA_USE_MAP(which) )
{
IPAERR("Bad arg which(%u)\n", which);
ret_val = -1;
goto bail;
}
map_array[which].clear();
bail:
IPADBG("Out\n");
return ret_val;
}
int ipa_nat_map_dump(
ipa_which_map which )
{
std::map<uint32_t, uint32_t>::iterator it;
int ret_val = 0;
IPADBG("In\n");
if ( ! VALID_IPA_USE_MAP(which) )
{
IPAERR("Bad arg which(%u)\n", which);
ret_val = -1;
goto bail;
}
printf("Dumping: %s\n", ipa_which_map_as_str(which));
for ( it = map_array[which].begin();
it != map_array[which].end();
it++ )
{
printf(" Key[%u|0x%08X] -> Value[%u|0x%08X]\n",
it->first,
it->first,
it->second,
it->second);
}
bail:
IPADBG("Out\n");
return ret_val;
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,215 +0,0 @@
/*
* Copyright (c) 2013, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "ipa_nat_utils.h"
#include <sys/ioctl.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <pthread.h>
#define IPA_MAX_MSG_LEN 4096
static char dbg_buff[IPA_MAX_MSG_LEN];
#if !defined(MSM_IPA_TESTS) && !defined(USE_GLIB) && !defined(FEATURE_IPA_ANDROID)
size_t strlcpy(char* dst, const char* src, size_t size)
{
size_t i;
if (size == 0)
return strlen(src);
for (i = 0; i < (size - 1) && src[i] != '\0'; ++i)
dst[i] = src[i];
dst[i] = '\0';
return i + strlen(src + i);
}
#endif
ipa_descriptor* ipa_descriptor_open(void)
{
ipa_descriptor* desc_ptr;
int res = 0;
IPADBG("In\n");
desc_ptr = calloc(1, sizeof(ipa_descriptor));
if ( desc_ptr == NULL )
{
IPAERR("Unable to allocate ipa_descriptor\n");
goto bail;
}
desc_ptr->fd = open(IPA_DEV_NAME, O_RDONLY);
if (desc_ptr->fd < 0)
{
IPAERR("Unable to open ipa device\n");
goto free;
}
res = ioctl(desc_ptr->fd, IPA_IOC_GET_HW_VERSION, &desc_ptr->ver);
if (res == 0)
{
IPADBG("IPA version is %d\n", desc_ptr->ver);
}
else
{
IPAERR("Unable to get IPA version. Error %d\n", res);
desc_ptr->ver = IPA_HW_None;
}
goto bail;
free:
free(desc_ptr);
desc_ptr = NULL;
bail:
IPADBG("Out\n");
return desc_ptr;
}
void ipa_descriptor_close(
ipa_descriptor* desc_ptr)
{
IPADBG("In\n");
if ( desc_ptr )
{
if ( desc_ptr->fd >= 0)
{
close(desc_ptr->fd);
}
free(desc_ptr);
}
IPADBG("Out\n");
}
void ipa_read_debug_info(
const char* debug_file_path)
{
size_t result;
FILE* debug_file;
debug_file = fopen(debug_file_path, "r");
if (debug_file == NULL)
{
printf("Failed to open %s\n", debug_file_path);
return;
}
for (;;)
{
result = fread(dbg_buff, sizeof(char), IPA_MAX_MSG_LEN, debug_file);
if (!result)
break;
if (result < IPA_MAX_MSG_LEN)
{
if (ferror(debug_file))
{
printf("Failed to read from %s\n", debug_file_path);
break;
}
dbg_buff[result] = '\0';
}
else
{
dbg_buff[IPA_MAX_MSG_LEN - 1] = '\0';
}
printf("%s", dbg_buff);
if (feof(debug_file))
break;
}
fclose(debug_file);
}
void log_nat_message(char *msg)
{
return;
}
int currTimeAs(
TimeAs_t timeAs,
uint64_t* valPtr )
{
struct timespec timeSpec;
int ret = 0;
if ( ! VALID_TIMEAS(timeAs) || ! valPtr )
{
IPAERR("Bad arg: timeAs (%u) and/or valPtr (%p)\n",
timeAs, valPtr );
ret = -1;
goto bail;
}
memset(&timeSpec, 0, sizeof(timeSpec));
if ( clock_gettime(CLOCK_MONOTONIC, &timeSpec) != 0 )
{
IPAERR("Can't get system clock time\n" );
ret = -1;
goto bail;
}
switch( timeAs )
{
case TimeAsNanSecs:
*valPtr =
(uint64_t) (SECS2NanSECS((uint64_t) timeSpec.tv_sec) +
((uint64_t) timeSpec.tv_nsec));
break;
case TimeAsMicSecs:
*valPtr =
(uint64_t) (SECS2MicSECS((uint64_t) timeSpec.tv_sec) +
((uint64_t) timeSpec.tv_nsec / 1000));
break;
case TimeAsMilSecs:
*valPtr =
(uint64_t) (SECS2MilSECS((uint64_t) timeSpec.tv_sec) +
((uint64_t) timeSpec.tv_nsec / 1000000));
break;
}
bail:
return ret;
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,46 +0,0 @@
AM_CPPFLAGS = -I./../inc \
-I$(top_srcdir)/ipanat/inc
AM_CPPFLAGS += -Wall -Wundef -Wno-trigraphs
AM_CPPFLAGS += -g -DDEBUG -DNAT_DEBUG
ipanattest_SOURCES = \
ipa_nat_testREG.c \
ipa_nat_test000.c \
ipa_nat_test001.c \
ipa_nat_test002.c \
ipa_nat_test003.c \
ipa_nat_test004.c \
ipa_nat_test005.c \
ipa_nat_test006.c \
ipa_nat_test007.c \
ipa_nat_test008.c \
ipa_nat_test009.c \
ipa_nat_test010.c \
ipa_nat_test011.c \
ipa_nat_test012.c \
ipa_nat_test013.c \
ipa_nat_test014.c \
ipa_nat_test015.c \
ipa_nat_test016.c \
ipa_nat_test017.c \
ipa_nat_test018.c \
ipa_nat_test019.c \
ipa_nat_test020.c \
ipa_nat_test021.c \
ipa_nat_test022.c \
ipa_nat_test023.c \
ipa_nat_test024.c \
ipa_nat_test025.c \
ipa_nat_test999.c \
main.c
bin_PROGRAMS = ipanattest
requiredlibs = ../src/libipanat.la
ipanattest_LDADD = $(requiredlibs)
LOCAL_MODULE := libipanat
LOCAL_PRELINK_MODULE := false
include $(BUILD_SHARED_LIBRARY)

View File

@@ -1,66 +0,0 @@
INTRODUCTION
------------
The ipanattest allow its user to drive NAT testing. It is run thusly:
# ipanattest [-d -r N -i N -e N -m mt]
Where:
-d Each test is discrete (create table, add rules, destroy table)
If not specified, only one table create and destroy for all tests
-r N Where N is the number of times to run the inotify regression test
-i N Where N is the number of times (iterations) to run test
-e N Where N is the number of entries in the NAT
-m mt Where mt is the type of memory to use for the NAT
Legal mt's: DDR, SRAM, or HYBRID (ie. use SRAM and DDR)
-g M-N Run tests M through N only
More about each command line option:
-d Makes each test discrete; meaning that, each test will create a
table, add rules, then destory the table.
Conversely, when -d not specified, each test will not create
and destroy a table. Only one table create and destroy at the
start and end of the run...with all test being run in between.
-r N Will cause the inotify regression test to be run N times.
-i N Will cause each test to be run N times
-e N Will cause the creation of a table with N entries
-m mt Will cause the NAT to live in either SRAM, DDR, or both
(ie. HYBRID)
-g M-N Will cause test M to N to be run. This allows you to skip
or isolate tests
When run with no arguments (ie. defaults):
1) The tests will be non-discrete
2) With only one iteration of the tests
3) On a DDR based table with one hundred entries
4) No inotify regression will be run
EXAMPLE COMMAND LINES
---------------------
To execute discrete tests (create, add rules, and delete table for
each test) one time on a table with one hundred entries:
# ipanattest -d -i 1 -e 100
To execute non-discrete (create and delete table only once) tests five
times on a table with thirty-two entries:
# ipanattest -i 5 -e 32
To execute inotify regression test 5 times
# ipanattest -r 5
ADDING NEW TESTS
----------------
In main.c, please see and embellish nt_array[] and use the following
file as a model: ipa_nat_testMODEL.c

View File

@@ -1,180 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* ===========================================================================
*
* INCLUDE FILES FOR MODULE
*
* ===========================================================================
*/
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
#include <netinet/in.h> /* for proto definitions */
#include "ipa_nat_drv.h"
#include "ipa_nat_drvi.h"
#undef array_sz
#define array_sz(a) \
( sizeof(a)/sizeof(a[0]) )
#define u32 uint32_t
#define u16 uint16_t
#define u8 uint8_t
#define RAN_ADDR rand_ip_addr()
#define RAN_PORT rand_ip_port()
static inline u32 rand_ip_addr()
{
static char buf[64];
snprintf(
buf, sizeof(buf),
"%u.%u.%u.%u",
(rand() % 254) + 1,
rand() % 255,
rand() % 255,
(rand() % 254) + 1);
return (u32) inet_addr(buf);
}
static inline u16 rand_ip_port()
{
return (u16) ((rand() % 60535) + 5000);
}
/*============ Preconditions to run NAT Test cases =========*/
#define IPA_NAT_TEST_PRE_COND_TE 20
#define CHECK_ERR(x) \
if ( x ) { \
IPAERR("Abrupt end of %s with " \
"err: %d at line: %d\n", \
__FUNCTION__, x, __LINE__); \
return -1; \
}
#define CHECK_ERR_TBL_STOP(x, th) \
if ( th ) { \
int _ter_ = ipa_nat_validate_ipv4_table(th); \
if ( _ter_ ) { \
if ( sep ) { \
ipa_nat_del_ipv4_tbl(th); \
} \
IPAERR("Abrupt end of %s with " \
"err: %d at line: %d\n", \
__FUNCTION__, _ter_, __LINE__); \
return -1; \
} \
} \
if ( x ) { \
if ( th ) { \
ipa_nat_dump_ipv4_table(th); \
if( sep ) { \
ipa_nat_del_ipv4_tbl(th); \
} \
} \
IPAERR("Abrupt end of %s with " \
"err: %d at line: %d\n", \
__FUNCTION__, x, __LINE__); \
return -1; \
}
#define CHECK_ERR_TBL_ACTION(x, th, action) \
if ( th ) { \
int _ter_ = ipa_nat_validate_ipv4_table(th); \
if ( _ter_ ) { \
IPAERR("ipa_nat_validate_ipv4_table() failed " \
"in: %s at line: %d\n", \
__FUNCTION__, __LINE__); \
action; \
} \
} \
if ( x ) { \
if ( th ) { \
ipa_nat_dump_ipv4_table(th); \
} \
IPAERR("error: %d in %s at line: %d\n", \
x, __FUNCTION__, __LINE__); \
action; \
}
typedef int (*NatTestFunc)(
const char*, u32, int, u32, int, void*);
typedef struct
{
const char* func_name;
int num_ents_trigger;
int test_hold_time_in_secs;
NatTestFunc func;
} NatTests;
#undef NAT_TEST_ENTRY
#define NAT_TEST_ENTRY(f, n, ht) \
{#f, (n), (ht), f}
#define NAT_DEBUG
int ipa_nat_validate_ipv4_table(u32);
int ipa_nat_testREG(const char*, u32, int, u32, int, void*);
int ipa_nat_test000(const char*, u32, int, u32, int, void*);
int ipa_nat_test001(const char*, u32, int, u32, int, void*);
int ipa_nat_test002(const char*, u32, int, u32, int, void*);
int ipa_nat_test003(const char*, u32, int, u32, int, void*);
int ipa_nat_test004(const char*, u32, int, u32, int, void*);
int ipa_nat_test005(const char*, u32, int, u32, int, void*);
int ipa_nat_test006(const char*, u32, int, u32, int, void*);
int ipa_nat_test007(const char*, u32, int, u32, int, void*);
int ipa_nat_test008(const char*, u32, int, u32, int, void*);
int ipa_nat_test009(const char*, u32, int, u32, int, void*);
int ipa_nat_test010(const char*, u32, int, u32, int, void*);
int ipa_nat_test011(const char*, u32, int, u32, int, void*);
int ipa_nat_test012(const char*, u32, int, u32, int, void*);
int ipa_nat_test013(const char*, u32, int, u32, int, void*);
int ipa_nat_test014(const char*, u32, int, u32, int, void*);
int ipa_nat_test015(const char*, u32, int, u32, int, void*);
int ipa_nat_test016(const char*, u32, int, u32, int, void*);
int ipa_nat_test017(const char*, u32, int, u32, int, void*);
int ipa_nat_test018(const char*, u32, int, u32, int, void*);
int ipa_nat_test019(const char*, u32, int, u32, int, void*);
int ipa_nat_test020(const char*, u32, int, u32, int, void*);
int ipa_nat_test021(const char*, u32, int, u32, int, void*);
int ipa_nat_test022(const char*, u32, int, u32, int, void*);
int ipa_nat_test023(const char*, u32, int, u32, int, void*);
int ipa_nat_test024(const char*, u32, int, u32, int, void*);
int ipa_nat_test025(const char*, u32, int, u32, int, void*);
int ipa_nat_test999(const char*, u32, int, u32, int, void*);

View File

@@ -1,70 +0,0 @@
/*
* Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test000.c
@brief
Verify the following scenario:
1. Add ipv4 table
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test000(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
IPADBG("In\n");
if ( ! sep )
{
IPADBG("calling ipa_nat_add_ipv4_tbl()\n");
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, tbl_hdl_ptr);
CHECK_ERR_TBL_STOP(ret, *tbl_hdl_ptr);
IPADBG("create nat ipv4 table successfully()\n");
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,88 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test001.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv4 rule
3. Delete ipv4 table
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test001(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,92 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test002.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv4 rule
3. delete ipv4 rule
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test002(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,104 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
IPA_NAT_ipa_nat_test003.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv4 rule
3. Add ipv4 rule
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test003(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule = {0};
u32 rule_hdl;
int ret;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,83 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test004.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. Delete a bogus table handle
3. Delete ipv4 table
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test004(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret = 0;
u32 tbl_hdl1 = 0xFFFFFFFF;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_del_ipv4_tbl(tbl_hdl1); /* intentionally pass bad handle */
if ( ret == 0 )
{
IPAERR("Able to delete table using invalid table handle\n");
CHECK_ERR_TBL_STOP(-1, tbl_hdl);
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,97 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test005.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv4 rule
3. Delete ipv4 rule
4. Add ipv4 rule
5. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test005(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule = {0};
u32 rule_hdl;
int ret;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,101 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test006.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv rule
3. Add same ipv rule
4. Delete first followed by second
5. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test006(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule = {0};
u32 rule_hdl;
u32 rule_hdl1;
int ret;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,100 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test007.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same ipv rules
3. delete second followed by first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test007(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule = {0};
u32 rule_hdl;
u32 rule_hdl1;
int ret;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test008.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 2 distinct rules
3. delete first followed by second
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test008(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test009.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 2 distinct rules
3. delete second followed by first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test009(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,116 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test010.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 3 distinct ipv4 rules
3. delete first, second followed by last
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test010(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1, rule_hdl2;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0}, ipv4_rule2 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
ipv4_rule2.target_ip = RAN_ADDR;
ipv4_rule2.target_port = RAN_PORT;
ipv4_rule2.private_ip = RAN_ADDR;
ipv4_rule2.private_port = RAN_PORT;
ipv4_rule2.protocol = IPPROTO_TCP;
ipv4_rule2.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,116 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test011.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 3 distinct ipv4 rules
3. delete second, first followed by last
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test011(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1, rule_hdl2;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0}, ipv4_rule2 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
ipv4_rule2.target_ip = RAN_ADDR;
ipv4_rule2.target_port = RAN_PORT;
ipv4_rule2.private_ip = RAN_ADDR;
ipv4_rule2.private_port = RAN_PORT;
ipv4_rule2.protocol = IPPROTO_TCP;
ipv4_rule2.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,116 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test012.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 3 distinct ipv4 rules
3. Delete third, second, first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test012(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1, rule_hdl2;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0}, ipv4_rule2 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
ipv4_rule2.target_ip = RAN_ADDR;
ipv4_rule2.target_port = RAN_PORT;
ipv4_rule2.private_ip = RAN_ADDR;
ipv4_rule2.private_port = RAN_PORT;
ipv4_rule2.protocol = IPPROTO_TCP;
ipv4_rule2.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,116 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test013.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add 3 distinct ipv4 rules
3. Delete third, first and second
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test013(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl, rule_hdl1, rule_hdl2;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule1 = {0}, ipv4_rule2 = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule1.target_ip = RAN_ADDR;
ipv4_rule1.target_port = RAN_PORT;
ipv4_rule1.private_ip = RAN_ADDR;
ipv4_rule1.private_port = RAN_PORT;
ipv4_rule1.protocol = IPPROTO_TCP;
ipv4_rule1.public_port = RAN_PORT;
ipv4_rule2.target_ip = RAN_ADDR;
ipv4_rule2.target_port = RAN_PORT;
ipv4_rule2.private_ip = RAN_ADDR;
ipv4_rule2.private_port = RAN_PORT;
ipv4_rule2.protocol = IPPROTO_TCP;
ipv4_rule2.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule1, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,102 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test014.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete first, second and third
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test014(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,104 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test015.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete first, third and second
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test015(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test016.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete second, first and third
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test016(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test017.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete second, third and first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test017(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test018.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete third, second and first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test018(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,103 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test019.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete third, first and second
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test019(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,108 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test020.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 4 ipv rules
3. delete third, second, fourth and first
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test020(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3, rule_hdl4;
ipa_nat_ipv4_rule ipv4_rule = {0};
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl4);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl4);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,125 +0,0 @@
/*
* Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test021.cpp
@brief
Verify the following scenario:
1. Add ipv4 table
2. add same 3 ipv rules
3. delete Head and last entry
4. add 2 new same ip4 entries
5. Add head entry again
6. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test021(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
u32 rule_hdl1, rule_hdl2, rule_hdl3;
ipa_nat_ipv4_rule ipv4_rule = {0}, ipv4_rule2 = {0};
u32 rule_hdl21, rule_hdl22;
/* Rule 1 */
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
/* Rule 2*/
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_UDP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
/* Delete head entry */
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
/* Delete Last Entry */
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
/* Add 2 different Entries */
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl21);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule2, &rule_hdl22);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
/* Add first entry again */
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,299 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test022.c
@brief
Note: Verify the following scenario:
1. Add ipv4 table
2. Add ipv4 rules till filled
3. Print stats
4. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test022(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule;
u32 rule_hdls[2048];
ipa_nati_tbl_stats nstats, last_nstats;
ipa_nati_tbl_stats istats, last_istats;
u32 i, tot;
bool switched = false;
const char* mem_type;
int ret;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nati_clear_ipv4_tbl(tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPAINFO("Attempting rule adds to %s table of size: (%u)\n",
ipa3_nat_mem_in_as_str(nstats.nmi),
nstats.tot_ents);
last_nstats = nstats;
last_istats = istats;
memset(rule_hdls, 0, sizeof(rule_hdls));
for ( i = tot = 0; i < array_sz(rule_hdls); i++ )
{
IPADBG("Trying %d ipa_nat_add_ipv4_rule()\n", i);
memset(&ipv4_rule, 0, sizeof(ipv4_rule));
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdls[i]);
CHECK_ERR_TBL_ACTION(ret, tbl_hdl, break);
IPADBG("Success %d ipa_nat_add_ipv4_rule() -> rule_hdl(0x%08X)\n",
i, rule_hdls[i]);
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_ACTION(ret, tbl_hdl, break);
/*
* Are we in hybrid mode and have we switched memory type?
* Check for it and print the appropriate stats.
*/
if ( nstats.nmi != last_nstats.nmi )
{
mem_type = ipa3_nat_mem_in_as_str(last_nstats.nmi);
switched = true;
/*
* NAT table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"NAT table of size (%u) or (%f) percent\n",
tot,
mem_type,
last_nstats.tot_ents,
((float) tot / (float) last_nstats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT BASE table of size (%u) or (%f) percent\n",
last_nstats.tot_base_ents_filled,
mem_type,
last_nstats.tot_base_ents,
((float) last_nstats.tot_base_ents_filled /
(float) last_nstats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT EXPN table of size (%u) or (%f) percent\n",
last_nstats.tot_expn_ents_filled,
mem_type,
last_nstats.tot_expn_ents,
((float) last_nstats.tot_expn_ents_filled /
(float) last_nstats.tot_expn_ents) * 100.0);
IPAINFO("%s NAT table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
last_nstats.tot_chains,
last_nstats.min_chain_len,
last_nstats.max_chain_len,
last_nstats.avg_chain_len);
/*
* INDEX table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"IDX table of size (%u) or (%f) percent\n",
tot,
mem_type,
last_istats.tot_ents,
((float) tot / (float) last_istats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX BASE table of size (%u) or (%f) percent\n",
last_istats.tot_base_ents_filled,
mem_type,
last_istats.tot_base_ents,
((float) last_istats.tot_base_ents_filled /
(float) last_istats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX EXPN table of size (%u) or (%f) percent\n",
last_istats.tot_expn_ents_filled,
mem_type,
last_istats.tot_expn_ents,
((float) last_istats.tot_expn_ents_filled /
(float) last_istats.tot_expn_ents) * 100.0);
IPAINFO("%s IDX table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
last_istats.tot_chains,
last_istats.min_chain_len,
last_istats.max_chain_len,
last_istats.avg_chain_len);
}
last_nstats = nstats;
last_istats = istats;
if ( switched )
{
switched = false;
IPAINFO("Continuing rule adds to %s table of size: (%u)\n",
ipa3_nat_mem_in_as_str(nstats.nmi),
nstats.tot_ents);
}
tot++;
}
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
mem_type = ipa3_nat_mem_in_as_str(nstats.nmi);
/*
* NAT table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"NAT table of size (%u) or (%f) percent\n",
tot,
mem_type,
nstats.tot_ents,
((float) tot / (float) nstats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT BASE table of size (%u) or (%f) percent\n",
nstats.tot_base_ents_filled,
mem_type,
nstats.tot_base_ents,
((float) nstats.tot_base_ents_filled /
(float) nstats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT EXPN table of size (%u) or (%f) percent\n",
nstats.tot_expn_ents_filled,
mem_type,
nstats.tot_expn_ents,
((float) nstats.tot_expn_ents_filled /
(float) nstats.tot_expn_ents) * 100.0);
IPAINFO("%s NAT table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
nstats.tot_chains,
nstats.min_chain_len,
nstats.max_chain_len,
nstats.avg_chain_len);
/*
* INDEX table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"IDX table of size (%u) or (%f) percent\n",
tot,
mem_type,
istats.tot_ents,
((float) tot / (float) istats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX BASE table of size (%u) or (%f) percent\n",
istats.tot_base_ents_filled,
mem_type,
istats.tot_base_ents,
((float) istats.tot_base_ents_filled /
(float) istats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX EXPN table of size (%u) or (%f) percent\n",
istats.tot_expn_ents_filled,
mem_type,
istats.tot_expn_ents,
((float) istats.tot_expn_ents_filled /
(float) istats.tot_expn_ents) * 100.0);
IPAINFO("%s IDX table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
istats.tot_chains,
istats.min_chain_len,
istats.max_chain_len,
istats.avg_chain_len);
IPAINFO("Deleting all rules\n");
for ( i = 0; i < tot; i++ )
{
IPADBG("Trying %d ipa_nat_del_ipv4_rule(0x%08X)\n",
i, rule_hdls[i]);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdls[i]);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Success ipa_nat_del_ipv4_rule(%d)\n", i);
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,134 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test023.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Add ipv rule three times to cause collisions and linking
3. Delete rules in a particular order and observe list for expected
form
4. Run 2 and 3 over and over until all delete cominations have been
run
5. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test023(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule = {0};
u32 rule_hdl1;
u32 rule_hdl2;
u32 rule_hdl3;
u32* rule_del_combos[6][3] = {
{ &rule_hdl1, &rule_hdl2, &rule_hdl3 },
{ &rule_hdl1, &rule_hdl3, &rule_hdl2 },
{ &rule_hdl2, &rule_hdl1, &rule_hdl3 },
{ &rule_hdl2, &rule_hdl3, &rule_hdl1 },
{ &rule_hdl3, &rule_hdl1, &rule_hdl2 },
{ &rule_hdl3, &rule_hdl2, &rule_hdl1 },
};
int i, j, ret;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
for ( i = 0; i < 6; i++ )
{
IPADBG("Adding rule 1\n");
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl1);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Adding rule 2\n");
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl2);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Adding rule 3\n");
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdl3);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ipa_nat_dump_ipv4_table(tbl_hdl);
for ( j = 0; j < 3; j++ )
{
u32* rh_ptr = rule_del_combos[i][j];
IPADBG("Deleting rule %u\n",
( rh_ptr == &rule_hdl1 ) ? 1 :
( rh_ptr == &rule_hdl2 ) ? 2 : 3);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, *rh_ptr);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ipa_nat_dump_ipv4_table(tbl_hdl);
}
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,81 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test024.c
@brief
Verify the following scenario:
1. Trigger thousands of table memory switches
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test024(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int i, ret;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
for ( i = 0; i < 1000; i++ )
{
ret = ipa_nat_test022(
nat_mem_type, pub_ip_add, total_entries, tbl_hdl, !sep, arb_data_ptr);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,362 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test025.c
@brief
Note: Verify the following scenario:
1. Similare to test022, but with random deletes during adds
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
#undef VALID_RULE
#define VALID_RULE(r) ((r) != 0 && (r) != 0xFFFFFFFF)
#undef GET_MAX
#define GET_MAX(ram, rdm) \
do { \
while ( (ram = rand() % 20) < 4); \
while ( (rdm = rand() % 10) >= ram || rdm == 0 ); \
IPADBG("rand_adds_max(%u) rand_dels_max(%u)\n", ram, rdm); \
} while (0)
int ipa_nat_test025(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
ipa_nat_ipv4_rule ipv4_rule;
u32 rule_hdls[1024];
ipa_nati_tbl_stats nstats, last_nstats;
ipa_nati_tbl_stats istats, last_istats;
u32 i;
u32 rand_adds_max, rand_dels_max;
u32 tot, tot_added, tot_deleted;
bool switched = false;
const char* mem_type;
int ret;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
ret = ipa_nati_clear_ipv4_tbl(tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPAINFO("Attempting rule adds to %s table of size: (%u)\n",
ipa3_nat_mem_in_as_str(nstats.nmi),
nstats.tot_ents);
last_nstats = nstats;
last_istats = istats;
memset(rule_hdls, 0, sizeof(rule_hdls));
GET_MAX(rand_adds_max, rand_dels_max);
tot = tot_added = tot_deleted = 0;
for ( i = 0; i < array_sz(rule_hdls); i++ )
{
IPADBG("Trying %u ipa_nat_add_ipv4_rule()\n", i);
memset(&ipv4_rule, 0, sizeof(ipv4_rule));
ipv4_rule.protocol = IPPROTO_TCP;
ipv4_rule.public_port = RAN_PORT;
ipv4_rule.target_ip = RAN_ADDR;
ipv4_rule.target_port = RAN_PORT;
ipv4_rule.private_ip = RAN_ADDR;
ipv4_rule.private_port = RAN_PORT;
ret = ipa_nat_add_ipv4_rule(tbl_hdl, &ipv4_rule, &rule_hdls[i]);
CHECK_ERR_TBL_ACTION(ret, tbl_hdl, break);
IPADBG("Success %u ipa_nat_add_ipv4_rule() -> rule_hdl(0x%08X)\n",
i, rule_hdls[i]);
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_ACTION(ret, tbl_hdl, break);
/*
* Are we in hybrid mode and have we switched memory type?
* Check for it and print the appropriate stats.
*/
if ( nstats.nmi != last_nstats.nmi )
{
mem_type = ipa3_nat_mem_in_as_str(last_nstats.nmi);
switched = true;
/*
* NAT table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"NAT table of size (%u) or (%f) percent\n",
tot,
mem_type,
last_nstats.tot_ents,
((float) tot / (float) last_nstats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT BASE table of size (%u) or (%f) percent\n",
last_nstats.tot_base_ents_filled,
mem_type,
last_nstats.tot_base_ents,
((float) last_nstats.tot_base_ents_filled /
(float) last_nstats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT EXPN table of size (%u) or (%f) percent\n",
last_nstats.tot_expn_ents_filled,
mem_type,
last_nstats.tot_expn_ents,
((float) last_nstats.tot_expn_ents_filled /
(float) last_nstats.tot_expn_ents) * 100.0);
IPAINFO("%s NAT table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
last_nstats.tot_chains,
last_nstats.min_chain_len,
last_nstats.max_chain_len,
last_nstats.avg_chain_len);
/*
* INDEX table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"IDX table of size (%u) or (%f) percent\n",
tot,
mem_type,
last_istats.tot_ents,
((float) tot / (float) last_istats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX BASE table of size (%u) or (%f) percent\n",
last_istats.tot_base_ents_filled,
mem_type,
last_istats.tot_base_ents,
((float) last_istats.tot_base_ents_filled /
(float) last_istats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX EXPN table of size (%u) or (%f) percent\n",
last_istats.tot_expn_ents_filled,
mem_type,
last_istats.tot_expn_ents,
((float) last_istats.tot_expn_ents_filled /
(float) last_istats.tot_expn_ents) * 100.0);
IPAINFO("%s IDX table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
last_istats.tot_chains,
last_istats.min_chain_len,
last_istats.max_chain_len,
last_istats.avg_chain_len);
}
last_nstats = nstats;
last_istats = istats;
tot++;
if ( ++tot_added == rand_adds_max )
{
u32 j, k;
u32* hdl_ptr[tot];
for ( j = k = 0; j < array_sz(rule_hdls); j++ )
{
if ( VALID_RULE(rule_hdls[j]) )
{
hdl_ptr[k] = &(rule_hdls[j]);
if ( ++k == tot )
{
break;
}
}
}
IPADBG("About to delete %u rules\n", rand_dels_max);
while ( k )
{
while ( j = rand() % k, ! VALID_RULE(*(hdl_ptr[j])) );
IPADBG("Trying ipa_nat_del_ipv4_rule(0x%08X)\n",
*(hdl_ptr[j]));
ret = ipa_nat_del_ipv4_rule(tbl_hdl, *(hdl_ptr[j]));
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Success ipa_nat_del_ipv4_rule(0x%08X)\n", *(hdl_ptr[j]));
*(hdl_ptr[j]) = 0xFFFFFFFF;
--tot;
if ( ++tot_deleted == rand_dels_max )
{
break;
}
}
GET_MAX(rand_adds_max, rand_dels_max);
tot_added = tot_deleted = 0;
}
if ( switched )
{
switched = false;
IPAINFO("Continuing rule adds to %s table of size: (%u)\n",
ipa3_nat_mem_in_as_str(nstats.nmi),
nstats.tot_ents);
}
}
ret = ipa_nati_ipv4_tbl_stats(tbl_hdl, &nstats, &istats);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
mem_type = ipa3_nat_mem_in_as_str(nstats.nmi);
/*
* NAT table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"NAT table of size (%u) or (%f) percent\n",
tot,
mem_type,
nstats.tot_ents,
((float) tot / (float) nstats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT BASE table of size (%u) or (%f) percent\n",
nstats.tot_base_ents_filled,
mem_type,
nstats.tot_base_ents,
((float) nstats.tot_base_ents_filled /
(float) nstats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"NAT EXPN table of size (%u) or (%f) percent\n",
nstats.tot_expn_ents_filled,
mem_type,
nstats.tot_expn_ents,
((float) nstats.tot_expn_ents_filled /
(float) nstats.tot_expn_ents) * 100.0);
IPAINFO("%s NAT table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
nstats.tot_chains,
nstats.min_chain_len,
nstats.max_chain_len,
nstats.avg_chain_len);
/*
* INDEX table stats...
*/
IPAINFO("Able to add (%u) records to %s "
"IDX table of size (%u) or (%f) percent\n",
tot,
mem_type,
istats.tot_ents,
((float) tot / (float) istats.tot_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX BASE table of size (%u) or (%f) percent\n",
istats.tot_base_ents_filled,
mem_type,
istats.tot_base_ents,
((float) istats.tot_base_ents_filled /
(float) istats.tot_base_ents) * 100.0);
IPAINFO("Able to add (%u) records to %s "
"IDX EXPN table of size (%u) or (%f) percent\n",
istats.tot_expn_ents_filled,
mem_type,
istats.tot_expn_ents,
((float) istats.tot_expn_ents_filled /
(float) istats.tot_expn_ents) * 100.0);
IPAINFO("%s IDX table chains: tot_chains(%u) min_len(%u) max_len(%u) avg_len(%f)\n",
mem_type,
istats.tot_chains,
istats.min_chain_len,
istats.max_chain_len,
istats.avg_chain_len);
IPAINFO("Deleting remaining rules\n");
for ( i = 0; i < array_sz(rule_hdls); i++ )
{
if ( VALID_RULE(rule_hdls[i]) )
{
IPADBG("Trying ipa_nat_del_ipv4_rule(0x%08X)\n",
rule_hdls[i]);
ret = ipa_nat_del_ipv4_rule(tbl_hdl, rule_hdls[i]);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Success ipa_nat_del_ipv4_rule(%u)\n", rule_hdls[i]);
}
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,72 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_test999.c
@brief
Verify the following scenario:
1. Delete ipv4 table
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_test999(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
IPADBG("In\n");
if ( ! sep )
{
IPADBG("calling ipa_nat_del_ipv4_tbl()\n");
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
IPADBG("deleted ipv4 nat table successfully.\n");
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,73 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_testXXX.c
@brief
Verify the following scenario:
*/
/*===========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_testXXX(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* tbl_hdl_ptr = (int*) arb_data_ptr;
int ret;
IPADBG("In\n");
if ( sep )
{
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
}
if ( sep )
{
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
*tbl_hdl_ptr = 0;
CHECK_ERR(ret);
}
IPADBG("Out\n");
return 0;
}

View File

@@ -1,84 +0,0 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*=========================================================================*/
/*!
@file
ipa_nat_testREG.c
@brief
Verify the following scenario:
1. Add ipv4 table
2. Delete ipv4 table
*/
/*=========================================================================*/
#include "ipa_nat_test.h"
int ipa_nat_testREG(
const char* nat_mem_type,
u32 pub_ip_add,
int total_entries,
u32 tbl_hdl,
int sep,
void* arb_data_ptr)
{
int* ireg_ptr = (int*) arb_data_ptr;
int i, ret;
IPADBG("In\n");
for ( i = 0; i < *ireg_ptr; i++ )
{
IPADBG("Executing iteration %d\n", i+1);
IPADBG("Calling ipa_nat_add_ipv4_tbl()\n");
ret = ipa_nat_add_ipv4_tbl(pub_ip_add, nat_mem_type, total_entries, &tbl_hdl);
CHECK_ERR_TBL_STOP(ret, tbl_hdl);
IPADBG("Iteration %d creation of nat ipv4 table successful\n", i+1);
IPADBG("Calling ipa_nat_del_ipv4_tbl()\n");
ret = ipa_nat_del_ipv4_tbl(tbl_hdl);
CHECK_ERR(ret);
IPADBG("Iteration %d deletion of ipv4 nat table successful\n", i+1);
}
IPADBG("Executed %d iterations:\n", i);
IPADBG("Out\n");
return 0;
}

View File

@@ -1,507 +0,0 @@
/*
* Copyright (c) 2014, 2018-2019 The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include <libgen.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include "ipa_nat_test.h"
#include "ipa_nat_map.h"
#undef strcasesame
#define strcasesame(x, y) \
(! strcasecmp((x), (y)))
static inline const char* legal_mem_type(
const char* mt )
{
if ( strcasesame(mt, "DDR") ) return "DDR";
if ( strcasesame(mt, "SRAM") ) return "SRAM";
if ( strcasesame(mt, "HYBRID") ) return "HYBRID";
return NULL;
}
static int nat_rule_loop_check(
ipa_table* table_ptr,
uint32_t rule_hdl,
void* record_ptr,
uint16_t record_index,
void* meta_record_ptr,
uint16_t meta_record_index,
void* arb_data_ptr )
{
enum ipa3_nat_mem_in nmi;
uint8_t is_expn_tbl;
uint16_t rule_index;
uint32_t tbl_hdl = (uint32_t) arb_data_ptr;
struct ipa_nat_rule* rule_ptr =
(struct ipa_nat_rule*) record_ptr;
BREAK_RULE_HDL(table_ptr, rule_hdl, nmi, is_expn_tbl, rule_index);
/*
* By virtue of this function being called back by the walk, this
* record_index is valid. Denote it as such in the map...
*/
if ( ipa_nat_map_add(MAP_NUM_99, record_index, 1) )
{
IPAERR("ipa_nat_map_add(index(%u)) failed\n", record_index);
return -EINVAL;
}
if ( rule_ptr->next_index == record_index )
{
IPAERR("Infinite loop detected in IPv4 %s table, entry %u\n",
(is_expn_tbl) ? "expansion" : "base",
record_index);
ipa_nat_dump_ipv4_table(tbl_hdl);
return -EINVAL;
}
return 0;
}
static int nat_rule_validity_check(
ipa_table* table_ptr,
uint32_t rule_hdl,
void* record_ptr,
uint16_t record_index,
void* meta_record_ptr,
uint16_t meta_record_index,
void* arb_data_ptr )
{
enum ipa3_nat_mem_in nmi;
uint8_t is_expn_tbl;
uint16_t rule_index;
uint16_t index;
struct ipa_nat_rule* rule_ptr =
(struct ipa_nat_rule*) record_ptr;
BREAK_RULE_HDL(table_ptr, rule_hdl, nmi, is_expn_tbl, rule_index);
index = rule_ptr->next_index;
if ( index && ipa_nat_map_find(MAP_NUM_99, index, NULL) )
{
IPAERR("Invalid next index %u found in IPv4 %s table entry %u\n",
index,
(is_expn_tbl) ? "expansion" : "base",
rule_index);
return -EINVAL;
}
if ( is_expn_tbl )
{
index = rule_ptr->prev_index;
if ( index && ipa_nat_map_find(MAP_NUM_99, index, NULL) )
{
IPAERR("Invalid previous index %u found in IPv4 %s table entry %u\n",
index,
"expansion",
rule_index);
return -EINVAL;
}
}
return 0;
}
static int index_loop_check(
ipa_table* table_ptr,
uint32_t rule_hdl,
void* record_ptr,
uint16_t record_index,
void* meta_record_ptr,
uint16_t meta_record_index,
void* arb_data_ptr )
{
enum ipa3_nat_mem_in nmi;
uint8_t is_expn_tbl;
uint16_t rule_index;
uint32_t tbl_hdl = (uint32_t) arb_data_ptr;
struct ipa_nat_indx_tbl_rule* itr_ptr =
(struct ipa_nat_indx_tbl_rule*) record_ptr;
BREAK_RULE_HDL(table_ptr, rule_hdl, nmi, is_expn_tbl, rule_index);
/*
* By virtue of this function being called back by the walk, this
* record_index is valid. Denote it as such in the map...
*/
if ( ipa_nat_map_add(MAP_NUM_99, record_index, 1) )
{
IPAERR("ipa_nat_map_add(index(%u)) failed\n", record_index);
return -EINVAL;
}
if ( itr_ptr->next_index == record_index )
{
IPAERR("Infinite loop detected in IPv4 index %s table, entry %u\n",
(is_expn_tbl) ? "expansion" : "base",
record_index);
ipa_nat_dump_ipv4_table(tbl_hdl);
return -EINVAL;
}
return 0;
}
static int index_validity_check(
ipa_table* table_ptr,
uint32_t rule_hdl,
void* record_ptr,
uint16_t record_index,
void* meta_record_ptr,
uint16_t meta_record_index,
void* arb_data_ptr )
{
enum ipa3_nat_mem_in nmi;
uint8_t is_expn_tbl;
uint16_t rule_index;
uint16_t index;
struct ipa_nat_indx_tbl_rule* itr_ptr =
(struct ipa_nat_indx_tbl_rule*) record_ptr;
BREAK_RULE_HDL(table_ptr, rule_hdl, nmi, is_expn_tbl, rule_index);
index = itr_ptr->next_index;
if ( index && ipa_nat_map_find(MAP_NUM_99, index, NULL) )
{
IPAERR("Invalid next index %u found in IPv4 index %s table entry %u\n",
index,
(is_expn_tbl) ? "expansion" : "base",
rule_index);
return -EINVAL;
}
if ( is_expn_tbl )
{
struct ipa_nat_indx_tbl_meta_info* mi_ptr = meta_record_ptr;
if ( ! mi_ptr )
{
IPAERR("Missing meta pointer for IPv4 index %s table entry %u\n",
"expansion",
rule_index);
return -EINVAL;
}
index = mi_ptr->prev_index;
if ( index && ipa_nat_map_find(MAP_NUM_99, index, NULL) )
{
IPAERR("Invalid previous index %u found in IPv4 index %s table entry %u\n",
index,
"expansion",
rule_index);
return -EINVAL;
}
}
return 0;
}
int ipa_nat_validate_ipv4_table(
u32 tbl_hdl )
{
int ret;
/*
* Map MAP_NUM_99 will be used to keep, and to check for,
* record validity.
*
* The first walk will fill it. The second walk will use it...
*/
ipa_nat_map_clear(MAP_NUM_99);
IPADBG("Checking IPv4 active rules:\n");
ret = ipa_nati_walk_ipv4_tbl(tbl_hdl, USE_NAT_TABLE, nat_rule_loop_check, tbl_hdl);
if ( ret != 0 )
{
return ret;
}
ret = ipa_nati_walk_ipv4_tbl(tbl_hdl, USE_NAT_TABLE, nat_rule_validity_check, 0);
if ( ret != 0 )
{
return ret;
}
/*
* Map MAP_NUM_99 will be used to keep, and to check for,
* record validity.
*
* The first walk will fill it. The second walk will use it...
*/
ipa_nat_map_clear(MAP_NUM_99);
IPADBG("Checking IPv4 index active rules:\n");
ret = ipa_nati_walk_ipv4_tbl(tbl_hdl, USE_INDEX_TABLE, index_loop_check, tbl_hdl);
if ( ret != 0 )
{
return ret;
}
ret = ipa_nati_walk_ipv4_tbl(tbl_hdl, USE_INDEX_TABLE, index_validity_check, 0);
if ( ret != 0 )
{
return ret;
}
return 0;
}
static void
_dispUsage(
const char* progNamePtr )
{
printf(
"Usage: %s [-d -r N -i N -e N -m mt]\n"
"Where:\n"
" -d Each test is discrete (create table, add rules, destroy table)\n"
" If not specified, only one table create and destroy for all tests\n"
" -r N Where N is the number of times to run the inotify regression test\n"
" -i N Where N is the number of times (iterations) to run test\n"
" -e N Where N is the number of entries in the NAT\n"
" -m mt Where mt is the type of memory to use for the NAT\n"
" Legal mt's: DDR, SRAM, or HYBRID (ie. use SRAM and DDR)\n"
" -g M-N Run tests M through N only\n",
progNamePtr);
fflush(stdout);
}
static NatTests nt_array[] = {
NAT_TEST_ENTRY(ipa_nat_test000, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test001, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test002, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test003, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test004, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test005, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test006, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test007, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test008, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test009, 1, 0),
NAT_TEST_ENTRY(ipa_nat_test010, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test011, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test012, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test013, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test014, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test015, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test016, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test017, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test018, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test019, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test020, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test021, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test022, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test023, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test024, IPA_NAT_TEST_PRE_COND_TE, 0),
NAT_TEST_ENTRY(ipa_nat_test025, IPA_NAT_TEST_PRE_COND_TE, 0),
/*
* Add new tests just above this comment. Keep the following two
* at the end...
*/
NAT_TEST_ENTRY(ipa_nat_test999, 1, 0),
NAT_TEST_ENTRY(ipa_nat_testREG, 1, 0),
};
int main(
int argc,
char* argv[] )
{
int sep = 0;
int ireg = 0;
uint32_t nt = 1;
int total_ents = 100;
uint32_t ht = 0;
uint32_t start = 0, end = 0;
char* nat_mem_type = "DDR";
uint32_t tbl_hdl = 0;
uint32_t pub_ip_addr;
uint32_t i, ub, cnt, exec, pass;
void* adp;
time_t t;
int c, ret;
IPADBG("Testing user space nat driver\n");
while ( (c = getopt(argc, argv, "dr:i:e:m:h:g:?")) != -1 )
{
switch (c)
{
case 'd':
sep = 1;
break;
case 'r':
ireg = atoi(optarg);
break;
case 'i':
nt = atoi(optarg);
break;
case 'e':
total_ents = atoi(optarg);
break;
case 'm':
if ( ! (nat_mem_type = legal_mem_type(optarg)) )
{
fprintf(stderr, "Illegal: -m %s\n", optarg);
_dispUsage(basename(argv[0]));
exit(0);
}
break;
case 'h':
ht = atoi(optarg);
break;
case 'g':
if ( sscanf(optarg, "%u-%u", &start, &end) != 2
||
( start >= end || end >= array_sz(nt_array) - 1 ) )
{
fprintf(stderr, "Illegal: -f %s\n", optarg);
_dispUsage(basename(argv[0]));
exit(0);
}
break;
case '?':
default:
_dispUsage(basename(argv[0]));
exit(0);
break;
}
}
srand(time(&t));
pub_ip_addr = RAN_ADDR;
exec = pass = 0;
for ( cnt = ret = 0; cnt < nt && ret == 0; cnt++ )
{
IPADBG("ITERATION [%u] OF TESING\n", cnt + 1);
if ( ireg )
{
adp = &ireg;
i = array_sz(nt_array) - 1;
ub = array_sz(nt_array);
}
else
{
adp = &tbl_hdl;
i = ( end ) ? start : 0;
ub = ( end ) ? end : array_sz(nt_array) - 1;
if ( i != 0 && ! sep )
{
ipa_nat_test000(
nat_mem_type, pub_ip_addr, total_ents, tbl_hdl, 0, adp);
}
}
for ( ; i < ub && ret == 0; i++ )
{
if ( total_ents >= nt_array[i].num_ents_trigger )
{
IPADBG("+------------------------------------------------+\n");
IPADBG("| Executing test: %s |\n", nt_array[i].func_name);
IPADBG("+------------------------------------------------+\n");
ret = nt_array[i].func(
nat_mem_type, pub_ip_addr, total_ents, tbl_hdl, sep, adp);
exec++;
if ( ret == 0 )
{
IPADBG("<<<<< Test %s SUCCEEDED >>>>>\n", nt_array[i].func_name);
pass++;
if ( ht || nt_array[i].test_hold_time_in_secs )
{
ht = (ht) ? ht : nt_array[i].test_hold_time_in_secs;
sleep(ht);
}
}
else
{
IPAERR("<<<<< Test %s FAILED >>>>>\n", nt_array[i].func_name);
}
}
}
}
if ( ret && tbl_hdl )
{
ipa_nat_test999(
nat_mem_type, pub_ip_addr, total_ents, tbl_hdl, 0, &tbl_hdl);
}
IPADBG("Total NAT Tests Run:%u, Pass:%u, Fail:%u\n",
exec, pass, exec - pass);
return 0;
}