]> jfr.im git - irc/rqf/shadowircd.git/blame - libratbox/include/rb_patricia.h
Removed TS5 description as it is no longer supported
[irc/rqf/shadowircd.git] / libratbox / include / rb_patricia.h
CommitLineData
b57f37fb
WP
1/*
2 * $Id: patricia.h 23020 2006-09-01 18:20:19Z androsyn $
3 * Dave Plonka <plonka@doit.wisc.edu>
4 *
5 * This product includes software developed by the University of Michigan,
6 * Merit Network, Inc., and their contributors.
7 *
8 * This file had been called "radix.h" in the MRT sources.
9 *
10 * I renamed it to "patricia.h" since it's not an implementation of a general
11 * radix trie. Also, pulled in various requirements from "mrt.h" and added
12 * some other things it could be used as a standalone API.
13 */
14
15#ifndef _RB_PATRICIA_H
16#define _RB_PATRICIA_H
17
18#ifndef FALSE
19#define FALSE 0
20#endif
21#ifndef TRUE
22#define TRUE !(FALSE)
23#endif
24#ifndef INET6_ADDRSTRLEN
25#define INET6_ADDRSTRLEN 46
26#endif
27
28/* typedef unsigned int u_int; */
b57f37fb
WP
29#define rb_prefix_touchar(prefix) ((unsigned char *)&(prefix)->add.sin)
30#define MAXLINE 1024
31#define BIT_TEST(f, b) ((f) & (b))
32
33typedef struct _rb_prefix_t
34{
35 unsigned short family; /* AF_INET | AF_INET6 */
36 unsigned short bitlen; /* same as mask? */
37 int ref_count; /* reference count */
38 union
39 {
40 struct in_addr sin;
41#ifdef RB_IPV6
42 struct in6_addr sin6;
43#endif /* RB_IPV6 */
44 }
45 add;
46}
47rb_prefix_t;
48
49
50typedef struct _rb_patricia_node_t
51{
52 unsigned int bit; /* flag if this node used */
53 rb_prefix_t *prefix; /* who we are in patricia tree */
54 struct _rb_patricia_node_t *l, *r; /* left and right children */
55 struct _rb_patricia_node_t *parent; /* may be used */
56 void *data;
57}
58rb_patricia_node_t;
59
60typedef struct _rb_patricia_tree_t
61{
62 rb_patricia_node_t *head;
63 unsigned int maxbits; /* for IP, 32 bit addresses */
64 int num_active_node; /* for debug purpose */
65}
66rb_patricia_tree_t;
67
68
69rb_patricia_node_t *rb_match_ip(rb_patricia_tree_t * tree, struct sockaddr *ip);
70rb_patricia_node_t *rb_match_ip_exact(rb_patricia_tree_t * tree, struct sockaddr *ip, unsigned int len);
71rb_patricia_node_t *rb_match_string(rb_patricia_tree_t * tree, const char *string);
72rb_patricia_node_t *rb_match_exact_string(rb_patricia_tree_t * tree, const char *string);
73rb_patricia_node_t *rb_patricia_search_exact(rb_patricia_tree_t * patricia, rb_prefix_t * prefix);
74rb_patricia_node_t *rb_patricia_search_best(rb_patricia_tree_t * patricia, rb_prefix_t * prefix);
75rb_patricia_node_t *rb_patricia_search_best2(rb_patricia_tree_t * patricia,
76 rb_prefix_t * prefix, int inclusive);
77rb_patricia_node_t *rb_patricia_lookup(rb_patricia_tree_t * patricia, rb_prefix_t * prefix);
78
79void rb_patricia_remove(rb_patricia_tree_t * patricia, rb_patricia_node_t * node);
80rb_patricia_tree_t *rb_new_patricia(int maxbits);
79c4d759
JT
81void rb_clear_patricia(rb_patricia_tree_t * patricia, void (*func)(void *));
82void rb_destroy_patricia(rb_patricia_tree_t * patricia, void (*func)(void *));
83void rb_patricia_process(rb_patricia_tree_t * patricia, void (*func)(rb_prefix_t *, void *));
b57f37fb
WP
84void rb_init_patricia(void);
85
86
87#if 0
88rb_prefix_t *ascii2prefix(int family, char *string);
89#endif
90rb_patricia_node_t *make_and_lookup(rb_patricia_tree_t * tree, const char *string);
91rb_patricia_node_t *make_and_lookup_ip(rb_patricia_tree_t * tree, struct sockaddr *, int bitlen);
92
93
94#define RB_PATRICIA_MAXBITS 128
95#define RB_PATRICIA_NBIT(x) (0x80 >> ((x) & 0x7f))
96#define RB_PATRICIA_NBYTE(x) ((x) >> 3)
97
98#define RB_PATRICIA_DATA_GET(node, type) (type *)((node)->data)
99#define RB_PATRICIA_DATA_SET(node, value) ((node)->data = (void *)(value))
100
101#define RB_PATRICIA_WALK(Xhead, Xnode) \
102 do { \
103 rb_patricia_node_t *Xstack[RB_PATRICIA_MAXBITS+1]; \
104 rb_patricia_node_t **Xsp = Xstack; \
105 rb_patricia_node_t *Xrn = (Xhead); \
106 while ((Xnode = Xrn)) { \
107 if (Xnode->prefix)
108
109#define RB_PATRICIA_WALK_ALL(Xhead, Xnode) \
110do { \
111 rb_patricia_node_t *Xstack[RB_PATRICIA_MAXBITS+1]; \
112 rb_patricia_node_t **Xsp = Xstack; \
113 rb_patricia_node_t *Xrn = (Xhead); \
114 while ((Xnode = Xrn)) { \
115 if (1)
116
117#define RB_PATRICIA_WALK_BREAK { \
118 if (Xsp != Xstack) { \
119 Xrn = *(--Xsp); \
120 } else { \
121 Xrn = (rb_patricia_node_t *) 0; \
122 } \
123 continue; }
124
125#define RB_PATRICIA_WALK_END \
126 if (Xrn->l) { \
127 if (Xrn->r) { \
128 *Xsp++ = Xrn->r; \
129 } \
130 Xrn = Xrn->l; \
131 } else if (Xrn->r) { \
132 Xrn = Xrn->r; \
133 } else if (Xsp != Xstack) { \
134 Xrn = *(--Xsp); \
135 } else { \
136 Xrn = (rb_patricia_node_t *) 0; \
137 } \
138 } \
139 } while (0)
140
141#endif /* _RB_PATRICIA_H */