UniRec  2.9.3
ip_prefix_search.h
Go to the documentation of this file.
1 
10 /*
11  * Copyright (C) 2013,2014 CESNET
12  *
13  * LICENSE TERMS
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  * 1. Redistributions of source code must retain the above copyright
19  * notice, this list of conditions and the following disclaimer.
20  * 2. Redistributions in binary form must reproduce the above copyright
21  * notice, this list of conditions and the following disclaimer in
22  * the documentation and/or other materials provided with the
23  * distribution.
24  * 3. Neither the name of the Company nor the names of its contributors
25  * may be used to endorse or promote products derived from this
26  * software without specific prior written permission.
27  *
28  * ALTERNATIVELY, provided that this notice is retained in full, this
29  * product may be distributed under the terms of the GNU General Public
30  * License (GPL) version 2 or later, in which case the provisions
31  * of the GPL apply INSTEAD OF those given above.
32  *
33  * This software is provided ``as is'', and any express or implied
34  * warranties, including, but not limited to, the implied warranties of
35  * merchantability and fitness for a particular purpose are disclaimed.
36  * In no event shall the company or contributors be liable for any
37  * direct, indirect, incidental, special, exemplary, or consequential
38  * damages (including, but not limited to, procurement of substitute
39  * goods or services; loss of use, data, or profits; or business
40  * interruption) however caused and on any theory of liability, whether
41  * in contract, strict liability, or tort (including negligence or
42  * otherwise) arising in any way out of the use of this software, even
43  * if advised of the possibility of such damage.
44  *
45  */
46 
47 #ifndef IP_PREFIX_SEARCH_H
48 #define IP_PREFIX_SEARCH_H
49 
50 #include "ipaddr.h"
51 
52 /* Default size of data pointer array */
53 #define DATASLOTS 8
54 
55 /* Default size of data collector */
56 #define COLLECTORSLOTS 16
57 
58 /* Default size of ipv6 and ipv4 network collector */
59 #define NETWORKSLOTS 16
60 
64 typedef struct network {
66  uint32_t mask;
67  void *data;
68  size_t data_len;
70 
74 typedef struct network_list {
75  uint32_t net_count;
78 
83 typedef struct {
84  // Don't move offset is set
87  uint32_t data_cnt;
88  size_t array_len;
89  void **data_array;
91 
96 typedef struct {
97  uint32_t v4_count;
98  uint32_t v6_count;
102 
112 
119 int ipps_destroy(ipps_context_t *prefix_context);
120 
133 int ipps_search(ip_addr_t *ip, ipps_context_t *prefix_context, void ***data);
134 
135 #endif /* ip_prefix_search.h */
int ipps_search(ip_addr_t *ip, ipps_context_t *prefix_context, void ***data)
ip_addr_t low_ip
Low IP of interval.
Structure to store both IPv4 and IPv6 addresses and associated functions.
void ** data_array
Array of pointers to data.
uint32_t v4_count
Number of intervals in IPv4 array.
uint32_t data_cnt
Number of currently used data pointers in 'data_array'.
ipps_interval_t * v6_prefix_intervals
Pointer to IPv6 intervals array.
ipps_interval_t * v4_prefix_intervals
Pointer to IPv4 intervals array.
size_t data_len
Number of bytes in 'data'.
ipps_network_t * networks
Pointer to networks array.
uint32_t v6_count
Number of intervals in IPv6 array.
ipps_context_t * ipps_init(ipps_network_list_t *networks)
size_t array_len
Allocated size of 'data_array' => total available slots.
ip_addr_t addr
Network IP address.
uint32_t mask
Network mask, CIDR notation, use for indexing.
uint32_t net_count
Number of networks in 'networks' array.
ip_addr_t high_ip
High IP of interval.
void * data
Pointer to same data.
int ipps_destroy(ipps_context_t *prefix_context)