]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_updgrp_packet.c
ospfd: fix NSSA LSA translation (BZ#493) (BZ#250)
[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 return s;
3f9c7369
DS
637}
638
639/*
640 * Update the vecarr offsets to go beyond 'pos' bytes, i.e. add 'pos'
641 * to each offset.
642 */
d62a17ae 643static void bpacket_attr_vec_arr_update(struct bpacket_attr_vec_arr *vecarr,
644 size_t pos)
3f9c7369 645{
d62a17ae 646 int i;
3f9c7369 647
d62a17ae 648 if (!vecarr)
649 return;
3f9c7369 650
d62a17ae 651 for (i = 0; i < BGP_ATTR_VEC_MAX; i++)
652 vecarr->entries[i].offset += pos;
3f9c7369
DS
653}
654
655/*
656 * Return if there are packets to build for this subgroup.
657 */
d62a17ae 658int subgroup_packets_to_build(struct update_subgroup *subgrp)
3f9c7369 659{
d62a17ae 660 struct bgp_advertise *adv;
3f9c7369 661
d62a17ae 662 if (!subgrp)
663 return 0;
3f9c7369 664
d62a17ae 665 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw);
666 if (adv)
667 return 1;
3f9c7369 668
d62a17ae 669 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->update);
670 if (adv)
671 return 1;
3f9c7369 672
d62a17ae 673 return 0;
3f9c7369
DS
674}
675
676/* Make BGP update packet. */
d62a17ae 677struct bpacket *subgroup_update_packet(struct update_subgroup *subgrp)
3f9c7369 678{
d62a17ae 679 struct bpacket_attr_vec_arr vecarr;
680 struct bpacket *pkt;
681 struct peer *peer;
682 struct stream *s;
683 struct stream *snlri;
684 struct stream *packet;
685 struct bgp_adj_out *adj;
686 struct bgp_advertise *adv;
687 struct bgp_node *rn = NULL;
688 struct bgp_info *binfo = NULL;
689 bgp_size_t total_attr_len = 0;
690 unsigned long attrlen_pos = 0;
691 size_t mpattrlen_pos = 0;
692 size_t mpattr_pos = 0;
693 afi_t afi;
694 safi_t safi;
695 int space_remaining = 0;
696 int space_needed = 0;
697 char send_attr_str[BUFSIZ];
698 int send_attr_printed = 0;
699 int num_pfx = 0;
700 int addpath_encode = 0;
e386c1d5 701 int addpath_overhead = 0;
d62a17ae 702 u_int32_t addpath_tx_id = 0;
703 struct prefix_rd *prd = NULL;
704 mpls_label_t label = MPLS_INVALID_LABEL;
705
706 if (!subgrp)
707 return NULL;
3f9c7369 708
d62a17ae 709 if (bpacket_queue_is_full(SUBGRP_INST(subgrp), SUBGRP_PKTQ(subgrp)))
710 return NULL;
3f9c7369 711
d62a17ae 712 peer = SUBGRP_PEER(subgrp);
713 afi = SUBGRP_AFI(subgrp);
714 safi = SUBGRP_SAFI(subgrp);
715 s = subgrp->work;
716 stream_reset(s);
717 snlri = subgrp->scratch;
718 stream_reset(snlri);
719
720 bpacket_attr_vec_arr_reset(&vecarr);
721
722 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
e386c1d5 723 addpath_overhead = addpath_encode ? BGP_ADDPATH_ID_LEN : 0;
d62a17ae 724
725 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->update);
726 while (adv) {
727 assert(adv->rn);
728 rn = adv->rn;
729 adj = adv->adj;
730 addpath_tx_id = adj->addpath_tx_id;
731 binfo = adv->binfo;
732
733 space_remaining = STREAM_CONCAT_REMAIN(s, snlri, STREAM_SIZE(s))
734 - BGP_MAX_PACKET_SIZE_OVERFLOW;
e386c1d5
DW
735 space_needed = BGP_NLRI_LENGTH + addpath_overhead +
736 bgp_packet_mpattr_prefix_size(afi, safi, &rn->p);
d62a17ae 737
738 /* When remaining space can't include NLRI and it's length. */
739 if (space_remaining < space_needed)
740 break;
741
742 /* If packet is empty, set attribute. */
743 if (stream_empty(s)) {
744 struct peer *from = NULL;
745
746 if (binfo)
747 from = binfo->peer;
748
749 /* 1: Write the BGP message header - 16 bytes marker, 2
750 * bytes length,
751 * one byte message type.
752 */
753 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
754
755 /* 2: withdrawn routes length */
756 stream_putw(s, 0);
757
758 /* 3: total attributes length - attrlen_pos stores the
759 * position */
760 attrlen_pos = stream_get_endp(s);
761 stream_putw(s, 0);
762
763 /* 4: if there is MP_REACH_NLRI attribute, that should
764 * be the first
765 * attribute, according to
766 * draft-ietf-idr-error-handling. Save the
767 * position.
768 */
769 mpattr_pos = stream_get_endp(s);
770
771 /* 5: Encode all the attributes, except MP_REACH_NLRI
772 * attr. */
773 total_attr_len = bgp_packet_attribute(
774 NULL, peer, s, adv->baa->attr, &vecarr, NULL,
775 afi, safi, from, NULL, NULL, 0, 0);
776
777 space_remaining =
778 STREAM_CONCAT_REMAIN(s, snlri, STREAM_SIZE(s))
779 - BGP_MAX_PACKET_SIZE_OVERFLOW;
e386c1d5
DW
780 space_needed = BGP_NLRI_LENGTH + addpath_overhead +
781 bgp_packet_mpattr_prefix_size(afi, safi,
782 &rn->p);
d62a17ae 783
784 /* If the attributes alone do not leave any room for
785 * NLRI then
786 * return */
787 if (space_remaining < space_needed) {
788 zlog_err(
789 "u%" PRIu64 ":s%" PRIu64
790 " attributes too long, cannot send UPDATE",
791 subgrp->update_group->id, subgrp->id);
792
793 /* Flush the FIFO update queue */
794 while (adv)
795 adv = bgp_advertise_clean_subgroup(
796 subgrp, adj);
797 return NULL;
798 }
799
800 if (BGP_DEBUG(update, UPDATE_OUT)
801 || BGP_DEBUG(update, UPDATE_PREFIX)) {
802 memset(send_attr_str, 0, BUFSIZ);
803 send_attr_printed = 0;
804 bgp_dump_attr(adv->baa->attr, send_attr_str,
805 BUFSIZ);
806 }
807 }
808
809 if ((afi == AFI_IP && safi == SAFI_UNICAST)
810 && !peer_cap_enhe(peer, afi, safi))
811 stream_put_prefix_addpath(s, &rn->p, addpath_encode,
812 addpath_tx_id);
813 else {
814 /* Encode the prefix in MP_REACH_NLRI attribute */
815 if (rn->prn)
816 prd = (struct prefix_rd *)&rn->prn->p;
817
818 if (safi == SAFI_LABELED_UNICAST)
819 label = bgp_adv_label(rn, binfo, peer, afi,
820 safi);
821 else if (binfo && binfo->extra)
822 label = binfo->extra->label;
823
824 if (stream_empty(snlri))
825 mpattrlen_pos = bgp_packet_mpattr_start(
826 snlri, peer, afi, safi, &vecarr,
827 adv->baa->attr);
828
829 bgp_packet_mpattr_prefix(snlri, afi, safi, &rn->p, prd,
830 &label, addpath_encode,
831 addpath_tx_id, adv->baa->attr);
832 }
833
834 num_pfx++;
835
836 if (bgp_debug_update(NULL, &rn->p, subgrp->update_group, 0)) {
837 char pfx_buf[BGP_PRD_PATH_STRLEN];
838
839 if (!send_attr_printed) {
840 zlog_debug("u%" PRIu64 ":s%" PRIu64
841 " send UPDATE w/ attr: %s",
842 subgrp->update_group->id, subgrp->id,
843 send_attr_str);
844 if (!stream_empty(snlri)) {
845 iana_afi_t pkt_afi;
5c525538 846 iana_safi_t pkt_safi;
d62a17ae 847
848 pkt_afi = afi_int2iana(afi);
849 pkt_safi = safi_int2iana(safi);
850 zlog_debug(
851 "u%" PRIu64 ":s%" PRIu64
852 " send MP_REACH for afi/safi %d/%d",
853 subgrp->update_group->id,
854 subgrp->id, pkt_afi, pkt_safi);
855 }
856
857 send_attr_printed = 1;
858 }
859
860 bgp_debug_rdpfxpath2str(afi, safi, prd, &rn->p, &label,
861 addpath_encode, addpath_tx_id,
862 pfx_buf, sizeof(pfx_buf));
863 zlog_debug("u%" PRIu64 ":s%" PRIu64 " send UPDATE %s",
864 subgrp->update_group->id, subgrp->id,
865 pfx_buf);
866 }
867
868 /* Synchnorize attribute. */
869 if (adj->attr)
870 bgp_attr_unintern(&adj->attr);
871 else
872 subgrp->scount++;
873
874 adj->attr = bgp_attr_intern(adv->baa->attr);
875
876 adv = bgp_advertise_clean_subgroup(subgrp, adj);
3f9c7369
DS
877 }
878
d62a17ae 879 if (!stream_empty(s)) {
880 if (!stream_empty(snlri)) {
881 bgp_packet_mpattr_end(snlri, mpattrlen_pos);
882 total_attr_len += stream_get_endp(snlri);
883 }
884
885 /* set the total attribute length correctly */
886 stream_putw_at(s, attrlen_pos, total_attr_len);
887
888 if (!stream_empty(snlri)) {
889 packet = stream_dupcat(s, snlri, mpattr_pos);
890 bpacket_attr_vec_arr_update(&vecarr, mpattr_pos);
891 } else
892 packet = stream_dup(s);
893 bgp_packet_set_size(packet);
894 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
895 zlog_debug("u%" PRIu64 ":s%" PRIu64
896 " send UPDATE len %zd numpfx %d",
897 subgrp->update_group->id, subgrp->id,
898 (stream_get_endp(packet)
899 - stream_get_getp(packet)),
900 num_pfx);
901 pkt = bpacket_queue_add(SUBGRP_PKTQ(subgrp), packet, &vecarr);
902 stream_reset(s);
903 stream_reset(snlri);
904 return pkt;
3f9c7369 905 }
d62a17ae 906 return NULL;
3f9c7369
DS
907}
908
909/* Make BGP withdraw packet. */
910/* For ipv4 unicast:
911 16-octet marker | 2-octet length | 1-octet type |
912 2-octet withdrawn route length | withdrawn prefixes | 2-octet attrlen (=0)
913*/
914/* For other afi/safis:
915 16-octet marker | 2-octet length | 1-octet type |
916 2-octet withdrawn route length (=0) | 2-octet attrlen |
917 mp_unreach attr type | attr len | afi | safi | withdrawn prefixes
918*/
d62a17ae 919struct bpacket *subgroup_withdraw_packet(struct update_subgroup *subgrp)
3f9c7369 920{
d62a17ae 921 struct bpacket *pkt;
922 struct stream *s;
923 struct bgp_adj_out *adj;
924 struct bgp_advertise *adv;
925 struct peer *peer;
926 struct bgp_node *rn;
927 bgp_size_t unfeasible_len;
928 bgp_size_t total_attr_len;
929 size_t mp_start = 0;
930 size_t attrlen_pos = 0;
931 size_t mplen_pos = 0;
932 u_char first_time = 1;
933 afi_t afi;
934 safi_t safi;
935 int space_remaining = 0;
936 int space_needed = 0;
937 int num_pfx = 0;
938 int addpath_encode = 0;
e386c1d5 939 int addpath_overhead = 0;
d62a17ae 940 u_int32_t addpath_tx_id = 0;
941 struct prefix_rd *prd = NULL;
942
943
944 if (!subgrp)
945 return NULL;
3f9c7369 946
d62a17ae 947 if (bpacket_queue_is_full(SUBGRP_INST(subgrp), SUBGRP_PKTQ(subgrp)))
948 return NULL;
906ad49b 949
d62a17ae 950 peer = SUBGRP_PEER(subgrp);
951 afi = SUBGRP_AFI(subgrp);
952 safi = SUBGRP_SAFI(subgrp);
953 s = subgrp->work;
954 stream_reset(s);
955 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
e386c1d5 956 addpath_overhead = addpath_encode ? BGP_ADDPATH_ID_LEN : 0;
d62a17ae 957
958 while ((adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw)) != NULL) {
959 assert(adv->rn);
960 adj = adv->adj;
961 rn = adv->rn;
962 addpath_tx_id = adj->addpath_tx_id;
963
964 space_remaining =
965 STREAM_REMAIN(s) - BGP_MAX_PACKET_SIZE_OVERFLOW;
966 space_needed =
e386c1d5 967 BGP_NLRI_LENGTH + addpath_overhead + BGP_TOTAL_ATTR_LEN
d62a17ae 968 + bgp_packet_mpattr_prefix_size(afi, safi, &rn->p);
969
970 if (space_remaining < space_needed)
971 break;
972
973 if (stream_empty(s)) {
974 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
975 stream_putw(s, 0); /* unfeasible routes length */
976 } else
977 first_time = 0;
978
979 if (afi == AFI_IP && safi == SAFI_UNICAST
980 && !peer_cap_enhe(peer, afi, safi))
981 stream_put_prefix_addpath(s, &rn->p, addpath_encode,
982 addpath_tx_id);
983 else {
984 if (rn->prn)
985 prd = (struct prefix_rd *)&rn->prn->p;
986
987 /* If first time, format the MP_UNREACH header */
988 if (first_time) {
989 iana_afi_t pkt_afi;
5c525538 990 iana_safi_t pkt_safi;
d62a17ae 991
992 pkt_afi = afi_int2iana(afi);
993 pkt_safi = safi_int2iana(safi);
994
995 attrlen_pos = stream_get_endp(s);
996 /* total attr length = 0 for now. reevaluate
997 * later */
998 stream_putw(s, 0);
999 mp_start = stream_get_endp(s);
1000 mplen_pos = bgp_packet_mpunreach_start(s, afi,
1001 safi);
1002 if (bgp_debug_update(NULL, NULL,
1003 subgrp->update_group, 0))
1004 zlog_debug(
1005 "u%" PRIu64 ":s%" PRIu64
1006 " send MP_UNREACH for afi/safi %d/%d",
1007 subgrp->update_group->id,
1008 subgrp->id, pkt_afi, pkt_safi);
1009 }
1010
1011 bgp_packet_mpunreach_prefix(s, &rn->p, afi, safi, prd,
1012 NULL, addpath_encode,
1013 addpath_tx_id, NULL);
1014 }
1015
1016 num_pfx++;
1017
1018 if (bgp_debug_update(NULL, &rn->p, subgrp->update_group, 0)) {
1019 char pfx_buf[BGP_PRD_PATH_STRLEN];
1020
1021 bgp_debug_rdpfxpath2str(afi, safi, prd, &rn->p, NULL,
1022 addpath_encode, addpath_tx_id,
1023 pfx_buf, sizeof(pfx_buf));
1024 zlog_debug("u%" PRIu64 ":s%" PRIu64
1025 " send UPDATE %s -- unreachable",
1026 subgrp->update_group->id, subgrp->id,
1027 pfx_buf);
1028 }
1029
1030 subgrp->scount--;
1031
1032 bgp_adj_out_remove_subgroup(rn, adj, subgrp);
1033 bgp_unlock_node(rn);
3f9c7369
DS
1034 }
1035
d62a17ae 1036 if (!stream_empty(s)) {
1037 if (afi == AFI_IP && safi == SAFI_UNICAST
1038 && !peer_cap_enhe(peer, afi, safi)) {
1039 unfeasible_len = stream_get_endp(s) - BGP_HEADER_SIZE
1040 - BGP_UNFEASIBLE_LEN;
1041 stream_putw_at(s, BGP_HEADER_SIZE, unfeasible_len);
1042 stream_putw(s, 0);
1043 } else {
1044 /* Set the mp_unreach attr's length */
1045 bgp_packet_mpunreach_end(s, mplen_pos);
1046
1047 /* Set total path attribute length. */
1048 total_attr_len = stream_get_endp(s) - mp_start;
1049 stream_putw_at(s, attrlen_pos, total_attr_len);
1050 }
1051 bgp_packet_set_size(s);
1052 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
1053 zlog_debug("u%" PRIu64 ":s%" PRIu64
1054 " send UPDATE (withdraw) len %zd numpfx %d",
1055 subgrp->update_group->id, subgrp->id,
1056 (stream_get_endp(s) - stream_get_getp(s)),
1057 num_pfx);
1058 pkt = bpacket_queue_add(SUBGRP_PKTQ(subgrp), stream_dup(s),
1059 NULL);
1060 stream_reset(s);
1061 return pkt;
3f9c7369 1062 }
3f9c7369 1063
d62a17ae 1064 return NULL;
3f9c7369
DS
1065}
1066
d62a17ae 1067void subgroup_default_update_packet(struct update_subgroup *subgrp,
1068 struct attr *attr, struct peer *from)
3f9c7369 1069{
d62a17ae 1070 struct stream *s;
1071 struct peer *peer;
1072 struct prefix p;
1073 unsigned long pos;
1074 bgp_size_t total_attr_len;
1075 afi_t afi;
1076 safi_t safi;
1077 struct bpacket_attr_vec_arr vecarr;
1078 int addpath_encode = 0;
1079
1080 if (DISABLE_BGP_ANNOUNCE)
1081 return;
1082
1083 if (!subgrp)
1084 return;
1085
1086 peer = SUBGRP_PEER(subgrp);
1087 afi = SUBGRP_AFI(subgrp);
1088 safi = SUBGRP_SAFI(subgrp);
1089 bpacket_attr_vec_arr_reset(&vecarr);
1090 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1091
cbb65f5e
RW
1092 memset(&p, 0, sizeof(p));
1093 p.family = afi2family(afi);
1094 p.prefixlen = 0;
d62a17ae 1095
1096 /* Logging the attribute. */
1097 if (bgp_debug_update(NULL, &p, subgrp->update_group, 0)) {
1098 char attrstr[BUFSIZ];
1099 char buf[PREFIX_STRLEN];
1100 /* ' with addpath ID ' 17
1101 * max strlen of uint32 + 10
1102 * +/- (just in case) + 1
1103 * null terminator + 1
1104 * ============================ 29 */
1105 char tx_id_buf[30];
1106
1107 attrstr[0] = '\0';
1108
1109 bgp_dump_attr(attr, attrstr, BUFSIZ);
1110
1111 if (addpath_encode)
1112 snprintf(tx_id_buf, sizeof(tx_id_buf),
1113 " with addpath ID %u",
1114 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
1115
1116 zlog_debug("u%" PRIu64 ":s%" PRIu64 " send UPDATE %s%s %s",
1117 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
1118 prefix2str(&p, buf, sizeof(buf)), tx_id_buf,
1119 attrstr);
1120 }
3f9c7369 1121
d62a17ae 1122 s = stream_new(BGP_MAX_PACKET_SIZE);
3f9c7369 1123
d62a17ae 1124 /* Make BGP update packet. */
1125 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
3f9c7369 1126
d62a17ae 1127 /* Unfeasible Routes Length. */
1128 stream_putw(s, 0);
3f9c7369 1129
d62a17ae 1130 /* Make place for total attribute length. */
1131 pos = stream_get_endp(s);
1132 stream_putw(s, 0);
1133 total_attr_len = bgp_packet_attribute(
1134 NULL, peer, s, attr, &vecarr, &p, afi, safi, from, NULL, NULL,
1135 addpath_encode, BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1136
d62a17ae 1137 /* Set Total Path Attribute Length. */
1138 stream_putw_at(s, pos, total_attr_len);
3f9c7369 1139
d62a17ae 1140 /* NLRI set. */
1141 if (p.family == AF_INET && safi == SAFI_UNICAST
1142 && !peer_cap_enhe(peer, afi, safi))
1143 stream_put_prefix_addpath(
1144 s, &p, addpath_encode,
1145 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1146
d62a17ae 1147 /* Set size. */
1148 bgp_packet_set_size(s);
3f9c7369 1149
d62a17ae 1150 (void)bpacket_queue_add(SUBGRP_PKTQ(subgrp), s, &vecarr);
2fc102e1 1151 subgroup_trigger_write(subgrp);
3f9c7369
DS
1152}
1153
d62a17ae 1154void subgroup_default_withdraw_packet(struct update_subgroup *subgrp)
3f9c7369 1155{
d62a17ae 1156 struct peer *peer;
1157 struct stream *s;
1158 struct prefix p;
1159 unsigned long attrlen_pos = 0;
1160 unsigned long cp;
1161 bgp_size_t unfeasible_len;
1162 bgp_size_t total_attr_len = 0;
1163 size_t mp_start = 0;
1164 size_t mplen_pos = 0;
1165 afi_t afi;
1166 safi_t safi;
1167 int addpath_encode = 0;
1168
1169 if (DISABLE_BGP_ANNOUNCE)
1170 return;
1171
1172 peer = SUBGRP_PEER(subgrp);
1173 afi = SUBGRP_AFI(subgrp);
1174 safi = SUBGRP_SAFI(subgrp);
1175 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1176
cbb65f5e
RW
1177 memset(&p, 0, sizeof(p));
1178 p.family = afi2family(afi);
1179 p.prefixlen = 0;
d62a17ae 1180
1181 if (bgp_debug_update(NULL, &p, subgrp->update_group, 0)) {
1182 char buf[PREFIX_STRLEN];
1183 /* ' with addpath ID ' 17
1184 * max strlen of uint32 + 10
1185 * +/- (just in case) + 1
1186 * null terminator + 1
1187 * ============================ 29 */
1188 char tx_id_buf[30];
1189
1190 if (addpath_encode)
1191 snprintf(tx_id_buf, sizeof(tx_id_buf),
1192 " with addpath ID %u",
1193 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
1194
1195 zlog_debug("u%" PRIu64 ":s%" PRIu64
1196 " send UPDATE %s%s -- unreachable",
1197 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
1198 prefix2str(&p, buf, sizeof(buf)), tx_id_buf);
1199 }
3f9c7369 1200
d62a17ae 1201 s = stream_new(BGP_MAX_PACKET_SIZE);
3f9c7369 1202
d62a17ae 1203 /* Make BGP update packet. */
1204 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
3f9c7369 1205
d62a17ae 1206 /* Unfeasible Routes Length. */;
1207 cp = stream_get_endp(s);
1208 stream_putw(s, 0);
3f9c7369 1209
d62a17ae 1210 /* Withdrawn Routes. */
1211 if (p.family == AF_INET && safi == SAFI_UNICAST
1212 && !peer_cap_enhe(peer, afi, safi)) {
1213 stream_put_prefix_addpath(
1214 s, &p, addpath_encode,
1215 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1216
d62a17ae 1217 unfeasible_len = stream_get_endp(s) - cp - 2;
3f9c7369 1218
d62a17ae 1219 /* Set unfeasible len. */
1220 stream_putw_at(s, cp, unfeasible_len);
3f9c7369 1221
d62a17ae 1222 /* Set total path attribute length. */
1223 stream_putw(s, 0);
1224 } else {
1225 attrlen_pos = stream_get_endp(s);
1226 stream_putw(s, 0);
1227 mp_start = stream_get_endp(s);
1228 mplen_pos = bgp_packet_mpunreach_start(s, afi, safi);
1229 bgp_packet_mpunreach_prefix(
1230 s, &p, afi, safi, NULL, NULL, addpath_encode,
1231 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE, NULL);
3f9c7369 1232
d62a17ae 1233 /* Set the mp_unreach attr's length */
1234 bgp_packet_mpunreach_end(s, mplen_pos);
3f9c7369 1235
d62a17ae 1236 /* Set total path attribute length. */
1237 total_attr_len = stream_get_endp(s) - mp_start;
1238 stream_putw_at(s, attrlen_pos, total_attr_len);
1239 }
1240
1241 bgp_packet_set_size(s);
1242
1243 (void)bpacket_queue_add(SUBGRP_PKTQ(subgrp), s, NULL);
2fc102e1 1244 subgroup_trigger_write(subgrp);
3f9c7369
DS
1245}
1246
1247static void
d62a17ae 1248bpacket_vec_arr_inherit_attr_flags(struct bpacket_attr_vec_arr *vecarr,
1249 bpacket_attr_vec_type type,
1250 struct attr *attr)
3f9c7369 1251{
d62a17ae 1252 if (CHECK_FLAG(attr->rmap_change_flags,
1253 BATTR_RMAP_NEXTHOP_PEER_ADDRESS))
1254 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1255 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS);
1256
1257 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_REFLECTED))
1258 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1259 BPKT_ATTRVEC_FLAGS_REFLECTED);
1260
1261 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_RMAP_NEXTHOP_UNCHANGED))
1262 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1263 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED);
1264
1265 if (CHECK_FLAG(attr->rmap_change_flags, BATTR_RMAP_IPV4_NHOP_CHANGED))
1266 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1267 BPKT_ATTRVEC_FLAGS_RMAP_IPV4_NH_CHANGED);
1268
1269 if (CHECK_FLAG(attr->rmap_change_flags,
1270 BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED))
1271 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1272 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_GNH_CHANGED);
1273
1274 if (CHECK_FLAG(attr->rmap_change_flags,
1275 BATTR_RMAP_IPV6_LL_NHOP_CHANGED))
1276 SET_FLAG(vecarr->entries[BGP_ATTR_VEC_NH].flags,
1277 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_LNH_CHANGED);
3f9c7369
DS
1278}
1279
1280/* Reset the Attributes vector array. The vector array is used to override
1281 * certain output parameters in the packet for a particular peer
1282 */
d62a17ae 1283void bpacket_attr_vec_arr_reset(struct bpacket_attr_vec_arr *vecarr)
3f9c7369 1284{
d62a17ae 1285 int i;
3f9c7369 1286
d62a17ae 1287 if (!vecarr)
1288 return;
3f9c7369 1289
d62a17ae 1290 i = 0;
1291 while (i < BGP_ATTR_VEC_MAX) {
1292 vecarr->entries[i].flags = 0;
1293 vecarr->entries[i].offset = 0;
1294 i++;
1295 }
3f9c7369
DS
1296}
1297
1298/* Setup a particular node entry in the vecarr */
d62a17ae 1299void bpacket_attr_vec_arr_set_vec(struct bpacket_attr_vec_arr *vecarr,
1300 bpacket_attr_vec_type type, struct stream *s,
1301 struct attr *attr)
3f9c7369 1302{
d62a17ae 1303 if (!vecarr)
1304 return;
1305 assert(type < BGP_ATTR_VEC_MAX);
1306
1307 SET_FLAG(vecarr->entries[type].flags, BPKT_ATTRVEC_FLAGS_UPDATED);
1308 vecarr->entries[type].offset = stream_get_endp(s);
1309 if (attr)
1310 bpacket_vec_arr_inherit_attr_flags(vecarr, type, attr);
3f9c7369 1311}