blob: 51b006a60b6a591a1afe07440315ada8960e7c27 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP packet management routine.
2 Copyright (C) 1999 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
21#include <zebra.h>
22
23#include "thread.h"
24#include "stream.h"
25#include "network.h"
26#include "prefix.h"
27#include "command.h"
28#include "log.h"
29#include "memory.h"
30#include "sockunion.h" /* for inet_ntop () */
Timo Teräsef757702015-04-29 09:43:04 +030031#include "sockopt.h"
paul718e3742002-12-13 20:15:29 +000032#include "linklist.h"
33#include "plist.h"
Donald Sharp04907292016-01-07 10:03:01 -050034#include "filter.h"
paul718e3742002-12-13 20:15:29 +000035
36#include "bgpd/bgpd.h"
37#include "bgpd/bgp_table.h"
38#include "bgpd/bgp_dump.h"
39#include "bgpd/bgp_attr.h"
40#include "bgpd/bgp_debug.h"
41#include "bgpd/bgp_fsm.h"
42#include "bgpd/bgp_route.h"
43#include "bgpd/bgp_packet.h"
44#include "bgpd/bgp_open.h"
45#include "bgpd/bgp_aspath.h"
46#include "bgpd/bgp_community.h"
47#include "bgpd/bgp_ecommunity.h"
48#include "bgpd/bgp_network.h"
49#include "bgpd/bgp_mplsvpn.h"
Lou Berger298cc2f2016-01-12 13:42:02 -050050#include "bgpd/bgp_encap.h"
paul718e3742002-12-13 20:15:29 +000051#include "bgpd/bgp_advertise.h"
hasso93406d82005-02-02 14:40:33 +000052#include "bgpd/bgp_vty.h"
paul718e3742002-12-13 20:15:29 +000053
54int stream_put_prefix (struct stream *, struct prefix *);
David Lamparter6b0655a2014-06-04 06:53:35 +020055
paul718e3742002-12-13 20:15:29 +000056/* Set up BGP packet marker and packet type. */
57static int
58bgp_packet_set_marker (struct stream *s, u_char type)
59{
60 int i;
61
62 /* Fill in marker. */
63 for (i = 0; i < BGP_MARKER_SIZE; i++)
64 stream_putc (s, 0xff);
65
66 /* Dummy total length. This field is should be filled in later on. */
67 stream_putw (s, 0);
68
69 /* BGP packet type. */
70 stream_putc (s, type);
71
72 /* Return current stream size. */
paul9985f832005-02-09 15:51:56 +000073 return stream_get_endp (s);
paul718e3742002-12-13 20:15:29 +000074}
75
76/* Set BGP packet header size entry. If size is zero then use current
77 stream size. */
78static int
79bgp_packet_set_size (struct stream *s)
80{
81 int cp;
82
83 /* Preserve current pointer. */
paul9985f832005-02-09 15:51:56 +000084 cp = stream_get_endp (s);
85 stream_putw_at (s, BGP_MARKER_SIZE, cp);
paul718e3742002-12-13 20:15:29 +000086
87 return cp;
88}
89
90/* Add new packet to the peer. */
paul94f2b392005-06-28 12:44:16 +000091static void
paul718e3742002-12-13 20:15:29 +000092bgp_packet_add (struct peer *peer, struct stream *s)
93{
94 /* Add packet to the end of list. */
95 stream_fifo_push (peer->obuf, s);
96}
97
98/* Free first packet. */
paul94f2b392005-06-28 12:44:16 +000099static void
paul718e3742002-12-13 20:15:29 +0000100bgp_packet_delete (struct peer *peer)
101{
102 stream_free (stream_fifo_pop (peer->obuf));
103}
104
paul718e3742002-12-13 20:15:29 +0000105/* Check file descriptor whether connect is established. */
Paul Jakma743dd422016-09-30 13:55:47 +0100106static void
107bgp_connect_check (struct peer *peer)
paul718e3742002-12-13 20:15:29 +0000108{
109 int status;
paul5228ad22004-06-04 17:58:18 +0000110 socklen_t slen;
paul718e3742002-12-13 20:15:29 +0000111 int ret;
112
113 /* Anyway I have to reset read and write thread. */
114 BGP_READ_OFF (peer->t_read);
115 BGP_WRITE_OFF (peer->t_write);
116
117 /* Check file descriptor. */
118 slen = sizeof (status);
pauleb821182004-05-01 08:44:08 +0000119 ret = getsockopt(peer->fd, SOL_SOCKET, SO_ERROR, (void *) &status, &slen);
paul718e3742002-12-13 20:15:29 +0000120
121 /* If getsockopt is fail, this is fatal error. */
122 if (ret < 0)
123 {
124 zlog (peer->log, LOG_INFO, "can't get sockopt for nonblocking connect");
125 BGP_EVENT_ADD (peer, TCP_fatal_error);
Paul Jakma743dd422016-09-30 13:55:47 +0100126 return;
paul718e3742002-12-13 20:15:29 +0000127 }
128
129 /* When status is 0 then TCP connection is established. */
130 if (status == 0)
131 {
132 BGP_EVENT_ADD (peer, TCP_connection_open);
133 }
134 else
135 {
136 if (BGP_DEBUG (events, EVENTS))
ajs6b514742004-12-08 21:03:23 +0000137 plog_debug (peer->log, "%s [Event] Connect failed (%s)",
ajs6099b3b2004-11-20 02:06:59 +0000138 peer->host, safe_strerror (errno));
Paul Jakma743dd422016-09-30 13:55:47 +0100139 BGP_EVENT_ADD (peer, TCP_connection_open_failed);
paul718e3742002-12-13 20:15:29 +0000140 }
141}
142
143/* Make BGP update packet. */
paul94f2b392005-06-28 12:44:16 +0000144static struct stream *
paul718e3742002-12-13 20:15:29 +0000145bgp_update_packet (struct peer *peer, afi_t afi, safi_t safi)
146{
147 struct stream *s;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000148 struct stream *snlri;
paul718e3742002-12-13 20:15:29 +0000149 struct bgp_adj_out *adj;
150 struct bgp_advertise *adv;
151 struct stream *packet;
152 struct bgp_node *rn = NULL;
153 struct bgp_info *binfo = NULL;
154 bgp_size_t total_attr_len = 0;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000155 unsigned long attrlen_pos = 0;
Daniel Walton5bcd7542015-05-19 17:58:10 -0700156 int space_remaining = 0;
157 int space_needed = 0;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000158 size_t mpattrlen_pos = 0;
159 size_t mpattr_pos = 0;
paul718e3742002-12-13 20:15:29 +0000160
161 s = peer->work;
162 stream_reset (s);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000163 snlri = peer->scratch;
164 stream_reset (snlri);
paul718e3742002-12-13 20:15:29 +0000165
Paul Jakma7aa9dce2014-09-19 14:42:23 +0100166 adv = BGP_ADV_FIFO_HEAD (&peer->sync[afi][safi]->update);
paul718e3742002-12-13 20:15:29 +0000167
168 while (adv)
169 {
Paul Jakmaed3ebfa2006-10-15 23:50:16 +0000170 assert (adv->rn);
171 rn = adv->rn;
paul718e3742002-12-13 20:15:29 +0000172 adj = adv->adj;
173 if (adv->binfo)
174 binfo = adv->binfo;
paul718e3742002-12-13 20:15:29 +0000175
Daniel Walton5bcd7542015-05-19 17:58:10 -0700176 space_remaining = STREAM_CONCAT_REMAIN (s, snlri, STREAM_SIZE(s)) -
177 BGP_MAX_PACKET_SIZE_OVERFLOW;
178 space_needed = BGP_NLRI_LENGTH + bgp_packet_mpattr_prefix_size (afi, safi, &rn->p);
179
paul718e3742002-12-13 20:15:29 +0000180 /* When remaining space can't include NLRI and it's length. */
Daniel Walton5bcd7542015-05-19 17:58:10 -0700181 if (space_remaining < space_needed)
paul718e3742002-12-13 20:15:29 +0000182 break;
183
184 /* If packet is empty, set attribute. */
185 if (stream_empty (s))
186 {
Lou Berger050defe2016-01-12 13:41:59 -0500187 struct prefix_rd *prd = NULL;
188 u_char *tag = NULL;
Paul Jakmaed3ebfa2006-10-15 23:50:16 +0000189 struct peer *from = NULL;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000190
Lou Berger050defe2016-01-12 13:41:59 -0500191 if (rn->prn)
192 prd = (struct prefix_rd *) &rn->prn->p;
Greg Troxeld3ddb222010-09-17 10:47:49 -0400193 if (binfo)
Lou Berger050defe2016-01-12 13:41:59 -0500194 {
195 from = binfo->peer;
196 if (binfo->extra)
197 tag = binfo->extra->tag;
198 }
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000199
200 /* 1: Write the BGP message header - 16 bytes marker, 2 bytes length,
201 * one byte message type.
202 */
paul718e3742002-12-13 20:15:29 +0000203 bgp_packet_set_marker (s, BGP_MSG_UPDATE);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000204
205 /* 2: withdrawn routes length */
paul718e3742002-12-13 20:15:29 +0000206 stream_putw (s, 0);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000207
208 /* 3: total attributes length - attrlen_pos stores the position */
209 attrlen_pos = stream_get_endp (s);
210 stream_putw (s, 0);
211
212 /* 4: if there is MP_REACH_NLRI attribute, that should be the first
213 * attribute, according to draft-ietf-idr-error-handling. Save the
214 * position.
215 */
216 mpattr_pos = stream_get_endp(s);
217
218 /* 5: Encode all the attributes, except MP_REACH_NLRI attr. */
219 total_attr_len = bgp_packet_attribute (NULL, peer, s,
paul5228ad22004-06-04 17:58:18 +0000220 adv->baa->attr,
Lou Berger298cc2f2016-01-12 13:42:02 -0500221 ((afi == AFI_IP && safi == SAFI_UNICAST) ?
222 &rn->p : NULL),
223 afi, safi,
Lou Berger050defe2016-01-12 13:41:59 -0500224 from, prd, tag);
Daniel Walton5bcd7542015-05-19 17:58:10 -0700225 space_remaining = STREAM_CONCAT_REMAIN (s, snlri, STREAM_SIZE(s)) -
226 BGP_MAX_PACKET_SIZE_OVERFLOW;
227 space_needed = BGP_NLRI_LENGTH + bgp_packet_mpattr_prefix_size (afi, safi, &rn->p);;
228
229 /* If the attributes alone do not leave any room for NLRI then
230 * return */
231 if (space_remaining < space_needed)
232 {
233 zlog_err ("%s cannot send UPDATE, the attributes do not leave "
234 "room for NLRI", peer->host);
235 /* Flush the FIFO update queue */
236 while (adv)
237 adv = bgp_advertise_clean (peer, adv->adj, afi, safi);
238 return NULL;
239 }
240
paul718e3742002-12-13 20:15:29 +0000241 }
242
243 if (afi == AFI_IP && safi == SAFI_UNICAST)
244 stream_put_prefix (s, &rn->p);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000245 else
246 {
247 /* Encode the prefix in MP_REACH_NLRI attribute */
248 struct prefix_rd *prd = NULL;
249 u_char *tag = NULL;
250
251 if (rn->prn)
252 prd = (struct prefix_rd *) &rn->prn->p;
253 if (binfo && binfo->extra)
254 tag = binfo->extra->tag;
255
256 if (stream_empty(snlri))
257 mpattrlen_pos = bgp_packet_mpattr_start(snlri, afi, safi,
258 adv->baa->attr);
259 bgp_packet_mpattr_prefix(snlri, afi, safi, &rn->p, prd, tag);
260 }
paul718e3742002-12-13 20:15:29 +0000261 if (BGP_DEBUG (update, UPDATE_OUT))
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +0000262 {
263 char buf[INET6_BUFSIZ];
264
265 zlog (peer->log, LOG_DEBUG, "%s send UPDATE %s/%d",
266 peer->host,
267 inet_ntop (rn->p.family, &(rn->p.u.prefix), buf, INET6_BUFSIZ),
268 rn->p.prefixlen);
269 }
paul718e3742002-12-13 20:15:29 +0000270
271 /* Synchnorize attribute. */
272 if (adj->attr)
Paul Jakmaf6f434b2010-11-23 21:28:03 +0000273 bgp_attr_unintern (&adj->attr);
paul718e3742002-12-13 20:15:29 +0000274 else
275 peer->scount[afi][safi]++;
276
277 adj->attr = bgp_attr_intern (adv->baa->attr);
278
279 adv = bgp_advertise_clean (peer, adj, afi, safi);
paul718e3742002-12-13 20:15:29 +0000280 }
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000281
paul718e3742002-12-13 20:15:29 +0000282 if (! stream_empty (s))
283 {
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000284 if (!stream_empty(snlri))
285 {
286 bgp_packet_mpattr_end(snlri, mpattrlen_pos);
287 total_attr_len += stream_get_endp(snlri);
288 }
289
290 /* set the total attribute length correctly */
291 stream_putw_at (s, attrlen_pos, total_attr_len);
292
293 if (!stream_empty(snlri))
294 packet = stream_dupcat(s, snlri, mpattr_pos);
295 else
296 packet = stream_dup (s);
297 bgp_packet_set_size (packet);
paul718e3742002-12-13 20:15:29 +0000298 bgp_packet_add (peer, packet);
pauleb821182004-05-01 08:44:08 +0000299 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +0000300 stream_reset (s);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000301 stream_reset (snlri);
paul718e3742002-12-13 20:15:29 +0000302 return packet;
303 }
304 return NULL;
hasso93406d82005-02-02 14:40:33 +0000305}
paul718e3742002-12-13 20:15:29 +0000306
paul94f2b392005-06-28 12:44:16 +0000307static struct stream *
hasso93406d82005-02-02 14:40:33 +0000308bgp_update_packet_eor (struct peer *peer, afi_t afi, safi_t safi)
309{
310 struct stream *s;
hasso93406d82005-02-02 14:40:33 +0000311
Paul Jakma750e8142008-07-22 21:11:48 +0000312 if (DISABLE_BGP_ANNOUNCE)
313 return NULL;
hasso93406d82005-02-02 14:40:33 +0000314
315 if (BGP_DEBUG (normal, NORMAL))
316 zlog_debug ("send End-of-RIB for %s to %s", afi_safi_print (afi, safi), peer->host);
317
318 s = stream_new (BGP_MAX_PACKET_SIZE);
319
320 /* Make BGP update packet. */
321 bgp_packet_set_marker (s, BGP_MSG_UPDATE);
322
323 /* Unfeasible Routes Length */
324 stream_putw (s, 0);
325
326 if (afi == AFI_IP && safi == SAFI_UNICAST)
327 {
328 /* Total Path Attribute Length */
329 stream_putw (s, 0);
330 }
331 else
332 {
333 /* Total Path Attribute Length */
334 stream_putw (s, 6);
335 stream_putc (s, BGP_ATTR_FLAG_OPTIONAL);
336 stream_putc (s, BGP_ATTR_MP_UNREACH_NLRI);
337 stream_putc (s, 3);
338 stream_putw (s, afi);
339 stream_putc (s, safi);
340 }
341
342 bgp_packet_set_size (s);
Donald Sharpa752c3b2015-08-18 08:48:53 -0400343 bgp_packet_add (peer, s);
344 return s;
paul718e3742002-12-13 20:15:29 +0000345}
346
347/* Make BGP withdraw packet. */
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000348/* For ipv4 unicast:
349 16-octet marker | 2-octet length | 1-octet type |
350 2-octet withdrawn route length | withdrawn prefixes | 2-octet attrlen (=0)
351*/
352/* For other afi/safis:
353 16-octet marker | 2-octet length | 1-octet type |
354 2-octet withdrawn route length (=0) | 2-octet attrlen |
355 mp_unreach attr type | attr len | afi | safi | withdrawn prefixes
356*/
paul94f2b392005-06-28 12:44:16 +0000357static struct stream *
paul718e3742002-12-13 20:15:29 +0000358bgp_withdraw_packet (struct peer *peer, afi_t afi, safi_t safi)
359{
360 struct stream *s;
361 struct stream *packet;
362 struct bgp_adj_out *adj;
363 struct bgp_advertise *adv;
364 struct bgp_node *rn;
paul718e3742002-12-13 20:15:29 +0000365 bgp_size_t unfeasible_len;
366 bgp_size_t total_attr_len;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000367 size_t mp_start = 0;
368 size_t attrlen_pos = 0;
369 size_t mplen_pos = 0;
370 u_char first_time = 1;
Daniel Walton5bcd7542015-05-19 17:58:10 -0700371 int space_remaining = 0;
372 int space_needed = 0;
paul718e3742002-12-13 20:15:29 +0000373
374 s = peer->work;
375 stream_reset (s);
376
Paul Jakma7aa9dce2014-09-19 14:42:23 +0100377 while ((adv = BGP_ADV_FIFO_HEAD (&peer->sync[afi][safi]->withdraw)) != NULL)
paul718e3742002-12-13 20:15:29 +0000378 {
Paul Jakmaed3ebfa2006-10-15 23:50:16 +0000379 assert (adv->rn);
paul718e3742002-12-13 20:15:29 +0000380 adj = adv->adj;
381 rn = adv->rn;
paul718e3742002-12-13 20:15:29 +0000382
Daniel Walton5bcd7542015-05-19 17:58:10 -0700383 space_remaining = STREAM_REMAIN (s) -
384 BGP_MAX_PACKET_SIZE_OVERFLOW;
385 space_needed = (BGP_NLRI_LENGTH + BGP_TOTAL_ATTR_LEN +
386 bgp_packet_mpattr_prefix_size (afi, safi, &rn->p));
387
388 if (space_remaining < space_needed)
paul718e3742002-12-13 20:15:29 +0000389 break;
390
391 if (stream_empty (s))
392 {
393 bgp_packet_set_marker (s, BGP_MSG_UPDATE);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000394 stream_putw (s, 0); /* unfeasible routes length */
paul718e3742002-12-13 20:15:29 +0000395 }
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000396 else
397 first_time = 0;
paul718e3742002-12-13 20:15:29 +0000398
399 if (afi == AFI_IP && safi == SAFI_UNICAST)
400 stream_put_prefix (s, &rn->p);
401 else
402 {
Paul Jakmaa3b6ea52006-05-04 07:52:12 +0000403 struct prefix_rd *prd = NULL;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000404
Paul Jakmaa3b6ea52006-05-04 07:52:12 +0000405 if (rn->prn)
406 prd = (struct prefix_rd *) &rn->prn->p;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000407
408 /* If first time, format the MP_UNREACH header */
409 if (first_time)
410 {
411 attrlen_pos = stream_get_endp (s);
412 /* total attr length = 0 for now. reevaluate later */
413 stream_putw (s, 0);
414 mp_start = stream_get_endp (s);
415 mplen_pos = bgp_packet_mpunreach_start(s, afi, safi);
416 }
417
418 bgp_packet_mpunreach_prefix(s, &rn->p, afi, safi, prd, NULL);
paul718e3742002-12-13 20:15:29 +0000419 }
420
421 if (BGP_DEBUG (update, UPDATE_OUT))
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +0000422 {
423 char buf[INET6_BUFSIZ];
424
425 zlog (peer->log, LOG_DEBUG, "%s send UPDATE %s/%d -- unreachable",
426 peer->host,
427 inet_ntop (rn->p.family, &(rn->p.u.prefix), buf, INET6_BUFSIZ),
428 rn->p.prefixlen);
429 }
paul718e3742002-12-13 20:15:29 +0000430
431 peer->scount[afi][safi]--;
432
433 bgp_adj_out_remove (rn, adj, peer, afi, safi);
434 bgp_unlock_node (rn);
paul718e3742002-12-13 20:15:29 +0000435 }
436
437 if (! stream_empty (s))
438 {
439 if (afi == AFI_IP && safi == SAFI_UNICAST)
440 {
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000441 unfeasible_len
paul9985f832005-02-09 15:51:56 +0000442 = stream_get_endp (s) - BGP_HEADER_SIZE - BGP_UNFEASIBLE_LEN;
paul718e3742002-12-13 20:15:29 +0000443 stream_putw_at (s, BGP_HEADER_SIZE, unfeasible_len);
444 stream_putw (s, 0);
445 }
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000446 else
447 {
448 /* Set the mp_unreach attr's length */
449 bgp_packet_mpunreach_end(s, mplen_pos);
450
451 /* Set total path attribute length. */
452 total_attr_len = stream_get_endp(s) - mp_start;
453 stream_putw_at (s, attrlen_pos, total_attr_len);
454 }
paul718e3742002-12-13 20:15:29 +0000455 bgp_packet_set_size (s);
paule83e2082005-05-19 02:12:25 +0000456 packet = stream_dup (s);
paul718e3742002-12-13 20:15:29 +0000457 bgp_packet_add (peer, packet);
458 stream_reset (s);
459 return packet;
460 }
461
462 return NULL;
463}
464
465void
466bgp_default_update_send (struct peer *peer, struct attr *attr,
467 afi_t afi, safi_t safi, struct peer *from)
468{
469 struct stream *s;
paul718e3742002-12-13 20:15:29 +0000470 struct prefix p;
471 unsigned long pos;
472 bgp_size_t total_attr_len;
paul718e3742002-12-13 20:15:29 +0000473
Paul Jakma750e8142008-07-22 21:11:48 +0000474 if (DISABLE_BGP_ANNOUNCE)
475 return;
paul718e3742002-12-13 20:15:29 +0000476
477 if (afi == AFI_IP)
478 str2prefix ("0.0.0.0/0", &p);
paul718e3742002-12-13 20:15:29 +0000479 else
480 str2prefix ("::/0", &p);
paul718e3742002-12-13 20:15:29 +0000481
482 /* Logging the attribute. */
483 if (BGP_DEBUG (update, UPDATE_OUT))
484 {
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +0000485 char attrstr[BUFSIZ];
486 char buf[INET6_BUFSIZ];
487 attrstr[0] = '\0';
488
paul718e3742002-12-13 20:15:29 +0000489 bgp_dump_attr (peer, attr, attrstr, BUFSIZ);
ajs6b514742004-12-08 21:03:23 +0000490 zlog (peer->log, LOG_DEBUG, "%s send UPDATE %s/%d %s",
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +0000491 peer->host, inet_ntop(p.family, &(p.u.prefix), buf, INET6_BUFSIZ),
paul718e3742002-12-13 20:15:29 +0000492 p.prefixlen, attrstr);
493 }
494
495 s = stream_new (BGP_MAX_PACKET_SIZE);
496
497 /* Make BGP update packet. */
498 bgp_packet_set_marker (s, BGP_MSG_UPDATE);
499
500 /* Unfeasible Routes Length. */
501 stream_putw (s, 0);
502
503 /* Make place for total attribute length. */
paul9985f832005-02-09 15:51:56 +0000504 pos = stream_get_endp (s);
paul718e3742002-12-13 20:15:29 +0000505 stream_putw (s, 0);
506 total_attr_len = bgp_packet_attribute (NULL, peer, s, attr, &p, afi, safi, from, NULL, NULL);
507
508 /* Set Total Path Attribute Length. */
509 stream_putw_at (s, pos, total_attr_len);
510
511 /* NLRI set. */
512 if (p.family == AF_INET && safi == SAFI_UNICAST)
513 stream_put_prefix (s, &p);
514
515 /* Set size. */
516 bgp_packet_set_size (s);
517
paul718e3742002-12-13 20:15:29 +0000518 /* Dump packet if debug option is set. */
519#ifdef DEBUG
jardin2d74db52005-10-01 00:07:50 +0000520 /* bgp_packet_dump (packet); */
paul718e3742002-12-13 20:15:29 +0000521#endif /* DEBUG */
522
523 /* Add packet to the peer. */
Donald Sharpa752c3b2015-08-18 08:48:53 -0400524 bgp_packet_add (peer, s);
paul718e3742002-12-13 20:15:29 +0000525
pauleb821182004-05-01 08:44:08 +0000526 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +0000527}
528
529void
530bgp_default_withdraw_send (struct peer *peer, afi_t afi, safi_t safi)
531{
532 struct stream *s;
paul718e3742002-12-13 20:15:29 +0000533 struct prefix p;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000534 unsigned long attrlen_pos = 0;
paul718e3742002-12-13 20:15:29 +0000535 unsigned long cp;
536 bgp_size_t unfeasible_len;
537 bgp_size_t total_attr_len;
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000538 size_t mp_start = 0;
539 size_t mplen_pos = 0;
paul718e3742002-12-13 20:15:29 +0000540
Paul Jakma750e8142008-07-22 21:11:48 +0000541 if (DISABLE_BGP_ANNOUNCE)
542 return;
paul718e3742002-12-13 20:15:29 +0000543
544 if (afi == AFI_IP)
545 str2prefix ("0.0.0.0/0", &p);
paul718e3742002-12-13 20:15:29 +0000546 else
547 str2prefix ("::/0", &p);
paul718e3742002-12-13 20:15:29 +0000548
549 total_attr_len = 0;
paul718e3742002-12-13 20:15:29 +0000550
551 if (BGP_DEBUG (update, UPDATE_OUT))
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +0000552 {
553 char buf[INET6_BUFSIZ];
554
555 zlog (peer->log, LOG_DEBUG, "%s send UPDATE %s/%d -- unreachable",
556 peer->host, inet_ntop(p.family, &(p.u.prefix), buf, INET6_BUFSIZ),
557 p.prefixlen);
558 }
paul718e3742002-12-13 20:15:29 +0000559
560 s = stream_new (BGP_MAX_PACKET_SIZE);
561
562 /* Make BGP update packet. */
563 bgp_packet_set_marker (s, BGP_MSG_UPDATE);
564
565 /* Unfeasible Routes Length. */;
paul9985f832005-02-09 15:51:56 +0000566 cp = stream_get_endp (s);
paul718e3742002-12-13 20:15:29 +0000567 stream_putw (s, 0);
568
569 /* Withdrawn Routes. */
570 if (p.family == AF_INET && safi == SAFI_UNICAST)
571 {
572 stream_put_prefix (s, &p);
573
paul9985f832005-02-09 15:51:56 +0000574 unfeasible_len = stream_get_endp (s) - cp - 2;
paul718e3742002-12-13 20:15:29 +0000575
576 /* Set unfeasible len. */
577 stream_putw_at (s, cp, unfeasible_len);
578
579 /* Set total path attribute length. */
580 stream_putw (s, 0);
581 }
582 else
583 {
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000584 attrlen_pos = stream_get_endp (s);
paul718e3742002-12-13 20:15:29 +0000585 stream_putw (s, 0);
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000586 mp_start = stream_get_endp (s);
587 mplen_pos = bgp_packet_mpunreach_start(s, afi, safi);
588 bgp_packet_mpunreach_prefix(s, &p, afi, safi, NULL, NULL);
589
590 /* Set the mp_unreach attr's length */
591 bgp_packet_mpunreach_end(s, mplen_pos);
paul718e3742002-12-13 20:15:29 +0000592
593 /* Set total path attribute length. */
Pradosh Mohapatra8c71e482014-01-15 06:57:57 +0000594 total_attr_len = stream_get_endp(s) - mp_start;
595 stream_putw_at (s, attrlen_pos, total_attr_len);
paul718e3742002-12-13 20:15:29 +0000596 }
597
598 bgp_packet_set_size (s);
599
paul718e3742002-12-13 20:15:29 +0000600 /* Add packet to the peer. */
Donald Sharpa752c3b2015-08-18 08:48:53 -0400601 bgp_packet_add (peer, s);
paul718e3742002-12-13 20:15:29 +0000602
pauleb821182004-05-01 08:44:08 +0000603 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +0000604}
605
606/* Get next packet to be written. */
paul94f2b392005-06-28 12:44:16 +0000607static struct stream *
paul718e3742002-12-13 20:15:29 +0000608bgp_write_packet (struct peer *peer)
609{
610 afi_t afi;
611 safi_t safi;
612 struct stream *s = NULL;
613 struct bgp_advertise *adv;
614
615 s = stream_fifo_head (peer->obuf);
616 if (s)
617 return s;
618
619 for (afi = AFI_IP; afi < AFI_MAX; afi++)
620 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
621 {
Paul Jakma7aa9dce2014-09-19 14:42:23 +0100622 adv = BGP_ADV_FIFO_HEAD (&peer->sync[afi][safi]->withdraw);
paul718e3742002-12-13 20:15:29 +0000623 if (adv)
624 {
625 s = bgp_withdraw_packet (peer, afi, safi);
626 if (s)
627 return s;
628 }
629 }
630
631 for (afi = AFI_IP; afi < AFI_MAX; afi++)
632 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
633 {
Paul Jakma7aa9dce2014-09-19 14:42:23 +0100634 adv = BGP_ADV_FIFO_HEAD (&peer->sync[afi][safi]->update);
paul718e3742002-12-13 20:15:29 +0000635 if (adv)
636 {
637 if (adv->binfo && adv->binfo->uptime < peer->synctime)
hasso93406d82005-02-02 14:40:33 +0000638 {
639 if (CHECK_FLAG (adv->binfo->peer->cap, PEER_CAP_RESTART_RCV)
640 && CHECK_FLAG (adv->binfo->peer->cap, PEER_CAP_RESTART_ADV)
Vipin Kumardd49eb12014-09-30 14:36:38 -0700641 && ! (CHECK_FLAG (adv->binfo->peer->cap,
642 PEER_CAP_RESTART_BIT_RCV) &&
643 CHECK_FLAG (adv->binfo->peer->cap,
644 PEER_CAP_RESTART_BIT_ADV))
hasso93406d82005-02-02 14:40:33 +0000645 && ! CHECK_FLAG (adv->binfo->flags, BGP_INFO_STALE)
646 && safi != SAFI_MPLS_VPN)
647 {
648 if (CHECK_FLAG (adv->binfo->peer->af_sflags[afi][safi],
649 PEER_STATUS_EOR_RECEIVED))
650 s = bgp_update_packet (peer, afi, safi);
651 }
652 else
653 s = bgp_update_packet (peer, afi, safi);
654 }
paul718e3742002-12-13 20:15:29 +0000655
656 if (s)
657 return s;
658 }
hasso93406d82005-02-02 14:40:33 +0000659
660 if (CHECK_FLAG (peer->cap, PEER_CAP_RESTART_RCV))
661 {
662 if (peer->afc_nego[afi][safi] && peer->synctime
663 && ! CHECK_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_EOR_SEND)
664 && safi != SAFI_MPLS_VPN)
665 {
666 SET_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_EOR_SEND);
667 return bgp_update_packet_eor (peer, afi, safi);
668 }
669 }
paul718e3742002-12-13 20:15:29 +0000670 }
671
672 return NULL;
673}
674
675/* Is there partially written packet or updates we can send right
676 now. */
paul94f2b392005-06-28 12:44:16 +0000677static int
paul718e3742002-12-13 20:15:29 +0000678bgp_write_proceed (struct peer *peer)
679{
680 afi_t afi;
681 safi_t safi;
682 struct bgp_advertise *adv;
683
684 if (stream_fifo_head (peer->obuf))
685 return 1;
686
687 for (afi = AFI_IP; afi < AFI_MAX; afi++)
688 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
689 if (FIFO_HEAD (&peer->sync[afi][safi]->withdraw))
690 return 1;
691
692 for (afi = AFI_IP; afi < AFI_MAX; afi++)
693 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
Paul Jakma7aa9dce2014-09-19 14:42:23 +0100694 if ((adv = BGP_ADV_FIFO_HEAD (&peer->sync[afi][safi]->update)) != NULL)
paul718e3742002-12-13 20:15:29 +0000695 if (adv->binfo->uptime < peer->synctime)
696 return 1;
697
698 return 0;
699}
700
701/* Write packet to the peer. */
702int
703bgp_write (struct thread *thread)
704{
705 struct peer *peer;
706 u_char type;
707 struct stream *s;
708 int num;
paulfd79ac92004-10-13 05:06:08 +0000709 unsigned int count = 0;
paul718e3742002-12-13 20:15:29 +0000710
711 /* Yes first of all get peer pointer. */
712 peer = THREAD_ARG (thread);
713 peer->t_write = NULL;
714
715 /* For non-blocking IO check. */
716 if (peer->status == Connect)
717 {
Paul Jakma743dd422016-09-30 13:55:47 +0100718 bgp_connect_check (peer);
paul718e3742002-12-13 20:15:29 +0000719 return 0;
720 }
721
Stephen Hemmingereac57022010-08-05 10:26:25 -0700722 s = bgp_write_packet (peer);
723 if (!s)
724 return 0; /* nothing to send */
725
726 sockopt_cork (peer->fd, 1);
727
728 /* Nonblocking write until TCP output buffer is full. */
729 do
paul718e3742002-12-13 20:15:29 +0000730 {
731 int writenum;
paul718e3742002-12-13 20:15:29 +0000732
733 /* Number of bytes to be sent. */
734 writenum = stream_get_endp (s) - stream_get_getp (s);
735
736 /* Call write() system call. */
pauleb821182004-05-01 08:44:08 +0000737 num = write (peer->fd, STREAM_PNT (s), writenum);
Stephen Hemminger35398582010-08-05 10:26:23 -0700738 if (num < 0)
paul718e3742002-12-13 20:15:29 +0000739 {
Stephen Hemmingereac57022010-08-05 10:26:25 -0700740 /* write failed either retry needed or error */
741 if (ERRNO_IO_RETRY(errno))
742 break;
743
744 BGP_EVENT_ADD (peer, TCP_fatal_error);
paul718e3742002-12-13 20:15:29 +0000745 return 0;
746 }
Stephen Hemminger35398582010-08-05 10:26:23 -0700747
paul718e3742002-12-13 20:15:29 +0000748 if (num != writenum)
749 {
Stephen Hemminger35398582010-08-05 10:26:23 -0700750 /* Partial write */
paul9985f832005-02-09 15:51:56 +0000751 stream_forward_getp (s, num);
Stephen Hemmingereac57022010-08-05 10:26:25 -0700752 break;
paul718e3742002-12-13 20:15:29 +0000753 }
754
755 /* Retrieve BGP packet type. */
756 stream_set_getp (s, BGP_MARKER_SIZE + 2);
757 type = stream_getc (s);
758
759 switch (type)
760 {
761 case BGP_MSG_OPEN:
762 peer->open_out++;
763 break;
764 case BGP_MSG_UPDATE:
765 peer->update_out++;
766 break;
767 case BGP_MSG_NOTIFY:
768 peer->notify_out++;
paul718e3742002-12-13 20:15:29 +0000769
Paul Jakmaca058a32006-09-14 02:58:49 +0000770 /* Flush any existing events */
Paul Jakmab1b15792016-09-21 18:50:23 +0100771 BGP_EVENT_ADD (peer, BGP_Stop_with_error);
Stephen Hemminger3a69f742013-01-11 18:27:23 +0000772 goto done;
773
paul718e3742002-12-13 20:15:29 +0000774 case BGP_MSG_KEEPALIVE:
775 peer->keepalive_out++;
776 break;
777 case BGP_MSG_ROUTE_REFRESH_NEW:
778 case BGP_MSG_ROUTE_REFRESH_OLD:
779 peer->refresh_out++;
780 break;
781 case BGP_MSG_CAPABILITY:
782 peer->dynamic_cap_out++;
783 break;
784 }
785
786 /* OK we send packet so delete it. */
787 bgp_packet_delete (peer);
paul718e3742002-12-13 20:15:29 +0000788 }
Stephen Hemmingereac57022010-08-05 10:26:25 -0700789 while (++count < BGP_WRITE_PACKET_MAX &&
790 (s = bgp_write_packet (peer)) != NULL);
paul718e3742002-12-13 20:15:29 +0000791
792 if (bgp_write_proceed (peer))
pauleb821182004-05-01 08:44:08 +0000793 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
Stephen Hemminger3a69f742013-01-11 18:27:23 +0000794
795 done:
796 sockopt_cork (peer->fd, 0);
paul718e3742002-12-13 20:15:29 +0000797 return 0;
798}
799
800/* This is only for sending NOTIFICATION message to neighbor. */
paul94f2b392005-06-28 12:44:16 +0000801static int
paul718e3742002-12-13 20:15:29 +0000802bgp_write_notify (struct peer *peer)
803{
Stephen Hemminger35398582010-08-05 10:26:23 -0700804 int ret, val;
paul718e3742002-12-13 20:15:29 +0000805 u_char type;
806 struct stream *s;
807
808 /* There should be at least one packet. */
809 s = stream_fifo_head (peer->obuf);
810 if (!s)
811 return 0;
812 assert (stream_get_endp (s) >= BGP_HEADER_SIZE);
813
Leonid Rosenboim86998bc2012-12-14 19:12:17 +0000814 /* Stop collecting data within the socket */
815 sockopt_cork (peer->fd, 0);
816
David Lamparter8ff202e2013-07-31 14:39:41 +0200817 /* socket is in nonblocking mode, if we can't deliver the NOTIFY, well,
818 * we only care about getting a clean shutdown at this point. */
Leonid Rosenboim86998bc2012-12-14 19:12:17 +0000819 ret = write (peer->fd, STREAM_DATA (s), stream_get_endp (s));
David Lamparter8ff202e2013-07-31 14:39:41 +0200820
821 /* only connection reset/close gets counted as TCP_fatal_error, failure
822 * to write the entire NOTIFY doesn't get different FSM treatment */
paul718e3742002-12-13 20:15:29 +0000823 if (ret <= 0)
824 {
Paul Jakmadcdf3992006-10-15 23:39:59 +0000825 BGP_EVENT_ADD (peer, TCP_fatal_error);
paul718e3742002-12-13 20:15:29 +0000826 return 0;
827 }
828
Leonid Rosenboim86998bc2012-12-14 19:12:17 +0000829 /* Disable Nagle, make NOTIFY packet go out right away */
830 val = 1;
831 (void) setsockopt (peer->fd, IPPROTO_TCP, TCP_NODELAY,
832 (char *) &val, sizeof (val));
833
paul718e3742002-12-13 20:15:29 +0000834 /* Retrieve BGP packet type. */
835 stream_set_getp (s, BGP_MARKER_SIZE + 2);
836 type = stream_getc (s);
837
838 assert (type == BGP_MSG_NOTIFY);
839
840 /* Type should be notify. */
841 peer->notify_out++;
842
Paul Jakmab1b15792016-09-21 18:50:23 +0100843 BGP_EVENT_ADD (peer, BGP_Stop_with_error);
paul718e3742002-12-13 20:15:29 +0000844
845 return 0;
846}
847
848/* Make keepalive packet and send it to the peer. */
849void
850bgp_keepalive_send (struct peer *peer)
851{
852 struct stream *s;
853 int length;
854
855 s = stream_new (BGP_MAX_PACKET_SIZE);
856
857 /* Make keepalive packet. */
858 bgp_packet_set_marker (s, BGP_MSG_KEEPALIVE);
859
860 /* Set packet size. */
861 length = bgp_packet_set_size (s);
862
863 /* Dump packet if debug option is set. */
864 /* bgp_packet_dump (s); */
865
866 if (BGP_DEBUG (keepalive, KEEPALIVE))
ajs6b514742004-12-08 21:03:23 +0000867 zlog_debug ("%s sending KEEPALIVE", peer->host);
paul718e3742002-12-13 20:15:29 +0000868 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +0000869 zlog_debug ("%s send message type %d, length (incl. header) %d",
paul718e3742002-12-13 20:15:29 +0000870 peer->host, BGP_MSG_KEEPALIVE, length);
871
872 /* Add packet to the peer. */
873 bgp_packet_add (peer, s);
874
pauleb821182004-05-01 08:44:08 +0000875 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +0000876}
877
878/* Make open packet and send it to the peer. */
879void
880bgp_open_send (struct peer *peer)
881{
882 struct stream *s;
883 int length;
884 u_int16_t send_holdtime;
885 as_t local_as;
886
887 if (CHECK_FLAG (peer->config, PEER_CONFIG_TIMER))
888 send_holdtime = peer->holdtime;
889 else
890 send_holdtime = peer->bgp->default_holdtime;
891
892 /* local-as Change */
893 if (peer->change_local_as)
894 local_as = peer->change_local_as;
895 else
896 local_as = peer->local_as;
897
898 s = stream_new (BGP_MAX_PACKET_SIZE);
899
900 /* Make open packet. */
901 bgp_packet_set_marker (s, BGP_MSG_OPEN);
902
903 /* Set open packet values. */
904 stream_putc (s, BGP_VERSION_4); /* BGP version */
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000905 stream_putw (s, (local_as <= BGP_AS_MAX) ? (u_int16_t) local_as
906 : BGP_AS_TRANS);
paul718e3742002-12-13 20:15:29 +0000907 stream_putw (s, send_holdtime); /* Hold Time */
908 stream_put_in_addr (s, &peer->local_id); /* BGP Identifier */
909
910 /* Set capability code. */
911 bgp_open_capability (s, peer);
912
913 /* Set BGP packet length. */
914 length = bgp_packet_set_size (s);
915
916 if (BGP_DEBUG (normal, NORMAL))
Denis Ovsienkoaea339f2009-04-30 17:16:22 +0400917 zlog_debug ("%s sending OPEN, version %d, my as %u, holdtime %d, id %s",
paul718e3742002-12-13 20:15:29 +0000918 peer->host, BGP_VERSION_4, local_as,
919 send_holdtime, inet_ntoa (peer->local_id));
920
921 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +0000922 zlog_debug ("%s send message type %d, length (incl. header) %d",
paul718e3742002-12-13 20:15:29 +0000923 peer->host, BGP_MSG_OPEN, length);
924
925 /* Dump packet if debug option is set. */
926 /* bgp_packet_dump (s); */
927
928 /* Add packet to the peer. */
929 bgp_packet_add (peer, s);
930
pauleb821182004-05-01 08:44:08 +0000931 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +0000932}
933
934/* Send BGP notify packet with data potion. */
935void
936bgp_notify_send_with_data (struct peer *peer, u_char code, u_char sub_code,
937 u_char *data, size_t datalen)
938{
939 struct stream *s;
940 int length;
941
942 /* Allocate new stream. */
943 s = stream_new (BGP_MAX_PACKET_SIZE);
944
945 /* Make nitify packet. */
946 bgp_packet_set_marker (s, BGP_MSG_NOTIFY);
947
948 /* Set notify packet values. */
949 stream_putc (s, code); /* BGP notify code */
950 stream_putc (s, sub_code); /* BGP notify sub_code */
951
952 /* If notify data is present. */
953 if (data)
954 stream_write (s, data, datalen);
955
956 /* Set BGP packet length. */
957 length = bgp_packet_set_size (s);
958
959 /* Add packet to the peer. */
960 stream_fifo_clean (peer->obuf);
961 bgp_packet_add (peer, s);
962
963 /* For debug */
964 {
965 struct bgp_notify bgp_notify;
966 int first = 0;
967 int i;
968 char c[4];
969
970 bgp_notify.code = code;
971 bgp_notify.subcode = sub_code;
972 bgp_notify.data = NULL;
973 bgp_notify.length = length - BGP_MSG_NOTIFY_MIN_SIZE;
974
975 if (bgp_notify.length)
976 {
977 bgp_notify.data = XMALLOC (MTYPE_TMP, bgp_notify.length * 3);
978 for (i = 0; i < bgp_notify.length; i++)
979 if (first)
980 {
981 sprintf (c, " %02x", data[i]);
982 strcat (bgp_notify.data, c);
983 }
984 else
985 {
986 first = 1;
987 sprintf (c, "%02x", data[i]);
988 strcpy (bgp_notify.data, c);
989 }
990 }
991 bgp_notify_print (peer, &bgp_notify, "sending");
Daniel Walton363c9032015-10-21 06:42:54 -0700992
paul718e3742002-12-13 20:15:29 +0000993 if (bgp_notify.data)
Daniel Walton363c9032015-10-21 06:42:54 -0700994 {
995 XFREE (MTYPE_TMP, bgp_notify.data);
996 bgp_notify.data = NULL;
997 bgp_notify.length = 0;
998 }
paul718e3742002-12-13 20:15:29 +0000999 }
1000
1001 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001002 zlog_debug ("%s send message type %d, length (incl. header) %d",
paul718e3742002-12-13 20:15:29 +00001003 peer->host, BGP_MSG_NOTIFY, length);
1004
hassoe0701b72004-05-20 09:19:34 +00001005 /* peer reset cause */
1006 if (sub_code != BGP_NOTIFY_CEASE_CONFIG_CHANGE)
1007 {
1008 if (sub_code == BGP_NOTIFY_CEASE_ADMIN_RESET)
heasley1212dc12011-09-12 13:27:52 +04001009 {
1010 peer->last_reset = PEER_DOWN_USER_RESET;
1011 zlog_info ("Notification sent to neighbor %s: User reset", peer->host);
1012 }
hassoe0701b72004-05-20 09:19:34 +00001013 else if (sub_code == BGP_NOTIFY_CEASE_ADMIN_SHUTDOWN)
heasley1212dc12011-09-12 13:27:52 +04001014 {
1015 peer->last_reset = PEER_DOWN_USER_SHUTDOWN;
1016 zlog_info ("Notification sent to neighbor %s: shutdown", peer->host);
1017 }
hassoe0701b72004-05-20 09:19:34 +00001018 else
heasley1212dc12011-09-12 13:27:52 +04001019 {
1020 peer->last_reset = PEER_DOWN_NOTIFY_SEND;
1021 zlog_info ("Notification sent to neighbor %s: type %u/%u",
1022 peer->host, code, sub_code);
1023 }
hassoe0701b72004-05-20 09:19:34 +00001024 }
heasley1212dc12011-09-12 13:27:52 +04001025 else
1026 zlog_info ("Notification sent to neighbor %s: configuration change",
1027 peer->host);
hassoe0701b72004-05-20 09:19:34 +00001028
Denis Ovsienko7ccf5e52011-09-10 16:53:30 +04001029 /* Call immediately. */
paul718e3742002-12-13 20:15:29 +00001030 BGP_WRITE_OFF (peer->t_write);
1031
1032 bgp_write_notify (peer);
1033}
1034
1035/* Send BGP notify packet. */
1036void
1037bgp_notify_send (struct peer *peer, u_char code, u_char sub_code)
1038{
1039 bgp_notify_send_with_data (peer, code, sub_code, NULL, 0);
1040}
1041
paul718e3742002-12-13 20:15:29 +00001042/* Send route refresh message to the peer. */
1043void
1044bgp_route_refresh_send (struct peer *peer, afi_t afi, safi_t safi,
1045 u_char orf_type, u_char when_to_refresh, int remove)
1046{
1047 struct stream *s;
paul718e3742002-12-13 20:15:29 +00001048 int length;
1049 struct bgp_filter *filter;
1050 int orf_refresh = 0;
1051
Paul Jakma750e8142008-07-22 21:11:48 +00001052 if (DISABLE_BGP_ANNOUNCE)
1053 return;
paul718e3742002-12-13 20:15:29 +00001054
1055 filter = &peer->filter[afi][safi];
1056
1057 /* Adjust safi code. */
1058 if (safi == SAFI_MPLS_VPN)
Denis Ovsienko42e6d742011-07-14 12:36:19 +04001059 safi = SAFI_MPLS_LABELED_VPN;
paul718e3742002-12-13 20:15:29 +00001060
1061 s = stream_new (BGP_MAX_PACKET_SIZE);
1062
1063 /* Make BGP update packet. */
1064 if (CHECK_FLAG (peer->cap, PEER_CAP_REFRESH_NEW_RCV))
1065 bgp_packet_set_marker (s, BGP_MSG_ROUTE_REFRESH_NEW);
1066 else
1067 bgp_packet_set_marker (s, BGP_MSG_ROUTE_REFRESH_OLD);
1068
1069 /* Encode Route Refresh message. */
1070 stream_putw (s, afi);
1071 stream_putc (s, 0);
1072 stream_putc (s, safi);
1073
1074 if (orf_type == ORF_TYPE_PREFIX
1075 || orf_type == ORF_TYPE_PREFIX_OLD)
1076 if (remove || filter->plist[FILTER_IN].plist)
1077 {
1078 u_int16_t orf_len;
1079 unsigned long orfp;
1080
1081 orf_refresh = 1;
1082 stream_putc (s, when_to_refresh);
1083 stream_putc (s, orf_type);
paul9985f832005-02-09 15:51:56 +00001084 orfp = stream_get_endp (s);
paul718e3742002-12-13 20:15:29 +00001085 stream_putw (s, 0);
1086
1087 if (remove)
1088 {
1089 UNSET_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_ORF_PREFIX_SEND);
1090 stream_putc (s, ORF_COMMON_PART_REMOVE_ALL);
1091 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001092 zlog_debug ("%s sending REFRESH_REQ to remove ORF(%d) (%s) for afi/safi: %d/%d",
paul718e3742002-12-13 20:15:29 +00001093 peer->host, orf_type,
1094 (when_to_refresh == REFRESH_DEFER ? "defer" : "immediate"),
1095 afi, safi);
1096 }
1097 else
1098 {
1099 SET_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_ORF_PREFIX_SEND);
1100 prefix_bgp_orf_entry (s, filter->plist[FILTER_IN].plist,
1101 ORF_COMMON_PART_ADD, ORF_COMMON_PART_PERMIT,
1102 ORF_COMMON_PART_DENY);
1103 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001104 zlog_debug ("%s sending REFRESH_REQ with pfxlist ORF(%d) (%s) for afi/safi: %d/%d",
paul718e3742002-12-13 20:15:29 +00001105 peer->host, orf_type,
1106 (when_to_refresh == REFRESH_DEFER ? "defer" : "immediate"),
1107 afi, safi);
1108 }
1109
1110 /* Total ORF Entry Len. */
paul9985f832005-02-09 15:51:56 +00001111 orf_len = stream_get_endp (s) - orfp - 2;
paul718e3742002-12-13 20:15:29 +00001112 stream_putw_at (s, orfp, orf_len);
1113 }
1114
1115 /* Set packet size. */
1116 length = bgp_packet_set_size (s);
1117
1118 if (BGP_DEBUG (normal, NORMAL))
1119 {
1120 if (! orf_refresh)
ajs6b514742004-12-08 21:03:23 +00001121 zlog_debug ("%s sending REFRESH_REQ for afi/safi: %d/%d",
paul718e3742002-12-13 20:15:29 +00001122 peer->host, afi, safi);
ajs6b514742004-12-08 21:03:23 +00001123 zlog_debug ("%s send message type %d, length (incl. header) %d",
paul718e3742002-12-13 20:15:29 +00001124 peer->host, CHECK_FLAG (peer->cap, PEER_CAP_REFRESH_NEW_RCV) ?
1125 BGP_MSG_ROUTE_REFRESH_NEW : BGP_MSG_ROUTE_REFRESH_OLD, length);
1126 }
1127
paul718e3742002-12-13 20:15:29 +00001128 /* Add packet to the peer. */
Donald Sharpa752c3b2015-08-18 08:48:53 -04001129 bgp_packet_add (peer, s);
paul718e3742002-12-13 20:15:29 +00001130
pauleb821182004-05-01 08:44:08 +00001131 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +00001132}
1133
1134/* Send capability message to the peer. */
1135void
1136bgp_capability_send (struct peer *peer, afi_t afi, safi_t safi,
1137 int capability_code, int action)
1138{
1139 struct stream *s;
paul718e3742002-12-13 20:15:29 +00001140 int length;
1141
1142 /* Adjust safi code. */
1143 if (safi == SAFI_MPLS_VPN)
Denis Ovsienko42e6d742011-07-14 12:36:19 +04001144 safi = SAFI_MPLS_LABELED_VPN;
paul718e3742002-12-13 20:15:29 +00001145
1146 s = stream_new (BGP_MAX_PACKET_SIZE);
1147
1148 /* Make BGP update packet. */
1149 bgp_packet_set_marker (s, BGP_MSG_CAPABILITY);
1150
1151 /* Encode MP_EXT capability. */
1152 if (capability_code == CAPABILITY_CODE_MP)
1153 {
1154 stream_putc (s, action);
1155 stream_putc (s, CAPABILITY_CODE_MP);
1156 stream_putc (s, CAPABILITY_CODE_MP_LEN);
1157 stream_putw (s, afi);
1158 stream_putc (s, 0);
1159 stream_putc (s, safi);
1160
1161 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001162 zlog_debug ("%s sending CAPABILITY has %s MP_EXT CAP for afi/safi: %d/%d",
paul718e3742002-12-13 20:15:29 +00001163 peer->host, action == CAPABILITY_ACTION_SET ?
1164 "Advertising" : "Removing", afi, safi);
1165 }
1166
paul718e3742002-12-13 20:15:29 +00001167 /* Set packet size. */
1168 length = bgp_packet_set_size (s);
1169
paul718e3742002-12-13 20:15:29 +00001170
1171 /* Add packet to the peer. */
Donald Sharpa752c3b2015-08-18 08:48:53 -04001172 bgp_packet_add (peer, s);
paul718e3742002-12-13 20:15:29 +00001173
1174 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001175 zlog_debug ("%s send message type %d, length (incl. header) %d",
paul718e3742002-12-13 20:15:29 +00001176 peer->host, BGP_MSG_CAPABILITY, length);
1177
pauleb821182004-05-01 08:44:08 +00001178 BGP_WRITE_ON (peer->t_write, bgp_write, peer->fd);
paul718e3742002-12-13 20:15:29 +00001179}
David Lamparter6b0655a2014-06-04 06:53:35 +02001180
paul718e3742002-12-13 20:15:29 +00001181/* RFC1771 6.8 Connection collision detection. */
paul94f2b392005-06-28 12:44:16 +00001182static int
pauleb821182004-05-01 08:44:08 +00001183bgp_collision_detect (struct peer *new, struct in_addr remote_id)
paul718e3742002-12-13 20:15:29 +00001184{
pauleb821182004-05-01 08:44:08 +00001185 struct peer *peer;
paul1eb8ef22005-04-07 07:30:20 +00001186 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00001187 struct bgp *bgp;
1188
1189 bgp = bgp_get_default ();
1190 if (! bgp)
1191 return 0;
1192
1193 /* Upon receipt of an OPEN message, the local system must examine
1194 all of its connections that are in the OpenConfirm state. A BGP
1195 speaker may also examine connections in an OpenSent state if it
1196 knows the BGP Identifier of the peer by means outside of the
1197 protocol. If among these connections there is a connection to a
1198 remote BGP speaker whose BGP Identifier equals the one in the
1199 OPEN message, then the local system performs the following
1200 collision resolution procedure: */
1201
paul1eb8ef22005-04-07 07:30:20 +00001202 for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer))
paul718e3742002-12-13 20:15:29 +00001203 {
1204 /* Under OpenConfirm status, local peer structure already hold
1205 remote router ID. */
pauleb821182004-05-01 08:44:08 +00001206
1207 if (peer != new
1208 && (peer->status == OpenConfirm || peer->status == OpenSent)
1209 && sockunion_same (&peer->su, &new->su))
1210 {
paul718e3742002-12-13 20:15:29 +00001211 /* 1. The BGP Identifier of the local system is compared to
1212 the BGP Identifier of the remote system (as specified in
1213 the OPEN message). */
1214
1215 if (ntohl (peer->local_id.s_addr) < ntohl (remote_id.s_addr))
1216 {
1217 /* 2. If the value of the local BGP Identifier is less
1218 than the remote one, the local system closes BGP
1219 connection that already exists (the one that is
1220 already in the OpenConfirm state), and accepts BGP
1221 connection initiated by the remote system. */
1222
pauleb821182004-05-01 08:44:08 +00001223 if (peer->fd >= 0)
hassoe0701b72004-05-20 09:19:34 +00001224 bgp_notify_send (peer, BGP_NOTIFY_CEASE, BGP_NOTIFY_CEASE_COLLISION_RESOLUTION);
paul718e3742002-12-13 20:15:29 +00001225 return 1;
1226 }
1227 else
1228 {
1229 /* 3. Otherwise, the local system closes newly created
1230 BGP connection (the one associated with the newly
1231 received OPEN message), and continues to use the
1232 existing one (the one that is already in the
1233 OpenConfirm state). */
1234
pauleb821182004-05-01 08:44:08 +00001235 if (new->fd >= 0)
paulf5ba3872004-07-09 12:11:31 +00001236 bgp_notify_send (new, BGP_NOTIFY_CEASE,
1237 BGP_NOTIFY_CEASE_COLLISION_RESOLUTION);
paul718e3742002-12-13 20:15:29 +00001238 return -1;
1239 }
pauleb821182004-05-01 08:44:08 +00001240 }
1241 }
paul718e3742002-12-13 20:15:29 +00001242 return 0;
1243}
1244
paul94f2b392005-06-28 12:44:16 +00001245static int
paul718e3742002-12-13 20:15:29 +00001246bgp_open_receive (struct peer *peer, bgp_size_t size)
1247{
1248 int ret;
1249 u_char version;
1250 u_char optlen;
1251 u_int16_t holdtime;
1252 u_int16_t send_holdtime;
1253 as_t remote_as;
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00001254 as_t as4 = 0;
paul718e3742002-12-13 20:15:29 +00001255 struct peer *realpeer;
1256 struct in_addr remote_id;
Avneesh Sachdev3b381c32012-02-19 10:19:52 -08001257 int mp_capability;
paul5228ad22004-06-04 17:58:18 +00001258 u_int8_t notify_data_remote_as[2];
1259 u_int8_t notify_data_remote_id[4];
Daniel Waltonc6969872015-05-19 18:03:43 -07001260 u_int16_t *holdtime_ptr;
paul718e3742002-12-13 20:15:29 +00001261
1262 realpeer = NULL;
1263
1264 /* Parse open packet. */
1265 version = stream_getc (peer->ibuf);
1266 memcpy (notify_data_remote_as, stream_pnt (peer->ibuf), 2);
1267 remote_as = stream_getw (peer->ibuf);
Daniel Waltonc6969872015-05-19 18:03:43 -07001268 holdtime_ptr = (u_int16_t *)stream_pnt (peer->ibuf);
paul718e3742002-12-13 20:15:29 +00001269 holdtime = stream_getw (peer->ibuf);
1270 memcpy (notify_data_remote_id, stream_pnt (peer->ibuf), 4);
1271 remote_id.s_addr = stream_get_ipv4 (peer->ibuf);
1272
1273 /* Receive OPEN message log */
1274 if (BGP_DEBUG (normal, NORMAL))
Denis Ovsienkoaea339f2009-04-30 17:16:22 +04001275 zlog_debug ("%s rcv OPEN, version %d, remote-as (in open) %u,"
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00001276 " holdtime %d, id %s",
1277 peer->host, version, remote_as, holdtime,
1278 inet_ntoa (remote_id));
1279
1280 /* BEGIN to read the capability here, but dont do it yet */
Avneesh Sachdev3b381c32012-02-19 10:19:52 -08001281 mp_capability = 0;
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00001282 optlen = stream_getc (peer->ibuf);
1283
1284 if (optlen != 0)
1285 {
1286 /* We need the as4 capability value *right now* because
1287 * if it is there, we have not got the remote_as yet, and without
1288 * that we do not know which peer is connecting to us now.
1289 */
1290 as4 = peek_for_as4_capability (peer, optlen);
1291 }
1292
1293 /* Just in case we have a silly peer who sends AS4 capability set to 0 */
1294 if (CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV) && !as4)
1295 {
1296 zlog_err ("%s bad OPEN, got AS4 capability, but AS4 set to 0",
1297 peer->host);
1298 bgp_notify_send (peer, BGP_NOTIFY_OPEN_ERR,
1299 BGP_NOTIFY_OPEN_BAD_PEER_AS);
1300 return -1;
1301 }
1302
1303 if (remote_as == BGP_AS_TRANS)
1304 {
1305 /* Take the AS4 from the capability. We must have received the
1306 * capability now! Otherwise we have a asn16 peer who uses
1307 * BGP_AS_TRANS, for some unknown reason.
1308 */
1309 if (as4 == BGP_AS_TRANS)
1310 {
1311 zlog_err ("%s [AS4] NEW speaker using AS_TRANS for AS4, not allowed",
1312 peer->host);
1313 bgp_notify_send (peer, BGP_NOTIFY_OPEN_ERR,
1314 BGP_NOTIFY_OPEN_BAD_PEER_AS);
1315 return -1;
1316 }
1317
1318 if (!as4 && BGP_DEBUG (as4, AS4))
1319 zlog_debug ("%s [AS4] OPEN remote_as is AS_TRANS, but no AS4."
1320 " Odd, but proceeding.", peer->host);
1321 else if (as4 < BGP_AS_MAX && BGP_DEBUG (as4, AS4))
Paul Jakma0df7c912008-07-21 21:02:49 +00001322 zlog_debug ("%s [AS4] OPEN remote_as is AS_TRANS, but AS4 (%u) fits "
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00001323 "in 2-bytes, very odd peer.", peer->host, as4);
1324 if (as4)
1325 remote_as = as4;
1326 }
1327 else
1328 {
1329 /* We may have a partner with AS4 who has an asno < BGP_AS_MAX */
1330 /* If we have got the capability, peer->as4cap must match remote_as */
1331 if (CHECK_FLAG (peer->cap, PEER_CAP_AS4_RCV)
1332 && as4 != remote_as)
1333 {
1334 /* raise error, log this, close session */
1335 zlog_err ("%s bad OPEN, got AS4 capability, but remote_as %u"
1336 " mismatch with 16bit 'myasn' %u in open",
1337 peer->host, as4, remote_as);
1338 bgp_notify_send (peer, BGP_NOTIFY_OPEN_ERR,
1339 BGP_NOTIFY_OPEN_BAD_PEER_AS);
1340 return -1;
1341 }
1342 }
1343
paul718e3742002-12-13 20:15:29 +00001344 /* Lookup peer from Open packet. */
1345 if (CHECK_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER))
1346 {
1347 int as = 0;
1348
1349 realpeer = peer_lookup_with_open (&peer->su, remote_as, &remote_id, &as);
1350
1351 if (! realpeer)
1352 {
1353 /* Peer's source IP address is check in bgp_accept(), so this
1354 must be AS number mismatch or remote-id configuration
1355 mismatch. */
1356 if (as)
1357 {
1358 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001359 zlog_debug ("%s bad OPEN, wrong router identifier %s",
1360 peer->host, inet_ntoa (remote_id));
1361 bgp_notify_send_with_data (peer, BGP_NOTIFY_OPEN_ERR,
1362 BGP_NOTIFY_OPEN_BAD_BGP_IDENT,
1363 notify_data_remote_id, 4);
paul718e3742002-12-13 20:15:29 +00001364 }
1365 else
1366 {
1367 if (BGP_DEBUG (normal, NORMAL))
Denis Ovsienkoaea339f2009-04-30 17:16:22 +04001368 zlog_debug ("%s bad OPEN, remote AS is %u, expected %u",
ajs6b514742004-12-08 21:03:23 +00001369 peer->host, remote_as, peer->as);
1370 bgp_notify_send_with_data (peer, BGP_NOTIFY_OPEN_ERR,
1371 BGP_NOTIFY_OPEN_BAD_PEER_AS,
1372 notify_data_remote_as, 2);
paul718e3742002-12-13 20:15:29 +00001373 }
1374 return -1;
1375 }
1376 }
1377
1378 /* When collision is detected and this peer is closed. Retrun
1379 immidiately. */
1380 ret = bgp_collision_detect (peer, remote_id);
1381 if (ret < 0)
1382 return ret;
1383
pauleb821182004-05-01 08:44:08 +00001384 /* Hack part. */
1385 if (CHECK_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER))
1386 {
hasso93406d82005-02-02 14:40:33 +00001387 if (realpeer->status == Established
1388 && CHECK_FLAG (realpeer->sflags, PEER_STATUS_NSF_MODE))
1389 {
1390 realpeer->last_reset = PEER_DOWN_NSF_CLOSE_SESSION;
1391 SET_FLAG (realpeer->sflags, PEER_STATUS_NSF_WAIT);
1392 }
1393 else if (ret == 0 && realpeer->status != Active
1394 && realpeer->status != OpenSent
Paul Jakma6e199262008-09-09 17:14:33 +01001395 && realpeer->status != OpenConfirm
1396 && realpeer->status != Connect)
pauleb821182004-05-01 08:44:08 +00001397 {
Paul Jakma2b2fc562008-09-06 13:09:35 +01001398 /* XXX: This is an awful problem..
1399 *
1400 * According to the RFC we should just let this connection (of the
1401 * accepted 'peer') continue on to Established if the other
1402 * connection (the 'realpeer' one) is in state Connect, and deal
1403 * with the more larval FSM as/when it gets far enough to receive
1404 * an Open. We don't do that though, we instead close the (more
1405 * developed) accepted connection.
1406 *
1407 * This means there's a race, which if hit, can loop:
1408 *
1409 * FSM for A FSM for B
1410 * realpeer accept-peer realpeer accept-peer
1411 *
1412 * Connect Connect
1413 * Active
1414 * OpenSent OpenSent
1415 * <arrive here,
1416 * Notify, delete>
1417 * Idle Active
1418 * OpenSent OpenSent
1419 * <arrive here,
1420 * Notify, delete>
1421 * Idle
1422 * <wait> <wait>
1423 * Connect Connect
1424 *
1425 *
1426 * If both sides are Quagga, they're almost certain to wait for
1427 * the same amount of time of course (which doesn't preclude other
1428 * implementations also waiting for same time). The race is
1429 * exacerbated by high-latency (in bgpd and/or the network).
1430 *
1431 * The reason we do this is because our FSM is tied to our peer
1432 * structure, which carries our configuration information, etc.
1433 * I.e. we can't let the accepted-peer FSM continue on as it is,
1434 * cause it's not associated with any actual peer configuration -
1435 * it's just a dummy.
1436 *
1437 * It's possible we could hack-fix this by just bgp_stop'ing the
1438 * realpeer and continueing on with the 'transfer FSM' below.
1439 * Ideally, we need to seperate FSMs from struct peer.
1440 *
1441 * Setting one side to passive avoids the race, as a workaround.
1442 */
pauleb821182004-05-01 08:44:08 +00001443 if (BGP_DEBUG (events, EVENTS))
hasso93406d82005-02-02 14:40:33 +00001444 zlog_debug ("%s peer status is %s close connection",
1445 realpeer->host, LOOKUP (bgp_status_msg,
1446 realpeer->status));
1447 bgp_notify_send (peer, BGP_NOTIFY_CEASE,
1448 BGP_NOTIFY_CEASE_CONNECT_REJECT);
1449
pauleb821182004-05-01 08:44:08 +00001450 return -1;
1451 }
1452
1453 if (BGP_DEBUG (events, EVENTS))
Paul Jakma6e199262008-09-09 17:14:33 +01001454 zlog_debug ("%s [Event] Transfer accept BGP peer to real (state %s)",
1455 peer->host,
1456 LOOKUP (bgp_status_msg, realpeer->status));
pauleb821182004-05-01 08:44:08 +00001457
1458 bgp_stop (realpeer);
1459
1460 /* Transfer file descriptor. */
1461 realpeer->fd = peer->fd;
1462 peer->fd = -1;
1463
1464 /* Transfer input buffer. */
1465 stream_free (realpeer->ibuf);
1466 realpeer->ibuf = peer->ibuf;
1467 realpeer->packet_size = peer->packet_size;
1468 peer->ibuf = NULL;
1469
1470 /* Transfer status. */
1471 realpeer->status = peer->status;
1472 bgp_stop (peer);
paul200df112005-06-01 11:17:05 +00001473
pauleb821182004-05-01 08:44:08 +00001474 /* peer pointer change. Open packet send to neighbor. */
1475 peer = realpeer;
1476 bgp_open_send (peer);
1477 if (peer->fd < 0)
1478 {
1479 zlog_err ("bgp_open_receive peer's fd is negative value %d",
1480 peer->fd);
1481 return -1;
1482 }
1483 BGP_READ_ON (peer->t_read, bgp_read, peer->fd);
1484 }
1485
paul718e3742002-12-13 20:15:29 +00001486 /* remote router-id check. */
1487 if (remote_id.s_addr == 0
Denis Ovsienko733cd9e2011-12-17 19:39:30 +04001488 || IPV4_CLASS_DE (ntohl (remote_id.s_addr))
paul718e3742002-12-13 20:15:29 +00001489 || ntohl (peer->local_id.s_addr) == ntohl (remote_id.s_addr))
1490 {
1491 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001492 zlog_debug ("%s bad OPEN, wrong router identifier %s",
paul718e3742002-12-13 20:15:29 +00001493 peer->host, inet_ntoa (remote_id));
1494 bgp_notify_send_with_data (peer,
1495 BGP_NOTIFY_OPEN_ERR,
1496 BGP_NOTIFY_OPEN_BAD_BGP_IDENT,
1497 notify_data_remote_id, 4);
1498 return -1;
1499 }
1500
1501 /* Set remote router-id */
1502 peer->remote_id = remote_id;
1503
1504 /* Peer BGP version check. */
1505 if (version != BGP_VERSION_4)
1506 {
Leonid Rosenboima689e6a2012-12-07 21:25:00 +00001507 u_int16_t maxver = htons(BGP_VERSION_4);
1508 /* XXX this reply may not be correct if version < 4 XXX */
paul718e3742002-12-13 20:15:29 +00001509 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001510 zlog_debug ("%s bad protocol version, remote requested %d, local request %d",
paul718e3742002-12-13 20:15:29 +00001511 peer->host, version, BGP_VERSION_4);
Leonid Rosenboima689e6a2012-12-07 21:25:00 +00001512 /* Data must be in network byte order here */
paul718e3742002-12-13 20:15:29 +00001513 bgp_notify_send_with_data (peer,
1514 BGP_NOTIFY_OPEN_ERR,
1515 BGP_NOTIFY_OPEN_UNSUP_VERSION,
Leonid Rosenboima689e6a2012-12-07 21:25:00 +00001516 (u_int8_t *) &maxver, 2);
paul718e3742002-12-13 20:15:29 +00001517 return -1;
1518 }
1519
1520 /* Check neighbor as number. */
1521 if (remote_as != peer->as)
1522 {
1523 if (BGP_DEBUG (normal, NORMAL))
Denis Ovsienkoaea339f2009-04-30 17:16:22 +04001524 zlog_debug ("%s bad OPEN, remote AS is %u, expected %u",
paul718e3742002-12-13 20:15:29 +00001525 peer->host, remote_as, peer->as);
1526 bgp_notify_send_with_data (peer,
1527 BGP_NOTIFY_OPEN_ERR,
1528 BGP_NOTIFY_OPEN_BAD_PEER_AS,
1529 notify_data_remote_as, 2);
1530 return -1;
1531 }
1532
1533 /* From the rfc: Upon receipt of an OPEN message, a BGP speaker MUST
1534 calculate the value of the Hold Timer by using the smaller of its
1535 configured Hold Time and the Hold Time received in the OPEN message.
1536 The Hold Time MUST be either zero or at least three seconds. An
1537 implementation may reject connections on the basis of the Hold Time. */
1538
1539 if (holdtime < 3 && holdtime != 0)
1540 {
Daniel Waltonc6969872015-05-19 18:03:43 -07001541 bgp_notify_send_with_data (peer,
1542 BGP_NOTIFY_OPEN_ERR,
1543 BGP_NOTIFY_OPEN_UNACEP_HOLDTIME,
1544 (u_int8_t *)holdtime_ptr, 2);
paul718e3742002-12-13 20:15:29 +00001545 return -1;
1546 }
1547
1548 /* From the rfc: A reasonable maximum time between KEEPALIVE messages
1549 would be one third of the Hold Time interval. KEEPALIVE messages
1550 MUST NOT be sent more frequently than one per second. An
1551 implementation MAY adjust the rate at which it sends KEEPALIVE
1552 messages as a function of the Hold Time interval. */
1553
1554 if (CHECK_FLAG (peer->config, PEER_CONFIG_TIMER))
1555 send_holdtime = peer->holdtime;
1556 else
1557 send_holdtime = peer->bgp->default_holdtime;
1558
1559 if (holdtime < send_holdtime)
1560 peer->v_holdtime = holdtime;
1561 else
1562 peer->v_holdtime = send_holdtime;
1563
1564 peer->v_keepalive = peer->v_holdtime / 3;
1565
1566 /* Open option part parse. */
paul718e3742002-12-13 20:15:29 +00001567 if (optlen != 0)
1568 {
Avneesh Sachdev3b381c32012-02-19 10:19:52 -08001569 if ((ret = bgp_open_option_parse (peer, optlen, &mp_capability)) < 0)
Paul Jakma58617392012-01-09 20:59:26 +00001570 {
1571 bgp_notify_send (peer,
1572 BGP_NOTIFY_OPEN_ERR,
Paul Jakma68ec4242015-11-25 17:14:34 +00001573 BGP_NOTIFY_OPEN_UNSPECIFIC);
Paul Jakma58617392012-01-09 20:59:26 +00001574 return ret;
1575 }
paul718e3742002-12-13 20:15:29 +00001576 }
1577 else
1578 {
1579 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00001580 zlog_debug ("%s rcvd OPEN w/ OPTION parameter len: 0",
paul718e3742002-12-13 20:15:29 +00001581 peer->host);
1582 }
1583
Avneesh Sachdev3b381c32012-02-19 10:19:52 -08001584 /*
1585 * Assume that the peer supports the locally configured set of
1586 * AFI/SAFIs if the peer did not send us any Mulitiprotocol
1587 * capabilities, or if 'override-capability' is configured.
1588 */
1589 if (! mp_capability ||
1590 CHECK_FLAG (peer->flags, PEER_FLAG_OVERRIDE_CAPABILITY))
paul718e3742002-12-13 20:15:29 +00001591 {
1592 peer->afc_nego[AFI_IP][SAFI_UNICAST] = peer->afc[AFI_IP][SAFI_UNICAST];
1593 peer->afc_nego[AFI_IP][SAFI_MULTICAST] = peer->afc[AFI_IP][SAFI_MULTICAST];
1594 peer->afc_nego[AFI_IP6][SAFI_UNICAST] = peer->afc[AFI_IP6][SAFI_UNICAST];
1595 peer->afc_nego[AFI_IP6][SAFI_MULTICAST] = peer->afc[AFI_IP6][SAFI_MULTICAST];
1596 }
1597
1598 /* Get sockname. */
1599 bgp_getsockname (peer);
Timo Teräs0edba8b2015-10-22 11:35:17 +03001600 peer->rtt = sockopt_tcp_rtt (peer->fd);
paul718e3742002-12-13 20:15:29 +00001601
1602 BGP_EVENT_ADD (peer, Receive_OPEN_message);
1603
1604 peer->packet_size = 0;
1605 if (peer->ibuf)
1606 stream_reset (peer->ibuf);
1607
1608 return 0;
1609}
1610
Paul Jakma518a4b72016-02-04 13:27:04 +00001611/* Frontend for NLRI parsing, to fan-out to AFI/SAFI specific parsers */
1612int
1613bgp_nlri_parse (struct peer *peer, struct attr *attr, struct bgp_nlri *packet)
1614{
1615 switch (packet->safi)
1616 {
1617 case SAFI_UNICAST:
1618 case SAFI_MULTICAST:
1619 return bgp_nlri_parse_ip (peer, attr, packet);
1620 case SAFI_MPLS_VPN:
1621 case SAFI_MPLS_LABELED_VPN:
1622 return bgp_nlri_parse_vpn (peer, attr, packet);
1623 case SAFI_ENCAP:
1624 return bgp_nlri_parse_encap (peer, attr, packet);
1625 }
1626 return -1;
1627}
1628
paul718e3742002-12-13 20:15:29 +00001629/* Parse BGP Update packet and make attribute object. */
paul94f2b392005-06-28 12:44:16 +00001630static int
paul718e3742002-12-13 20:15:29 +00001631bgp_update_receive (struct peer *peer, bgp_size_t size)
1632{
Paul Jakma518a4b72016-02-04 13:27:04 +00001633 int ret, nlri_ret;
paul718e3742002-12-13 20:15:29 +00001634 u_char *end;
1635 struct stream *s;
1636 struct attr attr;
Jorge Boncompte [DTI2]489d0052012-05-07 16:53:03 +00001637 struct attr_extra extra;
paul718e3742002-12-13 20:15:29 +00001638 bgp_size_t attribute_len;
1639 bgp_size_t update_len;
1640 bgp_size_t withdraw_len;
Paul Jakma518a4b72016-02-04 13:27:04 +00001641 int i;
1642
1643 enum NLRI_TYPES {
1644 NLRI_UPDATE,
1645 NLRI_WITHDRAW,
1646 NLRI_MP_UPDATE,
1647 NLRI_MP_WITHDRAW,
1648 NLRI_TYPE_MAX,
1649 };
1650 struct bgp_nlri nlris[NLRI_TYPE_MAX];
paul718e3742002-12-13 20:15:29 +00001651
1652 /* Status must be Established. */
1653 if (peer->status != Established)
1654 {
1655 zlog_err ("%s [FSM] Update packet received under status %s",
1656 peer->host, LOOKUP (bgp_status_msg, peer->status));
1657 bgp_notify_send (peer, BGP_NOTIFY_FSM_ERR, 0);
1658 return -1;
1659 }
1660
1661 /* Set initial values. */
1662 memset (&attr, 0, sizeof (struct attr));
Jorge Boncompte [DTI2]489d0052012-05-07 16:53:03 +00001663 memset (&extra, 0, sizeof (struct attr_extra));
Paul Jakma518a4b72016-02-04 13:27:04 +00001664 memset (&nlris, 0, sizeof nlris);
Paul Jakma3b847ef2016-04-22 12:48:49 +01001665
Jorge Boncompte [DTI2]489d0052012-05-07 16:53:03 +00001666 attr.extra = &extra;
paul718e3742002-12-13 20:15:29 +00001667
1668 s = peer->ibuf;
1669 end = stream_pnt (s) + size;
1670
1671 /* RFC1771 6.3 If the Unfeasible Routes Length or Total Attribute
1672 Length is too large (i.e., if Unfeasible Routes Length + Total
1673 Attribute Length + 23 exceeds the message Length), then the Error
1674 Subcode is set to Malformed Attribute List. */
1675 if (stream_pnt (s) + 2 > end)
1676 {
1677 zlog_err ("%s [Error] Update packet error"
1678 " (packet length is short for unfeasible length)",
1679 peer->host);
1680 bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR,
1681 BGP_NOTIFY_UPDATE_MAL_ATTR);
1682 return -1;
1683 }
1684
1685 /* Unfeasible Route Length. */
1686 withdraw_len = stream_getw (s);
1687
1688 /* Unfeasible Route Length check. */
1689 if (stream_pnt (s) + withdraw_len > end)
1690 {
1691 zlog_err ("%s [Error] Update packet error"
1692 " (packet unfeasible length overflow %d)",
1693 peer->host, withdraw_len);
1694 bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR,
1695 BGP_NOTIFY_UPDATE_MAL_ATTR);
1696 return -1;
1697 }
1698
1699 /* Unfeasible Route packet format check. */
1700 if (withdraw_len > 0)
1701 {
Paul Jakma518a4b72016-02-04 13:27:04 +00001702 nlris[NLRI_WITHDRAW].afi = AFI_IP;
1703 nlris[NLRI_WITHDRAW].safi = SAFI_UNICAST;
1704 nlris[NLRI_WITHDRAW].nlri = stream_pnt (s);
1705 nlris[NLRI_WITHDRAW].length = withdraw_len;
1706
paul718e3742002-12-13 20:15:29 +00001707 if (BGP_DEBUG (packet, PACKET_RECV))
ajs6b514742004-12-08 21:03:23 +00001708 zlog_debug ("%s [Update:RECV] Unfeasible NLRI received", peer->host);
paul718e3742002-12-13 20:15:29 +00001709
paul9985f832005-02-09 15:51:56 +00001710 stream_forward_getp (s, withdraw_len);
paul718e3742002-12-13 20:15:29 +00001711 }
1712
1713 /* Attribute total length check. */
1714 if (stream_pnt (s) + 2 > end)
1715 {
1716 zlog_warn ("%s [Error] Packet Error"
1717 " (update packet is short for attribute length)",
1718 peer->host);
1719 bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR,
1720 BGP_NOTIFY_UPDATE_MAL_ATTR);
1721 return -1;
1722 }
1723
1724 /* Fetch attribute total length. */
1725 attribute_len = stream_getw (s);
1726
1727 /* Attribute length check. */
1728 if (stream_pnt (s) + attribute_len > end)
1729 {
1730 zlog_warn ("%s [Error] Packet Error"
1731 " (update packet attribute length overflow %d)",
1732 peer->host, attribute_len);
1733 bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR,
1734 BGP_NOTIFY_UPDATE_MAL_ATTR);
1735 return -1;
1736 }
Paul Jakmab881c702010-11-23 16:35:42 +00001737
1738 /* Certain attribute parsing errors should not be considered bad enough
1739 * to reset the session for, most particularly any partial/optional
1740 * attributes that have 'tunneled' over speakers that don't understand
1741 * them. Instead we withdraw only the prefix concerned.
1742 *
1743 * Complicates the flow a little though..
1744 */
1745 bgp_attr_parse_ret_t attr_parse_ret = BGP_ATTR_PARSE_PROCEED;
1746 /* This define morphs the update case into a withdraw when lower levels
1747 * have signalled an error condition where this is best.
1748 */
1749#define NLRI_ATTR_ARG (attr_parse_ret != BGP_ATTR_PARSE_WITHDRAW ? &attr : NULL)
paul718e3742002-12-13 20:15:29 +00001750
1751 /* Parse attribute when it exists. */
1752 if (attribute_len)
1753 {
Paul Jakmab881c702010-11-23 16:35:42 +00001754 attr_parse_ret = bgp_attr_parse (peer, &attr, attribute_len,
Paul Jakma518a4b72016-02-04 13:27:04 +00001755 &nlris[NLRI_MP_UPDATE], &nlris[NLRI_MP_WITHDRAW]);
Paul Jakmab881c702010-11-23 16:35:42 +00001756 if (attr_parse_ret == BGP_ATTR_PARSE_ERROR)
David Lamparterf80f8382014-06-04 01:00:51 +02001757 {
1758 bgp_attr_unintern_sub (&attr);
Lou Berger050defe2016-01-12 13:41:59 -05001759 bgp_attr_flush (&attr);
David Lamparterf80f8382014-06-04 01:00:51 +02001760 return -1;
1761 }
paul718e3742002-12-13 20:15:29 +00001762 }
Paul Jakmab881c702010-11-23 16:35:42 +00001763
paul718e3742002-12-13 20:15:29 +00001764 /* Logging the attribute. */
Paul Jakmab881c702010-11-23 16:35:42 +00001765 if (attr_parse_ret == BGP_ATTR_PARSE_WITHDRAW
1766 || BGP_DEBUG (update, UPDATE_IN))
paul718e3742002-12-13 20:15:29 +00001767 {
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +00001768 char attrstr[BUFSIZ];
1769 attrstr[0] = '\0';
1770
paule01f9cb2004-07-09 17:48:53 +00001771 ret= bgp_dump_attr (peer, &attr, attrstr, BUFSIZ);
Paul Jakmab881c702010-11-23 16:35:42 +00001772 int lvl = (attr_parse_ret == BGP_ATTR_PARSE_WITHDRAW)
1773 ? LOG_ERR : LOG_DEBUG;
1774
1775 if (attr_parse_ret == BGP_ATTR_PARSE_WITHDRAW)
1776 zlog (peer->log, LOG_ERR,
1777 "%s rcvd UPDATE with errors in attr(s)!! Withdrawing route.",
1778 peer->host);
paule01f9cb2004-07-09 17:48:53 +00001779
1780 if (ret)
Paul Jakmab881c702010-11-23 16:35:42 +00001781 zlog (peer->log, lvl, "%s rcvd UPDATE w/ attr: %s",
paule01f9cb2004-07-09 17:48:53 +00001782 peer->host, attrstr);
paul718e3742002-12-13 20:15:29 +00001783 }
Paul Jakmab881c702010-11-23 16:35:42 +00001784
paul718e3742002-12-13 20:15:29 +00001785 /* Network Layer Reachability Information. */
1786 update_len = end - stream_pnt (s);
1787
1788 if (update_len)
1789 {
Paul Jakma18ab08b2016-01-27 16:37:33 +00001790 /* Set NLRI portion to structure. */
Paul Jakma518a4b72016-02-04 13:27:04 +00001791 nlris[NLRI_UPDATE].afi = AFI_IP;
1792 nlris[NLRI_UPDATE].safi = SAFI_UNICAST;
1793 nlris[NLRI_UPDATE].nlri = stream_pnt (s);
1794 nlris[NLRI_UPDATE].length = update_len;
Paul Jakma18ab08b2016-01-27 16:37:33 +00001795
paul9985f832005-02-09 15:51:56 +00001796 stream_forward_getp (s, update_len);
paul718e3742002-12-13 20:15:29 +00001797 }
Paul Jakma518a4b72016-02-04 13:27:04 +00001798
1799 /* Parse any given NLRIs */
1800 for (i = NLRI_UPDATE; i < NLRI_TYPE_MAX; i++)
paul718e3742002-12-13 20:15:29 +00001801 {
Paul Jakma3b847ef2016-04-22 12:48:49 +01001802 if (!nlris[i].nlri) continue;
1803
Paul Jakma518a4b72016-02-04 13:27:04 +00001804 /* We use afi and safi as indices into tables and what not. It would
1805 * be impossible, at this time, to support unknown afi/safis. And
1806 * anyway, the peer needs to be configured to enable the afi/safi
1807 * explicitly which requires UI support.
1808 *
1809 * Ignore unknown afi/safi NLRIs.
1810 *
1811 * Note: this means nlri[x].afi/safi still can not be trusted for
1812 * indexing later in this function!
1813 *
1814 * Note2: This will also remap the wire code-point for VPN safi to the
1815 * internal safi_t point, as needs be.
1816 */
1817 if (!bgp_afi_safi_valid_indices (nlris[i].afi, &nlris[i].safi))
1818 {
1819 plog_info (peer->log,
1820 "%s [Info] UPDATE with unsupported AFI/SAFI %u/%u",
1821 peer->host, nlris[i].afi, nlris[i].safi);
1822 continue;
1823 }
1824
1825 /* NLRI is processed only when the peer is configured specific
1826 Address Family and Subsequent Address Family. */
1827 if (!peer->afc[nlris[i].afi][nlris[i].safi])
1828 {
1829 plog_info (peer->log,
1830 "%s [Info] UPDATE for non-enabled AFI/SAFI %u/%u",
1831 peer->host, nlris[i].afi, nlris[i].safi);
1832 continue;
1833 }
1834
1835 /* EoR handled later */
1836 if (nlris[i].length == 0)
1837 continue;
1838
1839 switch (i)
1840 {
1841 case NLRI_UPDATE:
1842 case NLRI_MP_UPDATE:
1843 nlri_ret = bgp_nlri_parse (peer, NLRI_ATTR_ARG, &nlris[i]);
1844 break;
1845 case NLRI_WITHDRAW:
1846 case NLRI_MP_WITHDRAW:
1847 nlri_ret = bgp_nlri_parse (peer, NULL, &nlris[i]);
1848 }
1849
1850 if (nlri_ret < 0)
1851 {
1852 plog_err (peer->log,
1853 "%s [Error] Error parsing NLRI", peer->host);
1854 if (peer->status == Established)
1855 bgp_notify_send (peer, BGP_NOTIFY_UPDATE_ERR,
1856 i <= NLRI_WITHDRAW
1857 ? BGP_NOTIFY_UPDATE_INVAL_NETWORK
1858 : BGP_NOTIFY_UPDATE_OPT_ATTR_ERR);
1859 bgp_attr_unintern_sub (&attr);
1860 return -1;
1861 }
1862 }
1863
1864 /* EoR checks.
1865 *
1866 * Non-MP IPv4/Unicast EoR is a completely empty UPDATE
1867 * and MP EoR should have only an empty MP_UNREACH
1868 */
1869 if (!update_len && !withdraw_len
1870 && nlris[NLRI_MP_UPDATE].length == 0)
1871 {
1872 afi_t afi = 0;
1873 safi_t safi;
1874
1875 /* Non-MP IPv4/Unicast is a completely empty UPDATE - already
1876 * checked update and withdraw NLRI lengths are 0.
1877 */
1878 if (!attribute_len)
1879 {
1880 afi = AFI_IP;
1881 safi = SAFI_UNICAST;
1882 }
1883 /* otherwise MP AFI/SAFI is an empty update, other than an empty
1884 * MP_UNREACH_NLRI attr (with an AFI/SAFI we recognise).
1885 */
1886 else if (attr.flag == BGP_ATTR_MP_UNREACH_NLRI
1887 && nlris[NLRI_MP_WITHDRAW].length == 0
1888 && bgp_afi_safi_valid_indices (nlris[NLRI_MP_WITHDRAW].afi,
1889 &nlris[NLRI_MP_WITHDRAW].safi))
1890 {
1891 afi = nlris[NLRI_MP_WITHDRAW].afi;
1892 safi = nlris[NLRI_MP_WITHDRAW].safi;
1893 }
1894
1895 if (afi && peer->afc[afi][safi])
1896 {
paule01f9cb2004-07-09 17:48:53 +00001897 /* End-of-RIB received */
Paul Jakma518a4b72016-02-04 13:27:04 +00001898 SET_FLAG (peer->af_sflags[afi][safi],
hasso93406d82005-02-02 14:40:33 +00001899 PEER_STATUS_EOR_RECEIVED);
paule01f9cb2004-07-09 17:48:53 +00001900
hasso93406d82005-02-02 14:40:33 +00001901 /* NSF delete stale route */
Paul Jakma518a4b72016-02-04 13:27:04 +00001902 if (peer->nsf[afi][safi])
1903 bgp_clear_stale_route (peer, afi, safi);
hasso93406d82005-02-02 14:40:33 +00001904
1905 if (BGP_DEBUG (normal, NORMAL))
Paul Jakma518a4b72016-02-04 13:27:04 +00001906 zlog (peer->log, LOG_DEBUG, "rcvd End-of-RIB for %s from %s",
1907 peer->host, afi_safi_print (afi, safi));
1908 }
paul718e3742002-12-13 20:15:29 +00001909 }
Paul Jakma518a4b72016-02-04 13:27:04 +00001910
paul718e3742002-12-13 20:15:29 +00001911 /* Everything is done. We unintern temporary structures which
1912 interned in bgp_attr_parse(). */
Paul Jakmab881c702010-11-23 16:35:42 +00001913 bgp_attr_unintern_sub (&attr);
Lou Berger050defe2016-01-12 13:41:59 -05001914 bgp_attr_flush (&attr);
Jorge Boncompte [DTI2]489d0052012-05-07 16:53:03 +00001915
paul718e3742002-12-13 20:15:29 +00001916 /* If peering is stopped due to some reason, do not generate BGP
1917 event. */
1918 if (peer->status != Established)
1919 return 0;
1920
1921 /* Increment packet counter. */
1922 peer->update_in++;
Stephen Hemminger65957882010-01-15 16:22:10 +03001923 peer->update_time = bgp_clock ();
paul718e3742002-12-13 20:15:29 +00001924
Jorge Boncompte [DTI2]e2c38e62012-06-20 17:45:50 +02001925 /* Rearm holdtime timer */
Jorge Boncompte [DTI2]6a4677b2012-05-07 16:53:07 +00001926 BGP_TIMER_OFF (peer->t_holdtime);
Jorge Boncompte [DTI2]e2c38e62012-06-20 17:45:50 +02001927 bgp_timer_set (peer);
paul718e3742002-12-13 20:15:29 +00001928
1929 return 0;
1930}
1931
1932/* Notify message treatment function. */
paul94f2b392005-06-28 12:44:16 +00001933static void
paul718e3742002-12-13 20:15:29 +00001934bgp_notify_receive (struct peer *peer, bgp_size_t size)
1935{
1936 struct bgp_notify bgp_notify;
1937
1938 if (peer->notify.data)
1939 {
1940 XFREE (MTYPE_TMP, peer->notify.data);
1941 peer->notify.data = NULL;
1942 peer->notify.length = 0;
1943 }
1944
1945 bgp_notify.code = stream_getc (peer->ibuf);
1946 bgp_notify.subcode = stream_getc (peer->ibuf);
1947 bgp_notify.length = size - 2;
1948 bgp_notify.data = NULL;
1949
1950 /* Preserv notify code and sub code. */
1951 peer->notify.code = bgp_notify.code;
1952 peer->notify.subcode = bgp_notify.subcode;
1953 /* For further diagnostic record returned Data. */
1954 if (bgp_notify.length)
1955 {
1956 peer->notify.length = size - 2;
1957 peer->notify.data = XMALLOC (MTYPE_TMP, size - 2);
1958 memcpy (peer->notify.data, stream_pnt (peer->ibuf), size - 2);
1959 }
1960
1961 /* For debug */
1962 {
1963 int i;
1964 int first = 0;
1965 char c[4];
1966
1967 if (bgp_notify.length)
1968 {
1969 bgp_notify.data = XMALLOC (MTYPE_TMP, bgp_notify.length * 3);
1970 for (i = 0; i < bgp_notify.length; i++)
1971 if (first)
1972 {
1973 sprintf (c, " %02x", stream_getc (peer->ibuf));
1974 strcat (bgp_notify.data, c);
1975 }
1976 else
1977 {
1978 first = 1;
1979 sprintf (c, "%02x", stream_getc (peer->ibuf));
1980 strcpy (bgp_notify.data, c);
1981 }
1982 }
1983
1984 bgp_notify_print(peer, &bgp_notify, "received");
1985 if (bgp_notify.data)
Daniel Walton363c9032015-10-21 06:42:54 -07001986 {
1987 XFREE (MTYPE_TMP, bgp_notify.data);
1988 bgp_notify.data = NULL;
1989 bgp_notify.length = 0;
1990 }
paul718e3742002-12-13 20:15:29 +00001991 }
1992
1993 /* peer count update */
1994 peer->notify_in++;
1995
hassoe0701b72004-05-20 09:19:34 +00001996 if (peer->status == Established)
1997 peer->last_reset = PEER_DOWN_NOTIFY_RECEIVED;
1998
paul718e3742002-12-13 20:15:29 +00001999 /* We have to check for Notify with Unsupported Optional Parameter.
2000 in that case we fallback to open without the capability option.
2001 But this done in bgp_stop. We just mark it here to avoid changing
2002 the fsm tables. */
2003 if (bgp_notify.code == BGP_NOTIFY_OPEN_ERR &&
2004 bgp_notify.subcode == BGP_NOTIFY_OPEN_UNSUP_PARAM )
2005 UNSET_FLAG (peer->sflags, PEER_STATUS_CAPABILITY_OPEN);
2006
paul718e3742002-12-13 20:15:29 +00002007 BGP_EVENT_ADD (peer, Receive_NOTIFICATION_message);
2008}
2009
2010/* Keepalive treatment function -- get keepalive send keepalive */
paul94f2b392005-06-28 12:44:16 +00002011static void
paul718e3742002-12-13 20:15:29 +00002012bgp_keepalive_receive (struct peer *peer, bgp_size_t size)
2013{
2014 if (BGP_DEBUG (keepalive, KEEPALIVE))
ajs6b514742004-12-08 21:03:23 +00002015 zlog_debug ("%s KEEPALIVE rcvd", peer->host);
paul718e3742002-12-13 20:15:29 +00002016
2017 BGP_EVENT_ADD (peer, Receive_KEEPALIVE_message);
2018}
2019
2020/* Route refresh message is received. */
paul94f2b392005-06-28 12:44:16 +00002021static void
paul718e3742002-12-13 20:15:29 +00002022bgp_route_refresh_receive (struct peer *peer, bgp_size_t size)
2023{
2024 afi_t afi;
2025 safi_t safi;
paul718e3742002-12-13 20:15:29 +00002026 struct stream *s;
2027
2028 /* If peer does not have the capability, send notification. */
2029 if (! CHECK_FLAG (peer->cap, PEER_CAP_REFRESH_ADV))
2030 {
2031 plog_err (peer->log, "%s [Error] BGP route refresh is not enabled",
2032 peer->host);
2033 bgp_notify_send (peer,
2034 BGP_NOTIFY_HEADER_ERR,
2035 BGP_NOTIFY_HEADER_BAD_MESTYPE);
2036 return;
2037 }
2038
2039 /* Status must be Established. */
2040 if (peer->status != Established)
2041 {
2042 plog_err (peer->log,
2043 "%s [Error] Route refresh packet received under status %s",
2044 peer->host, LOOKUP (bgp_status_msg, peer->status));
2045 bgp_notify_send (peer, BGP_NOTIFY_FSM_ERR, 0);
2046 return;
2047 }
2048
2049 s = peer->ibuf;
2050
2051 /* Parse packet. */
2052 afi = stream_getw (s);
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002053 /* reserved byte */
2054 stream_getc (s);
paul718e3742002-12-13 20:15:29 +00002055 safi = stream_getc (s);
2056
2057 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002058 zlog_debug ("%s rcvd REFRESH_REQ for afi/safi: %d/%d",
paul718e3742002-12-13 20:15:29 +00002059 peer->host, afi, safi);
2060
2061 /* Check AFI and SAFI. */
2062 if ((afi != AFI_IP && afi != AFI_IP6)
2063 || (safi != SAFI_UNICAST && safi != SAFI_MULTICAST
Denis Ovsienko42e6d742011-07-14 12:36:19 +04002064 && safi != SAFI_MPLS_LABELED_VPN))
paul718e3742002-12-13 20:15:29 +00002065 {
2066 if (BGP_DEBUG (normal, NORMAL))
2067 {
ajs6b514742004-12-08 21:03:23 +00002068 zlog_debug ("%s REFRESH_REQ for unrecognized afi/safi: %d/%d - ignored",
paul718e3742002-12-13 20:15:29 +00002069 peer->host, afi, safi);
2070 }
2071 return;
2072 }
2073
2074 /* Adjust safi code. */
Denis Ovsienko42e6d742011-07-14 12:36:19 +04002075 if (safi == SAFI_MPLS_LABELED_VPN)
paul718e3742002-12-13 20:15:29 +00002076 safi = SAFI_MPLS_VPN;
2077
2078 if (size != BGP_MSG_ROUTE_REFRESH_MIN_SIZE - BGP_HEADER_SIZE)
2079 {
2080 u_char *end;
2081 u_char when_to_refresh;
2082 u_char orf_type;
2083 u_int16_t orf_len;
2084
2085 if (size - (BGP_MSG_ROUTE_REFRESH_MIN_SIZE - BGP_HEADER_SIZE) < 5)
2086 {
2087 zlog_info ("%s ORF route refresh length error", peer->host);
2088 bgp_notify_send (peer, BGP_NOTIFY_CEASE, 0);
2089 return;
2090 }
2091
2092 when_to_refresh = stream_getc (s);
2093 end = stream_pnt (s) + (size - 5);
2094
Paul Jakma370b64a2007-12-22 16:49:52 +00002095 while ((stream_pnt (s) + 2) < end)
paul718e3742002-12-13 20:15:29 +00002096 {
2097 orf_type = stream_getc (s);
2098 orf_len = stream_getw (s);
Paul Jakma370b64a2007-12-22 16:49:52 +00002099
2100 /* orf_len in bounds? */
2101 if ((stream_pnt (s) + orf_len) > end)
2102 break; /* XXX: Notify instead?? */
paul718e3742002-12-13 20:15:29 +00002103 if (orf_type == ORF_TYPE_PREFIX
2104 || orf_type == ORF_TYPE_PREFIX_OLD)
2105 {
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002106 uint8_t *p_pnt = stream_pnt (s);
2107 uint8_t *p_end = stream_pnt (s) + orf_len;
paul718e3742002-12-13 20:15:29 +00002108 struct orf_prefix orfp;
2109 u_char common = 0;
2110 u_int32_t seq;
2111 int psize;
2112 char name[BUFSIZ];
paul718e3742002-12-13 20:15:29 +00002113 int ret;
2114
2115 if (BGP_DEBUG (normal, NORMAL))
2116 {
ajs6b514742004-12-08 21:03:23 +00002117 zlog_debug ("%s rcvd Prefixlist ORF(%d) length %d",
paul718e3742002-12-13 20:15:29 +00002118 peer->host, orf_type, orf_len);
2119 }
2120
Paul Jakma370b64a2007-12-22 16:49:52 +00002121 /* we're going to read at least 1 byte of common ORF header,
2122 * and 7 bytes of ORF Address-filter entry from the stream
2123 */
2124 if (orf_len < 7)
2125 break;
2126
paul718e3742002-12-13 20:15:29 +00002127 /* ORF prefix-list name */
2128 sprintf (name, "%s.%d.%d", peer->host, afi, safi);
2129
2130 while (p_pnt < p_end)
2131 {
Chris Halld64379e2010-05-14 16:38:39 +04002132 /* If the ORF entry is malformed, want to read as much of it
2133 * as possible without going beyond the bounds of the entry,
2134 * to maximise debug information.
2135 */
Paul Jakmafdbc8e72011-04-11 16:31:43 +01002136 int ok;
paul718e3742002-12-13 20:15:29 +00002137 memset (&orfp, 0, sizeof (struct orf_prefix));
2138 common = *p_pnt++;
Chris Halld64379e2010-05-14 16:38:39 +04002139 /* after ++: p_pnt <= p_end */
paul718e3742002-12-13 20:15:29 +00002140 if (common & ORF_COMMON_PART_REMOVE_ALL)
2141 {
2142 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002143 zlog_debug ("%s rcvd Remove-All pfxlist ORF request", peer->host);
David Lamparterc9c06d02015-04-13 10:21:35 +02002144 prefix_bgp_orf_remove_all (afi, name);
paul718e3742002-12-13 20:15:29 +00002145 break;
2146 }
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002147 ok = ((size_t)(p_end - p_pnt) >= sizeof(u_int32_t)) ;
Denis Ovsienkobb915f52011-12-13 21:11:39 +04002148 if (ok)
Chris Halld64379e2010-05-14 16:38:39 +04002149 {
Paul Jakmafdbc8e72011-04-11 16:31:43 +01002150 memcpy (&seq, p_pnt, sizeof (u_int32_t));
2151 p_pnt += sizeof (u_int32_t);
2152 orfp.seq = ntohl (seq);
Chris Halld64379e2010-05-14 16:38:39 +04002153 }
2154 else
2155 p_pnt = p_end ;
2156
2157 if ((ok = (p_pnt < p_end)))
2158 orfp.ge = *p_pnt++ ; /* value checked in prefix_bgp_orf_set() */
2159 if ((ok = (p_pnt < p_end)))
2160 orfp.le = *p_pnt++ ; /* value checked in prefix_bgp_orf_set() */
2161 if ((ok = (p_pnt < p_end)))
2162 orfp.p.prefixlen = *p_pnt++ ;
2163 orfp.p.family = afi2family (afi); /* afi checked already */
2164
2165 psize = PSIZE (orfp.p.prefixlen); /* 0 if not ok */
2166 if (psize > prefix_blen(&orfp.p)) /* valid for family ? */
2167 {
2168 ok = 0 ;
2169 psize = prefix_blen(&orfp.p) ;
2170 }
2171 if (psize > (p_end - p_pnt)) /* valid for packet ? */
2172 {
2173 ok = 0 ;
2174 psize = p_end - p_pnt ;
2175 }
2176
2177 if (psize > 0)
2178 memcpy (&orfp.p.u.prefix, p_pnt, psize);
paul718e3742002-12-13 20:15:29 +00002179 p_pnt += psize;
2180
2181 if (BGP_DEBUG (normal, NORMAL))
Jorge Boncompte [DTI2]14542f32012-05-07 16:52:53 +00002182 {
2183 char buf[INET6_BUFSIZ];
2184
2185 zlog_debug ("%s rcvd %s %s seq %u %s/%d ge %d le %d%s",
2186 peer->host,
2187 (common & ORF_COMMON_PART_REMOVE ? "Remove" : "Add"),
2188 (common & ORF_COMMON_PART_DENY ? "deny" : "permit"),
2189 orfp.seq,
2190 inet_ntop (orfp.p.family, &orfp.p.u.prefix, buf, INET6_BUFSIZ),
2191 orfp.p.prefixlen, orfp.ge, orfp.le,
2192 ok ? "" : " MALFORMED");
2193 }
2194
Chris Halld64379e2010-05-14 16:38:39 +04002195 if (ok)
Paul Jakmafdbc8e72011-04-11 16:31:43 +01002196 ret = prefix_bgp_orf_set (name, afi, &orfp,
2197 (common & ORF_COMMON_PART_DENY ? 0 : 1 ),
2198 (common & ORF_COMMON_PART_REMOVE ? 0 : 1));
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002199
2200 if (!ok || (ok && ret != CMD_SUCCESS))
paul718e3742002-12-13 20:15:29 +00002201 {
2202 if (BGP_DEBUG (normal, NORMAL))
Paul Jakmafdbc8e72011-04-11 16:31:43 +01002203 zlog_debug ("%s Received misformatted prefixlist ORF."
2204 " Remove All pfxlist", peer->host);
David Lamparterc9c06d02015-04-13 10:21:35 +02002205 prefix_bgp_orf_remove_all (afi, name);
paul718e3742002-12-13 20:15:29 +00002206 break;
2207 }
2208 }
2209 peer->orf_plist[afi][safi] =
David Lamparterc9c06d02015-04-13 10:21:35 +02002210 prefix_bgp_orf_lookup (afi, name);
paul718e3742002-12-13 20:15:29 +00002211 }
paul9985f832005-02-09 15:51:56 +00002212 stream_forward_getp (s, orf_len);
paul718e3742002-12-13 20:15:29 +00002213 }
2214 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002215 zlog_debug ("%s rcvd Refresh %s ORF request", peer->host,
paul718e3742002-12-13 20:15:29 +00002216 when_to_refresh == REFRESH_DEFER ? "Defer" : "Immediate");
2217 if (when_to_refresh == REFRESH_DEFER)
2218 return;
2219 }
2220
2221 /* First update is deferred until ORF or ROUTE-REFRESH is received */
2222 if (CHECK_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_ORF_WAIT_REFRESH))
2223 UNSET_FLAG (peer->af_sflags[afi][safi], PEER_STATUS_ORF_WAIT_REFRESH);
2224
2225 /* Perform route refreshment to the peer */
2226 bgp_announce_route (peer, afi, safi);
2227}
2228
paul94f2b392005-06-28 12:44:16 +00002229static int
paul718e3742002-12-13 20:15:29 +00002230bgp_capability_msg_parse (struct peer *peer, u_char *pnt, bgp_size_t length)
2231{
2232 u_char *end;
Paul Jakma6d582722007-08-06 15:21:45 +00002233 struct capability_mp_data mpc;
2234 struct capability_header *hdr;
paul718e3742002-12-13 20:15:29 +00002235 u_char action;
paul718e3742002-12-13 20:15:29 +00002236 afi_t afi;
2237 safi_t safi;
2238
paul718e3742002-12-13 20:15:29 +00002239 end = pnt + length;
2240
2241 while (pnt < end)
Paul Jakma6d582722007-08-06 15:21:45 +00002242 {
paul718e3742002-12-13 20:15:29 +00002243 /* We need at least action, capability code and capability length. */
2244 if (pnt + 3 > end)
2245 {
2246 zlog_info ("%s Capability length error", peer->host);
2247 bgp_notify_send (peer, BGP_NOTIFY_CEASE, 0);
2248 return -1;
2249 }
paul718e3742002-12-13 20:15:29 +00002250 action = *pnt;
Paul Jakma6d582722007-08-06 15:21:45 +00002251 hdr = (struct capability_header *)(pnt + 1);
2252
paul718e3742002-12-13 20:15:29 +00002253 /* Action value check. */
2254 if (action != CAPABILITY_ACTION_SET
2255 && action != CAPABILITY_ACTION_UNSET)
2256 {
2257 zlog_info ("%s Capability Action Value error %d",
2258 peer->host, action);
2259 bgp_notify_send (peer, BGP_NOTIFY_CEASE, 0);
2260 return -1;
2261 }
2262
2263 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002264 zlog_debug ("%s CAPABILITY has action: %d, code: %u, length %u",
Paul Jakma6d582722007-08-06 15:21:45 +00002265 peer->host, action, hdr->code, hdr->length);
paul718e3742002-12-13 20:15:29 +00002266
2267 /* Capability length check. */
Paul Jakma6d582722007-08-06 15:21:45 +00002268 if ((pnt + hdr->length + 3) > end)
paul718e3742002-12-13 20:15:29 +00002269 {
2270 zlog_info ("%s Capability length error", peer->host);
2271 bgp_notify_send (peer, BGP_NOTIFY_CEASE, 0);
2272 return -1;
2273 }
2274
Paul Jakma6d582722007-08-06 15:21:45 +00002275 /* Fetch structure to the byte stream. */
2276 memcpy (&mpc, pnt + 3, sizeof (struct capability_mp_data));
2277
paul718e3742002-12-13 20:15:29 +00002278 /* We know MP Capability Code. */
Paul Jakma6d582722007-08-06 15:21:45 +00002279 if (hdr->code == CAPABILITY_CODE_MP)
paul718e3742002-12-13 20:15:29 +00002280 {
Paul Jakma6d582722007-08-06 15:21:45 +00002281 afi = ntohs (mpc.afi);
2282 safi = mpc.safi;
paul718e3742002-12-13 20:15:29 +00002283
2284 /* Ignore capability when override-capability is set. */
2285 if (CHECK_FLAG (peer->flags, PEER_FLAG_OVERRIDE_CAPABILITY))
2286 continue;
Paul Jakma6d582722007-08-06 15:21:45 +00002287
2288 if (!bgp_afi_safi_valid_indices (afi, &safi))
2289 {
2290 if (BGP_DEBUG (normal, NORMAL))
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00002291 zlog_debug ("%s Dynamic Capability MP_EXT afi/safi invalid "
2292 "(%u/%u)", peer->host, afi, safi);
Paul Jakma6d582722007-08-06 15:21:45 +00002293 continue;
2294 }
2295
paul718e3742002-12-13 20:15:29 +00002296 /* Address family check. */
Paul Jakma6d582722007-08-06 15:21:45 +00002297 if (BGP_DEBUG (normal, NORMAL))
2298 zlog_debug ("%s CAPABILITY has %s MP_EXT CAP for afi/safi: %u/%u",
2299 peer->host,
2300 action == CAPABILITY_ACTION_SET
2301 ? "Advertising" : "Removing",
2302 ntohs(mpc.afi) , mpc.safi);
2303
2304 if (action == CAPABILITY_ACTION_SET)
2305 {
2306 peer->afc_recv[afi][safi] = 1;
2307 if (peer->afc[afi][safi])
2308 {
2309 peer->afc_nego[afi][safi] = 1;
2310 bgp_announce_route (peer, afi, safi);
2311 }
2312 }
2313 else
2314 {
2315 peer->afc_recv[afi][safi] = 0;
2316 peer->afc_nego[afi][safi] = 0;
paul718e3742002-12-13 20:15:29 +00002317
Paul Jakma6d582722007-08-06 15:21:45 +00002318 if (peer_active_nego (peer))
Chris Caputo228da422009-07-18 05:44:03 +00002319 bgp_clear_route (peer, afi, safi, BGP_CLEAR_ROUTE_NORMAL);
Paul Jakma6d582722007-08-06 15:21:45 +00002320 else
2321 BGP_EVENT_ADD (peer, BGP_Stop);
2322 }
paul718e3742002-12-13 20:15:29 +00002323 }
paul718e3742002-12-13 20:15:29 +00002324 else
2325 {
2326 zlog_warn ("%s unrecognized capability code: %d - ignored",
Paul Jakma6d582722007-08-06 15:21:45 +00002327 peer->host, hdr->code);
paul718e3742002-12-13 20:15:29 +00002328 }
Paul Jakma6d582722007-08-06 15:21:45 +00002329 pnt += hdr->length + 3;
paul718e3742002-12-13 20:15:29 +00002330 }
2331 return 0;
2332}
2333
Paul Jakma01b7ce22009-06-18 12:34:43 +01002334/* Dynamic Capability is received.
2335 *
2336 * This is exported for unit-test purposes
2337 */
Paul Jakma6d582722007-08-06 15:21:45 +00002338int
paul718e3742002-12-13 20:15:29 +00002339bgp_capability_receive (struct peer *peer, bgp_size_t size)
2340{
2341 u_char *pnt;
paul718e3742002-12-13 20:15:29 +00002342
2343 /* Fetch pointer. */
2344 pnt = stream_pnt (peer->ibuf);
2345
2346 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002347 zlog_debug ("%s rcv CAPABILITY", peer->host);
paul718e3742002-12-13 20:15:29 +00002348
2349 /* If peer does not have the capability, send notification. */
2350 if (! CHECK_FLAG (peer->cap, PEER_CAP_DYNAMIC_ADV))
2351 {
2352 plog_err (peer->log, "%s [Error] BGP dynamic capability is not enabled",
2353 peer->host);
2354 bgp_notify_send (peer,
2355 BGP_NOTIFY_HEADER_ERR,
2356 BGP_NOTIFY_HEADER_BAD_MESTYPE);
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00002357 return -1;
paul718e3742002-12-13 20:15:29 +00002358 }
2359
2360 /* Status must be Established. */
2361 if (peer->status != Established)
2362 {
2363 plog_err (peer->log,
2364 "%s [Error] Dynamic capability packet received under status %s", peer->host, LOOKUP (bgp_status_msg, peer->status));
2365 bgp_notify_send (peer, BGP_NOTIFY_FSM_ERR, 0);
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00002366 return -1;
paul718e3742002-12-13 20:15:29 +00002367 }
2368
2369 /* Parse packet. */
Paul Jakma6d582722007-08-06 15:21:45 +00002370 return bgp_capability_msg_parse (peer, pnt, size);
paul718e3742002-12-13 20:15:29 +00002371}
David Lamparter6b0655a2014-06-04 06:53:35 +02002372
paul718e3742002-12-13 20:15:29 +00002373/* BGP read utility function. */
paul94f2b392005-06-28 12:44:16 +00002374static int
paul718e3742002-12-13 20:15:29 +00002375bgp_read_packet (struct peer *peer)
2376{
2377 int nbytes;
2378 int readsize;
2379
paul9985f832005-02-09 15:51:56 +00002380 readsize = peer->packet_size - stream_get_endp (peer->ibuf);
paul718e3742002-12-13 20:15:29 +00002381
2382 /* If size is zero then return. */
2383 if (! readsize)
2384 return 0;
2385
2386 /* Read packet from fd. */
Stephen Hemminger35398582010-08-05 10:26:23 -07002387 nbytes = stream_read_try (peer->ibuf, peer->fd, readsize);
paul718e3742002-12-13 20:15:29 +00002388
2389 /* If read byte is smaller than zero then error occured. */
2390 if (nbytes < 0)
2391 {
Stephen Hemminger35398582010-08-05 10:26:23 -07002392 /* Transient error should retry */
2393 if (nbytes == -2)
paul718e3742002-12-13 20:15:29 +00002394 return -1;
2395
2396 plog_err (peer->log, "%s [Error] bgp_read_packet error: %s",
ajs6099b3b2004-11-20 02:06:59 +00002397 peer->host, safe_strerror (errno));
hasso93406d82005-02-02 14:40:33 +00002398
2399 if (peer->status == Established)
2400 {
2401 if (CHECK_FLAG (peer->sflags, PEER_STATUS_NSF_MODE))
2402 {
2403 peer->last_reset = PEER_DOWN_NSF_CLOSE_SESSION;
2404 SET_FLAG (peer->sflags, PEER_STATUS_NSF_WAIT);
2405 }
2406 else
2407 peer->last_reset = PEER_DOWN_CLOSE_SESSION;
2408 }
2409
paul718e3742002-12-13 20:15:29 +00002410 BGP_EVENT_ADD (peer, TCP_fatal_error);
2411 return -1;
2412 }
2413
2414 /* When read byte is zero : clear bgp peer and return */
2415 if (nbytes == 0)
2416 {
2417 if (BGP_DEBUG (events, EVENTS))
ajs6b514742004-12-08 21:03:23 +00002418 plog_debug (peer->log, "%s [Event] BGP connection closed fd %d",
pauleb821182004-05-01 08:44:08 +00002419 peer->host, peer->fd);
hassoe0701b72004-05-20 09:19:34 +00002420
2421 if (peer->status == Established)
hasso93406d82005-02-02 14:40:33 +00002422 {
2423 if (CHECK_FLAG (peer->sflags, PEER_STATUS_NSF_MODE))
2424 {
2425 peer->last_reset = PEER_DOWN_NSF_CLOSE_SESSION;
2426 SET_FLAG (peer->sflags, PEER_STATUS_NSF_WAIT);
2427 }
2428 else
2429 peer->last_reset = PEER_DOWN_CLOSE_SESSION;
2430 }
hassoe0701b72004-05-20 09:19:34 +00002431
paul718e3742002-12-13 20:15:29 +00002432 BGP_EVENT_ADD (peer, TCP_connection_closed);
2433 return -1;
2434 }
2435
2436 /* We read partial packet. */
paul9985f832005-02-09 15:51:56 +00002437 if (stream_get_endp (peer->ibuf) != peer->packet_size)
paul718e3742002-12-13 20:15:29 +00002438 return -1;
2439
2440 return 0;
2441}
2442
2443/* Marker check. */
paul94f2b392005-06-28 12:44:16 +00002444static int
paul718e3742002-12-13 20:15:29 +00002445bgp_marker_all_one (struct stream *s, int length)
2446{
2447 int i;
2448
2449 for (i = 0; i < length; i++)
2450 if (s->data[i] != 0xff)
2451 return 0;
2452
2453 return 1;
2454}
2455
Stephen Hemmingerd61c1bb2013-01-04 22:29:23 +00002456/* Recent thread time.
2457 On same clock base as bgp_clock (MONOTONIC)
2458 but can be time of last context switch to bgp_read thread. */
2459static time_t
2460bgp_recent_clock (void)
2461{
2462 return recent_relative_time().tv_sec;
2463}
2464
paul718e3742002-12-13 20:15:29 +00002465/* Starting point of packet process function. */
2466int
2467bgp_read (struct thread *thread)
2468{
2469 int ret;
2470 u_char type = 0;
2471 struct peer *peer;
2472 bgp_size_t size;
2473 char notify_data_length[2];
2474
2475 /* Yes first of all get peer pointer. */
2476 peer = THREAD_ARG (thread);
2477 peer->t_read = NULL;
2478
2479 /* For non-blocking IO check. */
2480 if (peer->status == Connect)
2481 {
Paul Jakma743dd422016-09-30 13:55:47 +01002482 bgp_connect_check (peer);
paul718e3742002-12-13 20:15:29 +00002483 goto done;
2484 }
2485 else
2486 {
pauleb821182004-05-01 08:44:08 +00002487 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +00002488 {
pauleb821182004-05-01 08:44:08 +00002489 zlog_err ("bgp_read peer's fd is negative value %d", peer->fd);
paul718e3742002-12-13 20:15:29 +00002490 return -1;
2491 }
pauleb821182004-05-01 08:44:08 +00002492 BGP_READ_ON (peer->t_read, bgp_read, peer->fd);
paul718e3742002-12-13 20:15:29 +00002493 }
2494
2495 /* Read packet header to determine type of the packet */
2496 if (peer->packet_size == 0)
2497 peer->packet_size = BGP_HEADER_SIZE;
2498
paul9985f832005-02-09 15:51:56 +00002499 if (stream_get_endp (peer->ibuf) < BGP_HEADER_SIZE)
paul718e3742002-12-13 20:15:29 +00002500 {
2501 ret = bgp_read_packet (peer);
2502
2503 /* Header read error or partial read packet. */
2504 if (ret < 0)
2505 goto done;
2506
2507 /* Get size and type. */
paul9985f832005-02-09 15:51:56 +00002508 stream_forward_getp (peer->ibuf, BGP_MARKER_SIZE);
paul718e3742002-12-13 20:15:29 +00002509 memcpy (notify_data_length, stream_pnt (peer->ibuf), 2);
2510 size = stream_getw (peer->ibuf);
2511 type = stream_getc (peer->ibuf);
2512
2513 if (BGP_DEBUG (normal, NORMAL) && type != 2 && type != 0)
ajs6b514742004-12-08 21:03:23 +00002514 zlog_debug ("%s rcv message type %d, length (excl. header) %d",
paul718e3742002-12-13 20:15:29 +00002515 peer->host, type, size - BGP_HEADER_SIZE);
2516
2517 /* Marker check */
paulf5ba3872004-07-09 12:11:31 +00002518 if (((type == BGP_MSG_OPEN) || (type == BGP_MSG_KEEPALIVE))
paul718e3742002-12-13 20:15:29 +00002519 && ! bgp_marker_all_one (peer->ibuf, BGP_MARKER_SIZE))
2520 {
2521 bgp_notify_send (peer,
2522 BGP_NOTIFY_HEADER_ERR,
2523 BGP_NOTIFY_HEADER_NOT_SYNC);
2524 goto done;
2525 }
2526
2527 /* BGP type check. */
2528 if (type != BGP_MSG_OPEN && type != BGP_MSG_UPDATE
2529 && type != BGP_MSG_NOTIFY && type != BGP_MSG_KEEPALIVE
2530 && type != BGP_MSG_ROUTE_REFRESH_NEW
2531 && type != BGP_MSG_ROUTE_REFRESH_OLD
2532 && type != BGP_MSG_CAPABILITY)
2533 {
2534 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002535 plog_debug (peer->log,
paul718e3742002-12-13 20:15:29 +00002536 "%s unknown message type 0x%02x",
2537 peer->host, type);
2538 bgp_notify_send_with_data (peer,
2539 BGP_NOTIFY_HEADER_ERR,
2540 BGP_NOTIFY_HEADER_BAD_MESTYPE,
2541 &type, 1);
2542 goto done;
2543 }
2544 /* Mimimum packet length check. */
2545 if ((size < BGP_HEADER_SIZE)
2546 || (size > BGP_MAX_PACKET_SIZE)
2547 || (type == BGP_MSG_OPEN && size < BGP_MSG_OPEN_MIN_SIZE)
2548 || (type == BGP_MSG_UPDATE && size < BGP_MSG_UPDATE_MIN_SIZE)
2549 || (type == BGP_MSG_NOTIFY && size < BGP_MSG_NOTIFY_MIN_SIZE)
2550 || (type == BGP_MSG_KEEPALIVE && size != BGP_MSG_KEEPALIVE_MIN_SIZE)
2551 || (type == BGP_MSG_ROUTE_REFRESH_NEW && size < BGP_MSG_ROUTE_REFRESH_MIN_SIZE)
2552 || (type == BGP_MSG_ROUTE_REFRESH_OLD && size < BGP_MSG_ROUTE_REFRESH_MIN_SIZE)
2553 || (type == BGP_MSG_CAPABILITY && size < BGP_MSG_CAPABILITY_MIN_SIZE))
2554 {
2555 if (BGP_DEBUG (normal, NORMAL))
ajs6b514742004-12-08 21:03:23 +00002556 plog_debug (peer->log,
paul718e3742002-12-13 20:15:29 +00002557 "%s bad message length - %d for %s",
2558 peer->host, size,
2559 type == 128 ? "ROUTE-REFRESH" :
2560 bgp_type_str[(int) type]);
2561 bgp_notify_send_with_data (peer,
2562 BGP_NOTIFY_HEADER_ERR,
2563 BGP_NOTIFY_HEADER_BAD_MESLEN,
hassoc9e52be2004-09-26 16:09:34 +00002564 (u_char *) notify_data_length, 2);
paul718e3742002-12-13 20:15:29 +00002565 goto done;
2566 }
2567
2568 /* Adjust size to message length. */
2569 peer->packet_size = size;
2570 }
2571
2572 ret = bgp_read_packet (peer);
2573 if (ret < 0)
2574 goto done;
2575
2576 /* Get size and type again. */
2577 size = stream_getw_from (peer->ibuf, BGP_MARKER_SIZE);
2578 type = stream_getc_from (peer->ibuf, BGP_MARKER_SIZE + 2);
2579
2580 /* BGP packet dump function. */
2581 bgp_dump_packet (peer, type, peer->ibuf);
2582
2583 size = (peer->packet_size - BGP_HEADER_SIZE);
2584
2585 /* Read rest of the packet and call each sort of packet routine */
2586 switch (type)
2587 {
2588 case BGP_MSG_OPEN:
2589 peer->open_in++;
paulf5ba3872004-07-09 12:11:31 +00002590 bgp_open_receive (peer, size); /* XXX return value ignored! */
paul718e3742002-12-13 20:15:29 +00002591 break;
2592 case BGP_MSG_UPDATE:
Stephen Hemmingerd61c1bb2013-01-04 22:29:23 +00002593 peer->readtime = bgp_recent_clock ();
paul718e3742002-12-13 20:15:29 +00002594 bgp_update_receive (peer, size);
2595 break;
2596 case BGP_MSG_NOTIFY:
2597 bgp_notify_receive (peer, size);
2598 break;
2599 case BGP_MSG_KEEPALIVE:
Stephen Hemmingerd61c1bb2013-01-04 22:29:23 +00002600 peer->readtime = bgp_recent_clock ();
paul718e3742002-12-13 20:15:29 +00002601 bgp_keepalive_receive (peer, size);
2602 break;
2603 case BGP_MSG_ROUTE_REFRESH_NEW:
2604 case BGP_MSG_ROUTE_REFRESH_OLD:
2605 peer->refresh_in++;
2606 bgp_route_refresh_receive (peer, size);
2607 break;
2608 case BGP_MSG_CAPABILITY:
2609 peer->dynamic_cap_in++;
2610 bgp_capability_receive (peer, size);
2611 break;
2612 }
2613
2614 /* Clear input buffer. */
2615 peer->packet_size = 0;
2616 if (peer->ibuf)
2617 stream_reset (peer->ibuf);
2618
2619 done:
2620 if (CHECK_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER))
2621 {
2622 if (BGP_DEBUG (events, EVENTS))
ajs6b514742004-12-08 21:03:23 +00002623 zlog_debug ("%s [Event] Accepting BGP peer delete", peer->host);
paul718e3742002-12-13 20:15:29 +00002624 peer_delete (peer);
paul718e3742002-12-13 20:15:29 +00002625 }
2626 return 0;
2627}