1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
/* $OpenBSD: rde_prefix.c,v 1.25 2007/05/11 11:27:59 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "rde.h"
/*
* Prefix Table functions:
* pt_add: create new prefix and link it into the prefix table
* pt_remove: Checks if there is no bgp prefix linked to the prefix,
* unlinks from the prefix table and frees the pt_entry.
* pt_get: get a prefix/prefixlen entry. While pt_lookup searches for the
* best matching prefix pt_get only finds the prefix/prefixlen
* entry. The speed of pt_get is important for the bgp updates.
* pt_getaddr: convert the address into a struct bgpd_addr.
* pt_lookup: lookup a IP in the prefix table. Mainly for "show ip bgp".
* pt_empty: returns true if there is no bgp prefix linked to the pt_entry.
* pt_init: initialize prefix table.
* pt_alloc?: allocate a AF specific pt_entry. Internal function.
* pt_free: free a pt_entry. Internal function.
* pt_restart used to restart a tree walk at the spot it was aborted earlier.
*/
/* internal prototypes */
static struct pt_entry4 *pt_alloc4(void);
static struct pt_entry6 *pt_alloc6(void);
static void pt_free(struct pt_entry *);
static struct pt_entry *pt_restart(struct pt_context *);
int pt_prefix_cmp(const struct pt_entry *, const struct pt_entry *);
#define MIN_PREFIX 0
#define MAX_PREFIX 32
RB_HEAD(pt_tree, pt_entry);
RB_PROTOTYPE(pt_tree, pt_entry, pt_e, pt_prefix_cmp);
RB_GENERATE(pt_tree, pt_entry, pt_e, pt_prefix_cmp);
struct pt_tree pttable4;
struct pt_tree pttable6;
void
pt_init(void)
{
RB_INIT(&pttable4);
RB_INIT(&pttable6);
}
void
pt_shutdown(void)
{
if (!RB_EMPTY(&pttable4))
log_debug("pt_shutdown: IPv4 tree is not empty.");
if (!RB_EMPTY(&pttable6))
log_debug("pt_shutdown: IPv6 tree is not empty.");
}
int
pt_empty(struct pt_entry *pte)
{
return LIST_EMPTY(&pte->prefix_h);
}
void
pt_getaddr(struct pt_entry *pte, struct bgpd_addr *addr)
{
bzero(addr, sizeof(struct bgpd_addr));
switch (pte->af) {
case AF_INET:
addr->af = pte->af;
addr->v4 = ((struct pt_entry4 *)pte)->prefix4;
break;
case AF_INET6:
addr->af = pte->af;
memcpy(&addr->v6, &((struct pt_entry6 *)pte)->prefix6,
sizeof(addr->v6));
/* XXX scope_id ??? */
break;
default:
fatalx("pt_getaddr: unknown af");
}
}
struct pt_entry *
pt_get(struct bgpd_addr *prefix, int prefixlen)
{
struct pt_entry4 pte4;
struct pt_entry6 pte6;
in_addr_t addr_hbo;
switch (prefix->af) {
case AF_INET:
if (prefixlen > 32)
fatalx("pt_get: bad IPv4 prefixlen");
pte4.af = AF_INET;
addr_hbo = ntohl(prefix->v4.s_addr);
pte4.prefix4.s_addr = htonl(addr_hbo &
prefixlen2mask(prefixlen));
pte4.prefixlen = prefixlen;
return RB_FIND(pt_tree, &pttable4, (struct pt_entry *)&pte4);
case AF_INET6:
if (prefixlen > 128)
fatalx("pt_get: bad IPv6 prefixlen");
pte6.af = AF_INET6;
pte6.prefixlen = prefixlen;
inet6applymask(&pte6.prefix6, &prefix->v6, prefixlen);
return RB_FIND(pt_tree, &pttable6, (struct pt_entry *)&pte6);
default:
log_warnx("pt_get: unknown af");
}
return (NULL);
}
struct pt_entry *
pt_add(struct bgpd_addr *prefix, int prefixlen)
{
struct pt_tree *tree = NULL;
struct pt_entry *p = NULL;
struct pt_entry4 *p4;
struct pt_entry6 *p6;
in_addr_t addr_hbo;
switch (prefix->af) {
case AF_INET:
p4 = pt_alloc4();
if (prefixlen > 32)
fatalx("pt_add: bad IPv4 prefixlen");
p4->af = AF_INET;
p4->prefixlen = prefixlen;
addr_hbo = ntohl(prefix->v4.s_addr);
p4->prefix4.s_addr = htonl(addr_hbo &
prefixlen2mask(prefixlen));
p = (struct pt_entry *)p4;
tree = &pttable4;
break;
case AF_INET6:
p6 = pt_alloc6();
if (prefixlen > 128)
fatalx("pt_add: bad IPv6 prefixlen");
p6->af = AF_INET6;
p6->prefixlen = prefixlen;
inet6applymask(&p6->prefix6, &prefix->v6, prefixlen);
p = (struct pt_entry *)p6;
tree = &pttable6;
break;
default:
fatalx("pt_add: unknown af");
}
LIST_INIT(&p->prefix_h);
if (RB_INSERT(pt_tree, tree, p) != NULL) {
log_warnx("prefix_add: insert failed");
return (NULL);
}
return (p);
}
void
pt_remove(struct pt_entry *pte)
{
if (!pt_empty(pte))
fatalx("pt_remove: entry not empty");
switch (pte->af) {
case AF_INET:
if (RB_REMOVE(pt_tree, &pttable4, pte) == NULL)
log_warnx("pt_remove: remove failed.");
break;
case AF_INET6:
if (RB_REMOVE(pt_tree, &pttable6, pte) == NULL)
log_warnx("pt_remove: remove failed.");
break;
default:
fatalx("pt_remove: unknown af");
}
pt_free(pte);
}
struct pt_entry *
pt_lookup(struct bgpd_addr *prefix)
{
struct pt_entry *p;
int i;
switch (prefix->af) {
case AF_INET:
for (i = 32; i >= 0; i--) {
p = pt_get(prefix, i);
if (p != NULL)
return (p);
}
break;
case AF_INET6:
for (i = 128; i >= 0; i--) {
p = pt_get(prefix, i);
if (p != NULL)
return (p);
}
break;
default:
fatalx("pt_lookup: unknown af");
}
return (NULL);
}
void
pt_dump(void (*upcall)(struct pt_entry *, void *), void *arg, sa_family_t af)
{
if (af == AF_INET || af == AF_UNSPEC)
pt_dump_r(upcall, arg, AF_INET, NULL);
if (af == AF_INET6 || af == AF_UNSPEC)
pt_dump_r(upcall, arg, AF_INET6, NULL);
}
void
pt_dump_r(void (*upcall)(struct pt_entry *, void *), void *arg,
sa_family_t af, struct pt_context *ctx)
{
struct pt_entry *p;
unsigned int i;
if (ctx == NULL || ctx->ctx_p.af != af) {
switch (af) {
case AF_INET:
p = RB_MIN(pt_tree, &pttable4);
break;
case AF_INET6:
p = RB_MIN(pt_tree, &pttable6);
break;
default:
return;
}
} else
p = pt_restart(ctx);
for (i = 0; p != NULL; p = RB_NEXT(pt_tree, unused, p)) {
if (ctx && i++ >= ctx->count) {
/* store next start point */
switch (p->af) {
case AF_INET:
ctx->ctx_p4 = *(struct pt_entry4 *)p;
break;
case AF_INET6:
ctx->ctx_p6 = *(struct pt_entry6 *)p;
break;
default:
fatalx("pt_dump_r: unknown af");
}
return;
}
upcall(p, arg);
}
if (ctx)
ctx->done = 1;
}
int
pt_prefix_cmp(const struct pt_entry *a, const struct pt_entry *b)
{
const struct pt_entry4 *a4, *b4;
const struct pt_entry6 *a6, *b6;
int i;
if (a->af != b->af)
fatalx("king bula sez: comparing pears with apples");
switch (a->af) {
case AF_INET:
a4 = (const struct pt_entry4 *)a;
b4 = (const struct pt_entry4 *)b;
if (ntohl(a4->prefix4.s_addr) > ntohl(b4->prefix4.s_addr))
return (1);
if (ntohl(a4->prefix4.s_addr) < ntohl(b4->prefix4.s_addr))
return (-1);
if (a4->prefixlen > b4->prefixlen)
return (1);
if (a4->prefixlen < b4->prefixlen)
return (-1);
return (0);
case AF_INET6:
a6 = (const struct pt_entry6 *)a;
b6 = (const struct pt_entry6 *)b;
i = memcmp(&a6->prefix6, &b6->prefix6, sizeof(struct in6_addr));
if (i > 0)
return (1);
if (i < 0)
return (-1);
if (a6->prefixlen < b6->prefixlen)
return (-1);
if (a6->prefixlen > b6->prefixlen)
return (1);
return (0);
default:
fatalx("pt_prefix_cmp: unknown af");
}
return (-1);
}
/* returns a zeroed pt_entry function may not return on fail */
static struct pt_entry4 *
pt_alloc4(void)
{
struct pt_entry4 *p;
p = calloc(1, sizeof(*p));
if (p == NULL)
fatal("pt_alloc");
rdemem.pt4_cnt++;
return (p);
}
static struct pt_entry6 *
pt_alloc6(void)
{
struct pt_entry6 *p;
p = calloc(1, sizeof(*p));
if (p == NULL)
fatal("pt_alloc");
rdemem.pt6_cnt++;
return (p);
}
static void
pt_free(struct pt_entry *pte)
{
switch (pte->af) {
case AF_INET:
rdemem.pt4_cnt--;
break;
case AF_INET6:
rdemem.pt6_cnt--;
break;
default:
break;
}
free(pte);
}
static struct pt_entry *
pt_restart(struct pt_context *ctx)
{
struct pt_entry *tmp, *prev = NULL;
int comp;
/* first select correct tree */
switch (ctx->ctx_p.af) {
case AF_INET:
tmp = RB_ROOT(&pttable4);
break;
case AF_INET6:
tmp = RB_ROOT(&pttable6);
break;
default:
fatalx("pt_restart: unknown af");
}
/* then try to find the element */
while (tmp) {
prev = tmp;
comp = pt_prefix_cmp(&ctx->ctx_p, tmp);
if (comp < 0)
tmp = RB_LEFT(tmp, pt_e);
else if (comp > 0)
tmp = RB_RIGHT(tmp, pt_e);
else
return (tmp);
}
/* no match, empty tree */
if (prev == NULL)
return (NULL);
/*
* no perfect match
* if last element was bigger use that as new start point
*/
if (comp < 0)
return (prev);
/* backtrack until parent is bigger */
do {
prev = RB_PARENT(prev, pt_e);
if (prev == NULL)
/* all elements in the tree are smaler */
return (NULL);
comp = pt_prefix_cmp(&ctx->ctx_p, prev);
} while (comp > 0);
return (prev);
}
|