]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_attr.c
Merge pull request #4004 from chiragshah6/evpn_dev2
[mirror_frr.git] / bgpd / bgp_attr.c
1 /* BGP attributes management routines.
2 * Copyright (C) 1996, 97, 98, 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "linklist.h"
24 #include "prefix.h"
25 #include "memory.h"
26 #include "vector.h"
27 #include "stream.h"
28 #include "log.h"
29 #include "hash.h"
30 #include "jhash.h"
31 #include "queue.h"
32 #include "table.h"
33 #include "filter.h"
34 #include "command.h"
35
36 #include "bgpd/bgpd.h"
37 #include "bgpd/bgp_attr.h"
38 #include "bgpd/bgp_route.h"
39 #include "bgpd/bgp_aspath.h"
40 #include "bgpd/bgp_community.h"
41 #include "bgpd/bgp_debug.h"
42 #include "bgpd/bgp_errors.h"
43 #include "bgpd/bgp_label.h"
44 #include "bgpd/bgp_packet.h"
45 #include "bgpd/bgp_ecommunity.h"
46 #include "bgpd/bgp_lcommunity.h"
47 #include "bgpd/bgp_updgrp.h"
48 #include "bgpd/bgp_encap_types.h"
49 #if ENABLE_BGP_VNC
50 #include "bgpd/rfapi/bgp_rfapi_cfg.h"
51 #include "bgp_encap_types.h"
52 #include "bgp_vnc_types.h"
53 #endif
54 #include "bgp_encap_types.h"
55 #include "bgp_evpn.h"
56 #include "bgp_flowspec_private.h"
57 #include "bgp_mac.h"
58
59 /* Attribute strings for logging. */
60 static const struct message attr_str[] = {
61 {BGP_ATTR_ORIGIN, "ORIGIN"},
62 {BGP_ATTR_AS_PATH, "AS_PATH"},
63 {BGP_ATTR_NEXT_HOP, "NEXT_HOP"},
64 {BGP_ATTR_MULTI_EXIT_DISC, "MULTI_EXIT_DISC"},
65 {BGP_ATTR_LOCAL_PREF, "LOCAL_PREF"},
66 {BGP_ATTR_ATOMIC_AGGREGATE, "ATOMIC_AGGREGATE"},
67 {BGP_ATTR_AGGREGATOR, "AGGREGATOR"},
68 {BGP_ATTR_COMMUNITIES, "COMMUNITY"},
69 {BGP_ATTR_ORIGINATOR_ID, "ORIGINATOR_ID"},
70 {BGP_ATTR_CLUSTER_LIST, "CLUSTER_LIST"},
71 {BGP_ATTR_DPA, "DPA"},
72 {BGP_ATTR_ADVERTISER, "ADVERTISER"},
73 {BGP_ATTR_RCID_PATH, "RCID_PATH"},
74 {BGP_ATTR_MP_REACH_NLRI, "MP_REACH_NLRI"},
75 {BGP_ATTR_MP_UNREACH_NLRI, "MP_UNREACH_NLRI"},
76 {BGP_ATTR_EXT_COMMUNITIES, "EXT_COMMUNITIES"},
77 {BGP_ATTR_AS4_PATH, "AS4_PATH"},
78 {BGP_ATTR_AS4_AGGREGATOR, "AS4_AGGREGATOR"},
79 {BGP_ATTR_AS_PATHLIMIT, "AS_PATHLIMIT"},
80 {BGP_ATTR_PMSI_TUNNEL, "PMSI_TUNNEL_ATTRIBUTE"},
81 {BGP_ATTR_ENCAP, "ENCAP"},
82 #if ENABLE_BGP_VNC_ATTR
83 {BGP_ATTR_VNC, "VNC"},
84 #endif
85 {BGP_ATTR_LARGE_COMMUNITIES, "LARGE_COMMUNITY"},
86 {BGP_ATTR_PREFIX_SID, "PREFIX_SID"},
87 {0}};
88
89 static const struct message attr_flag_str[] = {
90 {BGP_ATTR_FLAG_OPTIONAL, "Optional"},
91 {BGP_ATTR_FLAG_TRANS, "Transitive"},
92 {BGP_ATTR_FLAG_PARTIAL, "Partial"},
93 /* bgp_attr_flags_diagnose() relies on this bit being last in
94 this list */
95 {BGP_ATTR_FLAG_EXTLEN, "Extended Length"},
96 {0}};
97
98 static struct hash *cluster_hash;
99
100 static void *cluster_hash_alloc(void *p)
101 {
102 const struct cluster_list *val = (const struct cluster_list *)p;
103 struct cluster_list *cluster;
104
105 cluster = XMALLOC(MTYPE_CLUSTER, sizeof(struct cluster_list));
106 cluster->length = val->length;
107
108 if (cluster->length) {
109 cluster->list = XMALLOC(MTYPE_CLUSTER_VAL, val->length);
110 memcpy(cluster->list, val->list, val->length);
111 } else
112 cluster->list = NULL;
113
114 cluster->refcnt = 0;
115
116 return cluster;
117 }
118
119 /* Cluster list related functions. */
120 static struct cluster_list *cluster_parse(struct in_addr *pnt, int length)
121 {
122 struct cluster_list tmp;
123 struct cluster_list *cluster;
124
125 tmp.length = length;
126 tmp.list = pnt;
127
128 cluster = hash_get(cluster_hash, &tmp, cluster_hash_alloc);
129 cluster->refcnt++;
130 return cluster;
131 }
132
133 int cluster_loop_check(struct cluster_list *cluster, struct in_addr originator)
134 {
135 int i;
136
137 for (i = 0; i < cluster->length / 4; i++)
138 if (cluster->list[i].s_addr == originator.s_addr)
139 return 1;
140 return 0;
141 }
142
143 static unsigned int cluster_hash_key_make(void *p)
144 {
145 const struct cluster_list *cluster = p;
146
147 return jhash(cluster->list, cluster->length, 0);
148 }
149
150 static bool cluster_hash_cmp(const void *p1, const void *p2)
151 {
152 const struct cluster_list *cluster1 = p1;
153 const struct cluster_list *cluster2 = p2;
154
155 return (cluster1->length == cluster2->length
156 && memcmp(cluster1->list, cluster2->list, cluster1->length)
157 == 0);
158 }
159
160 static void cluster_free(struct cluster_list *cluster)
161 {
162 XFREE(MTYPE_CLUSTER_VAL, cluster->list);
163 XFREE(MTYPE_CLUSTER, cluster);
164 }
165
166 static struct cluster_list *cluster_intern(struct cluster_list *cluster)
167 {
168 struct cluster_list *find;
169
170 find = hash_get(cluster_hash, cluster, cluster_hash_alloc);
171 find->refcnt++;
172
173 return find;
174 }
175
176 void cluster_unintern(struct cluster_list *cluster)
177 {
178 if (cluster->refcnt)
179 cluster->refcnt--;
180
181 if (cluster->refcnt == 0) {
182 hash_release(cluster_hash, cluster);
183 cluster_free(cluster);
184 }
185 }
186
187 static void cluster_init(void)
188 {
189 cluster_hash = hash_create(cluster_hash_key_make, cluster_hash_cmp,
190 "BGP Cluster");
191 }
192
193 static void cluster_finish(void)
194 {
195 hash_clean(cluster_hash, (void (*)(void *))cluster_free);
196 hash_free(cluster_hash);
197 cluster_hash = NULL;
198 }
199
200 static struct hash *encap_hash = NULL;
201 #if ENABLE_BGP_VNC
202 static struct hash *vnc_hash = NULL;
203 #endif
204
205 struct bgp_attr_encap_subtlv *encap_tlv_dup(struct bgp_attr_encap_subtlv *orig)
206 {
207 struct bgp_attr_encap_subtlv *new;
208 struct bgp_attr_encap_subtlv *tail;
209 struct bgp_attr_encap_subtlv *p;
210
211 for (p = orig, tail = new = NULL; p; p = p->next) {
212 int size = sizeof(struct bgp_attr_encap_subtlv) + p->length;
213 if (tail) {
214 tail->next = XCALLOC(MTYPE_ENCAP_TLV, size);
215 tail = tail->next;
216 } else {
217 tail = new = XCALLOC(MTYPE_ENCAP_TLV, size);
218 }
219 assert(tail);
220 memcpy(tail, p, size);
221 tail->next = NULL;
222 }
223
224 return new;
225 }
226
227 static void encap_free(struct bgp_attr_encap_subtlv *p)
228 {
229 struct bgp_attr_encap_subtlv *next;
230 while (p) {
231 next = p->next;
232 p->next = NULL;
233 XFREE(MTYPE_ENCAP_TLV, p);
234 p = next;
235 }
236 }
237
238 void bgp_attr_flush_encap(struct attr *attr)
239 {
240 if (!attr)
241 return;
242
243 if (attr->encap_subtlvs) {
244 encap_free(attr->encap_subtlvs);
245 attr->encap_subtlvs = NULL;
246 }
247 #if ENABLE_BGP_VNC
248 if (attr->vnc_subtlvs) {
249 encap_free(attr->vnc_subtlvs);
250 attr->vnc_subtlvs = NULL;
251 }
252 #endif
253 }
254
255 /*
256 * Compare encap sub-tlv chains
257 *
258 * 1 = equivalent
259 * 0 = not equivalent
260 *
261 * This algorithm could be made faster if needed
262 */
263 static int encap_same(const struct bgp_attr_encap_subtlv *h1,
264 const struct bgp_attr_encap_subtlv *h2)
265 {
266 const struct bgp_attr_encap_subtlv *p;
267 const struct bgp_attr_encap_subtlv *q;
268
269 if (h1 == h2)
270 return 1;
271 if (h1 == NULL || h2 == NULL)
272 return 0;
273
274 for (p = h1; p; p = p->next) {
275 for (q = h2; q; q = q->next) {
276 if ((p->type == q->type) && (p->length == q->length)
277 && !memcmp(p->value, q->value, p->length)) {
278
279 break;
280 }
281 }
282 if (!q)
283 return 0;
284 }
285
286 for (p = h2; p; p = p->next) {
287 for (q = h1; q; q = q->next) {
288 if ((p->type == q->type) && (p->length == q->length)
289 && !memcmp(p->value, q->value, p->length)) {
290
291 break;
292 }
293 }
294 if (!q)
295 return 0;
296 }
297
298 return 1;
299 }
300
301 static void *encap_hash_alloc(void *p)
302 {
303 /* Encap structure is already allocated. */
304 return p;
305 }
306
307 typedef enum {
308 ENCAP_SUBTLV_TYPE,
309 #if ENABLE_BGP_VNC
310 VNC_SUBTLV_TYPE
311 #endif
312 } encap_subtlv_type;
313
314 static struct bgp_attr_encap_subtlv *
315 encap_intern(struct bgp_attr_encap_subtlv *encap, encap_subtlv_type type)
316 {
317 struct bgp_attr_encap_subtlv *find;
318 struct hash *hash = encap_hash;
319 #if ENABLE_BGP_VNC
320 if (type == VNC_SUBTLV_TYPE)
321 hash = vnc_hash;
322 #endif
323
324 find = hash_get(hash, encap, encap_hash_alloc);
325 if (find != encap)
326 encap_free(encap);
327 find->refcnt++;
328
329 return find;
330 }
331
332 static void encap_unintern(struct bgp_attr_encap_subtlv **encapp,
333 encap_subtlv_type type)
334 {
335 struct bgp_attr_encap_subtlv *encap = *encapp;
336 if (encap->refcnt)
337 encap->refcnt--;
338
339 if (encap->refcnt == 0) {
340 struct hash *hash = encap_hash;
341 #if ENABLE_BGP_VNC
342 if (type == VNC_SUBTLV_TYPE)
343 hash = vnc_hash;
344 #endif
345 hash_release(hash, encap);
346 encap_free(encap);
347 *encapp = NULL;
348 }
349 }
350
351 static unsigned int encap_hash_key_make(void *p)
352 {
353 const struct bgp_attr_encap_subtlv *encap = p;
354
355 return jhash(encap->value, encap->length, 0);
356 }
357
358 static bool encap_hash_cmp(const void *p1, const void *p2)
359 {
360 return encap_same((const struct bgp_attr_encap_subtlv *)p1,
361 (const struct bgp_attr_encap_subtlv *)p2);
362 }
363
364 static void encap_init(void)
365 {
366 encap_hash = hash_create(encap_hash_key_make, encap_hash_cmp,
367 "BGP Encap Hash");
368 #if ENABLE_BGP_VNC
369 vnc_hash = hash_create(encap_hash_key_make, encap_hash_cmp,
370 "BGP VNC Hash");
371 #endif
372 }
373
374 static void encap_finish(void)
375 {
376 hash_clean(encap_hash, (void (*)(void *))encap_free);
377 hash_free(encap_hash);
378 encap_hash = NULL;
379 #if ENABLE_BGP_VNC
380 hash_clean(vnc_hash, (void (*)(void *))encap_free);
381 hash_free(vnc_hash);
382 vnc_hash = NULL;
383 #endif
384 }
385
386 static bool overlay_index_same(const struct attr *a1, const struct attr *a2)
387 {
388 if (!a1 && a2)
389 return false;
390 if (!a2 && a1)
391 return false;
392 if (!a1 && !a2)
393 return true;
394 return !memcmp(&(a1->evpn_overlay), &(a2->evpn_overlay),
395 sizeof(struct bgp_route_evpn));
396 }
397
398 /* Unknown transit attribute. */
399 static struct hash *transit_hash;
400
401 static void transit_free(struct transit *transit)
402 {
403 XFREE(MTYPE_TRANSIT_VAL, transit->val);
404 XFREE(MTYPE_TRANSIT, transit);
405 }
406
407 static void *transit_hash_alloc(void *p)
408 {
409 /* Transit structure is already allocated. */
410 return p;
411 }
412
413 static struct transit *transit_intern(struct transit *transit)
414 {
415 struct transit *find;
416
417 find = hash_get(transit_hash, transit, transit_hash_alloc);
418 if (find != transit)
419 transit_free(transit);
420 find->refcnt++;
421
422 return find;
423 }
424
425 void transit_unintern(struct transit *transit)
426 {
427 if (transit->refcnt)
428 transit->refcnt--;
429
430 if (transit->refcnt == 0) {
431 hash_release(transit_hash, transit);
432 transit_free(transit);
433 }
434 }
435
436 static unsigned int transit_hash_key_make(void *p)
437 {
438 const struct transit *transit = p;
439
440 return jhash(transit->val, transit->length, 0);
441 }
442
443 static bool transit_hash_cmp(const void *p1, const void *p2)
444 {
445 const struct transit *transit1 = p1;
446 const struct transit *transit2 = p2;
447
448 return (transit1->length == transit2->length
449 && memcmp(transit1->val, transit2->val, transit1->length) == 0);
450 }
451
452 static void transit_init(void)
453 {
454 transit_hash = hash_create(transit_hash_key_make, transit_hash_cmp,
455 "BGP Transit Hash");
456 }
457
458 static void transit_finish(void)
459 {
460 hash_clean(transit_hash, (void (*)(void *))transit_free);
461 hash_free(transit_hash);
462 transit_hash = NULL;
463 }
464
465 /* Attribute hash routines. */
466 static struct hash *attrhash;
467
468 /* Shallow copy of an attribute
469 * Though, not so shallow that it doesn't copy the contents
470 * of the attr_extra pointed to by 'extra'
471 */
472 void bgp_attr_dup(struct attr *new, struct attr *orig)
473 {
474 *new = *orig;
475 }
476
477 unsigned long int attr_count(void)
478 {
479 return attrhash->count;
480 }
481
482 unsigned long int attr_unknown_count(void)
483 {
484 return transit_hash->count;
485 }
486
487 unsigned int attrhash_key_make(void *p)
488 {
489 const struct attr *attr = (struct attr *)p;
490 uint32_t key = 0;
491 #define MIX(val) key = jhash_1word(val, key)
492 #define MIX3(a, b, c) key = jhash_3words((a), (b), (c), key)
493
494 MIX3(attr->origin, attr->nexthop.s_addr, attr->med);
495 MIX3(attr->local_pref, attr->aggregator_as,
496 attr->aggregator_addr.s_addr);
497 MIX3(attr->weight, attr->mp_nexthop_global_in.s_addr,
498 attr->originator_id.s_addr);
499 MIX3(attr->tag, attr->label, attr->label_index);
500
501 if (attr->aspath)
502 MIX(aspath_key_make(attr->aspath));
503 if (attr->community)
504 MIX(community_hash_make(attr->community));
505
506 if (attr->lcommunity)
507 MIX(lcommunity_hash_make(attr->lcommunity));
508 if (attr->ecommunity)
509 MIX(ecommunity_hash_make(attr->ecommunity));
510 if (attr->cluster)
511 MIX(cluster_hash_key_make(attr->cluster));
512 if (attr->transit)
513 MIX(transit_hash_key_make(attr->transit));
514 if (attr->encap_subtlvs)
515 MIX(encap_hash_key_make(attr->encap_subtlvs));
516 #if ENABLE_BGP_VNC
517 if (attr->vnc_subtlvs)
518 MIX(encap_hash_key_make(attr->vnc_subtlvs));
519 #endif
520 MIX(attr->mp_nexthop_len);
521 key = jhash(attr->mp_nexthop_global.s6_addr, IPV6_MAX_BYTELEN, key);
522 key = jhash(attr->mp_nexthop_local.s6_addr, IPV6_MAX_BYTELEN, key);
523 MIX(attr->nh_ifindex);
524 MIX(attr->nh_lla_ifindex);
525
526 return key;
527 }
528
529 bool attrhash_cmp(const void *p1, const void *p2)
530 {
531 const struct attr *attr1 = p1;
532 const struct attr *attr2 = p2;
533
534 if (attr1->flag == attr2->flag && attr1->origin == attr2->origin
535 && attr1->nexthop.s_addr == attr2->nexthop.s_addr
536 && attr1->aspath == attr2->aspath
537 && attr1->community == attr2->community && attr1->med == attr2->med
538 && attr1->local_pref == attr2->local_pref
539 && attr1->rmap_change_flags == attr2->rmap_change_flags) {
540 if (attr1->aggregator_as == attr2->aggregator_as
541 && attr1->aggregator_addr.s_addr
542 == attr2->aggregator_addr.s_addr
543 && attr1->weight == attr2->weight
544 && attr1->tag == attr2->tag
545 && attr1->label_index == attr2->label_index
546 && attr1->mp_nexthop_len == attr2->mp_nexthop_len
547 && attr1->ecommunity == attr2->ecommunity
548 && attr1->lcommunity == attr2->lcommunity
549 && attr1->cluster == attr2->cluster
550 && attr1->transit == attr2->transit
551 && (attr1->encap_tunneltype == attr2->encap_tunneltype)
552 && encap_same(attr1->encap_subtlvs, attr2->encap_subtlvs)
553 #if ENABLE_BGP_VNC
554 && encap_same(attr1->vnc_subtlvs, attr2->vnc_subtlvs)
555 #endif
556 && IPV6_ADDR_SAME(&attr1->mp_nexthop_global,
557 &attr2->mp_nexthop_global)
558 && IPV6_ADDR_SAME(&attr1->mp_nexthop_local,
559 &attr2->mp_nexthop_local)
560 && IPV4_ADDR_SAME(&attr1->mp_nexthop_global_in,
561 &attr2->mp_nexthop_global_in)
562 && IPV4_ADDR_SAME(&attr1->originator_id,
563 &attr2->originator_id)
564 && overlay_index_same(attr1, attr2)
565 && attr1->nh_ifindex == attr2->nh_ifindex
566 && attr1->nh_lla_ifindex == attr2->nh_lla_ifindex)
567 return true;
568 }
569
570 return false;
571 }
572
573 static void attrhash_init(void)
574 {
575 attrhash =
576 hash_create(attrhash_key_make, attrhash_cmp, "BGP Attributes");
577 }
578
579 /*
580 * special for hash_clean below
581 */
582 static void attr_vfree(void *attr)
583 {
584 XFREE(MTYPE_ATTR, attr);
585 }
586
587 static void attrhash_finish(void)
588 {
589 hash_clean(attrhash, attr_vfree);
590 hash_free(attrhash);
591 attrhash = NULL;
592 }
593
594 static void attr_show_all_iterator(struct hash_bucket *bucket, struct vty *vty)
595 {
596 struct attr *attr = bucket->data;
597
598 vty_out(vty, "attr[%ld] nexthop %s\n", attr->refcnt,
599 inet_ntoa(attr->nexthop));
600 vty_out(vty, "\tflags: %" PRIu64 " med: %u local_pref: %u origin: %u weight: %u label: %u\n",
601 attr->flag, attr->med, attr->local_pref, attr->origin,
602 attr->weight, attr->label);
603 }
604
605 void attr_show_all(struct vty *vty)
606 {
607 hash_iterate(attrhash, (void (*)(struct hash_bucket *,
608 void *))attr_show_all_iterator,
609 vty);
610 }
611
612 static void *bgp_attr_hash_alloc(void *p)
613 {
614 struct attr *val = (struct attr *)p;
615 struct attr *attr;
616
617 attr = XMALLOC(MTYPE_ATTR, sizeof(struct attr));
618 *attr = *val;
619 if (val->encap_subtlvs) {
620 val->encap_subtlvs = NULL;
621 }
622 #if ENABLE_BGP_VNC
623 if (val->vnc_subtlvs) {
624 val->vnc_subtlvs = NULL;
625 }
626 #endif
627 attr->refcnt = 0;
628 return attr;
629 }
630
631 /* Internet argument attribute. */
632 struct attr *bgp_attr_intern(struct attr *attr)
633 {
634 struct attr *find;
635
636 /* Intern referenced strucutre. */
637 if (attr->aspath) {
638 if (!attr->aspath->refcnt)
639 attr->aspath = aspath_intern(attr->aspath);
640 else
641 attr->aspath->refcnt++;
642 }
643 if (attr->community) {
644 if (!attr->community->refcnt)
645 attr->community = community_intern(attr->community);
646 else
647 attr->community->refcnt++;
648 }
649
650 if (attr->ecommunity) {
651 if (!attr->ecommunity->refcnt)
652 attr->ecommunity = ecommunity_intern(attr->ecommunity);
653 else
654 attr->ecommunity->refcnt++;
655 }
656 if (attr->lcommunity) {
657 if (!attr->lcommunity->refcnt)
658 attr->lcommunity = lcommunity_intern(attr->lcommunity);
659 else
660 attr->lcommunity->refcnt++;
661 }
662 if (attr->cluster) {
663 if (!attr->cluster->refcnt)
664 attr->cluster = cluster_intern(attr->cluster);
665 else
666 attr->cluster->refcnt++;
667 }
668 if (attr->transit) {
669 if (!attr->transit->refcnt)
670 attr->transit = transit_intern(attr->transit);
671 else
672 attr->transit->refcnt++;
673 }
674 if (attr->encap_subtlvs) {
675 if (!attr->encap_subtlvs->refcnt)
676 attr->encap_subtlvs = encap_intern(attr->encap_subtlvs,
677 ENCAP_SUBTLV_TYPE);
678 else
679 attr->encap_subtlvs->refcnt++;
680 }
681 #if ENABLE_BGP_VNC
682 if (attr->vnc_subtlvs) {
683 if (!attr->vnc_subtlvs->refcnt)
684 attr->vnc_subtlvs = encap_intern(attr->vnc_subtlvs,
685 VNC_SUBTLV_TYPE);
686 else
687 attr->vnc_subtlvs->refcnt++;
688 }
689 #endif
690
691 /* At this point, attr only contains intern'd pointers. that means
692 * if we find it in attrhash, it has all the same pointers and we
693 * correctly updated the refcounts on these.
694 * If we don't find it, we need to allocate a one because in all
695 * cases this returns a new reference to a hashed attr, but the input
696 * wasn't on hash. */
697 find = (struct attr *)hash_get(attrhash, attr, bgp_attr_hash_alloc);
698 find->refcnt++;
699
700 return find;
701 }
702
703 /* Make network statement's attribute. */
704 struct attr *bgp_attr_default_set(struct attr *attr, uint8_t origin)
705 {
706 memset(attr, 0, sizeof(struct attr));
707
708 attr->origin = origin;
709 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ORIGIN);
710 attr->aspath = aspath_empty();
711 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AS_PATH);
712 attr->weight = BGP_ATTR_DEFAULT_WEIGHT;
713 attr->tag = 0;
714 attr->label_index = BGP_INVALID_LABEL_INDEX;
715 attr->label = MPLS_INVALID_LABEL;
716 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP);
717 attr->mp_nexthop_len = IPV6_MAX_BYTELEN;
718
719 return attr;
720 }
721
722 /* Create the attributes for an aggregate */
723 struct attr *bgp_attr_aggregate_intern(struct bgp *bgp, uint8_t origin,
724 struct aspath *aspath,
725 struct community *community,
726 struct ecommunity *ecommunity,
727 struct lcommunity *lcommunity,
728 int as_set, uint8_t atomic_aggregate)
729 {
730 struct attr attr;
731 struct attr *new;
732
733 memset(&attr, 0, sizeof(struct attr));
734
735 /* Origin attribute. */
736 attr.origin = origin;
737 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_ORIGIN);
738
739 /* AS path attribute. */
740 if (aspath)
741 attr.aspath = aspath_intern(aspath);
742 else
743 attr.aspath = aspath_empty();
744 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_AS_PATH);
745
746 /* Next hop attribute. */
747 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP);
748
749 if (community) {
750 uint32_t gshut = COMMUNITY_GSHUT;
751
752 /* If we are not shutting down ourselves and we are
753 * aggregating a route that contains the GSHUT community we
754 * need to remove that community when creating the aggregate */
755 if (!bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN)
756 && community_include(community, gshut)) {
757 community_del_val(community, &gshut);
758 }
759
760 attr.community = community;
761 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
762 }
763
764 if (ecommunity) {
765 attr.ecommunity = ecommunity;
766 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
767 }
768
769 if (lcommunity) {
770 attr.lcommunity = lcommunity;
771 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES);
772 }
773
774 if (bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN)) {
775 bgp_attr_add_gshut_community(&attr);
776 }
777
778 attr.label_index = BGP_INVALID_LABEL_INDEX;
779 attr.label = MPLS_INVALID_LABEL;
780 attr.weight = BGP_ATTR_DEFAULT_WEIGHT;
781 attr.mp_nexthop_len = IPV6_MAX_BYTELEN;
782 if (!as_set || atomic_aggregate)
783 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE);
784 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR);
785 if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION))
786 attr.aggregator_as = bgp->confed_id;
787 else
788 attr.aggregator_as = bgp->as;
789 attr.aggregator_addr = bgp->router_id;
790 attr.label_index = BGP_INVALID_LABEL_INDEX;
791 attr.label = MPLS_INVALID_LABEL;
792
793 new = bgp_attr_intern(&attr);
794
795 aspath_unintern(&new->aspath);
796 return new;
797 }
798
799 /* Unintern just the sub-components of the attr, but not the attr */
800 void bgp_attr_unintern_sub(struct attr *attr)
801 {
802 /* aspath refcount shoud be decrement. */
803 if (attr->aspath)
804 aspath_unintern(&attr->aspath);
805 UNSET_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_AS_PATH));
806
807 if (attr->community)
808 community_unintern(&attr->community);
809 UNSET_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES));
810
811 if (attr->ecommunity)
812 ecommunity_unintern(&attr->ecommunity);
813 UNSET_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES));
814
815 if (attr->lcommunity)
816 lcommunity_unintern(&attr->lcommunity);
817 UNSET_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES));
818
819 if (attr->cluster)
820 cluster_unintern(attr->cluster);
821 UNSET_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_CLUSTER_LIST));
822
823 if (attr->transit)
824 transit_unintern(attr->transit);
825
826 if (attr->encap_subtlvs)
827 encap_unintern(&attr->encap_subtlvs, ENCAP_SUBTLV_TYPE);
828
829 #if ENABLE_BGP_VNC
830 if (attr->vnc_subtlvs)
831 encap_unintern(&attr->vnc_subtlvs, VNC_SUBTLV_TYPE);
832 #endif
833 }
834
835 /*
836 * We have some show commands that let you experimentally
837 * apply a route-map. When we apply the route-map
838 * we are reseting values but not saving them for
839 * posterity via intern'ing( because route-maps don't
840 * do that) but at this point in time we need
841 * to compare the new attr to the old and if the
842 * routemap has changed it we need to, as Snoop Dog says,
843 * Drop it like it's hot
844 */
845 void bgp_attr_undup(struct attr *new, struct attr *old)
846 {
847 if (new->aspath != old->aspath)
848 aspath_free(new->aspath);
849
850 if (new->community != old->community)
851 community_free(&new->community);
852
853 if (new->ecommunity != old->ecommunity)
854 ecommunity_free(&new->ecommunity);
855
856 if (new->lcommunity != old->lcommunity)
857 lcommunity_free(&new->lcommunity);
858 }
859
860 /* Free bgp attribute and aspath. */
861 void bgp_attr_unintern(struct attr **pattr)
862 {
863 struct attr *attr = *pattr;
864 struct attr *ret;
865 struct attr tmp;
866
867 /* Decrement attribute reference. */
868 attr->refcnt--;
869
870 tmp = *attr;
871
872 /* If reference becomes zero then free attribute object. */
873 if (attr->refcnt == 0) {
874 ret = hash_release(attrhash, attr);
875 assert(ret != NULL);
876 XFREE(MTYPE_ATTR, attr);
877 *pattr = NULL;
878 }
879
880 bgp_attr_unintern_sub(&tmp);
881 }
882
883 void bgp_attr_flush(struct attr *attr)
884 {
885 if (attr->aspath && !attr->aspath->refcnt) {
886 aspath_free(attr->aspath);
887 attr->aspath = NULL;
888 }
889 if (attr->community && !attr->community->refcnt)
890 community_free(&attr->community);
891 if (attr->ecommunity && !attr->ecommunity->refcnt)
892 ecommunity_free(&attr->ecommunity);
893 if (attr->lcommunity && !attr->lcommunity->refcnt)
894 lcommunity_free(&attr->lcommunity);
895 if (attr->cluster && !attr->cluster->refcnt) {
896 cluster_free(attr->cluster);
897 attr->cluster = NULL;
898 }
899 if (attr->transit && !attr->transit->refcnt) {
900 transit_free(attr->transit);
901 attr->transit = NULL;
902 }
903 if (attr->encap_subtlvs && !attr->encap_subtlvs->refcnt) {
904 encap_free(attr->encap_subtlvs);
905 attr->encap_subtlvs = NULL;
906 }
907 #if ENABLE_BGP_VNC
908 if (attr->vnc_subtlvs && !attr->vnc_subtlvs->refcnt) {
909 encap_free(attr->vnc_subtlvs);
910 attr->vnc_subtlvs = NULL;
911 }
912 #endif
913 }
914
915 /* Implement draft-scudder-idr-optional-transitive behaviour and
916 * avoid resetting sessions for malformed attributes which are
917 * are partial/optional and hence where the error likely was not
918 * introduced by the sending neighbour.
919 */
920 static bgp_attr_parse_ret_t
921 bgp_attr_malformed(struct bgp_attr_parser_args *args, uint8_t subcode,
922 bgp_size_t length)
923 {
924 struct peer *const peer = args->peer;
925 const uint8_t flags = args->flags;
926 /* startp and length must be special-cased, as whether or not to
927 * send the attribute data with the NOTIFY depends on the error,
928 * the caller therefore signals this with the seperate length argument
929 */
930 uint8_t *notify_datap = (length > 0 ? args->startp : NULL);
931
932 /* Only relax error handling for eBGP peers */
933 if (peer->sort != BGP_PEER_EBGP) {
934 bgp_notify_send_with_data(peer, BGP_NOTIFY_UPDATE_ERR, subcode,
935 notify_datap, length);
936 return BGP_ATTR_PARSE_ERROR;
937 }
938
939 /* Adjust the stream getp to the end of the attribute, in case we can
940 * still proceed but the caller hasn't read all the attribute.
941 */
942 stream_set_getp(BGP_INPUT(peer),
943 (args->startp - STREAM_DATA(BGP_INPUT(peer)))
944 + args->total);
945
946 switch (args->type) {
947 /* where an attribute is relatively inconsequential, e.g. it does not
948 * affect route selection, and can be safely ignored, then any such
949 * attributes which are malformed should just be ignored and the route
950 * processed as normal.
951 */
952 case BGP_ATTR_AS4_AGGREGATOR:
953 case BGP_ATTR_AGGREGATOR:
954 case BGP_ATTR_ATOMIC_AGGREGATE:
955 return BGP_ATTR_PARSE_PROCEED;
956
957 /* Core attributes, particularly ones which may influence route
958 * selection, should always cause session resets
959 */
960 case BGP_ATTR_ORIGIN:
961 case BGP_ATTR_AS_PATH:
962 case BGP_ATTR_NEXT_HOP:
963 case BGP_ATTR_MULTI_EXIT_DISC:
964 case BGP_ATTR_LOCAL_PREF:
965 case BGP_ATTR_COMMUNITIES:
966 case BGP_ATTR_ORIGINATOR_ID:
967 case BGP_ATTR_CLUSTER_LIST:
968 case BGP_ATTR_MP_REACH_NLRI:
969 case BGP_ATTR_MP_UNREACH_NLRI:
970 case BGP_ATTR_EXT_COMMUNITIES:
971 bgp_notify_send_with_data(peer, BGP_NOTIFY_UPDATE_ERR, subcode,
972 notify_datap, length);
973 return BGP_ATTR_PARSE_ERROR;
974 }
975
976 /* Partial optional attributes that are malformed should not cause
977 * the whole session to be reset. Instead treat it as a withdrawal
978 * of the routes, if possible.
979 */
980 if (CHECK_FLAG(flags, BGP_ATTR_FLAG_TRANS)
981 && CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)
982 && CHECK_FLAG(flags, BGP_ATTR_FLAG_PARTIAL))
983 return BGP_ATTR_PARSE_WITHDRAW;
984
985 /* default to reset */
986 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
987 }
988
989 /* Find out what is wrong with the path attribute flag bits and log the error.
990 "Flag bits" here stand for Optional, Transitive and Partial, but not for
991 Extended Length. Checking O/T/P bits at once implies, that the attribute
992 being diagnosed is defined by RFC as either a "well-known" or an "optional,
993 non-transitive" attribute. */
994 static void
995 bgp_attr_flags_diagnose(struct bgp_attr_parser_args *args,
996 uint8_t desired_flags /* how RFC says it must be */
997 )
998 {
999 uint8_t seen = 0, i;
1000 uint8_t real_flags = args->flags;
1001 const uint8_t attr_code = args->type;
1002
1003 desired_flags &= ~BGP_ATTR_FLAG_EXTLEN;
1004 real_flags &= ~BGP_ATTR_FLAG_EXTLEN;
1005 for (i = 0; i <= 2; i++) /* O,T,P, but not E */
1006 if (CHECK_FLAG(desired_flags, attr_flag_str[i].key)
1007 != CHECK_FLAG(real_flags, attr_flag_str[i].key)) {
1008 flog_err(EC_BGP_ATTR_FLAG,
1009 "%s attribute must%s be flagged as \"%s\"",
1010 lookup_msg(attr_str, attr_code, NULL),
1011 CHECK_FLAG(desired_flags, attr_flag_str[i].key)
1012 ? ""
1013 : " not",
1014 attr_flag_str[i].str);
1015 seen = 1;
1016 }
1017 if (!seen) {
1018 zlog_debug(
1019 "Strange, %s called for attr %s, but no problem found with flags"
1020 " (real flags 0x%x, desired 0x%x)",
1021 __func__, lookup_msg(attr_str, attr_code, NULL),
1022 real_flags, desired_flags);
1023 }
1024 }
1025
1026 /* Required flags for attributes. EXTLEN will be masked off when testing,
1027 * as will PARTIAL for optional+transitive attributes.
1028 */
1029 const uint8_t attr_flags_values[] = {
1030 [BGP_ATTR_ORIGIN] = BGP_ATTR_FLAG_TRANS,
1031 [BGP_ATTR_AS_PATH] = BGP_ATTR_FLAG_TRANS,
1032 [BGP_ATTR_NEXT_HOP] = BGP_ATTR_FLAG_TRANS,
1033 [BGP_ATTR_MULTI_EXIT_DISC] = BGP_ATTR_FLAG_OPTIONAL,
1034 [BGP_ATTR_LOCAL_PREF] = BGP_ATTR_FLAG_TRANS,
1035 [BGP_ATTR_ATOMIC_AGGREGATE] = BGP_ATTR_FLAG_TRANS,
1036 [BGP_ATTR_AGGREGATOR] = BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL,
1037 [BGP_ATTR_COMMUNITIES] = BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL,
1038 [BGP_ATTR_ORIGINATOR_ID] = BGP_ATTR_FLAG_OPTIONAL,
1039 [BGP_ATTR_CLUSTER_LIST] = BGP_ATTR_FLAG_OPTIONAL,
1040 [BGP_ATTR_MP_REACH_NLRI] = BGP_ATTR_FLAG_OPTIONAL,
1041 [BGP_ATTR_MP_UNREACH_NLRI] = BGP_ATTR_FLAG_OPTIONAL,
1042 [BGP_ATTR_EXT_COMMUNITIES] =
1043 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1044 [BGP_ATTR_AS4_PATH] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1045 [BGP_ATTR_AS4_AGGREGATOR] =
1046 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1047 [BGP_ATTR_PMSI_TUNNEL] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1048 [BGP_ATTR_LARGE_COMMUNITIES] =
1049 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1050 [BGP_ATTR_PREFIX_SID] = BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS,
1051 };
1052 static const size_t attr_flags_values_max = array_size(attr_flags_values) - 1;
1053
1054 static int bgp_attr_flag_invalid(struct bgp_attr_parser_args *args)
1055 {
1056 uint8_t mask = BGP_ATTR_FLAG_EXTLEN;
1057 const uint8_t flags = args->flags;
1058 const uint8_t attr_code = args->type;
1059
1060 /* there may be attributes we don't know about */
1061 if (attr_code > attr_flags_values_max)
1062 return 0;
1063 if (attr_flags_values[attr_code] == 0)
1064 return 0;
1065
1066 /* RFC4271, "For well-known attributes, the Transitive bit MUST be set
1067 * to
1068 * 1."
1069 */
1070 if (!CHECK_FLAG(BGP_ATTR_FLAG_OPTIONAL, flags)
1071 && !CHECK_FLAG(BGP_ATTR_FLAG_TRANS, flags)) {
1072 flog_err(
1073 EC_BGP_ATTR_FLAG,
1074 "%s well-known attributes must have transitive flag set (%x)",
1075 lookup_msg(attr_str, attr_code, NULL), flags);
1076 return 1;
1077 }
1078
1079 /* "For well-known attributes and for optional non-transitive
1080 * attributes,
1081 * the Partial bit MUST be set to 0."
1082 */
1083 if (CHECK_FLAG(flags, BGP_ATTR_FLAG_PARTIAL)) {
1084 if (!CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)) {
1085 flog_err(EC_BGP_ATTR_FLAG,
1086 "%s well-known attribute "
1087 "must NOT have the partial flag set (%x)",
1088 lookup_msg(attr_str, attr_code, NULL), flags);
1089 return 1;
1090 }
1091 if (CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)
1092 && !CHECK_FLAG(flags, BGP_ATTR_FLAG_TRANS)) {
1093 flog_err(EC_BGP_ATTR_FLAG,
1094 "%s optional + transitive attribute "
1095 "must NOT have the partial flag set (%x)",
1096 lookup_msg(attr_str, attr_code, NULL), flags);
1097 return 1;
1098 }
1099 }
1100
1101 /* Optional transitive attributes may go through speakers that don't
1102 * reocgnise them and set the Partial bit.
1103 */
1104 if (CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)
1105 && CHECK_FLAG(flags, BGP_ATTR_FLAG_TRANS))
1106 SET_FLAG(mask, BGP_ATTR_FLAG_PARTIAL);
1107
1108 if ((flags & ~mask) == attr_flags_values[attr_code])
1109 return 0;
1110
1111 bgp_attr_flags_diagnose(args, attr_flags_values[attr_code]);
1112 return 1;
1113 }
1114
1115 /* Get origin attribute of the update message. */
1116 static bgp_attr_parse_ret_t bgp_attr_origin(struct bgp_attr_parser_args *args)
1117 {
1118 struct peer *const peer = args->peer;
1119 struct attr *const attr = args->attr;
1120 const bgp_size_t length = args->length;
1121
1122 /* If any recognized attribute has Attribute Length that conflicts
1123 with the expected length (based on the attribute type code), then
1124 the Error Subcode is set to Attribute Length Error. The Data
1125 field contains the erroneous attribute (type, length and
1126 value). */
1127 if (length != 1) {
1128 flog_err(EC_BGP_ATTR_LEN,
1129 "Origin attribute length is not one %d", length);
1130 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1131 args->total);
1132 }
1133
1134 /* Fetch origin attribute. */
1135 attr->origin = stream_getc(BGP_INPUT(peer));
1136
1137 /* If the ORIGIN attribute has an undefined value, then the Error
1138 Subcode is set to Invalid Origin Attribute. The Data field
1139 contains the unrecognized attribute (type, length and value). */
1140 if ((attr->origin != BGP_ORIGIN_IGP) && (attr->origin != BGP_ORIGIN_EGP)
1141 && (attr->origin != BGP_ORIGIN_INCOMPLETE)) {
1142 flog_err(EC_BGP_ATTR_ORIGIN,
1143 "Origin attribute value is invalid %d", attr->origin);
1144 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_INVAL_ORIGIN,
1145 args->total);
1146 }
1147
1148 /* Set oring attribute flag. */
1149 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ORIGIN);
1150
1151 return 0;
1152 }
1153
1154 /* Parse AS path information. This function is wrapper of
1155 aspath_parse. */
1156 static int bgp_attr_aspath(struct bgp_attr_parser_args *args)
1157 {
1158 struct attr *const attr = args->attr;
1159 struct peer *const peer = args->peer;
1160 const bgp_size_t length = args->length;
1161
1162 /*
1163 * peer with AS4 => will get 4Byte ASnums
1164 * otherwise, will get 16 Bit
1165 */
1166 attr->aspath = aspath_parse(peer->curr, length,
1167 CHECK_FLAG(peer->cap, PEER_CAP_AS4_RCV));
1168
1169 /* In case of IBGP, length will be zero. */
1170 if (!attr->aspath) {
1171 flog_err(EC_BGP_ATTR_MAL_AS_PATH,
1172 "Malformed AS path from %s, length is %d", peer->host,
1173 length);
1174 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_MAL_AS_PATH,
1175 0);
1176 }
1177
1178 /* Set aspath attribute flag. */
1179 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AS_PATH);
1180
1181 return BGP_ATTR_PARSE_PROCEED;
1182 }
1183
1184 static bgp_attr_parse_ret_t bgp_attr_aspath_check(struct peer *const peer,
1185 struct attr *const attr)
1186 {
1187 /* These checks were part of bgp_attr_aspath, but with
1188 * as4 we should to check aspath things when
1189 * aspath synthesizing with as4_path has already taken place.
1190 * Otherwise we check ASPATH and use the synthesized thing, and that is
1191 * not right.
1192 * So do the checks later, i.e. here
1193 */
1194 struct aspath *aspath;
1195
1196 /* Confederation sanity check. */
1197 if ((peer->sort == BGP_PEER_CONFED
1198 && !aspath_left_confed_check(attr->aspath))
1199 || (peer->sort == BGP_PEER_EBGP
1200 && aspath_confed_check(attr->aspath))) {
1201 flog_err(EC_BGP_ATTR_MAL_AS_PATH, "Malformed AS path from %s",
1202 peer->host);
1203 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
1204 BGP_NOTIFY_UPDATE_MAL_AS_PATH);
1205 return BGP_ATTR_PARSE_ERROR;
1206 }
1207
1208 /* First AS check for EBGP. */
1209 if (CHECK_FLAG(peer->flags, PEER_FLAG_ENFORCE_FIRST_AS)) {
1210 if (peer->sort == BGP_PEER_EBGP
1211 && !aspath_firstas_check(attr->aspath, peer->as)) {
1212 flog_err(EC_BGP_ATTR_FIRST_AS,
1213 "%s incorrect first AS (must be %u)",
1214 peer->host, peer->as);
1215 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
1216 BGP_NOTIFY_UPDATE_MAL_AS_PATH);
1217 return BGP_ATTR_PARSE_ERROR;
1218 }
1219 }
1220
1221 /* local-as prepend */
1222 if (peer->change_local_as
1223 && !CHECK_FLAG(peer->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND)) {
1224 aspath = aspath_dup(attr->aspath);
1225 aspath = aspath_add_seq(aspath, peer->change_local_as);
1226 aspath_unintern(&attr->aspath);
1227 attr->aspath = aspath_intern(aspath);
1228 }
1229
1230 return BGP_ATTR_PARSE_PROCEED;
1231 }
1232
1233 /* Parse AS4 path information. This function is another wrapper of
1234 aspath_parse. */
1235 static int bgp_attr_as4_path(struct bgp_attr_parser_args *args,
1236 struct aspath **as4_path)
1237 {
1238 struct peer *const peer = args->peer;
1239 struct attr *const attr = args->attr;
1240 const bgp_size_t length = args->length;
1241
1242 *as4_path = aspath_parse(peer->curr, length, 1);
1243
1244 /* In case of IBGP, length will be zero. */
1245 if (!*as4_path) {
1246 flog_err(EC_BGP_ATTR_MAL_AS_PATH,
1247 "Malformed AS4 path from %s, length is %d", peer->host,
1248 length);
1249 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_MAL_AS_PATH,
1250 0);
1251 }
1252
1253 /* Set aspath attribute flag. */
1254 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AS4_PATH);
1255
1256 return BGP_ATTR_PARSE_PROCEED;
1257 }
1258
1259 /* Nexthop attribute. */
1260 static bgp_attr_parse_ret_t bgp_attr_nexthop(struct bgp_attr_parser_args *args)
1261 {
1262 struct peer *const peer = args->peer;
1263 struct attr *const attr = args->attr;
1264 const bgp_size_t length = args->length;
1265
1266 in_addr_t nexthop_h, nexthop_n;
1267
1268 /* Check nexthop attribute length. */
1269 if (length != 4) {
1270 flog_err(EC_BGP_ATTR_LEN,
1271 "Nexthop attribute length isn't four [%d]", length);
1272
1273 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1274 args->total);
1275 }
1276
1277 /* According to section 6.3 of RFC4271, syntactically incorrect NEXT_HOP
1278 attribute must result in a NOTIFICATION message (this is implemented
1279 below).
1280 At the same time, semantically incorrect NEXT_HOP is more likely to
1281 be just
1282 logged locally (this is implemented somewhere else). The UPDATE
1283 message
1284 gets ignored in any of these cases. */
1285 nexthop_n = stream_get_ipv4(peer->curr);
1286 nexthop_h = ntohl(nexthop_n);
1287 if ((IPV4_NET0(nexthop_h) || IPV4_NET127(nexthop_h)
1288 || IPV4_CLASS_DE(nexthop_h))
1289 && !BGP_DEBUG(
1290 allow_martians,
1291 ALLOW_MARTIANS)) /* loopbacks may be used in testing */
1292 {
1293 char buf[INET_ADDRSTRLEN];
1294 inet_ntop(AF_INET, &nexthop_n, buf, INET_ADDRSTRLEN);
1295 flog_err(EC_BGP_ATTR_MARTIAN_NH, "Martian nexthop %s", buf);
1296 return bgp_attr_malformed(
1297 args, BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP, args->total);
1298 }
1299
1300 attr->nexthop.s_addr = nexthop_n;
1301 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP);
1302
1303 return BGP_ATTR_PARSE_PROCEED;
1304 }
1305
1306 /* MED atrribute. */
1307 static bgp_attr_parse_ret_t bgp_attr_med(struct bgp_attr_parser_args *args)
1308 {
1309 struct peer *const peer = args->peer;
1310 struct attr *const attr = args->attr;
1311 const bgp_size_t length = args->length;
1312
1313 /* Length check. */
1314 if (length != 4) {
1315 flog_err(EC_BGP_ATTR_LEN,
1316 "MED attribute length isn't four [%d]", length);
1317
1318 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1319 args->total);
1320 }
1321
1322 attr->med = stream_getl(peer->curr);
1323
1324 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
1325
1326 return BGP_ATTR_PARSE_PROCEED;
1327 }
1328
1329 /* Local preference attribute. */
1330 static bgp_attr_parse_ret_t
1331 bgp_attr_local_pref(struct bgp_attr_parser_args *args)
1332 {
1333 struct peer *const peer = args->peer;
1334 struct attr *const attr = args->attr;
1335 const bgp_size_t length = args->length;
1336
1337 /* Length check. */
1338 if (length != 4) {
1339 flog_err(EC_BGP_ATTR_LEN,
1340 "LOCAL_PREF attribute length isn't 4 [%u]", length);
1341 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1342 args->total);
1343 }
1344
1345 /* If it is contained in an UPDATE message that is received from an
1346 external peer, then this attribute MUST be ignored by the
1347 receiving speaker. */
1348 if (peer->sort == BGP_PEER_EBGP) {
1349 stream_forward_getp(peer->curr, length);
1350 return BGP_ATTR_PARSE_PROCEED;
1351 }
1352
1353 attr->local_pref = stream_getl(peer->curr);
1354
1355 /* Set the local-pref flag. */
1356 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
1357
1358 return BGP_ATTR_PARSE_PROCEED;
1359 }
1360
1361 /* Atomic aggregate. */
1362 static int bgp_attr_atomic(struct bgp_attr_parser_args *args)
1363 {
1364 struct attr *const attr = args->attr;
1365 const bgp_size_t length = args->length;
1366
1367 /* Length check. */
1368 if (length != 0) {
1369 flog_err(EC_BGP_ATTR_LEN,
1370 "ATOMIC_AGGREGATE attribute length isn't 0 [%u]",
1371 length);
1372 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1373 args->total);
1374 }
1375
1376 /* Set atomic aggregate flag. */
1377 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE);
1378
1379 return BGP_ATTR_PARSE_PROCEED;
1380 }
1381
1382 /* Aggregator attribute */
1383 static int bgp_attr_aggregator(struct bgp_attr_parser_args *args)
1384 {
1385 struct peer *const peer = args->peer;
1386 struct attr *const attr = args->attr;
1387 const bgp_size_t length = args->length;
1388
1389 int wantedlen = 6;
1390
1391 /* peer with AS4 will send 4 Byte AS, peer without will send 2 Byte */
1392 if (CHECK_FLAG(peer->cap, PEER_CAP_AS4_RCV))
1393 wantedlen = 8;
1394
1395 if (length != wantedlen) {
1396 flog_err(EC_BGP_ATTR_LEN,
1397 "AGGREGATOR attribute length isn't %u [%u]", wantedlen,
1398 length);
1399 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1400 args->total);
1401 }
1402
1403 if (CHECK_FLAG(peer->cap, PEER_CAP_AS4_RCV))
1404 attr->aggregator_as = stream_getl(peer->curr);
1405 else
1406 attr->aggregator_as = stream_getw(peer->curr);
1407 attr->aggregator_addr.s_addr = stream_get_ipv4(peer->curr);
1408
1409 /* Set atomic aggregate flag. */
1410 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR);
1411
1412 return BGP_ATTR_PARSE_PROCEED;
1413 }
1414
1415 /* New Aggregator attribute */
1416 static bgp_attr_parse_ret_t
1417 bgp_attr_as4_aggregator(struct bgp_attr_parser_args *args,
1418 as_t *as4_aggregator_as,
1419 struct in_addr *as4_aggregator_addr)
1420 {
1421 struct peer *const peer = args->peer;
1422 struct attr *const attr = args->attr;
1423 const bgp_size_t length = args->length;
1424
1425 if (length != 8) {
1426 flog_err(EC_BGP_ATTR_LEN, "New Aggregator length is not 8 [%d]",
1427 length);
1428 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1429 0);
1430 }
1431
1432 *as4_aggregator_as = stream_getl(peer->curr);
1433 as4_aggregator_addr->s_addr = stream_get_ipv4(peer->curr);
1434
1435 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AS4_AGGREGATOR);
1436
1437 return BGP_ATTR_PARSE_PROCEED;
1438 }
1439
1440 /* Munge Aggregator and New-Aggregator, AS_PATH and NEW_AS_PATH.
1441 */
1442 static bgp_attr_parse_ret_t
1443 bgp_attr_munge_as4_attrs(struct peer *const peer, struct attr *const attr,
1444 struct aspath *as4_path, as_t as4_aggregator,
1445 struct in_addr *as4_aggregator_addr)
1446 {
1447 int ignore_as4_path = 0;
1448 struct aspath *newpath;
1449
1450 if (!attr->aspath) {
1451 /* NULL aspath shouldn't be possible as bgp_attr_parse should
1452 * have
1453 * checked that all well-known, mandatory attributes were
1454 * present.
1455 *
1456 * Can only be a problem with peer itself - hard error
1457 */
1458 return BGP_ATTR_PARSE_ERROR;
1459 }
1460
1461 if (CHECK_FLAG(peer->cap, PEER_CAP_AS4_RCV)) {
1462 /* peer can do AS4, so we ignore AS4_PATH and AS4_AGGREGATOR
1463 * if given.
1464 * It is worth a warning though, because the peer really
1465 * should not send them
1466 */
1467 if (BGP_DEBUG(as4, AS4)) {
1468 if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS4_PATH)))
1469 zlog_debug("[AS4] %s %s AS4_PATH", peer->host,
1470 "AS4 capable peer, yet it sent");
1471
1472 if (attr->flag
1473 & (ATTR_FLAG_BIT(BGP_ATTR_AS4_AGGREGATOR)))
1474 zlog_debug("[AS4] %s %s AS4_AGGREGATOR",
1475 peer->host,
1476 "AS4 capable peer, yet it sent");
1477 }
1478
1479 return BGP_ATTR_PARSE_PROCEED;
1480 }
1481
1482 /* We have a asn16 peer. First, look for AS4_AGGREGATOR
1483 * because that may override AS4_PATH
1484 */
1485 if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS4_AGGREGATOR))) {
1486 if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR))) {
1487 /* received both.
1488 * if the as_number in aggregator is not AS_TRANS,
1489 * then AS4_AGGREGATOR and AS4_PATH shall be ignored
1490 * and the Aggregator shall be taken as
1491 * info on the aggregating node, and the AS_PATH
1492 * shall be taken as the AS_PATH
1493 * otherwise
1494 * the Aggregator shall be ignored and the
1495 * AS4_AGGREGATOR shall be taken as the
1496 * Aggregating node and the AS_PATH is to be
1497 * constructed "as in all other cases"
1498 */
1499 if (attr->aggregator_as != BGP_AS_TRANS) {
1500 /* ignore */
1501 if (BGP_DEBUG(as4, AS4))
1502 zlog_debug(
1503 "[AS4] %s BGP not AS4 capable peer"
1504 " send AGGREGATOR != AS_TRANS and"
1505 " AS4_AGGREGATOR, so ignore"
1506 " AS4_AGGREGATOR and AS4_PATH",
1507 peer->host);
1508 ignore_as4_path = 1;
1509 } else {
1510 /* "New_aggregator shall be taken as aggregator"
1511 */
1512 attr->aggregator_as = as4_aggregator;
1513 attr->aggregator_addr.s_addr =
1514 as4_aggregator_addr->s_addr;
1515 }
1516 } else {
1517 /* We received a AS4_AGGREGATOR but no AGGREGATOR.
1518 * That is bogus - but reading the conditions
1519 * we have to handle AS4_AGGREGATOR as if it were
1520 * AGGREGATOR in that case
1521 */
1522 if (BGP_DEBUG(as4, AS4))
1523 zlog_debug(
1524 "[AS4] %s BGP not AS4 capable peer send"
1525 " AS4_AGGREGATOR but no AGGREGATOR, will take"
1526 " it as if AGGREGATOR with AS_TRANS had been there",
1527 peer->host);
1528 attr->aggregator_as = as4_aggregator;
1529 /* sweep it under the carpet and simulate a "good"
1530 * AGGREGATOR */
1531 attr->flag |= (ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR));
1532 }
1533 }
1534
1535 /* need to reconcile NEW_AS_PATH and AS_PATH */
1536 if (!ignore_as4_path
1537 && (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS4_PATH)))) {
1538 newpath = aspath_reconcile_as4(attr->aspath, as4_path);
1539 if (!newpath)
1540 return BGP_ATTR_PARSE_ERROR;
1541
1542 aspath_unintern(&attr->aspath);
1543 attr->aspath = aspath_intern(newpath);
1544 }
1545 return BGP_ATTR_PARSE_PROCEED;
1546 }
1547
1548 /* Community attribute. */
1549 static bgp_attr_parse_ret_t
1550 bgp_attr_community(struct bgp_attr_parser_args *args)
1551 {
1552 struct peer *const peer = args->peer;
1553 struct attr *const attr = args->attr;
1554 const bgp_size_t length = args->length;
1555
1556 if (length == 0) {
1557 attr->community = NULL;
1558 return BGP_ATTR_PARSE_PROCEED;
1559 }
1560
1561 attr->community =
1562 community_parse((uint32_t *)stream_pnt(peer->curr), length);
1563
1564 /* XXX: fix community_parse to use stream API and remove this */
1565 stream_forward_getp(peer->curr, length);
1566
1567 if (!attr->community)
1568 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
1569 args->total);
1570
1571 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
1572
1573 return BGP_ATTR_PARSE_PROCEED;
1574 }
1575
1576 /* Originator ID attribute. */
1577 static bgp_attr_parse_ret_t
1578 bgp_attr_originator_id(struct bgp_attr_parser_args *args)
1579 {
1580 struct peer *const peer = args->peer;
1581 struct attr *const attr = args->attr;
1582 const bgp_size_t length = args->length;
1583
1584 /* Length check. */
1585 if (length != 4) {
1586 flog_err(EC_BGP_ATTR_LEN, "Bad originator ID length %d",
1587 length);
1588
1589 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1590 args->total);
1591 }
1592
1593 attr->originator_id.s_addr = stream_get_ipv4(peer->curr);
1594
1595 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID);
1596
1597 return BGP_ATTR_PARSE_PROCEED;
1598 }
1599
1600 /* Cluster list attribute. */
1601 static bgp_attr_parse_ret_t
1602 bgp_attr_cluster_list(struct bgp_attr_parser_args *args)
1603 {
1604 struct peer *const peer = args->peer;
1605 struct attr *const attr = args->attr;
1606 const bgp_size_t length = args->length;
1607
1608 /* Check length. */
1609 if (length % 4) {
1610 flog_err(EC_BGP_ATTR_LEN, "Bad cluster list length %d", length);
1611
1612 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
1613 args->total);
1614 }
1615
1616 attr->cluster =
1617 cluster_parse((struct in_addr *)stream_pnt(peer->curr), length);
1618
1619 /* XXX: Fix cluster_parse to use stream API and then remove this */
1620 stream_forward_getp(peer->curr, length);
1621
1622 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_CLUSTER_LIST);
1623
1624 return BGP_ATTR_PARSE_PROCEED;
1625 }
1626
1627 /* Multiprotocol reachability information parse. */
1628 int bgp_mp_reach_parse(struct bgp_attr_parser_args *args,
1629 struct bgp_nlri *mp_update)
1630 {
1631 iana_afi_t pkt_afi;
1632 afi_t afi;
1633 iana_safi_t pkt_safi;
1634 safi_t safi;
1635 bgp_size_t nlri_len;
1636 size_t start;
1637 struct stream *s;
1638 struct peer *const peer = args->peer;
1639 struct attr *const attr = args->attr;
1640 const bgp_size_t length = args->length;
1641
1642 /* Set end of packet. */
1643 s = BGP_INPUT(peer);
1644 start = stream_get_getp(s);
1645
1646 /* safe to read statically sized header? */
1647 #define BGP_MP_REACH_MIN_SIZE 5
1648 #define LEN_LEFT (length - (stream_get_getp(s) - start))
1649 if ((length > STREAM_READABLE(s)) || (length < BGP_MP_REACH_MIN_SIZE)) {
1650 zlog_info("%s: %s sent invalid length, %lu", __func__,
1651 peer->host, (unsigned long)length);
1652 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1653 }
1654
1655 /* Load AFI, SAFI. */
1656 pkt_afi = stream_getw(s);
1657 pkt_safi = stream_getc(s);
1658
1659 /* Convert AFI, SAFI to internal values, check. */
1660 if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
1661 /* Log if AFI or SAFI is unrecognized. This is not an error
1662 * unless
1663 * the attribute is otherwise malformed.
1664 */
1665 if (bgp_debug_update(peer, NULL, NULL, 0))
1666 zlog_debug(
1667 "%s: MP_REACH received AFI %u or SAFI %u is unrecognized",
1668 peer->host, pkt_afi, pkt_safi);
1669 return BGP_ATTR_PARSE_ERROR;
1670 }
1671
1672 /* Get nexthop length. */
1673 attr->mp_nexthop_len = stream_getc(s);
1674
1675 if (LEN_LEFT < attr->mp_nexthop_len) {
1676 zlog_info(
1677 "%s: %s, MP nexthop length, %u, goes past end of attribute",
1678 __func__, peer->host, attr->mp_nexthop_len);
1679 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1680 }
1681
1682 /* Nexthop length check. */
1683 switch (attr->mp_nexthop_len) {
1684 case 0:
1685 if (safi != SAFI_FLOWSPEC) {
1686 zlog_info("%s: (%s) Wrong multiprotocol next hop length: %d",
1687 __func__, peer->host, attr->mp_nexthop_len);
1688 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1689 }
1690 break;
1691 case BGP_ATTR_NHLEN_VPNV4:
1692 stream_getl(s); /* RD high */
1693 stream_getl(s); /* RD low */
1694 /*
1695 * NOTE: intentional fall through
1696 * - for consistency in rx processing
1697 *
1698 * The following comment is to signal GCC this intention
1699 * and suppress the warning
1700 */
1701 /* FALLTHRU */
1702 case BGP_ATTR_NHLEN_IPV4:
1703 stream_get(&attr->mp_nexthop_global_in, s, IPV4_MAX_BYTELEN);
1704 /* Probably needed for RFC 2283 */
1705 if (attr->nexthop.s_addr == 0)
1706 memcpy(&attr->nexthop.s_addr,
1707 &attr->mp_nexthop_global_in, IPV4_MAX_BYTELEN);
1708 break;
1709 case BGP_ATTR_NHLEN_IPV6_GLOBAL:
1710 case BGP_ATTR_NHLEN_VPNV6_GLOBAL:
1711 if (attr->mp_nexthop_len == BGP_ATTR_NHLEN_VPNV6_GLOBAL) {
1712 stream_getl(s); /* RD high */
1713 stream_getl(s); /* RD low */
1714 }
1715 stream_get(&attr->mp_nexthop_global, s, IPV6_MAX_BYTELEN);
1716 if (IN6_IS_ADDR_LINKLOCAL(&attr->mp_nexthop_global)) {
1717 if (!peer->nexthop.ifp) {
1718 zlog_warn("%s: Received a V6/VPNV6 Global attribute but address is a V6 LL and we have no peer interface information, withdrawing",
1719 peer->host);
1720 return BGP_ATTR_PARSE_WITHDRAW;
1721 }
1722 attr->nh_ifindex = peer->nexthop.ifp->ifindex;
1723 }
1724 break;
1725 case BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL:
1726 case BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL:
1727 if (attr->mp_nexthop_len
1728 == BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL) {
1729 stream_getl(s); /* RD high */
1730 stream_getl(s); /* RD low */
1731 }
1732 stream_get(&attr->mp_nexthop_global, s, IPV6_MAX_BYTELEN);
1733 if (IN6_IS_ADDR_LINKLOCAL(&attr->mp_nexthop_global)) {
1734 if (!peer->nexthop.ifp) {
1735 zlog_warn("%s: Received V6/VPNV6 Global and LL attribute but global address is a V6 LL and we have no peer interface information, withdrawing",
1736 peer->host);
1737 return BGP_ATTR_PARSE_WITHDRAW;
1738 }
1739 attr->nh_ifindex = peer->nexthop.ifp->ifindex;
1740 }
1741 if (attr->mp_nexthop_len
1742 == BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL) {
1743 stream_getl(s); /* RD high */
1744 stream_getl(s); /* RD low */
1745 }
1746 stream_get(&attr->mp_nexthop_local, s, IPV6_MAX_BYTELEN);
1747 if (!IN6_IS_ADDR_LINKLOCAL(&attr->mp_nexthop_local)) {
1748 char buf1[INET6_ADDRSTRLEN];
1749 char buf2[INET6_ADDRSTRLEN];
1750
1751 if (bgp_debug_update(peer, NULL, NULL, 1))
1752 zlog_debug(
1753 "%s rcvd nexthops %s, %s -- ignoring non-LL value",
1754 peer->host,
1755 inet_ntop(AF_INET6,
1756 &attr->mp_nexthop_global,
1757 buf1, INET6_ADDRSTRLEN),
1758 inet_ntop(AF_INET6,
1759 &attr->mp_nexthop_local, buf2,
1760 INET6_ADDRSTRLEN));
1761
1762 attr->mp_nexthop_len = IPV6_MAX_BYTELEN;
1763 }
1764 if (!peer->nexthop.ifp) {
1765 zlog_warn("%s: Received a V6 LL nexthop and we have no peer interface information, withdrawing",
1766 peer->host);
1767 return BGP_ATTR_PARSE_WITHDRAW;
1768 }
1769 attr->nh_lla_ifindex = peer->nexthop.ifp->ifindex;
1770 break;
1771 default:
1772 zlog_info("%s: (%s) Wrong multiprotocol next hop length: %d",
1773 __func__, peer->host, attr->mp_nexthop_len);
1774 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1775 }
1776
1777 if (!LEN_LEFT) {
1778 zlog_info("%s: (%s) Failed to read SNPA and NLRI(s)", __func__,
1779 peer->host);
1780 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1781 }
1782
1783 {
1784 uint8_t val;
1785 if ((val = stream_getc(s)))
1786 flog_warn(
1787 EC_BGP_DEFUNCT_SNPA_LEN,
1788 "%s sent non-zero value, %u, for defunct SNPA-length field",
1789 peer->host, val);
1790 }
1791
1792 /* must have nrli_len, what is left of the attribute */
1793 nlri_len = LEN_LEFT;
1794 if (nlri_len > STREAM_READABLE(s)) {
1795 zlog_info("%s: (%s) Failed to read NLRI", __func__, peer->host);
1796 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1797 }
1798
1799 if (!nlri_len) {
1800 zlog_info("%s: (%s) No Reachability, Treating as a EOR marker",
1801 __func__, peer->host);
1802
1803 mp_update->afi = afi;
1804 mp_update->safi = safi;
1805 return BGP_ATTR_PARSE_EOR;
1806 }
1807
1808 mp_update->afi = afi;
1809 mp_update->safi = safi;
1810 mp_update->nlri = stream_pnt(s);
1811 mp_update->length = nlri_len;
1812
1813 stream_forward_getp(s, nlri_len);
1814
1815 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_MP_REACH_NLRI);
1816
1817 return BGP_ATTR_PARSE_PROCEED;
1818 #undef LEN_LEFT
1819 }
1820
1821 /* Multiprotocol unreachable parse */
1822 int bgp_mp_unreach_parse(struct bgp_attr_parser_args *args,
1823 struct bgp_nlri *mp_withdraw)
1824 {
1825 struct stream *s;
1826 iana_afi_t pkt_afi;
1827 afi_t afi;
1828 iana_safi_t pkt_safi;
1829 safi_t safi;
1830 uint16_t withdraw_len;
1831 struct peer *const peer = args->peer;
1832 struct attr *const attr = args->attr;
1833 const bgp_size_t length = args->length;
1834
1835 s = peer->curr;
1836
1837 #define BGP_MP_UNREACH_MIN_SIZE 3
1838 if ((length > STREAM_READABLE(s)) || (length < BGP_MP_UNREACH_MIN_SIZE))
1839 return BGP_ATTR_PARSE_ERROR_NOTIFYPLS;
1840
1841 pkt_afi = stream_getw(s);
1842 pkt_safi = stream_getc(s);
1843
1844 /* Convert AFI, SAFI to internal values, check. */
1845 if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
1846 /* Log if AFI or SAFI is unrecognized. This is not an error
1847 * unless
1848 * the attribute is otherwise malformed.
1849 */
1850 if (bgp_debug_update(peer, NULL, NULL, 0))
1851 zlog_debug(
1852 "%s: MP_UNREACH received AFI %u or SAFI %u is unrecognized",
1853 peer->host, pkt_afi, pkt_safi);
1854 return BGP_ATTR_PARSE_ERROR;
1855 }
1856
1857 withdraw_len = length - BGP_MP_UNREACH_MIN_SIZE;
1858
1859 mp_withdraw->afi = afi;
1860 mp_withdraw->safi = safi;
1861 mp_withdraw->nlri = stream_pnt(s);
1862 mp_withdraw->length = withdraw_len;
1863
1864 stream_forward_getp(s, withdraw_len);
1865
1866 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_MP_UNREACH_NLRI);
1867
1868 return BGP_ATTR_PARSE_PROCEED;
1869 }
1870
1871 /* Large Community attribute. */
1872 static bgp_attr_parse_ret_t
1873 bgp_attr_large_community(struct bgp_attr_parser_args *args)
1874 {
1875 struct peer *const peer = args->peer;
1876 struct attr *const attr = args->attr;
1877 const bgp_size_t length = args->length;
1878
1879 /*
1880 * Large community follows new attribute format.
1881 */
1882 if (length == 0) {
1883 attr->lcommunity = NULL;
1884 /* Empty extcomm doesn't seem to be invalid per se */
1885 return BGP_ATTR_PARSE_PROCEED;
1886 }
1887
1888 attr->lcommunity =
1889 lcommunity_parse((uint8_t *)stream_pnt(peer->curr), length);
1890 /* XXX: fix ecommunity_parse to use stream API */
1891 stream_forward_getp(peer->curr, length);
1892
1893 if (!attr->lcommunity)
1894 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
1895 args->total);
1896
1897 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES);
1898
1899 return BGP_ATTR_PARSE_PROCEED;
1900 }
1901
1902 /* Extended Community attribute. */
1903 static bgp_attr_parse_ret_t
1904 bgp_attr_ext_communities(struct bgp_attr_parser_args *args)
1905 {
1906 struct peer *const peer = args->peer;
1907 struct attr *const attr = args->attr;
1908 const bgp_size_t length = args->length;
1909 uint8_t sticky = 0;
1910
1911 if (length == 0) {
1912 attr->ecommunity = NULL;
1913 /* Empty extcomm doesn't seem to be invalid per se */
1914 return BGP_ATTR_PARSE_PROCEED;
1915 }
1916
1917 attr->ecommunity =
1918 ecommunity_parse((uint8_t *)stream_pnt(peer->curr), length);
1919 /* XXX: fix ecommunity_parse to use stream API */
1920 stream_forward_getp(peer->curr, length);
1921
1922 if (!attr->ecommunity)
1923 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
1924 args->total);
1925
1926 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
1927
1928 /* Extract MAC mobility sequence number, if any. */
1929 attr->mm_seqnum = bgp_attr_mac_mobility_seqnum(attr, &sticky);
1930 attr->sticky = sticky;
1931
1932 /* Check if this is a Gateway MAC-IP advertisement */
1933 attr->default_gw = bgp_attr_default_gw(attr);
1934
1935 /* Handle scenario where router flag ecommunity is not
1936 * set but default gw ext community is present.
1937 * Use default gateway, set and propogate R-bit.
1938 */
1939 if (attr->default_gw)
1940 attr->router_flag = 1;
1941
1942 /* Check EVPN Neighbor advertisement flags, R-bit */
1943 bgp_attr_evpn_na_flag(attr, &attr->router_flag);
1944
1945 /* Extract the Rmac, if any */
1946 if (bgp_attr_rmac(attr, &attr->rmac)) {
1947 if (bgp_debug_update(peer, NULL, NULL, 1) &&
1948 bgp_mac_exist(&attr->rmac)) {
1949 char buf1[ETHER_ADDR_STRLEN];
1950
1951 zlog_debug("%s: router mac %s is self mac",
1952 __func__,
1953 prefix_mac2str(&attr->rmac, buf1,
1954 sizeof(buf1)));
1955 }
1956
1957 }
1958
1959 return BGP_ATTR_PARSE_PROCEED;
1960 }
1961
1962 /* Parse Tunnel Encap attribute in an UPDATE */
1963 static int bgp_attr_encap(uint8_t type, struct peer *peer, /* IN */
1964 bgp_size_t length, /* IN: attr's length field */
1965 struct attr *attr, /* IN: caller already allocated */
1966 uint8_t flag, /* IN: attr's flags field */
1967 uint8_t *startp)
1968 {
1969 bgp_size_t total;
1970 uint16_t tunneltype = 0;
1971
1972 total = length + (CHECK_FLAG(flag, BGP_ATTR_FLAG_EXTLEN) ? 4 : 3);
1973
1974 if (!CHECK_FLAG(flag, BGP_ATTR_FLAG_TRANS)
1975 || !CHECK_FLAG(flag, BGP_ATTR_FLAG_OPTIONAL)) {
1976 zlog_info(
1977 "Tunnel Encap attribute flag isn't optional and transitive %d",
1978 flag);
1979 bgp_notify_send_with_data(peer, BGP_NOTIFY_UPDATE_ERR,
1980 BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR,
1981 startp, total);
1982 return -1;
1983 }
1984
1985 if (BGP_ATTR_ENCAP == type) {
1986 /* read outer TLV type and length */
1987 uint16_t tlv_length;
1988
1989 if (length < 4) {
1990 zlog_info(
1991 "Tunnel Encap attribute not long enough to contain outer T,L");
1992 bgp_notify_send_with_data(
1993 peer, BGP_NOTIFY_UPDATE_ERR,
1994 BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, startp, total);
1995 return -1;
1996 }
1997 tunneltype = stream_getw(BGP_INPUT(peer));
1998 tlv_length = stream_getw(BGP_INPUT(peer));
1999 length -= 4;
2000
2001 if (tlv_length != length) {
2002 zlog_info("%s: tlv_length(%d) != length(%d)", __func__,
2003 tlv_length, length);
2004 }
2005 }
2006
2007 while (length >= 4) {
2008 uint16_t subtype = 0;
2009 uint16_t sublength = 0;
2010 struct bgp_attr_encap_subtlv *tlv;
2011
2012 if (BGP_ATTR_ENCAP == type) {
2013 subtype = stream_getc(BGP_INPUT(peer));
2014 sublength = stream_getc(BGP_INPUT(peer));
2015 length -= 2;
2016 #if ENABLE_BGP_VNC
2017 } else {
2018 subtype = stream_getw(BGP_INPUT(peer));
2019 sublength = stream_getw(BGP_INPUT(peer));
2020 length -= 4;
2021 #endif
2022 }
2023
2024 if (sublength > length) {
2025 zlog_info(
2026 "Tunnel Encap attribute sub-tlv length %d exceeds remaining length %d",
2027 sublength, length);
2028 bgp_notify_send_with_data(
2029 peer, BGP_NOTIFY_UPDATE_ERR,
2030 BGP_NOTIFY_UPDATE_OPT_ATTR_ERR, startp, total);
2031 return -1;
2032 }
2033
2034 /* alloc and copy sub-tlv */
2035 /* TBD make sure these are freed when attributes are released */
2036 tlv = XCALLOC(MTYPE_ENCAP_TLV,
2037 sizeof(struct bgp_attr_encap_subtlv) + sublength);
2038 tlv->type = subtype;
2039 tlv->length = sublength;
2040 stream_get(tlv->value, peer->curr, sublength);
2041 length -= sublength;
2042
2043 /* attach tlv to encap chain */
2044 if (BGP_ATTR_ENCAP == type) {
2045 struct bgp_attr_encap_subtlv *stlv_last;
2046 for (stlv_last = attr->encap_subtlvs;
2047 stlv_last && stlv_last->next;
2048 stlv_last = stlv_last->next)
2049 ;
2050 if (stlv_last) {
2051 stlv_last->next = tlv;
2052 } else {
2053 attr->encap_subtlvs = tlv;
2054 }
2055 #if ENABLE_BGP_VNC
2056 } else {
2057 struct bgp_attr_encap_subtlv *stlv_last;
2058 for (stlv_last = attr->vnc_subtlvs;
2059 stlv_last && stlv_last->next;
2060 stlv_last = stlv_last->next)
2061 ;
2062 if (stlv_last) {
2063 stlv_last->next = tlv;
2064 } else {
2065 attr->vnc_subtlvs = tlv;
2066 }
2067 #endif
2068 }
2069 }
2070
2071 if (BGP_ATTR_ENCAP == type) {
2072 attr->encap_tunneltype = tunneltype;
2073 }
2074
2075 if (length) {
2076 /* spurious leftover data */
2077 zlog_info(
2078 "Tunnel Encap attribute length is bad: %d leftover octets",
2079 length);
2080 bgp_notify_send_with_data(peer, BGP_NOTIFY_UPDATE_ERR,
2081 BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
2082 startp, total);
2083 return -1;
2084 }
2085
2086 return 0;
2087 }
2088
2089 /*
2090 * Read an individual SID value returning how much data we have read
2091 * Returns 0 if there was an error that needs to be passed up the stack
2092 */
2093 static bgp_attr_parse_ret_t bgp_attr_psid_sub(int32_t type,
2094 int32_t length,
2095 struct bgp_attr_parser_args *args,
2096 struct bgp_nlri *mp_update)
2097 {
2098 struct peer *const peer = args->peer;
2099 struct attr *const attr = args->attr;
2100 uint32_t label_index;
2101 struct in6_addr ipv6_sid;
2102 uint32_t srgb_base;
2103 uint32_t srgb_range;
2104 int srgb_count;
2105
2106 if (type == BGP_PREFIX_SID_LABEL_INDEX) {
2107 if (length != BGP_PREFIX_SID_LABEL_INDEX_LENGTH) {
2108 flog_err(
2109 EC_BGP_ATTR_LEN,
2110 "Prefix SID label index length is %d instead of %d",
2111 length, BGP_PREFIX_SID_LABEL_INDEX_LENGTH);
2112 return bgp_attr_malformed(args,
2113 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2114 args->total);
2115 }
2116
2117 /* Ignore flags and reserved */
2118 stream_getc(peer->curr);
2119 stream_getw(peer->curr);
2120
2121 /* Fetch the label index and see if it is valid. */
2122 label_index = stream_getl(peer->curr);
2123 if (label_index == BGP_INVALID_LABEL_INDEX)
2124 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
2125 args->total);
2126
2127 /* Store label index; subsequently, we'll check on
2128 * address-family */
2129 attr->label_index = label_index;
2130
2131 /*
2132 * Ignore the Label index attribute unless received for
2133 * labeled-unicast
2134 * SAFI.
2135 */
2136 if (!mp_update->length
2137 || mp_update->safi != SAFI_LABELED_UNICAST)
2138 attr->label_index = BGP_INVALID_LABEL_INDEX;
2139 }
2140
2141 /* Placeholder code for the IPv6 SID type */
2142 else if (type == BGP_PREFIX_SID_IPV6) {
2143 if (length != BGP_PREFIX_SID_IPV6_LENGTH) {
2144 flog_err(EC_BGP_ATTR_LEN,
2145 "Prefix SID IPv6 length is %d instead of %d",
2146 length, BGP_PREFIX_SID_IPV6_LENGTH);
2147 return bgp_attr_malformed(args,
2148 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2149 args->total);
2150 }
2151
2152 /* Ignore reserved */
2153 stream_getc(peer->curr);
2154 stream_getw(peer->curr);
2155
2156 stream_get(&ipv6_sid, peer->curr, 16);
2157 }
2158
2159 /* Placeholder code for the Originator SRGB type */
2160 else if (type == BGP_PREFIX_SID_ORIGINATOR_SRGB) {
2161 /* Ignore flags */
2162 stream_getw(peer->curr);
2163
2164 length -= 2;
2165
2166 if (length % BGP_PREFIX_SID_ORIGINATOR_SRGB_LENGTH) {
2167 flog_err(
2168 EC_BGP_ATTR_LEN,
2169 "Prefix SID Originator SRGB length is %d, it must be a multiple of %d ",
2170 length, BGP_PREFIX_SID_ORIGINATOR_SRGB_LENGTH);
2171 return bgp_attr_malformed(
2172 args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2173 args->total);
2174 }
2175
2176 srgb_count = length / BGP_PREFIX_SID_ORIGINATOR_SRGB_LENGTH;
2177
2178 for (int i = 0; i < srgb_count; i++) {
2179 stream_get(&srgb_base, peer->curr, 3);
2180 stream_get(&srgb_range, peer->curr, 3);
2181 }
2182 }
2183
2184 return BGP_ATTR_PARSE_PROCEED;
2185 }
2186
2187 /* Prefix SID attribute
2188 * draft-ietf-idr-bgp-prefix-sid-05
2189 */
2190 bgp_attr_parse_ret_t
2191 bgp_attr_prefix_sid(int32_t tlength, struct bgp_attr_parser_args *args,
2192 struct bgp_nlri *mp_update)
2193 {
2194 struct peer *const peer = args->peer;
2195 struct attr *const attr = args->attr;
2196 bgp_attr_parse_ret_t ret;
2197
2198 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID);
2199
2200 while (tlength) {
2201 int32_t type, length;
2202
2203 type = stream_getc(peer->curr);
2204 length = stream_getw(peer->curr);
2205
2206 ret = bgp_attr_psid_sub(type, length, args, mp_update);
2207
2208 if (ret != BGP_ATTR_PARSE_PROCEED)
2209 return ret;
2210 /*
2211 * Subtract length + the T and the L
2212 * since length is the Vector portion
2213 */
2214 tlength -= length + 3;
2215
2216 if (tlength < 0) {
2217 flog_err(
2218 EC_BGP_ATTR_LEN,
2219 "Prefix SID internal length %d causes us to read beyond the total Prefix SID length",
2220 length);
2221 return bgp_attr_malformed(args,
2222 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2223 args->total);
2224 }
2225 }
2226
2227 return BGP_ATTR_PARSE_PROCEED;
2228 }
2229
2230 /* PMSI tunnel attribute (RFC 6514)
2231 * Basic validation checks done here.
2232 */
2233 static bgp_attr_parse_ret_t
2234 bgp_attr_pmsi_tunnel(struct bgp_attr_parser_args *args)
2235 {
2236 struct peer *const peer = args->peer;
2237 struct attr *const attr = args->attr;
2238 const bgp_size_t length = args->length;
2239 uint8_t tnl_type;
2240 int attr_parse_len = 2 + BGP_LABEL_BYTES;
2241
2242 /* Verify that the receiver is expecting "ingress replication" as we
2243 * can only support that.
2244 */
2245 if (length < attr_parse_len) {
2246 flog_err(EC_BGP_ATTR_LEN, "Bad PMSI tunnel attribute length %d",
2247 length);
2248 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2249 args->total);
2250 }
2251 stream_getc(peer->curr); /* Flags */
2252 tnl_type = stream_getc(peer->curr);
2253 if (tnl_type > PMSI_TNLTYPE_MAX) {
2254 flog_err(EC_BGP_ATTR_PMSI_TYPE,
2255 "Invalid PMSI tunnel attribute type %d", tnl_type);
2256 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_OPT_ATTR_ERR,
2257 args->total);
2258 }
2259 if (tnl_type == PMSI_TNLTYPE_INGR_REPL) {
2260 if (length != 9) {
2261 flog_err(EC_BGP_ATTR_PMSI_LEN,
2262 "Bad PMSI tunnel attribute length %d for IR",
2263 length);
2264 return bgp_attr_malformed(
2265 args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
2266 args->total);
2267 }
2268 }
2269
2270 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL);
2271 attr->pmsi_tnl_type = tnl_type;
2272 stream_get(&attr->label, peer->curr, BGP_LABEL_BYTES);
2273
2274 /* Forward read pointer of input stream. */
2275 stream_forward_getp(peer->curr, length - attr_parse_len);
2276
2277 return BGP_ATTR_PARSE_PROCEED;
2278 }
2279
2280 /* BGP unknown attribute treatment. */
2281 static bgp_attr_parse_ret_t bgp_attr_unknown(struct bgp_attr_parser_args *args)
2282 {
2283 bgp_size_t total = args->total;
2284 struct transit *transit;
2285 struct peer *const peer = args->peer;
2286 struct attr *const attr = args->attr;
2287 uint8_t *const startp = args->startp;
2288 const uint8_t type = args->type;
2289 const uint8_t flag = args->flags;
2290 const bgp_size_t length = args->length;
2291
2292 if (bgp_debug_update(peer, NULL, NULL, 1))
2293 zlog_debug(
2294 "%s Unknown attribute is received (type %d, length %d)",
2295 peer->host, type, length);
2296
2297 /* Forward read pointer of input stream. */
2298 stream_forward_getp(peer->curr, length);
2299
2300 /* If any of the mandatory well-known attributes are not recognized,
2301 then the Error Subcode is set to Unrecognized Well-known
2302 Attribute. The Data field contains the unrecognized attribute
2303 (type, length and value). */
2304 if (!CHECK_FLAG(flag, BGP_ATTR_FLAG_OPTIONAL)) {
2305 return bgp_attr_malformed(args, BGP_NOTIFY_UPDATE_UNREC_ATTR,
2306 args->total);
2307 }
2308
2309 /* Unrecognized non-transitive optional attributes must be quietly
2310 ignored and not passed along to other BGP peers. */
2311 if (!CHECK_FLAG(flag, BGP_ATTR_FLAG_TRANS))
2312 return BGP_ATTR_PARSE_PROCEED;
2313
2314 /* If a path with recognized transitive optional attribute is
2315 accepted and passed along to other BGP peers and the Partial bit
2316 in the Attribute Flags octet is set to 1 by some previous AS, it
2317 is not set back to 0 by the current AS. */
2318 SET_FLAG(*startp, BGP_ATTR_FLAG_PARTIAL);
2319
2320 /* Store transitive attribute to the end of attr->transit. */
2321 if (!attr->transit)
2322 attr->transit = XCALLOC(MTYPE_TRANSIT, sizeof(struct transit));
2323
2324 transit = attr->transit;
2325
2326 if (transit->val)
2327 transit->val = XREALLOC(MTYPE_TRANSIT_VAL, transit->val,
2328 transit->length + total);
2329 else
2330 transit->val = XMALLOC(MTYPE_TRANSIT_VAL, total);
2331
2332 memcpy(transit->val + transit->length, startp, total);
2333 transit->length += total;
2334
2335 return BGP_ATTR_PARSE_PROCEED;
2336 }
2337
2338 /* Well-known attribute check. */
2339 static int bgp_attr_check(struct peer *peer, struct attr *attr)
2340 {
2341 uint8_t type = 0;
2342
2343 /* BGP Graceful-Restart End-of-RIB for IPv4 unicast is signaled as an
2344 * empty UPDATE. */
2345 if (CHECK_FLAG(peer->cap, PEER_CAP_RESTART_RCV) && !attr->flag)
2346 return BGP_ATTR_PARSE_PROCEED;
2347
2348 /* "An UPDATE message that contains the MP_UNREACH_NLRI is not required
2349 to carry any other path attributes.", though if MP_REACH_NLRI or NLRI
2350 are present, it should. Check for any other attribute being present
2351 instead.
2352 */
2353 if ((!CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_MP_REACH_NLRI)) &&
2354 CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_MP_UNREACH_NLRI))))
2355 return BGP_ATTR_PARSE_PROCEED;
2356
2357 if (!CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_ORIGIN)))
2358 type = BGP_ATTR_ORIGIN;
2359
2360 if (!CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_AS_PATH)))
2361 type = BGP_ATTR_AS_PATH;
2362
2363 /* RFC 2858 makes Next-Hop optional/ignored, if MP_REACH_NLRI is present
2364 * and
2365 * NLRI is empty. We can't easily check NLRI empty here though.
2366 */
2367 if (!CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP))
2368 && !CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_MP_REACH_NLRI)))
2369 type = BGP_ATTR_NEXT_HOP;
2370
2371 if (peer->sort == BGP_PEER_IBGP
2372 && !CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF)))
2373 type = BGP_ATTR_LOCAL_PREF;
2374
2375 if (type) {
2376 flog_warn(EC_BGP_MISSING_ATTRIBUTE,
2377 "%s Missing well-known attribute %s.", peer->host,
2378 lookup_msg(attr_str, type, NULL));
2379 bgp_notify_send_with_data(peer, BGP_NOTIFY_UPDATE_ERR,
2380 BGP_NOTIFY_UPDATE_MISS_ATTR, &type,
2381 1);
2382 return BGP_ATTR_PARSE_ERROR;
2383 }
2384 return BGP_ATTR_PARSE_PROCEED;
2385 }
2386
2387 /* Read attribute of update packet. This function is called from
2388 bgp_update_receive() in bgp_packet.c. */
2389 bgp_attr_parse_ret_t bgp_attr_parse(struct peer *peer, struct attr *attr,
2390 bgp_size_t size, struct bgp_nlri *mp_update,
2391 struct bgp_nlri *mp_withdraw)
2392 {
2393 bgp_attr_parse_ret_t ret;
2394 uint8_t flag = 0;
2395 uint8_t type = 0;
2396 bgp_size_t length;
2397 uint8_t *startp, *endp;
2398 uint8_t *attr_endp;
2399 uint8_t seen[BGP_ATTR_BITMAP_SIZE];
2400 /* we need the as4_path only until we have synthesized the as_path with
2401 * it */
2402 /* same goes for as4_aggregator */
2403 struct aspath *as4_path = NULL;
2404 as_t as4_aggregator = 0;
2405 struct in_addr as4_aggregator_addr = {.s_addr = 0};
2406
2407 /* Initialize bitmap. */
2408 memset(seen, 0, BGP_ATTR_BITMAP_SIZE);
2409
2410 /* End pointer of BGP attribute. */
2411 endp = BGP_INPUT_PNT(peer) + size;
2412
2413 /* Get attributes to the end of attribute length. */
2414 while (BGP_INPUT_PNT(peer) < endp) {
2415 /* Check remaining length check.*/
2416 if (endp - BGP_INPUT_PNT(peer) < BGP_ATTR_MIN_LEN) {
2417 /* XXX warning: long int format, int arg (arg 5) */
2418 flog_warn(
2419 EC_BGP_ATTRIBUTE_TOO_SMALL,
2420 "%s: error BGP attribute length %lu is smaller than min len",
2421 peer->host,
2422 (unsigned long)(endp
2423 - stream_pnt(BGP_INPUT(peer))));
2424
2425 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2426 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
2427 return BGP_ATTR_PARSE_ERROR;
2428 }
2429
2430 /* Fetch attribute flag and type. */
2431 startp = BGP_INPUT_PNT(peer);
2432 /* "The lower-order four bits of the Attribute Flags octet are
2433 unused. They MUST be zero when sent and MUST be ignored when
2434 received." */
2435 flag = 0xF0 & stream_getc(BGP_INPUT(peer));
2436 type = stream_getc(BGP_INPUT(peer));
2437
2438 /* Check whether Extended-Length applies and is in bounds */
2439 if (CHECK_FLAG(flag, BGP_ATTR_FLAG_EXTLEN)
2440 && ((endp - startp) < (BGP_ATTR_MIN_LEN + 1))) {
2441 flog_warn(
2442 EC_BGP_EXT_ATTRIBUTE_TOO_SMALL,
2443 "%s: Extended length set, but just %lu bytes of attr header",
2444 peer->host,
2445 (unsigned long)(endp
2446 - stream_pnt(BGP_INPUT(peer))));
2447
2448 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2449 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
2450 return BGP_ATTR_PARSE_ERROR;
2451 }
2452
2453 /* Check extended attribue length bit. */
2454 if (CHECK_FLAG(flag, BGP_ATTR_FLAG_EXTLEN))
2455 length = stream_getw(BGP_INPUT(peer));
2456 else
2457 length = stream_getc(BGP_INPUT(peer));
2458
2459 /* If any attribute appears more than once in the UPDATE
2460 message, then the Error Subcode is set to Malformed Attribute
2461 List. */
2462
2463 if (CHECK_BITMAP(seen, type)) {
2464 flog_warn(
2465 EC_BGP_ATTRIBUTE_REPEATED,
2466 "%s: error BGP attribute type %d appears twice in a message",
2467 peer->host, type);
2468
2469 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2470 BGP_NOTIFY_UPDATE_MAL_ATTR);
2471 return BGP_ATTR_PARSE_ERROR;
2472 }
2473
2474 /* Set type to bitmap to check duplicate attribute. `type' is
2475 unsigned char so it never overflow bitmap range. */
2476
2477 SET_BITMAP(seen, type);
2478
2479 /* Overflow check. */
2480 attr_endp = BGP_INPUT_PNT(peer) + length;
2481
2482 if (attr_endp > endp) {
2483 flog_warn(
2484 EC_BGP_ATTRIBUTE_TOO_LARGE,
2485 "%s: BGP type %d length %d is too large, attribute total length is %d. attr_endp is %p. endp is %p",
2486 peer->host, type, length, size, attr_endp,
2487 endp);
2488 /*
2489 * RFC 4271 6.3
2490 * If any recognized attribute has an Attribute
2491 * Length that conflicts with the expected length
2492 * (based on the attribute type code), then the
2493 * Error Subcode MUST be set to Attribute Length
2494 * Error. The Data field MUST contain the erroneous
2495 * attribute (type, length, and value).
2496 * ----------
2497 * We do not currently have a good way to determine the
2498 * length of the attribute independent of the length
2499 * received in the message. Instead we send the
2500 * minimum between the amount of data we have and the
2501 * amount specified by the attribute length field.
2502 *
2503 * Instead of directly passing in the packet buffer and
2504 * offset we use the stream_get* functions to read into
2505 * a stack buffer, since they perform bounds checking
2506 * and we are working with untrusted data.
2507 */
2508 unsigned char ndata[BGP_MAX_PACKET_SIZE];
2509 memset(ndata, 0x00, sizeof(ndata));
2510 size_t lfl =
2511 CHECK_FLAG(flag, BGP_ATTR_FLAG_EXTLEN) ? 2 : 1;
2512 /* Rewind to end of flag field */
2513 stream_forward_getp(BGP_INPUT(peer), -(1 + lfl));
2514 /* Type */
2515 stream_get(&ndata[0], BGP_INPUT(peer), 1);
2516 /* Length */
2517 stream_get(&ndata[1], BGP_INPUT(peer), lfl);
2518 /* Value */
2519 size_t atl = attr_endp - startp;
2520 size_t ndl = MIN(atl, STREAM_READABLE(BGP_INPUT(peer)));
2521 stream_get(&ndata[lfl + 1], BGP_INPUT(peer), ndl);
2522
2523 bgp_notify_send_with_data(
2524 peer, BGP_NOTIFY_UPDATE_ERR,
2525 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR, ndata,
2526 ndl + lfl + 1);
2527
2528 return BGP_ATTR_PARSE_ERROR;
2529 }
2530
2531 struct bgp_attr_parser_args attr_args = {
2532 .peer = peer,
2533 .length = length,
2534 .attr = attr,
2535 .type = type,
2536 .flags = flag,
2537 .startp = startp,
2538 .total = attr_endp - startp,
2539 };
2540
2541
2542 /* If any recognized attribute has Attribute Flags that conflict
2543 with the Attribute Type Code, then the Error Subcode is set
2544 to
2545 Attribute Flags Error. The Data field contains the erroneous
2546 attribute (type, length and value). */
2547 if (bgp_attr_flag_invalid(&attr_args)) {
2548 ret = bgp_attr_malformed(
2549 &attr_args, BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR,
2550 attr_args.total);
2551 if (ret == BGP_ATTR_PARSE_PROCEED)
2552 continue;
2553 return ret;
2554 }
2555
2556 /* OK check attribute and store it's value. */
2557 switch (type) {
2558 case BGP_ATTR_ORIGIN:
2559 ret = bgp_attr_origin(&attr_args);
2560 break;
2561 case BGP_ATTR_AS_PATH:
2562 ret = bgp_attr_aspath(&attr_args);
2563 break;
2564 case BGP_ATTR_AS4_PATH:
2565 ret = bgp_attr_as4_path(&attr_args, &as4_path);
2566 break;
2567 case BGP_ATTR_NEXT_HOP:
2568 ret = bgp_attr_nexthop(&attr_args);
2569 break;
2570 case BGP_ATTR_MULTI_EXIT_DISC:
2571 ret = bgp_attr_med(&attr_args);
2572 break;
2573 case BGP_ATTR_LOCAL_PREF:
2574 ret = bgp_attr_local_pref(&attr_args);
2575 break;
2576 case BGP_ATTR_ATOMIC_AGGREGATE:
2577 ret = bgp_attr_atomic(&attr_args);
2578 break;
2579 case BGP_ATTR_AGGREGATOR:
2580 ret = bgp_attr_aggregator(&attr_args);
2581 break;
2582 case BGP_ATTR_AS4_AGGREGATOR:
2583 ret = bgp_attr_as4_aggregator(&attr_args,
2584 &as4_aggregator,
2585 &as4_aggregator_addr);
2586 break;
2587 case BGP_ATTR_COMMUNITIES:
2588 ret = bgp_attr_community(&attr_args);
2589 break;
2590 case BGP_ATTR_LARGE_COMMUNITIES:
2591 ret = bgp_attr_large_community(&attr_args);
2592 break;
2593 case BGP_ATTR_ORIGINATOR_ID:
2594 ret = bgp_attr_originator_id(&attr_args);
2595 break;
2596 case BGP_ATTR_CLUSTER_LIST:
2597 ret = bgp_attr_cluster_list(&attr_args);
2598 break;
2599 case BGP_ATTR_MP_REACH_NLRI:
2600 ret = bgp_mp_reach_parse(&attr_args, mp_update);
2601 break;
2602 case BGP_ATTR_MP_UNREACH_NLRI:
2603 ret = bgp_mp_unreach_parse(&attr_args, mp_withdraw);
2604 break;
2605 case BGP_ATTR_EXT_COMMUNITIES:
2606 ret = bgp_attr_ext_communities(&attr_args);
2607 break;
2608 #if ENABLE_BGP_VNC_ATTR
2609 case BGP_ATTR_VNC:
2610 #endif
2611 case BGP_ATTR_ENCAP:
2612 ret = bgp_attr_encap(type, peer, length, attr, flag,
2613 startp);
2614 break;
2615 case BGP_ATTR_PREFIX_SID:
2616 ret = bgp_attr_prefix_sid(length,
2617 &attr_args, mp_update);
2618 break;
2619 case BGP_ATTR_PMSI_TUNNEL:
2620 ret = bgp_attr_pmsi_tunnel(&attr_args);
2621 break;
2622 default:
2623 ret = bgp_attr_unknown(&attr_args);
2624 break;
2625 }
2626
2627 if (ret == BGP_ATTR_PARSE_ERROR_NOTIFYPLS) {
2628 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2629 BGP_NOTIFY_UPDATE_MAL_ATTR);
2630 ret = BGP_ATTR_PARSE_ERROR;
2631 }
2632
2633 if (ret == BGP_ATTR_PARSE_EOR) {
2634 if (as4_path)
2635 aspath_unintern(&as4_path);
2636 return ret;
2637 }
2638
2639 /* If hard error occurred immediately return to the caller. */
2640 if (ret == BGP_ATTR_PARSE_ERROR) {
2641 flog_warn(EC_BGP_ATTRIBUTE_PARSE_ERROR,
2642 "%s: Attribute %s, parse error", peer->host,
2643 lookup_msg(attr_str, type, NULL));
2644 if (as4_path)
2645 aspath_unintern(&as4_path);
2646 return ret;
2647 }
2648 if (ret == BGP_ATTR_PARSE_WITHDRAW) {
2649
2650 flog_warn(
2651 EC_BGP_ATTRIBUTE_PARSE_WITHDRAW,
2652 "%s: Attribute %s, parse error - treating as withdrawal",
2653 peer->host, lookup_msg(attr_str, type, NULL));
2654 if (as4_path)
2655 aspath_unintern(&as4_path);
2656 return ret;
2657 }
2658
2659 /* Check the fetched length. */
2660 if (BGP_INPUT_PNT(peer) != attr_endp) {
2661 flog_warn(EC_BGP_ATTRIBUTE_FETCH_ERROR,
2662 "%s: BGP attribute %s, fetch error",
2663 peer->host, lookup_msg(attr_str, type, NULL));
2664 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2665 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
2666 if (as4_path)
2667 aspath_unintern(&as4_path);
2668 return BGP_ATTR_PARSE_ERROR;
2669 }
2670 }
2671
2672 /* Check final read pointer is same as end pointer. */
2673 if (BGP_INPUT_PNT(peer) != endp) {
2674 flog_warn(EC_BGP_ATTRIBUTES_MISMATCH,
2675 "%s: BGP attribute %s, length mismatch", peer->host,
2676 lookup_msg(attr_str, type, NULL));
2677 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2678 BGP_NOTIFY_UPDATE_ATTR_LENG_ERR);
2679 if (as4_path)
2680 aspath_unintern(&as4_path);
2681 return BGP_ATTR_PARSE_ERROR;
2682 }
2683
2684 /* Check all mandatory well-known attributes are present */
2685 if ((ret = bgp_attr_check(peer, attr)) < 0) {
2686 if (as4_path)
2687 aspath_unintern(&as4_path);
2688 return ret;
2689 }
2690
2691 /*
2692 * At this place we can see whether we got AS4_PATH and/or
2693 * AS4_AGGREGATOR from a 16Bit peer and act accordingly.
2694 * We can not do this before we've read all attributes because
2695 * the as4 handling does not say whether AS4_PATH has to be sent
2696 * after AS_PATH or not - and when AS4_AGGREGATOR will be send
2697 * in relationship to AGGREGATOR.
2698 * So, to be defensive, we are not relying on any order and read
2699 * all attributes first, including these 32bit ones, and now,
2700 * afterwards, we look what and if something is to be done for as4.
2701 *
2702 * It is possible to not have AS_PATH, e.g. GR EoR and sole
2703 * MP_UNREACH_NLRI.
2704 */
2705 /* actually... this doesn't ever return failure currently, but
2706 * better safe than sorry */
2707 if (CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_AS_PATH))
2708 && bgp_attr_munge_as4_attrs(peer, attr, as4_path, as4_aggregator,
2709 &as4_aggregator_addr)) {
2710 bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
2711 BGP_NOTIFY_UPDATE_MAL_ATTR);
2712 if (as4_path)
2713 aspath_unintern(&as4_path);
2714 return BGP_ATTR_PARSE_ERROR;
2715 }
2716
2717 /* At this stage, we have done all fiddling with as4, and the
2718 * resulting info is in attr->aggregator resp. attr->aspath
2719 * so we can chuck as4_aggregator and as4_path alltogether in
2720 * order to save memory
2721 */
2722 if (as4_path) {
2723 aspath_unintern(&as4_path); /* unintern - it is in the hash */
2724 /* The flag that we got this is still there, but that does not
2725 * do any trouble
2726 */
2727 }
2728 /*
2729 * The "rest" of the code does nothing with as4_aggregator.
2730 * there is no memory attached specifically which is not part
2731 * of the attr.
2732 * so ignoring just means do nothing.
2733 */
2734 /*
2735 * Finally do the checks on the aspath we did not do yet
2736 * because we waited for a potentially synthesized aspath.
2737 */
2738 if (attr->flag & (ATTR_FLAG_BIT(BGP_ATTR_AS_PATH))) {
2739 ret = bgp_attr_aspath_check(peer, attr);
2740 if (ret != BGP_ATTR_PARSE_PROCEED)
2741 return ret;
2742 }
2743 /* Finally intern unknown attribute. */
2744 if (attr->transit)
2745 attr->transit = transit_intern(attr->transit);
2746 if (attr->encap_subtlvs)
2747 attr->encap_subtlvs =
2748 encap_intern(attr->encap_subtlvs, ENCAP_SUBTLV_TYPE);
2749 #if ENABLE_BGP_VNC
2750 if (attr->vnc_subtlvs)
2751 attr->vnc_subtlvs =
2752 encap_intern(attr->vnc_subtlvs, VNC_SUBTLV_TYPE);
2753 #endif
2754
2755 return BGP_ATTR_PARSE_PROCEED;
2756 }
2757
2758 size_t bgp_packet_mpattr_start(struct stream *s, struct peer *peer, afi_t afi,
2759 safi_t safi, struct bpacket_attr_vec_arr *vecarr,
2760 struct attr *attr)
2761 {
2762 size_t sizep;
2763 iana_afi_t pkt_afi;
2764 iana_safi_t pkt_safi;
2765 afi_t nh_afi;
2766
2767 /* Set extended bit always to encode the attribute length as 2 bytes */
2768 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_EXTLEN);
2769 stream_putc(s, BGP_ATTR_MP_REACH_NLRI);
2770 sizep = stream_get_endp(s);
2771 stream_putw(s, 0); /* Marker: Attribute length. */
2772
2773
2774 /* Convert AFI, SAFI to values for packet. */
2775 bgp_map_afi_safi_int2iana(afi, safi, &pkt_afi, &pkt_safi);
2776
2777 stream_putw(s, pkt_afi); /* AFI */
2778 stream_putc(s, pkt_safi); /* SAFI */
2779
2780 /* Nexthop AFI */
2781 if (afi == AFI_IP
2782 && (safi == SAFI_UNICAST || safi == SAFI_LABELED_UNICAST))
2783 nh_afi = peer_cap_enhe(peer, afi, safi) ? AFI_IP6 : AFI_IP;
2784 else
2785 nh_afi = BGP_NEXTHOP_AFI_FROM_NHLEN(attr->mp_nexthop_len);
2786
2787 /* Nexthop */
2788 bpacket_attr_vec_arr_set_vec(vecarr, BGP_ATTR_VEC_NH, s, attr);
2789 switch (nh_afi) {
2790 case AFI_IP:
2791 switch (safi) {
2792 case SAFI_UNICAST:
2793 case SAFI_MULTICAST:
2794 case SAFI_LABELED_UNICAST:
2795 stream_putc(s, 4);
2796 stream_put_ipv4(s, attr->nexthop.s_addr);
2797 break;
2798 case SAFI_MPLS_VPN:
2799 stream_putc(s, 12);
2800 stream_putl(s, 0); /* RD = 0, per RFC */
2801 stream_putl(s, 0);
2802 stream_put(s, &attr->mp_nexthop_global_in, 4);
2803 break;
2804 case SAFI_ENCAP:
2805 case SAFI_EVPN:
2806 stream_putc(s, 4);
2807 stream_put(s, &attr->mp_nexthop_global_in, 4);
2808 break;
2809 case SAFI_FLOWSPEC:
2810 stream_putc(s, 0); /* no nexthop for flowspec */
2811 default:
2812 break;
2813 }
2814 break;
2815 case AFI_IP6:
2816 switch (safi) {
2817 case SAFI_UNICAST:
2818 case SAFI_MULTICAST:
2819 case SAFI_LABELED_UNICAST:
2820 case SAFI_EVPN: {
2821 if (attr->mp_nexthop_len
2822 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL) {
2823 stream_putc(s,
2824 BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL);
2825 stream_put(s, &attr->mp_nexthop_global,
2826 IPV6_MAX_BYTELEN);
2827 stream_put(s, &attr->mp_nexthop_local,
2828 IPV6_MAX_BYTELEN);
2829 } else {
2830 stream_putc(s, IPV6_MAX_BYTELEN);
2831 stream_put(s, &attr->mp_nexthop_global,
2832 IPV6_MAX_BYTELEN);
2833 }
2834 } break;
2835 case SAFI_MPLS_VPN: {
2836 if (attr->mp_nexthop_len
2837 == BGP_ATTR_NHLEN_IPV6_GLOBAL) {
2838 stream_putc(s, 24);
2839 stream_putl(s, 0); /* RD = 0, per RFC */
2840 stream_putl(s, 0);
2841 stream_put(s, &attr->mp_nexthop_global,
2842 IPV6_MAX_BYTELEN);
2843 } else if (attr->mp_nexthop_len
2844 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL) {
2845 stream_putc(s, 48);
2846 stream_putl(s, 0); /* RD = 0, per RFC */
2847 stream_putl(s, 0);
2848 stream_put(s, &attr->mp_nexthop_global,
2849 IPV6_MAX_BYTELEN);
2850 stream_putl(s, 0); /* RD = 0, per RFC */
2851 stream_putl(s, 0);
2852 stream_put(s, &attr->mp_nexthop_local,
2853 IPV6_MAX_BYTELEN);
2854 }
2855 } break;
2856 case SAFI_ENCAP:
2857 stream_putc(s, IPV6_MAX_BYTELEN);
2858 stream_put(s, &attr->mp_nexthop_global,
2859 IPV6_MAX_BYTELEN);
2860 break;
2861 case SAFI_FLOWSPEC:
2862 stream_putc(s, 0); /* no nexthop for flowspec */
2863 default:
2864 break;
2865 }
2866 break;
2867 default:
2868 if (safi != SAFI_FLOWSPEC)
2869 flog_err(
2870 EC_BGP_ATTR_NH_SEND_LEN,
2871 "Bad nexthop when sending to %s, AFI %u SAFI %u nhlen %d",
2872 peer->host, afi, safi, attr->mp_nexthop_len);
2873 break;
2874 }
2875
2876 /* SNPA */
2877 stream_putc(s, 0);
2878 return sizep;
2879 }
2880
2881 void bgp_packet_mpattr_prefix(struct stream *s, afi_t afi, safi_t safi,
2882 struct prefix *p, struct prefix_rd *prd,
2883 mpls_label_t *label, uint32_t num_labels,
2884 int addpath_encode, uint32_t addpath_tx_id,
2885 struct attr *attr)
2886 {
2887 if (safi == SAFI_MPLS_VPN) {
2888 if (addpath_encode)
2889 stream_putl(s, addpath_tx_id);
2890 /* Label, RD, Prefix write. */
2891 stream_putc(s, p->prefixlen + 88);
2892 stream_put(s, label, BGP_LABEL_BYTES);
2893 stream_put(s, prd->val, 8);
2894 stream_put(s, &p->u.prefix, PSIZE(p->prefixlen));
2895 } else if (afi == AFI_L2VPN && safi == SAFI_EVPN) {
2896 /* EVPN prefix - contents depend on type */
2897 bgp_evpn_encode_prefix(s, p, prd, label, num_labels, attr,
2898 addpath_encode, addpath_tx_id);
2899 } else if (safi == SAFI_LABELED_UNICAST) {
2900 /* Prefix write with label. */
2901 stream_put_labeled_prefix(s, p, label);
2902 } else if (safi == SAFI_FLOWSPEC) {
2903 if (PSIZE (p->prefixlen)+2 < FLOWSPEC_NLRI_SIZELIMIT)
2904 stream_putc(s, PSIZE (p->prefixlen)+2);
2905 else
2906 stream_putw(s, (PSIZE (p->prefixlen)+2)|(0xf<<12));
2907 stream_putc(s, 2);/* Filter type */
2908 stream_putc(s, p->prefixlen);/* Prefix length */
2909 stream_put(s, &p->u.prefix, PSIZE (p->prefixlen));
2910 } else
2911 stream_put_prefix_addpath(s, p, addpath_encode, addpath_tx_id);
2912 }
2913
2914 size_t bgp_packet_mpattr_prefix_size(afi_t afi, safi_t safi, struct prefix *p)
2915 {
2916 int size = PSIZE(p->prefixlen);
2917 if (safi == SAFI_MPLS_VPN)
2918 size += 88;
2919 else if (afi == AFI_L2VPN && safi == SAFI_EVPN)
2920 size += 232; // TODO: Maximum possible for type-2, type-3 and
2921 // type-5
2922 return size;
2923 }
2924
2925 /*
2926 * Encodes the tunnel encapsulation attribute,
2927 * and with ENABLE_BGP_VNC the VNC attribute which uses
2928 * almost the same TLV format
2929 */
2930 static void bgp_packet_mpattr_tea(struct bgp *bgp, struct peer *peer,
2931 struct stream *s, struct attr *attr,
2932 uint8_t attrtype)
2933 {
2934 unsigned int attrlenfield = 0;
2935 unsigned int attrhdrlen = 0;
2936 struct bgp_attr_encap_subtlv *subtlvs;
2937 struct bgp_attr_encap_subtlv *st;
2938 const char *attrname;
2939
2940 if (!attr || (attrtype == BGP_ATTR_ENCAP
2941 && (!attr->encap_tunneltype
2942 || attr->encap_tunneltype == BGP_ENCAP_TYPE_MPLS)))
2943 return;
2944
2945 switch (attrtype) {
2946 case BGP_ATTR_ENCAP:
2947 attrname = "Tunnel Encap";
2948 subtlvs = attr->encap_subtlvs;
2949 if (subtlvs == NULL) /* nothing to do */
2950 return;
2951 /*
2952 * The tunnel encap attr has an "outer" tlv.
2953 * T = tunneltype,
2954 * L = total length of subtlvs,
2955 * V = concatenated subtlvs.
2956 */
2957 attrlenfield = 2 + 2; /* T + L */
2958 attrhdrlen = 1 + 1; /* subTLV T + L */
2959 break;
2960
2961 #if ENABLE_BGP_VNC_ATTR
2962 case BGP_ATTR_VNC:
2963 attrname = "VNC";
2964 subtlvs = attr->vnc_subtlvs;
2965 if (subtlvs == NULL) /* nothing to do */
2966 return;
2967 attrlenfield = 0; /* no outer T + L */
2968 attrhdrlen = 2 + 2; /* subTLV T + L */
2969 break;
2970 #endif
2971
2972 default:
2973 assert(0);
2974 }
2975
2976 /* compute attr length */
2977 for (st = subtlvs; st; st = st->next) {
2978 attrlenfield += (attrhdrlen + st->length);
2979 }
2980
2981 if (attrlenfield > 0xffff) {
2982 zlog_info("%s attribute is too long (length=%d), can't send it",
2983 attrname, attrlenfield);
2984 return;
2985 }
2986
2987 if (attrlenfield > 0xff) {
2988 /* 2-octet length field */
2989 stream_putc(s,
2990 BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL
2991 | BGP_ATTR_FLAG_EXTLEN);
2992 stream_putc(s, attrtype);
2993 stream_putw(s, attrlenfield & 0xffff);
2994 } else {
2995 /* 1-octet length field */
2996 stream_putc(s, BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL);
2997 stream_putc(s, attrtype);
2998 stream_putc(s, attrlenfield & 0xff);
2999 }
3000
3001 if (attrtype == BGP_ATTR_ENCAP) {
3002 /* write outer T+L */
3003 stream_putw(s, attr->encap_tunneltype);
3004 stream_putw(s, attrlenfield - 4);
3005 }
3006
3007 /* write each sub-tlv */
3008 for (st = subtlvs; st; st = st->next) {
3009 if (attrtype == BGP_ATTR_ENCAP) {
3010 stream_putc(s, st->type);
3011 stream_putc(s, st->length);
3012 #if ENABLE_BGP_VNC
3013 } else {
3014 stream_putw(s, st->type);
3015 stream_putw(s, st->length);
3016 #endif
3017 }
3018 stream_put(s, st->value, st->length);
3019 }
3020 }
3021
3022 void bgp_packet_mpattr_end(struct stream *s, size_t sizep)
3023 {
3024 /* Set MP attribute length. Don't count the (2) bytes used to encode
3025 the attr length */
3026 stream_putw_at(s, sizep, (stream_get_endp(s) - sizep) - 2);
3027 }
3028
3029 /* Make attribute packet. */
3030 bgp_size_t bgp_packet_attribute(struct bgp *bgp, struct peer *peer,
3031 struct stream *s, struct attr *attr,
3032 struct bpacket_attr_vec_arr *vecarr,
3033 struct prefix *p, afi_t afi, safi_t safi,
3034 struct peer *from, struct prefix_rd *prd,
3035 mpls_label_t *label, uint32_t num_labels,
3036 int addpath_encode, uint32_t addpath_tx_id)
3037 {
3038 size_t cp;
3039 size_t aspath_sizep;
3040 struct aspath *aspath;
3041 int send_as4_path = 0;
3042 int send_as4_aggregator = 0;
3043 int use32bit = (CHECK_FLAG(peer->cap, PEER_CAP_AS4_RCV)) ? 1 : 0;
3044
3045 if (!bgp)
3046 bgp = peer->bgp;
3047
3048 /* Remember current pointer. */
3049 cp = stream_get_endp(s);
3050
3051 if (p
3052 && !((afi == AFI_IP && safi == SAFI_UNICAST)
3053 && !peer_cap_enhe(peer, afi, safi))) {
3054 size_t mpattrlen_pos = 0;
3055
3056 mpattrlen_pos = bgp_packet_mpattr_start(s, peer, afi, safi,
3057 vecarr, attr);
3058 bgp_packet_mpattr_prefix(s, afi, safi, p, prd, label,
3059 num_labels, addpath_encode,
3060 addpath_tx_id, attr);
3061 bgp_packet_mpattr_end(s, mpattrlen_pos);
3062 }
3063
3064 /* Origin attribute. */
3065 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3066 stream_putc(s, BGP_ATTR_ORIGIN);
3067 stream_putc(s, 1);
3068 stream_putc(s, attr->origin);
3069
3070 /* AS path attribute. */
3071
3072 /* If remote-peer is EBGP */
3073 if (peer->sort == BGP_PEER_EBGP
3074 && (!CHECK_FLAG(peer->af_flags[afi][safi],
3075 PEER_FLAG_AS_PATH_UNCHANGED)
3076 || attr->aspath->segments == NULL)
3077 && (!CHECK_FLAG(peer->af_flags[afi][safi],
3078 PEER_FLAG_RSERVER_CLIENT))) {
3079 aspath = aspath_dup(attr->aspath);
3080
3081 /* Even though we may not be configured for confederations we
3082 * may have
3083 * RXed an AS_PATH with AS_CONFED_SEQUENCE or AS_CONFED_SET */
3084 aspath = aspath_delete_confed_seq(aspath);
3085
3086 if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION)) {
3087 /* Stuff our path CONFED_ID on the front */
3088 aspath = aspath_add_seq(aspath, bgp->confed_id);
3089 } else {
3090 if (peer->change_local_as) {
3091 /* If replace-as is specified, we only use the
3092 change_local_as when
3093 advertising routes. */
3094 if (!CHECK_FLAG(
3095 peer->flags,
3096 PEER_FLAG_LOCAL_AS_REPLACE_AS)) {
3097 aspath = aspath_add_seq(aspath,
3098 peer->local_as);
3099 }
3100 aspath = aspath_add_seq(aspath,
3101 peer->change_local_as);
3102 } else {
3103 aspath = aspath_add_seq(aspath, peer->local_as);
3104 }
3105 }
3106 } else if (peer->sort == BGP_PEER_CONFED) {
3107 /* A confed member, so we need to do the AS_CONFED_SEQUENCE
3108 * thing */
3109 aspath = aspath_dup(attr->aspath);
3110 aspath = aspath_add_confed_seq(aspath, peer->local_as);
3111 } else
3112 aspath = attr->aspath;
3113
3114 /* If peer is not AS4 capable, then:
3115 * - send the created AS_PATH out as AS4_PATH (optional, transitive),
3116 * but ensure that no AS_CONFED_SEQUENCE and AS_CONFED_SET path
3117 * segment
3118 * types are in it (i.e. exclude them if they are there)
3119 * AND do this only if there is at least one asnum > 65535 in the
3120 * path!
3121 * - send an AS_PATH out, but put 16Bit ASnums in it, not 32bit, and
3122 * change
3123 * all ASnums > 65535 to BGP_AS_TRANS
3124 */
3125
3126 stream_putc(s, BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_EXTLEN);
3127 stream_putc(s, BGP_ATTR_AS_PATH);
3128 aspath_sizep = stream_get_endp(s);
3129 stream_putw(s, 0);
3130 stream_putw_at(s, aspath_sizep, aspath_put(s, aspath, use32bit));
3131
3132 /* OLD session may need NEW_AS_PATH sent, if there are 4-byte ASNs
3133 * in the path
3134 */
3135 if (!use32bit && aspath_has_as4(aspath))
3136 send_as4_path =
3137 1; /* we'll do this later, at the correct place */
3138
3139 /* Nexthop attribute. */
3140 if (afi == AFI_IP && safi == SAFI_UNICAST
3141 && !peer_cap_enhe(peer, afi, safi)) {
3142 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP)) {
3143 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3144 stream_putc(s, BGP_ATTR_NEXT_HOP);
3145 bpacket_attr_vec_arr_set_vec(vecarr, BGP_ATTR_VEC_NH, s,
3146 attr);
3147 stream_putc(s, 4);
3148 stream_put_ipv4(s, attr->nexthop.s_addr);
3149 } else if (peer_cap_enhe(from, afi, safi)) {
3150 /*
3151 * Likely this is the case when an IPv4 prefix was
3152 * received with
3153 * Extended Next-hop capability and now being advertised
3154 * to
3155 * non-ENHE peers.
3156 * Setting the mandatory (ipv4) next-hop attribute here
3157 * to enable
3158 * implicit next-hop self with correct (ipv4 address
3159 * family).
3160 */
3161 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3162 stream_putc(s, BGP_ATTR_NEXT_HOP);
3163 bpacket_attr_vec_arr_set_vec(vecarr, BGP_ATTR_VEC_NH, s,
3164 NULL);
3165 stream_putc(s, 4);
3166 stream_put_ipv4(s, 0);
3167 }
3168 }
3169
3170 /* MED attribute. */
3171 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC)
3172 || bgp->maxmed_active) {
3173 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
3174 stream_putc(s, BGP_ATTR_MULTI_EXIT_DISC);
3175 stream_putc(s, 4);
3176 stream_putl(s, (bgp->maxmed_active ? bgp->maxmed_value
3177 : attr->med));
3178 }
3179
3180 /* Local preference. */
3181 if (peer->sort == BGP_PEER_IBGP || peer->sort == BGP_PEER_CONFED) {
3182 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3183 stream_putc(s, BGP_ATTR_LOCAL_PREF);
3184 stream_putc(s, 4);
3185 stream_putl(s, attr->local_pref);
3186 }
3187
3188 /* Atomic aggregate. */
3189 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE)) {
3190 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3191 stream_putc(s, BGP_ATTR_ATOMIC_AGGREGATE);
3192 stream_putc(s, 0);
3193 }
3194
3195 /* Aggregator. */
3196 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR)) {
3197 /* Common to BGP_ATTR_AGGREGATOR, regardless of ASN size */
3198 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
3199 stream_putc(s, BGP_ATTR_AGGREGATOR);
3200
3201 if (use32bit) {
3202 /* AS4 capable peer */
3203 stream_putc(s, 8);
3204 stream_putl(s, attr->aggregator_as);
3205 } else {
3206 /* 2-byte AS peer */
3207 stream_putc(s, 6);
3208
3209 /* Is ASN representable in 2-bytes? Or must AS_TRANS be
3210 * used? */
3211 if (attr->aggregator_as > 65535) {
3212 stream_putw(s, BGP_AS_TRANS);
3213
3214 /* we have to send AS4_AGGREGATOR, too.
3215 * we'll do that later in order to send
3216 * attributes in ascending
3217 * order.
3218 */
3219 send_as4_aggregator = 1;
3220 } else
3221 stream_putw(s, (uint16_t)attr->aggregator_as);
3222 }
3223 stream_put_ipv4(s, attr->aggregator_addr.s_addr);
3224 }
3225
3226 /* Community attribute. */
3227 if (CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_SEND_COMMUNITY)
3228 && (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES))) {
3229 if (attr->community->size * 4 > 255) {
3230 stream_putc(s,
3231 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
3232 | BGP_ATTR_FLAG_EXTLEN);
3233 stream_putc(s, BGP_ATTR_COMMUNITIES);
3234 stream_putw(s, attr->community->size * 4);
3235 } else {
3236 stream_putc(s,
3237 BGP_ATTR_FLAG_OPTIONAL
3238 | BGP_ATTR_FLAG_TRANS);
3239 stream_putc(s, BGP_ATTR_COMMUNITIES);
3240 stream_putc(s, attr->community->size * 4);
3241 }
3242 stream_put(s, attr->community->val, attr->community->size * 4);
3243 }
3244
3245 /*
3246 * Large Community attribute.
3247 */
3248 if (CHECK_FLAG(peer->af_flags[afi][safi],
3249 PEER_FLAG_SEND_LARGE_COMMUNITY)
3250 && (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES))) {
3251 if (lcom_length(attr->lcommunity) > 255) {
3252 stream_putc(s,
3253 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
3254 | BGP_ATTR_FLAG_EXTLEN);
3255 stream_putc(s, BGP_ATTR_LARGE_COMMUNITIES);
3256 stream_putw(s, lcom_length(attr->lcommunity));
3257 } else {
3258 stream_putc(s,
3259 BGP_ATTR_FLAG_OPTIONAL
3260 | BGP_ATTR_FLAG_TRANS);
3261 stream_putc(s, BGP_ATTR_LARGE_COMMUNITIES);
3262 stream_putc(s, lcom_length(attr->lcommunity));
3263 }
3264 stream_put(s, attr->lcommunity->val,
3265 lcom_length(attr->lcommunity));
3266 }
3267
3268 /* Route Reflector. */
3269 if (peer->sort == BGP_PEER_IBGP && from
3270 && from->sort == BGP_PEER_IBGP) {
3271 /* Originator ID. */
3272 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
3273 stream_putc(s, BGP_ATTR_ORIGINATOR_ID);
3274 stream_putc(s, 4);
3275
3276 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
3277 stream_put_in_addr(s, &attr->originator_id);
3278 else
3279 stream_put_in_addr(s, &from->remote_id);
3280
3281 /* Cluster list. */
3282 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
3283 stream_putc(s, BGP_ATTR_CLUSTER_LIST);
3284
3285 if (attr->cluster) {
3286 stream_putc(s, attr->cluster->length + 4);
3287 /* If this peer configuration's parent BGP has
3288 * cluster_id. */
3289 if (bgp->config & BGP_CONFIG_CLUSTER_ID)
3290 stream_put_in_addr(s, &bgp->cluster_id);
3291 else
3292 stream_put_in_addr(s, &bgp->router_id);
3293 stream_put(s, attr->cluster->list,
3294 attr->cluster->length);
3295 } else {
3296 stream_putc(s, 4);
3297 /* If this peer configuration's parent BGP has
3298 * cluster_id. */
3299 if (bgp->config & BGP_CONFIG_CLUSTER_ID)
3300 stream_put_in_addr(s, &bgp->cluster_id);
3301 else
3302 stream_put_in_addr(s, &bgp->router_id);
3303 }
3304 }
3305
3306 /* Extended Communities attribute. */
3307 if (CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_SEND_EXT_COMMUNITY)
3308 && (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES))) {
3309 if (peer->sort == BGP_PEER_IBGP
3310 || peer->sort == BGP_PEER_CONFED) {
3311 if (attr->ecommunity->size * 8 > 255) {
3312 stream_putc(s,
3313 BGP_ATTR_FLAG_OPTIONAL
3314 | BGP_ATTR_FLAG_TRANS
3315 | BGP_ATTR_FLAG_EXTLEN);
3316 stream_putc(s, BGP_ATTR_EXT_COMMUNITIES);
3317 stream_putw(s, attr->ecommunity->size * 8);
3318 } else {
3319 stream_putc(s,
3320 BGP_ATTR_FLAG_OPTIONAL
3321 | BGP_ATTR_FLAG_TRANS);
3322 stream_putc(s, BGP_ATTR_EXT_COMMUNITIES);
3323 stream_putc(s, attr->ecommunity->size * 8);
3324 }
3325 stream_put(s, attr->ecommunity->val,
3326 attr->ecommunity->size * 8);
3327 } else {
3328 uint8_t *pnt;
3329 int tbit;
3330 int ecom_tr_size = 0;
3331 int i;
3332
3333 for (i = 0; i < attr->ecommunity->size; i++) {
3334 pnt = attr->ecommunity->val + (i * 8);
3335 tbit = *pnt;
3336
3337 if (CHECK_FLAG(tbit,
3338 ECOMMUNITY_FLAG_NON_TRANSITIVE))
3339 continue;
3340
3341 ecom_tr_size++;
3342 }
3343
3344 if (ecom_tr_size) {
3345 if (ecom_tr_size * 8 > 255) {
3346 stream_putc(
3347 s,
3348 BGP_ATTR_FLAG_OPTIONAL
3349 | BGP_ATTR_FLAG_TRANS
3350 | BGP_ATTR_FLAG_EXTLEN);
3351 stream_putc(s,
3352 BGP_ATTR_EXT_COMMUNITIES);
3353 stream_putw(s, ecom_tr_size * 8);
3354 } else {
3355 stream_putc(
3356 s,
3357 BGP_ATTR_FLAG_OPTIONAL
3358 | BGP_ATTR_FLAG_TRANS);
3359 stream_putc(s,
3360 BGP_ATTR_EXT_COMMUNITIES);
3361 stream_putc(s, ecom_tr_size * 8);
3362 }
3363
3364 for (i = 0; i < attr->ecommunity->size; i++) {
3365 pnt = attr->ecommunity->val + (i * 8);
3366 tbit = *pnt;
3367
3368 if (CHECK_FLAG(
3369 tbit,
3370 ECOMMUNITY_FLAG_NON_TRANSITIVE))
3371 continue;
3372
3373 stream_put(s, pnt, 8);
3374 }
3375 }
3376 }
3377 }
3378
3379 /* Label index attribute. */
3380 if (safi == SAFI_LABELED_UNICAST) {
3381 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID)) {
3382 uint32_t label_index;
3383
3384 label_index = attr->label_index;
3385
3386 if (label_index != BGP_INVALID_LABEL_INDEX) {
3387 stream_putc(s,
3388 BGP_ATTR_FLAG_OPTIONAL
3389 | BGP_ATTR_FLAG_TRANS);
3390 stream_putc(s, BGP_ATTR_PREFIX_SID);
3391 stream_putc(s, 10);
3392 stream_putc(s, BGP_PREFIX_SID_LABEL_INDEX);
3393 stream_putw(s,
3394 BGP_PREFIX_SID_LABEL_INDEX_LENGTH);
3395 stream_putc(s, 0); // reserved
3396 stream_putw(s, 0); // flags
3397 stream_putl(s, label_index);
3398 }
3399 }
3400 }
3401
3402 if (send_as4_path) {
3403 /* If the peer is NOT As4 capable, AND */
3404 /* there are ASnums > 65535 in path THEN
3405 * give out AS4_PATH */
3406
3407 /* Get rid of all AS_CONFED_SEQUENCE and AS_CONFED_SET
3408 * path segments!
3409 * Hm, I wonder... confederation things *should* only be at
3410 * the beginning of an aspath, right? Then we should use
3411 * aspath_delete_confed_seq for this, because it is already
3412 * there! (JK)
3413 * Folks, talk to me: what is reasonable here!?
3414 */
3415 aspath = aspath_delete_confed_seq(aspath);
3416
3417 stream_putc(s,
3418 BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_OPTIONAL
3419 | BGP_ATTR_FLAG_EXTLEN);
3420 stream_putc(s, BGP_ATTR_AS4_PATH);
3421 aspath_sizep = stream_get_endp(s);
3422 stream_putw(s, 0);
3423 stream_putw_at(s, aspath_sizep, aspath_put(s, aspath, 1));
3424 }
3425
3426 if (aspath != attr->aspath)
3427 aspath_free(aspath);
3428
3429 if (send_as4_aggregator) {
3430 /* send AS4_AGGREGATOR, at this place */
3431 /* this section of code moved here in order to ensure the
3432 * correct
3433 * *ascending* order of attributes
3434 */
3435 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
3436 stream_putc(s, BGP_ATTR_AS4_AGGREGATOR);
3437 stream_putc(s, 8);
3438 stream_putl(s, attr->aggregator_as);
3439 stream_put_ipv4(s, attr->aggregator_addr.s_addr);
3440 }
3441
3442 if (((afi == AFI_IP || afi == AFI_IP6)
3443 && (safi == SAFI_ENCAP || safi == SAFI_MPLS_VPN))
3444 || (afi == AFI_L2VPN && safi == SAFI_EVPN)) {
3445 /* Tunnel Encap attribute */
3446 bgp_packet_mpattr_tea(bgp, peer, s, attr, BGP_ATTR_ENCAP);
3447
3448 #if ENABLE_BGP_VNC_ATTR
3449 /* VNC attribute */
3450 bgp_packet_mpattr_tea(bgp, peer, s, attr, BGP_ATTR_VNC);
3451 #endif
3452 }
3453
3454 /* PMSI Tunnel */
3455 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL)) {
3456 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
3457 stream_putc(s, BGP_ATTR_PMSI_TUNNEL);
3458 stream_putc(s, 9); // Length
3459 stream_putc(s, 0); // Flags
3460 stream_putc(s, attr->pmsi_tnl_type);
3461 stream_put(s, &(attr->label),
3462 BGP_LABEL_BYTES); // MPLS Label / VXLAN VNI
3463 stream_put_ipv4(s, attr->nexthop.s_addr);
3464 // Unicast tunnel endpoint IP address
3465 }
3466
3467 /* Unknown transit attribute. */
3468 if (attr->transit)
3469 stream_put(s, attr->transit->val, attr->transit->length);
3470
3471 /* Return total size of attribute. */
3472 return stream_get_endp(s) - cp;
3473 }
3474
3475 size_t bgp_packet_mpunreach_start(struct stream *s, afi_t afi, safi_t safi)
3476 {
3477 unsigned long attrlen_pnt;
3478 iana_afi_t pkt_afi;
3479 iana_safi_t pkt_safi;
3480
3481 /* Set extended bit always to encode the attribute length as 2 bytes */
3482 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_EXTLEN);
3483 stream_putc(s, BGP_ATTR_MP_UNREACH_NLRI);
3484
3485 attrlen_pnt = stream_get_endp(s);
3486 stream_putw(s, 0); /* Length of this attribute. */
3487
3488 /* Convert AFI, SAFI to values for packet. */
3489 bgp_map_afi_safi_int2iana(afi, safi, &pkt_afi, &pkt_safi);
3490
3491 stream_putw(s, pkt_afi);
3492 stream_putc(s, pkt_safi);
3493
3494 return attrlen_pnt;
3495 }
3496
3497 void bgp_packet_mpunreach_prefix(struct stream *s, struct prefix *p, afi_t afi,
3498 safi_t safi, struct prefix_rd *prd,
3499 mpls_label_t *label, uint32_t num_labels,
3500 int addpath_encode, uint32_t addpath_tx_id,
3501 struct attr *attr)
3502 {
3503 uint8_t wlabel[3] = {0x80, 0x00, 0x00};
3504
3505 if (safi == SAFI_LABELED_UNICAST) {
3506 label = (mpls_label_t *)wlabel;
3507 num_labels = 1;
3508 }
3509
3510 bgp_packet_mpattr_prefix(s, afi, safi, p, prd, label, num_labels,
3511 addpath_encode, addpath_tx_id, attr);
3512 }
3513
3514 void bgp_packet_mpunreach_end(struct stream *s, size_t attrlen_pnt)
3515 {
3516 bgp_packet_mpattr_end(s, attrlen_pnt);
3517 }
3518
3519 /* Initialization of attribute. */
3520 void bgp_attr_init(void)
3521 {
3522 aspath_init();
3523 attrhash_init();
3524 community_init();
3525 ecommunity_init();
3526 lcommunity_init();
3527 cluster_init();
3528 transit_init();
3529 encap_init();
3530 }
3531
3532 void bgp_attr_finish(void)
3533 {
3534 aspath_finish();
3535 attrhash_finish();
3536 community_finish();
3537 ecommunity_finish();
3538 lcommunity_finish();
3539 cluster_finish();
3540 transit_finish();
3541 encap_finish();
3542 }
3543
3544 /* Make attribute packet. */
3545 void bgp_dump_routes_attr(struct stream *s, struct attr *attr,
3546 struct prefix *prefix)
3547 {
3548 unsigned long cp;
3549 unsigned long len;
3550 size_t aspath_lenp;
3551 struct aspath *aspath;
3552 int addpath_encode = 0;
3553 uint32_t addpath_tx_id = 0;
3554
3555 /* Remember current pointer. */
3556 cp = stream_get_endp(s);
3557
3558 /* Place holder of length. */
3559 stream_putw(s, 0);
3560
3561 /* Origin attribute. */
3562 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3563 stream_putc(s, BGP_ATTR_ORIGIN);
3564 stream_putc(s, 1);
3565 stream_putc(s, attr->origin);
3566
3567 aspath = attr->aspath;
3568
3569 stream_putc(s, BGP_ATTR_FLAG_TRANS | BGP_ATTR_FLAG_EXTLEN);
3570 stream_putc(s, BGP_ATTR_AS_PATH);
3571 aspath_lenp = stream_get_endp(s);
3572 stream_putw(s, 0);
3573
3574 stream_putw_at(s, aspath_lenp, aspath_put(s, aspath, 1));
3575
3576 /* Nexthop attribute. */
3577 /* If it's an IPv6 prefix, don't dump the IPv4 nexthop to save space */
3578 if (prefix != NULL && prefix->family != AF_INET6) {
3579 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3580 stream_putc(s, BGP_ATTR_NEXT_HOP);
3581 stream_putc(s, 4);
3582 stream_put_ipv4(s, attr->nexthop.s_addr);
3583 }
3584
3585 /* MED attribute. */
3586 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC)) {
3587 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
3588 stream_putc(s, BGP_ATTR_MULTI_EXIT_DISC);
3589 stream_putc(s, 4);
3590 stream_putl(s, attr->med);
3591 }
3592
3593 /* Local preference. */
3594 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF)) {
3595 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3596 stream_putc(s, BGP_ATTR_LOCAL_PREF);
3597 stream_putc(s, 4);
3598 stream_putl(s, attr->local_pref);
3599 }
3600
3601 /* Atomic aggregate. */
3602 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE)) {
3603 stream_putc(s, BGP_ATTR_FLAG_TRANS);
3604 stream_putc(s, BGP_ATTR_ATOMIC_AGGREGATE);
3605 stream_putc(s, 0);
3606 }
3607
3608 /* Aggregator. */
3609 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR)) {
3610 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS);
3611 stream_putc(s, BGP_ATTR_AGGREGATOR);
3612 stream_putc(s, 8);
3613 stream_putl(s, attr->aggregator_as);
3614 stream_put_ipv4(s, attr->aggregator_addr.s_addr);
3615 }
3616
3617 /* Community attribute. */
3618 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES)) {
3619 if (attr->community->size * 4 > 255) {
3620 stream_putc(s,
3621 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
3622 | BGP_ATTR_FLAG_EXTLEN);
3623 stream_putc(s, BGP_ATTR_COMMUNITIES);
3624 stream_putw(s, attr->community->size * 4);
3625 } else {
3626 stream_putc(s,
3627 BGP_ATTR_FLAG_OPTIONAL
3628 | BGP_ATTR_FLAG_TRANS);
3629 stream_putc(s, BGP_ATTR_COMMUNITIES);
3630 stream_putc(s, attr->community->size * 4);
3631 }
3632 stream_put(s, attr->community->val, attr->community->size * 4);
3633 }
3634
3635 /* Large Community attribute. */
3636 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES)) {
3637 if (lcom_length(attr->lcommunity) > 255) {
3638 stream_putc(s,
3639 BGP_ATTR_FLAG_OPTIONAL | BGP_ATTR_FLAG_TRANS
3640 | BGP_ATTR_FLAG_EXTLEN);
3641 stream_putc(s, BGP_ATTR_LARGE_COMMUNITIES);
3642 stream_putw(s, lcom_length(attr->lcommunity));
3643 } else {
3644 stream_putc(s,
3645 BGP_ATTR_FLAG_OPTIONAL
3646 | BGP_ATTR_FLAG_TRANS);
3647 stream_putc(s, BGP_ATTR_LARGE_COMMUNITIES);
3648 stream_putc(s, lcom_length(attr->lcommunity));
3649 }
3650
3651 stream_put(s, attr->lcommunity->val,
3652 lcom_length(attr->lcommunity));
3653 }
3654
3655 /* Add a MP_NLRI attribute to dump the IPv6 next hop */
3656 if (prefix != NULL && prefix->family == AF_INET6
3657 && (attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL
3658 || attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL)) {
3659 int sizep;
3660
3661 stream_putc(s, BGP_ATTR_FLAG_OPTIONAL);
3662 stream_putc(s, BGP_ATTR_MP_REACH_NLRI);
3663 sizep = stream_get_endp(s);
3664
3665 /* MP header */
3666 stream_putc(s, 0); /* Marker: Attribute length. */
3667 stream_putw(s, AFI_IP6); /* AFI */
3668 stream_putc(s, SAFI_UNICAST); /* SAFI */
3669
3670 /* Next hop */
3671 stream_putc(s, attr->mp_nexthop_len);
3672 stream_put(s, &attr->mp_nexthop_global, IPV6_MAX_BYTELEN);
3673 if (attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL)
3674 stream_put(s, &attr->mp_nexthop_local,
3675 IPV6_MAX_BYTELEN);
3676
3677 /* SNPA */
3678 stream_putc(s, 0);
3679
3680 /* Prefix */
3681 stream_put_prefix_addpath(s, prefix, addpath_encode,
3682 addpath_tx_id);
3683
3684 /* Set MP attribute length. */
3685 stream_putc_at(s, sizep, (stream_get_endp(s) - sizep) - 1);
3686 }
3687
3688 /* Prefix SID */
3689 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID)) {
3690 if (attr->label_index != BGP_INVALID_LABEL_INDEX) {
3691 stream_putc(s,
3692 BGP_ATTR_FLAG_OPTIONAL
3693 | BGP_ATTR_FLAG_TRANS);
3694 stream_putc(s, BGP_ATTR_PREFIX_SID);
3695 stream_putc(s, 10);
3696 stream_putc(s, BGP_PREFIX_SID_LABEL_INDEX);
3697 stream_putc(s, BGP_PREFIX_SID_LABEL_INDEX_LENGTH);
3698 stream_putc(s, 0); // reserved
3699 stream_putw(s, 0); // flags
3700 stream_putl(s, attr->label_index);
3701 }
3702 }
3703
3704 /* Return total size of attribute. */
3705 len = stream_get_endp(s) - cp - 2;
3706 stream_putw_at(s, cp, len);
3707 }