]> jfr.im git - irc/quakenet/newserv.git/blame - patricia/patricia.h
patricia trie changes
[irc/quakenet/newserv.git] / patricia / patricia.h
CommitLineData
526e7c1d
P
1/*
2 * $Id: patricia.h,v 1.6 2005/12/07 20:53:01 dplonka Exp $
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 _PATRICIA_H
16#define _PATRICIA_H
17
7a25133f 18#include "../lib/irc_ipv6.h"
526e7c1d
P
19
20typedef unsigned short u_short;
21typedef unsigned int u_int;
22typedef unsigned char u_char;
23
24/* typedef unsigned int u_int; */
25typedef void (*void_fn_t)();
26/* { from defs.h */
27#define prefix_touchar(prefix) ((u_char *)&(prefix)->sin)
28#define MAXLINE 1024
526e7c1d
P
29/* } */
30
31#include <sys/types.h> /* for u_* definitions (on FreeBSD 5) */
32
33#include <errno.h> /* for EAFNOSUPPORT */
34#ifndef EAFNOSUPPORT
35# defined EAFNOSUPPORT WSAEAFNOSUPPORT
36# include <winsock.h>
37#else
38# include <netinet/in.h> /* for struct in_addr */
39#endif
40
41#include <sys/socket.h> /* for AF_INET */
42
43/* { from mrt.h */
44
45#define PATRICIA_MAXSLOTS 5
46
7a25133f 47
526e7c1d
P
48typedef struct _prefix_t {
49 u_short bitlen; /* same as mask? */
50 int ref_count; /* reference count */
51 struct irc_in_addr sin;
52} prefix_t;
53
7a25133f
P
54union prefixes {
55 struct _prefix_t prefix;
56 union prefixes *next;
57};
58
526e7c1d
P
59/* } */
60
61typedef struct _patricia_node_t {
62 unsigned char bit; /* flag if this node used */
c426783d 63 int usercount; /* number of users on a given node */
526e7c1d
P
64 prefix_t *prefix; /* who we are in patricia tree */
65 struct _patricia_node_t *l, *r; /* left and right children */
66 struct _patricia_node_t *parent;/* may be used */
a8ba1373 67 void *exts[PATRICIA_MAXSLOTS];
526e7c1d
P
68} patricia_node_t;
69
70typedef struct _patricia_tree_t {
71 patricia_node_t *head;
72 u_int maxbits; /* for IPv6, 128 bit addresses */
73 int num_active_node; /* for debug purpose */
74} patricia_tree_t;
75
7a25133f 76extern patricia_tree_t *iptree;
526e7c1d
P
77
78prefix_t *patricia_new_prefix (struct irc_in_addr *dest, int bitlen);
79prefix_t * patricia_ref_prefix (prefix_t * prefix);
80void patricia_deref_prefix (prefix_t * prefix);
81
82patricia_node_t *patricia_search_exact (patricia_tree_t *patricia, struct irc_in_addr *sin, unsigned char bitlen);
83patricia_node_t *patricia_search_best (patricia_tree_t *patricia, struct irc_in_addr *sin, unsigned char bitlen);
84patricia_node_t * patricia_search_best2 (patricia_tree_t *patricia, struct irc_in_addr *sin, unsigned char bitlen,
85 int inclusive);
86patricia_node_t *patricia_lookup (patricia_tree_t *patricia, prefix_t *prefix);
87void patricia_remove (patricia_tree_t *patricia, patricia_node_t *node);
88patricia_tree_t *patricia_new_tree (int maxbits);
89void patricia_clear_tree (patricia_tree_t *patricia, void_fn_t func);
90void patricia_destroy_tree (patricia_tree_t *patricia, void_fn_t func);
91void patricia_process (patricia_tree_t *patricia, void_fn_t func);
92
7a25133f
P
93patricia_node_t *patricia_new_node(patricia_tree_t *patricia, unsigned char bit,prefix_t *prefix);
94
95int registernodeext(const char *name);
96int findnodeext(const char *name);
97void releasenodeext(int index);
98
96644df6
P
99void node_increment_usercount( patricia_node_t *node);
100void node_decrement_usercount( patricia_node_t *node);
101
7a25133f
P
102/* alloc */
103void freeprefix (prefix_t *prefix);
104prefix_t *newprefix();
105patricia_node_t *newnode();
106void freenode (patricia_node_t *node);
107
526e7c1d
P
108/* } */
109
110patricia_node_t *refnode(patricia_tree_t *tree, struct irc_in_addr *sin, int bitlen);
111void derefnode(patricia_tree_t *tree, patricia_node_t *node);
112
a9b4ce08
P
113#define get_byte_for_bit(base, nr) (base)[(nr) >> 3]
114#define bigendian_bitfor(nr) (0x80 >> ((nr) & 0x07))
115#define is_bit_set(base, nr) (get_byte_for_bit(base, nr) & bigendian_bitfor(nr))
116
526e7c1d 117#define PATRICIA_MAXBITS 128
526e7c1d 118
526e7c1d
P
119#define PATRICIA_WALK(Xhead, Xnode) \
120 do { \
121 patricia_node_t *Xstack[PATRICIA_MAXBITS+1]; \
122 patricia_node_t **Xsp = Xstack; \
123 patricia_node_t *Xrn = (Xhead); \
124 while ((Xnode = Xrn)) { \
125 if (Xnode->prefix)
126
127#define PATRICIA_WALK_ALL(Xhead, Xnode) \
128do { \
129 patricia_node_t *Xstack[PATRICIA_MAXBITS+1]; \
130 patricia_node_t **Xsp = Xstack; \
131 patricia_node_t *Xrn = (Xhead); \
132 while ((Xnode = Xrn)) { \
133 if (1)
134
135#define PATRICIA_WALK_BREAK { \
136 if (Xsp != Xstack) { \
137 Xrn = *(--Xsp); \
138 } else { \
139 Xrn = (patricia_node_t *) 0; \
140 } \
141 continue; }
142
143#define PATRICIA_WALK_END \
144 if (Xrn->l) { \
145 if (Xrn->r) { \
146 *Xsp++ = Xrn->r; \
147 } \
148 Xrn = Xrn->l; \
149 } else if (Xrn->r) { \
150 Xrn = Xrn->r; \
151 } else if (Xsp != Xstack) { \
152 Xrn = *(--Xsp); \
153 } else { \
154 Xrn = (patricia_node_t *) 0; \
155 } \
156 } \
157 } while (0)
158
159#endif /* _PATRICIA_H */