]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_updgrp_packet.c
*: reindent
[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
377 LIST_FOREACH(paf, &(pkt->peers), pkt_train)
378 {
379 vty_out(vty, " - %s\n", paf->peer->host);
380 }
381 pkt = bpacket_next(pkt);
382 }
383 return;
3f9c7369
DS
384}
385
d62a17ae 386struct stream *bpacket_reformat_for_peer(struct bpacket *pkt,
387 struct peer_af *paf)
3f9c7369 388{
d62a17ae 389 struct stream *s = NULL;
390 bpacket_attr_vec *vec;
391 struct peer *peer;
392 char buf[BUFSIZ];
393 char buf2[BUFSIZ];
394
395 s = stream_dup(pkt->buffer);
396 peer = PAF_PEER(paf);
397
398 vec = &pkt->arr.entries[BGP_ATTR_VEC_NH];
399 if (CHECK_FLAG(vec->flags, BPKT_ATTRVEC_FLAGS_UPDATED)) {
400 u_int8_t nhlen;
401 afi_t nhafi = AFI_MAX; /* NH AFI is based on nhlen! */
402 int route_map_sets_nh;
403 nhlen = stream_getc_from(s, vec->offset);
404 if (peer_cap_enhe(peer, paf->afi, paf->safi))
405 nhafi = AFI_IP6;
406 else
407 nhafi = BGP_NEXTHOP_AFI_FROM_NHLEN(nhlen);
408
409 if (nhafi == AFI_IP) {
410 struct in_addr v4nh, *mod_v4nh;
411 int nh_modified = 0;
412 size_t offset_nh = vec->offset + 1;
413
414 route_map_sets_nh =
415 (CHECK_FLAG(
416 vec->flags,
417 BPKT_ATTRVEC_FLAGS_RMAP_IPV4_NH_CHANGED)
418 || CHECK_FLAG(
419 vec->flags,
420 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS));
421
422 switch (nhlen) {
423 case BGP_ATTR_NHLEN_IPV4:
424 break;
425 case BGP_ATTR_NHLEN_VPNV4:
426 offset_nh += 8;
427 break;
428 default:
429 /* TODO: handle IPv6 nexthops */
430 zlog_warn(
431 "%s: %s: invalid MP nexthop length (AFI IP): %u",
432 __func__, peer->host, nhlen);
433 stream_free(s);
434 return NULL;
435 }
436
437 stream_get_from(&v4nh, s, offset_nh, IPV4_MAX_BYTELEN);
438 mod_v4nh = &v4nh;
439
440 /*
441 * If route-map has set the nexthop, that is always
442 * used; if it is
443 * specified as peer-address, the peering address is
444 * picked up.
445 * Otherwise, if NH is unavailable from attribute, the
446 * peering addr
447 * is picked up; the "NH unavailable" case also covers
448 * next-hop-self
449 * and some other scenarios -- see
450 * subgroup_announce_check(). In
451 * all other cases, use the nexthop carried in the
452 * attribute unless
453 * it is EBGP non-multiaccess and there is no
454 * next-hop-unchanged setting.
455 * Note: It is assumed route-map cannot set the nexthop
456 * to an
457 * invalid value.
458 */
459 if (route_map_sets_nh) {
460 if (CHECK_FLAG(
461 vec->flags,
462 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS)) {
463 mod_v4nh = &peer->nexthop.v4;
464 nh_modified = 1;
465 }
466 } else if (!v4nh.s_addr) {
467 mod_v4nh = &peer->nexthop.v4;
468 nh_modified = 1;
469 } else if (
470 peer->sort == BGP_PEER_EBGP
471 && paf->safi != SAFI_EVPN
472 && (bgp_multiaccess_check_v4(v4nh, peer) == 0)
473 && !CHECK_FLAG(
474 vec->flags,
475 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED)
476 && !peer_af_flag_check(
477 peer, nhafi, paf->safi,
478 PEER_FLAG_NEXTHOP_UNCHANGED)) {
479 /* NOTE: not handling case where NH has new AFI
480 */
481 mod_v4nh = &peer->nexthop.v4;
482 nh_modified = 1;
483 }
484
485 if (nh_modified) /* allow for VPN RD */
486 stream_put_in_addr_at(s, offset_nh, mod_v4nh);
487
488 if (bgp_debug_update(peer, NULL, NULL, 0))
489 zlog_debug("u%" PRIu64 ":s%" PRIu64
490 " %s send UPDATE w/ nexthop %s%s",
491 PAF_SUBGRP(paf)->update_group->id,
492 PAF_SUBGRP(paf)->id, peer->host,
493 inet_ntoa(*mod_v4nh),
494 (nhlen == 12 ? " and RD" : ""));
495 } else if (nhafi == AFI_IP6) {
496 struct in6_addr v6nhglobal, *mod_v6nhg;
497 struct in6_addr v6nhlocal, *mod_v6nhl;
498 int gnh_modified, lnh_modified;
499 size_t offset_nhglobal = vec->offset + 1;
500 size_t offset_nhlocal = vec->offset + 1;
501
502 gnh_modified = lnh_modified = 0;
503 mod_v6nhg = &v6nhglobal;
504 mod_v6nhl = &v6nhlocal;
505
506 route_map_sets_nh =
507 (CHECK_FLAG(
508 vec->flags,
509 BPKT_ATTRVEC_FLAGS_RMAP_IPV6_GNH_CHANGED)
510 || CHECK_FLAG(
511 vec->flags,
512 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS));
513
514 /*
515 * The logic here is rather similar to that for IPv4,
516 * the
517 * additional work being to handle 1 or 2 nexthops.
518 * Also, 3rd
519 * party nexthop is not propagated for EBGP right now.
520 */
521 switch (nhlen) {
522 case BGP_ATTR_NHLEN_IPV6_GLOBAL:
523 break;
524 case BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL:
525 offset_nhlocal += IPV6_MAX_BYTELEN;
526 break;
527 case BGP_ATTR_NHLEN_VPNV6_GLOBAL:
528 offset_nhglobal += 8;
529 break;
530 case BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL:
531 offset_nhglobal += 8;
532 offset_nhlocal += 8 * 2 + IPV6_MAX_BYTELEN;
533 break;
534 default:
535 /* TODO: handle IPv4 nexthops */
536 zlog_warn(
537 "%s: %s: invalid MP nexthop length (AFI IP6): %u",
538 __func__, peer->host, nhlen);
539 stream_free(s);
540 return NULL;
541 }
542
543 stream_get_from(&v6nhglobal, s, offset_nhglobal,
544 IPV6_MAX_BYTELEN);
545 if (route_map_sets_nh) {
546 if (CHECK_FLAG(
547 vec->flags,
548 BPKT_ATTRVEC_FLAGS_RMAP_NH_PEER_ADDRESS)) {
549 mod_v6nhg = &peer->nexthop.v6_global;
550 gnh_modified = 1;
551 }
552 } else if (IN6_IS_ADDR_UNSPECIFIED(&v6nhglobal)) {
553 mod_v6nhg = &peer->nexthop.v6_global;
554 gnh_modified = 1;
555 } else if (
556 peer->sort == BGP_PEER_EBGP
557 && !CHECK_FLAG(
558 vec->flags,
559 BPKT_ATTRVEC_FLAGS_RMAP_NH_UNCHANGED)
560 && !peer_af_flag_check(
561 peer, nhafi, paf->safi,
562 PEER_FLAG_NEXTHOP_UNCHANGED)) {
563 /* NOTE: not handling case where NH has new AFI
564 */
565 mod_v6nhg = &peer->nexthop.v6_global;
566 gnh_modified = 1;
567 }
568
569
570 if (nhlen == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
571 || nhlen == BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL) {
572 stream_get_from(&v6nhlocal, s, offset_nhlocal,
573 IPV6_MAX_BYTELEN);
574 if (IN6_IS_ADDR_UNSPECIFIED(&v6nhlocal)) {
575 mod_v6nhl = &peer->nexthop.v6_local;
576 lnh_modified = 1;
577 }
578 }
579
580 if (gnh_modified)
581 stream_put_in6_addr_at(s, offset_nhglobal,
582 mod_v6nhg);
583 if (lnh_modified)
584 stream_put_in6_addr_at(s, offset_nhlocal,
585 mod_v6nhl);
586
587 if (bgp_debug_update(peer, NULL, NULL, 0)) {
588 if (nhlen == 32 || nhlen == 48)
589 zlog_debug(
590 "u%" PRIu64 ":s%" PRIu64
591 " %s send UPDATE w/ mp_nexthops %s, %s%s",
592 PAF_SUBGRP(paf)
593 ->update_group->id,
594 PAF_SUBGRP(paf)->id, peer->host,
595 inet_ntop(AF_INET6, mod_v6nhg,
596 buf, BUFSIZ),
597 inet_ntop(AF_INET6, mod_v6nhl,
598 buf2, BUFSIZ),
599 (nhlen == 48 ? " and RD" : ""));
600 else
601 zlog_debug(
602 "u%" PRIu64 ":s%" PRIu64
603 " %s send UPDATE w/ mp_nexthop %s%s",
604 PAF_SUBGRP(paf)
605 ->update_group->id,
606 PAF_SUBGRP(paf)->id, peer->host,
607 inet_ntop(AF_INET6, mod_v6nhg,
608 buf, BUFSIZ),
609 (nhlen == 24 ? " and RD" : ""));
610 }
611 } else if (paf->afi == AFI_L2VPN) {
612 struct in_addr v4nh, *mod_v4nh;
613 int nh_modified = 0;
614
615 stream_get_from(&v4nh, s, vec->offset + 1, 4);
616 mod_v4nh = &v4nh;
617
618 /* No route-map changes allowed for EVPN nexthops. */
619 if (!v4nh.s_addr) {
620 mod_v4nh = &peer->nexthop.v4;
621 nh_modified = 1;
622 }
623
624 if (nh_modified)
625 stream_put_in_addr_at(s, vec->offset + 1,
626 mod_v4nh);
627
628 if (bgp_debug_update(peer, NULL, NULL, 0))
629 zlog_debug("u%" PRIu64 ":s%" PRIu64
630 " %s send UPDATE w/ nexthop %s",
631 PAF_SUBGRP(paf)->update_group->id,
632 PAF_SUBGRP(paf)->id, peer->host,
633 inet_ntoa(*mod_v4nh));
634 }
3f9c7369 635 }
3f9c7369 636
d62a17ae 637 bgp_packet_add(peer, s);
638 return s;
3f9c7369
DS
639}
640
641/*
642 * Update the vecarr offsets to go beyond 'pos' bytes, i.e. add 'pos'
643 * to each offset.
644 */
d62a17ae 645static void bpacket_attr_vec_arr_update(struct bpacket_attr_vec_arr *vecarr,
646 size_t pos)
3f9c7369 647{
d62a17ae 648 int i;
3f9c7369 649
d62a17ae 650 if (!vecarr)
651 return;
3f9c7369 652
d62a17ae 653 for (i = 0; i < BGP_ATTR_VEC_MAX; i++)
654 vecarr->entries[i].offset += pos;
3f9c7369
DS
655}
656
657/*
658 * Return if there are packets to build for this subgroup.
659 */
d62a17ae 660int subgroup_packets_to_build(struct update_subgroup *subgrp)
3f9c7369 661{
d62a17ae 662 struct bgp_advertise *adv;
3f9c7369 663
d62a17ae 664 if (!subgrp)
665 return 0;
3f9c7369 666
d62a17ae 667 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw);
668 if (adv)
669 return 1;
3f9c7369 670
d62a17ae 671 adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->update);
672 if (adv)
673 return 1;
3f9c7369 674
d62a17ae 675 return 0;
3f9c7369
DS
676}
677
678/* Make BGP update packet. */
d62a17ae 679struct bpacket *subgroup_update_packet(struct update_subgroup *subgrp)
3f9c7369 680{
d62a17ae 681 struct bpacket_attr_vec_arr vecarr;
682 struct bpacket *pkt;
683 struct peer *peer;
684 struct stream *s;
685 struct stream *snlri;
686 struct stream *packet;
687 struct bgp_adj_out *adj;
688 struct bgp_advertise *adv;
689 struct bgp_node *rn = NULL;
690 struct bgp_info *binfo = NULL;
691 bgp_size_t total_attr_len = 0;
692 unsigned long attrlen_pos = 0;
693 size_t mpattrlen_pos = 0;
694 size_t mpattr_pos = 0;
695 afi_t afi;
696 safi_t safi;
697 int space_remaining = 0;
698 int space_needed = 0;
699 char send_attr_str[BUFSIZ];
700 int send_attr_printed = 0;
701 int num_pfx = 0;
702 int addpath_encode = 0;
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);
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;
735 space_needed = BGP_NLRI_LENGTH + bgp_packet_mpattr_prefix_size(
736 afi, safi, &rn->p);
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;
780 space_needed =
781 BGP_NLRI_LENGTH + bgp_packet_mpattr_prefix_size(
782 afi, safi, &rn->p);
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;
846 safi_t pkt_safi;
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;
939 u_int32_t addpath_tx_id = 0;
940 struct prefix_rd *prd = NULL;
941
942
943 if (!subgrp)
944 return NULL;
3f9c7369 945
d62a17ae 946 if (bpacket_queue_is_full(SUBGRP_INST(subgrp), SUBGRP_PKTQ(subgrp)))
947 return NULL;
906ad49b 948
d62a17ae 949 peer = SUBGRP_PEER(subgrp);
950 afi = SUBGRP_AFI(subgrp);
951 safi = SUBGRP_SAFI(subgrp);
952 s = subgrp->work;
953 stream_reset(s);
954 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
955
956 while ((adv = BGP_ADV_FIFO_HEAD(&subgrp->sync->withdraw)) != NULL) {
957 assert(adv->rn);
958 adj = adv->adj;
959 rn = adv->rn;
960 addpath_tx_id = adj->addpath_tx_id;
961
962 space_remaining =
963 STREAM_REMAIN(s) - BGP_MAX_PACKET_SIZE_OVERFLOW;
964 space_needed =
965 BGP_NLRI_LENGTH + BGP_TOTAL_ATTR_LEN
966 + bgp_packet_mpattr_prefix_size(afi, safi, &rn->p);
967
968 if (space_remaining < space_needed)
969 break;
970
971 if (stream_empty(s)) {
972 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
973 stream_putw(s, 0); /* unfeasible routes length */
974 } else
975 first_time = 0;
976
977 if (afi == AFI_IP && safi == SAFI_UNICAST
978 && !peer_cap_enhe(peer, afi, safi))
979 stream_put_prefix_addpath(s, &rn->p, addpath_encode,
980 addpath_tx_id);
981 else {
982 if (rn->prn)
983 prd = (struct prefix_rd *)&rn->prn->p;
984
985 /* If first time, format the MP_UNREACH header */
986 if (first_time) {
987 iana_afi_t pkt_afi;
988 safi_t pkt_safi;
989
990 pkt_afi = afi_int2iana(afi);
991 pkt_safi = safi_int2iana(safi);
992
993 attrlen_pos = stream_get_endp(s);
994 /* total attr length = 0 for now. reevaluate
995 * later */
996 stream_putw(s, 0);
997 mp_start = stream_get_endp(s);
998 mplen_pos = bgp_packet_mpunreach_start(s, afi,
999 safi);
1000 if (bgp_debug_update(NULL, NULL,
1001 subgrp->update_group, 0))
1002 zlog_debug(
1003 "u%" PRIu64 ":s%" PRIu64
1004 " send MP_UNREACH for afi/safi %d/%d",
1005 subgrp->update_group->id,
1006 subgrp->id, pkt_afi, pkt_safi);
1007 }
1008
1009 bgp_packet_mpunreach_prefix(s, &rn->p, afi, safi, prd,
1010 NULL, addpath_encode,
1011 addpath_tx_id, NULL);
1012 }
1013
1014 num_pfx++;
1015
1016 if (bgp_debug_update(NULL, &rn->p, subgrp->update_group, 0)) {
1017 char pfx_buf[BGP_PRD_PATH_STRLEN];
1018
1019 bgp_debug_rdpfxpath2str(afi, safi, prd, &rn->p, NULL,
1020 addpath_encode, addpath_tx_id,
1021 pfx_buf, sizeof(pfx_buf));
1022 zlog_debug("u%" PRIu64 ":s%" PRIu64
1023 " send UPDATE %s -- unreachable",
1024 subgrp->update_group->id, subgrp->id,
1025 pfx_buf);
1026 }
1027
1028 subgrp->scount--;
1029
1030 bgp_adj_out_remove_subgroup(rn, adj, subgrp);
1031 bgp_unlock_node(rn);
3f9c7369
DS
1032 }
1033
d62a17ae 1034 if (!stream_empty(s)) {
1035 if (afi == AFI_IP && safi == SAFI_UNICAST
1036 && !peer_cap_enhe(peer, afi, safi)) {
1037 unfeasible_len = stream_get_endp(s) - BGP_HEADER_SIZE
1038 - BGP_UNFEASIBLE_LEN;
1039 stream_putw_at(s, BGP_HEADER_SIZE, unfeasible_len);
1040 stream_putw(s, 0);
1041 } else {
1042 /* Set the mp_unreach attr's length */
1043 bgp_packet_mpunreach_end(s, mplen_pos);
1044
1045 /* Set total path attribute length. */
1046 total_attr_len = stream_get_endp(s) - mp_start;
1047 stream_putw_at(s, attrlen_pos, total_attr_len);
1048 }
1049 bgp_packet_set_size(s);
1050 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
1051 zlog_debug("u%" PRIu64 ":s%" PRIu64
1052 " send UPDATE (withdraw) len %zd numpfx %d",
1053 subgrp->update_group->id, subgrp->id,
1054 (stream_get_endp(s) - stream_get_getp(s)),
1055 num_pfx);
1056 pkt = bpacket_queue_add(SUBGRP_PKTQ(subgrp), stream_dup(s),
1057 NULL);
1058 stream_reset(s);
1059 return pkt;
3f9c7369 1060 }
3f9c7369 1061
d62a17ae 1062 return NULL;
3f9c7369
DS
1063}
1064
d62a17ae 1065void subgroup_default_update_packet(struct update_subgroup *subgrp,
1066 struct attr *attr, struct peer *from)
3f9c7369 1067{
d62a17ae 1068 struct stream *s;
1069 struct peer *peer;
1070 struct prefix p;
1071 unsigned long pos;
1072 bgp_size_t total_attr_len;
1073 afi_t afi;
1074 safi_t safi;
1075 struct bpacket_attr_vec_arr vecarr;
1076 int addpath_encode = 0;
1077
1078 if (DISABLE_BGP_ANNOUNCE)
1079 return;
1080
1081 if (!subgrp)
1082 return;
1083
1084 peer = SUBGRP_PEER(subgrp);
1085 afi = SUBGRP_AFI(subgrp);
1086 safi = SUBGRP_SAFI(subgrp);
1087 bpacket_attr_vec_arr_reset(&vecarr);
1088 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1089
1090 if (afi == AFI_IP)
1091 str2prefix("0.0.0.0/0", &p);
1092 else
1093 str2prefix("::/0", &p);
1094
1095 /* Logging the attribute. */
1096 if (bgp_debug_update(NULL, &p, subgrp->update_group, 0)) {
1097 char attrstr[BUFSIZ];
1098 char buf[PREFIX_STRLEN];
1099 /* ' with addpath ID ' 17
1100 * max strlen of uint32 + 10
1101 * +/- (just in case) + 1
1102 * null terminator + 1
1103 * ============================ 29 */
1104 char tx_id_buf[30];
1105
1106 attrstr[0] = '\0';
1107
1108 bgp_dump_attr(attr, attrstr, BUFSIZ);
1109
1110 if (addpath_encode)
1111 snprintf(tx_id_buf, sizeof(tx_id_buf),
1112 " with addpath ID %u",
1113 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
1114
1115 zlog_debug("u%" PRIu64 ":s%" PRIu64 " send UPDATE %s%s %s",
1116 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
1117 prefix2str(&p, buf, sizeof(buf)), tx_id_buf,
1118 attrstr);
1119 }
3f9c7369 1120
d62a17ae 1121 s = stream_new(BGP_MAX_PACKET_SIZE);
3f9c7369 1122
d62a17ae 1123 /* Make BGP update packet. */
1124 bgp_packet_set_marker(s, BGP_MSG_UPDATE);
3f9c7369 1125
d62a17ae 1126 /* Unfeasible Routes Length. */
1127 stream_putw(s, 0);
3f9c7369 1128
d62a17ae 1129 /* Make place for total attribute length. */
1130 pos = stream_get_endp(s);
1131 stream_putw(s, 0);
1132 total_attr_len = bgp_packet_attribute(
1133 NULL, peer, s, attr, &vecarr, &p, afi, safi, from, NULL, NULL,
1134 addpath_encode, BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1135
d62a17ae 1136 /* Set Total Path Attribute Length. */
1137 stream_putw_at(s, pos, total_attr_len);
3f9c7369 1138
d62a17ae 1139 /* NLRI set. */
1140 if (p.family == AF_INET && safi == SAFI_UNICAST
1141 && !peer_cap_enhe(peer, afi, safi))
1142 stream_put_prefix_addpath(
1143 s, &p, addpath_encode,
1144 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
3f9c7369 1145
d62a17ae 1146 /* Set size. */
1147 bgp_packet_set_size(s);
3f9c7369 1148
d62a17ae 1149 (void)bpacket_queue_add(SUBGRP_PKTQ(subgrp), s, &vecarr);
1150 subgroup_trigger_write(subgrp);
3f9c7369
DS
1151}
1152
d62a17ae 1153void subgroup_default_withdraw_packet(struct update_subgroup *subgrp)
3f9c7369 1154{
d62a17ae 1155 struct peer *peer;
1156 struct stream *s;
1157 struct prefix p;
1158 unsigned long attrlen_pos = 0;
1159 unsigned long cp;
1160 bgp_size_t unfeasible_len;
1161 bgp_size_t total_attr_len = 0;
1162 size_t mp_start = 0;
1163 size_t mplen_pos = 0;
1164 afi_t afi;
1165 safi_t safi;
1166 int addpath_encode = 0;
1167
1168 if (DISABLE_BGP_ANNOUNCE)
1169 return;
1170
1171 peer = SUBGRP_PEER(subgrp);
1172 afi = SUBGRP_AFI(subgrp);
1173 safi = SUBGRP_SAFI(subgrp);
1174 addpath_encode = bgp_addpath_encode_tx(peer, afi, safi);
1175
1176 if (afi == AFI_IP)
1177 str2prefix("0.0.0.0/0", &p);
1178 else
1179 str2prefix("::/0", &p);
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);
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}