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