UniRec
2.9.3
|
Init and prefix search. More...
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include "ip_prefix_search.h"
#include "ipps_internal.h"
Go to the source code of this file.
Functions | |
uint8_t | bit_endian_swap (uint8_t in) |
uint32_t ** | create_ip_v6_net_mask_array () |
void | destroy_ip_v6_net_mask_array (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 | mask_ipv6 (ip_addr_t *ip, uint32_t mask, ip_addr_t *masked_ipv6, uint32_t **net_mask_array) |
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) |
int | ipps_destroy (ipps_context_t *prefix_context) |
ipps_context_t * | new_context () |
ipps_context_t * | ipps_init (ipps_network_list_t *network_list) |
int | copy_all_data (ipps_interval_t *dest, ipps_interval_t *src) |
int | add_data (ipps_interval_t *interval, void *data, size_t data_len) |
ipps_interval_t * | init_context (ipps_network_t **networks, uint32_t network_count, uint32_t *context_counter, uint32_t **net_mask_array) |
int | ipps_search (ip_addr_t *ip, ipps_context_t *prefix_context, void ***data) |
int | free_data (ipps_interval_t *interval, void ***data_collector, uint32_t *data_coll_cnt) |
int | destroy_list (ipps_interval_node_t *interval_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' return 0 if OK, 1 if alloc fails |
Definition at line 583 of file ip_prefix_search.c.
uint8_t bit_endian_swap | ( | uint8_t | in | ) |
Function for swapping bits in byte.
[in] | in | Input byte. |
Definition at line 58 of file ip_prefix_search.c.
int cmp_net_v4 | ( | const void * | v1, |
const void * | v2 | ||
) |
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 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 |
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.
Definition at line 72 of file ip_prefix_search.c.
void destroy_ip_v6_net_mask_array | ( | uint32_t ** | net_mask_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] | 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 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 |
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 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 input ip address structure |
[out] | ip_inc | Pointer to output ip address structure |
Definition at line 316 of file ip_prefix_search.c.
int ipps_destroy | ( | ipps_context_t * | prefix_context | ) |
Deinitialize interval_search_context structure Dealloc all memory, garbage collector
[in] | prefix_context | Pointer to interval_search_context struct return 0 if dealloc is OK, 1 if free fails |
Definition at line 342 of file ip_prefix_search.c.
ipps_context_t* ipps_init | ( | ipps_network_list_t * | network_list | ) |
Initialize ipps_context_t structure, fill IPv4 and IPv6 ipps_interval arrays Function compute for all networks in 'network_list' appropriate intervals and copied network data Overlapping intervals are split. Array is sorted by low IP addr of interval. Networks in network list is not necessary sorted, 'ipps_init' mask and sort each network itself
[in] | network_list | Pointer to network list structure |
Definition at line 409 of file ip_prefix_search.c.
int ipps_search | ( | ip_addr_t * | ip, |
ipps_context_t * | prefix_context, | ||
void *** | data | ||
) |
Binary search in interval_search_context Binary search 'ip' in intervals interval_search_context, 'ip' is compare with 'low_ip' and 'high_ip' of interval. if match, fill 'data' pointer by pointer to data_array of interval and return number of data members if no match return 0 and 'data' pointer not fill Optimized for IPv4 or IPv6 search
[in] | ip | Pointer to ip address structure |
[in] | prefix_context | Pointer to interval_search_context structure |
[out] | data | Pointer to array of void pointers - pointers to data |
Definition at line 924 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 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 |
Definition at line 225 of file ip_prefix_search.c.