]> git.ipfire.org Git - thirdparty/bird.git/blob - proto/bgp/packets.c
BGP: Mandatory option for channels
[thirdparty/bird.git] / proto / bgp / packets.c
1 /*
2 * BIRD -- BGP Packet Processing
3 *
4 * (c) 2000 Martin Mares <mj@ucw.cz>
5 * (c) 2008--2016 Ondrej Zajicek <santiago@crfreenet.org>
6 * (c) 2008--2016 CZ.NIC z.s.p.o.
7 *
8 * Can be freely distributed and used under the terms of the GNU GPL.
9 */
10
11 #undef LOCAL_DEBUG
12
13 #include <stdlib.h>
14
15 #include "nest/bird.h"
16 #include "nest/iface.h"
17 #include "nest/protocol.h"
18 #include "nest/route.h"
19 #include "nest/attrs.h"
20 #include "proto/mrt/mrt.h"
21 #include "conf/conf.h"
22 #include "lib/unaligned.h"
23 #include "lib/flowspec.h"
24 #include "lib/socket.h"
25
26 #include "nest/cli.h"
27
28 #include "bgp.h"
29
30
31 #define BGP_RR_REQUEST 0
32 #define BGP_RR_BEGIN 1
33 #define BGP_RR_END 2
34
35 #define BGP_NLRI_MAX (4 + 1 + 32)
36
37 #define BGP_MPLS_BOS 1 /* Bottom-of-stack bit */
38 #define BGP_MPLS_MAX 10 /* Max number of labels that 24*n <= 255 */
39 #define BGP_MPLS_NULL 3 /* Implicit NULL label */
40 #define BGP_MPLS_MAGIC 0x800000 /* Magic withdraw label value, RFC 3107 3 */
41
42
43 static struct tbf rl_rcv_update = TBF_DEFAULT_LOG_LIMITS;
44 static struct tbf rl_snd_update = TBF_DEFAULT_LOG_LIMITS;
45
46 /* Table for state -> RFC 6608 FSM error subcodes */
47 static byte fsm_err_subcode[BS_MAX] = {
48 [BS_OPENSENT] = 1,
49 [BS_OPENCONFIRM] = 2,
50 [BS_ESTABLISHED] = 3
51 };
52
53
54 static struct bgp_channel *
55 bgp_get_channel(struct bgp_proto *p, u32 afi)
56 {
57 uint i;
58
59 for (i = 0; i < p->channel_count; i++)
60 if (p->afi_map[i] == afi)
61 return p->channel_map[i];
62
63 return NULL;
64 }
65
66 static inline void
67 put_af3(byte *buf, u32 id)
68 {
69 put_u16(buf, id >> 16);
70 buf[2] = id & 0xff;
71 }
72
73 static inline void
74 put_af4(byte *buf, u32 id)
75 {
76 put_u16(buf, id >> 16);
77 buf[2] = 0;
78 buf[3] = id & 0xff;
79 }
80
81 static inline u32
82 get_af3(byte *buf)
83 {
84 return (get_u16(buf) << 16) | buf[2];
85 }
86
87 static inline u32
88 get_af4(byte *buf)
89 {
90 return (get_u16(buf) << 16) | buf[3];
91 }
92
93 static void
94 init_mrt_bgp_data(struct bgp_conn *conn, struct mrt_bgp_data *d)
95 {
96 struct bgp_proto *p = conn->bgp;
97 int p_ok = conn->state >= BS_OPENCONFIRM;
98
99 memset(d, 0, sizeof(struct mrt_bgp_data));
100 d->peer_as = p->remote_as;
101 d->local_as = p->local_as;
102 d->index = (p->neigh && p->neigh->iface) ? p->neigh->iface->index : 0;
103 d->af = ipa_is_ip4(p->cf->remote_ip) ? BGP_AFI_IPV4 : BGP_AFI_IPV6;
104 d->peer_ip = conn->sk ? conn->sk->daddr : IPA_NONE;
105 d->local_ip = conn->sk ? conn->sk->saddr : IPA_NONE;
106 d->as4 = p_ok ? p->as4_session : 0;
107 }
108
109 static uint bgp_find_update_afi(byte *pos, uint len);
110
111 static int
112 bgp_estimate_add_path(struct bgp_proto *p, byte *pkt, uint len)
113 {
114 /* No need to estimate it for other messages than UPDATE */
115 if (pkt[18] != PKT_UPDATE)
116 return 0;
117
118 /* 1 -> no channel, 2 -> all channels, 3 -> some channels */
119 if (p->summary_add_path_rx < 3)
120 return p->summary_add_path_rx == 2;
121
122 uint afi = bgp_find_update_afi(pkt, len);
123 struct bgp_channel *c = bgp_get_channel(p, afi);
124 if (!c)
125 {
126 /* Either frame error (if !afi) or unknown AFI/SAFI,
127 will be reported later in regular parsing */
128 BGP_TRACE(D_PACKETS, "MRT processing noticed invalid packet");
129 return 0;
130 }
131
132 return c->add_path_rx;
133 }
134
135 static void
136 bgp_dump_message(struct bgp_conn *conn, byte *pkt, uint len)
137 {
138 struct mrt_bgp_data d;
139 init_mrt_bgp_data(conn, &d);
140
141 d.message = pkt;
142 d.msg_len = len;
143 d.add_path = bgp_estimate_add_path(conn->bgp, pkt, len);
144
145 mrt_dump_bgp_message(&d);
146 }
147
148 void
149 bgp_dump_state_change(struct bgp_conn *conn, uint old, uint new)
150 {
151 struct mrt_bgp_data d;
152 init_mrt_bgp_data(conn, &d);
153
154 d.old_state = old;
155 d.new_state = new;
156
157 mrt_dump_bgp_state_change(&d);
158 }
159
160 static byte *
161 bgp_create_notification(struct bgp_conn *conn, byte *buf)
162 {
163 struct bgp_proto *p = conn->bgp;
164
165 BGP_TRACE(D_PACKETS, "Sending NOTIFICATION(code=%d.%d)", conn->notify_code, conn->notify_subcode);
166 buf[0] = conn->notify_code;
167 buf[1] = conn->notify_subcode;
168 memcpy(buf+2, conn->notify_data, conn->notify_size);
169 return buf + 2 + conn->notify_size;
170 }
171
172
173 /* Capability negotiation as per RFC 5492 */
174
175 const struct bgp_af_caps *
176 bgp_find_af_caps(struct bgp_caps *caps, u32 afi)
177 {
178 struct bgp_af_caps *ac;
179
180 WALK_AF_CAPS(caps, ac)
181 if (ac->afi == afi)
182 return ac;
183
184 return NULL;
185 }
186
187 static struct bgp_af_caps *
188 bgp_get_af_caps(struct bgp_caps *caps, u32 afi)
189 {
190 struct bgp_af_caps *ac;
191
192 WALK_AF_CAPS(caps, ac)
193 if (ac->afi == afi)
194 return ac;
195
196 ac = &caps->af_data[caps->af_count++];
197 memset(ac, 0, sizeof(struct bgp_af_caps));
198 ac->afi = afi;
199
200 return ac;
201 }
202
203 static int
204 bgp_af_caps_cmp(const void *X, const void *Y)
205 {
206 const struct bgp_af_caps *x = X, *y = Y;
207 return (x->afi < y->afi) ? -1 : (x->afi > y->afi) ? 1 : 0;
208 }
209
210
211 static byte *
212 bgp_write_capabilities(struct bgp_conn *conn, byte *buf)
213 {
214 struct bgp_proto *p = conn->bgp;
215 struct bgp_channel *c;
216 struct bgp_caps *caps;
217 struct bgp_af_caps *ac;
218 uint any_ext_next_hop = 0;
219 uint any_add_path = 0;
220 byte *buf_head = buf;
221 byte *data;
222
223 /* Prepare bgp_caps structure */
224
225 int n = list_length(&p->p.channels);
226 caps = mb_allocz(p->p.pool, sizeof(struct bgp_caps) + n * sizeof(struct bgp_af_caps));
227 conn->local_caps = caps;
228
229 caps->as4_support = p->cf->enable_as4;
230 caps->ext_messages = p->cf->enable_extended_messages;
231 caps->route_refresh = p->cf->enable_refresh;
232 caps->enhanced_refresh = p->cf->enable_refresh;
233
234 if (caps->as4_support)
235 caps->as4_number = p->public_as;
236
237 if (p->cf->gr_mode)
238 {
239 caps->gr_aware = 1;
240 caps->gr_time = p->cf->gr_time;
241 caps->gr_flags = p->p.gr_recovery ? BGP_GRF_RESTART : 0;
242 }
243
244 if (p->cf->llgr_mode)
245 caps->llgr_aware = 1;
246
247 /* Allocate and fill per-AF fields */
248 WALK_LIST(c, p->p.channels)
249 {
250 ac = &caps->af_data[caps->af_count++];
251 ac->afi = c->afi;
252 ac->ready = 1;
253
254 ac->ext_next_hop = bgp_channel_is_ipv4(c) && c->cf->ext_next_hop;
255 any_ext_next_hop |= ac->ext_next_hop;
256
257 ac->add_path = c->cf->add_path;
258 any_add_path |= ac->add_path;
259
260 if (c->cf->gr_able)
261 {
262 ac->gr_able = 1;
263
264 if (p->p.gr_recovery)
265 ac->gr_af_flags |= BGP_GRF_FORWARDING;
266 }
267
268 if (c->cf->llgr_able)
269 {
270 ac->llgr_able = 1;
271 ac->llgr_time = c->cf->llgr_time;
272
273 if (p->p.gr_recovery)
274 ac->llgr_flags |= BGP_LLGRF_FORWARDING;
275 }
276 }
277
278 /* Sort capability fields by AFI/SAFI */
279 qsort(caps->af_data, caps->af_count, sizeof(struct bgp_af_caps), bgp_af_caps_cmp);
280
281
282 /* Create capability list in buffer */
283
284 /*
285 * Note that max length is ~ 22+21*af_count. With max 12 channels that is
286 * 274. Option limit is 253 and buffer size is 4096, so we cannot overflow
287 * unless we add new capabilities or more AFs. XXXXX
288 */
289
290 WALK_AF_CAPS(caps, ac)
291 if (ac->ready)
292 {
293 *buf++ = 1; /* Capability 1: Multiprotocol extensions */
294 *buf++ = 4; /* Capability data length */
295 put_af4(buf, ac->afi);
296 buf += 4;
297 }
298
299 if (caps->route_refresh)
300 {
301 *buf++ = 2; /* Capability 2: Support for route refresh */
302 *buf++ = 0; /* Capability data length */
303 }
304
305 if (any_ext_next_hop)
306 {
307 *buf++ = 5; /* Capability 5: Support for extended next hop */
308 *buf++ = 0; /* Capability data length, will be fixed later */
309 data = buf;
310
311 WALK_AF_CAPS(caps, ac)
312 if (ac->ext_next_hop)
313 {
314 put_af4(buf, ac->afi);
315 put_u16(buf+4, BGP_AFI_IPV6);
316 buf += 6;
317 }
318
319 data[-1] = buf - data;
320 }
321
322 if (caps->ext_messages)
323 {
324 *buf++ = 6; /* Capability 6: Support for extended messages */
325 *buf++ = 0; /* Capability data length */
326 }
327
328 if (caps->gr_aware)
329 {
330 *buf++ = 64; /* Capability 64: Support for graceful restart */
331 *buf++ = 0; /* Capability data length, will be fixed later */
332 data = buf;
333
334 put_u16(buf, caps->gr_time);
335 buf[0] |= caps->gr_flags;
336 buf += 2;
337
338 WALK_AF_CAPS(caps, ac)
339 if (ac->gr_able)
340 {
341 put_af3(buf, ac->afi);
342 buf[3] = ac->gr_af_flags;
343 buf += 4;
344 }
345
346 data[-1] = buf - data;
347 }
348
349 if (caps->as4_support)
350 {
351 *buf++ = 65; /* Capability 65: Support for 4-octet AS number */
352 *buf++ = 4; /* Capability data length */
353 put_u32(buf, p->public_as);
354 buf += 4;
355 }
356
357 if (any_add_path)
358 {
359 *buf++ = 69; /* Capability 69: Support for ADD-PATH */
360 *buf++ = 0; /* Capability data length, will be fixed later */
361 data = buf;
362
363 WALK_AF_CAPS(caps, ac)
364 if (ac->add_path)
365 {
366 put_af3(buf, ac->afi);
367 buf[3] = ac->add_path;
368 buf += 4;
369 }
370
371 data[-1] = buf - data;
372 }
373
374 if (caps->enhanced_refresh)
375 {
376 *buf++ = 70; /* Capability 70: Support for enhanced route refresh */
377 *buf++ = 0; /* Capability data length */
378 }
379
380 if (caps->llgr_aware)
381 {
382 *buf++ = 71; /* Capability 71: Support for long-lived graceful restart */
383 *buf++ = 0; /* Capability data length, will be fixed later */
384 data = buf;
385
386 WALK_AF_CAPS(caps, ac)
387 if (ac->llgr_able)
388 {
389 put_af3(buf, ac->afi);
390 buf[3] = ac->llgr_flags;
391 put_u24(buf+4, ac->llgr_time);
392 buf += 7;
393 }
394
395 data[-1] = buf - data;
396 }
397
398 caps->length = buf - buf_head;
399
400 return buf;
401 }
402
403 static void
404 bgp_read_capabilities(struct bgp_conn *conn, struct bgp_caps *caps, byte *pos, int len)
405 {
406 struct bgp_proto *p = conn->bgp;
407 struct bgp_af_caps *ac;
408 int i, cl;
409 u32 af;
410
411 caps->length += len;
412
413 while (len > 0)
414 {
415 if (len < 2 || len < (2 + pos[1]))
416 goto err;
417
418 /* Capability length */
419 cl = pos[1];
420
421 /* Capability type */
422 switch (pos[0])
423 {
424 case 1: /* Multiprotocol capability, RFC 4760 */
425 if (cl != 4)
426 goto err;
427
428 af = get_af4(pos+2);
429 ac = bgp_get_af_caps(caps, af);
430 ac->ready = 1;
431 break;
432
433 case 2: /* Route refresh capability, RFC 2918 */
434 if (cl != 0)
435 goto err;
436
437 caps->route_refresh = 1;
438 break;
439
440 case 5: /* Extended next hop encoding capability, RFC 5549 */
441 if (cl % 6)
442 goto err;
443
444 for (i = 0; i < cl; i += 6)
445 {
446 /* Specified only for IPv4 prefixes with IPv6 next hops */
447 if ((get_u16(pos+2+i+0) != BGP_AFI_IPV4) ||
448 (get_u16(pos+2+i+4) != BGP_AFI_IPV6))
449 continue;
450
451 af = get_af4(pos+2+i);
452 ac = bgp_get_af_caps(caps, af);
453 ac->ext_next_hop = 1;
454 }
455 break;
456
457 case 6: /* Extended message length capability, RFC draft */
458 if (cl != 0)
459 goto err;
460
461 caps->ext_messages = 1;
462 break;
463
464 case 64: /* Graceful restart capability, RFC 4724 */
465 if (cl % 4 != 2)
466 goto err;
467
468 /* Only the last instance is valid */
469 WALK_AF_CAPS(caps, ac)
470 {
471 ac->gr_able = 0;
472 ac->gr_af_flags = 0;
473 }
474
475 caps->gr_aware = 1;
476 caps->gr_flags = pos[2] & 0xf0;
477 caps->gr_time = get_u16(pos + 2) & 0x0fff;
478
479 for (i = 2; i < cl; i += 4)
480 {
481 af = get_af3(pos+2+i);
482 ac = bgp_get_af_caps(caps, af);
483 ac->gr_able = 1;
484 ac->gr_af_flags = pos[2+i+3];
485 }
486 break;
487
488 case 65: /* AS4 capability, RFC 6793 */
489 if (cl != 4)
490 goto err;
491
492 caps->as4_support = 1;
493 caps->as4_number = get_u32(pos + 2);
494 break;
495
496 case 69: /* ADD-PATH capability, RFC 7911 */
497 if (cl % 4)
498 goto err;
499
500 for (i = 0; i < cl; i += 4)
501 {
502 byte val = pos[2+i+3];
503 if (!val || (val > BGP_ADD_PATH_FULL))
504 {
505 log(L_WARN "%s: Got ADD-PATH capability with unknown value %u, ignoring",
506 p->p.name, val);
507 break;
508 }
509 }
510
511 for (i = 0; i < cl; i += 4)
512 {
513 af = get_af3(pos+2+i);
514 ac = bgp_get_af_caps(caps, af);
515 ac->add_path = pos[2+i+3];
516 }
517 break;
518
519 case 70: /* Enhanced route refresh capability, RFC 7313 */
520 if (cl != 0)
521 goto err;
522
523 caps->enhanced_refresh = 1;
524 break;
525
526 case 71: /* Long lived graceful restart capability, RFC draft */
527 if (cl % 7)
528 goto err;
529
530 /* Presumably, only the last instance is valid */
531 WALK_AF_CAPS(caps, ac)
532 {
533 ac->llgr_able = 0;
534 ac->llgr_flags = 0;
535 ac->llgr_time = 0;
536 }
537
538 caps->llgr_aware = 1;
539
540 for (i = 0; i < cl; i += 7)
541 {
542 af = get_af3(pos+2+i);
543 ac = bgp_get_af_caps(caps, af);
544 ac->llgr_able = 1;
545 ac->llgr_flags = pos[2+i+3];
546 ac->llgr_time = get_u24(pos + 2+i+4);
547 }
548 break;
549
550 /* We can safely ignore all other capabilities */
551 }
552
553 ADVANCE(pos, len, 2 + cl);
554 }
555
556 /* The LLGR capability must be advertised together with the GR capability,
557 otherwise it must be disregarded */
558 if (!caps->gr_aware && caps->llgr_aware)
559 {
560 caps->llgr_aware = 0;
561 WALK_AF_CAPS(caps, ac)
562 {
563 ac->llgr_able = 0;
564 ac->llgr_flags = 0;
565 ac->llgr_time = 0;
566 }
567 }
568
569 return;
570
571 err:
572 bgp_error(conn, 2, 0, NULL, 0);
573 return;
574 }
575
576 static int
577 bgp_check_capabilities(struct bgp_conn *conn)
578 {
579 struct bgp_proto *p = conn->bgp;
580 struct bgp_caps *local = conn->local_caps;
581 struct bgp_caps *remote = conn->remote_caps;
582 struct bgp_channel *c;
583 int count = 0;
584
585 /* This is partially overlapping with bgp_conn_enter_established_state(),
586 but we need to run this just after we receive OPEN message */
587
588 WALK_LIST(c, p->p.channels)
589 {
590 const struct bgp_af_caps *loc = bgp_find_af_caps(local, c->afi);
591 const struct bgp_af_caps *rem = bgp_find_af_caps(remote, c->afi);
592
593 /* Find out whether this channel will be active */
594 int active = loc && loc->ready &&
595 ((rem && rem->ready) || (!remote->length && (c->afi == BGP_AF_IPV4)));
596
597 /* Mandatory must be active */
598 if (c->cf->mandatory && !active)
599 return 0;
600
601 if (active)
602 count++;
603 }
604
605 /* We need at least one channel active */
606 if (!count)
607 return 0;
608
609 return 1;
610 }
611
612 static int
613 bgp_read_options(struct bgp_conn *conn, byte *pos, int len)
614 {
615 struct bgp_proto *p = conn->bgp;
616 struct bgp_caps *caps;
617 int ol;
618
619 /* Max number of announced AFIs is limited by max option length (255) */
620 caps = alloca(sizeof(struct bgp_caps) + 64 * sizeof(struct bgp_af_caps));
621 memset(caps, 0, sizeof(struct bgp_caps));
622
623 while (len > 0)
624 {
625 if ((len < 2) || (len < (2 + pos[1])))
626 { bgp_error(conn, 2, 0, NULL, 0); return -1; }
627
628 ol = pos[1];
629 if (pos[0] == 2)
630 {
631 /* BGP capabilities, RFC 5492 */
632 if (p->cf->capabilities)
633 bgp_read_capabilities(conn, caps, pos + 2, ol);
634 }
635 else
636 {
637 /* Unknown option */
638 bgp_error(conn, 2, 4, pos, ol); /* FIXME: ol or ol+2 ? */
639 return -1;
640 }
641
642 ADVANCE(pos, len, 2 + ol);
643 }
644
645 uint n = sizeof(struct bgp_caps) + caps->af_count * sizeof(struct bgp_af_caps);
646 conn->remote_caps = mb_allocz(p->p.pool, n);
647 memcpy(conn->remote_caps, caps, n);
648
649 return 0;
650 }
651
652 static byte *
653 bgp_create_open(struct bgp_conn *conn, byte *buf)
654 {
655 struct bgp_proto *p = conn->bgp;
656
657 BGP_TRACE(D_PACKETS, "Sending OPEN(ver=%d,as=%d,hold=%d,id=%08x)",
658 BGP_VERSION, p->public_as, p->cf->hold_time, p->local_id);
659
660 buf[0] = BGP_VERSION;
661 put_u16(buf+1, (p->public_as < 0xFFFF) ? p->public_as : AS_TRANS);
662 put_u16(buf+3, p->cf->hold_time);
663 put_u32(buf+5, p->local_id);
664
665 if (p->cf->capabilities)
666 {
667 /* Prepare local_caps and write capabilities to buffer */
668 byte *end = bgp_write_capabilities(conn, buf+12);
669 uint len = end - (buf+12);
670
671 buf[9] = len + 2; /* Optional parameters length */
672 buf[10] = 2; /* Option 2: Capability list */
673 buf[11] = len; /* Option data length */
674
675 return end;
676 }
677 else
678 {
679 /* Prepare empty local_caps */
680 conn->local_caps = mb_allocz(p->p.pool, sizeof(struct bgp_caps));
681
682 buf[9] = 0; /* No optional parameters */
683 return buf + 10;
684 }
685
686 return buf;
687 }
688
689 static void
690 bgp_rx_open(struct bgp_conn *conn, byte *pkt, uint len)
691 {
692 struct bgp_proto *p = conn->bgp;
693 struct bgp_conn *other;
694 u32 asn, hold, id;
695
696 /* Check state */
697 if (conn->state != BS_OPENSENT)
698 { bgp_error(conn, 5, fsm_err_subcode[conn->state], NULL, 0); return; }
699
700 /* Check message contents */
701 if (len < 29 || len != 29 + (uint) pkt[28])
702 { bgp_error(conn, 1, 2, pkt+16, 2); return; }
703
704 if (pkt[19] != BGP_VERSION)
705 { u16 val = BGP_VERSION; bgp_error(conn, 2, 1, (byte *) &val, 2); return; }
706
707 asn = get_u16(pkt+20);
708 hold = get_u16(pkt+22);
709 id = get_u32(pkt+24);
710 BGP_TRACE(D_PACKETS, "Got OPEN(as=%d,hold=%d,id=%R)", asn, hold, id);
711
712 if (bgp_read_options(conn, pkt+29, pkt[28]) < 0)
713 return;
714
715 if (hold > 0 && hold < 3)
716 { bgp_error(conn, 2, 6, pkt+22, 2); return; }
717
718 /* RFC 6286 2.2 - router ID is nonzero and AS-wide unique */
719 if (!id || (p->is_internal && id == p->local_id))
720 { bgp_error(conn, 2, 3, pkt+24, -4); return; }
721
722 /* RFC 5492 4 - check for required capabilities */
723 if (p->cf->capabilities && !bgp_check_capabilities(conn))
724 { bgp_error(conn, 2, 7, NULL, 0); return; }
725
726 struct bgp_caps *caps = conn->remote_caps;
727
728 if (caps->as4_support)
729 {
730 u32 as4 = caps->as4_number;
731
732 if ((as4 != asn) && (asn != AS_TRANS))
733 log(L_WARN "%s: Peer advertised inconsistent AS numbers", p->p.name);
734
735 if (as4 != p->remote_as)
736 { as4 = htonl(as4); bgp_error(conn, 2, 2, (byte *) &as4, 4); return; }
737 }
738 else
739 {
740 if (asn != p->remote_as)
741 { bgp_error(conn, 2, 2, pkt+20, 2); return; }
742 }
743
744 /* Check the other connection */
745 other = (conn == &p->outgoing_conn) ? &p->incoming_conn : &p->outgoing_conn;
746 switch (other->state)
747 {
748 case BS_CONNECT:
749 case BS_ACTIVE:
750 /* Stop outgoing connection attempts */
751 bgp_conn_enter_idle_state(other);
752 break;
753
754 case BS_IDLE:
755 case BS_OPENSENT:
756 case BS_CLOSE:
757 break;
758
759 case BS_OPENCONFIRM:
760 /*
761 * Description of collision detection rules in RFC 4271 is confusing and
762 * contradictory, but it is essentially:
763 *
764 * 1. Router with higher ID is dominant
765 * 2. If both have the same ID, router with higher ASN is dominant [RFC6286]
766 * 3. When both connections are in OpenConfirm state, one initiated by
767 * the dominant router is kept.
768 *
769 * The first line in the expression below evaluates whether the neighbor
770 * is dominant, the second line whether the new connection was initiated
771 * by the neighbor. If both are true (or both are false), we keep the new
772 * connection, otherwise we keep the old one.
773 */
774 if (((p->local_id < id) || ((p->local_id == id) && (p->public_as < p->remote_as)))
775 == (conn == &p->incoming_conn))
776 {
777 /* Should close the other connection */
778 BGP_TRACE(D_EVENTS, "Connection collision, giving up the other connection");
779 bgp_error(other, 6, 7, NULL, 0);
780 break;
781 }
782 /* Fall thru */
783 case BS_ESTABLISHED:
784 /* Should close this connection */
785 BGP_TRACE(D_EVENTS, "Connection collision, giving up this connection");
786 bgp_error(conn, 6, 7, NULL, 0);
787 return;
788
789 default:
790 bug("bgp_rx_open: Unknown state");
791 }
792
793 /* Update our local variables */
794 conn->hold_time = MIN(hold, p->cf->hold_time);
795 conn->keepalive_time = p->cf->keepalive_time ? : conn->hold_time / 3;
796 conn->as4_session = conn->local_caps->as4_support && caps->as4_support;
797 conn->ext_messages = conn->local_caps->ext_messages && caps->ext_messages;
798 p->remote_id = id;
799
800 DBG("BGP: Hold timer set to %d, keepalive to %d, AS to %d, ID to %x, AS4 session to %d\n",
801 conn->hold_time, conn->keepalive_time, p->remote_as, p->remote_id, conn->as4_session);
802
803 bgp_schedule_packet(conn, NULL, PKT_KEEPALIVE);
804 bgp_start_timer(conn->hold_timer, conn->hold_time);
805 bgp_conn_enter_openconfirm_state(conn);
806 }
807
808
809 /*
810 * Next hop handling
811 */
812
813 #define REPORT(msg, args...) \
814 ({ log(L_REMOTE "%s: " msg, s->proto->p.name, ## args); })
815
816 #define DISCARD(msg, args...) \
817 ({ REPORT(msg, ## args); return; })
818
819 #define WITHDRAW(msg, args...) \
820 ({ REPORT(msg, ## args); s->err_withdraw = 1; return; })
821
822 #define BAD_AFI "Unexpected AF <%u/%u> in UPDATE"
823 #define BAD_NEXT_HOP "Invalid NEXT_HOP attribute"
824 #define NO_NEXT_HOP "Missing NEXT_HOP attribute"
825 #define NO_LABEL_STACK "Missing MPLS stack"
826
827
828 static void
829 bgp_apply_next_hop(struct bgp_parse_state *s, rta *a, ip_addr gw, ip_addr ll)
830 {
831 struct bgp_proto *p = s->proto;
832 struct bgp_channel *c = s->channel;
833
834 if (c->cf->gw_mode == GW_DIRECT)
835 {
836 neighbor *nbr = NULL;
837
838 /* GW_DIRECT -> single_hop -> p->neigh != NULL */
839 if (ipa_nonzero(gw))
840 nbr = neigh_find(&p->p, gw, NULL, 0);
841 else if (ipa_nonzero(ll))
842 nbr = neigh_find(&p->p, ll, p->neigh->iface, 0);
843
844 if (!nbr || (nbr->scope == SCOPE_HOST))
845 WITHDRAW(BAD_NEXT_HOP);
846
847 a->dest = RTD_UNICAST;
848 a->nh.gw = nbr->addr;
849 a->nh.iface = nbr->iface;
850 }
851 else /* GW_RECURSIVE */
852 {
853 if (ipa_zero(gw))
854 WITHDRAW(BAD_NEXT_HOP);
855
856 rtable *tab = ipa_is_ip4(gw) ? c->igp_table_ip4 : c->igp_table_ip6;
857 s->hostentry = rt_get_hostentry(tab, gw, ll, c->c.table);
858
859 if (!s->mpls)
860 rta_apply_hostentry(a, s->hostentry, NULL);
861
862 /* With MPLS, hostentry is applied later in bgp_apply_mpls_labels() */
863 }
864 }
865
866 static void
867 bgp_apply_mpls_labels(struct bgp_parse_state *s, rta *a, u32 *labels, uint lnum)
868 {
869 if (lnum > MPLS_MAX_LABEL_STACK)
870 {
871 REPORT("Too many MPLS labels ($u)", lnum);
872
873 a->dest = RTD_UNREACHABLE;
874 a->hostentry = NULL;
875 a->nh = (struct nexthop) { };
876 return;
877 }
878
879 /* Handle implicit NULL as empty MPLS stack */
880 if ((lnum == 1) && (labels[0] == BGP_MPLS_NULL))
881 lnum = 0;
882
883 if (s->channel->cf->gw_mode == GW_DIRECT)
884 {
885 a->nh.labels = lnum;
886 memcpy(a->nh.label, labels, 4*lnum);
887 }
888 else /* GW_RECURSIVE */
889 {
890 mpls_label_stack ms;
891
892 ms.len = lnum;
893 memcpy(ms.stack, labels, 4*lnum);
894 rta_apply_hostentry(a, s->hostentry, &ms);
895 }
896 }
897
898
899 static int
900 bgp_match_src(struct bgp_export_state *s, int mode)
901 {
902 switch (mode)
903 {
904 case NH_NO: return 0;
905 case NH_ALL: return 1;
906 case NH_IBGP: return s->src && s->src->is_internal;
907 case NH_EBGP: return s->src && !s->src->is_internal;
908 default: return 0;
909 }
910 }
911
912 static inline int
913 bgp_use_next_hop(struct bgp_export_state *s, eattr *a)
914 {
915 struct bgp_proto *p = s->proto;
916 struct bgp_channel *c = s->channel;
917 ip_addr *nh = (void *) a->u.ptr->data;
918
919 /* Handle next hop self option */
920 if (c->cf->next_hop_self && bgp_match_src(s, c->cf->next_hop_self))
921 return 0;
922
923 /* Handle next hop keep option */
924 if (c->cf->next_hop_keep && bgp_match_src(s, c->cf->next_hop_keep))
925 return 1;
926
927 /* Keep it when explicitly set in export filter */
928 if (a->type & EAF_FRESH)
929 return 1;
930
931 /* Check for non-matching AF */
932 if ((ipa_is_ip4(*nh) != bgp_channel_is_ipv4(c)) && !c->ext_next_hop)
933 return 0;
934
935 /* Keep it when exported to internal peers */
936 if (p->is_interior && ipa_nonzero(*nh))
937 return 1;
938
939 /* Keep it when forwarded between single-hop BGPs on the same iface */
940 struct iface *ifa = (s->src && s->src->neigh) ? s->src->neigh->iface : NULL;
941 return p->neigh && (p->neigh->iface == ifa);
942 }
943
944 static inline int
945 bgp_use_gateway(struct bgp_export_state *s)
946 {
947 struct bgp_proto *p = s->proto;
948 struct bgp_channel *c = s->channel;
949 rta *ra = s->route->attrs;
950
951 /* Handle next hop self option - also applies to gateway */
952 if (c->cf->next_hop_self && bgp_match_src(s, c->cf->next_hop_self))
953 return 0;
954
955 /* We need one valid global gateway */
956 if ((ra->dest != RTD_UNICAST) || ra->nh.next || ipa_zero(ra->nh.gw) || ipa_is_link_local(ra->nh.gw))
957 return 0;
958
959 /* Check for non-matching AF */
960 if ((ipa_is_ip4(ra->nh.gw) != bgp_channel_is_ipv4(c)) && !c->ext_next_hop)
961 return 0;
962
963 /* Use it when exported to internal peers */
964 if (p->is_interior)
965 return 1;
966
967 /* Use it when forwarded to single-hop BGP peer on on the same iface */
968 return p->neigh && (p->neigh->iface == ra->nh.iface);
969 }
970
971 static void
972 bgp_update_next_hop_ip(struct bgp_export_state *s, eattr *a, ea_list **to)
973 {
974 if (!a || !bgp_use_next_hop(s, a))
975 {
976 if (bgp_use_gateway(s))
977 {
978 rta *ra = s->route->attrs;
979 ip_addr nh[1] = { ra->nh.gw };
980 bgp_set_attr_data(to, s->pool, BA_NEXT_HOP, 0, nh, 16);
981
982 if (s->mpls)
983 {
984 u32 implicit_null = BGP_MPLS_NULL;
985 u32 *labels = ra->nh.labels ? ra->nh.label : &implicit_null;
986 uint lnum = ra->nh.labels ? ra->nh.labels : 1;
987 bgp_set_attr_data(to, s->pool, BA_MPLS_LABEL_STACK, 0, labels, lnum * 4);
988 }
989 }
990 else
991 {
992 ip_addr nh[2] = { s->channel->next_hop_addr, s->channel->link_addr };
993 bgp_set_attr_data(to, s->pool, BA_NEXT_HOP, 0, nh, ipa_nonzero(nh[1]) ? 32 : 16);
994
995 /* TODO: Use local MPLS assigned label */
996 if (s->mpls)
997 {
998 u32 implicit_null = BGP_MPLS_NULL;
999 bgp_set_attr_data(to, s->pool, BA_MPLS_LABEL_STACK, 0, &implicit_null, 4);
1000 }
1001 }
1002 }
1003
1004 /* Check if next hop is valid */
1005 a = bgp_find_attr(*to, BA_NEXT_HOP);
1006 if (!a)
1007 WITHDRAW(NO_NEXT_HOP);
1008
1009 ip_addr *nh = (void *) a->u.ptr->data;
1010 ip_addr peer = s->proto->cf->remote_ip;
1011 uint len = a->u.ptr->length;
1012
1013 /* Forbid zero next hop */
1014 if (ipa_zero(nh[0]) && ((len != 32) || ipa_zero(nh[1])))
1015 WITHDRAW(BAD_NEXT_HOP);
1016
1017 /* Forbid next hop equal to neighbor IP */
1018 if (ipa_equal(peer, nh[0]) || ((len == 32) && ipa_equal(peer, nh[1])))
1019 WITHDRAW(BAD_NEXT_HOP);
1020
1021 /* Forbid next hop with non-matching AF */
1022 if ((ipa_is_ip4(nh[0]) != bgp_channel_is_ipv4(s->channel)) &&
1023 !s->channel->ext_next_hop)
1024 WITHDRAW(BAD_NEXT_HOP);
1025
1026 /* Just check if MPLS stack */
1027 if (s->mpls && !bgp_find_attr(*to, BA_MPLS_LABEL_STACK))
1028 WITHDRAW(NO_LABEL_STACK);
1029 }
1030
1031 static uint
1032 bgp_encode_next_hop_ip(struct bgp_write_state *s, eattr *a, byte *buf, uint size UNUSED)
1033 {
1034 /* This function is used only for MP-BGP, see bgp_encode_next_hop() for IPv4 BGP */
1035 ip_addr *nh = (void *) a->u.ptr->data;
1036 uint len = a->u.ptr->length;
1037
1038 ASSERT((len == 16) || (len == 32));
1039
1040 /*
1041 * Both IPv4 and IPv6 next hops can be used (with ext_next_hop enabled). This
1042 * is specified in RFC 5549 for IPv4 and in RFC 4798 for IPv6. The difference
1043 * is that IPv4 address is directly encoded with IPv4 NLRI, but as IPv4-mapped
1044 * IPv6 address with IPv6 NLRI.
1045 */
1046
1047 if (bgp_channel_is_ipv4(s->channel) && ipa_is_ip4(nh[0]))
1048 {
1049 put_ip4(buf, ipa_to_ip4(nh[0]));
1050 return 4;
1051 }
1052
1053 put_ip6(buf, ipa_to_ip6(nh[0]));
1054
1055 if (len == 32)
1056 put_ip6(buf+16, ipa_to_ip6(nh[1]));
1057
1058 return len;
1059 }
1060
1061 static void
1062 bgp_decode_next_hop_ip(struct bgp_parse_state *s, byte *data, uint len, rta *a)
1063 {
1064 struct bgp_channel *c = s->channel;
1065 struct adata *ad = lp_alloc_adata(s->pool, 32);
1066 ip_addr *nh = (void *) ad->data;
1067
1068 if (len == 4)
1069 {
1070 nh[0] = ipa_from_ip4(get_ip4(data));
1071 nh[1] = IPA_NONE;
1072 }
1073 else if (len == 16)
1074 {
1075 nh[0] = ipa_from_ip6(get_ip6(data));
1076 nh[1] = IPA_NONE;
1077
1078 if (ipa_is_link_local(nh[0]))
1079 { nh[1] = nh[0]; nh[0] = IPA_NONE; }
1080 }
1081 else if (len == 32)
1082 {
1083 nh[0] = ipa_from_ip6(get_ip6(data));
1084 nh[1] = ipa_from_ip6(get_ip6(data+16));
1085
1086 if (ipa_is_ip4(nh[0]) || !ip6_is_link_local(nh[1]))
1087 nh[1] = IPA_NONE;
1088 }
1089 else
1090 bgp_parse_error(s, 9);
1091
1092 if (ipa_zero(nh[1]))
1093 ad->length = 16;
1094
1095 if ((bgp_channel_is_ipv4(c) != ipa_is_ip4(nh[0])) && !c->ext_next_hop)
1096 WITHDRAW(BAD_NEXT_HOP);
1097
1098 // XXXX validate next hop
1099
1100 bgp_set_attr_ptr(&(a->eattrs), s->pool, BA_NEXT_HOP, 0, ad);
1101 bgp_apply_next_hop(s, a, nh[0], nh[1]);
1102 }
1103
1104 static uint
1105 bgp_encode_next_hop_vpn(struct bgp_write_state *s, eattr *a, byte *buf, uint size UNUSED)
1106 {
1107 ip_addr *nh = (void *) a->u.ptr->data;
1108 uint len = a->u.ptr->length;
1109
1110 ASSERT((len == 16) || (len == 32));
1111
1112 /*
1113 * Both IPv4 and IPv6 next hops can be used (with ext_next_hop enabled). This
1114 * is specified in RFC 5549 for VPNv4 and in RFC 4659 for VPNv6. The difference
1115 * is that IPv4 address is directly encoded with VPNv4 NLRI, but as IPv4-mapped
1116 * IPv6 address with VPNv6 NLRI.
1117 */
1118
1119 if (bgp_channel_is_ipv4(s->channel) && ipa_is_ip4(nh[0]))
1120 {
1121 put_u64(buf, 0); /* VPN RD is 0 */
1122 put_ip4(buf+8, ipa_to_ip4(nh[0]));
1123 return 12;
1124 }
1125
1126 put_u64(buf, 0); /* VPN RD is 0 */
1127 put_ip6(buf+8, ipa_to_ip6(nh[0]));
1128
1129 if (len == 16)
1130 return 24;
1131
1132 put_u64(buf+24, 0); /* VPN RD is 0 */
1133 put_ip6(buf+32, ipa_to_ip6(nh[1]));
1134
1135 return 48;
1136 }
1137
1138 static void
1139 bgp_decode_next_hop_vpn(struct bgp_parse_state *s, byte *data, uint len, rta *a)
1140 {
1141 struct bgp_channel *c = s->channel;
1142 struct adata *ad = lp_alloc_adata(s->pool, 32);
1143 ip_addr *nh = (void *) ad->data;
1144
1145 if (len == 12)
1146 {
1147 nh[0] = ipa_from_ip4(get_ip4(data+8));
1148 nh[1] = IPA_NONE;
1149 }
1150 else if (len == 24)
1151 {
1152 nh[0] = ipa_from_ip6(get_ip6(data+8));
1153 nh[1] = IPA_NONE;
1154
1155 if (ipa_is_link_local(nh[0]))
1156 { nh[1] = nh[0]; nh[0] = IPA_NONE; }
1157 }
1158 else if (len == 48)
1159 {
1160 nh[0] = ipa_from_ip6(get_ip6(data+8));
1161 nh[1] = ipa_from_ip6(get_ip6(data+32));
1162
1163 if (ipa_is_ip4(nh[0]) || !ip6_is_link_local(nh[1]))
1164 nh[1] = IPA_NONE;
1165 }
1166 else
1167 bgp_parse_error(s, 9);
1168
1169 if (ipa_zero(nh[1]))
1170 ad->length = 16;
1171
1172 /* XXXX which error */
1173 if ((get_u64(data) != 0) || ((len == 48) && (get_u64(data+24) != 0)))
1174 bgp_parse_error(s, 9);
1175
1176 if ((bgp_channel_is_ipv4(c) != ipa_is_ip4(nh[0])) && !c->ext_next_hop)
1177 WITHDRAW(BAD_NEXT_HOP);
1178
1179 // XXXX validate next hop
1180
1181 bgp_set_attr_ptr(&(a->eattrs), s->pool, BA_NEXT_HOP, 0, ad);
1182 bgp_apply_next_hop(s, a, nh[0], nh[1]);
1183 }
1184
1185
1186
1187 static uint
1188 bgp_encode_next_hop_none(struct bgp_write_state *s UNUSED, eattr *a UNUSED, byte *buf UNUSED, uint size UNUSED)
1189 {
1190 return 0;
1191 }
1192
1193 static void
1194 bgp_decode_next_hop_none(struct bgp_parse_state *s UNUSED, byte *data UNUSED, uint len UNUSED, rta *a UNUSED)
1195 {
1196 /*
1197 * Although we expect no next hop and RFC 7606 7.11 states that attribute
1198 * MP_REACH_NLRI with unexpected next hop length is considered malformed,
1199 * FlowSpec RFC 5575 4 states that next hop shall be ignored on receipt.
1200 */
1201
1202 return;
1203 }
1204
1205 static void
1206 bgp_update_next_hop_none(struct bgp_export_state *s, eattr *a, ea_list **to)
1207 {
1208 /* NEXT_HOP shall not pass */
1209 if (a)
1210 bgp_unset_attr(to, s->pool, BA_NEXT_HOP);
1211 }
1212
1213
1214 /*
1215 * UPDATE
1216 */
1217
1218 static void
1219 bgp_rte_update(struct bgp_parse_state *s, net_addr *n, u32 path_id, rta *a0)
1220 {
1221 if (path_id != s->last_id)
1222 {
1223 s->last_src = rt_get_source(&s->proto->p, path_id);
1224 s->last_id = path_id;
1225
1226 rta_free(s->cached_rta);
1227 s->cached_rta = NULL;
1228 }
1229
1230 if (!a0)
1231 {
1232 /* Route withdraw */
1233 rte_update3(&s->channel->c, n, NULL, s->last_src);
1234 return;
1235 }
1236
1237 /* Prepare cached route attributes */
1238 if (s->cached_rta == NULL)
1239 {
1240 a0->src = s->last_src;
1241
1242 /* Workaround for rta_lookup() breaking eattrs */
1243 ea_list *ea = a0->eattrs;
1244 s->cached_rta = rta_lookup(a0);
1245 a0->eattrs = ea;
1246 }
1247
1248 rta *a = rta_clone(s->cached_rta);
1249 rte *e = rte_get_temp(a);
1250
1251 e->pflags = 0;
1252 e->u.bgp.suppressed = 0;
1253 e->u.bgp.stale = -1;
1254 rte_update3(&s->channel->c, n, e, s->last_src);
1255 }
1256
1257 static void
1258 bgp_encode_mpls_labels(struct bgp_write_state *s UNUSED, adata *mpls, byte **pos, uint *size, byte *pxlen)
1259 {
1260 u32 dummy = 0;
1261 u32 *labels = mpls ? (u32 *) mpls->data : &dummy;
1262 uint lnum = mpls ? (mpls->length / 4) : 1;
1263
1264 for (uint i = 0; i < lnum; i++)
1265 {
1266 put_u24(*pos, labels[i] << 4);
1267 ADVANCE(*pos, *size, 3);
1268 }
1269
1270 /* Add bottom-of-stack flag */
1271 (*pos)[-1] |= BGP_MPLS_BOS;
1272
1273 *pxlen += 24 * lnum;
1274 }
1275
1276 static void
1277 bgp_decode_mpls_labels(struct bgp_parse_state *s, byte **pos, uint *len, uint *pxlen, rta *a)
1278 {
1279 u32 labels[BGP_MPLS_MAX], label;
1280 uint lnum = 0;
1281
1282 do {
1283 if (*pxlen < 24)
1284 bgp_parse_error(s, 1);
1285
1286 label = get_u24(*pos);
1287 labels[lnum++] = label >> 4;
1288 ADVANCE(*pos, *len, 3);
1289 *pxlen -= 24;
1290
1291 /* RFC 8277 2.4 - withdraw does not have variable-size MPLS stack but
1292 fixed-size 24-bit Compatibility field, which MUST be ignored */
1293 if (!a && !s->err_withdraw)
1294 return;
1295 }
1296 while (!(label & BGP_MPLS_BOS));
1297
1298 if (!a)
1299 return;
1300
1301 /* Attach MPLS attribute unless we already have one */
1302 if (!s->mpls_labels)
1303 {
1304 s->mpls_labels = lp_alloc_adata(s->pool, 4*BGP_MPLS_MAX);
1305 bgp_set_attr_ptr(&(a->eattrs), s->pool, BA_MPLS_LABEL_STACK, 0, s->mpls_labels);
1306 }
1307
1308 /* Overwrite data in the attribute */
1309 s->mpls_labels->length = 4*lnum;
1310 memcpy(s->mpls_labels->data, labels, 4*lnum);
1311
1312 /* Update next hop entry in rta */
1313 bgp_apply_mpls_labels(s, a, labels, lnum);
1314
1315 /* Attributes were changed, invalidate cached entry */
1316 rta_free(s->cached_rta);
1317 s->cached_rta = NULL;
1318
1319 return;
1320 }
1321
1322 static uint
1323 bgp_encode_nlri_ip4(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1324 {
1325 byte *pos = buf;
1326
1327 while (!EMPTY_LIST(buck->prefixes) && (size >= BGP_NLRI_MAX))
1328 {
1329 struct bgp_prefix *px = HEAD(buck->prefixes);
1330 struct net_addr_ip4 *net = (void *) px->net;
1331
1332 /* Encode path ID */
1333 if (s->add_path)
1334 {
1335 put_u32(pos, px->path_id);
1336 ADVANCE(pos, size, 4);
1337 }
1338
1339 /* Encode prefix length */
1340 *pos = net->pxlen;
1341 ADVANCE(pos, size, 1);
1342
1343 /* Encode MPLS labels */
1344 if (s->mpls)
1345 bgp_encode_mpls_labels(s, s->mpls_labels, &pos, &size, pos - 1);
1346
1347 /* Encode prefix body */
1348 ip4_addr a = ip4_hton(net->prefix);
1349 uint b = (net->pxlen + 7) / 8;
1350 memcpy(pos, &a, b);
1351 ADVANCE(pos, size, b);
1352
1353 bgp_free_prefix(s->channel, px);
1354 }
1355
1356 return pos - buf;
1357 }
1358
1359 static void
1360 bgp_decode_nlri_ip4(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1361 {
1362 while (len)
1363 {
1364 net_addr_ip4 net;
1365 u32 path_id = 0;
1366
1367 /* Decode path ID */
1368 if (s->add_path)
1369 {
1370 if (len < 5)
1371 bgp_parse_error(s, 1);
1372
1373 path_id = get_u32(pos);
1374 ADVANCE(pos, len, 4);
1375 }
1376
1377 /* Decode prefix length */
1378 uint l = *pos;
1379 ADVANCE(pos, len, 1);
1380
1381 if (len < ((l + 7) / 8))
1382 bgp_parse_error(s, 1);
1383
1384 /* Decode MPLS labels */
1385 if (s->mpls)
1386 bgp_decode_mpls_labels(s, &pos, &len, &l, a);
1387
1388 if (l > IP4_MAX_PREFIX_LENGTH)
1389 bgp_parse_error(s, 10);
1390
1391 /* Decode prefix body */
1392 ip4_addr addr = IP4_NONE;
1393 uint b = (l + 7) / 8;
1394 memcpy(&addr, pos, b);
1395 ADVANCE(pos, len, b);
1396
1397 net = NET_ADDR_IP4(ip4_ntoh(addr), l);
1398 net_normalize_ip4(&net);
1399
1400 // XXXX validate prefix
1401
1402 bgp_rte_update(s, (net_addr *) &net, path_id, a);
1403 }
1404 }
1405
1406
1407 static uint
1408 bgp_encode_nlri_ip6(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1409 {
1410 byte *pos = buf;
1411
1412 while (!EMPTY_LIST(buck->prefixes) && (size >= BGP_NLRI_MAX))
1413 {
1414 struct bgp_prefix *px = HEAD(buck->prefixes);
1415 struct net_addr_ip6 *net = (void *) px->net;
1416
1417 /* Encode path ID */
1418 if (s->add_path)
1419 {
1420 put_u32(pos, px->path_id);
1421 ADVANCE(pos, size, 4);
1422 }
1423
1424 /* Encode prefix length */
1425 *pos = net->pxlen;
1426 ADVANCE(pos, size, 1);
1427
1428 /* Encode MPLS labels */
1429 if (s->mpls)
1430 bgp_encode_mpls_labels(s, s->mpls_labels, &pos, &size, pos - 1);
1431
1432 /* Encode prefix body */
1433 ip6_addr a = ip6_hton(net->prefix);
1434 uint b = (net->pxlen + 7) / 8;
1435 memcpy(pos, &a, b);
1436 ADVANCE(pos, size, b);
1437
1438 bgp_free_prefix(s->channel, px);
1439 }
1440
1441 return pos - buf;
1442 }
1443
1444 static void
1445 bgp_decode_nlri_ip6(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1446 {
1447 while (len)
1448 {
1449 net_addr_ip6 net;
1450 u32 path_id = 0;
1451
1452 /* Decode path ID */
1453 if (s->add_path)
1454 {
1455 if (len < 5)
1456 bgp_parse_error(s, 1);
1457
1458 path_id = get_u32(pos);
1459 ADVANCE(pos, len, 4);
1460 }
1461
1462 /* Decode prefix length */
1463 uint l = *pos;
1464 ADVANCE(pos, len, 1);
1465
1466 if (len < ((l + 7) / 8))
1467 bgp_parse_error(s, 1);
1468
1469 /* Decode MPLS labels */
1470 if (s->mpls)
1471 bgp_decode_mpls_labels(s, &pos, &len, &l, a);
1472
1473 if (l > IP6_MAX_PREFIX_LENGTH)
1474 bgp_parse_error(s, 10);
1475
1476 /* Decode prefix body */
1477 ip6_addr addr = IP6_NONE;
1478 uint b = (l + 7) / 8;
1479 memcpy(&addr, pos, b);
1480 ADVANCE(pos, len, b);
1481
1482 net = NET_ADDR_IP6(ip6_ntoh(addr), l);
1483 net_normalize_ip6(&net);
1484
1485 // XXXX validate prefix
1486
1487 bgp_rte_update(s, (net_addr *) &net, path_id, a);
1488 }
1489 }
1490
1491 static uint
1492 bgp_encode_nlri_vpn4(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1493 {
1494 byte *pos = buf;
1495
1496 while (!EMPTY_LIST(buck->prefixes) && (size >= BGP_NLRI_MAX))
1497 {
1498 struct bgp_prefix *px = HEAD(buck->prefixes);
1499 struct net_addr_vpn4 *net = (void *) px->net;
1500
1501 /* Encode path ID */
1502 if (s->add_path)
1503 {
1504 put_u32(pos, px->path_id);
1505 ADVANCE(pos, size, 4);
1506 }
1507
1508 /* Encode prefix length */
1509 *pos = 64 + net->pxlen;
1510 ADVANCE(pos, size, 1);
1511
1512 /* Encode MPLS labels */
1513 if (s->mpls)
1514 bgp_encode_mpls_labels(s, s->mpls_labels, &pos, &size, pos - 1);
1515
1516 /* Encode route distinguisher */
1517 put_u64(pos, net->rd);
1518 ADVANCE(pos, size, 8);
1519
1520 /* Encode prefix body */
1521 ip4_addr a = ip4_hton(net->prefix);
1522 uint b = (net->pxlen + 7) / 8;
1523 memcpy(pos, &a, b);
1524 ADVANCE(pos, size, b);
1525
1526 bgp_free_prefix(s->channel, px);
1527 }
1528
1529 return pos - buf;
1530 }
1531
1532 static void
1533 bgp_decode_nlri_vpn4(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1534 {
1535 while (len)
1536 {
1537 net_addr_vpn4 net;
1538 u32 path_id = 0;
1539
1540 /* Decode path ID */
1541 if (s->add_path)
1542 {
1543 if (len < 5)
1544 bgp_parse_error(s, 1);
1545
1546 path_id = get_u32(pos);
1547 ADVANCE(pos, len, 4);
1548 }
1549
1550 /* Decode prefix length */
1551 uint l = *pos;
1552 ADVANCE(pos, len, 1);
1553
1554 if (len < ((l + 7) / 8))
1555 bgp_parse_error(s, 1);
1556
1557 /* Decode MPLS labels */
1558 if (s->mpls)
1559 bgp_decode_mpls_labels(s, &pos, &len, &l, a);
1560
1561 /* Decode route distinguisher */
1562 if (l < 64)
1563 bgp_parse_error(s, 1);
1564
1565 u64 rd = get_u64(pos);
1566 ADVANCE(pos, len, 8);
1567 l -= 64;
1568
1569 if (l > IP4_MAX_PREFIX_LENGTH)
1570 bgp_parse_error(s, 10);
1571
1572 /* Decode prefix body */
1573 ip4_addr addr = IP4_NONE;
1574 uint b = (l + 7) / 8;
1575 memcpy(&addr, pos, b);
1576 ADVANCE(pos, len, b);
1577
1578 net = NET_ADDR_VPN4(ip4_ntoh(addr), l, rd);
1579 net_normalize_vpn4(&net);
1580
1581 // XXXX validate prefix
1582
1583 bgp_rte_update(s, (net_addr *) &net, path_id, a);
1584 }
1585 }
1586
1587
1588 static uint
1589 bgp_encode_nlri_vpn6(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1590 {
1591 byte *pos = buf;
1592
1593 while (!EMPTY_LIST(buck->prefixes) && (size >= BGP_NLRI_MAX))
1594 {
1595 struct bgp_prefix *px = HEAD(buck->prefixes);
1596 struct net_addr_vpn6 *net = (void *) px->net;
1597
1598 /* Encode path ID */
1599 if (s->add_path)
1600 {
1601 put_u32(pos, px->path_id);
1602 ADVANCE(pos, size, 4);
1603 }
1604
1605 /* Encode prefix length */
1606 *pos = 64 + net->pxlen;
1607 ADVANCE(pos, size, 1);
1608
1609 /* Encode MPLS labels */
1610 if (s->mpls)
1611 bgp_encode_mpls_labels(s, s->mpls_labels, &pos, &size, pos - 1);
1612
1613 /* Encode route distinguisher */
1614 put_u64(pos, net->rd);
1615 ADVANCE(pos, size, 8);
1616
1617 /* Encode prefix body */
1618 ip6_addr a = ip6_hton(net->prefix);
1619 uint b = (net->pxlen + 7) / 8;
1620 memcpy(pos, &a, b);
1621 ADVANCE(pos, size, b);
1622
1623 bgp_free_prefix(s->channel, px);
1624 }
1625
1626 return pos - buf;
1627 }
1628
1629 static void
1630 bgp_decode_nlri_vpn6(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1631 {
1632 while (len)
1633 {
1634 net_addr_vpn6 net;
1635 u32 path_id = 0;
1636
1637 /* Decode path ID */
1638 if (s->add_path)
1639 {
1640 if (len < 5)
1641 bgp_parse_error(s, 1);
1642
1643 path_id = get_u32(pos);
1644 ADVANCE(pos, len, 4);
1645 }
1646
1647 /* Decode prefix length */
1648 uint l = *pos;
1649 ADVANCE(pos, len, 1);
1650
1651 if (len < ((l + 7) / 8))
1652 bgp_parse_error(s, 1);
1653
1654 /* Decode MPLS labels */
1655 if (s->mpls)
1656 bgp_decode_mpls_labels(s, &pos, &len, &l, a);
1657
1658 /* Decode route distinguisher */
1659 if (l < 64)
1660 bgp_parse_error(s, 1);
1661
1662 u64 rd = get_u64(pos);
1663 ADVANCE(pos, len, 8);
1664 l -= 64;
1665
1666 if (l > IP6_MAX_PREFIX_LENGTH)
1667 bgp_parse_error(s, 10);
1668
1669 /* Decode prefix body */
1670 ip6_addr addr = IP6_NONE;
1671 uint b = (l + 7) / 8;
1672 memcpy(&addr, pos, b);
1673 ADVANCE(pos, len, b);
1674
1675 net = NET_ADDR_VPN6(ip6_ntoh(addr), l, rd);
1676 net_normalize_vpn6(&net);
1677
1678 // XXXX validate prefix
1679
1680 bgp_rte_update(s, (net_addr *) &net, path_id, a);
1681 }
1682 }
1683
1684
1685 static uint
1686 bgp_encode_nlri_flow4(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1687 {
1688 byte *pos = buf;
1689
1690 while (!EMPTY_LIST(buck->prefixes) && (size >= 4))
1691 {
1692 struct bgp_prefix *px = HEAD(buck->prefixes);
1693 struct net_addr_flow4 *net = (void *) px->net;
1694 uint flen = net->length - sizeof(net_addr_flow4);
1695
1696 /* Encode path ID */
1697 if (s->add_path)
1698 {
1699 put_u32(pos, px->path_id);
1700 ADVANCE(pos, size, 4);
1701 }
1702
1703 if (flen > size)
1704 break;
1705
1706 /* Copy whole flow data including length */
1707 memcpy(pos, net->data, flen);
1708 ADVANCE(pos, size, flen);
1709
1710 bgp_free_prefix(s->channel, px);
1711 }
1712
1713 return pos - buf;
1714 }
1715
1716 static void
1717 bgp_decode_nlri_flow4(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1718 {
1719 while (len)
1720 {
1721 u32 path_id = 0;
1722
1723 /* Decode path ID */
1724 if (s->add_path)
1725 {
1726 if (len < 4)
1727 bgp_parse_error(s, 1);
1728
1729 path_id = get_u32(pos);
1730 ADVANCE(pos, len, 4);
1731 }
1732
1733 if (len < 2)
1734 bgp_parse_error(s, 1);
1735
1736 /* Decode flow length */
1737 uint hlen = flow_hdr_length(pos);
1738 uint dlen = flow_read_length(pos);
1739 uint flen = hlen + dlen;
1740 byte *data = pos + hlen;
1741
1742 if (len < flen)
1743 bgp_parse_error(s, 1);
1744
1745 /* Validate flow data */
1746 enum flow_validated_state r = flow4_validate(data, dlen);
1747 if (r != FLOW_ST_VALID)
1748 {
1749 log(L_REMOTE "%s: Invalid flow route: %s", s->proto->p.name, flow_validated_state_str(r));
1750 bgp_parse_error(s, 1);
1751 }
1752
1753 if (data[0] != FLOW_TYPE_DST_PREFIX)
1754 {
1755 log(L_REMOTE "%s: No dst prefix at first pos", s->proto->p.name);
1756 bgp_parse_error(s, 1);
1757 }
1758
1759 /* Decode dst prefix */
1760 ip4_addr px = IP4_NONE;
1761 uint pxlen = data[1];
1762
1763 // FIXME: Use some generic function
1764 memcpy(&px, data+2, BYTES(pxlen));
1765 px = ip4_and(ip4_ntoh(px), ip4_mkmask(pxlen));
1766
1767 /* Prepare the flow */
1768 net_addr *n = alloca(sizeof(struct net_addr_flow4) + flen);
1769 net_fill_flow4(n, px, pxlen, pos, flen);
1770 ADVANCE(pos, len, flen);
1771
1772 bgp_rte_update(s, n, path_id, a);
1773 }
1774 }
1775
1776
1777 static uint
1778 bgp_encode_nlri_flow6(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, uint size)
1779 {
1780 byte *pos = buf;
1781
1782 while (!EMPTY_LIST(buck->prefixes) && (size >= 4))
1783 {
1784 struct bgp_prefix *px = HEAD(buck->prefixes);
1785 struct net_addr_flow6 *net = (void *) px->net;
1786 uint flen = net->length - sizeof(net_addr_flow6);
1787
1788 /* Encode path ID */
1789 if (s->add_path)
1790 {
1791 put_u32(pos, px->path_id);
1792 ADVANCE(pos, size, 4);
1793 }
1794
1795 if (flen > size)
1796 break;
1797
1798 /* Copy whole flow data including length */
1799 memcpy(pos, net->data, flen);
1800 ADVANCE(pos, size, flen);
1801
1802 bgp_free_prefix(s->channel, px);
1803 }
1804
1805 return pos - buf;
1806 }
1807
1808 static void
1809 bgp_decode_nlri_flow6(struct bgp_parse_state *s, byte *pos, uint len, rta *a)
1810 {
1811 while (len)
1812 {
1813 u32 path_id = 0;
1814
1815 /* Decode path ID */
1816 if (s->add_path)
1817 {
1818 if (len < 4)
1819 bgp_parse_error(s, 1);
1820
1821 path_id = get_u32(pos);
1822 ADVANCE(pos, len, 4);
1823 }
1824
1825 if (len < 2)
1826 bgp_parse_error(s, 1);
1827
1828 /* Decode flow length */
1829 uint hlen = flow_hdr_length(pos);
1830 uint dlen = flow_read_length(pos);
1831 uint flen = hlen + dlen;
1832 byte *data = pos + hlen;
1833
1834 if (len < flen)
1835 bgp_parse_error(s, 1);
1836
1837 /* Validate flow data */
1838 enum flow_validated_state r = flow6_validate(data, dlen);
1839 if (r != FLOW_ST_VALID)
1840 {
1841 log(L_REMOTE "%s: Invalid flow route: %s", s->proto->p.name, flow_validated_state_str(r));
1842 bgp_parse_error(s, 1);
1843 }
1844
1845 if (data[0] != FLOW_TYPE_DST_PREFIX)
1846 {
1847 log(L_REMOTE "%s: No dst prefix at first pos", s->proto->p.name);
1848 bgp_parse_error(s, 1);
1849 }
1850
1851 /* Decode dst prefix */
1852 ip6_addr px = IP6_NONE;
1853 uint pxlen = data[1];
1854
1855 // FIXME: Use some generic function
1856 memcpy(&px, data+2, BYTES(pxlen));
1857 px = ip6_and(ip6_ntoh(px), ip6_mkmask(pxlen));
1858
1859 /* Prepare the flow */
1860 net_addr *n = alloca(sizeof(struct net_addr_flow6) + flen);
1861 net_fill_flow6(n, px, pxlen, pos, flen);
1862 ADVANCE(pos, len, flen);
1863
1864 bgp_rte_update(s, n, path_id, a);
1865 }
1866 }
1867
1868
1869 static const struct bgp_af_desc bgp_af_table[] = {
1870 {
1871 .afi = BGP_AF_IPV4,
1872 .net = NET_IP4,
1873 .name = "ipv4",
1874 .encode_nlri = bgp_encode_nlri_ip4,
1875 .decode_nlri = bgp_decode_nlri_ip4,
1876 .encode_next_hop = bgp_encode_next_hop_ip,
1877 .decode_next_hop = bgp_decode_next_hop_ip,
1878 .update_next_hop = bgp_update_next_hop_ip,
1879 },
1880 {
1881 .afi = BGP_AF_IPV4_MC,
1882 .net = NET_IP4,
1883 .name = "ipv4-mc",
1884 .encode_nlri = bgp_encode_nlri_ip4,
1885 .decode_nlri = bgp_decode_nlri_ip4,
1886 .encode_next_hop = bgp_encode_next_hop_ip,
1887 .decode_next_hop = bgp_decode_next_hop_ip,
1888 .update_next_hop = bgp_update_next_hop_ip,
1889 },
1890 {
1891 .afi = BGP_AF_IPV4_MPLS,
1892 .net = NET_IP4,
1893 .mpls = 1,
1894 .name = "ipv4-mpls",
1895 .encode_nlri = bgp_encode_nlri_ip4,
1896 .decode_nlri = bgp_decode_nlri_ip4,
1897 .encode_next_hop = bgp_encode_next_hop_ip,
1898 .decode_next_hop = bgp_decode_next_hop_ip,
1899 .update_next_hop = bgp_update_next_hop_ip,
1900 },
1901 {
1902 .afi = BGP_AF_IPV6,
1903 .net = NET_IP6,
1904 .name = "ipv6",
1905 .encode_nlri = bgp_encode_nlri_ip6,
1906 .decode_nlri = bgp_decode_nlri_ip6,
1907 .encode_next_hop = bgp_encode_next_hop_ip,
1908 .decode_next_hop = bgp_decode_next_hop_ip,
1909 .update_next_hop = bgp_update_next_hop_ip,
1910 },
1911 {
1912 .afi = BGP_AF_IPV6_MC,
1913 .net = NET_IP6,
1914 .name = "ipv6-mc",
1915 .encode_nlri = bgp_encode_nlri_ip6,
1916 .decode_nlri = bgp_decode_nlri_ip6,
1917 .encode_next_hop = bgp_encode_next_hop_ip,
1918 .decode_next_hop = bgp_decode_next_hop_ip,
1919 .update_next_hop = bgp_update_next_hop_ip,
1920 },
1921 {
1922 .afi = BGP_AF_IPV6_MPLS,
1923 .net = NET_IP6,
1924 .mpls = 1,
1925 .name = "ipv6-mpls",
1926 .encode_nlri = bgp_encode_nlri_ip6,
1927 .decode_nlri = bgp_decode_nlri_ip6,
1928 .encode_next_hop = bgp_encode_next_hop_ip,
1929 .decode_next_hop = bgp_decode_next_hop_ip,
1930 .update_next_hop = bgp_update_next_hop_ip,
1931 },
1932 {
1933 .afi = BGP_AF_VPN4_MPLS,
1934 .net = NET_VPN4,
1935 .mpls = 1,
1936 .name = "vpn4-mpls",
1937 .encode_nlri = bgp_encode_nlri_vpn4,
1938 .decode_nlri = bgp_decode_nlri_vpn4,
1939 .encode_next_hop = bgp_encode_next_hop_vpn,
1940 .decode_next_hop = bgp_decode_next_hop_vpn,
1941 .update_next_hop = bgp_update_next_hop_ip,
1942 },
1943 {
1944 .afi = BGP_AF_VPN6_MPLS,
1945 .net = NET_VPN6,
1946 .mpls = 1,
1947 .name = "vpn6-mpls",
1948 .encode_nlri = bgp_encode_nlri_vpn6,
1949 .decode_nlri = bgp_decode_nlri_vpn6,
1950 .encode_next_hop = bgp_encode_next_hop_vpn,
1951 .decode_next_hop = bgp_decode_next_hop_vpn,
1952 .update_next_hop = bgp_update_next_hop_ip,
1953 },
1954 {
1955 .afi = BGP_AF_VPN4_MC,
1956 .net = NET_VPN4,
1957 .name = "vpn4-mc",
1958 .encode_nlri = bgp_encode_nlri_vpn4,
1959 .decode_nlri = bgp_decode_nlri_vpn4,
1960 .encode_next_hop = bgp_encode_next_hop_vpn,
1961 .decode_next_hop = bgp_decode_next_hop_vpn,
1962 .update_next_hop = bgp_update_next_hop_ip,
1963 },
1964 {
1965 .afi = BGP_AF_VPN6_MC,
1966 .net = NET_VPN6,
1967 .name = "vpn6-mc",
1968 .encode_nlri = bgp_encode_nlri_vpn6,
1969 .decode_nlri = bgp_decode_nlri_vpn6,
1970 .encode_next_hop = bgp_encode_next_hop_vpn,
1971 .decode_next_hop = bgp_decode_next_hop_vpn,
1972 .update_next_hop = bgp_update_next_hop_ip,
1973 },
1974 {
1975 .afi = BGP_AF_FLOW4,
1976 .net = NET_FLOW4,
1977 .no_igp = 1,
1978 .name = "flow4",
1979 .encode_nlri = bgp_encode_nlri_flow4,
1980 .decode_nlri = bgp_decode_nlri_flow4,
1981 .encode_next_hop = bgp_encode_next_hop_none,
1982 .decode_next_hop = bgp_decode_next_hop_none,
1983 .update_next_hop = bgp_update_next_hop_none,
1984 },
1985 {
1986 .afi = BGP_AF_FLOW6,
1987 .net = NET_FLOW6,
1988 .no_igp = 1,
1989 .name = "flow6",
1990 .encode_nlri = bgp_encode_nlri_flow6,
1991 .decode_nlri = bgp_decode_nlri_flow6,
1992 .encode_next_hop = bgp_encode_next_hop_none,
1993 .decode_next_hop = bgp_decode_next_hop_none,
1994 .update_next_hop = bgp_update_next_hop_none,
1995 },
1996 };
1997
1998 const struct bgp_af_desc *
1999 bgp_get_af_desc(u32 afi)
2000 {
2001 uint i;
2002 for (i = 0; i < ARRAY_SIZE(bgp_af_table); i++)
2003 if (bgp_af_table[i].afi == afi)
2004 return &bgp_af_table[i];
2005
2006 return NULL;
2007 }
2008
2009 static inline uint
2010 bgp_encode_nlri(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, byte *end)
2011 {
2012 return s->channel->desc->encode_nlri(s, buck, buf, end - buf);
2013 }
2014
2015 static inline uint
2016 bgp_encode_next_hop(struct bgp_write_state *s, eattr *nh, byte *buf)
2017 {
2018 return s->channel->desc->encode_next_hop(s, nh, buf, 255);
2019 }
2020
2021 void
2022 bgp_update_next_hop(struct bgp_export_state *s, eattr *a, ea_list **to)
2023 {
2024 s->channel->desc->update_next_hop(s, a, to);
2025 }
2026
2027 #define MAX_ATTRS_LENGTH (end-buf+BGP_HEADER_LENGTH - 1024)
2028
2029 static byte *
2030 bgp_create_ip_reach(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, byte *end)
2031 {
2032 /*
2033 * 2 B Withdrawn Routes Length (zero)
2034 * --- IPv4 Withdrawn Routes NLRI (unused)
2035 * 2 B Total Path Attribute Length
2036 * var Path Attributes
2037 * var IPv4 Network Layer Reachability Information
2038 */
2039
2040 int lr, la;
2041
2042 la = bgp_encode_attrs(s, buck->eattrs, buf+4, buf + MAX_ATTRS_LENGTH);
2043 if (la < 0)
2044 {
2045 /* Attribute list too long */
2046 bgp_withdraw_bucket(s->channel, buck);
2047 return NULL;
2048 }
2049
2050 put_u16(buf+0, 0);
2051 put_u16(buf+2, la);
2052
2053 lr = bgp_encode_nlri(s, buck, buf+4+la, end);
2054
2055 return buf+4+la+lr;
2056 }
2057
2058 static byte *
2059 bgp_create_mp_reach(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, byte *end)
2060 {
2061 /*
2062 * 2 B IPv4 Withdrawn Routes Length (zero)
2063 * --- IPv4 Withdrawn Routes NLRI (unused)
2064 * 2 B Total Path Attribute Length
2065 * 1 B MP_REACH_NLRI hdr - Attribute Flags
2066 * 1 B MP_REACH_NLRI hdr - Attribute Type Code
2067 * 2 B MP_REACH_NLRI hdr - Length of Attribute Data
2068 * 2 B MP_REACH_NLRI data - Address Family Identifier
2069 * 1 B MP_REACH_NLRI data - Subsequent Address Family Identifier
2070 * 1 B MP_REACH_NLRI data - Length of Next Hop Network Address
2071 * var MP_REACH_NLRI data - Network Address of Next Hop
2072 * 1 B MP_REACH_NLRI data - Reserved (zero)
2073 * var MP_REACH_NLRI data - Network Layer Reachability Information
2074 * var Rest of Path Attributes
2075 * --- IPv4 Network Layer Reachability Information (unused)
2076 */
2077
2078 int lh, lr, la; /* Lengths of next hop, NLRI and attributes */
2079
2080 /* Begin of MP_REACH_NLRI atribute */
2081 buf[4] = BAF_OPTIONAL | BAF_EXT_LEN;
2082 buf[5] = BA_MP_REACH_NLRI;
2083 put_u16(buf+6, 0); /* Will be fixed later */
2084 put_af3(buf+8, s->channel->afi);
2085 byte *pos = buf+11;
2086
2087 /* Encode attributes to temporary buffer */
2088 byte *abuf = alloca(MAX_ATTRS_LENGTH);
2089 la = bgp_encode_attrs(s, buck->eattrs, abuf, abuf + MAX_ATTRS_LENGTH);
2090 if (la < 0)
2091 {
2092 /* Attribute list too long */
2093 bgp_withdraw_bucket(s->channel, buck);
2094 return NULL;
2095 }
2096
2097 /* Encode the next hop */
2098 lh = bgp_encode_next_hop(s, s->mp_next_hop, pos+1);
2099 *pos = lh;
2100 pos += 1+lh;
2101
2102 /* Reserved field */
2103 *pos++ = 0;
2104
2105 /* Encode the NLRI */
2106 lr = bgp_encode_nlri(s, buck, pos, end - la);
2107 pos += lr;
2108
2109 /* End of MP_REACH_NLRI atribute, update data length */
2110 put_u16(buf+6, pos-buf-8);
2111
2112 /* Copy remaining attributes */
2113 memcpy(pos, abuf, la);
2114 pos += la;
2115
2116 /* Initial UPDATE fields */
2117 put_u16(buf+0, 0);
2118 put_u16(buf+2, pos-buf-4);
2119
2120 return pos;
2121 }
2122
2123 #undef MAX_ATTRS_LENGTH
2124
2125 static byte *
2126 bgp_create_ip_unreach(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, byte *end)
2127 {
2128 /*
2129 * 2 B Withdrawn Routes Length
2130 * var IPv4 Withdrawn Routes NLRI
2131 * 2 B Total Path Attribute Length (zero)
2132 * --- Path Attributes (unused)
2133 * --- IPv4 Network Layer Reachability Information (unused)
2134 */
2135
2136 uint len = bgp_encode_nlri(s, buck, buf+2, end);
2137
2138 put_u16(buf+0, len);
2139 put_u16(buf+2+len, 0);
2140
2141 return buf+4+len;
2142 }
2143
2144 static byte *
2145 bgp_create_mp_unreach(struct bgp_write_state *s, struct bgp_bucket *buck, byte *buf, byte *end)
2146 {
2147 /*
2148 * 2 B Withdrawn Routes Length (zero)
2149 * --- IPv4 Withdrawn Routes NLRI (unused)
2150 * 2 B Total Path Attribute Length
2151 * 1 B MP_UNREACH_NLRI hdr - Attribute Flags
2152 * 1 B MP_UNREACH_NLRI hdr - Attribute Type Code
2153 * 2 B MP_UNREACH_NLRI hdr - Length of Attribute Data
2154 * 2 B MP_UNREACH_NLRI data - Address Family Identifier
2155 * 1 B MP_UNREACH_NLRI data - Subsequent Address Family Identifier
2156 * var MP_UNREACH_NLRI data - Network Layer Reachability Information
2157 * --- IPv4 Network Layer Reachability Information (unused)
2158 */
2159
2160 uint len = bgp_encode_nlri(s, buck, buf+11, end);
2161
2162 put_u16(buf+0, 0);
2163 put_u16(buf+2, 7+len);
2164
2165 /* Begin of MP_UNREACH_NLRI atribute */
2166 buf[4] = BAF_OPTIONAL | BAF_EXT_LEN;
2167 buf[5] = BA_MP_UNREACH_NLRI;
2168 put_u16(buf+6, 3+len);
2169 put_af3(buf+8, s->channel->afi);
2170
2171 return buf+11+len;
2172 }
2173
2174 static byte *
2175 bgp_create_update(struct bgp_channel *c, byte *buf)
2176 {
2177 struct bgp_proto *p = (void *) c->c.proto;
2178 struct bgp_bucket *buck;
2179 byte *end = buf + (bgp_max_packet_length(p->conn) - BGP_HEADER_LENGTH);
2180 byte *res = NULL;
2181
2182 again: ;
2183
2184 /* Initialize write state */
2185 struct bgp_write_state s = {
2186 .proto = p,
2187 .channel = c,
2188 .pool = bgp_linpool,
2189 .mp_reach = (c->afi != BGP_AF_IPV4) || c->ext_next_hop,
2190 .as4_session = p->as4_session,
2191 .add_path = c->add_path_tx,
2192 .mpls = c->desc->mpls,
2193 };
2194
2195 /* Try unreachable bucket */
2196 if ((buck = c->withdraw_bucket) && !EMPTY_LIST(buck->prefixes))
2197 {
2198 res = (c->afi == BGP_AF_IPV4) && !c->ext_next_hop ?
2199 bgp_create_ip_unreach(&s, buck, buf, end):
2200 bgp_create_mp_unreach(&s, buck, buf, end);
2201
2202 goto done;
2203 }
2204
2205 /* Try reachable buckets */
2206 if (!EMPTY_LIST(c->bucket_queue))
2207 {
2208 buck = HEAD(c->bucket_queue);
2209
2210 /* Cleanup empty buckets */
2211 if (EMPTY_LIST(buck->prefixes))
2212 {
2213 bgp_free_bucket(c, buck);
2214 goto again;
2215 }
2216
2217 res = !s.mp_reach ?
2218 bgp_create_ip_reach(&s, buck, buf, end):
2219 bgp_create_mp_reach(&s, buck, buf, end);
2220
2221 if (EMPTY_LIST(buck->prefixes))
2222 bgp_free_bucket(c, buck);
2223 else
2224 bgp_defer_bucket(c, buck);
2225
2226 if (!res)
2227 goto again;
2228
2229 goto done;
2230 }
2231
2232 /* No more prefixes to send */
2233 return NULL;
2234
2235 done:
2236 BGP_TRACE_RL(&rl_snd_update, D_PACKETS, "Sending UPDATE");
2237 lp_flush(s.pool);
2238
2239 return res;
2240 }
2241
2242 static byte *
2243 bgp_create_ip_end_mark(struct bgp_channel *c UNUSED, byte *buf)
2244 {
2245 /* Empty update packet */
2246 put_u32(buf, 0);
2247
2248 return buf+4;
2249 }
2250
2251 static byte *
2252 bgp_create_mp_end_mark(struct bgp_channel *c, byte *buf)
2253 {
2254 put_u16(buf+0, 0);
2255 put_u16(buf+2, 6); /* length 4--9 */
2256
2257 /* Empty MP_UNREACH_NLRI atribute */
2258 buf[4] = BAF_OPTIONAL;
2259 buf[5] = BA_MP_UNREACH_NLRI;
2260 buf[6] = 3; /* Length 7--9 */
2261 put_af3(buf+7, c->afi);
2262
2263 return buf+10;
2264 }
2265
2266 static byte *
2267 bgp_create_end_mark(struct bgp_channel *c, byte *buf)
2268 {
2269 struct bgp_proto *p = (void *) c->c.proto;
2270
2271 BGP_TRACE(D_PACKETS, "Sending END-OF-RIB");
2272
2273 return (c->afi == BGP_AF_IPV4) ?
2274 bgp_create_ip_end_mark(c, buf):
2275 bgp_create_mp_end_mark(c, buf);
2276 }
2277
2278 static inline void
2279 bgp_rx_end_mark(struct bgp_parse_state *s, u32 afi)
2280 {
2281 struct bgp_proto *p = s->proto;
2282 struct bgp_channel *c = bgp_get_channel(p, afi);
2283
2284 BGP_TRACE(D_PACKETS, "Got END-OF-RIB");
2285
2286 if (!c)
2287 DISCARD(BAD_AFI, BGP_AFI(afi), BGP_SAFI(afi));
2288
2289 if (c->load_state == BFS_LOADING)
2290 c->load_state = BFS_NONE;
2291
2292 if (p->p.gr_recovery)
2293 channel_graceful_restart_unlock(&c->c);
2294
2295 if (c->gr_active)
2296 bgp_graceful_restart_done(c);
2297 }
2298
2299 static inline void
2300 bgp_decode_nlri(struct bgp_parse_state *s, u32 afi, byte *nlri, uint len, ea_list *ea, byte *nh, uint nh_len)
2301 {
2302 struct bgp_channel *c = bgp_get_channel(s->proto, afi);
2303 rta *a = NULL;
2304
2305 if (!c)
2306 DISCARD(BAD_AFI, BGP_AFI(afi), BGP_SAFI(afi));
2307
2308 s->channel = c;
2309 s->add_path = c->add_path_rx;
2310 s->mpls = c->desc->mpls;
2311
2312 s->last_id = 0;
2313 s->last_src = s->proto->p.main_source;
2314
2315 /*
2316 * IPv4 BGP and MP-BGP may be used together in one update, therefore we do not
2317 * add BA_NEXT_HOP in bgp_decode_attrs(), but we add it here independently for
2318 * IPv4 BGP and MP-BGP. We undo the attribute (and possibly others attached by
2319 * decode_next_hop hooks) by restoring a->eattrs afterwards.
2320 */
2321
2322 if (ea)
2323 {
2324 a = allocz(RTA_MAX_SIZE);
2325
2326 a->source = RTS_BGP;
2327 a->scope = SCOPE_UNIVERSE;
2328 a->from = s->proto->cf->remote_ip;
2329 a->eattrs = ea;
2330
2331 c->desc->decode_next_hop(s, nh, nh_len, a);
2332
2333 /* Handle withdraw during next hop decoding */
2334 if (s->err_withdraw)
2335 a = NULL;
2336 }
2337
2338 c->desc->decode_nlri(s, nlri, len, a);
2339
2340 rta_free(s->cached_rta);
2341 s->cached_rta = NULL;
2342 }
2343
2344 static void
2345 bgp_rx_update(struct bgp_conn *conn, byte *pkt, uint len)
2346 {
2347 struct bgp_proto *p = conn->bgp;
2348 ea_list *ea = NULL;
2349
2350 BGP_TRACE_RL(&rl_rcv_update, D_PACKETS, "Got UPDATE");
2351
2352 /* Workaround for some BGP implementations that skip initial KEEPALIVE */
2353 if (conn->state == BS_OPENCONFIRM)
2354 bgp_conn_enter_established_state(conn);
2355
2356 if (conn->state != BS_ESTABLISHED)
2357 { bgp_error(conn, 5, fsm_err_subcode[conn->state], NULL, 0); return; }
2358
2359 bgp_start_timer(conn->hold_timer, conn->hold_time);
2360
2361 /* Initialize parse state */
2362 struct bgp_parse_state s = {
2363 .proto = p,
2364 .pool = bgp_linpool,
2365 .as4_session = p->as4_session,
2366 };
2367
2368 /* Parse error handler */
2369 if (setjmp(s.err_jmpbuf))
2370 {
2371 bgp_error(conn, 3, s.err_subcode, NULL, 0);
2372 goto done;
2373 }
2374
2375 /* Check minimal length */
2376 if (len < 23)
2377 { bgp_error(conn, 1, 2, pkt+16, 2); return; }
2378
2379 /* Skip fixed header */
2380 uint pos = 19;
2381
2382 /*
2383 * UPDATE message format
2384 *
2385 * 2 B IPv4 Withdrawn Routes Length
2386 * var IPv4 Withdrawn Routes NLRI
2387 * 2 B Total Path Attribute Length
2388 * var Path Attributes
2389 * var IPv4 Reachable Routes NLRI
2390 */
2391
2392 s.ip_unreach_len = get_u16(pkt + pos);
2393 s.ip_unreach_nlri = pkt + pos + 2;
2394 pos += 2 + s.ip_unreach_len;
2395
2396 if (pos + 2 > len)
2397 bgp_parse_error(&s, 1);
2398
2399 s.attr_len = get_u16(pkt + pos);
2400 s.attrs = pkt + pos + 2;
2401 pos += 2 + s.attr_len;
2402
2403 if (pos > len)
2404 bgp_parse_error(&s, 1);
2405
2406 s.ip_reach_len = len - pos;
2407 s.ip_reach_nlri = pkt + pos;
2408
2409
2410 if (s.attr_len)
2411 ea = bgp_decode_attrs(&s, s.attrs, s.attr_len);
2412 else
2413 ea = NULL;
2414
2415 /* Check for End-of-RIB marker */
2416 if (!s.attr_len && !s.ip_unreach_len && !s.ip_reach_len)
2417 { bgp_rx_end_mark(&s, BGP_AF_IPV4); goto done; }
2418
2419 /* Check for MP End-of-RIB marker */
2420 if ((s.attr_len < 8) && !s.ip_unreach_len && !s.ip_reach_len &&
2421 !s.mp_reach_len && !s.mp_unreach_len && s.mp_unreach_af)
2422 { bgp_rx_end_mark(&s, s.mp_unreach_af); goto done; }
2423
2424 if (s.ip_unreach_len)
2425 bgp_decode_nlri(&s, BGP_AF_IPV4, s.ip_unreach_nlri, s.ip_unreach_len, NULL, NULL, 0);
2426
2427 if (s.mp_unreach_len)
2428 bgp_decode_nlri(&s, s.mp_unreach_af, s.mp_unreach_nlri, s.mp_unreach_len, NULL, NULL, 0);
2429
2430 if (s.ip_reach_len)
2431 bgp_decode_nlri(&s, BGP_AF_IPV4, s.ip_reach_nlri, s.ip_reach_len,
2432 ea, s.ip_next_hop_data, s.ip_next_hop_len);
2433
2434 if (s.mp_reach_len)
2435 bgp_decode_nlri(&s, s.mp_reach_af, s.mp_reach_nlri, s.mp_reach_len,
2436 ea, s.mp_next_hop_data, s.mp_next_hop_len);
2437
2438 done:
2439 rta_free(s.cached_rta);
2440 lp_flush(s.pool);
2441 return;
2442 }
2443
2444 static uint
2445 bgp_find_update_afi(byte *pos, uint len)
2446 {
2447 /*
2448 * This is stripped-down version of bgp_rx_update(), bgp_decode_attrs() and
2449 * bgp_decode_mp_[un]reach_nlri() used by MRT code in order to find out which
2450 * AFI/SAFI is associated with incoming UPDATE. Returns 0 for framing errors.
2451 */
2452 if (len < 23)
2453 return 0;
2454
2455 /* Assume there is no withrawn NLRI, read lengths and move to attribute list */
2456 uint wlen = get_u16(pos + 19);
2457 uint alen = get_u16(pos + 21);
2458 ADVANCE(pos, len, 23);
2459
2460 /* Either non-zero withdrawn NLRI, non-zero reachable NLRI, or IPv4 End-of-RIB */
2461 if ((wlen != 0) || (alen < len) || !alen)
2462 return BGP_AF_IPV4;
2463
2464 if (alen > len)
2465 return 0;
2466
2467 /* Process attribute list (alen == len) */
2468 while (len)
2469 {
2470 if (len < 2)
2471 return 0;
2472
2473 uint flags = pos[0];
2474 uint code = pos[1];
2475 ADVANCE(pos, len, 2);
2476
2477 uint ll = !(flags & BAF_EXT_LEN) ? 1 : 2;
2478 if (len < ll)
2479 return 0;
2480
2481 /* Read attribute length and move to attribute body */
2482 alen = (ll == 1) ? get_u8(pos) : get_u16(pos);
2483 ADVANCE(pos, len, ll);
2484
2485 if (len < alen)
2486 return 0;
2487
2488 /* Found MP NLRI */
2489 if ((code == BA_MP_REACH_NLRI) || (code == BA_MP_UNREACH_NLRI))
2490 {
2491 if (alen < 3)
2492 return 0;
2493
2494 return BGP_AF(get_u16(pos), pos[2]);
2495 }
2496
2497 /* Move to the next attribute */
2498 ADVANCE(pos, len, alen);
2499 }
2500
2501 /* No basic or MP NLRI, but there are some attributes -> error */
2502 return 0;
2503 }
2504
2505
2506 /*
2507 * ROUTE-REFRESH
2508 */
2509
2510 static inline byte *
2511 bgp_create_route_refresh(struct bgp_channel *c, byte *buf)
2512 {
2513 struct bgp_proto *p = (void *) c->c.proto;
2514
2515 BGP_TRACE(D_PACKETS, "Sending ROUTE-REFRESH");
2516
2517 /* Original route refresh request, RFC 2918 */
2518 put_af4(buf, c->afi);
2519 buf[2] = BGP_RR_REQUEST;
2520
2521 return buf+4;
2522 }
2523
2524 static inline byte *
2525 bgp_create_begin_refresh(struct bgp_channel *c, byte *buf)
2526 {
2527 struct bgp_proto *p = (void *) c->c.proto;
2528
2529 BGP_TRACE(D_PACKETS, "Sending BEGIN-OF-RR");
2530
2531 /* Demarcation of beginning of route refresh (BoRR), RFC 7313 */
2532 put_af4(buf, c->afi);
2533 buf[2] = BGP_RR_BEGIN;
2534
2535 return buf+4;
2536 }
2537
2538 static inline byte *
2539 bgp_create_end_refresh(struct bgp_channel *c, byte *buf)
2540 {
2541 struct bgp_proto *p = (void *) c->c.proto;
2542
2543 BGP_TRACE(D_PACKETS, "Sending END-OF-RR");
2544
2545 /* Demarcation of ending of route refresh (EoRR), RFC 7313 */
2546 put_af4(buf, c->afi);
2547 buf[2] = BGP_RR_END;
2548
2549 return buf+4;
2550 }
2551
2552 static void
2553 bgp_rx_route_refresh(struct bgp_conn *conn, byte *pkt, uint len)
2554 {
2555 struct bgp_proto *p = conn->bgp;
2556
2557 if (conn->state != BS_ESTABLISHED)
2558 { bgp_error(conn, 5, fsm_err_subcode[conn->state], NULL, 0); return; }
2559
2560 if (!conn->local_caps->route_refresh)
2561 { bgp_error(conn, 1, 3, pkt+18, 1); return; }
2562
2563 if (len < (BGP_HEADER_LENGTH + 4))
2564 { bgp_error(conn, 1, 2, pkt+16, 2); return; }
2565
2566 if (len > (BGP_HEADER_LENGTH + 4))
2567 { bgp_error(conn, 7, 1, pkt, MIN(len, 2048)); return; }
2568
2569 struct bgp_channel *c = bgp_get_channel(p, get_af4(pkt+19));
2570 if (!c)
2571 {
2572 log(L_WARN "%s: Got ROUTE-REFRESH subtype %u for AF %u.%u, ignoring",
2573 p->p.name, pkt[21], get_u16(pkt+19), pkt[22]);
2574 return;
2575 }
2576
2577 /* RFC 7313 redefined reserved field as RR message subtype */
2578 uint subtype = p->enhanced_refresh ? pkt[21] : BGP_RR_REQUEST;
2579
2580 switch (subtype)
2581 {
2582 case BGP_RR_REQUEST:
2583 BGP_TRACE(D_PACKETS, "Got ROUTE-REFRESH");
2584 channel_request_feeding(&c->c);
2585 break;
2586
2587 case BGP_RR_BEGIN:
2588 BGP_TRACE(D_PACKETS, "Got BEGIN-OF-RR");
2589 bgp_refresh_begin(c);
2590 break;
2591
2592 case BGP_RR_END:
2593 BGP_TRACE(D_PACKETS, "Got END-OF-RR");
2594 bgp_refresh_end(c);
2595 break;
2596
2597 default:
2598 log(L_WARN "%s: Got ROUTE-REFRESH message with unknown subtype %u, ignoring",
2599 p->p.name, subtype);
2600 break;
2601 }
2602 }
2603
2604 static inline struct bgp_channel *
2605 bgp_get_channel_to_send(struct bgp_proto *p, struct bgp_conn *conn)
2606 {
2607 uint i = conn->last_channel;
2608
2609 /* Try the last channel, but at most several times */
2610 if ((conn->channels_to_send & (1 << i)) &&
2611 (conn->last_channel_count < 16))
2612 goto found;
2613
2614 /* Find channel with non-zero channels_to_send */
2615 do
2616 {
2617 i++;
2618 if (i >= p->channel_count)
2619 i = 0;
2620 }
2621 while (! (conn->channels_to_send & (1 << i)));
2622
2623 /* Use that channel */
2624 conn->last_channel = i;
2625 conn->last_channel_count = 0;
2626
2627 found:
2628 conn->last_channel_count++;
2629 return p->channel_map[i];
2630 }
2631
2632 static inline int
2633 bgp_send(struct bgp_conn *conn, uint type, uint len)
2634 {
2635 sock *sk = conn->sk;
2636 byte *buf = sk->tbuf;
2637
2638 memset(buf, 0xff, 16); /* Marker */
2639 put_u16(buf+16, len);
2640 buf[18] = type;
2641
2642 return sk_send(sk, len);
2643 }
2644
2645 /**
2646 * bgp_fire_tx - transmit packets
2647 * @conn: connection
2648 *
2649 * Whenever the transmit buffers of the underlying TCP connection
2650 * are free and we have any packets queued for sending, the socket functions
2651 * call bgp_fire_tx() which takes care of selecting the highest priority packet
2652 * queued (Notification > Keepalive > Open > Update), assembling its header
2653 * and body and sending it to the connection.
2654 */
2655 static int
2656 bgp_fire_tx(struct bgp_conn *conn)
2657 {
2658 struct bgp_proto *p = conn->bgp;
2659 struct bgp_channel *c;
2660 byte *buf, *pkt, *end;
2661 uint s;
2662
2663 if (!conn->sk)
2664 return 0;
2665
2666 buf = conn->sk->tbuf;
2667 pkt = buf + BGP_HEADER_LENGTH;
2668 s = conn->packets_to_send;
2669
2670 if (s & (1 << PKT_SCHEDULE_CLOSE))
2671 {
2672 /* We can finally close connection and enter idle state */
2673 bgp_conn_enter_idle_state(conn);
2674 return 0;
2675 }
2676 if (s & (1 << PKT_NOTIFICATION))
2677 {
2678 conn->packets_to_send = 1 << PKT_SCHEDULE_CLOSE;
2679 end = bgp_create_notification(conn, pkt);
2680 return bgp_send(conn, PKT_NOTIFICATION, end - buf);
2681 }
2682 else if (s & (1 << PKT_KEEPALIVE))
2683 {
2684 conn->packets_to_send &= ~(1 << PKT_KEEPALIVE);
2685 BGP_TRACE(D_PACKETS, "Sending KEEPALIVE");
2686 bgp_start_timer(conn->keepalive_timer, conn->keepalive_time);
2687 return bgp_send(conn, PKT_KEEPALIVE, BGP_HEADER_LENGTH);
2688 }
2689 else if (s & (1 << PKT_OPEN))
2690 {
2691 conn->packets_to_send &= ~(1 << PKT_OPEN);
2692 end = bgp_create_open(conn, pkt);
2693 return bgp_send(conn, PKT_OPEN, end - buf);
2694 }
2695 else while (conn->channels_to_send)
2696 {
2697 c = bgp_get_channel_to_send(p, conn);
2698 s = c->packets_to_send;
2699
2700 if (s & (1 << PKT_ROUTE_REFRESH))
2701 {
2702 c->packets_to_send &= ~(1 << PKT_ROUTE_REFRESH);
2703 end = bgp_create_route_refresh(c, pkt);
2704 return bgp_send(conn, PKT_ROUTE_REFRESH, end - buf);
2705 }
2706 else if (s & (1 << PKT_BEGIN_REFRESH))
2707 {
2708 /* BoRR is a subtype of RR, but uses separate bit in packets_to_send */
2709 c->packets_to_send &= ~(1 << PKT_BEGIN_REFRESH);
2710 end = bgp_create_begin_refresh(c, pkt);
2711 return bgp_send(conn, PKT_ROUTE_REFRESH, end - buf);
2712 }
2713 else if (s & (1 << PKT_UPDATE))
2714 {
2715 end = bgp_create_update(c, pkt);
2716 if (end)
2717 return bgp_send(conn, PKT_UPDATE, end - buf);
2718
2719 /* No update to send, perhaps we need to send End-of-RIB or EoRR */
2720 c->packets_to_send = 0;
2721 conn->channels_to_send &= ~(1 << c->index);
2722
2723 if (c->feed_state == BFS_LOADED)
2724 {
2725 c->feed_state = BFS_NONE;
2726 end = bgp_create_end_mark(c, pkt);
2727 return bgp_send(conn, PKT_UPDATE, end - buf);
2728 }
2729
2730 else if (c->feed_state == BFS_REFRESHED)
2731 {
2732 c->feed_state = BFS_NONE;
2733 end = bgp_create_end_refresh(c, pkt);
2734 return bgp_send(conn, PKT_ROUTE_REFRESH, end - buf);
2735 }
2736 }
2737 else if (s)
2738 bug("Channel packets_to_send: %x", s);
2739
2740 c->packets_to_send = 0;
2741 conn->channels_to_send &= ~(1 << c->index);
2742 }
2743
2744 return 0;
2745 }
2746
2747 /**
2748 * bgp_schedule_packet - schedule a packet for transmission
2749 * @conn: connection
2750 * @c: channel
2751 * @type: packet type
2752 *
2753 * Schedule a packet of type @type to be sent as soon as possible.
2754 */
2755 void
2756 bgp_schedule_packet(struct bgp_conn *conn, struct bgp_channel *c, int type)
2757 {
2758 ASSERT(conn->sk);
2759
2760 DBG("BGP: Scheduling packet type %d\n", type);
2761
2762 if (c)
2763 {
2764 if (! conn->channels_to_send)
2765 {
2766 conn->last_channel = c->index;
2767 conn->last_channel_count = 0;
2768 }
2769
2770 c->packets_to_send |= 1 << type;
2771 conn->channels_to_send |= 1 << c->index;
2772 }
2773 else
2774 conn->packets_to_send |= 1 << type;
2775
2776 if ((conn->sk->tpos == conn->sk->tbuf) && !ev_active(conn->tx_ev))
2777 ev_schedule(conn->tx_ev);
2778 }
2779
2780 void
2781 bgp_kick_tx(void *vconn)
2782 {
2783 struct bgp_conn *conn = vconn;
2784
2785 DBG("BGP: kicking TX\n");
2786 while (bgp_fire_tx(conn) > 0)
2787 ;
2788 }
2789
2790 void
2791 bgp_tx(sock *sk)
2792 {
2793 struct bgp_conn *conn = sk->data;
2794
2795 DBG("BGP: TX hook\n");
2796 while (bgp_fire_tx(conn) > 0)
2797 ;
2798 }
2799
2800
2801 static struct {
2802 byte major, minor;
2803 byte *msg;
2804 } bgp_msg_table[] = {
2805 { 1, 0, "Invalid message header" },
2806 { 1, 1, "Connection not synchronized" },
2807 { 1, 2, "Bad message length" },
2808 { 1, 3, "Bad message type" },
2809 { 2, 0, "Invalid OPEN message" },
2810 { 2, 1, "Unsupported version number" },
2811 { 2, 2, "Bad peer AS" },
2812 { 2, 3, "Bad BGP identifier" },
2813 { 2, 4, "Unsupported optional parameter" },
2814 { 2, 5, "Authentication failure" },
2815 { 2, 6, "Unacceptable hold time" },
2816 { 2, 7, "Required capability missing" }, /* [RFC5492] */
2817 { 2, 8, "No supported AFI/SAFI" }, /* This error msg is nonstandard */
2818 { 3, 0, "Invalid UPDATE message" },
2819 { 3, 1, "Malformed attribute list" },
2820 { 3, 2, "Unrecognized well-known attribute" },
2821 { 3, 3, "Missing mandatory attribute" },
2822 { 3, 4, "Invalid attribute flags" },
2823 { 3, 5, "Invalid attribute length" },
2824 { 3, 6, "Invalid ORIGIN attribute" },
2825 { 3, 7, "AS routing loop" }, /* Deprecated */
2826 { 3, 8, "Invalid NEXT_HOP attribute" },
2827 { 3, 9, "Optional attribute error" },
2828 { 3, 10, "Invalid network field" },
2829 { 3, 11, "Malformed AS_PATH" },
2830 { 4, 0, "Hold timer expired" },
2831 { 5, 0, "Finite state machine error" }, /* Subcodes are according to [RFC6608] */
2832 { 5, 1, "Unexpected message in OpenSent state" },
2833 { 5, 2, "Unexpected message in OpenConfirm state" },
2834 { 5, 3, "Unexpected message in Established state" },
2835 { 6, 0, "Cease" }, /* Subcodes are according to [RFC4486] */
2836 { 6, 1, "Maximum number of prefixes reached" },
2837 { 6, 2, "Administrative shutdown" },
2838 { 6, 3, "Peer de-configured" },
2839 { 6, 4, "Administrative reset" },
2840 { 6, 5, "Connection rejected" },
2841 { 6, 6, "Other configuration change" },
2842 { 6, 7, "Connection collision resolution" },
2843 { 6, 8, "Out of Resources" },
2844 { 7, 0, "Invalid ROUTE-REFRESH message" }, /* [RFC7313] */
2845 { 7, 1, "Invalid ROUTE-REFRESH message length" } /* [RFC7313] */
2846 };
2847
2848 /**
2849 * bgp_error_dsc - return BGP error description
2850 * @code: BGP error code
2851 * @subcode: BGP error subcode
2852 *
2853 * bgp_error_dsc() returns error description for BGP errors
2854 * which might be static string or given temporary buffer.
2855 */
2856 const char *
2857 bgp_error_dsc(uint code, uint subcode)
2858 {
2859 static char buff[32];
2860 uint i;
2861
2862 for (i=0; i < ARRAY_SIZE(bgp_msg_table); i++)
2863 if (bgp_msg_table[i].major == code && bgp_msg_table[i].minor == subcode)
2864 return bgp_msg_table[i].msg;
2865
2866 bsprintf(buff, "Unknown error %u.%u", code, subcode);
2867 return buff;
2868 }
2869
2870 /* RFC 8203 - shutdown communication message */
2871 static int
2872 bgp_handle_message(struct bgp_proto *p, byte *data, uint len, byte **bp)
2873 {
2874 byte *msg = data + 1;
2875 uint msg_len = data[0];
2876 uint i;
2877
2878 /* Handle zero length message */
2879 if (msg_len == 0)
2880 return 1;
2881
2882 /* Handle proper message */
2883 if ((msg_len > 128) && (msg_len + 1 > len))
2884 return 0;
2885
2886 /* Some elementary cleanup */
2887 for (i = 0; i < msg_len; i++)
2888 if (msg[i] < ' ')
2889 msg[i] = ' ';
2890
2891 proto_set_message(&p->p, msg, msg_len);
2892 *bp += bsprintf(*bp, ": \"%s\"", p->p.message);
2893 return 1;
2894 }
2895
2896 void
2897 bgp_log_error(struct bgp_proto *p, u8 class, char *msg, uint code, uint subcode, byte *data, uint len)
2898 {
2899 byte argbuf[256], *t = argbuf;
2900 uint i;
2901
2902 /* Don't report Cease messages generated by myself */
2903 if (code == 6 && class == BE_BGP_TX)
2904 return;
2905
2906 /* Reset shutdown message */
2907 if ((code == 6) && ((subcode == 2) || (subcode == 4)))
2908 proto_set_message(&p->p, NULL, 0);
2909
2910 if (len)
2911 {
2912 /* Bad peer AS - we would like to print the AS */
2913 if ((code == 2) && (subcode == 2) && ((len == 2) || (len == 4)))
2914 {
2915 t += bsprintf(t, ": %u", (len == 2) ? get_u16(data) : get_u32(data));
2916 goto done;
2917 }
2918
2919 /* RFC 8203 - shutdown communication */
2920 if (((code == 6) && ((subcode == 2) || (subcode == 4))))
2921 if (bgp_handle_message(p, data, len, &t))
2922 goto done;
2923
2924 *t++ = ':';
2925 *t++ = ' ';
2926 if (len > 16)
2927 len = 16;
2928 for (i=0; i<len; i++)
2929 t += bsprintf(t, "%02x", data[i]);
2930 }
2931
2932 done:
2933 *t = 0;
2934 const byte *dsc = bgp_error_dsc(code, subcode);
2935 log(L_REMOTE "%s: %s: %s%s", p->p.name, msg, dsc, argbuf);
2936 }
2937
2938 static void
2939 bgp_rx_notification(struct bgp_conn *conn, byte *pkt, uint len)
2940 {
2941 struct bgp_proto *p = conn->bgp;
2942
2943 if (len < 21)
2944 { bgp_error(conn, 1, 2, pkt+16, 2); return; }
2945
2946 uint code = pkt[19];
2947 uint subcode = pkt[20];
2948 int err = (code != 6);
2949
2950 bgp_log_error(p, BE_BGP_RX, "Received", code, subcode, pkt+21, len-21);
2951 bgp_store_error(p, conn, BE_BGP_RX, (code << 16) | subcode);
2952
2953 bgp_conn_enter_close_state(conn);
2954 bgp_schedule_packet(conn, NULL, PKT_SCHEDULE_CLOSE);
2955
2956 if (err)
2957 {
2958 bgp_update_startup_delay(p);
2959 bgp_stop(p, 0, NULL, 0);
2960 }
2961 else
2962 {
2963 uint subcode_bit = 1 << ((subcode <= 8) ? subcode : 0);
2964 if (p->cf->disable_after_cease & subcode_bit)
2965 {
2966 log(L_INFO "%s: Disabled after Cease notification", p->p.name);
2967 p->startup_delay = 0;
2968 p->p.disabled = 1;
2969 }
2970 }
2971 }
2972
2973 static void
2974 bgp_rx_keepalive(struct bgp_conn *conn)
2975 {
2976 struct bgp_proto *p = conn->bgp;
2977
2978 BGP_TRACE(D_PACKETS, "Got KEEPALIVE");
2979 bgp_start_timer(conn->hold_timer, conn->hold_time);
2980
2981 if (conn->state == BS_OPENCONFIRM)
2982 { bgp_conn_enter_established_state(conn); return; }
2983
2984 if (conn->state != BS_ESTABLISHED)
2985 bgp_error(conn, 5, fsm_err_subcode[conn->state], NULL, 0);
2986 }
2987
2988
2989 /**
2990 * bgp_rx_packet - handle a received packet
2991 * @conn: BGP connection
2992 * @pkt: start of the packet
2993 * @len: packet size
2994 *
2995 * bgp_rx_packet() takes a newly received packet and calls the corresponding
2996 * packet handler according to the packet type.
2997 */
2998 static void
2999 bgp_rx_packet(struct bgp_conn *conn, byte *pkt, uint len)
3000 {
3001 byte type = pkt[18];
3002
3003 DBG("BGP: Got packet %02x (%d bytes)\n", type, len);
3004
3005 if (conn->bgp->p.mrtdump & MD_MESSAGES)
3006 bgp_dump_message(conn, pkt, len);
3007
3008 switch (type)
3009 {
3010 case PKT_OPEN: return bgp_rx_open(conn, pkt, len);
3011 case PKT_UPDATE: return bgp_rx_update(conn, pkt, len);
3012 case PKT_NOTIFICATION: return bgp_rx_notification(conn, pkt, len);
3013 case PKT_KEEPALIVE: return bgp_rx_keepalive(conn);
3014 case PKT_ROUTE_REFRESH: return bgp_rx_route_refresh(conn, pkt, len);
3015 default: bgp_error(conn, 1, 3, pkt+18, 1);
3016 }
3017 }
3018
3019 /**
3020 * bgp_rx - handle received data
3021 * @sk: socket
3022 * @size: amount of data received
3023 *
3024 * bgp_rx() is called by the socket layer whenever new data arrive from
3025 * the underlying TCP connection. It assembles the data fragments to packets,
3026 * checks their headers and framing and passes complete packets to
3027 * bgp_rx_packet().
3028 */
3029 int
3030 bgp_rx(sock *sk, uint size)
3031 {
3032 struct bgp_conn *conn = sk->data;
3033 byte *pkt_start = sk->rbuf;
3034 byte *end = pkt_start + size;
3035 uint i, len;
3036
3037 DBG("BGP: RX hook: Got %d bytes\n", size);
3038 while (end >= pkt_start + BGP_HEADER_LENGTH)
3039 {
3040 if ((conn->state == BS_CLOSE) || (conn->sk != sk))
3041 return 0;
3042 for(i=0; i<16; i++)
3043 if (pkt_start[i] != 0xff)
3044 {
3045 bgp_error(conn, 1, 1, NULL, 0);
3046 break;
3047 }
3048 len = get_u16(pkt_start+16);
3049 if ((len < BGP_HEADER_LENGTH) || (len > bgp_max_packet_length(conn)))
3050 {
3051 bgp_error(conn, 1, 2, pkt_start+16, 2);
3052 break;
3053 }
3054 if (end < pkt_start + len)
3055 break;
3056 bgp_rx_packet(conn, pkt_start, len);
3057 pkt_start += len;
3058 }
3059 if (pkt_start != sk->rbuf)
3060 {
3061 memmove(sk->rbuf, pkt_start, end - pkt_start);
3062 sk->rpos = sk->rbuf + (end - pkt_start);
3063 }
3064 return 0;
3065 }