]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_updgrp_packet.c
*: use clang's 'ForEachMacros' format style option
[mirror_frr.git] / bgpd / bgp_updgrp_packet.c
CommitLineData
3f9c7369
DS
1/**
2 * bgp_updgrp_packet.c: BGP update group packet handling routines
3 *
4 * @copyright Copyright (C) 2014 Cumulus Networks, Inc.
5 *
6 * @author Avneesh Sachdev <avneesh@sproute.net>
7 * @author Rajesh Varadarajan <rajesh@sproute.net>
8 * @author Pradosh Mohapatra <pradosh@sproute.net>
9 *
10 * This file is part of GNU Zebra.
11 *
12 * GNU Zebra is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2, or (at your option) any
15 * later version.
16 *
17 * GNU Zebra is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
896014f4
DL
22 * You should have received a copy of the GNU General Public License along
23 * with this program; see the file COPYING; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3f9c7369
DS
25 */
26
27#include <zebra.h>
28
29#include "prefix.h"
30#include "thread.h"
31#include "buffer.h"
32#include "stream.h"
33#include "command.h"
34#include "sockunion.h"
35#include "network.h"
36#include "memory.h"
37#include "filter.h"
38#include "routemap.h"
3f9c7369
DS
39#include "log.h"
40#include "plist.h"
41#include "linklist.h"
42#include "workqueue.h"
43#include "hash.h"
44#include "queue.h"
cd1964ff 45#include "mpls.h"
3f9c7369
DS
46
47#include "bgpd/bgpd.h"
48#include "bgpd/bgp_debug.h"
49#include "bgpd/bgp_fsm.h"
50#include "bgpd/bgp_route.h"
51#include "bgpd/bgp_packet.h"
52#include "bgpd/bgp_advertise.h"
53#include "bgpd/bgp_updgrp.h"
54#include "bgpd/bgp_nexthop.h"
55#include "bgpd/bgp_nht.h"
906ad49b 56#include "bgpd/bgp_mplsvpn.h"
cd1964ff 57#include "bgpd/bgp_label.h"
3f9c7369
DS
58
59/********************
60 * PRIVATE FUNCTIONS
61 ********************/
62
63/********************
64 * PUBLIC FUNCTIONS
65 ********************/
d62a17ae 66struct bpacket *bpacket_alloc()
3f9c7369 67{
d62a17ae 68 struct bpacket *pkt;
3f9c7369 69
d62a17ae 70 pkt = (struct bpacket *)XCALLOC(MTYPE_BGP_PACKET,
71 sizeof(struct bpacket));
3f9c7369 72
d62a17ae 73 return pkt;
3f9c7369
DS
74}
75
d62a17ae 76void bpacket_free(struct bpacket *pkt)
3f9c7369 77{
d62a17ae 78 if (pkt->buffer)
79 stream_free(pkt->buffer);
80 pkt->buffer = NULL;
81 XFREE(MTYPE_BGP_PACKET, pkt);
3f9c7369
DS
82}
83
d62a17ae 84void bpacket_queue_init(struct bpacket_queue *q)
3f9c7369 85{
d62a17ae 86 TAILQ_INIT(&(q->pkts));
3f9c7369
DS
87}
88
89/*
90 * bpacket_queue_sanity_check
91 */
d62a17ae 92void bpacket_queue_sanity_check(struct bpacket_queue __attribute__((__unused__))
93 * q)
3f9c7369
DS
94{
95#if 0
96 struct bpacket *pkt;
97
98 pkt = bpacket_queue_last (q);
99 assert (pkt);
100 assert (!pkt->buffer);
101
102 /*
103 * Make sure the count of packets is correct.
104 */
105 int num_pkts = 0;
106
107 pkt = bpacket_queue_first (q);
108 while (pkt)
109 {
110 num_pkts++;
111
112 if (num_pkts > q->curr_count)
113 assert (0);
114
115 pkt = TAILQ_NEXT (pkt, pkt_train);
116 }
117
118 assert (num_pkts == q->curr_count);
119#endif
120}
121
122/*
123 * bpacket_queue_add_packet
124 *
125 * Internal function of bpacket_queue - and adds a
126 * packet entry to the end of the list.
127 *
128 * Users of bpacket_queue should use bpacket_queue_add instead.
129 */
d62a17ae 130static void bpacket_queue_add_packet(struct bpacket_queue *q,
131 struct bpacket *pkt)
3f9c7369 132{
d62a17ae 133 struct bpacket *last_pkt;
3f9c7369 134
d62a17ae 135 if (TAILQ_EMPTY(&(q->pkts)))
136 TAILQ_INSERT_TAIL(&(q->pkts), pkt, pkt_train);
137 else {
138 last_pkt = bpacket_queue_last(q);
139 TAILQ_INSERT_AFTER(&(q->pkts), last_pkt, pkt, pkt_train);
140 }
141 q->curr_count++;
142 if (q->hwm_count < q->curr_count)
143 q->hwm_count = q->curr_count;
3f9c7369
DS
144}
145
146/*
147 * Adds a packet to the bpacket_queue.
148 *
149 * The stream passed is consumed by this function. So, the caller should
150 * not free or use the stream after
151 * invoking this function.
152 */
d62a17ae 153struct bpacket *bpacket_queue_add(struct bpacket_queue *q, struct stream *s,
154 struct bpacket_attr_vec_arr *vecarrp)
3f9c7369 155{
d62a17ae 156 struct bpacket *pkt;
157 struct bpacket *last_pkt;
158
159
160 pkt = bpacket_alloc();
161 if (TAILQ_EMPTY(&(q->pkts))) {
162 pkt->ver = 1;
163 pkt->buffer = s;
164 if (vecarrp)
165 memcpy(&pkt->arr, vecarrp,
166 sizeof(struct bpacket_attr_vec_arr));
167 else
168 bpacket_attr_vec_arr_reset(&pkt->arr);
169 bpacket_queue_add_packet(q, pkt);
170 bpacket_queue_sanity_check(q);
171 return pkt;
172 }
3f9c7369 173
d62a17ae 174 /*
175 * Fill in the new information into the current sentinel and create a
176 * new sentinel.
177 */
178 bpacket_queue_sanity_check(q);
179 last_pkt = bpacket_queue_last(q);
180 assert(last_pkt->buffer == NULL);
181 last_pkt->buffer = s;
182 if (vecarrp)
183 memcpy(&last_pkt->arr, vecarrp,
184 sizeof(struct bpacket_attr_vec_arr));
185 else
186 bpacket_attr_vec_arr_reset(&last_pkt->arr);
187
188 pkt->ver = last_pkt->ver;
189 pkt->ver++;
190 bpacket_queue_add_packet(q, pkt);
191
192 bpacket_queue_sanity_check(q);
193 return last_pkt;
3f9c7369
DS
194}
195
d62a17ae 196struct bpacket *bpacket_queue_first(struct bpacket_queue *q)
3f9c7369 197{
d62a17ae 198 return (TAILQ_FIRST(&(q->pkts)));
3f9c7369
DS
199}
200
d62a17ae 201struct bpacket *bpacket_queue_last(struct bpacket_queue *q)
3f9c7369 202{
d62a17ae 203 return TAILQ_LAST(&(q->pkts), pkt_queue);
3f9c7369
DS
204}
205
d62a17ae 206struct bpacket *bpacket_queue_remove(struct bpacket_queue *q)
3f9c7369 207{
d62a17ae 208 struct bpacket *first;
3f9c7369 209
d62a17ae 210 first = bpacket_queue_first(q);
211 if (first) {
212 TAILQ_REMOVE(&(q->pkts), first, pkt_train);
213 q->curr_count--;
214 }
215 return first;
3f9c7369
DS
216}
217
d62a17ae 218unsigned int bpacket_queue_length(struct bpacket_queue *q)
3f9c7369 219{
d62a17ae 220 return q->curr_count - 1;
3f9c7369
DS
221}
222
d62a17ae 223unsigned int bpacket_queue_hwm_length(struct bpacket_queue *q)
3f9c7369 224{
d62a17ae 225 return q->hwm_count - 1;
3f9c7369
DS
226}
227
d62a17ae 228int bpacket_queue_is_full(struct bgp *bgp, struct bpacket_queue *q)
3f9c7369 229{
d62a17ae 230 if (q->curr_count >= bgp->default_subgroup_pkt_queue_max)
231 return 1;
232 return 0;
3f9c7369
DS
233}
234
d62a17ae 235void bpacket_add_peer(struct bpacket *pkt, struct peer_af *paf)
3f9c7369 236{
d62a17ae 237 if (!pkt || !paf)
238 return;
3f9c7369 239
d62a17ae 240 LIST_INSERT_HEAD(&(pkt->peers), paf, pkt_train);
241 paf->next_pkt_to_send = pkt;
3f9c7369
DS
242}
243
244/*
245 * bpacket_queue_cleanup
246 */
d62a17ae 247void bpacket_queue_cleanup(struct bpacket_queue *q)
3f9c7369 248{
d62a17ae 249 struct bpacket *pkt;
3f9c7369 250
d62a17ae 251 while ((pkt = bpacket_queue_remove(q))) {
252 bpacket_free(pkt);
253 }
3f9c7369
DS
254}
255
256/*
257 * bpacket_queue_compact
258 *
259 * Delete packets that do not need to be transmitted to any peer from
260 * the queue.
261 *
262 * @return the number of packets deleted.
263 */
d62a17ae 264static int bpacket_queue_compact(struct bpacket_queue *q)
3f9c7369 265{
d62a17ae 266 int num_deleted;
267 struct bpacket *pkt, *removed_pkt;
3f9c7369 268
d62a17ae 269 num_deleted = 0;
3f9c7369 270
d62a17ae 271 while (1) {
272 pkt = bpacket_queue_first(q);
273 if (!pkt)
274 break;
3f9c7369 275
d62a17ae 276 /*
277 * Don't delete the sentinel.
278 */
279 if (!pkt->buffer)
280 break;
3f9c7369 281
d62a17ae 282 if (!LIST_EMPTY(&(pkt->peers)))
283 break;
3f9c7369 284
d62a17ae 285 removed_pkt = bpacket_queue_remove(q);
286 assert(pkt == removed_pkt);
287 bpacket_free(removed_pkt);
3f9c7369 288
d62a17ae 289 num_deleted++;
290 }
3f9c7369 291
d62a17ae 292 bpacket_queue_sanity_check(q);
293 return num_deleted;
3f9c7369
DS
294}
295
d62a17ae 296void bpacket_queue_advance_peer(struct peer_af *paf)
3f9c7369 297{
d62a17ae 298 struct bpacket *pkt;
299 struct bpacket *old_pkt;
300
301 old_pkt = paf->next_pkt_to_send;
302 if (old_pkt->buffer == NULL)
303 /* Already at end of list */
304 return;
305
306 LIST_REMOVE(paf, pkt_train);
307 pkt = TAILQ_NEXT(old_pkt, pkt_train);
308 bpacket_add_peer(pkt, paf);
309
310 if (!bpacket_queue_compact(PAF_PKTQ(paf)))
311 return;
312
313 /*
314 * Deleted one or more packets. Check if we can now merge this
315 * peer's subgroup into another subgroup.
316 */
317 update_subgroup_check_merge(paf->subgroup, "advanced peer in queue");
3f9c7369
DS
318}
319
320/*
321 * bpacket_queue_remove_peer
322 *
323 * Remove the peer from the packet queue of the subgroup it belongs
324 * to.
325 */
d62a17ae 326void bpacket_queue_remove_peer(struct peer_af *paf)
3f9c7369 327{
d62a17ae 328 struct bpacket_queue *q;
3f9c7369 329
d62a17ae 330 q = PAF_PKTQ(paf);
331 assert(q);
332 if (!q)
333 return;
3f9c7369 334
d62a17ae 335 LIST_REMOVE(paf, pkt_train);
336 paf->next_pkt_to_send = NULL;
3f9c7369 337
d62a17ae 338 bpacket_queue_compact(q);
3f9c7369
DS
339}
340
d62a17ae 341unsigned int bpacket_queue_virtual_length(struct peer_af *paf)
3f9c7369 342{
d62a17ae 343 struct bpacket *pkt;
344 struct bpacket *last;
345 struct bpacket_queue *q;
3f9c7369 346
d62a17ae 347 pkt = paf->next_pkt_to_send;
348 if (!pkt || (pkt->buffer == NULL))
349 /* Already at end of list */
350 return 0;
3f9c7369 351
d62a17ae 352 q = PAF_PKTQ(paf);
353 if (TAILQ_EMPTY(&(q->pkts)))
354 return 0;
3f9c7369 355
d62a17ae 356 last = TAILQ_LAST(&(q->pkts), pkt_queue);
357 if (last->ver >= pkt->ver)
358 return last->ver - pkt->ver;
3f9c7369 359
d62a17ae 360 /* sequence # rolled over */
361 return (UINT_MAX - pkt->ver + 1) + last->ver;
3f9c7369
DS
362}
363
364/*
365 * Dump the bpacket queue
366 */
d62a17ae 367void bpacket_queue_show_vty(struct bpacket_queue *q, struct vty *vty)
3f9c7369 368{
d62a17ae 369 struct bpacket *pkt;
370 struct peer_af *paf;
371
372 pkt = bpacket_queue_first(q);
373 while (pkt) {
374 vty_out(vty, " Packet %p ver %u buffer %p\n", pkt, pkt->ver,
375 pkt->buffer);
376
a2addae8 377 LIST_FOREACH (paf, &(pkt->peers), pkt_train) {
d62a17ae 378 vty_out(vty, " - %s\n", paf->peer->host);
379 }
380 pkt = bpacket_next(pkt);
381 }
382 return;
3f9c7369
DS
383}
384
d62a17ae 385struct stream *bpacket_reformat_for_peer(struct bpacket *pkt,
386 struct peer_af *paf)
3f9c7369 387{
d62a17ae 388 struct stream *s = NULL;
389 bpacket_attr_vec *vec;
390 struct peer *peer;
391 char buf[BUFSIZ];
392 char buf2[BUFSIZ];
393
394 s = stream_dup(pkt->buffer);
395 peer = PAF_PEER(paf);
396
397 vec = &pkt->arr.entries[BGP_ATTR_VEC_NH];
398 if (CHECK_FLAG(vec->flags, BPKT_ATTRVEC_FLAGS_UPDATED)) {
399 u_int8_t nhlen;
400 afi_t nhafi = AFI_MAX; /* NH AFI is based on nhlen! */
401 int route_map_sets_nh;
402 nhlen = stream_getc_from(s, vec->offset);
403 if (peer_cap_enhe(peer, paf->afi, paf->safi))
404 nhafi = AFI_IP6;
405 else
406 nhafi = BGP_NEXTHOP_AFI_FROM_NHLEN(nhlen);
407
408 if (nhafi == AFI_IP) {
409 struct in_addr v4nh, *mod_v4nh;
410 int nh_modified = 0;
411 size_t offset_nh = vec->offset + 1;
412
413 route_map_sets_nh =
414 (CHECK_FLAG(
415 vec->flags,
416 BPKT_ATTRVEC_FLAGS_RMAP_IPV4_NH_CHANGED)
417 || CHECK_FLAG(
418 vec->flags,
419 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS));
420
421 switch (nhlen) {
422 case BGP_ATTR_NHLEN_IPV4:
423 break;
424 case BGP_ATTR_NHLEN_VPNV4:
425 offset_nh += 8;
426 break;
427 default:
428 /* TODO: handle IPv6 nexthops */
429 zlog_warn(
430 "%s: %s: invalid MP nexthop length (AFI IP): %u",
431 __func__, peer->host, nhlen);
432 stream_free(s);
433 return NULL;
434 }
435
436 stream_get_from(&v4nh, s, offset_nh, IPV4_MAX_BYTELEN);
437 mod_v4nh = &v4nh;
438
439 /*
440 * If route-map has set the nexthop, that is always
441 * used; if it is
442 * specified as peer-address, the peering address is
443 * picked up.
444 * Otherwise, if NH is unavailable from attribute, the
445 * peering addr
446 * is picked up; the "NH unavailable" case also covers
447 * next-hop-self
448 * and some other scenarios -- see
449 * subgroup_announce_check(). In
450 * all other cases, use the nexthop carried in the
451 * attribute unless
452 * it is EBGP non-multiaccess and there is no
453 * next-hop-unchanged setting.
454 * Note: It is assumed route-map cannot set the nexthop
455 * to an
456 * invalid value.
457 */
458 if (route_map_sets_nh) {
459 if (CHECK_FLAG(
460 vec->flags,
461 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS)) {
462 mod_v4nh = &peer->nexthop.v4;
463 nh_modified = 1;
464 }
465 } else if (!v4nh.s_addr) {
466 mod_v4nh = &peer->nexthop.v4;
467 nh_modified = 1;
468 } else if (
469 peer->sort == BGP_PEER_EBGP
470 && paf->safi != SAFI_EVPN
471 && (bgp_multiaccess_check_v4(v4nh, peer) == 0)
472 && !CHECK_FLAG(
473 vec->flags,
474 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED)
475 && !peer_af_flag_check(
476 peer, nhafi, paf->safi,
477 PEER_FLAG_NEXTHOP_UNCHANGED)) {
478 /* NOTE: not handling case where NH has new AFI
479 */
480 mod_v4nh = &peer->nexthop.v4;
481 nh_modified = 1;
482 }
483
484 if (nh_modified) /* allow for VPN RD */
485 stream_put_in_addr_at(s, offset_nh, mod_v4nh);
486
487 if (bgp_debug_update(peer, NULL, NULL, 0))
488 zlog_debug("u%" PRIu64 ":s%" PRIu64
489 " %s send UPDATE w/ nexthop %s%s",
490 PAF_SUBGRP(paf)->update_group->id,
491 PAF_SUBGRP(paf)->id, peer->host,
492 inet_ntoa(*mod_v4nh),
493 (nhlen == 12 ? " and RD" : ""));
494 } else if (nhafi == AFI_IP6) {
495 struct in6_addr v6nhglobal, *mod_v6nhg;
496 struct in6_addr v6nhlocal, *mod_v6nhl;
497 int gnh_modified, lnh_modified;
498 size_t offset_nhglobal = vec->offset + 1;
499 size_t offset_nhlocal = vec->offset + 1;
500
501 gnh_modified = lnh_modified = 0;
502 mod_v6nhg = &v6nhglobal;
503 mod_v6nhl = &v6nhlocal;
504
505 route_map_sets_nh =
506 (CHECK_FLAG(
507 vec->flags,
508 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_GNH_CHANGED)
509 || CHECK_FLAG(
510 vec->flags,
511 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS));
512
513 /*
514 * The logic here is rather similar to that for IPv4,
515 * the
516 * additional work being to handle 1 or 2 nexthops.
517 * Also, 3rd
518 * party nexthop is not propagated for EBGP right now.
519 */
520 switch (nhlen) {
521 case BGP_ATTR_NHLEN_IPV6_GLOBAL:
522 break;
523 case BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL:
524 offset_nhlocal += IPV6_MAX_BYTELEN;
525 break;
526 case BGP_ATTR_NHLEN_VPNV6_GLOBAL:
527 offset_nhglobal += 8;
528 break;
529 case BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL:
530 offset_nhglobal += 8;
531 offset_nhlocal += 8 * 2 + IPV6_MAX_BYTELEN;
532 break;
533 default:
534 /* TODO: handle IPv4 nexthops */
535 zlog_warn(
536 "%s: %s: invalid MP nexthop length (AFI IP6): %u",
537 __func__, peer->host, nhlen);
538 stream_free(s);
539 return NULL;
540 }
541
542 stream_get_from(&v6nhglobal, s, offset_nhglobal,
543 IPV6_MAX_BYTELEN);
544 if (route_map_sets_nh) {
545 if (CHECK_FLAG(
546 vec->flags,
547 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS)) {
548 mod_v6nhg = &peer->nexthop.v6_global;
549 gnh_modified = 1;
550 }
551 } else if (IN6_IS_ADDR_UNSPECIFIED(&v6nhglobal)) {
552 mod_v6nhg = &peer->nexthop.v6_global;
553 gnh_modified = 1;
554 } else if (
555 peer->sort == BGP_PEER_EBGP
556 && !CHECK_FLAG(
557 vec->flags,
558 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED)
559 && !peer_af_flag_check(
560 peer, nhafi, paf->safi,
561 PEER_FLAG_NEXTHOP_UNCHANGED)) {
562 /* NOTE: not handling case where NH has new AFI
563 */
564 mod_v6nhg = &peer->nexthop.v6_global;
565 gnh_modified = 1;
566 }
567
568
569 if (nhlen == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
570 || nhlen == BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL) {
571 stream_get_from(&v6nhlocal, s, offset_nhlocal,
572 IPV6_MAX_BYTELEN);
573 if (IN6_IS_ADDR_UNSPECIFIED(&v6nhlocal)) {
574 mod_v6nhl = &peer->nexthop.v6_local;
575 lnh_modified = 1;
576 }
577 }
578
579 if (gnh_modified)
580 stream_put_in6_addr_at(s, offset_nhglobal,
581 mod_v6nhg);
582 if (lnh_modified)
583 stream_put_in6_addr_at(s, offset_nhlocal,
584 mod_v6nhl);
585
586 if (bgp_debug_update(peer, NULL, NULL, 0)) {
587 if (nhlen == 32 || nhlen == 48)
588 zlog_debug(
589 "u%" PRIu64 ":s%" PRIu64
590 " %s send UPDATE w/ mp_nexthops %s, %s%s",
591 PAF_SUBGRP(paf)
592 ->update_group->id,
593 PAF_SUBGRP(paf)->id, peer->host,
594 inet_ntop(AF_INET6, mod_v6nhg,
595 buf, BUFSIZ),
596 inet_ntop(AF_INET6, mod_v6nhl,
597 buf2, BUFSIZ),
598 (nhlen == 48 ? " and RD" : ""));
599 else
600 zlog_debug(
601 "u%" PRIu64 ":s%" PRIu64
602 " %s send UPDATE w/ mp_nexthop %s%s",
603 PAF_SUBGRP(paf)
604 ->update_group->id,
605 PAF_SUBGRP(paf)->id, peer->host,
606 inet_ntop(AF_INET6, mod_v6nhg,
607 buf, BUFSIZ),
608 (nhlen == 24 ? " and RD" : ""));
609 }
610 } else if (paf->afi == AFI_L2VPN) {
611 struct in_addr v4nh, *mod_v4nh;
612 int nh_modified = 0;
613
614 stream_get_from(&v4nh, s, vec->offset + 1, 4);
615 mod_v4nh = &v4nh;
616
617 /* No route-map changes allowed for EVPN nexthops. */
618 if (!v4nh.s_addr) {
619 mod_v4nh = &peer->nexthop.v4;
620 nh_modified = 1;
621 }
622
623 if (nh_modified)
624 stream_put_in_addr_at(s, vec->offset + 1,
625 mod_v4nh);
626
627 if (bgp_debug_update(peer, NULL, NULL, 0))
628 zlog_debug("u%" PRIu64 ":s%" PRIu64
629 " %s send UPDATE w/ nexthop %s",
630 PAF_SUBGRP(paf)->update_group->id,
631 PAF_SUBGRP(paf)->id, peer->host,
632 inet_ntoa(*mod_v4nh));
633 }
3f9c7369 634 }
3f9c7369 635
d62a17ae 636 bgp_packet_add(peer, s);
637 return s;
3f9c7369
DS
638}
639
640/*
641 * Update the vecarr offsets to go beyond 'pos' bytes, i.e. add 'pos'
642 * to each offset.
643 */
d62a17ae 644static void bpacket_attr_vec_arr_update(struct bpacket_attr_vec_arr *vecarr,
645 size_t pos)
3f9c7369 646{
d62a17ae 647 int i;
3f9c7369 648
d62a17ae 649 if (!vecarr)
650 return;
3f9c7369 651
d62a17ae 652 for (i = 0; i < BGP_ATTR_VEC_MAX; i++)
653 vecarr->entries[i].offset += pos;
3f9c7369
DS
654}
655
656/*
657 * Return if there are packets to build for this subgroup.
658 */
d62a17ae 659int subgroup_packets_to_build(struct update_subgroup *subgrp)
3f9c7369 660{
d62a17ae 661 struct bgp_advertise *adv;
3f9c7369 662
d62a17ae 663 if (!subgrp)
664 return 0;
3f9c7369 665
d62a17ae 666 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw);
667 if (adv)
668 return 1;
3f9c7369 669
d62a17ae 670 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->update);
671 if (adv)
672 return 1;
3f9c7369 673
d62a17ae 674 return 0;
3f9c7369
DS
675}
676
677/* Make BGP update packet. */
d62a17ae 678struct bpacket *subgroup_update_packet(struct update_subgroup *subgrp)
3f9c7369 679{
d62a17ae 680 struct bpacket_attr_vec_arr vecarr;
681 struct bpacket *pkt;
682 struct peer *peer;
683 struct stream *s;
684 struct stream *snlri;
685 struct stream *packet;
686 struct bgp_adj_out *adj;
687 struct bgp_advertise *adv;
688 struct bgp_node *rn = NULL;
689 struct bgp_info *binfo = NULL;
690 bgp_size_t total_attr_len = 0;
691 unsigned long attrlen_pos = 0;
692 size_t mpattrlen_pos = 0;
693 size_t mpattr_pos = 0;
694 afi_t afi;
695 safi_t safi;
696 int space_remaining = 0;
697 int space_needed = 0;
698 char send_attr_str[BUFSIZ];
699 int send_attr_printed = 0;
700 int num_pfx = 0;
701 int addpath_encode = 0;
e386c1d5 702 int addpath_overhead = 0;
d62a17ae 703 u_int32_t addpath_tx_id = 0;
704 struct prefix_rd *prd = NULL;
705 mpls_label_t label = MPLS_INVALID_LABEL;
706
707 if (!subgrp)
708 return NULL;
3f9c7369 709
d62a17ae 710 if (bpacket_queue_is_full(SUBGRP_INST(subgrp), SUBGRP_PKTQ(subgrp)))
711 return NULL;
3f9c7369 712
d62a17ae 713 peer = SUBGRP_PEER(subgrp);
714 afi = SUBGRP_AFI(subgrp);
715 safi = SUBGRP_SAFI(subgrp);
716 s = subgrp->work;
717 stream_reset(s);
718 snlri = subgrp->scratch;
719 stream_reset(snlri);
720
721 bpacket_attr_vec_arr_reset(&vecarr);
722
723 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
e386c1d5 724 addpath_overhead = addpath_encode ? BGP_ADDPATH_ID_LEN : 0;
d62a17ae 725
726 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->update);
727 while (adv) {
728 assert(adv->rn);
729 rn = adv->rn;
730 adj = adv->adj;
731 addpath_tx_id = adj->addpath_tx_id;
732 binfo = adv->binfo;
733
734 space_remaining = STREAM_CONCAT_REMAIN(s, snlri, STREAM_SIZE(s))
735 - BGP_MAX_PACKET_SIZE_OVERFLOW;
e386c1d5
DW
736 space_needed = BGP_NLRI_LENGTH + addpath_overhead +
737 bgp_packet_mpattr_prefix_size(afi, safi, &rn->p);
d62a17ae 738
739 /* When remaining space can't include NLRI and it's length. */
740 if (space_remaining < space_needed)
741 break;
742
743 /* If packet is empty, set attribute. */
744 if (stream_empty(s)) {
745 struct peer *from = NULL;
746
747 if (binfo)
748 from = binfo->peer;
749
750 /* 1: Write the BGP message header - 16 bytes marker, 2
751 * bytes length,
752 * one byte message type.
753 */
754 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
755
756 /* 2: withdrawn routes length */
757 stream_putw(s, 0);
758
759 /* 3: total attributes length - attrlen_pos stores the
760 * position */
761 attrlen_pos = stream_get_endp(s);
762 stream_putw(s, 0);
763
764 /* 4: if there is MP_REACH_NLRI attribute, that should
765 * be the first
766 * attribute, according to
767 * draft-ietf-idr-error-handling. Save the
768 * position.
769 */
770 mpattr_pos = stream_get_endp(s);
771
772 /* 5: Encode all the attributes, except MP_REACH_NLRI
773 * attr. */
774 total_attr_len = bgp_packet_attribute(
775 NULL, peer, s, adv->baa->attr, &vecarr, NULL,
776 afi, safi, from, NULL, NULL, 0, 0);
777
778 space_remaining =
779 STREAM_CONCAT_REMAIN(s, snlri, STREAM_SIZE(s))
780 - BGP_MAX_PACKET_SIZE_OVERFLOW;
e386c1d5
DW
781 space_needed = BGP_NLRI_LENGTH + addpath_overhead +
782 bgp_packet_mpattr_prefix_size(afi, safi,
783 &rn->p);
d62a17ae 784
785 /* If the attributes alone do not leave any room for
786 * NLRI then
787 * return */
788 if (space_remaining < space_needed) {
789 zlog_err(
790 "u%" PRIu64 ":s%" PRIu64
791 " attributes too long, cannot send UPDATE",
792 subgrp->update_group->id, subgrp->id);
793
794 /* Flush the FIFO update queue */
795 while (adv)
796 adv = bgp_advertise_clean_subgroup(
797 subgrp, adj);
798 return NULL;
799 }
800
801 if (BGP_DEBUG(update, UPDATE_OUT)
802 || BGP_DEBUG(update, UPDATE_PREFIX)) {
803 memset(send_attr_str, 0, BUFSIZ);
804 send_attr_printed = 0;
805 bgp_dump_attr(adv->baa->attr, send_attr_str,
806 BUFSIZ);
807 }
808 }
809
810 if ((afi == AFI_IP && safi == SAFI_UNICAST)
811 && !peer_cap_enhe(peer, afi, safi))
812 stream_put_prefix_addpath(s, &rn->p, addpath_encode,
813 addpath_tx_id);
814 else {
815 /* Encode the prefix in MP_REACH_NLRI attribute */
816 if (rn->prn)
817 prd = (struct prefix_rd *)&rn->prn->p;
818
819 if (safi == SAFI_LABELED_UNICAST)
820 label = bgp_adv_label(rn, binfo, peer, afi,
821 safi);
822 else if (binfo && binfo->extra)
823 label = binfo->extra->label;
824
825 if (stream_empty(snlri))
826 mpattrlen_pos = bgp_packet_mpattr_start(
827 snlri, peer, afi, safi, &vecarr,
828 adv->baa->attr);
829
830 bgp_packet_mpattr_prefix(snlri, afi, safi, &rn->p, prd,
831 &label, addpath_encode,
832 addpath_tx_id, adv->baa->attr);
833 }
834
835 num_pfx++;
836
837 if (bgp_debug_update(NULL, &rn->p, subgrp->update_group, 0)) {
838 char pfx_buf[BGP_PRD_PATH_STRLEN];
839
840 if (!send_attr_printed) {
841 zlog_debug("u%" PRIu64 ":s%" PRIu64
842 " send UPDATE w/ attr: %s",
843 subgrp->update_group->id, subgrp->id,
844 send_attr_str);
845 if (!stream_empty(snlri)) {
846 iana_afi_t pkt_afi;
5c525538 847 iana_safi_t pkt_safi;
d62a17ae 848
849 pkt_afi = afi_int2iana(afi);
850 pkt_safi = safi_int2iana(safi);
851 zlog_debug(
852 "u%" PRIu64 ":s%" PRIu64
853 " send MP_REACH for afi/safi %d/%d",
854 subgrp->update_group->id,
855 subgrp->id, pkt_afi, pkt_safi);
856 }
857
858 send_attr_printed = 1;
859 }
860
861 bgp_debug_rdpfxpath2str(afi, safi, prd, &rn->p, &label,
862 addpath_encode, addpath_tx_id,
863 pfx_buf, sizeof(pfx_buf));
864 zlog_debug("u%" PRIu64 ":s%" PRIu64 " send UPDATE %s",
865 subgrp->update_group->id, subgrp->id,
866 pfx_buf);
867 }
868
869 /* Synchnorize attribute. */
870 if (adj->attr)
871 bgp_attr_unintern(&adj->attr);
872 else
873 subgrp->scount++;
874
875 adj->attr = bgp_attr_intern(adv->baa->attr);
876
877 adv = bgp_advertise_clean_subgroup(subgrp, adj);
3f9c7369
DS
878 }
879
d62a17ae 880 if (!stream_empty(s)) {
881 if (!stream_empty(snlri)) {
882 bgp_packet_mpattr_end(snlri, mpattrlen_pos);
883 total_attr_len += stream_get_endp(snlri);
884 }
885
886 /* set the total attribute length correctly */
887 stream_putw_at(s, attrlen_pos, total_attr_len);
888
889 if (!stream_empty(snlri)) {
890 packet = stream_dupcat(s, snlri, mpattr_pos);
891 bpacket_attr_vec_arr_update(&vecarr, mpattr_pos);
892 } else
893 packet = stream_dup(s);
894 bgp_packet_set_size(packet);
895 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
896 zlog_debug("u%" PRIu64 ":s%" PRIu64
897 " send UPDATE len %zd numpfx %d",
898 subgrp->update_group->id, subgrp->id,
899 (stream_get_endp(packet)
900 - stream_get_getp(packet)),
901 num_pfx);
902 pkt = bpacket_queue_add(SUBGRP_PKTQ(subgrp), packet, &vecarr);
903 stream_reset(s);
904 stream_reset(snlri);
905 return pkt;
3f9c7369 906 }
d62a17ae 907 return NULL;
3f9c7369
DS
908}
909
910/* Make BGP withdraw packet. */
911/* For ipv4 unicast:
912 16-octet marker | 2-octet length | 1-octet type |
913 2-octet withdrawn route length | withdrawn prefixes | 2-octet attrlen (=0)
914*/
915/* For other afi/safis:
916 16-octet marker | 2-octet length | 1-octet type |
917 2-octet withdrawn route length (=0) | 2-octet attrlen |
918 mp_unreach attr type | attr len | afi | safi | withdrawn prefixes
919*/
d62a17ae 920struct bpacket *subgroup_withdraw_packet(struct update_subgroup *subgrp)
3f9c7369 921{
d62a17ae 922 struct bpacket *pkt;
923 struct stream *s;
924 struct bgp_adj_out *adj;
925 struct bgp_advertise *adv;
926 struct peer *peer;
927 struct bgp_node *rn;
928 bgp_size_t unfeasible_len;
929 bgp_size_t total_attr_len;
930 size_t mp_start = 0;
931 size_t attrlen_pos = 0;
932 size_t mplen_pos = 0;
933 u_char first_time = 1;
934 afi_t afi;
935 safi_t safi;
936 int space_remaining = 0;
937 int space_needed = 0;
938 int num_pfx = 0;
939 int addpath_encode = 0;
e386c1d5 940 int addpath_overhead = 0;
d62a17ae 941 u_int32_t addpath_tx_id = 0;
942 struct prefix_rd *prd = NULL;
943
944
945 if (!subgrp)
946 return NULL;
3f9c7369 947
d62a17ae 948 if (bpacket_queue_is_full(SUBGRP_INST(subgrp), SUBGRP_PKTQ(subgrp)))
949 return NULL;
906ad49b 950
d62a17ae 951 peer = SUBGRP_PEER(subgrp);
952 afi = SUBGRP_AFI(subgrp);
953 safi = SUBGRP_SAFI(subgrp);
954 s = subgrp->work;
955 stream_reset(s);
956 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
e386c1d5 957 addpath_overhead = addpath_encode ? BGP_ADDPATH_ID_LEN : 0;
d62a17ae 958
959 while ((adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw)) != NULL) {
960 assert(adv->rn);
961 adj = adv->adj;
962 rn = adv->rn;
963 addpath_tx_id = adj->addpath_tx_id;
964
965 space_remaining =
966 STREAM_REMAIN(s) - BGP_MAX_PACKET_SIZE_OVERFLOW;
967 space_needed =
e386c1d5 968 BGP_NLRI_LENGTH + addpath_overhead + BGP_TOTAL_ATTR_LEN
d62a17ae 969 + bgp_packet_mpattr_prefix_size(afi, safi, &rn->p);
970
971 if (space_remaining < space_needed)
972 break;
973
974 if (stream_empty(s)) {
975 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
976 stream_putw(s, 0); /* unfeasible routes length */
977 } else
978 first_time = 0;
979
980 if (afi == AFI_IP && safi == SAFI_UNICAST
981 && !peer_cap_enhe(peer, afi, safi))
982 stream_put_prefix_addpath(s, &rn->p, addpath_encode,
983 addpath_tx_id);
984 else {
985 if (rn->prn)
986 prd = (struct prefix_rd *)&rn->prn->p;
987
988 /* If first time, format the MP_UNREACH header */
989 if (first_time) {
990 iana_afi_t pkt_afi;
5c525538 991 iana_safi_t pkt_safi;
d62a17ae 992
993 pkt_afi = afi_int2iana(afi);
994 pkt_safi = safi_int2iana(safi);
995
996 attrlen_pos = stream_get_endp(s);
997 /* total attr length = 0 for now. reevaluate
998 * later */
999 stream_putw(s, 0);
1000 mp_start = stream_get_endp(s);
1001 mplen_pos = bgp_packet_mpunreach_start(s, afi,
1002 safi);
1003 if (bgp_debug_update(NULL, NULL,
1004 subgrp->update_group, 0))
1005 zlog_debug(
1006 "u%" PRIu64 ":s%" PRIu64
1007 " send MP_UNREACH for afi/safi %d/%d",
1008 subgrp->update_group->id,
1009 subgrp->id, pkt_afi, pkt_safi);
1010 }
1011
1012 bgp_packet_mpunreach_prefix(s, &rn->p, afi, safi, prd,
1013 NULL, addpath_encode,
1014 addpath_tx_id, NULL);
1015 }
1016
1017 num_pfx++;
1018
1019 if (bgp_debug_update(NULL, &rn->p, subgrp->update_group, 0)) {
1020 char pfx_buf[BGP_PRD_PATH_STRLEN];
1021
1022 bgp_debug_rdpfxpath2str(afi, safi, prd, &rn->p, NULL,
1023 addpath_encode, addpath_tx_id,
1024 pfx_buf, sizeof(pfx_buf));
1025 zlog_debug("u%" PRIu64 ":s%" PRIu64
1026 " send UPDATE %s -- unreachable",
1027 subgrp->update_group->id, subgrp->id,
1028 pfx_buf);
1029 }
1030
1031 subgrp->scount--;
1032
1033 bgp_adj_out_remove_subgroup(rn, adj, subgrp);
1034 bgp_unlock_node(rn);
3f9c7369
DS
1035 }
1036
d62a17ae 1037 if (!stream_empty(s)) {
1038 if (afi == AFI_IP && safi == SAFI_UNICAST
1039 && !peer_cap_enhe(peer, afi, safi)) {
1040 unfeasible_len = stream_get_endp(s) - BGP_HEADER_SIZE
1041 - BGP_UNFEASIBLE_LEN;
1042 stream_putw_at(s, BGP_HEADER_SIZE, unfeasible_len);
1043 stream_putw(s, 0);
1044 } else {
1045 /* Set the mp_unreach attr's length */
1046 bgp_packet_mpunreach_end(s, mplen_pos);
1047
1048 /* Set total path attribute length. */
1049 total_attr_len = stream_get_endp(s) - mp_start;
1050 stream_putw_at(s, attrlen_pos, total_attr_len);
1051 }
1052 bgp_packet_set_size(s);
1053 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
1054 zlog_debug("u%" PRIu64 ":s%" PRIu64
1055 " send UPDATE (withdraw) len %zd numpfx %d",
1056 subgrp->update_group->id, subgrp->id,
1057 (stream_get_endp(s) - stream_get_getp(s)),
1058 num_pfx);
1059 pkt = bpacket_queue_add(SUBGRP_PKTQ(subgrp), stream_dup(s),
1060 NULL);
1061 stream_reset(s);
1062 return pkt;
3f9c7369 1063 }
3f9c7369 1064
d62a17ae 1065 return NULL;
3f9c7369
DS
1066}
1067
d62a17ae 1068void subgroup_default_update_packet(struct update_subgroup *subgrp,
1069 struct attr *attr, struct peer *from)
3f9c7369 1070{
d62a17ae 1071 struct stream *s;
1072 struct peer *peer;
1073 struct prefix p;
1074 unsigned long pos;
1075 bgp_size_t total_attr_len;
1076 afi_t afi;
1077 safi_t safi;
1078 struct bpacket_attr_vec_arr vecarr;
1079 int addpath_encode = 0;
1080
1081 if (DISABLE_BGP_ANNOUNCE)
1082 return;
1083
1084 if (!subgrp)
1085 return;
1086
1087 peer = SUBGRP_PEER(subgrp);
1088 afi = SUBGRP_AFI(subgrp);
1089 safi = SUBGRP_SAFI(subgrp);
1090 bpacket_attr_vec_arr_reset(&vecarr);
1091 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1092
1093 if (afi == AFI_IP)
1094 str2prefix("0.0.0.0/0", &p);
1095 else
1096 str2prefix("::/0", &p);
1097
1098 /* Logging the attribute. */
1099 if (bgp_debug_update(NULL, &p, subgrp->update_group, 0)) {
1100 char attrstr[BUFSIZ];
1101 char buf[PREFIX_STRLEN];
1102 /* ' with addpath ID ' 17
1103 * max strlen of uint32 + 10
1104 * +/- (just in case) + 1
1105 * null terminator + 1
1106 * ============================ 29 */
1107 char tx_id_buf[30];
1108
1109 attrstr[0] = '\0';
1110
1111 bgp_dump_attr(attr, attrstr, BUFSIZ);
1112
1113 if (addpath_encode)
1114 snprintf(tx_id_buf, sizeof(tx_id_buf),
1115 " with addpath ID %u",
1116 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
1117
1118 zlog_debug("u%" PRIu64 ":s%" PRIu64 " send UPDATE %s%s %s",
1119 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
1120 prefix2str(&p, buf, sizeof(buf)), tx_id_buf,
1121 attrstr);
1122 }
3f9c7369 1123
d62a17ae 1124 s = stream_new(BGP_MAX_PACKET_SIZE);
3f9c7369 1125
d62a17ae 1126 /* Make BGP update packet. */
1127 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
3f9c7369 1128
d62a17ae 1129 /* Unfeasible Routes Length. */
1130 stream_putw(s, 0);
3f9c7369 1131
d62a17ae 1132 /* Make place for total attribute length. */
1133 pos = stream_get_endp(s);
1134 stream_putw(s, 0);
1135 total_attr_len = bgp_packet_attribute(
1136 NULL, peer, s, attr, &vecarr, &p, afi, safi, from, NULL, NULL,
1137 addpath_encode, BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1138
d62a17ae 1139 /* Set Total Path Attribute Length. */
1140 stream_putw_at(s, pos, total_attr_len);
3f9c7369 1141
d62a17ae 1142 /* NLRI set. */
1143 if (p.family == AF_INET && safi == SAFI_UNICAST
1144 && !peer_cap_enhe(peer, afi, safi))
1145 stream_put_prefix_addpath(
1146 s, &p, addpath_encode,
1147 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1148
d62a17ae 1149 /* Set size. */
1150 bgp_packet_set_size(s);
3f9c7369 1151
d62a17ae 1152 (void)bpacket_queue_add(SUBGRP_PKTQ(subgrp), s, &vecarr);
1153 subgroup_trigger_write(subgrp);
3f9c7369
DS
1154}
1155
d62a17ae 1156void subgroup_default_withdraw_packet(struct update_subgroup *subgrp)
3f9c7369 1157{
d62a17ae 1158 struct peer *peer;
1159 struct stream *s;
1160 struct prefix p;
1161 unsigned long attrlen_pos = 0;
1162 unsigned long cp;
1163 bgp_size_t unfeasible_len;
1164 bgp_size_t total_attr_len = 0;
1165 size_t mp_start = 0;
1166 size_t mplen_pos = 0;
1167 afi_t afi;
1168 safi_t safi;
1169 int addpath_encode = 0;
1170
1171 if (DISABLE_BGP_ANNOUNCE)
1172 return;
1173
1174 peer = SUBGRP_PEER(subgrp);
1175 afi = SUBGRP_AFI(subgrp);
1176 safi = SUBGRP_SAFI(subgrp);
1177 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1178
1179 if (afi == AFI_IP)
1180 str2prefix("0.0.0.0/0", &p);
1181 else
1182 str2prefix("::/0", &p);
1183
1184 if (bgp_debug_update(NULL, &p, subgrp->update_group, 0)) {
1185 char buf[PREFIX_STRLEN];
1186 /* ' with addpath ID ' 17
1187 * max strlen of uint32 + 10
1188 * +/- (just in case) + 1
1189 * null terminator + 1
1190 * ============================ 29 */
1191 char tx_id_buf[30];
1192
1193 if (addpath_encode)
1194 snprintf(tx_id_buf, sizeof(tx_id_buf),
1195 " with addpath ID %u",
1196 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
1197
1198 zlog_debug("u%" PRIu64 ":s%" PRIu64
1199 " send UPDATE %s%s -- unreachable",
1200 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
1201 prefix2str(&p, buf, sizeof(buf)), tx_id_buf);
1202 }
3f9c7369 1203
d62a17ae 1204 s = stream_new(BGP_MAX_PACKET_SIZE);
3f9c7369 1205
d62a17ae 1206 /* Make BGP update packet. */
1207 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
3f9c7369 1208
d62a17ae 1209 /* Unfeasible Routes Length. */;
1210 cp = stream_get_endp(s);
1211 stream_putw(s, 0);
3f9c7369 1212
d62a17ae 1213 /* Withdrawn Routes. */
1214 if (p.family == AF_INET && safi == SAFI_UNICAST
1215 && !peer_cap_enhe(peer, afi, safi)) {
1216 stream_put_prefix_addpath(
1217 s, &p, addpath_encode,
1218 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1219
d62a17ae 1220 unfeasible_len = stream_get_endp(s) - cp - 2;
3f9c7369 1221
d62a17ae 1222 /* Set unfeasible len. */
1223 stream_putw_at(s, cp, unfeasible_len);
3f9c7369 1224
d62a17ae 1225 /* Set total path attribute length. */
1226 stream_putw(s, 0);
1227 } else {
1228 attrlen_pos = stream_get_endp(s);
1229 stream_putw(s, 0);
1230 mp_start = stream_get_endp(s);
1231 mplen_pos = bgp_packet_mpunreach_start(s, afi, safi);
1232 bgp_packet_mpunreach_prefix(
1233 s, &p, afi, safi, NULL, NULL, addpath_encode,
1234 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE, NULL);
3f9c7369 1235
d62a17ae 1236 /* Set the mp_unreach attr's length */
1237 bgp_packet_mpunreach_end(s, mplen_pos);
3f9c7369 1238
d62a17ae 1239 /* Set total path attribute length. */
1240 total_attr_len = stream_get_endp(s) - mp_start;
1241 stream_putw_at(s, attrlen_pos, total_attr_len);
1242 }
1243
1244 bgp_packet_set_size(s);
1245
1246 (void)bpacket_queue_add(SUBGRP_PKTQ(subgrp), s, NULL);
1247 subgroup_trigger_write(subgrp);
3f9c7369
DS
1248}
1249
1250static void
d62a17ae 1251bpacket_vec_arr_inherit_attr_flags(struct bpacket_attr_vec_arr *vecarr,
1252 bpacket_attr_vec_type type,
1253 struct attr *attr)
3f9c7369 1254{
d62a17ae 1255 if (CHECK_FLAG(attr->rmap_change_flags,
1256 BATTR_RMAP_NEXTHOP_PEER_ADDRESS))
1257 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1258 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS);
1259
1260 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_REFLECTED))
1261 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1262 BPKT_ATTRVEC_FLAGS_REFLECTED);
1263
1264 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_RMAP_NEXTHOP_UNCHANGED))
1265 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1266 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED);
1267
1268 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_RMAP_IPV4_NHOP_CHANGED))
1269 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1270 BPKT_ATTRVEC_FLAGS_RMAP_IPV4_NH_CHANGED);
1271
1272 if (CHECK_FLAG(attr->rmap_change_flags,
1273 BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED))
1274 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1275 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_GNH_CHANGED);
1276
1277 if (CHECK_FLAG(attr->rmap_change_flags,
1278 BATTR_RMAP_IPV6_LL_NHOP_CHANGED))
1279 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1280 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_LNH_CHANGED);
3f9c7369
DS
1281}
1282
1283/* Reset the Attributes vector array. The vector array is used to override
1284 * certain output parameters in the packet for a particular peer
1285 */
d62a17ae 1286void bpacket_attr_vec_arr_reset(struct bpacket_attr_vec_arr *vecarr)
3f9c7369 1287{
d62a17ae 1288 int i;
3f9c7369 1289
d62a17ae 1290 if (!vecarr)
1291 return;
3f9c7369 1292
d62a17ae 1293 i = 0;
1294 while (i < BGP_ATTR_VEC_MAX) {
1295 vecarr->entries[i].flags = 0;
1296 vecarr->entries[i].offset = 0;
1297 i++;
1298 }
3f9c7369
DS
1299}
1300
1301/* Setup a particular node entry in the vecarr */
d62a17ae 1302void bpacket_attr_vec_arr_set_vec(struct bpacket_attr_vec_arr *vecarr,
1303 bpacket_attr_vec_type type, struct stream *s,
1304 struct attr *attr)
3f9c7369 1305{
d62a17ae 1306 if (!vecarr)
1307 return;
1308 assert(type < BGP_ATTR_VEC_MAX);
1309
1310 SET_FLAG(vecarr->entries[type].flags, BPKT_ATTRVEC_FLAGS_UPDATED);
1311 vecarr->entries[type].offset = stream_get_endp(s);
1312 if (attr)
1313 bpacket_vec_arr_inherit_attr_flags(vecarr, type, attr);
3f9c7369 1314}