]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_io.c
Merge pull request #9374 from mjstapp/fix_nhg_add_leak
[mirror_frr.git] / bgpd / bgp_io.c
1 /* BGP I/O.
2 * Implements packet I/O in a pthread.
3 * Copyright (C) 2017 Cumulus Networks
4 * Quentin Young
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22 /* clang-format off */
23 #include <zebra.h>
24 #include <pthread.h> // for pthread_mutex_unlock, pthread_mutex_lock
25 #include <sys/uio.h> // for writev
26
27 #include "frr_pthread.h"
28 #include "linklist.h" // for list_delete, list_delete_all_node, lis...
29 #include "log.h" // for zlog_debug, safe_strerror, zlog_err
30 #include "memory.h" // for MTYPE_TMP, XCALLOC, XFREE
31 #include "network.h" // for ERRNO_IO_RETRY
32 #include "stream.h" // for stream_get_endp, stream_getw_from, str...
33 #include "ringbuf.h" // for ringbuf_remain, ringbuf_peek, ringbuf_...
34 #include "thread.h" // for THREAD_OFF, THREAD_ARG, thread...
35
36 #include "bgpd/bgp_io.h"
37 #include "bgpd/bgp_debug.h" // for bgp_debug_neighbor_events, bgp_type_str
38 #include "bgpd/bgp_errors.h" // for expanded error reference information
39 #include "bgpd/bgp_fsm.h" // for BGP_EVENT_ADD, bgp_event
40 #include "bgpd/bgp_packet.h" // for bgp_notify_send_with_data, bgp_notify...
41 #include "bgpd/bgp_trace.h" // for frrtraces
42 #include "bgpd/bgpd.h" // for peer, BGP_MARKER_SIZE, bgp_master, bm
43 /* clang-format on */
44
45 /* forward declarations */
46 static uint16_t bgp_write(struct peer *);
47 static uint16_t bgp_read(struct peer *peer, int *code_p);
48 static int bgp_process_writes(struct thread *);
49 static int bgp_process_reads(struct thread *);
50 static bool validate_header(struct peer *);
51
52 /* generic i/o status codes */
53 #define BGP_IO_TRANS_ERR (1 << 0) // EAGAIN or similar occurred
54 #define BGP_IO_FATAL_ERR (1 << 1) // some kind of fatal TCP error
55
56 /* Thread external API ----------------------------------------------------- */
57
58 void bgp_writes_on(struct peer *peer)
59 {
60 struct frr_pthread *fpt = bgp_pth_io;
61 assert(fpt->running);
62
63 assert(peer->status != Deleted);
64 assert(peer->obuf);
65 assert(peer->ibuf);
66 assert(peer->ibuf_work);
67 assert(!peer->t_connect_check_r);
68 assert(!peer->t_connect_check_w);
69 assert(peer->fd);
70
71 thread_add_write(fpt->master, bgp_process_writes, peer, peer->fd,
72 &peer->t_write);
73 SET_FLAG(peer->thread_flags, PEER_THREAD_WRITES_ON);
74 }
75
76 void bgp_writes_off(struct peer *peer)
77 {
78 struct frr_pthread *fpt = bgp_pth_io;
79 assert(fpt->running);
80
81 thread_cancel_async(fpt->master, &peer->t_write, NULL);
82 THREAD_OFF(peer->t_generate_updgrp_packets);
83
84 UNSET_FLAG(peer->thread_flags, PEER_THREAD_WRITES_ON);
85 }
86
87 void bgp_reads_on(struct peer *peer)
88 {
89 struct frr_pthread *fpt = bgp_pth_io;
90 assert(fpt->running);
91
92 assert(peer->status != Deleted);
93 assert(peer->ibuf);
94 assert(peer->fd);
95 assert(peer->ibuf_work);
96 assert(peer->obuf);
97 assert(!peer->t_connect_check_r);
98 assert(!peer->t_connect_check_w);
99 assert(peer->fd);
100
101 thread_add_read(fpt->master, bgp_process_reads, peer, peer->fd,
102 &peer->t_read);
103
104 SET_FLAG(peer->thread_flags, PEER_THREAD_READS_ON);
105 }
106
107 void bgp_reads_off(struct peer *peer)
108 {
109 struct frr_pthread *fpt = bgp_pth_io;
110 assert(fpt->running);
111
112 thread_cancel_async(fpt->master, &peer->t_read, NULL);
113 THREAD_OFF(peer->t_process_packet);
114 THREAD_OFF(peer->t_process_packet_error);
115
116 UNSET_FLAG(peer->thread_flags, PEER_THREAD_READS_ON);
117 }
118
119 /* Thread internal functions ----------------------------------------------- */
120
121 /*
122 * Called from I/O pthread when a file descriptor has become ready for writing.
123 */
124 static int bgp_process_writes(struct thread *thread)
125 {
126 static struct peer *peer;
127 peer = THREAD_ARG(thread);
128 uint16_t status;
129 bool reschedule;
130 bool fatal = false;
131
132 if (peer->fd < 0)
133 return -1;
134
135 struct frr_pthread *fpt = bgp_pth_io;
136
137 frr_with_mutex(&peer->io_mtx) {
138 status = bgp_write(peer);
139 reschedule = (stream_fifo_head(peer->obuf) != NULL);
140 }
141
142 /* no problem */
143 if (CHECK_FLAG(status, BGP_IO_TRANS_ERR)) {
144 }
145
146 /* problem */
147 if (CHECK_FLAG(status, BGP_IO_FATAL_ERR)) {
148 reschedule = false;
149 fatal = true;
150 }
151
152 /* If suppress fib pending is enabled, route is advertised to peers when
153 * the status is received from the FIB. The delay is added
154 * to update group packet generate which will allow more routes to be
155 * sent in the update message
156 */
157 if (reschedule) {
158 thread_add_write(fpt->master, bgp_process_writes, peer,
159 peer->fd, &peer->t_write);
160 } else if (!fatal) {
161 BGP_UPDATE_GROUP_TIMER_ON(&peer->t_generate_updgrp_packets,
162 bgp_generate_updgrp_packets);
163 }
164
165 return 0;
166 }
167
168 /*
169 * Called from I/O pthread when a file descriptor has become ready for reading,
170 * or has hung up.
171 *
172 * We read as much data as possible, process as many packets as we can and
173 * place them on peer->ibuf for secondary processing by the main thread.
174 */
175 static int bgp_process_reads(struct thread *thread)
176 {
177 /* clang-format off */
178 static struct peer *peer; // peer to read from
179 uint16_t status; // bgp_read status code
180 bool more = true; // whether we got more data
181 bool fatal = false; // whether fatal error occurred
182 bool added_pkt = false; // whether we pushed onto ->ibuf
183 int code = 0; // FSM code if error occurred
184 /* clang-format on */
185
186 peer = THREAD_ARG(thread);
187
188 if (peer->fd < 0 || bm->terminating)
189 return -1;
190
191 struct frr_pthread *fpt = bgp_pth_io;
192
193 frr_with_mutex(&peer->io_mtx) {
194 status = bgp_read(peer, &code);
195 }
196
197 /* error checking phase */
198 if (CHECK_FLAG(status, BGP_IO_TRANS_ERR)) {
199 /* no problem; just don't process packets */
200 more = false;
201 }
202
203 if (CHECK_FLAG(status, BGP_IO_FATAL_ERR)) {
204 /* problem; tear down session */
205 more = false;
206 fatal = true;
207
208 /* Handle the error in the main pthread, include the
209 * specific state change from 'bgp_read'.
210 */
211 thread_add_event(bm->master, bgp_packet_process_error,
212 peer, code, &peer->t_process_packet_error);
213 }
214
215 while (more) {
216 /* static buffer for transferring packets */
217 /* shorter alias to peer's input buffer */
218 struct ringbuf *ibw = peer->ibuf_work;
219 /* packet size as given by header */
220 uint16_t pktsize = 0;
221
222 /* check that we have enough data for a header */
223 if (ringbuf_remain(ibw) < BGP_HEADER_SIZE)
224 break;
225
226 /* check that header is valid */
227 if (!validate_header(peer)) {
228 fatal = true;
229 break;
230 }
231
232 /* header is valid; retrieve packet size */
233 ringbuf_peek(ibw, BGP_MARKER_SIZE, &pktsize, sizeof(pktsize));
234
235 pktsize = ntohs(pktsize);
236
237 /* if this fails we are seriously screwed */
238 assert(pktsize <= peer->max_packet_size);
239
240 /*
241 * If we have that much data, chuck it into its own
242 * stream and append to input queue for processing.
243 */
244 if (ringbuf_remain(ibw) >= pktsize) {
245 struct stream *pkt = stream_new(pktsize);
246
247 assert(STREAM_WRITEABLE(pkt) == pktsize);
248 assert(ringbuf_get(ibw, pkt->data, pktsize) == pktsize);
249 stream_set_endp(pkt, pktsize);
250
251 frrtrace(2, frr_bgp, packet_read, peer, pkt);
252 frr_with_mutex(&peer->io_mtx) {
253 stream_fifo_push(peer->ibuf, pkt);
254 }
255
256 added_pkt = true;
257 } else
258 break;
259 }
260
261 /* handle invalid header */
262 if (fatal) {
263 /* wipe buffer just in case someone screwed up */
264 ringbuf_wipe(peer->ibuf_work);
265 } else {
266 assert(ringbuf_space(peer->ibuf_work) >= peer->max_packet_size);
267
268 thread_add_read(fpt->master, bgp_process_reads, peer, peer->fd,
269 &peer->t_read);
270 if (added_pkt)
271 thread_add_event(bm->master, bgp_process_packet,
272 peer, 0, &peer->t_process_packet);
273 }
274
275 return 0;
276 }
277
278 /*
279 * Flush peer output buffer.
280 *
281 * This function pops packets off of peer->obuf and writes them to peer->fd.
282 * The amount of packets written is equal to the minimum of peer->wpkt_quanta
283 * and the number of packets on the output buffer, unless an error occurs.
284 *
285 * If write() returns an error, the appropriate FSM event is generated.
286 *
287 * The return value is equal to the number of packets written
288 * (which may be zero).
289 */
290 static uint16_t bgp_write(struct peer *peer)
291 {
292 uint8_t type;
293 struct stream *s;
294 int update_last_write = 0;
295 unsigned int count;
296 uint32_t uo = 0;
297 uint16_t status = 0;
298 uint32_t wpkt_quanta_old;
299
300 int writenum = 0;
301 int num;
302 unsigned int iovsz;
303 unsigned int strmsz;
304 unsigned int total_written;
305
306 wpkt_quanta_old = atomic_load_explicit(&peer->bgp->wpkt_quanta,
307 memory_order_relaxed);
308 struct stream *ostreams[wpkt_quanta_old];
309 struct stream **streams = ostreams;
310 struct iovec iov[wpkt_quanta_old];
311
312 s = stream_fifo_head(peer->obuf);
313
314 if (!s)
315 goto done;
316
317 count = iovsz = 0;
318 while (count < wpkt_quanta_old && iovsz < array_size(iov) && s) {
319 ostreams[iovsz] = s;
320 iov[iovsz].iov_base = stream_pnt(s);
321 iov[iovsz].iov_len = STREAM_READABLE(s);
322 writenum += STREAM_READABLE(s);
323 s = s->next;
324 ++iovsz;
325 ++count;
326 }
327
328 strmsz = iovsz;
329 total_written = 0;
330
331 do {
332 num = writev(peer->fd, iov, iovsz);
333
334 if (num < 0) {
335 if (!ERRNO_IO_RETRY(errno)) {
336 BGP_EVENT_ADD(peer, TCP_fatal_error);
337 SET_FLAG(status, BGP_IO_FATAL_ERR);
338 } else {
339 SET_FLAG(status, BGP_IO_TRANS_ERR);
340 }
341
342 break;
343 } else if (num != writenum) {
344 unsigned int msg_written = 0;
345 unsigned int ic = iovsz;
346
347 for (unsigned int i = 0; i < ic; i++) {
348 size_t ss = iov[i].iov_len;
349
350 if (ss > (unsigned int) num)
351 break;
352
353 msg_written++;
354 iovsz--;
355 writenum -= ss;
356 num -= ss;
357 }
358
359 total_written += msg_written;
360
361 assert(total_written < count);
362
363 memmove(&iov, &iov[msg_written],
364 sizeof(iov[0]) * iovsz);
365 streams = &streams[msg_written];
366 stream_forward_getp(streams[0], num);
367 iov[0].iov_base = stream_pnt(streams[0]);
368 iov[0].iov_len = STREAM_READABLE(streams[0]);
369
370 writenum -= num;
371 num = 0;
372 assert(writenum > 0);
373 } else {
374 total_written = strmsz;
375 }
376
377 } while (num != writenum);
378
379 /* Handle statistics */
380 for (unsigned int i = 0; i < total_written; i++) {
381 s = stream_fifo_pop(peer->obuf);
382
383 assert(s == ostreams[i]);
384
385 /* Retrieve BGP packet type. */
386 stream_set_getp(s, BGP_MARKER_SIZE + 2);
387 type = stream_getc(s);
388
389 switch (type) {
390 case BGP_MSG_OPEN:
391 atomic_fetch_add_explicit(&peer->open_out, 1,
392 memory_order_relaxed);
393 break;
394 case BGP_MSG_UPDATE:
395 atomic_fetch_add_explicit(&peer->update_out, 1,
396 memory_order_relaxed);
397 uo++;
398 break;
399 case BGP_MSG_NOTIFY:
400 atomic_fetch_add_explicit(&peer->notify_out, 1,
401 memory_order_relaxed);
402 /* Double start timer. */
403 peer->v_start *= 2;
404
405 /* Overflow check. */
406 if (peer->v_start >= (60 * 2))
407 peer->v_start = (60 * 2);
408
409 /*
410 * Handle Graceful Restart case where the state changes
411 * to Connect instead of Idle.
412 */
413 BGP_EVENT_ADD(peer, BGP_Stop);
414 goto done;
415
416 case BGP_MSG_KEEPALIVE:
417 atomic_fetch_add_explicit(&peer->keepalive_out, 1,
418 memory_order_relaxed);
419 break;
420 case BGP_MSG_ROUTE_REFRESH_NEW:
421 case BGP_MSG_ROUTE_REFRESH_OLD:
422 atomic_fetch_add_explicit(&peer->refresh_out, 1,
423 memory_order_relaxed);
424 break;
425 case BGP_MSG_CAPABILITY:
426 atomic_fetch_add_explicit(&peer->dynamic_cap_out, 1,
427 memory_order_relaxed);
428 break;
429 }
430
431 stream_free(s);
432 ostreams[i] = NULL;
433 update_last_write = 1;
434 }
435
436 done : {
437 /*
438 * Update last_update if UPDATEs were written.
439 * Note: that these are only updated at end,
440 * not per message (i.e., per loop)
441 */
442 if (uo)
443 atomic_store_explicit(&peer->last_update, bgp_clock(),
444 memory_order_relaxed);
445
446 /* If we TXed any flavor of packet */
447 if (update_last_write)
448 atomic_store_explicit(&peer->last_write, bgp_clock(),
449 memory_order_relaxed);
450 }
451
452 return status;
453 }
454
455 /*
456 * Reads a chunk of data from peer->fd into peer->ibuf_work.
457 *
458 * code_p
459 * Pointer to location to store FSM event code in case of fatal error.
460 *
461 * @return status flag (see top-of-file)
462 */
463 static uint16_t bgp_read(struct peer *peer, int *code_p)
464 {
465 size_t readsize; // how many bytes we want to read
466 ssize_t nbytes; // how many bytes we actually read
467 uint16_t status = 0;
468
469 readsize =
470 MIN(ringbuf_space(peer->ibuf_work), sizeof(peer->ibuf_scratch));
471 nbytes = read(peer->fd, peer->ibuf_scratch, readsize);
472
473 /* EAGAIN or EWOULDBLOCK; come back later */
474 if (nbytes < 0 && ERRNO_IO_RETRY(errno)) {
475 SET_FLAG(status, BGP_IO_TRANS_ERR);
476 } else if (nbytes < 0) {
477 /* Fatal error; tear down session */
478 flog_err(EC_BGP_UPDATE_RCV,
479 "%s [Error] bgp_read_packet error: %s", peer->host,
480 safe_strerror(errno));
481
482 /* Handle the error in the main pthread. */
483 if (code_p)
484 *code_p = TCP_fatal_error;
485
486 SET_FLAG(status, BGP_IO_FATAL_ERR);
487
488 } else if (nbytes == 0) {
489 /* Received EOF / TCP session closed */
490 if (bgp_debug_neighbor_events(peer))
491 zlog_debug("%s [Event] BGP connection closed fd %d",
492 peer->host, peer->fd);
493
494 /* Handle the error in the main pthread. */
495 if (code_p)
496 *code_p = TCP_connection_closed;
497
498 SET_FLAG(status, BGP_IO_FATAL_ERR);
499 } else {
500 assert(ringbuf_put(peer->ibuf_work, peer->ibuf_scratch, nbytes)
501 == (size_t)nbytes);
502 }
503
504 return status;
505 }
506
507 /*
508 * Called after we have read a BGP packet header. Validates marker, message
509 * type and packet length. If any of these aren't correct, sends a notify.
510 *
511 * Assumes that there are at least BGP_HEADER_SIZE readable bytes in the input
512 * buffer.
513 */
514 static bool validate_header(struct peer *peer)
515 {
516 uint16_t size;
517 uint8_t type;
518 struct ringbuf *pkt = peer->ibuf_work;
519
520 static const uint8_t m_correct[BGP_MARKER_SIZE] = {
521 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
522 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
523 uint8_t m_rx[BGP_MARKER_SIZE] = {0x00};
524
525 if (ringbuf_peek(pkt, 0, m_rx, BGP_MARKER_SIZE) != BGP_MARKER_SIZE)
526 return false;
527
528 if (memcmp(m_correct, m_rx, BGP_MARKER_SIZE) != 0) {
529 bgp_notify_send(peer, BGP_NOTIFY_HEADER_ERR,
530 BGP_NOTIFY_HEADER_NOT_SYNC);
531 return false;
532 }
533
534 /* Get size and type in network byte order. */
535 ringbuf_peek(pkt, BGP_MARKER_SIZE, &size, sizeof(size));
536 ringbuf_peek(pkt, BGP_MARKER_SIZE + 2, &type, sizeof(type));
537
538 size = ntohs(size);
539
540 /* BGP type check. */
541 if (type != BGP_MSG_OPEN && type != BGP_MSG_UPDATE
542 && type != BGP_MSG_NOTIFY && type != BGP_MSG_KEEPALIVE
543 && type != BGP_MSG_ROUTE_REFRESH_NEW
544 && type != BGP_MSG_ROUTE_REFRESH_OLD
545 && type != BGP_MSG_CAPABILITY) {
546 if (bgp_debug_neighbor_events(peer))
547 zlog_debug("%s unknown message type 0x%02x", peer->host,
548 type);
549
550 bgp_notify_send_with_data(peer, BGP_NOTIFY_HEADER_ERR,
551 BGP_NOTIFY_HEADER_BAD_MESTYPE, &type,
552 1);
553 return false;
554 }
555
556 /* Minimum packet length check. */
557 if ((size < BGP_HEADER_SIZE) || (size > peer->max_packet_size)
558 || (type == BGP_MSG_OPEN && size < BGP_MSG_OPEN_MIN_SIZE)
559 || (type == BGP_MSG_UPDATE && size < BGP_MSG_UPDATE_MIN_SIZE)
560 || (type == BGP_MSG_NOTIFY && size < BGP_MSG_NOTIFY_MIN_SIZE)
561 || (type == BGP_MSG_KEEPALIVE && size != BGP_MSG_KEEPALIVE_MIN_SIZE)
562 || (type == BGP_MSG_ROUTE_REFRESH_NEW
563 && size < BGP_MSG_ROUTE_REFRESH_MIN_SIZE)
564 || (type == BGP_MSG_ROUTE_REFRESH_OLD
565 && size < BGP_MSG_ROUTE_REFRESH_MIN_SIZE)
566 || (type == BGP_MSG_CAPABILITY
567 && size < BGP_MSG_CAPABILITY_MIN_SIZE)) {
568 if (bgp_debug_neighbor_events(peer)) {
569 zlog_debug("%s bad message length - %d for %s",
570 peer->host, size,
571 type == 128 ? "ROUTE-REFRESH"
572 : bgp_type_str[(int)type]);
573 }
574
575 uint16_t nsize = htons(size);
576
577 bgp_notify_send_with_data(peer, BGP_NOTIFY_HEADER_ERR,
578 BGP_NOTIFY_HEADER_BAD_MESLEN,
579 (unsigned char *)&nsize, 2);
580 return false;
581 }
582
583 return true;
584 }