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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
/* $OpenBSD: rde_filter.c,v 1.50 2006/05/28 23:24:15 claudio Exp $ */
/*
* Copyright (c) 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 <limits.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "rde.h"
int rde_filter_match(struct filter_rule *, struct rde_aspath *,
struct bgpd_addr *, u_int8_t, struct rde_peer *);
int filterset_equal(struct filter_set_head *, struct filter_set_head *);
enum filter_actions
rde_filter(struct rde_aspath **new, struct filter_head *rules,
struct rde_peer *peer, struct rde_aspath *asp, struct bgpd_addr *prefix,
u_int8_t prefixlen, struct rde_peer *from, enum directions dir)
{
struct filter_rule *f;
enum filter_actions action = ACTION_ALLOW; /* default allow */
if (new != NULL)
*new = NULL;
TAILQ_FOREACH(f, rules, entry) {
if (dir != f->dir)
continue;
if (f->peer.groupid != 0 &&
f->peer.groupid != peer->conf.groupid)
continue;
if (f->peer.peerid != 0 &&
f->peer.peerid != peer->conf.id)
continue;
if (rde_filter_match(f, asp, prefix, prefixlen, peer)) {
if (asp != NULL && new != NULL) {
/* asp may get modified so create a copy */
if (*new == NULL) {
*new = path_copy(asp);
/* ... and use the copy from now on */
asp = *new;
}
rde_apply_set(asp, &f->set, prefix->af,
from, peer);
}
if (f->action != ACTION_NONE)
action = f->action;
if (f->quick)
return (action);
}
}
return (action);
}
void
rde_apply_set(struct rde_aspath *asp, struct filter_set_head *sh,
sa_family_t af, struct rde_peer *from, struct rde_peer *peer)
{
struct filter_set *set;
struct aspath *new;
int as, type;
u_int16_t prep_as;
u_int8_t prepend;
if (asp == NULL)
return;
TAILQ_FOREACH(set, sh, entry) {
switch (set->type) {
case ACTION_SET_LOCALPREF:
asp->lpref = set->action.metric;
break;
case ACTION_SET_RELATIVE_LOCALPREF:
if (set->action.relative > 0) {
if (set->action.relative + asp->lpref <
asp->lpref)
asp->lpref = UINT_MAX;
else
asp->lpref += set->action.relative;
} else {
if ((u_int32_t)-set->action.relative >
asp->lpref)
asp->lpref = 0;
else
asp->lpref += set->action.relative;
}
break;
case ACTION_SET_MED:
asp->flags |= F_ATTR_MED | F_ATTR_MED_ANNOUNCE;
asp->med = set->action.metric;
break;
case ACTION_SET_RELATIVE_MED:
asp->flags |= F_ATTR_MED | F_ATTR_MED_ANNOUNCE;
if (set->action.relative > 0) {
if (set->action.relative + asp->med <
asp->med)
asp->med = UINT_MAX;
else
asp->med += set->action.relative;
} else {
if ((u_int32_t)-set->action.relative >
asp->med)
asp->med = 0;
else
asp->med += set->action.relative;
}
break;
case ACTION_SET_WEIGHT:
asp->weight = set->action.metric;
break;
case ACTION_SET_RELATIVE_WEIGHT:
if (set->action.relative > 0) {
if (set->action.relative + asp->weight <
asp->weight)
asp->weight = UINT_MAX;
else
asp->weight += set->action.relative;
} else {
if ((u_int32_t)-set->action.relative >
asp->weight)
asp->weight = 0;
else
asp->weight += set->action.relative;
}
break;
case ACTION_SET_PREPEND_SELF:
as = rde_local_as();
prepend = set->action.prepend;
new = aspath_prepend(asp->aspath, as, prepend);
aspath_put(asp->aspath);
asp->aspath = new;
break;
case ACTION_SET_PREPEND_PEER:
if (from == NULL)
break;
prep_as = from->conf.remote_as;
prepend = set->action.prepend;
new = aspath_prepend(asp->aspath, prep_as, prepend);
aspath_put(asp->aspath);
asp->aspath = new;
break;
case ACTION_SET_NEXTHOP:
case ACTION_SET_NEXTHOP_REJECT:
case ACTION_SET_NEXTHOP_BLACKHOLE:
case ACTION_SET_NEXTHOP_NOMODIFY:
case ACTION_SET_NEXTHOP_SELF:
nexthop_modify(asp, &set->action.nexthop, set->type,
af);
break;
case ACTION_SET_COMMUNITY:
switch (set->action.community.as) {
case COMMUNITY_ERROR:
case COMMUNITY_ANY:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
as = peer->conf.remote_as;
break;
default:
as = set->action.community.as;
break;
}
switch (set->action.community.type) {
case COMMUNITY_ERROR:
case COMMUNITY_ANY:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
type = peer->conf.remote_as;
break;
default:
type = set->action.community.type;
break;
}
community_set(asp, as, type);
break;
case ACTION_DEL_COMMUNITY:
switch (set->action.community.as) {
case COMMUNITY_ERROR:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
as = peer->conf.remote_as;
break;
case COMMUNITY_ANY:
default:
as = set->action.community.as;
break;
}
switch (set->action.community.type) {
case COMMUNITY_ERROR:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
type = peer->conf.remote_as;
break;
case COMMUNITY_ANY:
default:
type = set->action.community.type;
break;
}
community_delete(asp, as, type);
break;
case ACTION_PFTABLE:
/* convert pftable name to an id */
set->action.id = pftable_name2id(set->action.pftable);
set->type = ACTION_PFTABLE_ID;
/* FALLTHROUGH */
case ACTION_PFTABLE_ID:
pftable_unref(asp->pftableid);
asp->pftableid = set->action.id;
pftable_ref(asp->pftableid);
break;
case ACTION_RTLABEL:
/* convert the route label to an id for faster access */
set->action.id = rtlabel_name2id(set->action.rtlabel);
set->type = ACTION_RTLABEL_ID;
/* FALLTHROUGH */
case ACTION_RTLABEL_ID:
rtlabel_unref(asp->rtlabelid);
asp->rtlabelid = set->action.id;
rtlabel_ref(asp->rtlabelid);
break;
}
}
}
int
rde_filter_match(struct filter_rule *f, struct rde_aspath *asp,
struct bgpd_addr *prefix, u_int8_t plen, struct rde_peer *peer)
{
int as, type;
if (asp != NULL && f->match.as.type != AS_NONE)
if (aspath_match(asp->aspath, f->match.as.type,
f->match.as.as) == 0)
return (0);
if (asp != NULL && f->match.community.as != 0) {
switch (f->match.community.as) {
case COMMUNITY_ERROR:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
as = peer->conf.remote_as;
break;
default:
as = f->match.community.as;
break;
}
switch (f->match.community.type) {
case COMMUNITY_ERROR:
fatalx("rde_apply_set bad community string");
case COMMUNITY_NEIGHBOR_AS:
type = peer->conf.remote_as;
break;
default:
type = f->match.community.type;
break;
}
if (rde_filter_community(asp, as, type) == 0)
return (0);
}
if (f->match.prefix.addr.af != 0 &&
f->match.prefix.addr.af == prefix->af) {
if (prefix_compare(prefix, &f->match.prefix.addr,
f->match.prefix.len))
return (0);
/* test prefixlen stuff too */
switch (f->match.prefixlen.op) {
case OP_NONE:
/* perfect match */
return (plen == f->match.prefix.len);
case OP_RANGE:
return ((plen >= f->match.prefixlen.len_min) &&
(plen <= f->match.prefixlen.len_max));
case OP_XRANGE:
return ((plen < f->match.prefixlen.len_min) ||
(plen > f->match.prefixlen.len_max));
case OP_EQ:
return (plen == f->match.prefixlen.len_min);
case OP_NE:
return (plen != f->match.prefixlen.len_min);
case OP_LE:
return (plen <= f->match.prefixlen.len_min);
case OP_LT:
return (plen < f->match.prefixlen.len_min);
case OP_GE:
return (plen >= f->match.prefixlen.len_min);
case OP_GT:
return (plen > f->match.prefixlen.len_min);
}
/* NOTREACHED */
} else if (f->match.prefixlen.op != OP_NONE) {
/* only prefixlen without a prefix */
if (f->match.prefixlen.af != prefix->af)
/* don't use IPv4 rules for IPv6 and vice versa */
return (0);
switch (f->match.prefixlen.op) {
case OP_NONE:
fatalx("internal filter bug");
case OP_RANGE:
return ((plen >= f->match.prefixlen.len_min) &&
(plen <= f->match.prefixlen.len_max));
case OP_XRANGE:
return ((plen < f->match.prefixlen.len_min) ||
(plen > f->match.prefixlen.len_max));
case OP_EQ:
return (plen == f->match.prefixlen.len_min);
case OP_NE:
return (plen != f->match.prefixlen.len_min);
case OP_LE:
return (plen <= f->match.prefixlen.len_min);
case OP_LT:
return (plen < f->match.prefixlen.len_min);
case OP_GE:
return (plen >= f->match.prefixlen.len_min);
case OP_GT:
return (plen > f->match.prefixlen.len_min);
}
/* NOTREACHED */
}
/* matched somewhen or is anymatch rule */
return (1);
}
int
rde_filter_community(struct rde_aspath *asp, int as, int type)
{
struct attr *a;
a = attr_optget(asp, ATTR_COMMUNITIES);
if (a == NULL)
/* no communities, no match */
return (0);
return (community_match(a->data, a->len, as, type));
}
int
rde_filter_equal(struct filter_head *a, struct filter_head *b,
struct rde_peer *peer, enum directions dir)
{
struct filter_rule *fa, *fb;
fa = TAILQ_FIRST(a);
fb = TAILQ_FIRST(b);
while (fa != NULL || fb != NULL) {
/* skip all rules with wrong direction */
if (fa != NULL && dir != fa->dir) {
fa = TAILQ_NEXT(fa, entry);
continue;
}
if (fb != NULL && dir != fb->dir) {
fb = TAILQ_NEXT(fb, entry);
continue;
}
/* skip all rules with wrong peer */
if (fa != NULL && fa->peer.groupid != 0 &&
fa->peer.groupid != peer->conf.groupid) {
fa = TAILQ_NEXT(fa, entry);
continue;
}
if (fa != NULL && fa->peer.peerid != 0 &&
fa->peer.peerid != peer->conf.id) {
fa = TAILQ_NEXT(fa, entry);
continue;
}
if (fb != NULL && fb->peer.groupid != 0 &&
fb->peer.groupid != peer->conf.groupid) {
fb = TAILQ_NEXT(fb, entry);
continue;
}
if (fb != NULL && fb->peer.peerid != 0 &&
fb->peer.peerid != peer->conf.id) {
fb = TAILQ_NEXT(fb, entry);
continue;
}
/* compare the two rules */
if ((fa == NULL && fb != NULL) || (fa != NULL && fb == NULL))
/* new rule added or removed */
return (0);
if (fa->action != fb->action || fa->quick != fb->quick)
return (0);
if (memcmp(&fa->peer, &fb->peer, sizeof(fa->peer)))
return (0);
if (memcmp(&fa->match, &fb->match, sizeof(fa->match)))
return (0);
if (!filterset_equal(&fa->set, &fb->set))
return (0);
fa = TAILQ_NEXT(fa, entry);
fb = TAILQ_NEXT(fb, entry);
}
return (1);
}
/* free a filterset and take care of possible name2id references */
void
filterset_free(struct filter_set_head *sh)
{
struct filter_set *s;
struct nexthop *nh;
while ((s = TAILQ_FIRST(sh)) != NULL) {
TAILQ_REMOVE(sh, s, entry);
if (s->type == ACTION_RTLABEL_ID)
rtlabel_unref(s->action.id);
else if (s->type == ACTION_PFTABLE_ID)
pftable_unref(s->action.id);
else if (s->type == ACTION_SET_NEXTHOP &&
bgpd_process == PROC_RDE) {
nh = nexthop_get(&s->action.nexthop);
--nh->refcnt;
(void)nexthop_delete(nh);
}
free(s);
}
}
/*
* this function is a bit more complicated than a memcmp() because there are
* types that need to be considered equal e.g. ACTION_SET_MED and
* ACTION_SET_RELATIVE_MED. Also ACTION_SET_COMMUNITY and ACTION_SET_NEXTHOP
* need some special care. It only checks the types and not the values so
* it does not do a real compare.
*/
int
filterset_cmp(struct filter_set *a, struct filter_set *b)
{
if (strcmp(filterset_name(a->type), filterset_name(b->type)))
return (a->type - b->type);
if (a->type == ACTION_SET_COMMUNITY) { /* a->type == b->type */
/* compare community */
if (a->action.community.as - b->action.community.as != 0)
return (a->action.community.as -
b->action.community.as);
return (a->action.community.type - b->action.community.type);
}
if (a->type == ACTION_SET_NEXTHOP && b->type == ACTION_SET_NEXTHOP) {
/*
* This is the only intresting case, all others are considered
* equal. It does not make sense to e.g. set a nexthop and
* reject it at the same time. Allow one IPv4 and one IPv6
* per filter set or only one of the other nexthop modifiers.
*/
return (a->action.nexthop.af - b->action.nexthop.af);
}
/* equal */
return (0);
}
int
filterset_equal(struct filter_set_head *ah, struct filter_set_head *bh)
{
struct filter_set *a, *b;
const char *as, *bs;
for (a = TAILQ_FIRST(ah), b = TAILQ_FIRST(bh);
a != NULL && b != NULL;
a = TAILQ_NEXT(a, entry), b = TAILQ_NEXT(b, entry)) {
switch (a->type) {
case ACTION_SET_PREPEND_SELF:
case ACTION_SET_PREPEND_PEER:
if (a->type == b->type &&
a->action.prepend == b->action.prepend)
continue;
break;
case ACTION_SET_LOCALPREF:
case ACTION_SET_MED:
case ACTION_SET_WEIGHT:
if (a->type == b->type &&
a->action.metric == b->action.metric)
continue;
break;
case ACTION_SET_RELATIVE_LOCALPREF:
case ACTION_SET_RELATIVE_MED:
case ACTION_SET_RELATIVE_WEIGHT:
if (a->type == b->type &&
a->action.relative == b->action.relative)
continue;
break;
case ACTION_SET_NEXTHOP:
if (a->type == b->type &&
memcmp(&a->action.nexthop, &b->action.nexthop,
sizeof(a->action.nexthop)) == 0)
continue;
break;
case ACTION_SET_NEXTHOP_BLACKHOLE:
case ACTION_SET_NEXTHOP_REJECT:
case ACTION_SET_NEXTHOP_NOMODIFY:
case ACTION_SET_NEXTHOP_SELF:
if (a->type == b->type)
continue;
break;
case ACTION_DEL_COMMUNITY:
case ACTION_SET_COMMUNITY:
if (a->type == b->type &&
memcmp(&a->action.community, &b->action.community,
sizeof(a->action.community)) == 0)
continue;
break;
case ACTION_PFTABLE:
case ACTION_PFTABLE_ID:
if (b->type == ACTION_PFTABLE)
bs = b->action.pftable;
else if (b->type == ACTION_PFTABLE_ID)
bs = pftable_id2name(b->action.id);
else
break;
if (a->type == ACTION_PFTABLE)
as = a->action.pftable;
else
as = pftable_id2name(a->action.id);
if (strcmp(as, bs) == 0)
continue;
break;
case ACTION_RTLABEL:
case ACTION_RTLABEL_ID:
if (b->type == ACTION_RTLABEL)
bs = b->action.rtlabel;
else if (b->type == ACTION_RTLABEL_ID)
bs = rtlabel_id2name(b->action.id);
else
break;
if (a->type == ACTION_RTLABEL)
as = a->action.rtlabel;
else
as = rtlabel_id2name(a->action.id);
if (strcmp(as, bs) == 0)
continue;
break;
}
/* compare failed */
return (0);
}
if (a != NULL || b != NULL)
return (0);
return (1);
}
const char *
filterset_name(enum action_types type)
{
switch (type) {
case ACTION_SET_LOCALPREF:
case ACTION_SET_RELATIVE_LOCALPREF:
return ("localpref");
case ACTION_SET_MED:
case ACTION_SET_RELATIVE_MED:
return ("metric");
case ACTION_SET_WEIGHT:
case ACTION_SET_RELATIVE_WEIGHT:
return ("weight");
case ACTION_SET_PREPEND_SELF:
return ("prepend-self");
case ACTION_SET_PREPEND_PEER:
return ("prepend-peer");
case ACTION_SET_NEXTHOP:
case ACTION_SET_NEXTHOP_REJECT:
case ACTION_SET_NEXTHOP_BLACKHOLE:
case ACTION_SET_NEXTHOP_NOMODIFY:
case ACTION_SET_NEXTHOP_SELF:
return ("nexthop");
case ACTION_SET_COMMUNITY:
return ("community");
case ACTION_DEL_COMMUNITY:
return ("community delete");
case ACTION_PFTABLE:
case ACTION_PFTABLE_ID:
return ("pftable");
case ACTION_RTLABEL:
case ACTION_RTLABEL_ID:
return ("rtlabel");
}
fatalx("filterset_name: got lost");
}
|