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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
|
/* $OpenBSD: rde_update.c,v 1.53 2007/01/31 15:23:19 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 <sys/hash.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "rde.h"
in_addr_t up_get_nexthop(struct rde_peer *, struct rde_aspath *);
int up_generate_mp_reach(struct rde_peer *, struct update_attr *,
struct rde_aspath *, sa_family_t);
int up_generate_attr(struct rde_peer *, struct update_attr *,
struct rde_aspath *, sa_family_t);
/* update stuff. */
struct update_prefix {
TAILQ_ENTRY(update_prefix) prefix_l;
RB_ENTRY(update_prefix) entry;
struct uplist_prefix *prefix_h;
struct bgpd_addr prefix;
int prefixlen;
};
struct update_attr {
TAILQ_ENTRY(update_attr) attr_l;
RB_ENTRY(update_attr) entry;
struct uplist_prefix prefix_h;
u_char *attr;
u_char *mpattr;
u_int32_t attr_hash;
u_int16_t attr_len;
u_int16_t mpattr_len;
};
void up_clear(struct uplist_attr *, struct uplist_prefix *);
int up_prefix_cmp(struct update_prefix *, struct update_prefix *);
int up_attr_cmp(struct update_attr *, struct update_attr *);
int up_add(struct rde_peer *, struct update_prefix *, struct update_attr *);
RB_PROTOTYPE(uptree_prefix, update_prefix, entry, up_prefix_cmp)
RB_GENERATE(uptree_prefix, update_prefix, entry, up_prefix_cmp)
RB_PROTOTYPE(uptree_attr, update_attr, entry, up_attr_cmp)
RB_GENERATE(uptree_attr, update_attr, entry, up_attr_cmp)
void
up_init(struct rde_peer *peer)
{
TAILQ_INIT(&peer->updates);
TAILQ_INIT(&peer->withdraws);
TAILQ_INIT(&peer->updates6);
TAILQ_INIT(&peer->withdraws6);
RB_INIT(&peer->up_prefix);
RB_INIT(&peer->up_attrs);
peer->up_pcnt = 0;
peer->up_acnt = 0;
peer->up_nlricnt = 0;
peer->up_wcnt = 0;
}
void
up_clear(struct uplist_attr *updates, struct uplist_prefix *withdraws)
{
struct update_attr *ua;
struct update_prefix *up;
while ((ua = TAILQ_FIRST(updates)) != NULL) {
TAILQ_REMOVE(updates, ua, attr_l);
while ((up = TAILQ_FIRST(&ua->prefix_h)) != NULL) {
TAILQ_REMOVE(&ua->prefix_h, up, prefix_l);
free(up);
}
free(ua->attr);
free(ua->mpattr);
free(ua);
}
while ((up = TAILQ_FIRST(withdraws)) != NULL) {
TAILQ_REMOVE(withdraws, up, prefix_l);
free(up);
}
}
void
up_down(struct rde_peer *peer)
{
up_clear(&peer->updates, &peer->withdraws);
up_clear(&peer->updates6, &peer->withdraws6);
RB_INIT(&peer->up_prefix);
RB_INIT(&peer->up_attrs);
peer->up_pcnt = 0;
peer->up_acnt = 0;
peer->up_nlricnt = 0;
peer->up_wcnt = 0;
}
int
up_prefix_cmp(struct update_prefix *a, struct update_prefix *b)
{
int i;
if (a->prefix.af < b->prefix.af)
return (-1);
if (a->prefix.af > b->prefix.af)
return (1);
switch (a->prefix.af) {
case AF_INET:
if (ntohl(a->prefix.v4.s_addr) < ntohl(b->prefix.v4.s_addr))
return (-1);
if (ntohl(a->prefix.v4.s_addr) > ntohl(b->prefix.v4.s_addr))
return (1);
break;
case AF_INET6:
i = memcmp(&a->prefix.v6, &b->prefix.v6,
sizeof(struct in6_addr));
if (i > 0)
return (1);
if (i < 0)
return (-1);
break;
default:
fatalx("pt_prefix_cmp: unknown af");
}
if (a->prefixlen < b->prefixlen)
return (-1);
if (a->prefixlen > b->prefixlen)
return (1);
return (0);
}
int
up_attr_cmp(struct update_attr *a, struct update_attr *b)
{
int r;
if ((r = a->attr_hash - b->attr_hash) != 0)
return (r);
if ((r = a->attr_len - b->attr_len) != 0)
return (r);
if ((r = a->mpattr_len - b->mpattr_len) != 0)
return (r);
if ((r = memcmp(a->mpattr, b->mpattr, a->mpattr_len)) != 0)
return (r);
return (memcmp(a->attr, b->attr, a->attr_len));
}
int
up_add(struct rde_peer *peer, struct update_prefix *p, struct update_attr *a)
{
struct update_attr *na = NULL;
struct update_prefix *np;
struct uplist_attr *upl = NULL;
struct uplist_prefix *wdl = NULL;
switch (p->prefix.af) {
case AF_INET:
upl = &peer->updates;
wdl = &peer->withdraws;
break;
case AF_INET6:
upl = &peer->updates6;
wdl = &peer->withdraws6;
break;
default:
fatalx("up_add: unknown AF");
}
/* 1. search for attr */
if (a != NULL && (na = RB_FIND(uptree_attr, &peer->up_attrs, a)) ==
NULL) {
/* 1.1 if not found -> add */
TAILQ_INIT(&a->prefix_h);
if (RB_INSERT(uptree_attr, &peer->up_attrs, a) != NULL) {
log_warnx("uptree_attr insert failed");
/* cleanup */
free(a->attr);
free(a->mpattr);
free(a);
free(p);
return (-1);
}
TAILQ_INSERT_TAIL(upl, a, attr_l);
peer->up_acnt++;
} else {
/* 1.2 if found -> use that, free a */
if (a != NULL) {
free(a->attr);
free(a->mpattr);
free(a);
a = na;
/* move to end of update queue */
TAILQ_REMOVE(upl, a, attr_l);
TAILQ_INSERT_TAIL(upl, a, attr_l);
}
}
/* 2. search for prefix */
if ((np = RB_FIND(uptree_prefix, &peer->up_prefix, p)) == NULL) {
/* 2.1 if not found -> add */
if (RB_INSERT(uptree_prefix, &peer->up_prefix, p) != NULL) {
log_warnx("uptree_prefix insert failed");
/*
* cleanup. But do not free a because it is already
* linked or NULL. up_dump_attrnlri() will remove and
* free the empty attribute later.
*/
free(p);
return (-1);
}
peer->up_pcnt++;
} else {
/* 2.2 if found -> use that and free p */
TAILQ_REMOVE(np->prefix_h, np, prefix_l);
free(p);
p = np;
if (p->prefix_h == wdl)
peer->up_wcnt--;
else
peer->up_nlricnt--;
}
/* 3. link prefix to attr */
if (a == NULL) {
TAILQ_INSERT_TAIL(wdl, p, prefix_l);
p->prefix_h = wdl;
peer->up_wcnt++;
} else {
TAILQ_INSERT_TAIL(&a->prefix_h, p, prefix_l);
p->prefix_h = &a->prefix_h;
peer->up_nlricnt++;
}
return (0);
}
int
up_test_update(struct rde_peer *peer, struct prefix *p)
{
struct bgpd_addr addr;
struct attr *attr;
if (peer->state != PEER_UP)
return (-1);
if (p == NULL)
/* no prefix available */
return (0);
if (peer == p->aspath->peer)
/* Do not send routes back to sender */
return (0);
pt_getaddr(p->prefix, &addr);
switch (addr.af) {
case AF_INET:
if (peer->capa_announced.mp_v4 == SAFI_NONE &&
peer->capa_received.mp_v6 != SAFI_NONE)
return (-1);
break;
case AF_INET6:
if (peer->capa_announced.mp_v6 == SAFI_NONE)
return (-1);
break;
}
if (p->aspath->peer->conf.ebgp == 0 && peer->conf.ebgp == 0) {
/*
* route reflector redistribution rules:
* 1. if announce is set -> announce
* 2. old non-client, new non-client -> no
* 3. old client, new non-client -> yes
* 4. old non-client, new client -> yes
* 5. old client, new client -> yes
*/
if (p->aspath->peer->conf.reflector_client == 0 &&
peer->conf.reflector_client == 0 &&
(p->aspath->flags & F_PREFIX_ANNOUNCED) == 0)
/* Do not redistribute updates to ibgp peers */
return (0);
}
/* announce type handling */
switch (peer->conf.announce_type) {
case ANNOUNCE_UNDEF:
case ANNOUNCE_NONE:
case ANNOUNCE_DEFAULT_ROUTE:
/*
* no need to withdraw old prefix as this will be
* filtered out as well.
*/
return (-1);
case ANNOUNCE_ALL:
break;
case ANNOUNCE_SELF:
/*
* pass only prefix that have a aspath count
* of zero this is equal to the ^$ regex.
*/
if (p->aspath->aspath->ascnt != 0)
return (0);
break;
}
/* well known communities */
if (rde_filter_community(p->aspath,
COMMUNITY_WELLKNOWN, COMMUNITY_NO_ADVERTISE))
return (0);
if (peer->conf.ebgp && rde_filter_community(p->aspath,
COMMUNITY_WELLKNOWN, COMMUNITY_NO_EXPORT))
return (0);
if (peer->conf.ebgp && rde_filter_community(p->aspath,
COMMUNITY_WELLKNOWN, COMMUNITY_NO_EXPSUBCONFED))
return (0);
/*
* Don't send messages back to originator
* this is not specified in the RFC but seems logical.
*/
if ((attr = attr_optget(p->aspath, ATTR_ORIGINATOR_ID)) != NULL) {
if (memcmp(attr->data, &peer->remote_bgpid,
sizeof(peer->remote_bgpid)) == 0) {
/* would cause loop don't send */
return (-1);
}
}
return (1);
}
int
up_generate(struct rde_peer *peer, struct rde_aspath *asp,
struct bgpd_addr *addr, u_int8_t prefixlen)
{
struct update_attr *ua = NULL;
struct update_prefix *up;
if (asp) {
ua = calloc(1, sizeof(struct update_attr));
if (ua == NULL)
fatal("up_generate_updates");
if (up_generate_attr(peer, ua, asp, addr->af) == -1) {
log_warnx("generation of bgp path attributes failed");
free(ua);
return (-1);
}
/*
* use aspath_hash as attr_hash, this may be unoptimal
* but currently I don't care.
*/
ua->attr_hash = hash32_buf(ua->attr, ua->attr_len, HASHINIT);
if (ua->mpattr)
ua->attr_hash = hash32_buf(ua->mpattr, ua->mpattr_len,
ua->attr_hash);
}
up = calloc(1, sizeof(struct update_prefix));
if (up == NULL)
fatal("up_generate_updates");
up->prefix = *addr;
up->prefixlen = prefixlen;
if (up_add(peer, up, ua) == -1)
return (-1);
return (0);
}
void
up_generate_updates(struct filter_head *rules, struct rde_peer *peer,
struct prefix *new, struct prefix *old)
{
struct rde_aspath *asp;
struct bgpd_addr addr;
if (peer->state != PEER_UP)
return;
if (new == NULL) {
if (up_test_update(peer, old) != 1)
return;
pt_getaddr(old->prefix, &addr);
if (rde_filter(NULL, rules, peer, old->aspath, &addr,
old->prefix->prefixlen, old->aspath->peer, DIR_OUT) ==
ACTION_DENY)
return;
/* withdraw prefix */
up_generate(peer, NULL, &addr, old->prefix->prefixlen);
} else {
switch (up_test_update(peer, new)) {
case 1:
break;
case 0:
up_generate_updates(rules, peer, NULL, old);
return;
case -1:
return;
}
pt_getaddr(new->prefix, &addr);
if (rde_filter(&asp, rules, peer, new->aspath, &addr,
new->prefix->prefixlen, new->aspath->peer, DIR_OUT) ==
ACTION_DENY) {
path_put(asp);
up_generate_updates(rules, peer, NULL, old);
return;
}
/* generate update */
if (asp != NULL) {
up_generate(peer, asp, &addr, new->prefix->prefixlen);
path_put(asp);
} else
up_generate(peer, new->aspath, &addr,
new->prefix->prefixlen);
}
}
/* send a default route to the specified peer */
void
up_generate_default(struct filter_head *rules, struct rde_peer *peer,
sa_family_t af)
{
struct rde_aspath *asp, *fasp;
struct bgpd_addr addr;
if (peer->capa_received.mp_v4 == SAFI_NONE &&
peer->capa_received.mp_v6 != SAFI_NONE &&
af == AF_INET)
return;
if (peer->capa_received.mp_v6 == SAFI_NONE &&
af == AF_INET6)
return;
asp = path_get();
asp->aspath = aspath_get(NULL, 0);
asp->origin = ORIGIN_IGP;
/* the other default values are OK, nexthop is once again NULL */
/*
* XXX apply default overrides. Not yet possible, mainly a parse.y
* problem.
*/
/* rde_apply_set(asp, set, af, NULL ???, DIR_IN); */
/* filter as usual */
bzero(&addr, sizeof(addr));
addr.af = af;
if (rde_filter(&fasp, rules, peer, asp, &addr, 0, NULL, DIR_OUT) ==
ACTION_DENY) {
path_put(fasp);
path_put(asp);
return;
}
/* generate update */
if (fasp != NULL)
up_generate(peer, fasp, &addr, 0);
else
up_generate(peer, asp, &addr, 0);
/* no longer needed */
path_put(fasp);
path_put(asp);
}
u_char up_attr_buf[4096];
/* only for IPv4 */
in_addr_t
up_get_nexthop(struct rde_peer *peer, struct rde_aspath *a)
{
in_addr_t mask;
/* nexthop, already network byte order */
if (a->flags & F_NEXTHOP_NOMODIFY) {
/* no modify flag set */
if (a->nexthop == NULL)
return (peer->local_v4_addr.v4.s_addr);
else
return (a->nexthop->exit_nexthop.v4.s_addr);
} else if (a->flags & F_NEXTHOP_SELF)
return (peer->local_v4_addr.v4.s_addr);
else if (!peer->conf.ebgp) {
/*
* If directly connected use peer->local_v4_addr
* this is only true for announced networks.
*/
if (a->nexthop == NULL)
return (peer->local_v4_addr.v4.s_addr);
else if (a->nexthop->exit_nexthop.v4.s_addr ==
peer->remote_addr.v4.s_addr)
/*
* per rfc: if remote peer address is equal to
* the nexthop set the nexthop to our local address.
* This reduces the risk of routing loops.
*/
return (peer->local_v4_addr.v4.s_addr);
else
return (a->nexthop->exit_nexthop.v4.s_addr);
} else if (peer->conf.distance == 1) {
/* ebgp directly connected */
if (a->nexthop != NULL &&
a->nexthop->flags & NEXTHOP_CONNECTED) {
mask = htonl(
prefixlen2mask(a->nexthop->nexthop_netlen));
if ((peer->remote_addr.v4.s_addr & mask) ==
(a->nexthop->nexthop_net.v4.s_addr & mask))
/* nexthop and peer are in the same net */
return (a->nexthop->exit_nexthop.v4.s_addr);
else
return (peer->local_v4_addr.v4.s_addr);
} else
return (peer->local_v4_addr.v4.s_addr);
} else
/* ebgp multihop */
/*
* For ebgp multihop nh->flags should never have
* NEXTHOP_CONNECTED set so it should be possible to unify the
* two ebgp cases. But this is save and RFC compliant.
*/
return (peer->local_v4_addr.v4.s_addr);
}
int
up_generate_mp_reach(struct rde_peer *peer, struct update_attr *upa,
struct rde_aspath *a, sa_family_t af)
{
u_int16_t tmp;
switch (af) {
case AF_INET6:
upa->mpattr_len = 21; /* AFI + SAFI + NH LEN + NH + SNPA LEN */
upa->mpattr = malloc(upa->mpattr_len);
if (upa->mpattr == NULL)
fatal("up_generate_mp_reach");
tmp = htons(AFI_IPv6);
memcpy(upa->mpattr, &tmp, sizeof(tmp));
upa->mpattr[2] = SAFI_UNICAST;
upa->mpattr[3] = sizeof(struct in6_addr);
upa->mpattr[20] = 0; /* SNPA always 0 */
/* nexthop dance see also up_get_nexthop() */
if (peer->conf.ebgp == 0) {
/* ibgp */
if (a->nexthop == NULL ||
(a->nexthop->exit_nexthop.af == AF_INET6 &&
memcmp(&a->nexthop->exit_nexthop.v6,
&peer->remote_addr.v6, sizeof(struct in6_addr))))
memcpy(&upa->mpattr[4], &peer->local_v6_addr.v6,
sizeof(struct in6_addr));
else
memcpy(&upa->mpattr[4],
&a->nexthop->exit_nexthop.v6,
sizeof(struct in6_addr));
} else if (peer->conf.distance == 1) {
/* ebgp directly connected */
if (a->nexthop != NULL &&
a->nexthop->flags & NEXTHOP_CONNECTED)
if (prefix_compare(&peer->remote_addr,
&a->nexthop->nexthop_net,
a->nexthop->nexthop_netlen) == 0) {
/*
* nexthop and peer are in the same
* subnet
*/
memcpy(&upa->mpattr[4],
&a->nexthop->exit_nexthop.v6,
sizeof(struct in6_addr));
return (0);
}
memcpy(&upa->mpattr[4], &peer->local_v6_addr.v6,
sizeof(struct in6_addr));
} else
/* ebgp multihop */
memcpy(&upa->mpattr[4], &peer->local_v6_addr.v6,
sizeof(struct in6_addr));
return (0);
default:
break;
}
return (-1);
}
int
up_generate_attr(struct rde_peer *peer, struct update_attr *upa,
struct rde_aspath *a, sa_family_t af)
{
struct aspath *path;
struct attr *oa;
u_int32_t tmp32;
in_addr_t nexthop;
int r, ismp = 0;
u_int16_t len = sizeof(up_attr_buf), wlen = 0;
u_int8_t l;
/* origin */
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_ORIGIN, &a->origin, 1)) == -1)
return (-1);
wlen += r; len -= r;
/* aspath */
if (!peer->conf.ebgp ||
rde_decisionflags() & BGPD_FLAG_DECISION_TRANS_AS)
path = aspath_prepend(a->aspath, rde_local_as(), 0);
else
path = aspath_prepend(a->aspath, rde_local_as(), 1);
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_ASPATH, path->data, path->len)) == -1)
return (-1);
aspath_put(path);
wlen += r; len -= r;
switch (af) {
case AF_INET:
nexthop = up_get_nexthop(peer, a);
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_NEXTHOP, &nexthop, 4)) == -1)
return (-1);
wlen += r; len -= r;
break;
default:
ismp = 1;
break;
}
/*
* The old MED from other peers MUST not be announced to others
* unless the MED is originating from us or the peer is a IBGP one.
*/
if (a->flags & F_ATTR_MED && (peer->conf.ebgp == 0 ||
a->flags & F_ATTR_MED_ANNOUNCE)) {
tmp32 = htonl(a->med);
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_OPTIONAL,
ATTR_MED, &tmp32, 4)) == -1)
return (-1);
wlen += r; len -= r;
}
if (peer->conf.ebgp == 0) {
/* local preference, only valid for ibgp */
tmp32 = htonl(a->lpref);
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_LOCALPREF, &tmp32, 4)) == -1)
return (-1);
wlen += r; len -= r;
}
/*
* dump all other path attributes. Following rules apply:
* 1. well-known attrs: ATTR_ATOMIC_AGGREGATE and ATTR_AGGREGATOR
* pass unmodified (enforce flags to correct values)
* 2. non-transitive attrs: don't re-announce to ebgp peers
* 3. transitive known attrs: announce unmodified
* 4. transitive unknown attrs: set partial bit and re-announce
*/
for (l = 0; l < a->others_len; l++) {
if ((oa = a->others[l]) == NULL)
break;
switch (oa->type) {
case ATTR_ATOMIC_AGGREGATE:
if ((r = attr_write(up_attr_buf + wlen, len,
ATTR_WELL_KNOWN, ATTR_ATOMIC_AGGREGATE,
NULL, 0)) == -1)
return (-1);
break;
case ATTR_AGGREGATOR:
case ATTR_COMMUNITIES:
case ATTR_ORIGINATOR_ID:
case ATTR_CLUSTER_LIST:
if ((!(oa->flags & ATTR_TRANSITIVE)) &&
peer->conf.ebgp != 0) {
r = 0;
break;
}
if ((r = attr_write(up_attr_buf + wlen, len,
oa->flags, oa->type, oa->data, oa->len)) == -1)
return (-1);
break;
default:
/* unknown attribute */
if (!(oa->flags & ATTR_TRANSITIVE)) {
/*
* RFC 1771:
* Unrecognized non-transitive optional
* attributes must be quietly ignored and
* not passed along to other BGP peers.
*/
r = 0;
break;
}
if ((r = attr_write(up_attr_buf + wlen, len,
oa->flags | ATTR_PARTIAL, oa->type,
oa->data, oa->len)) == -1)
return (-1);
break;
}
wlen += r; len -= r;
}
/* write mp attribute to different buffer */
if (ismp)
if (up_generate_mp_reach(peer, upa, a, AF_INET6) == -1)
return (-1);
/* the bgp path attributes are now stored in the global buf */
upa->attr = malloc(wlen);
if (upa->attr == NULL)
fatal("up_generate_attr");
memcpy(upa->attr, up_attr_buf, wlen);
upa->attr_len = wlen;
return (wlen);
}
#define MIN_PREFIX_LEN 5 /* 1 byte prefix length + 4 bytes addr */
int
up_dump_prefix(u_char *buf, int len, struct uplist_prefix *prefix_head,
struct rde_peer *peer)
{
struct update_prefix *upp;
int r, wpos = 0;
while ((upp = TAILQ_FIRST(prefix_head)) != NULL) {
if ((r = prefix_write(buf + wpos, len - wpos,
&upp->prefix, upp->prefixlen)) == -1)
break;
wpos += r;
if (RB_REMOVE(uptree_prefix, &peer->up_prefix, upp) == NULL)
log_warnx("dequeuing update failed.");
TAILQ_REMOVE(upp->prefix_h, upp, prefix_l);
peer->up_pcnt--;
if (upp->prefix_h == &peer->withdraws ||
upp->prefix_h == &peer->withdraws6)
peer->up_wcnt--;
else
peer->up_nlricnt--;
free(upp);
}
return (wpos);
}
int
up_dump_attrnlri(u_char *buf, int len, struct rde_peer *peer)
{
struct update_attr *upa;
int r, wpos;
u_int16_t attr_len;
/*
* It is possible that a queued path attribute has no nlri prefix.
* Ignore and remove those path attributes.
*/
while ((upa = TAILQ_FIRST(&peer->updates)) != NULL)
if (TAILQ_EMPTY(&upa->prefix_h)) {
if (RB_REMOVE(uptree_attr, &peer->up_attrs,
upa) == NULL)
log_warnx("dequeuing update failed.");
TAILQ_REMOVE(&peer->updates, upa, attr_l);
free(upa->attr);
free(upa->mpattr);
free(upa);
peer->up_acnt--;
} else
break;
if (upa == NULL || upa->attr_len + MIN_PREFIX_LEN > len) {
/*
* either no packet or not enough space.
* The length field needs to be set to zero else it would be
* an invalid bgp update.
*/
bzero(buf, 2);
return (2);
}
/* first dump the 2-byte path attribute length */
attr_len = htons(upa->attr_len);
memcpy(buf, &attr_len, 2);
wpos = 2;
/* then the path attributes them self */
memcpy(buf + wpos, upa->attr, upa->attr_len);
wpos += upa->attr_len;
/* last but not least dump the nlri */
r = up_dump_prefix(buf + wpos, len - wpos, &upa->prefix_h, peer);
wpos += r;
/* now check if all prefixes where written */
if (TAILQ_EMPTY(&upa->prefix_h)) {
if (RB_REMOVE(uptree_attr, &peer->up_attrs, upa) == NULL)
log_warnx("dequeuing update failed.");
TAILQ_REMOVE(&peer->updates, upa, attr_l);
free(upa->attr);
free(upa->mpattr);
free(upa);
peer->up_acnt--;
}
return (wpos);
}
u_char *
up_dump_mp_unreach(u_char *buf, u_int16_t *len, struct rde_peer *peer)
{
int wpos = 8; /* reserve some space for header */
u_int16_t datalen, tmp;
u_int16_t attrlen = 2; /* attribute header (without len) */
u_int8_t flags = ATTR_OPTIONAL;
if (*len < wpos)
return (NULL);
datalen = up_dump_prefix(buf + wpos, *len - wpos,
&peer->withdraws6, peer);
if (datalen == 0)
return (NULL);
if (datalen > 255) {
attrlen += 2 + datalen;
flags |= ATTR_EXTLEN;
} else {
attrlen += 1 + datalen;
buf++;
}
/* prepend header */
/* no IPv4 withdraws */
wpos = 0;
bzero(buf, sizeof(u_int16_t));
wpos += sizeof(u_int16_t);
/* attribute length */
tmp = htons(attrlen);
memcpy(buf + wpos, &tmp, sizeof(u_int16_t));
wpos += sizeof(u_int16_t);
/* mp attribute */
buf[wpos++] = flags;
buf[wpos++] = (u_char)ATTR_MP_UNREACH_NLRI;
if (datalen > 255) {
tmp = htons(datalen);
memcpy(buf + wpos, &tmp, sizeof(u_int16_t));
wpos += sizeof(u_int16_t);
} else
buf[wpos++] = (u_char)datalen;
/* total length includes the two 2-bytes length fields. */
*len = attrlen + 2 * sizeof(u_int16_t);
return (buf);
}
u_char *
up_dump_mp_reach(u_char *buf, u_int16_t *len, struct rde_peer *peer)
{
struct update_attr *upa;
int wpos;
u_int16_t datalen, tmp;
u_int8_t flags = ATTR_OPTIONAL;
/*
* It is possible that a queued path attribute has no nlri prefix.
* Ignore and remove those path attributes.
*/
while ((upa = TAILQ_FIRST(&peer->updates6)) != NULL)
if (TAILQ_EMPTY(&upa->prefix_h)) {
if (RB_REMOVE(uptree_attr, &peer->up_attrs,
upa) == NULL)
log_warnx("dequeuing update failed.");
TAILQ_REMOVE(&peer->updates6, upa, attr_l);
free(upa->attr);
free(upa->mpattr);
free(upa);
peer->up_acnt--;
} else
break;
if (upa == NULL)
return (NULL);
/*
* reserve space for attr len, the attributes, the
* mp attribute and the attribute header
*/
wpos = 2 + 2 + upa->attr_len + 4 + upa->mpattr_len;
if (*len < wpos)
return (NULL);
datalen = up_dump_prefix(buf + wpos, *len - wpos,
&upa->prefix_h, peer);
if (datalen == 0)
return (NULL);
if (upa->mpattr_len == 0 || upa->mpattr == NULL)
fatalx("mulitprotocol update without MP attrs");
datalen += upa->mpattr_len;
wpos -= upa->mpattr_len;
memcpy(buf + wpos, upa->mpattr, upa->mpattr_len);
if (datalen > 255) {
wpos -= 2;
tmp = htons(datalen);
memcpy(buf + wpos, &tmp, sizeof(tmp));
datalen += 4;
flags |= ATTR_EXTLEN;
} else {
buf++; wpos--; /* skip one byte */
buf[--wpos] = (u_char)datalen;
datalen += 3;
}
buf[--wpos] = (u_char)ATTR_MP_REACH_NLRI;
buf[--wpos] = flags;
datalen += upa->attr_len;
wpos -= upa->attr_len;
memcpy(buf + wpos, upa->attr, upa->attr_len);
if (wpos != 4)
fatalx("Grrr, mp_reach buffer fucked up");
*len = datalen + 4;
wpos -= 2;
tmp = htons(datalen);
memcpy(buf + wpos, &tmp, sizeof(tmp));
wpos -= 2;
bzero(buf + wpos, 2);
/* now check if all prefixes where written */
if (TAILQ_EMPTY(&upa->prefix_h)) {
if (RB_REMOVE(uptree_attr, &peer->up_attrs, upa) == NULL)
log_warnx("dequeuing update failed.");
TAILQ_REMOVE(&peer->updates6, upa, attr_l);
free(upa->attr);
free(upa->mpattr);
free(upa);
peer->up_acnt--;
}
return (buf);
}
|