]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_network.c
bgpd: Validate large-community-list against UINT_MAX
[mirror_frr.git] / bgpd / bgp_network.c
CommitLineData
718e3744 1/* BGP network related fucntions
896014f4
DL
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 */
718e3744 20
21#include <zebra.h>
22
23#include "thread.h"
24#include "sockunion.h"
0df7c91f 25#include "sockopt.h"
718e3744 26#include "memory.h"
27#include "log.h"
28#include "if.h"
29#include "prefix.h"
30#include "command.h"
edd7c245 31#include "privs.h"
0df7c91f 32#include "linklist.h"
fdbc8e77 33#include "network.h"
3f9c7369 34#include "queue.h"
66e373ae 35#include "hash.h"
039f3a34 36#include "filter.h"
61cf4b37 37#include "ns.h"
174482ef 38#include "lib_errors.h"
17cdd31e 39#include "nexthop.h"
718e3744 40
41#include "bgpd/bgpd.h"
1ff9a340 42#include "bgpd/bgp_open.h"
718e3744 43#include "bgpd/bgp_fsm.h"
44#include "bgpd/bgp_attr.h"
45#include "bgpd/bgp_debug.h"
14454c9f 46#include "bgpd/bgp_errors.h"
718e3744 47#include "bgpd/bgp_network.h"
17cdd31e 48#include "bgpd/bgp_zebra.h"
edd7c245 49
50extern struct zebra_privs_t bgpd_privs;
51
97896a91 52static char *bgp_get_bound_name(struct peer *peer);
f2345335 53
d023aec4 54/* BGP listening socket. */
d62a17ae 55struct bgp_listener {
56 int fd;
57 union sockunion su;
58 struct thread *thread;
61cf4b37 59 struct bgp *bgp;
d023aec4 60};
6b0655a2 61
0df7c91f
PJ
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 */
d62a17ae 66static int bgp_md5_set_socket(int socket, union sockunion *su,
9e7d9a61 67 uint16_t prefixlen, const char *password)
0df7c91f 68{
d62a17ae 69 int ret = -1;
70 int en = ENOSYS;
ea8b7c71 71#if HAVE_DECL_TCP_MD5SIG
d62a17ae 72 union sockunion su2;
ea8b7c71 73#endif /* HAVE_TCP_MD5SIG */
d62a17ae 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;
9e7d9a61
QY
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);
d62a17ae 93 en = errno;
0df7c91f 94#endif /* HAVE_TCP_MD5SIG */
0df7c91f 95
9e7d9a61
QY
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 }
d62a17ae 114
115 return ret;
0df7c91f
PJ
116}
117
118/* Helper for bgp_connect */
d62a17ae 119static int bgp_md5_set_connect(int socket, union sockunion *su,
9e7d9a61 120 uint16_t prefixlen, const char *password)
0df7c91f 121{
d62a17ae 122 int ret = -1;
123
124#if HAVE_DECL_TCP_MD5SIG
6bb30c2c 125 frr_elevate_privs(&bgpd_privs) {
9e7d9a61 126 ret = bgp_md5_set_socket(socket, su, prefixlen, password);
d62a17ae 127 }
0df7c91f 128#endif /* HAVE_TCP_MD5SIG */
d62a17ae 129
130 return ret;
0df7c91f
PJ
131}
132
d62a17ae 133static int bgp_md5_set_password(struct peer *peer, const char *password)
0df7c91f 134{
d62a17ae 135 struct listnode *node;
136 int ret = 0;
137 struct bgp_listener *listener;
138
9e7d9a61
QY
139 /*
140 * Set or unset the password on the listen socket(s). Outbound
6bb30c2c 141 * connections are taken care of in bgp_connect() below.
d62a17ae 142 */
9e7d9a61
QY
143 frr_elevate_privs(&bgpd_privs)
144 {
6bb30c2c
DL
145 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
146 if (listener->su.sa.sa_family
147 == peer->su.sa.sa_family) {
9e7d9a61
QY
148 uint16_t prefixlen =
149 peer->su.sa.sa_family == AF_INET
150 ? IPV4_MAX_PREFIXLEN
151 : IPV6_MAX_PREFIXLEN;
152
6bb30c2c 153 ret = bgp_md5_set_socket(listener->fd,
9e7d9a61
QY
154 &peer->su, prefixlen,
155 password);
156 break;
157 }
158 }
159 return ret;
160}
161
162int 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);
6bb30c2c
DL
178 break;
179 }
180 }
9e7d9a61 181
d62a17ae 182 return ret;
0df7c91f 183}
3374bef0 184
9e7d9a61
QY
185int bgp_md5_unset_prefix(struct prefix *p)
186{
187 return bgp_md5_set_prefix(p, NULL);
188}
189
d62a17ae 190int bgp_md5_set(struct peer *peer)
89ca90fa 191{
d62a17ae 192 /* Set the password from listen socket. */
193 return bgp_md5_set_password(peer, peer->password);
89ca90fa 194}
195
d62a17ae 196int bgp_md5_unset(struct peer *peer)
89ca90fa 197{
d62a17ae 198 /* Unset the password from listen socket. */
199 return bgp_md5_set_password(peer, NULL);
89ca90fa 200}
201
d62a17ae 202int bgp_set_socket_ttl(struct peer *peer, int bgp_sock)
ef0b0c3e 203{
d62a17ae 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) {
af4c2728 211 flog_err(
450971aa 212 EC_LIB_SOCKET,
d62a17ae 213 "%s: Can't set TxTTL on peer (rtrid %s) socket, err = %d",
14454c9f
DS
214 __func__,
215 inet_ntop(AF_INET, &peer->remote_id, buf,
216 sizeof(buf)),
d62a17ae 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) {
af4c2728 227 flog_err(
450971aa 228 EC_LIB_SOCKET,
d62a17ae 229 "%s: Can't set TxTTL on peer (rtrid %s) socket, err = %d",
14454c9f
DS
230 __func__,
231 inet_ntop(AF_INET, &peer->remote_id, buf,
232 sizeof(buf)),
d62a17ae 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) {
af4c2728 239 flog_err(
450971aa 240 EC_LIB_SOCKET,
d62a17ae 241 "%s: Can't set MinTTL on peer (rtrid %s) socket, err = %d",
14454c9f
DS
242 __func__,
243 inet_ntop(AF_INET, &peer->remote_id, buf,
244 sizeof(buf)),
d62a17ae 245 errno);
246 return ret;
247 }
248 }
249
250 return ret;
ef0b0c3e
DL
251}
252
8dee0396 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 */
d62a17ae 260static int bgp_get_instance_for_inc_conn(int sock, struct bgp **bgp_inst)
8dee0396 261{
120c6587 262#ifndef SO_BINDTODEVICE
d62a17ae 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;
120c6587
DL
272
273#else
d62a17ae 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)
1c50c1c0
QY
285 flog_err(EC_LIB_SOCKET,
286 "[Error] BGP SO_BINDTODEVICE get failed (%s), sock %d",
287 safe_strerror(errno), sock);
d62a17ae 288 return -1;
b5826a12 289#endif
d62a17ae 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;
120c6587 322#endif
8dee0396 323}
324
718e3744 325/* Accept bgp connection. */
d62a17ae 326static int bgp_accept(struct thread *thread)
718e3744 327{
d62a17ae 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) {
450971aa 342 flog_err_sys(EC_LIB_SOCKET, "accept_sock is nevative value %d",
09c866e3 343 accept_sock);
d62a17ae 344 return -1;
345 }
346 listener->thread = NULL;
61cf4b37 347
d62a17ae 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) {
450971aa 354 flog_err_sys(EC_LIB_SOCKET,
09c866e3
QY
355 "[Error] BGP socket accept failed (%s)",
356 safe_strerror(errno));
d62a17ae 357 return -1;
358 }
359 set_nonblocking(bgp_sock);
360
61cf4b37
PG
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)) {
d62a17ae 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 if (bgp_debug_neighbor_events(peer1))
444 zlog_debug("[Event] BGP connection from host %s fd %d",
445 inet_sutop(&su, buf), bgp_sock);
446
447 if (peer1->doppelganger) {
448 /* We have an existing connection. Kill the existing one and run
449 with this one.
450 */
451 if (bgp_debug_neighbor_events(peer1))
452 zlog_debug(
453 "[Event] New active connection from peer %s, Killing"
454 " previous active connection",
455 peer1->host);
456 peer_delete(peer1->doppelganger);
457 }
458
459 if (bgp_set_socket_ttl(peer1, bgp_sock) < 0)
460 if (bgp_debug_neighbor_events(peer1))
461 zlog_debug(
462 "[Event] Unable to set min/max TTL on peer %s, Continuing",
463 peer1->host);
464
465 peer = peer_create(&su, peer1->conf_if, peer1->bgp, peer1->local_as,
466 peer1->as, peer1->as_type, 0, 0, NULL);
d62a17ae 467 hash_release(peer->bgp->peerhash, peer);
468 hash_get(peer->bgp->peerhash, peer, hash_alloc_intern);
469
470 peer_xfer_config(peer, peer1);
471 UNSET_FLAG(peer->flags, PEER_FLAG_CONFIG_NODE);
472
473 peer->doppelganger = peer1;
474 peer1->doppelganger = peer;
475 peer->fd = bgp_sock;
97896a91 476 vrf_bind(peer->bgp->vrf_id, bgp_sock, bgp_get_bound_name(peer));
d62a17ae 477 bgp_fsm_change_status(peer, Active);
478 BGP_TIMER_OFF(peer->t_start); /* created in peer_create() */
479
480 SET_FLAG(peer->sflags, PEER_STATUS_ACCEPT_PEER);
481
482 /* Make dummy peer until read Open packet. */
483 if (peer1->status == Established
484 && CHECK_FLAG(peer1->sflags, PEER_STATUS_NSF_MODE)) {
485 /* If we have an existing established connection with graceful
486 * restart
487 * capability announced with one or more address families, then
488 * drop
489 * existing established connection and move state to connect.
490 */
491 peer1->last_reset = PEER_DOWN_NSF_CLOSE_SESSION;
492 SET_FLAG(peer1->sflags, PEER_STATUS_NSF_WAIT);
493 bgp_event_update(peer1, TCP_connection_closed);
494 }
495
496 if (peer_active(peer)) {
497 BGP_EVENT_ADD(peer, TCP_connection_open);
498 }
499
500 return 0;
718e3744 501}
502
503/* BGP socket bind. */
97896a91 504static char *bgp_get_bound_name(struct peer *peer)
718e3744 505{
d62a17ae 506 char *name = NULL;
507
a2bce1c8
DS
508 if (!peer)
509 return NULL;
510
996c9314
LB
511 if ((peer->bgp->vrf_id == VRF_DEFAULT) && !peer->ifname
512 && !peer->conf_if)
97896a91
PG
513 return NULL;
514
d62a17ae 515 if (peer->su.sa.sa_family != AF_INET
516 && peer->su.sa.sa_family != AF_INET6)
97896a91 517 return NULL; // unexpected
d62a17ae 518
519 /* For IPv6 peering, interface (unnumbered or link-local with interface)
520 * takes precedence over VRF. For IPv4 peering, explicit interface or
521 * VRF are the situations to bind.
522 */
523 if (peer->su.sa.sa_family == AF_INET6)
524 name = (peer->conf_if ? peer->conf_if
525 : (peer->ifname ? peer->ifname
526 : peer->bgp->name));
527 else
528 name = peer->ifname ? peer->ifname : peer->bgp->name;
529
97896a91 530 return name;
718e3744 531}
532
d62a17ae 533static int bgp_update_address(struct interface *ifp, const union sockunion *dst,
534 union sockunion *addr)
718e3744 535{
d62a17ae 536 struct prefix *p, *sel, d;
537 struct connected *connected;
538 struct listnode *node;
539 int common;
540
541 sockunion2hostprefix(dst, &d);
542 sel = NULL;
543 common = -1;
544
545 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, connected)) {
546 p = connected->address;
547 if (p->family != d.family)
548 continue;
549 if (prefix_common_bits(p, &d) > common) {
550 sel = p;
551 common = prefix_common_bits(sel, &d);
552 }
553 }
554
555 if (!sel)
556 return 1;
557
558 prefix2sockunion(sel, addr);
559 return 0;
718e3744 560}
561
562/* Update source selection. */
d62a17ae 563static int bgp_update_source(struct peer *peer)
718e3744 564{
d62a17ae 565 struct interface *ifp;
566 union sockunion addr;
567 int ret = 0;
718e3744 568
d62a17ae 569 sockunion_init(&addr);
dd793e4a 570
d62a17ae 571 /* Source is specified with interface name. */
572 if (peer->update_if) {
573 ifp = if_lookup_by_name(peer->update_if, peer->bgp->vrf_id);
574 if (!ifp)
575 return -1;
718e3744 576
d62a17ae 577 if (bgp_update_address(ifp, &peer->su, &addr))
578 return -1;
718e3744 579
d62a17ae 580 ret = sockunion_bind(peer->fd, &addr, 0, &addr);
581 }
718e3744 582
d62a17ae 583 /* Source is specified with IP address. */
584 if (peer->update_source)
585 ret = sockunion_bind(peer->fd, peer->update_source, 0,
586 peer->update_source);
49067496 587
d62a17ae 588 return ret;
718e3744 589}
590
ed40466a
DS
591#define DATAPLANE_MARK 254 /* main table ID */
592
718e3744 593/* BGP try to connect to the peer. */
d62a17ae 594int bgp_connect(struct peer *peer)
718e3744 595{
b750b0ba
QY
596 assert(!CHECK_FLAG(peer->thread_flags, PEER_THREAD_WRITES_ON));
597 assert(!CHECK_FLAG(peer->thread_flags, PEER_THREAD_READS_ON));
d62a17ae 598 ifindex_t ifindex = 0;
599
600 if (peer->conf_if && BGP_PEER_SU_UNSPEC(peer)) {
601 zlog_debug("Peer address not learnt: Returning from connect");
602 return 0;
603 }
01b9e3fd 604 frr_elevate_privs(&bgpd_privs) {
d62a17ae 605 /* Make socket for the peer. */
01b9e3fd
DL
606 peer->fd = vrf_sockunion_socket(&peer->su, peer->bgp->vrf_id,
607 bgp_get_bound_name(peer));
608 }
d62a17ae 609 if (peer->fd < 0)
610 return -1;
611
612 set_nonblocking(peer->fd);
613
614 /* Set socket send buffer size */
615 setsockopt_so_sendbuf(peer->fd, BGP_SOCKET_SNDBUF_SIZE);
616
617 if (bgp_set_socket_ttl(peer, peer->fd) < 0)
618 return -1;
619
620 sockopt_reuseaddr(peer->fd);
621 sockopt_reuseport(peer->fd);
622 if (sockopt_mark_default(peer->fd, DATAPLANE_MARK, &bgpd_privs) < 0)
e50f7cfd 623 flog_warn(EC_BGP_NO_SOCKOPT_MARK,
28f22e26 624 "Unable to set mark on FD for peer %s, err=%s",
d62a17ae 625 peer->host, safe_strerror(errno));
626
1423c809 627#ifdef IPTOS_PREC_INTERNETCONTROL
01b9e3fd
DL
628 frr_elevate_privs(&bgpd_privs) {
629 if (sockunion_family(&peer->su) == AF_INET)
633fc9b1
DL
630 setsockopt_ipv4_tos(peer->fd,
631 IPTOS_PREC_INTERNETCONTROL);
01b9e3fd 632 else if (sockunion_family(&peer->su) == AF_INET6)
633fc9b1
DL
633 setsockopt_ipv6_tclass(peer->fd,
634 IPTOS_PREC_INTERNETCONTROL);
01b9e3fd 635 }
1423c809
SH
636#endif
637
9e7d9a61
QY
638 if (peer->password) {
639 uint16_t prefixlen = peer->su.sa.sa_family == AF_INET
640 ? IPV4_MAX_PREFIXLEN
641 : IPV6_MAX_PREFIXLEN;
642
643 bgp_md5_set_connect(peer->fd, &peer->su, prefixlen,
644 peer->password);
645 }
718e3744 646
d62a17ae 647 /* Update source bind. */
648 if (bgp_update_source(peer) < 0) {
649 return connect_error;
650 }
718e3744 651
d62a17ae 652 if (peer->conf_if || peer->ifname)
653 ifindex = ifname2ifindex(peer->conf_if ? peer->conf_if
654 : peer->ifname,
655 peer->bgp->vrf_id);
718e3744 656
d62a17ae 657 if (bgp_debug_neighbor_events(peer))
658 zlog_debug("%s [Event] Connect start to %s fd %d", peer->host,
659 peer->host, peer->fd);
718e3744 660
d62a17ae 661 /* Connect to the remote peer. */
662 return sockunion_connect(peer->fd, &peer->su, htons(peer->port),
663 ifindex);
718e3744 664}
665
666/* After TCP connection is established. Get local address and port. */
d62a17ae 667int bgp_getsockname(struct peer *peer)
718e3744 668{
d62a17ae 669 if (peer->su_local) {
670 sockunion_free(peer->su_local);
671 peer->su_local = NULL;
672 }
673
674 if (peer->su_remote) {
675 sockunion_free(peer->su_remote);
676 peer->su_remote = NULL;
677 }
678
679 peer->su_local = sockunion_getsockname(peer->fd);
680 if (!peer->su_local)
681 return -1;
682 peer->su_remote = sockunion_getpeername(peer->fd);
683 if (!peer->su_remote)
684 return -1;
685
17cdd31e
DS
686 if (!bgp_zebra_nexthop_set(peer->su_local, peer->su_remote,
687 &peer->nexthop, peer)) {
2564f080 688 flog_err(EC_BGP_NH_UPD,
17cdd31e
DS
689 "%s: nexthop_set failed, resetting connection - intf %p",
690 peer->host, peer->nexthop.ifp);
d62a17ae 691 return -1;
d62a17ae 692 }
d62a17ae 693 return 0;
718e3744 694}
695
d023aec4 696
61cf4b37
PG
697static int bgp_listener(int sock, struct sockaddr *sa, socklen_t salen,
698 struct bgp *bgp)
d023aec4 699{
d62a17ae 700 struct bgp_listener *listener;
701 int ret, en;
d023aec4 702
d62a17ae 703 sockopt_reuseaddr(sock);
704 sockopt_reuseport(sock);
d023aec4 705
01b9e3fd 706 frr_elevate_privs(&bgpd_privs) {
5c88f19d 707
d023aec4 708#ifdef IPTOS_PREC_INTERNETCONTROL
01b9e3fd
DL
709 if (sa->sa_family == AF_INET)
710 setsockopt_ipv4_tos(sock, IPTOS_PREC_INTERNETCONTROL);
711 else if (sa->sa_family == AF_INET6)
633fc9b1
DL
712 setsockopt_ipv6_tclass(sock,
713 IPTOS_PREC_INTERNETCONTROL);
d023aec4
SH
714#endif
715
01b9e3fd 716 sockopt_v6only(sa->sa_family, sock);
d62a17ae 717
01b9e3fd
DL
718 ret = bind(sock, sa, salen);
719 en = errno;
720 }
d62a17ae 721
722 if (ret < 0) {
450971aa 723 flog_err_sys(EC_LIB_SOCKET, "bind: %s", safe_strerror(en));
d62a17ae 724 return ret;
725 }
726
48522088 727 ret = listen(sock, SOMAXCONN);
d62a17ae 728 if (ret < 0) {
1c50c1c0 729 flog_err_sys(EC_LIB_SOCKET, "listen: %s", safe_strerror(errno));
d62a17ae 730 return ret;
731 }
732
61cf4b37 733 listener = XCALLOC(MTYPE_BGP_LISTENER, sizeof(*listener));
d62a17ae 734 listener->fd = sock;
61cf4b37
PG
735
736 /* this socket needs a change of ns. record bgp back pointer */
81bd033c 737 if (bgp->vrf_id != VRF_DEFAULT && vrf_is_backend_netns())
61cf4b37
PG
738 listener->bgp = bgp;
739
d62a17ae 740 memcpy(&listener->su, sa, salen);
741 listener->thread = NULL;
742 thread_add_read(bm->master, bgp_accept, listener, sock,
743 &listener->thread);
744 listnode_add(bm->listen_sockets, listener);
745
746 return 0;
d023aec4
SH
747}
748
718e3744 749/* IPv6 supported version of BGP server socket setup. */
61cf4b37 750int bgp_socket(struct bgp *bgp, unsigned short port, const char *address)
718e3744 751{
d62a17ae 752 struct addrinfo *ainfo;
753 struct addrinfo *ainfo_save;
754 static const struct addrinfo req = {
755 .ai_family = AF_UNSPEC,
756 .ai_flags = AI_PASSIVE,
757 .ai_socktype = SOCK_STREAM,
758 };
759 int ret, count;
760 char port_str[BUFSIZ];
761
762 snprintf(port_str, sizeof(port_str), "%d", port);
763 port_str[sizeof(port_str) - 1] = '\0';
764
01b9e3fd
DL
765 frr_elevate_privs(&bgpd_privs) {
766 ret = vrf_getaddrinfo(address, port_str, &req, &ainfo_save,
767 bgp->vrf_id);
768 }
d62a17ae 769 if (ret != 0) {
450971aa 770 flog_err_sys(EC_LIB_SOCKET, "getaddrinfo: %s",
09c866e3 771 gai_strerror(ret));
d62a17ae 772 return -1;
773 }
0b014ea6 774 if (bgp_option_check(BGP_OPT_NO_ZEBRA) &&
449cff3e
A
775 bgp->vrf_id != VRF_DEFAULT) {
776 freeaddrinfo(ainfo_save);
0b014ea6 777 return -1;
449cff3e 778 }
d62a17ae 779 count = 0;
780 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next) {
781 int sock;
782
783 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
784 continue;
785
01b9e3fd
DL
786 frr_elevate_privs(&bgpd_privs) {
787 sock = vrf_socket(ainfo->ai_family,
788 ainfo->ai_socktype,
789 ainfo->ai_protocol, bgp->vrf_id,
633fc9b1
DL
790 (bgp->inst_type
791 == BGP_INSTANCE_TYPE_VRF
792 ? bgp->name : NULL));
01b9e3fd 793 }
d62a17ae 794 if (sock < 0) {
450971aa 795 flog_err_sys(EC_LIB_SOCKET, "socket: %s",
09c866e3 796 safe_strerror(errno));
d62a17ae 797 continue;
798 }
799
800 /* if we intend to implement ttl-security, this socket needs
801 * ttl=255 */
802 sockopt_ttl(ainfo->ai_family, sock, MAXTTL);
803
996c9314
LB
804 ret = bgp_listener(sock, ainfo->ai_addr, ainfo->ai_addrlen,
805 bgp);
d62a17ae 806 if (ret == 0)
807 ++count;
808 else
809 close(sock);
810 }
811 freeaddrinfo(ainfo_save);
06969768 812 if (count == 0 && bgp->inst_type != BGP_INSTANCE_TYPE_VRF) {
af4c2728 813 flog_err(
450971aa 814 EC_LIB_SOCKET,
996c9314
LB
815 "%s: no usable addresses please check other programs usage of specified port %d",
816 __func__, port);
450971aa 817 flog_err_sys(EC_LIB_SOCKET, "%s: Program cannot continue",
09c866e3 818 __func__);
b3b78f6e 819 exit(-1);
d62a17ae 820 }
821
822 return 0;
718e3744 823}
d023aec4 824
e5619c28
PG
825/* this function closes vrf socket
826 * this should be called only for vrf socket with netns backend
827 */
828void bgp_close_vrf_socket(struct bgp *bgp)
829{
830 struct listnode *node, *next;
831 struct bgp_listener *listener;
832
833 if (!bgp)
834 return;
835
836 if (bm->listen_sockets == NULL)
837 return;
838
839 for (ALL_LIST_ELEMENTS(bm->listen_sockets, node, next, listener)) {
840 if (listener->bgp == bgp) {
841 thread_cancel(listener->thread);
842 close(listener->fd);
843 listnode_delete(bm->listen_sockets, listener);
844 XFREE(MTYPE_BGP_LISTENER, listener);
845 }
846 }
847}
848
849/* this function closes main socket
850 */
d62a17ae 851void bgp_close(void)
d023aec4 852{
d62a17ae 853 struct listnode *node, *next;
854 struct bgp_listener *listener;
855
856 if (bm->listen_sockets == NULL)
857 return;
858
859 for (ALL_LIST_ELEMENTS(bm->listen_sockets, node, next, listener)) {
e5619c28
PG
860 if (listener->bgp)
861 continue;
d62a17ae 862 thread_cancel(listener->thread);
863 close(listener->fd);
864 listnode_delete(bm->listen_sockets, listener);
865 XFREE(MTYPE_BGP_LISTENER, listener);
866 }
d023aec4 867}