forked from FRRouting/frr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbgp_aspath.c
2434 lines (2027 loc) · 56.7 KB
/
bgp_aspath.c
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
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: GPL-2.0-or-later
/* AS path management routines.
* Copyright (C) 1996, 97, 98, 99 Kunihiro Ishiguro
* Copyright (C) 2005 Sun Microsystems, Inc.
*/
#include <zebra.h>
#include "hash.h"
#include "memory.h"
#include "vector.h"
#include "log.h"
#include "stream.h"
#include "command.h"
#include "jhash.h"
#include "queue.h"
#include "filter.h"
#include "bgpd/bgpd.h"
#include "bgpd/bgp_aspath.h"
#include "bgpd/bgp_debug.h"
#include "bgpd/bgp_attr.h"
#include "bgpd/bgp_errors.h"
#include "bgpd/bgp_filter.h"
/* Attr. Flags and Attr. Type Code. */
#define AS_HEADER_SIZE 2
/* Now FOUR octets are used for AS value. */
#define AS_VALUE_SIZE sizeof(as_t)
/* This is the old one */
#define AS16_VALUE_SIZE sizeof(as16_t)
/* Maximum protocol segment length value */
#define AS_SEGMENT_MAX 255
/* The following length and size macros relate specifically to Quagga's
* internal representation of AS-Segments, not per se to the on-wire
* sizes and lengths. At present (200508) they sort of match, however
* the ONLY functions which should now about the on-wire syntax are
* aspath_put, assegment_put and assegment_parse.
*
* aspath_put returns bytes written, the only definitive record of
* size of wire-format attribute..
*/
/* Calculated size in bytes of ASN segment data to hold N ASN's */
#define ASSEGMENT_DATA_SIZE(N, S) \
((N) * ((S) ? AS_VALUE_SIZE : AS16_VALUE_SIZE))
/* Calculated size of segment struct to hold N ASN's */
#define ASSEGMENT_SIZE(N,S) (AS_HEADER_SIZE + ASSEGMENT_DATA_SIZE (N,S))
/* AS segment octet length. */
#define ASSEGMENT_LEN(X,S) ASSEGMENT_SIZE((X)->length,S)
/* AS_SEQUENCE segments can be packed together */
/* Can the types of X and Y be considered for packing? */
#define ASSEGMENT_TYPES_PACKABLE(X, Y) \
(((X)->type == (Y)->type) && ((X)->type == AS_SEQUENCE))
/* Types and length of X,Y suitable for packing? */
#define ASSEGMENTS_PACKABLE(X, Y) \
(ASSEGMENT_TYPES_PACKABLE((X), (Y)) \
&& (((X)->length + (Y)->length) <= AS_SEGMENT_MAX))
/* As segment header - the on-wire representation
* NOT the internal representation!
*/
struct assegment_header {
uint8_t type;
uint8_t length;
};
/* Hash for aspath. This is the top level structure of AS path. */
static struct hash *ashash;
/* Stream for SNMP. See aspath_snmp_pathseg */
static struct stream *snmp_stream;
/* Callers are required to initialize the memory */
static as_t *assegment_data_new(int num)
{
return (XMALLOC(MTYPE_AS_SEG_DATA, ASSEGMENT_DATA_SIZE(num, 1)));
}
static void assegment_data_free(as_t *asdata)
{
XFREE(MTYPE_AS_SEG_DATA, asdata);
}
const char *const aspath_segment_type_str[] = {
"as-invalid", "as-set", "as-sequence", "as-confed-sequence",
"as-confed-set"
};
/* Get a new segment. Note that 0 is an allowed length,
* and will result in a segment with no allocated data segment.
* the caller should immediately assign data to the segment, as the segment
* otherwise is not generally valid
*/
static struct assegment *assegment_new(uint8_t type, unsigned short length)
{
struct assegment *new;
new = XCALLOC(MTYPE_AS_SEG, sizeof(struct assegment));
if (length)
new->as = assegment_data_new(length);
new->length = length;
new->type = type;
return new;
}
static void assegment_free(struct assegment *seg)
{
if (!seg)
return;
assegment_data_free(seg->as);
memset(seg, 0xfe, sizeof(struct assegment));
XFREE(MTYPE_AS_SEG, seg);
return;
}
/* free entire chain of segments */
static void assegment_free_all(struct assegment *seg)
{
struct assegment *prev;
while (seg) {
prev = seg;
seg = seg->next;
assegment_free(prev);
}
}
/* Duplicate just the given assegment and its data */
static struct assegment *assegment_dup(struct assegment *seg)
{
struct assegment *new;
new = assegment_new(seg->type, seg->length);
memcpy(new->as, seg->as, ASSEGMENT_DATA_SIZE(new->length, 1));
return new;
}
/* Duplicate entire chain of assegments, return the head */
static struct assegment *assegment_dup_all(struct assegment *seg)
{
struct assegment *new = NULL;
struct assegment *head = NULL;
while (seg) {
if (head) {
new->next = assegment_dup(seg);
new = new->next;
} else
head = new = assegment_dup(seg);
seg = seg->next;
}
return head;
}
/* prepend the as number to given segment, given num of times */
static struct assegment *assegment_prepend_asns(struct assegment *seg,
as_t asnum, int num)
{
as_t *newas;
int i;
if (!num)
return seg;
if (num >= AS_SEGMENT_MAX)
return seg; /* we don't do huge prepends */
newas = assegment_data_new(seg->length + num);
if (newas == NULL)
return seg;
for (i = 0; i < num; i++)
newas[i] = asnum;
memcpy(newas + num, seg->as, ASSEGMENT_DATA_SIZE(seg->length, 1));
assegment_data_free(seg->as);
seg->as = newas;
seg->length += num;
return seg;
}
/* append given array of as numbers to the segment */
static struct assegment *assegment_append_asns(struct assegment *seg,
as_t *asnos, int num)
{
as_t *newas;
if (!seg)
return seg;
newas = XREALLOC(MTYPE_AS_SEG_DATA, seg->as,
ASSEGMENT_DATA_SIZE(seg->length + num, 1));
seg->as = newas;
memcpy(seg->as + seg->length, asnos,
ASSEGMENT_DATA_SIZE(num, 1));
seg->length += num;
return seg;
}
static int int_cmp(const void *p1, const void *p2)
{
const as_t *as1 = p1;
const as_t *as2 = p2;
return (*as1 == *as2) ? 0 : ((*as1 > *as2) ? 1 : -1);
}
/* normalise the segment.
* In particular, merge runs of AS_SEQUENCEs into one segment
* Internally, we do not care about the wire segment length limit, and
* we want each distinct AS_PATHs to have the exact same internal
* representation - eg, so that our hashing actually works..
*/
static struct assegment *assegment_normalise(struct assegment *head)
{
struct assegment *seg = head, *pin;
struct assegment *tmp;
if (!head)
return head;
while (seg) {
pin = seg;
/* Sort values SET segments, for determinism in paths to aid
* creation of hash values / path comparisons
* and because it helps other lesser implementations ;)
*/
if (seg->type == AS_SET || seg->type == AS_CONFED_SET) {
int tail = 0;
int i;
qsort(seg->as, seg->length, sizeof(as_t), int_cmp);
/* weed out dupes */
for (i = 1; i < seg->length; i++) {
if (seg->as[tail] == seg->as[i])
continue;
tail++;
if (tail < i)
seg->as[tail] = seg->as[i];
}
/* seg->length can be 0.. */
if (seg->length)
seg->length = tail + 1;
}
/* read ahead from the current, pinned segment while the
* segments
* are packable/mergeable. Append all following packable
* segments
* to the segment we have pinned and remove these appended
* segments.
*/
while (pin->next && ASSEGMENT_TYPES_PACKABLE(pin, pin->next)) {
tmp = pin->next;
seg = pin->next;
/* append the next sequence to the pinned sequence */
pin = assegment_append_asns(pin, seg->as, seg->length);
/* bypass the next sequence */
pin->next = seg->next;
/* get rid of the now referenceless segment */
assegment_free(tmp);
}
seg = pin->next;
}
return head;
}
static struct aspath *aspath_new(enum asnotation_mode asnotation)
{
struct aspath *as;
as = XCALLOC(MTYPE_AS_PATH, sizeof(struct aspath));
as->asnotation = asnotation;
return as;
}
/* Free AS path structure. */
void aspath_free(struct aspath *aspath)
{
if (!aspath)
return;
if (aspath->segments)
assegment_free_all(aspath->segments);
XFREE(MTYPE_AS_STR, aspath->str);
if (aspath->json) {
json_object_free(aspath->json);
aspath->json = NULL;
}
XFREE(MTYPE_AS_PATH, aspath);
}
/* Unintern aspath from AS path bucket. */
void aspath_unintern(struct aspath **aspath)
{
struct aspath *ret;
struct aspath *asp;
if (!*aspath)
return;
asp = *aspath;
if (asp->refcnt)
asp->refcnt--;
if (asp->refcnt == 0) {
/* This aspath must exist in aspath hash table. */
ret = hash_release(ashash, asp);
assert(ret != NULL);
aspath_free(asp);
*aspath = NULL;
}
}
/* Return the start or end delimiters for a particular Segment type */
#define AS_SEG_START 0
#define AS_SEG_END 1
static char aspath_delimiter_char(uint8_t type, uint8_t which)
{
int i;
struct {
int type;
char start;
char end;
} aspath_delim_char[] = {{AS_SET, '{', '}'},
{AS_CONFED_SET, '[', ']'},
{AS_CONFED_SEQUENCE, '(', ')'},
{0}};
for (i = 0; aspath_delim_char[i].type != 0; i++) {
if (aspath_delim_char[i].type == type) {
if (which == AS_SEG_START)
return aspath_delim_char[i].start;
else if (which == AS_SEG_END)
return aspath_delim_char[i].end;
}
}
return ' ';
}
/* countup asns from this segment and index onward */
static int assegment_count_asns(struct assegment *seg, int from)
{
int count = 0;
while (seg) {
if (!from)
count += seg->length;
else {
count += (seg->length - from);
from = 0;
}
seg = seg->next;
}
return count;
}
unsigned int aspath_count_confeds(struct aspath *aspath)
{
int count = 0;
struct assegment *seg = aspath->segments;
while (seg) {
if (seg->type == AS_CONFED_SEQUENCE)
count += seg->length;
else if (seg->type == AS_CONFED_SET)
count++;
seg = seg->next;
}
return count;
}
unsigned int aspath_count_hops(const struct aspath *aspath)
{
int count = 0;
struct assegment *seg = aspath->segments;
while (seg) {
if (seg->type == AS_SEQUENCE)
count += seg->length;
else if (seg->type == AS_SET)
count++;
seg = seg->next;
}
return count;
}
/* Check if aspath has AS_SET or AS_CONFED_SET */
bool aspath_check_as_sets(struct aspath *aspath)
{
struct assegment *seg = aspath->segments;
while (seg) {
if (seg->type == AS_SET || seg->type == AS_CONFED_SET)
return true;
seg = seg->next;
}
return false;
}
/* Check if aspath has BGP_AS_ZERO */
bool aspath_check_as_zero(struct aspath *aspath)
{
struct assegment *seg = aspath->segments;
unsigned int i;
while (seg) {
for (i = 0; i < seg->length; i++)
if (seg->as[i] == BGP_AS_ZERO)
return true;
seg = seg->next;
}
return false;
}
/* Estimate size aspath /might/ take if encoded into an
* ASPATH attribute.
*
* This is a quick estimate, not definitive! aspath_put()
* may return a different number!!
*/
unsigned int aspath_size(struct aspath *aspath)
{
int size = 0;
struct assegment *seg = aspath->segments;
while (seg) {
size += ASSEGMENT_SIZE(seg->length, 1);
seg = seg->next;
}
return size;
}
/* Return highest public ASN in path */
as_t aspath_highest(struct aspath *aspath)
{
struct assegment *seg = aspath->segments;
as_t highest = 0;
unsigned int i;
while (seg) {
for (i = 0; i < seg->length; i++)
if (seg->as[i] > highest
&& !BGP_AS_IS_PRIVATE(seg->as[i]))
highest = seg->as[i];
seg = seg->next;
}
return highest;
}
/* Return the left-most ASN in path */
as_t aspath_leftmost(struct aspath *aspath)
{
struct assegment *seg = aspath->segments;
as_t leftmost = 0;
if (seg && seg->length && seg->type == AS_SEQUENCE)
leftmost = seg->as[0];
return leftmost;
}
/* Return 1 if there are any 4-byte ASes in the path */
bool aspath_has_as4(struct aspath *aspath)
{
struct assegment *seg = aspath->segments;
unsigned int i;
while (seg) {
for (i = 0; i < seg->length; i++)
if (seg->as[i] > BGP_AS_MAX)
return true;
seg = seg->next;
}
return false;
}
/* Convert aspath structure to string expression. */
static void aspath_make_str_count(struct aspath *as, bool make_json)
{
struct assegment *seg;
int str_size;
int len = 0;
char *str_buf;
json_object *jaspath_segments = NULL;
json_object *jseg = NULL;
json_object *jseg_list = NULL;
if (make_json) {
as->json = json_object_new_object();
jaspath_segments = json_object_new_array();
}
/* Empty aspath. */
if (!as->segments) {
if (make_json) {
json_object_string_add(as->json, "string", "Local");
json_object_object_add(as->json, "segments",
jaspath_segments);
json_object_int_add(as->json, "length", 0);
}
as->str = XMALLOC(MTYPE_AS_STR, 1);
as->str[0] = '\0';
as->str_len = 0;
return;
}
seg = as->segments;
/* ASN takes 5 to 10 chars plus separator, see below.
* If there is one differing segment type, we need an additional
* 2 chars for segment delimiters, and the final '\0'.
* Hopefully this is large enough to avoid hitting the realloc
* code below for most common sequences.
*
* This was changed to 10 after the well-known BGP assertion, which
* had hit some parts of the Internet in May of 2009.
* plain format : '4294967295 ' : 10 + 1
* astod format : '65535.65535 ': 11 + 1
*/
#define ASN_STR_LEN (11 + 1)
str_size = MAX(assegment_count_asns(seg, 0) * ASN_STR_LEN + 2 + 1,
ASPATH_STR_DEFAULT_LEN);
str_buf = XMALLOC(MTYPE_AS_STR, str_size);
while (seg) {
int i;
char separator;
/* Check AS type validity. Set separator for segment */
switch (seg->type) {
case AS_SET:
case AS_CONFED_SET:
separator = ',';
break;
case AS_SEQUENCE:
case AS_CONFED_SEQUENCE:
separator = ' ';
break;
default:
XFREE(MTYPE_AS_STR, str_buf);
as->str = NULL;
as->str_len = 0;
json_object_free(as->json);
as->json = NULL;
return;
}
/* We might need to increase str_buf, particularly if path has
* differing segments types, our initial guesstimate above will
* have been wrong. Need 11 chars for ASN, a separator each and
* potentially two segment delimiters, plus a space between each
* segment and trailing zero.
*
* This definitely didn't work with the value of 5 bytes and
* 32-bit ASNs.
*/
#define SEGMENT_STR_LEN(X) (((X)->length * ASN_STR_LEN) + 2 + 1 + 1)
if ((len + SEGMENT_STR_LEN(seg)) > str_size) {
str_size = len + SEGMENT_STR_LEN(seg);
str_buf = XREALLOC(MTYPE_AS_STR, str_buf, str_size);
}
#undef ASN_STR_LEN
#undef SEGMENT_STR_LEN
if (seg->type != AS_SEQUENCE)
len += snprintf(
str_buf + len, str_size - len, "%c",
aspath_delimiter_char(seg->type, AS_SEG_START));
if (make_json)
jseg_list = json_object_new_array();
/* write out the ASNs, with their separators, bar the last one*/
for (i = 0; i < seg->length; i++) {
if (make_json)
asn_asn2json_array(jseg_list, seg->as[i],
as->asnotation);
len += snprintfrr(str_buf + len, str_size - len,
ASN_FORMAT(as->asnotation),
&seg->as[i]);
if (i < (seg->length - 1))
len += snprintf(str_buf + len, str_size - len,
"%c", separator);
}
if (make_json) {
jseg = json_object_new_object();
json_object_string_add(
jseg, "type",
aspath_segment_type_str[seg->type]);
json_object_object_add(jseg, "list", jseg_list);
json_object_array_add(jaspath_segments, jseg);
}
if (seg->type != AS_SEQUENCE)
len += snprintf(
str_buf + len, str_size - len, "%c",
aspath_delimiter_char(seg->type, AS_SEG_END));
if (seg->next)
len += snprintf(str_buf + len, str_size - len, " ");
seg = seg->next;
}
assert(len < str_size);
str_buf[len] = '\0';
as->str = str_buf;
as->str_len = len;
if (make_json) {
json_object_string_add(as->json, "string", str_buf);
json_object_object_add(as->json, "segments", jaspath_segments);
json_object_int_add(as->json, "length", aspath_count_hops(as));
}
return;
}
void aspath_str_update(struct aspath *as, bool make_json)
{
XFREE(MTYPE_AS_STR, as->str);
if (as->json) {
json_object_free(as->json);
as->json = NULL;
}
aspath_make_str_count(as, make_json);
}
/* Intern allocated AS path. */
struct aspath *aspath_intern(struct aspath *aspath)
{
struct aspath *find;
/* Assert this AS path structure is not interned and has the string
representation built. */
assert(aspath->refcnt == 0);
assert(aspath->str);
/* Check AS path hash. */
find = hash_get(ashash, aspath, hash_alloc_intern);
if (find != aspath)
aspath_free(aspath);
find->refcnt++;
return find;
}
/* Duplicate aspath structure. Created same aspath structure but
reference count and AS path string is cleared. */
struct aspath *aspath_dup(struct aspath *aspath)
{
unsigned short buflen = aspath->str_len + 1;
struct aspath *new;
new = XCALLOC(MTYPE_AS_PATH, sizeof(struct aspath));
new->json = NULL;
if (aspath->segments)
new->segments = assegment_dup_all(aspath->segments);
if (!aspath->str)
return new;
new->str = XMALLOC(MTYPE_AS_STR, buflen);
new->str_len = aspath->str_len;
new->asnotation = aspath->asnotation;
/* copy the string data */
if (aspath->str_len > 0)
memcpy(new->str, aspath->str, buflen);
else
new->str[0] = '\0';
return new;
}
static void *aspath_hash_alloc(void *arg)
{
const struct aspath *aspath = arg;
struct aspath *new;
/* Malformed AS path value. */
assert(aspath->str);
/* New aspath structure is needed. */
new = XMALLOC(MTYPE_AS_PATH, sizeof(struct aspath));
/* Reuse segments and string representation */
new->refcnt = 0;
new->segments = aspath->segments;
new->str = aspath->str;
new->str_len = aspath->str_len;
new->json = aspath->json;
new->asnotation = aspath->asnotation;
return new;
}
/* parse as-segment byte stream in struct assegment */
static int assegments_parse(struct stream *s, size_t length,
struct assegment **result, int use32bit)
{
struct assegment_header segh;
struct assegment *seg, *prev = NULL, *head = NULL;
size_t bytes = 0;
/* empty aspath (ie iBGP or somesuch) */
if (length == 0)
return 0;
if (BGP_DEBUG(as4, AS4_SEGMENT))
zlog_debug(
"[AS4SEG] Parse aspath segment: got total byte length %lu",
(unsigned long)length);
/* basic checks */
if ((STREAM_READABLE(s) < length)
|| (STREAM_READABLE(s) < AS_HEADER_SIZE)
|| (length % AS16_VALUE_SIZE))
return -1;
while (bytes < length) {
int i;
size_t seg_size;
if ((length - bytes) <= AS_HEADER_SIZE) {
if (head)
assegment_free_all(head);
return -1;
}
/* softly softly, get the header first on its own */
segh.type = stream_getc(s);
segh.length = stream_getc(s);
seg_size = ASSEGMENT_SIZE(segh.length, use32bit);
if (BGP_DEBUG(as4, AS4_SEGMENT))
zlog_debug(
"[AS4SEG] Parse aspath segment: got type %d, length %d",
segh.type, segh.length);
/* check it.. */
if (((bytes + seg_size) > length)
/* 1771bis 4.3b: seg length contains one or more */
|| (segh.length == 0)
/* Paranoia in case someone changes type of segment length.
* Shift both values by 0x10 to make the comparison operate
* on more, than 8 bits (otherwise it's a warning, bug
* #564).
*/
|| ((sizeof(segh.length) > 1)
&& (0x10 + segh.length > 0x10 + AS_SEGMENT_MAX))) {
if (head)
assegment_free_all(head);
return -1;
}
switch (segh.type) {
case AS_SEQUENCE:
case AS_SET:
case AS_CONFED_SEQUENCE:
case AS_CONFED_SET:
break;
default:
if (head)
assegment_free_all(head);
return -1;
}
/* now its safe to trust lengths */
seg = assegment_new(segh.type, segh.length);
if (head)
prev->next = seg;
else /* it's the first segment */
head = seg;
for (i = 0; i < segh.length; i++)
seg->as[i] =
(use32bit) ? stream_getl(s) : stream_getw(s);
bytes += seg_size;
if (BGP_DEBUG(as4, AS4_SEGMENT))
zlog_debug(
"[AS4SEG] Parse aspath segment: Bytes now: %lu",
(unsigned long)bytes);
prev = seg;
}
*result = assegment_normalise(head);
return 0;
}
/* AS path parse function. pnt is a pointer to byte stream and length
is length of byte stream. If there is same AS path in the the AS
path hash then return it else make new AS path structure.
On error NULL is returned.
*/
struct aspath *aspath_parse(struct stream *s, size_t length, int use32bit,
enum asnotation_mode asnotation)
{
struct aspath as;
struct aspath *find;
/* If length is odd it's malformed AS path. */
/* Nit-picking: if (use32bit == 0) it is malformed if odd,
* otherwise its malformed when length is larger than 2 and (length-2)
* is not dividable by 4.
* But... this time we're lazy
*/
if (length % AS16_VALUE_SIZE)
return NULL;
memset(&as, 0, sizeof(as));
as.asnotation = asnotation;
if (assegments_parse(s, length, &as.segments, use32bit) < 0)
return NULL;
/* If already same aspath exist then return it. */
find = hash_get(ashash, &as, aspath_hash_alloc);
/* if the aspath was already hashed free temporary memory. */
if (find->refcnt) {
assegment_free_all(as.segments);
/* aspath_key_make() always updates the string */
XFREE(MTYPE_AS_STR, as.str);
if (as.json) {
json_object_free(as.json);
as.json = NULL;
}
}
find->refcnt++;
return find;
}
static void assegment_data_put(struct stream *s, as_t *as, int num,
int use32bit)
{
int i;
assert(num <= AS_SEGMENT_MAX);
for (i = 0; i < num; i++)
if (use32bit)
stream_putl(s, as[i]);
else {
if (as[i] <= BGP_AS_MAX)
stream_putw(s, as[i]);
else
stream_putw(s, BGP_AS_TRANS);
}
}
static size_t assegment_header_put(struct stream *s, uint8_t type, int length)
{
size_t lenp;
assert(length <= AS_SEGMENT_MAX);
stream_putc(s, type);
lenp = stream_get_endp(s);
stream_putc(s, length);
return lenp;
}
/* write aspath data to stream */
size_t aspath_put(struct stream *s, struct aspath *as, int use32bit)
{
struct assegment *seg = as->segments;
size_t bytes = 0;
if (!seg || seg->length == 0)
return 0;
/*
* Hey, what do we do when we have > STREAM_WRITABLE(s) here?
* At the moment, we would write out a partial aspath, and our
* peer
* will complain and drop the session :-/
*
* The general assumption here is that many things tested will
* never happen. And, in real live, up to now, they have not.
*/
while (seg && (ASSEGMENT_LEN(seg, use32bit) <= STREAM_WRITEABLE(s))) {
struct assegment *next = seg->next;
int written = 0;
int asns_packed = 0;
size_t lenp;
/* Overlength segments have to be split up */
while ((seg->length - written) > AS_SEGMENT_MAX) {
assegment_header_put(s, seg->type, AS_SEGMENT_MAX);
assegment_data_put(s, (seg->as + written),
AS_SEGMENT_MAX, use32bit);
written += AS_SEGMENT_MAX;
bytes += ASSEGMENT_SIZE(AS_SEGMENT_MAX, use32bit);
}
/* write the final segment, probably is also the first
*/
lenp = assegment_header_put(s, seg->type,
seg->length - written);
assegment_data_put(s, (seg->as + written),
seg->length - written, use32bit);
/* Sequence-type segments can be 'packed' together
* Case of a segment which was overlength and split up
* will be missed here, but that doesn't matter.
*/
while (next && ASSEGMENTS_PACKABLE(seg, next)) {
/* NB: We should never normally get here given
* we
* normalise aspath data when parse them.
* However, better
* safe than sorry. We potentially could call
* assegment_normalise here instead, but it's
* cheaper and
* easier to do it on the fly here rather than
* go through
* the segment list twice every time we write
* out
* aspath's.
*/
/* Next segment's data can fit in this one */
assegment_data_put(s, next->as, next->length, use32bit);
/* update the length of the segment header */
stream_putc_at(s, lenp,
seg->length - written + next->length);
asns_packed += next->length;
next = next->next;
}
bytes += ASSEGMENT_SIZE(seg->length - written + asns_packed,
use32bit);
seg = next;
}
return bytes;
}
/* This is for SNMP BGP4PATHATTRASPATHSEGMENT
* We have no way to manage the storage, so we use a static stream
* wrapper around aspath_put.
*/
uint8_t *aspath_snmp_pathseg(struct aspath *as, size_t *varlen)
{
#define SNMP_PATHSEG_MAX 1024
if (!snmp_stream)
snmp_stream = stream_new(SNMP_PATHSEG_MAX);
else
stream_reset(snmp_stream);
if (!as) {
*varlen = 0;
return NULL;
}
aspath_put(snmp_stream, as, 0); /* use 16 bit for now here */
*varlen = stream_get_endp(snmp_stream);
return stream_pnt(snmp_stream);
}