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
|
/* $OpenBSD: rde_community.c,v 1.11 2023/01/30 16:51:34 claudio Exp $ */
/*
* Copyright (c) 2019 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/queue.h>
#include <endian.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "rde.h"
#include "log.h"
static int
apply_flag(uint32_t in, uint8_t flag, struct rde_peer *peer, uint32_t *out,
uint32_t *mask)
{
switch (flag) {
case COMMUNITY_ANY:
if (mask == NULL)
return -1;
*out = 0;
*mask = 0;
return 0;
case COMMUNITY_NEIGHBOR_AS:
if (peer == NULL)
return -1;
*out = peer->conf.remote_as;
break;
case COMMUNITY_LOCAL_AS:
if (peer == NULL)
return -1;
*out = peer->conf.local_as;
break;
default:
*out = in;
break;
}
if (mask)
*mask = UINT32_MAX;
return 0;
}
static int
fc2c(struct community *fc, struct rde_peer *peer, struct community *c,
struct community *m)
{
int type;
uint8_t subtype;
memset(c, 0, sizeof(*c));
if (m)
memset(m, 0xff, sizeof(*m));
c->flags = (uint8_t)fc->flags;
switch ((uint8_t)c->flags) {
case COMMUNITY_TYPE_BASIC:
if (apply_flag(fc->data1, fc->flags >> 8, peer,
&c->data1, m ? &m->data1 : NULL))
return -1;
if (apply_flag(fc->data2, fc->flags >> 16, peer,
&c->data2, m ? &m->data2 : NULL))
return -1;
/* check that values fit */
if (c->data1 > USHRT_MAX || c->data2 > USHRT_MAX)
return -1;
return 0;
case COMMUNITY_TYPE_LARGE:
if (apply_flag(fc->data1, fc->flags >> 8, peer,
&c->data1, m ? &m->data1 : NULL))
return -1;
if (apply_flag(fc->data2, fc->flags >> 16, peer,
&c->data2, m ? &m->data2 : NULL))
return -1;
if (apply_flag(fc->data3, fc->flags >> 24, peer,
&c->data3, m ? &m->data3 : NULL))
return -1;
return 0;
case COMMUNITY_TYPE_EXT:
type = (int32_t)fc->data3 >> 8;
subtype = fc->data3 & 0xff;
if (type == -1) {
/* special case for 'ext-community rt *' */
if ((fc->flags >> 8 & 0xff) != COMMUNITY_ANY ||
m == NULL)
return -1;
c->data3 = subtype;
m->data1 = 0;
m->data2 = 0;
m->data3 = 0xff;
return 0;
}
c->data3 = type << 8 | subtype;
switch (type & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
case EXT_COMMUNITY_TRANS_FOUR_AS:
if ((fc->flags >> 8 & 0xff) == COMMUNITY_ANY)
break;
if (apply_flag(fc->data1, fc->flags >> 8, peer,
&c->data1, m ? &m->data1 : NULL))
return -1;
if (apply_flag(fc->data2, fc->flags >> 16, peer,
&c->data2, m ? &m->data2 : NULL))
return -1;
if (m)
m->data3 &= ~(EXT_COMMUNITY_TRANS_FOUR_AS << 8);
return 0;
case EXT_COMMUNITY_TRANS_IPV4:
if ((fc->flags >> 8 & 0xff) == COMMUNITY_ANY)
break;
if (apply_flag(fc->data1, fc->flags >> 8, peer,
&c->data1, m ? &m->data1 : NULL))
return -1;
if (apply_flag(fc->data2, fc->flags >> 16, peer,
&c->data2, m ? &m->data2 : NULL))
return -1;
/* check that values fit */
if (c->data2 > USHRT_MAX)
return -1;
return 0;
case EXT_COMMUNITY_TRANS_OPAQUE:
case EXT_COMMUNITY_TRANS_EVPN:
if ((fc->flags >> 8 & 0xff) == COMMUNITY_ANY)
break;
c->data1 = fc->data1;
c->data2 = fc->data2;
return 0;
}
if (m) {
m->data1 = 0;
m->data2 = 0;
}
return 0;
default:
fatalx("%s: unknown type %d", __func__, (uint8_t)c->flags);
}
}
static int
fast_match(const void *va, const void *vb)
{
const struct community *a = va;
const struct community *b = vb;
if ((uint8_t)a->flags != (uint8_t)b->flags)
return (uint8_t)a->flags > (uint8_t)b->flags ? 1 : -1;
if (a->data1 != b->data1)
return a->data1 > b->data1 ? 1 : -1;
if (a->data2 != b->data2)
return a->data2 > b->data2 ? 1 : -1;
if (a->data3 != b->data3)
return a->data3 > b->data3 ? 1 : -1;
return 0;
}
static int
mask_match(struct community *a, struct community *b, struct community *m)
{
if ((uint8_t)a->flags != (uint8_t)b->flags)
return (uint8_t)a->flags > (uint8_t)b->flags ? 1 : -1;
if ((a->data1 & m->data1) != (b->data1 & m->data1)) {
if ((a->data1 & m->data1) > (b->data1 & m->data1))
return 1;
return -1;
}
if ((a->data2 & m->data2) != (b->data2 & m->data2)) {
if ((a->data2 & m->data2) > (b->data2 & m->data2))
return 1;
return -1;
}
if ((a->data3 & m->data3) != (b->data3 & m->data3)) {
if ((a->data3 & m->data3) > (b->data3 & m->data3))
return 1;
return -1;
}
return 0;
}
/*
* Insert a community keeping the list sorted. Don't add if already present.
*/
static void
insert_community(struct rde_community *comm, struct community *c)
{
int l;
int r;
if (comm->nentries + 1 > comm->size) {
struct community *new;
int newsize = comm->size + 8;
if ((new = reallocarray(comm->communities, newsize,
sizeof(struct community))) == NULL)
fatal(__func__);
memset(new + comm->size, 0, 8 * sizeof(struct community));
comm->communities = new;
comm->size = newsize;
}
/* XXX can be made faster by binary search */
for (l = 0; l < comm->nentries; l++) {
r = fast_match(comm->communities + l, c);
if (r == 0) {
/* already present, nothing to do */
return;
} else if (r > 0) {
/* shift reminder by one slot */
memmove(comm->communities + l + 1,
comm->communities + l,
(comm->nentries - l) * sizeof(*c));
break;
}
}
/* insert community at slot l */
comm->communities[l] = *c;
comm->nentries++;
}
static int
non_transitive_ext_community(struct community *c)
{
if ((c->data3 >> 8) & EXT_COMMUNITY_NON_TRANSITIVE)
return 1;
return 0;
}
/*
* Check if a community is present. This function will expand local-as and
* neighbor-as and also mask of bits to support partial matches.
*/
int
community_match(struct rde_community *comm, struct community *fc,
struct rde_peer *peer)
{
struct community test, mask;
int l;
if (fc->flags >> 8 == 0) {
/* fast path */
return (bsearch(fc, comm->communities, comm->nentries,
sizeof(*fc), fast_match) != NULL);
} else {
/* slow path */
if (fc2c(fc, peer, &test, &mask) == -1)
return 0;
for (l = 0; l < comm->nentries; l++) {
if (mask_match(&comm->communities[l], &test,
&mask) == 0)
return 1;
}
return 0;
}
}
/*
* Count the number of communities of type type.
*/
int
community_count(struct rde_community *comm, uint8_t type)
{
int l;
int count = 0;
/* use the fact that the array is ordered by type */
switch (type) {
case COMMUNITY_TYPE_BASIC:
for (l = 0; l < comm->nentries; l++) {
if ((uint8_t)comm->communities[l].flags == type)
count++;
else
break;
}
break;
case COMMUNITY_TYPE_EXT:
for (l = 0; l < comm->nentries; l++) {
if ((uint8_t)comm->communities[l].flags == type)
count++;
else if ((uint8_t)comm->communities[l].flags > type)
break;
}
break;
case COMMUNITY_TYPE_LARGE:
for (l = comm->nentries; l > 0; l--) {
if ((uint8_t)comm->communities[l - 1].flags == type)
count++;
else
break;
}
break;
}
return count;
}
/*
* Insert a community, expanding local-as and neighbor-as if needed.
*/
int
community_set(struct rde_community *comm, struct community *fc,
struct rde_peer *peer)
{
struct community set;
if (fc->flags >> 8 == 0) {
/* fast path */
insert_community(comm, fc);
} else {
if (fc2c(fc, peer, &set, NULL) == -1)
return 0;
if ((uint8_t)set.flags == COMMUNITY_TYPE_EXT) {
int type = (int)set.data3 >> 8;
switch (type & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
case EXT_COMMUNITY_TRANS_FOUR_AS:
/* check that values fit */
if (set.data1 > USHRT_MAX &&
set.data2 > USHRT_MAX)
return 0;
if (set.data1 > USHRT_MAX)
set.data3 = (set.data3 & 0xff) |
EXT_COMMUNITY_TRANS_FOUR_AS << 8;
else
set.data3 = (set.data3 & 0xff) |
EXT_COMMUNITY_TRANS_TWO_AS << 8;
break;
}
}
insert_community(comm, &set);
}
return 1;
}
/*
* Remove a community if present, This function will expand local-as and
* neighbor-as and also mask of bits to support partial matches.
*/
void
community_delete(struct rde_community *comm, struct community *fc,
struct rde_peer *peer)
{
struct community test, mask;
struct community *match;
int l = 0;
if (fc->flags >> 8 == 0) {
/* fast path */
match = bsearch(fc, comm->communities, comm->nentries,
sizeof(*fc), fast_match);
if (match == NULL)
return;
/* move everything after match down by 1 */
memmove(match, match + 1,
(char *)(comm->communities + comm->nentries) -
(char *)(match + 1));
comm->nentries--;
return;
} else {
if (fc2c(fc, peer, &test, &mask) == -1)
return;
while (l < comm->nentries) {
if (mask_match(&comm->communities[l], &test,
&mask) == 0) {
memmove(comm->communities + l,
comm->communities + l + 1,
(comm->nentries - l - 1) * sizeof(test));
comm->nentries--;
continue;
}
l++;
}
}
}
/*
* Internalize communities from the wireformat.
* Store the partial flag in struct rde_community so it is not lost.
* - community_add for ATTR_COMMUNITUES
* - community_large_add for ATTR_LARGE_COMMUNITIES
* - community_ext_add for ATTR_EXT_COMMUNITIES
*/
int
community_add(struct rde_community *comm, int flags, void *buf, size_t len)
{
struct community set = { .flags = COMMUNITY_TYPE_BASIC };
uint8_t *b = buf;
uint16_t c;
size_t l;
if (len == 0 || len % 4 != 0)
return -1;
if (flags & ATTR_PARTIAL)
comm->flags |= PARTIAL_COMMUNITIES;
for (l = 0; l < len; l += 4, b += 4) {
memcpy(&c, b, sizeof(c));
set.data1 = ntohs(c);
memcpy(&c, b + 2, sizeof(c));
set.data2 = ntohs(c);
insert_community(comm, &set);
}
return 0;
}
int
community_large_add(struct rde_community *comm, int flags, void *buf,
size_t len)
{
struct community set = { .flags = COMMUNITY_TYPE_LARGE };
uint8_t *b = buf;
size_t l;
if (len == 0 || len % 12 != 0)
return -1;
if (flags & ATTR_PARTIAL)
comm->flags |= PARTIAL_LARGE_COMMUNITIES;
for (l = 0; l < len; l += 12, b += 12) {
memcpy(&set.data1, b, sizeof(set.data1));
memcpy(&set.data2, b + 4, sizeof(set.data2));
memcpy(&set.data3, b + 8, sizeof(set.data3));
set.data1 = ntohl(set.data1);
set.data2 = ntohl(set.data2);
set.data3 = ntohl(set.data3);
insert_community(comm, &set);
}
return 0;
}
int
community_ext_add(struct rde_community *comm, int flags, int ebgp,
void *buf, size_t len)
{
struct community set = { .flags = COMMUNITY_TYPE_EXT };
uint8_t *b = buf, type;
uint64_t c;
size_t l;
if (len == 0 || len % 8 != 0)
return -1;
if (flags & ATTR_PARTIAL)
comm->flags |= PARTIAL_EXT_COMMUNITIES;
for (l = 0; l < len; l += 8, b += 8) {
memcpy(&c, b, 8);
c = be64toh(c);
type = c >> 56;
/* filter out non-transitive ext communuties from ebgp peers */
if (ebgp && (type & EXT_COMMUNITY_NON_TRANSITIVE))
continue;
switch (type & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
case EXT_COMMUNITY_TRANS_OPAQUE:
case EXT_COMMUNITY_TRANS_EVPN:
set.data1 = c >> 32 & 0xffff;
set.data2 = c;
break;
case EXT_COMMUNITY_TRANS_FOUR_AS:
case EXT_COMMUNITY_TRANS_IPV4:
set.data1 = c >> 16;
set.data2 = c & 0xffff;
break;
}
set.data3 = c >> 48;
insert_community(comm, &set);
}
return 0;
}
/*
* Convert communities back to the wireformat.
* This function needs to make sure that the attribute buffer is overflowed
* while writing out the communities.
* - community_write for ATTR_COMMUNITUES
* - community_large_write for ATTR_LARGE_COMMUNITIES
* - community_ext_write for ATTR_EXT_COMMUNITIES
* When writing ATTR_EXT_COMMUNITIES non-transitive communities need to
* be skipped if it is sent to an ebgp peer.
*/
int
community_write(struct rde_community *comm, void *buf, uint16_t len)
{
uint8_t *b = buf;
uint16_t c;
size_t n = 0;
int l, r, flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_COMMUNITIES)
flags |= ATTR_PARTIAL;
/* first count how many communities will be written */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_BASIC)
n++;
if (n == 0)
return 0;
/* write attribute header */
r = attr_write(b, len, flags, ATTR_COMMUNITIES, NULL, n * 4);
if (r == -1)
return -1;
b += r;
/* write out the communities */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_BASIC) {
c = htons(comm->communities[l].data1);
memcpy(b, &c, sizeof(c));
b += sizeof(c);
r += sizeof(c);
c = htons(comm->communities[l].data2);
memcpy(b, &c, sizeof(c));
b += sizeof(c);
r += sizeof(c);
}
return r;
}
int
community_large_write(struct rde_community *comm, void *buf, uint16_t len)
{
uint8_t *b = buf;
uint32_t c;
size_t n = 0;
int l, r, flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_LARGE_COMMUNITIES)
flags |= ATTR_PARTIAL;
/* first count how many communities will be written */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_LARGE)
n++;
if (n == 0)
return 0;
/* write attribute header */
r = attr_write(b, len, flags, ATTR_LARGE_COMMUNITIES, NULL, n * 12);
if (r == -1)
return -1;
b += r;
/* write out the communities */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_LARGE) {
c = htonl(comm->communities[l].data1);
memcpy(b, &c, sizeof(c));
b += sizeof(c);
r += sizeof(c);
c = htonl(comm->communities[l].data2);
memcpy(b, &c, sizeof(c));
b += sizeof(c);
r += sizeof(c);
c = htonl(comm->communities[l].data3);
memcpy(b, &c, sizeof(c));
b += sizeof(c);
r += sizeof(c);
}
return r;
}
int
community_ext_write(struct rde_community *comm, int ebgp, void *buf,
uint16_t len)
{
struct community *cp;
uint8_t *b = buf;
uint64_t ext;
size_t n = 0;
int l, r, flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_EXT_COMMUNITIES)
flags |= ATTR_PARTIAL;
/* first count how many communities will be written */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_EXT && !(ebgp &&
non_transitive_ext_community(&comm->communities[l])))
n++;
if (n == 0)
return 0;
/* write attribute header */
r = attr_write(b, len, flags, ATTR_EXT_COMMUNITIES, NULL, n * 8);
if (r == -1)
return -1;
b += r;
/* write out the communities */
for (l = 0; l < comm->nentries; l++) {
cp = comm->communities + l;
if ((uint8_t)cp->flags == COMMUNITY_TYPE_EXT && !(ebgp &&
non_transitive_ext_community(cp))) {
ext = (uint64_t)cp->data3 << 48;
switch ((cp->data3 >> 8) & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
case EXT_COMMUNITY_TRANS_OPAQUE:
case EXT_COMMUNITY_TRANS_EVPN:
ext |= ((uint64_t)cp->data1 & 0xffff) << 32;
ext |= (uint64_t)cp->data2;
break;
case EXT_COMMUNITY_TRANS_FOUR_AS:
case EXT_COMMUNITY_TRANS_IPV4:
ext |= (uint64_t)cp->data1 << 16;
ext |= (uint64_t)cp->data2 & 0xffff;
break;
}
ext = htobe64(ext);
memcpy(b, &ext, sizeof(ext));
b += sizeof(ext);
r += sizeof(ext);
}
}
return r;
}
/*
* Convert communities back to the wireformat and dump them into the ibuf buf.
* This function is used by the mrt dump code.
*/
int
community_writebuf(struct ibuf *buf, struct rde_community *comm)
{
size_t basic_n = 0, large_n = 0, ext_n = 0;
int l, flags;
/* first count how many communities will be written */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_BASIC)
basic_n++;
else if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_EXT)
ext_n++;
else if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_LARGE)
large_n++;
if (basic_n != 0) {
/* write attribute header */
flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_COMMUNITIES)
flags |= ATTR_PARTIAL;
if (attr_writebuf(buf, flags, ATTR_COMMUNITIES, NULL,
basic_n * 4) == -1)
return -1;
/* write out the communities */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_BASIC) {
uint16_t c;
c = htons(comm->communities[l].data1);
if (ibuf_add(buf, &c, sizeof(c)) == -1)
return (-1);
c = htons(comm->communities[l].data2);
if (ibuf_add(buf, &c, sizeof(c)) == -1)
return (-1);
}
}
if (ext_n != 0) {
/* write attribute header */
flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_COMMUNITIES)
flags |= ATTR_PARTIAL;
if (attr_writebuf(buf, flags, ATTR_EXT_COMMUNITIES, NULL,
ext_n * 8) == -1)
return -1;
/* write out the communities */
for (l = 0; l < comm->nentries; l++) {
struct community *cp;
uint64_t ext;
cp = comm->communities + l;
if ((uint8_t)cp->flags != COMMUNITY_TYPE_EXT)
continue;
ext = (uint64_t)cp->data3 << 48;
switch ((cp->data3 >> 8) & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
case EXT_COMMUNITY_TRANS_OPAQUE:
case EXT_COMMUNITY_TRANS_EVPN:
ext |= ((uint64_t)cp->data1 & 0xffff) << 32;
ext |= (uint64_t)cp->data2;
break;
case EXT_COMMUNITY_TRANS_FOUR_AS:
case EXT_COMMUNITY_TRANS_IPV4:
ext |= (uint64_t)cp->data1 << 16;
ext |= (uint64_t)cp->data2 & 0xffff;
break;
}
ext = htobe64(ext);
if (ibuf_add(buf, &ext, sizeof(ext)) == -1)
return (-1);
}
}
if (large_n != 0) {
/* write attribute header */
flags = ATTR_OPTIONAL | ATTR_TRANSITIVE;
if (comm->flags & PARTIAL_COMMUNITIES)
flags |= ATTR_PARTIAL;
if (attr_writebuf(buf, flags, ATTR_LARGE_COMMUNITIES, NULL,
large_n * 12) == -1)
return -1;
/* write out the communities */
for (l = 0; l < comm->nentries; l++)
if ((uint8_t)comm->communities[l].flags ==
COMMUNITY_TYPE_LARGE) {
uint32_t c;
c = htonl(comm->communities[l].data1);
if (ibuf_add(buf, &c, sizeof(c)) == -1)
return (-1);
c = htonl(comm->communities[l].data2);
if (ibuf_add(buf, &c, sizeof(c)) == -1)
return (-1);
c = htonl(comm->communities[l].data3);
if (ibuf_add(buf, &c, sizeof(c)) == -1)
return (-1);
}
}
return 0;
}
/*
* Global RIB cache for communities
*/
static inline int
communities_compare(struct rde_community *a, struct rde_community *b)
{
if (a->nentries != b->nentries)
return a->nentries > b->nentries ? 1 : -1;
if (a->flags != b->flags)
return a->flags > b->flags ? 1 : -1;
return memcmp(a->communities, b->communities,
a->nentries * sizeof(struct community));
}
RB_HEAD(comm_tree, rde_community) commtable = RB_INITIALIZER(&commtable);
RB_GENERATE_STATIC(comm_tree, rde_community, entry, communities_compare);
void
communities_shutdown(void)
{
if (!RB_EMPTY(&commtable))
log_warnx("%s: free non-free table", __func__);
}
struct rde_community *
communities_lookup(struct rde_community *comm)
{
return RB_FIND(comm_tree, &commtable, comm);
}
struct rde_community *
communities_link(struct rde_community *comm)
{
struct rde_community *n, *f;
if ((n = malloc(sizeof(*n))) == NULL)
fatal(__func__);
communities_copy(n, comm);
if ((f = RB_INSERT(comm_tree, &commtable, n)) != NULL) {
log_warnx("duplicate communities collection inserted");
free(n->communities);
free(n);
return f;
}
n->refcnt = 1; /* initial reference by the cache */
rdemem.comm_size += n->size;
rdemem.comm_nmemb += n->nentries;
rdemem.comm_cnt++;
return n;
}
void
communities_unlink(struct rde_community *comm)
{
if (comm->refcnt != 1)
fatalx("%s: unlinking still referenced communities", __func__);
RB_REMOVE(comm_tree, &commtable, comm);
rdemem.comm_size -= comm->size;
rdemem.comm_nmemb -= comm->nentries;
rdemem.comm_cnt--;
free(comm->communities);
free(comm);
}
/*
* Return true/1 if the two communities collections are identical,
* otherwise returns zero.
*/
int
communities_equal(struct rde_community *a, struct rde_community *b)
{
if (a->nentries != b->nentries)
return 0;
if (a->flags != b->flags)
return 0;
return (memcmp(a->communities, b->communities,
a->nentries * sizeof(struct community)) == 0);
}
/*
* Copy communities to a new unreferenced struct. Needs to call
* communities_clean() when done. to can be statically allocated,
* it will be cleaned first.
*/
void
communities_copy(struct rde_community *to, struct rde_community *from)
{
memset(to, 0, sizeof(*to));
/* ignore from->size and allocate the perfect amount */
to->size = from->size;
to->nentries = from->nentries;
to->flags = from->flags;
if ((to->communities = reallocarray(NULL, to->size,
sizeof(struct community))) == NULL)
fatal(__func__);
memcpy(to->communities, from->communities,
to->nentries * sizeof(struct community));
memset(to->communities + to->nentries, 0, sizeof(struct community) *
(to->size - to->nentries));
}
/*
* Clean up the communities by freeing any dynamically allocated memory.
*/
void
communities_clean(struct rde_community *comm)
{
if (comm->refcnt != 0)
fatalx("%s: cleaning still referenced communities", __func__);
free(comm->communities);
memset(comm, 0, sizeof(*comm));
}
int
community_to_rd(struct community *fc, uint64_t *community)
{
struct community c;
uint64_t rd;
if (fc2c(fc, NULL, &c, NULL) == -1)
return -1;
switch ((c.data3 >> 8) & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TRANS_TWO_AS:
rd = (0ULL << 48);
rd |= ((uint64_t)c.data1 & 0xffff) << 32;
rd |= (uint64_t)c.data2;
break;
case EXT_COMMUNITY_TRANS_IPV4:
rd = (1ULL << 48);
rd |= (uint64_t)c.data1 << 16;
rd |= (uint64_t)c.data2 & 0xffff;
break;
case EXT_COMMUNITY_TRANS_FOUR_AS:
rd = (2ULL << 48);
rd |= (uint64_t)c.data1 << 16;
rd |= (uint64_t)c.data2 & 0xffff;
break;
default:
return -1;
}
*community = htobe64(rd);
return 0;
}
|