]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_network.c
bgpd: honor max prefix timer on inbound sessions
[mirror_frr.git] / bgpd / bgp_network.c
1 /* BGP network related fucntions
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra 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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "thread.h"
24 #include "sockunion.h"
25 #include "sockopt.h"
26 #include "memory.h"
27 #include "log.h"
28 #include "if.h"
29 #include "prefix.h"
30 #include "command.h"
31 #include "privs.h"
32 #include "linklist.h"
33 #include "network.h"
34 #include "queue.h"
35 #include "hash.h"
36 #include "filter.h"
37 #include "ns.h"
38 #include "lib_errors.h"
39 #include "nexthop.h"
40
41 #include "bgpd/bgpd.h"
42 #include "bgpd/bgp_open.h"
43 #include "bgpd/bgp_fsm.h"
44 #include "bgpd/bgp_attr.h"
45 #include "bgpd/bgp_debug.h"
46 #include "bgpd/bgp_errors.h"
47 #include "bgpd/bgp_network.h"
48 #include "bgpd/bgp_zebra.h"
49
50 extern struct zebra_privs_t bgpd_privs;
51
52 static char *bgp_get_bound_name(struct peer *peer);
53
54 /* BGP listening socket. */
55 struct bgp_listener {
56 int fd;
57 union sockunion su;
58 struct thread *thread;
59 struct bgp *bgp;
60 };
61
62 /*
63 * Set MD5 key for the socket, for the given IPv4 peer address.
64 * If the password is NULL or zero-length, the option will be disabled.
65 */
66 static int bgp_md5_set_socket(int socket, union sockunion *su,
67 uint16_t prefixlen, const char *password)
68 {
69 int ret = -1;
70 int en = ENOSYS;
71 #if HAVE_DECL_TCP_MD5SIG
72 union sockunion su2;
73 #endif /* HAVE_TCP_MD5SIG */
74
75 assert(socket >= 0);
76
77 #if HAVE_DECL_TCP_MD5SIG
78 /* Ensure there is no extraneous port information. */
79 memcpy(&su2, su, sizeof(union sockunion));
80 if (su2.sa.sa_family == AF_INET)
81 su2.sin.sin_port = 0;
82 else
83 su2.sin6.sin6_port = 0;
84
85 /* For addresses, use the non-extended signature functionality */
86 if ((su2.sa.sa_family == AF_INET && prefixlen == IPV4_MAX_PREFIXLEN)
87 || (su2.sa.sa_family == AF_INET6
88 && prefixlen == IPV6_MAX_PREFIXLEN))
89 ret = sockopt_tcp_signature(socket, &su2, password);
90 else
91 ret = sockopt_tcp_signature_ext(socket, &su2, prefixlen,
92 password);
93 en = errno;
94 #endif /* HAVE_TCP_MD5SIG */
95
96 if (ret < 0) {
97 char sabuf[SU_ADDRSTRLEN];
98 sockunion2str(su, sabuf, sizeof(sabuf));
99
100 switch (ret) {
101 case -2:
102 flog_warn(
103 EC_BGP_NO_TCP_MD5,
104 "Unable to set TCP MD5 option on socket for peer %s (sock=%d): This platform does not support MD5 auth for prefixes",
105 sabuf, socket);
106 break;
107 default:
108 flog_warn(
109 EC_BGP_NO_TCP_MD5,
110 "Unable to set TCP MD5 option on socket for peer %s (sock=%d): %s",
111 sabuf, socket, safe_strerror(en));
112 }
113 }
114
115 return ret;
116 }
117
118 /* Helper for bgp_connect */
119 static int bgp_md5_set_connect(int socket, union sockunion *su,
120 uint16_t prefixlen, const char *password)
121 {
122 int ret = -1;
123
124 #if HAVE_DECL_TCP_MD5SIG
125 frr_elevate_privs(&bgpd_privs) {
126 ret = bgp_md5_set_socket(socket, su, prefixlen, password);
127 }
128 #endif /* HAVE_TCP_MD5SIG */
129
130 return ret;
131 }
132
133 static int bgp_md5_set_password(struct peer *peer, const char *password)
134 {
135 struct listnode *node;
136 int ret = 0;
137 struct bgp_listener *listener;
138
139 /*
140 * Set or unset the password on the listen socket(s). Outbound
141 * connections are taken care of in bgp_connect() below.
142 */
143 frr_elevate_privs(&bgpd_privs)
144 {
145 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
146 if (listener->su.sa.sa_family
147 == peer->su.sa.sa_family) {
148 uint16_t prefixlen =
149 peer->su.sa.sa_family == AF_INET
150 ? IPV4_MAX_PREFIXLEN
151 : IPV6_MAX_PREFIXLEN;
152
153 ret = bgp_md5_set_socket(listener->fd,
154 &peer->su, prefixlen,
155 password);
156 break;
157 }
158 }
159 return ret;
160 }
161
162 int bgp_md5_set_prefix(struct prefix *p, const char *password)
163 {
164 int ret = 0;
165 union sockunion su;
166 struct listnode *node;
167 struct bgp_listener *listener;
168
169 /* Set or unset the password on the listen socket(s). */
170 frr_elevate_privs(&bgpd_privs)
171 {
172 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
173 if (listener->su.sa.sa_family == p->family) {
174 prefix2sockunion(p, &su);
175 ret = bgp_md5_set_socket(listener->fd, &su,
176 p->prefixlen,
177 password);
178 break;
179 }
180 }
181
182 return ret;
183 }
184
185 int bgp_md5_unset_prefix(struct prefix *p)
186 {
187 return bgp_md5_set_prefix(p, NULL);
188 }
189
190 int bgp_md5_set(struct peer *peer)
191 {
192 /* Set the password from listen socket. */
193 return bgp_md5_set_password(peer, peer->password);
194 }
195
196 int bgp_md5_unset(struct peer *peer)
197 {
198 /* Unset the password from listen socket. */
199 return bgp_md5_set_password(peer, NULL);
200 }
201
202 int bgp_set_socket_ttl(struct peer *peer, int bgp_sock)
203 {
204 char buf[INET_ADDRSTRLEN];
205 int ret = 0;
206
207 /* In case of peer is EBGP, we should set TTL for this connection. */
208 if (!peer->gtsm_hops && (peer_sort(peer) == BGP_PEER_EBGP)) {
209 ret = sockopt_ttl(peer->su.sa.sa_family, bgp_sock, peer->ttl);
210 if (ret) {
211 flog_err(
212 EC_LIB_SOCKET,
213 "%s: Can't set TxTTL on peer (rtrid %s) socket, err = %d",
214 __func__,
215 inet_ntop(AF_INET, &peer->remote_id, buf,
216 sizeof(buf)),
217 errno);
218 return ret;
219 }
220 } else if (peer->gtsm_hops) {
221 /* On Linux, setting minttl without setting ttl seems to mess
222 with the
223 outgoing ttl. Therefore setting both.
224 */
225 ret = sockopt_ttl(peer->su.sa.sa_family, bgp_sock, MAXTTL);
226 if (ret) {
227 flog_err(
228 EC_LIB_SOCKET,
229 "%s: Can't set TxTTL on peer (rtrid %s) socket, err = %d",
230 __func__,
231 inet_ntop(AF_INET, &peer->remote_id, buf,
232 sizeof(buf)),
233 errno);
234 return ret;
235 }
236 ret = sockopt_minttl(peer->su.sa.sa_family, bgp_sock,
237 MAXTTL + 1 - peer->gtsm_hops);
238 if (ret) {
239 flog_err(
240 EC_LIB_SOCKET,
241 "%s: Can't set MinTTL on peer (rtrid %s) socket, err = %d",
242 __func__,
243 inet_ntop(AF_INET, &peer->remote_id, buf,
244 sizeof(buf)),
245 errno);
246 return ret;
247 }
248 }
249
250 return ret;
251 }
252
253 /*
254 * Obtain the BGP instance that the incoming connection should be processed
255 * against. This is important because more than one VRF could be using the
256 * same IP address space. The instance is got by obtaining the device to
257 * which the incoming connection is bound to. This could either be a VRF
258 * or it could be an interface, which in turn determines the VRF.
259 */
260 static int bgp_get_instance_for_inc_conn(int sock, struct bgp **bgp_inst)
261 {
262 #ifndef SO_BINDTODEVICE
263 /* only Linux has SO_BINDTODEVICE, but we're in Linux-specific code here
264 * anyway since the assumption is that the interface name returned by
265 * getsockopt() is useful in identifying the VRF, particularly with
266 * Linux's
267 * VRF l3master device. The whole mechanism is specific to Linux, so...
268 * when other platforms add VRF support, this will need handling here as
269 * well. (or, some restructuring) */
270 *bgp_inst = bgp_get_default();
271 return !*bgp_inst;
272
273 #else
274 char name[VRF_NAMSIZ + 1];
275 socklen_t name_len = VRF_NAMSIZ;
276 struct bgp *bgp;
277 int rc;
278 struct listnode *node, *nnode;
279
280 *bgp_inst = NULL;
281 name[0] = '\0';
282 rc = getsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, name, &name_len);
283 if (rc != 0) {
284 #if defined(HAVE_CUMULUS)
285 flog_err(EC_LIB_SOCKET,
286 "[Error] BGP SO_BINDTODEVICE get failed (%s), sock %d",
287 safe_strerror(errno), sock);
288 return -1;
289 #endif
290 }
291
292 if (!strlen(name)) {
293 *bgp_inst = bgp_get_default();
294 return 0; /* default instance. */
295 }
296
297 /* First try match to instance; if that fails, check for interfaces. */
298 bgp = bgp_lookup_by_name(name);
299 if (bgp) {
300 if (!bgp->vrf_id) // unexpected
301 return -1;
302 *bgp_inst = bgp;
303 return 0;
304 }
305
306 /* TODO - This will be optimized once interfaces move into the NS */
307 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
308 struct interface *ifp;
309
310 if (bgp->inst_type == BGP_INSTANCE_TYPE_VIEW)
311 continue;
312
313 ifp = if_lookup_by_name(name, bgp->vrf_id);
314 if (ifp) {
315 *bgp_inst = bgp;
316 return 0;
317 }
318 }
319
320 /* We didn't match to either an instance or an interface. */
321 return -1;
322 #endif
323 }
324
325 /* Accept bgp connection. */
326 static int bgp_accept(struct thread *thread)
327 {
328 int bgp_sock;
329 int accept_sock;
330 union sockunion su;
331 struct bgp_listener *listener = THREAD_ARG(thread);
332 struct peer *peer;
333 struct peer *peer1;
334 char buf[SU_ADDRSTRLEN];
335 struct bgp *bgp = NULL;
336
337 sockunion_init(&su);
338
339 /* Register accept thread. */
340 accept_sock = THREAD_FD(thread);
341 if (accept_sock < 0) {
342 flog_err_sys(EC_LIB_SOCKET, "accept_sock is nevative value %d",
343 accept_sock);
344 return -1;
345 }
346 listener->thread = NULL;
347
348 thread_add_read(bm->master, bgp_accept, listener, accept_sock,
349 &listener->thread);
350
351 /* Accept client connection. */
352 bgp_sock = sockunion_accept(accept_sock, &su);
353 if (bgp_sock < 0) {
354 flog_err_sys(EC_LIB_SOCKET,
355 "[Error] BGP socket accept failed (%s)",
356 safe_strerror(errno));
357 return -1;
358 }
359 set_nonblocking(bgp_sock);
360
361 /* Obtain BGP instance this connection is meant for.
362 * - if it is a VRF netns sock, then BGP is in listener structure
363 * - otherwise, the bgp instance need to be demultiplexed
364 */
365 if (listener->bgp)
366 bgp = listener->bgp;
367 else if (bgp_get_instance_for_inc_conn(bgp_sock, &bgp)) {
368 if (bgp_debug_neighbor_events(NULL))
369 zlog_debug(
370 "[Event] Could not get instance for incoming conn from %s",
371 inet_sutop(&su, buf));
372 close(bgp_sock);
373 return -1;
374 }
375
376 /* Set socket send buffer size */
377 setsockopt_so_sendbuf(bgp_sock, BGP_SOCKET_SNDBUF_SIZE);
378
379 /* Check remote IP address */
380 peer1 = peer_lookup(bgp, &su);
381
382 if (!peer1) {
383 peer1 = peer_lookup_dynamic_neighbor(bgp, &su);
384 if (peer1) {
385 /* Dynamic neighbor has been created, let it proceed */
386 peer1->fd = bgp_sock;
387 bgp_fsm_change_status(peer1, Active);
388 BGP_TIMER_OFF(
389 peer1->t_start); /* created in peer_create() */
390
391 if (peer_active(peer1))
392 BGP_EVENT_ADD(peer1, TCP_connection_open);
393
394 return 0;
395 }
396 }
397
398 if (!peer1) {
399 if (bgp_debug_neighbor_events(NULL)) {
400 zlog_debug(
401 "[Event] %s connection rejected - not configured"
402 " and not valid for dynamic",
403 inet_sutop(&su, buf));
404 }
405 close(bgp_sock);
406 return -1;
407 }
408
409 if (CHECK_FLAG(peer1->flags, PEER_FLAG_SHUTDOWN)) {
410 if (bgp_debug_neighbor_events(peer1))
411 zlog_debug(
412 "[Event] connection from %s rejected due to admin shutdown",
413 inet_sutop(&su, buf));
414 close(bgp_sock);
415 return -1;
416 }
417
418 /*
419 * Do not accept incoming connections in Clearing state. This can result
420 * in incorect state transitions - e.g., the connection goes back to
421 * Established and then the Clearing_Completed event is generated. Also,
422 * block incoming connection in Deleted state.
423 */
424 if (peer1->status == Clearing || peer1->status == Deleted) {
425 if (bgp_debug_neighbor_events(peer1))
426 zlog_debug(
427 "[Event] Closing incoming conn for %s (%p) state %d",
428 peer1->host, peer1, peer1->status);
429 close(bgp_sock);
430 return -1;
431 }
432
433 /* Check that at least one AF is activated for the peer. */
434 if (!peer_active(peer1)) {
435 if (bgp_debug_neighbor_events(peer1))
436 zlog_debug(
437 "%s - incoming conn rejected - no AF activated for peer",
438 peer1->host);
439 close(bgp_sock);
440 return -1;
441 }
442
443 /* Check whether max prefix restart timer is set for the peer */
444 if (peer1->t_pmax_restart) {
445 if (bgp_debug_neighbor_events(peer1))
446 zlog_debug(
447 "%s - incoming conn rejected - "
448 "peer max prefix timer is active",
449 peer1->host);
450 close(bgp_sock);
451 return -1;
452 }
453
454 if (bgp_debug_neighbor_events(peer1))
455 zlog_debug("[Event] BGP connection from host %s fd %d",
456 inet_sutop(&su, buf), bgp_sock);
457
458 if (peer1->doppelganger) {
459 /* We have an existing connection. Kill the existing one and run
460 with this one.
461 */
462 if (bgp_debug_neighbor_events(peer1))
463 zlog_debug(
464 "[Event] New active connection from peer %s, Killing"
465 " previous active connection",
466 peer1->host);
467 peer_delete(peer1->doppelganger);
468 }
469
470 if (bgp_set_socket_ttl(peer1, bgp_sock) < 0)
471 if (bgp_debug_neighbor_events(peer1))
472 zlog_debug(
473 "[Event] Unable to set min/max TTL on peer %s, Continuing",
474 peer1->host);
475
476 peer = peer_create(&su, peer1->conf_if, peer1->bgp, peer1->local_as,
477 peer1->as, peer1->as_type, 0, 0, NULL);
478 hash_release(peer->bgp->peerhash, peer);
479 hash_get(peer->bgp->peerhash, peer, hash_alloc_intern);
480
481 peer_xfer_config(peer, peer1);
482 UNSET_FLAG(peer->flags, PEER_FLAG_CONFIG_NODE);
483
484 peer->doppelganger = peer1;
485 peer1->doppelganger = peer;
486 peer->fd = bgp_sock;
487 vrf_bind(peer->bgp->vrf_id, bgp_sock, bgp_get_bound_name(peer));
488 bgp_fsm_change_status(peer, Active);
489 BGP_TIMER_OFF(peer->t_start); /* created in peer_create() */
490
491 SET_FLAG(peer->sflags, PEER_STATUS_ACCEPT_PEER);
492
493 /* Make dummy peer until read Open packet. */
494 if (peer1->status == Established
495 && CHECK_FLAG(peer1->sflags, PEER_STATUS_NSF_MODE)) {
496 /* If we have an existing established connection with graceful
497 * restart
498 * capability announced with one or more address families, then
499 * drop
500 * existing established connection and move state to connect.
501 */
502 peer1->last_reset = PEER_DOWN_NSF_CLOSE_SESSION;
503 SET_FLAG(peer1->sflags, PEER_STATUS_NSF_WAIT);
504 bgp_event_update(peer1, TCP_connection_closed);
505 }
506
507 if (peer_active(peer)) {
508 BGP_EVENT_ADD(peer, TCP_connection_open);
509 }
510
511 return 0;
512 }
513
514 /* BGP socket bind. */
515 static char *bgp_get_bound_name(struct peer *peer)
516 {
517 char *name = NULL;
518
519 if (!peer)
520 return NULL;
521
522 if ((peer->bgp->vrf_id == VRF_DEFAULT) && !peer->ifname
523 && !peer->conf_if)
524 return NULL;
525
526 if (peer->su.sa.sa_family != AF_INET
527 && peer->su.sa.sa_family != AF_INET6)
528 return NULL; // unexpected
529
530 /* For IPv6 peering, interface (unnumbered or link-local with interface)
531 * takes precedence over VRF. For IPv4 peering, explicit interface or
532 * VRF are the situations to bind.
533 */
534 if (peer->su.sa.sa_family == AF_INET6)
535 name = (peer->conf_if ? peer->conf_if
536 : (peer->ifname ? peer->ifname
537 : peer->bgp->name));
538 else
539 name = peer->ifname ? peer->ifname : peer->bgp->name;
540
541 return name;
542 }
543
544 static int bgp_update_address(struct interface *ifp, const union sockunion *dst,
545 union sockunion *addr)
546 {
547 struct prefix *p, *sel, d;
548 struct connected *connected;
549 struct listnode *node;
550 int common;
551
552 sockunion2hostprefix(dst, &d);
553 sel = NULL;
554 common = -1;
555
556 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, connected)) {
557 p = connected->address;
558 if (p->family != d.family)
559 continue;
560 if (prefix_common_bits(p, &d) > common) {
561 sel = p;
562 common = prefix_common_bits(sel, &d);
563 }
564 }
565
566 if (!sel)
567 return 1;
568
569 prefix2sockunion(sel, addr);
570 return 0;
571 }
572
573 /* Update source selection. */
574 static int bgp_update_source(struct peer *peer)
575 {
576 struct interface *ifp;
577 union sockunion addr;
578 int ret = 0;
579
580 sockunion_init(&addr);
581
582 /* Source is specified with interface name. */
583 if (peer->update_if) {
584 ifp = if_lookup_by_name(peer->update_if, peer->bgp->vrf_id);
585 if (!ifp)
586 return -1;
587
588 if (bgp_update_address(ifp, &peer->su, &addr))
589 return -1;
590
591 ret = sockunion_bind(peer->fd, &addr, 0, &addr);
592 }
593
594 /* Source is specified with IP address. */
595 if (peer->update_source)
596 ret = sockunion_bind(peer->fd, peer->update_source, 0,
597 peer->update_source);
598
599 return ret;
600 }
601
602 #define DATAPLANE_MARK 254 /* main table ID */
603
604 /* BGP try to connect to the peer. */
605 int bgp_connect(struct peer *peer)
606 {
607 assert(!CHECK_FLAG(peer->thread_flags, PEER_THREAD_WRITES_ON));
608 assert(!CHECK_FLAG(peer->thread_flags, PEER_THREAD_READS_ON));
609 ifindex_t ifindex = 0;
610
611 if (peer->conf_if && BGP_PEER_SU_UNSPEC(peer)) {
612 zlog_debug("Peer address not learnt: Returning from connect");
613 return 0;
614 }
615 frr_elevate_privs(&bgpd_privs) {
616 /* Make socket for the peer. */
617 peer->fd = vrf_sockunion_socket(&peer->su, peer->bgp->vrf_id,
618 bgp_get_bound_name(peer));
619 }
620 if (peer->fd < 0)
621 return -1;
622
623 set_nonblocking(peer->fd);
624
625 /* Set socket send buffer size */
626 setsockopt_so_sendbuf(peer->fd, BGP_SOCKET_SNDBUF_SIZE);
627
628 if (bgp_set_socket_ttl(peer, peer->fd) < 0)
629 return -1;
630
631 sockopt_reuseaddr(peer->fd);
632 sockopt_reuseport(peer->fd);
633 if (sockopt_mark_default(peer->fd, DATAPLANE_MARK, &bgpd_privs) < 0)
634 flog_warn(EC_BGP_NO_SOCKOPT_MARK,
635 "Unable to set mark on FD for peer %s, err=%s",
636 peer->host, safe_strerror(errno));
637
638 #ifdef IPTOS_PREC_INTERNETCONTROL
639 frr_elevate_privs(&bgpd_privs) {
640 if (sockunion_family(&peer->su) == AF_INET)
641 setsockopt_ipv4_tos(peer->fd,
642 IPTOS_PREC_INTERNETCONTROL);
643 else if (sockunion_family(&peer->su) == AF_INET6)
644 setsockopt_ipv6_tclass(peer->fd,
645 IPTOS_PREC_INTERNETCONTROL);
646 }
647 #endif
648
649 if (peer->password) {
650 uint16_t prefixlen = peer->su.sa.sa_family == AF_INET
651 ? IPV4_MAX_PREFIXLEN
652 : IPV6_MAX_PREFIXLEN;
653
654 bgp_md5_set_connect(peer->fd, &peer->su, prefixlen,
655 peer->password);
656 }
657
658 /* Update source bind. */
659 if (bgp_update_source(peer) < 0) {
660 return connect_error;
661 }
662
663 if (peer->conf_if || peer->ifname)
664 ifindex = ifname2ifindex(peer->conf_if ? peer->conf_if
665 : peer->ifname,
666 peer->bgp->vrf_id);
667
668 if (bgp_debug_neighbor_events(peer))
669 zlog_debug("%s [Event] Connect start to %s fd %d", peer->host,
670 peer->host, peer->fd);
671
672 /* Connect to the remote peer. */
673 return sockunion_connect(peer->fd, &peer->su, htons(peer->port),
674 ifindex);
675 }
676
677 /* After TCP connection is established. Get local address and port. */
678 int bgp_getsockname(struct peer *peer)
679 {
680 if (peer->su_local) {
681 sockunion_free(peer->su_local);
682 peer->su_local = NULL;
683 }
684
685 if (peer->su_remote) {
686 sockunion_free(peer->su_remote);
687 peer->su_remote = NULL;
688 }
689
690 peer->su_local = sockunion_getsockname(peer->fd);
691 if (!peer->su_local)
692 return -1;
693 peer->su_remote = sockunion_getpeername(peer->fd);
694 if (!peer->su_remote)
695 return -1;
696
697 if (!bgp_zebra_nexthop_set(peer->su_local, peer->su_remote,
698 &peer->nexthop, peer)) {
699 flog_err(EC_BGP_NH_UPD,
700 "%s: nexthop_set failed, resetting connection - intf %p",
701 peer->host, peer->nexthop.ifp);
702 return -1;
703 }
704 return 0;
705 }
706
707
708 static int bgp_listener(int sock, struct sockaddr *sa, socklen_t salen,
709 struct bgp *bgp)
710 {
711 struct bgp_listener *listener;
712 int ret, en;
713
714 sockopt_reuseaddr(sock);
715 sockopt_reuseport(sock);
716
717 frr_elevate_privs(&bgpd_privs) {
718
719 #ifdef IPTOS_PREC_INTERNETCONTROL
720 if (sa->sa_family == AF_INET)
721 setsockopt_ipv4_tos(sock, IPTOS_PREC_INTERNETCONTROL);
722 else if (sa->sa_family == AF_INET6)
723 setsockopt_ipv6_tclass(sock,
724 IPTOS_PREC_INTERNETCONTROL);
725 #endif
726
727 sockopt_v6only(sa->sa_family, sock);
728
729 ret = bind(sock, sa, salen);
730 en = errno;
731 }
732
733 if (ret < 0) {
734 flog_err_sys(EC_LIB_SOCKET, "bind: %s", safe_strerror(en));
735 return ret;
736 }
737
738 ret = listen(sock, SOMAXCONN);
739 if (ret < 0) {
740 flog_err_sys(EC_LIB_SOCKET, "listen: %s", safe_strerror(errno));
741 return ret;
742 }
743
744 listener = XCALLOC(MTYPE_BGP_LISTENER, sizeof(*listener));
745 listener->fd = sock;
746
747 /* this socket needs a change of ns. record bgp back pointer */
748 if (bgp->vrf_id != VRF_DEFAULT && vrf_is_backend_netns())
749 listener->bgp = bgp;
750
751 memcpy(&listener->su, sa, salen);
752 listener->thread = NULL;
753 thread_add_read(bm->master, bgp_accept, listener, sock,
754 &listener->thread);
755 listnode_add(bm->listen_sockets, listener);
756
757 return 0;
758 }
759
760 /* IPv6 supported version of BGP server socket setup. */
761 int bgp_socket(struct bgp *bgp, unsigned short port, const char *address)
762 {
763 struct addrinfo *ainfo;
764 struct addrinfo *ainfo_save;
765 static const struct addrinfo req = {
766 .ai_family = AF_UNSPEC,
767 .ai_flags = AI_PASSIVE,
768 .ai_socktype = SOCK_STREAM,
769 };
770 int ret, count;
771 char port_str[BUFSIZ];
772
773 snprintf(port_str, sizeof(port_str), "%d", port);
774 port_str[sizeof(port_str) - 1] = '\0';
775
776 frr_elevate_privs(&bgpd_privs) {
777 ret = vrf_getaddrinfo(address, port_str, &req, &ainfo_save,
778 bgp->vrf_id);
779 }
780 if (ret != 0) {
781 flog_err_sys(EC_LIB_SOCKET, "getaddrinfo: %s",
782 gai_strerror(ret));
783 return -1;
784 }
785 if (bgp_option_check(BGP_OPT_NO_ZEBRA) &&
786 bgp->vrf_id != VRF_DEFAULT) {
787 freeaddrinfo(ainfo_save);
788 return -1;
789 }
790 count = 0;
791 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next) {
792 int sock;
793
794 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
795 continue;
796
797 frr_elevate_privs(&bgpd_privs) {
798 sock = vrf_socket(ainfo->ai_family,
799 ainfo->ai_socktype,
800 ainfo->ai_protocol, bgp->vrf_id,
801 (bgp->inst_type
802 == BGP_INSTANCE_TYPE_VRF
803 ? bgp->name : NULL));
804 }
805 if (sock < 0) {
806 flog_err_sys(EC_LIB_SOCKET, "socket: %s",
807 safe_strerror(errno));
808 continue;
809 }
810
811 /* if we intend to implement ttl-security, this socket needs
812 * ttl=255 */
813 sockopt_ttl(ainfo->ai_family, sock, MAXTTL);
814
815 ret = bgp_listener(sock, ainfo->ai_addr, ainfo->ai_addrlen,
816 bgp);
817 if (ret == 0)
818 ++count;
819 else
820 close(sock);
821 }
822 freeaddrinfo(ainfo_save);
823 if (count == 0 && bgp->inst_type != BGP_INSTANCE_TYPE_VRF) {
824 flog_err(
825 EC_LIB_SOCKET,
826 "%s: no usable addresses please check other programs usage of specified port %d",
827 __func__, port);
828 flog_err_sys(EC_LIB_SOCKET, "%s: Program cannot continue",
829 __func__);
830 exit(-1);
831 }
832
833 return 0;
834 }
835
836 /* this function closes vrf socket
837 * this should be called only for vrf socket with netns backend
838 */
839 void bgp_close_vrf_socket(struct bgp *bgp)
840 {
841 struct listnode *node, *next;
842 struct bgp_listener *listener;
843
844 if (!bgp)
845 return;
846
847 if (bm->listen_sockets == NULL)
848 return;
849
850 for (ALL_LIST_ELEMENTS(bm->listen_sockets, node, next, listener)) {
851 if (listener->bgp == bgp) {
852 thread_cancel(listener->thread);
853 close(listener->fd);
854 listnode_delete(bm->listen_sockets, listener);
855 XFREE(MTYPE_BGP_LISTENER, listener);
856 }
857 }
858 }
859
860 /* this function closes main socket
861 */
862 void bgp_close(void)
863 {
864 struct listnode *node, *next;
865 struct bgp_listener *listener;
866
867 if (bm->listen_sockets == NULL)
868 return;
869
870 for (ALL_LIST_ELEMENTS(bm->listen_sockets, node, next, listener)) {
871 if (listener->bgp)
872 continue;
873 thread_cancel(listener->thread);
874 close(listener->fd);
875 listnode_delete(bm->listen_sockets, listener);
876 XFREE(MTYPE_BGP_LISTENER, listener);
877 }
878 }