UniRec
2.9.3
|
Init context and prefix search - Internal functions and structures. More...
Go to the source code of this file.
Data Structures | |
struct | ipps_interval_node_t |
Functions | |
uint32_t ** | create_ip_v6_net_mask_array (void) |
void | mask_ipv6 (ip_addr_t *ip, uint32_t mask, ip_addr_t *masked_ipv6, uint32_t **net_mask_array) |
int | cmp_net_v4 (const void *v1, const void *v2) |
int | cmp_net_v6 (const void *v1, const void *v2) |
void | fill_interval_by_network (const ipps_network_t *net, ipps_interval_t *inter, uint32_t **net_mask_array) |
ipps_interval_node_t * | new_interval (const ip_addr_t *low_ip, const ip_addr_t *high_ip) |
ipps_interval_node_t * | insert_new_interval (ipps_interval_node_t *position, const ip_addr_t *low_ip, const ip_addr_t *high_ip) |
void | ip_dec (const ip_addr_t *ip, ip_addr_t *ip_dec) |
void | ip_inc (const ip_addr_t *ip, ip_addr_t *ip_inc) |
ipps_context_t * | new_context (void) |
ipps_interval_t * | init_context (ipps_network_t **networks, uint32_t network_count, uint32_t *context_counter, uint32_t **net_mask_array) |
int | add_data (ipps_interval_t *interval, void *data, size_t data_len) |
int | copy_all_data (ipps_interval_t *dest, ipps_interval_t *src) |
void | destroy_ip_v6_net_mask_array (uint32_t **net_mask_array) |
int | free_data (ipps_interval_t *interval, void ***data_collector, uint32_t *data_coll_cnt) |
int | destroy_list (ipps_interval_node_t *interval_list) |
Init context and prefix search - Internal functions and structures.
Definition in file ipps_internal.h.
struct ipps_interval_node_t |
Structure of temporary list of intervals Used for sort and merge overlaps intervals
Definition at line 52 of file ipps_internal.h.
Data Fields | ||
---|---|---|
ipps_interval_t * | interval | Pointer to interval structure. |
struct ipps_interval_node * | next | Next node in list, NULL if last node in list. |
int add_data | ( | ipps_interval_t * | interval, |
void * | data, | ||
size_t | data_len | ||
) |
Add data to interval data array Alloc memory size of 'data_len' and hard copy 'data'. Pointer to new data is insert to 'data_array' in interval structure 'interval', increment data counter. Realloc 'data_array' in 'interval' if there is not enough unused pointers
[in] | interval | Pointer to interval structure with data array and data counter |
[in] | data | Pointer to same data |
[in] | data_len | Number of bytes allocated in 'data' |
Add data to interval data array Alloc memory size of 'data_len' and hard copy 'data'. Pointer to new data is insert to 'data_array' in interval structure 'interval', increment data counter. Realloc 'data_array' in 'interval' if there is not enough unused pointers
[in] | interval | Pointer to interval structure with data array and data counter |
[in] | data | Pointer to same data |
[in] | data_len | Number of bytes allocated in 'data' return 0 if OK, 1 if alloc fails |
Definition at line 583 of file ip_prefix_search.c.
int cmp_net_v4 | ( | const void * | v1, |
const void * | v2 | ||
) |
Compare 2 IPv4 network addresses Compare byte by byte 2 IPv4 addresses
[in] | v1 | Pointer to network structure. |
[in] | v2 | Pointer to network structure. |
Compare 2 IPv4 network addresses and mask Compare byte by byte 2 IPv4 addresses. If they are equal, compare mask
[in] | v1 | Pointer to network structure. |
[in] | v2 | Pointer to network structure. |
Definition at line 129 of file ip_prefix_search.c.
int cmp_net_v6 | ( | const void * | v1, |
const void * | v2 | ||
) |
Compare 2 IPv6 network addresses Compare byte by byte 2 IPv6 addresses.
[in] | v1 | Pointer to network structure. |
[in] | v2 | Pointer to network structure. |
Compare 2 IPv6 network addresses and mask Compare byte by byte 2 IPv6 addresses. If they are equal, compare mask
[in] | v1 | Pointer to network structure. |
[in] | v2 | Pointer to network structure. |
Definition at line 152 of file ip_prefix_search.c.
int copy_all_data | ( | ipps_interval_t * | dest, |
ipps_interval_t * | src | ||
) |
Append data in 'dest' with all data from 'src' interval Concat 'dest' and 'src' data_arrays: if necessary, realloc destination data array. Copy all data pointers from src, behind last 'dest' data pointer
[out] | dest | Pointer to destination interval |
[in] | src | Pointer to source interval |
Append data in 'dest' with all data from 'src' interval Concat 'dest' and 'src' data_arrays: if necessary realloc destination data array. Copy all data pointers from src, behind last 'dest' data pointer
[out] | dest | Pointer to destination interval |
[in] | src | Pointer to source interval |
Definition at line 553 of file ip_prefix_search.c.
uint32_t** create_ip_v6_net_mask_array | ( | void | ) |
Create 2D array for IPv6 networks mask Create 2D array net_mask_array
with 129 rows and 4 columns and fill it with every possible IPv6 network mask.
Create 2D array for IPv6 networks mask Create 2D array net_mask_array
with 129 rows and 4 columns and fill it with every possible IPv6 network mask.
Definition at line 72 of file ip_prefix_search.c.
void destroy_ip_v6_net_mask_array | ( | uint32_t ** | net_mask_array | ) |
Dealloc network mask array Dealloc array with every possible IPv6 mask
[in] | net_mask_array | Pointer to 2D array |
Destroy 2D array for IPv6 networks mask Dealloc 2D array net_mask_array
with 129 rows and 4 columns and free every possible IPv6 network mask.
[in] | net_mask_array | Pointer to 2D array |
Definition at line 113 of file ip_prefix_search.c.
int destroy_list | ( | ipps_interval_node_t * | interval_list | ) |
Dealloc interval list Dealloc all node in 'interval_list', dealloc data Function is call if something get wrong and program need clean garbage in the middle of run
[in] | iterval_list | Pointer to first node in list |
Dealloc interval list Dealloc all node in 'interval_list', dealloc data Function is call if something get wrong and program need clean garbage in the middle of run
[in] | interval_list | Pointer to first node in list |
Definition at line 1041 of file ip_prefix_search.c.
void fill_interval_by_network | ( | const ipps_network_t * | net, |
ipps_interval_t * | inter, | ||
uint32_t ** | net_mask_array | ||
) |
Interval from network and mask Compute low and high IP address (net and broadcast address) from network 'net' using mask, save result to 'inter'
[in] | net | Pointer to network structure |
[out] | inter | Pointer to result interval |
[in] | net_mask_array | Pointer to 2D array with every possible net mask |
Definition at line 194 of file ip_prefix_search.c.
int free_data | ( | ipps_interval_t * | interval, |
void *** | data_collector, | ||
uint32_t * | data_coll_cnt | ||
) |
Dealloc 'data_array' in 'interval'
[in] | interval | Pointer to prefix interval structure |
[out] | data_collector | Pointer to 2D array with freed data pointers |
[out] | data_collector_cnt | Number of Pointers in 'data_collector' |
Definition at line 1000 of file ip_prefix_search.c.
ipps_interval_t* init_context | ( | ipps_network_t ** | networks, |
uint32_t | network_count, | ||
uint32_t * | context_counter, | ||
uint32_t ** | net_mask_array | ||
) |
Initialize array of intervals Function for each network in 'networks' array compute IP interval and insert interval to interval list. Each network data are hard copied. Overlapping intervals are splited and sorted. If intervals are overlaps, data are alloc only once and pointer to data is duplicated. Overlapping is detected by compare lows and highs IP addresses. End the end is sorted list copied to array for better access Function return pointer to sorted array of intervals and fill 'context_counter' by numbers of intervals.
[in] | networks | Pointer to array of network structures |
[in] | network_count | Number of networks in array |
[out] | context_counter | Pointer to integer, fill by number of intervals in result |
[in] | net_mask_array | Pointer to 2D array of network mask |
Initialize array of intervals For each network in 'networks' array compute IP interval and insert it into interval list. All network data are hard copied. Overlapping intervals are split and sorted. If intervals are overlaps, data are allocated only once and pointer to data is duplicated. Overlapping is detected by comparing low and high IP addresses. At the end the sorted list is copied to an array for better access. Returns pointer to sorted array of intervals and fill 'context_counter' by number of intervals.
[in] | networks | Pointer to array of network structures |
[in] | network_count | Number of networks in array |
[out] | context_counter | Pointer to integer, fill by number of intervals in result |
[in] | net_mask_array | Pointer to 2D array of network mask |
Definition at line 630 of file ip_prefix_search.c.
ipps_interval_node_t* insert_new_interval | ( | ipps_interval_node_t * | position, |
const ip_addr_t * | low_ip, | ||
const ip_addr_t * | high_ip | ||
) |
Post Insert to interval list Create new interval node and insert them for 'position' node. New created node is initialized and fill by 'low_ip' and 'high_ip' values.
[in] | position | Pointer to interval node structure, for post insert |
[in] | low_ip | Pointer to IP address structure |
[in] | high_ip | Pointer to IP address structure |
Post Insert to interval list Create new interval node and insert them for 'position' node. New created node is initialized and fill by 'low_ip' and 'high_ip' values.
[in] | position | Pointer to interval node structure, for post insert |
[in] | low_ip | Pointer to IP address structure |
[in] | high_ip | Pointer to IP address structure |
Definition at line 267 of file ip_prefix_search.c.
Decrement IP address Decrement IPv4 or IPv6 address 'ip' and save result to 'ip_dec'
[in] | ip | Pointer to ip address structure |
[out] | ip_dec | Pointer to ip address structure |
Decrement IP address Decrement IPv4 or IPv6 address 'ip' and save result to 'ip_dec'
[in] | ip | Pointer to input ip address structure |
[out] | ip_dec | Pointer to output ip address structure |
Definition at line 289 of file ip_prefix_search.c.
Increment IP address Increment IPv4 or Ipv6 address 'ip' and save result to 'ip_inc'
[in] | ip | Pointer to network structure |
[out] | ip_inc | Pointer to result interval |
Increment IP address Increment IPv4 or Ipv6 address 'ip' and save result to 'ip_inc'
[in] | ip | Pointer to input ip address structure |
[out] | ip_inc | Pointer to output ip address structure |
Definition at line 316 of file ip_prefix_search.c.
void mask_ipv6 | ( | ip_addr_t * | ip, |
uint32_t | mask, | ||
ip_addr_t * | masked_ipv6, | ||
uint32_t ** | net_mask_array | ||
) |
Mask IPv6 address Mask IPv6 address ip
with network mask in_mask
and save result to masked_ipv6
.
[in] | ip | Pointer to IP union. |
[in] | mask | Network mask. |
[out] | masked_ipv6 | Pointer to IP union. |
[in] | net_list | Pointer to networks list structure. |
Mask IPv6 address Mask IPv6 address ip
with network mask mask
and save result to masked_ipv6
.
[in] | ip | Pointer to IP union. |
[in] | mask | Network mask. |
[out] | masked_ipv6 | Pointer to IP union. |
[in] | net_list | Pointer to networks list structure. |
Definition at line 177 of file ip_prefix_search.c.
ipps_context_t* new_context | ( | void | ) |
Create and initialize new interval_search_context structure
Definition at line 385 of file ip_prefix_search.c.
ipps_interval_node_t* new_interval | ( | const ip_addr_t * | low_ip, |
const ip_addr_t * | high_ip | ||
) |
Create new interval node Alloc and initialize new node to interval list
[in] | low_ip | Pointer to network structure |
[in] | high_ip | Pointer to result interval |
Create new interval node Alloc and initialize new node to interval list
[in] | low_ip | Pointer to network structure |
[in] | high_ip | Pointer to result interval |
Definition at line 225 of file ip_prefix_search.c.