blob: 885082fa7a3c4299abc05d2b122730c0c985b590 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP network related fucntions
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 "sockunion.h"
Paul Jakma0df7c912008-07-21 21:02:49 +000025#include "sockopt.h"
paul718e3742002-12-13 20:15:29 +000026#include "memory.h"
27#include "log.h"
28#include "if.h"
29#include "prefix.h"
30#include "command.h"
pauledd7c242003-06-04 13:59:38 +000031#include "privs.h"
Paul Jakma0df7c912008-07-21 21:02:49 +000032#include "linklist.h"
Paul Jakmafdbc8e72011-04-11 16:31:43 +010033#include "network.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_fsm.h"
38#include "bgpd/bgp_attr.h"
39#include "bgpd/bgp_debug.h"
40#include "bgpd/bgp_network.h"
pauledd7c242003-06-04 13:59:38 +000041
42extern struct zebra_privs_t bgpd_privs;
43
Stephen Hemmingerd023aec2009-07-21 16:27:21 -070044/* BGP listening socket. */
45struct bgp_listener
46{
47 int fd;
48 union sockunion su;
49 struct thread *thread;
50};
David Lamparter6b0655a2014-06-04 06:53:35 +020051
Paul Jakma0df7c912008-07-21 21:02:49 +000052/*
53 * Set MD5 key for the socket, for the given IPv4 peer address.
54 * If the password is NULL or zero-length, the option will be disabled.
55 */
56static int
57bgp_md5_set_socket (int socket, union sockunion *su, const char *password)
58{
59 int ret = -1;
60 int en = ENOSYS;
61
62 assert (socket >= 0);
63
64#if HAVE_DECL_TCP_MD5SIG
65 ret = sockopt_tcp_signature (socket, su, password);
66 en = errno;
67#endif /* HAVE_TCP_MD5SIG */
68
69 if (ret < 0)
70 zlog (NULL, LOG_WARNING, "can't set TCP_MD5SIG option on socket %d: %s",
71 socket, safe_strerror (en));
72
73 return ret;
74}
75
76/* Helper for bgp_connect */
77static int
78bgp_md5_set_connect (int socket, union sockunion *su, const char *password)
79{
80 int ret = -1;
81
82#if HAVE_DECL_TCP_MD5SIG
83 if ( bgpd_privs.change (ZPRIVS_RAISE) )
84 {
85 zlog_err ("%s: could not raise privs", __func__);
86 return ret;
87 }
88
89 ret = bgp_md5_set_socket (socket, su, password);
90
91 if (bgpd_privs.change (ZPRIVS_LOWER) )
92 zlog_err ("%s: could not lower privs", __func__);
93#endif /* HAVE_TCP_MD5SIG */
94
95 return ret;
96}
97
98int
99bgp_md5_set (struct peer *peer)
100{
101 struct listnode *node;
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700102 int ret = 0;
103 struct bgp_listener *listener;
Paul Jakma0df7c912008-07-21 21:02:49 +0000104
105 if ( bgpd_privs.change (ZPRIVS_RAISE) )
106 {
107 zlog_err ("%s: could not raise privs", __func__);
108 return -1;
109 }
110
111 /* Just set the password on the listen socket(s). Outbound connections
112 * are taken care of in bgp_connect() below.
113 */
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700114 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
115 if (listener->su.sa.sa_family == peer->su.sa.sa_family)
116 {
117 ret = bgp_md5_set_socket (listener->fd, &peer->su, peer->password);
118 break;
119 }
120
Paul Jakma0df7c912008-07-21 21:02:49 +0000121 if (bgpd_privs.change (ZPRIVS_LOWER) )
122 zlog_err ("%s: could not lower privs", __func__);
123
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700124 return ret;
Paul Jakma0df7c912008-07-21 21:02:49 +0000125}
Vipin Kumar3374bef2014-01-09 00:31:22 +0000126
127/* Update BGP socket send buffer size */
128static void
129bgp_update_sock_send_buffer_size (int fd)
130{
131 int size = BGP_SOCKET_SNDBUF_SIZE;
132 int optval;
133 socklen_t optlen = sizeof(optval);
134
135 if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &optval, &optlen) < 0)
136 {
137 zlog_err("getsockopt of SO_SNDBUF failed %s\n", safe_strerror(errno));
138 return;
139 }
140 if (optval < size)
141 {
142 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &size, sizeof(size)) < 0)
143 {
144 zlog_err("Couldn't increase send buffer: %s\n", safe_strerror(errno));
145 }
146 }
147}
148
Timo Teräse3443a22016-10-19 16:02:34 +0300149void
David Lamparteref0b0c32014-05-19 22:52:04 +0200150bgp_set_socket_ttl (struct peer *peer, int bgp_sock)
151{
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000152 char buf[INET_ADDRSTRLEN];
Timo Teräse3443a22016-10-19 16:02:34 +0300153 int ret, ttl, minttl;
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000154
Timo Teräse3443a22016-10-19 16:02:34 +0300155 if (bgp_sock < 0)
156 return;
157
158 if (peer->gtsm_hops)
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000159 {
Timo Teräse3443a22016-10-19 16:02:34 +0300160 ttl = 255;
161 minttl = 256 - peer->gtsm_hops;
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000162 }
Timo Teräse3443a22016-10-19 16:02:34 +0300163 else
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000164 {
Timo Teräse3443a22016-10-19 16:02:34 +0300165 ttl = peer_ttl (peer);
166 minttl = 0;
Pradosh Mohapatra5d804b42013-09-12 03:37:07 +0000167 }
Timo Teräse3443a22016-10-19 16:02:34 +0300168
169 ret = sockopt_ttl (peer->su.sa.sa_family, bgp_sock, ttl);
170 if (ret)
171 zlog_err ("%s: Can't set TxTTL on peer (rtrid %s) socket, err = %d",
172 __func__,
173 inet_ntop (AF_INET, &peer->remote_id, buf, sizeof(buf)),
174 errno);
175
176 ret = sockopt_minttl (peer->su.sa.sa_family, bgp_sock, minttl);
177 if (ret && (errno != ENOTSUP || minttl))
178 zlog_err ("%s: Can't set MinTTL on peer (rtrid %s) socket, err = %d",
179 __func__,
180 inet_ntop (AF_INET, &peer->remote_id, buf, sizeof(buf)),
181 errno);
David Lamparteref0b0c32014-05-19 22:52:04 +0200182}
183
paul718e3742002-12-13 20:15:29 +0000184/* Accept bgp connection. */
185static int
186bgp_accept (struct thread *thread)
187{
188 int bgp_sock;
189 int accept_sock;
190 union sockunion su;
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700191 struct bgp_listener *listener = THREAD_ARG(thread);
paul718e3742002-12-13 20:15:29 +0000192 struct peer *peer;
pauleb821182004-05-01 08:44:08 +0000193 struct peer *peer1;
paul718e3742002-12-13 20:15:29 +0000194 char buf[SU_ADDRSTRLEN];
195
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700196 /* Register accept thread. */
paul718e3742002-12-13 20:15:29 +0000197 accept_sock = THREAD_FD (thread);
paul718e3742002-12-13 20:15:29 +0000198 if (accept_sock < 0)
199 {
200 zlog_err ("accept_sock is nevative value %d", accept_sock);
201 return -1;
202 }
Donald Sharp774914f2015-10-14 08:50:39 -0400203 listener->thread = thread_add_read (bm->master, bgp_accept, listener, accept_sock);
paul718e3742002-12-13 20:15:29 +0000204
205 /* Accept client connection. */
206 bgp_sock = sockunion_accept (accept_sock, &su);
207 if (bgp_sock < 0)
208 {
ajs6099b3b2004-11-20 02:06:59 +0000209 zlog_err ("[Error] BGP socket accept failed (%s)", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000210 return -1;
211 }
Stephen Hemminger35398582010-08-05 10:26:23 -0700212 set_nonblocking (bgp_sock);
paul718e3742002-12-13 20:15:29 +0000213
Vipin Kumar3374bef2014-01-09 00:31:22 +0000214 /* Set socket send buffer size */
215 bgp_update_sock_send_buffer_size(bgp_sock);
216
paul718e3742002-12-13 20:15:29 +0000217 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000218 zlog_debug ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
paul718e3742002-12-13 20:15:29 +0000219
220 /* Check remote IP address */
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700221 peer1 = peer_lookup (NULL, &su);
pauleb821182004-05-01 08:44:08 +0000222 if (! peer1 || peer1->status == Idle)
paul718e3742002-12-13 20:15:29 +0000223 {
224 if (BGP_DEBUG (events, EVENTS))
225 {
pauleb821182004-05-01 08:44:08 +0000226 if (! peer1)
ajs478ba052004-12-08 20:41:23 +0000227 zlog_debug ("[Event] BGP connection IP address %s is not configured",
paul718e3742002-12-13 20:15:29 +0000228 inet_sutop (&su, buf));
229 else
ajs478ba052004-12-08 20:41:23 +0000230 zlog_debug ("[Event] BGP connection IP address %s is Idle state",
paul718e3742002-12-13 20:15:29 +0000231 inet_sutop (&su, buf));
232 }
233 close (bgp_sock);
234 return -1;
235 }
236
David Lamparteref0b0c32014-05-19 22:52:04 +0200237 bgp_set_socket_ttl (peer1, bgp_sock);
paul718e3742002-12-13 20:15:29 +0000238
pauleb821182004-05-01 08:44:08 +0000239 /* Make dummy peer until read Open packet. */
240 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000241 zlog_debug ("[Event] Make dummy peer structure until read Open packet");
pauleb821182004-05-01 08:44:08 +0000242
243 {
Jorge Boncompte [DTI2]682ca042012-04-10 16:57:27 +0200244 char buf[SU_ADDRSTRLEN];
pauleb821182004-05-01 08:44:08 +0000245
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700246 peer = peer_create_accept (peer1->bgp);
pauleb821182004-05-01 08:44:08 +0000247 SET_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER);
248 peer->su = su;
249 peer->fd = bgp_sock;
250 peer->status = Active;
251 peer->local_id = peer1->local_id;
Timo Teräse8eb0002009-02-17 12:14:23 +0200252 peer->v_holdtime = peer1->v_holdtime;
253 peer->v_keepalive = peer1->v_keepalive;
Paul Jakma2d81a7a2016-04-20 14:05:20 +0100254 peer->local_as = peer1->local_as;
255 peer->change_local_as = peer1->change_local_as;
pauleb821182004-05-01 08:44:08 +0000256
257 /* Make peer's address string. */
258 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000259 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000260 }
paul718e3742002-12-13 20:15:29 +0000261
262 BGP_EVENT_ADD (peer, TCP_connection_open);
263
264 return 0;
265}
266
267/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000268static int
paul718e3742002-12-13 20:15:29 +0000269bgp_bind (struct peer *peer)
270{
271#ifdef SO_BINDTODEVICE
272 int ret;
273 struct ifreq ifreq;
Lou Berger056f3762013-04-10 12:30:04 -0700274 int myerrno;
paul718e3742002-12-13 20:15:29 +0000275
276 if (! peer->ifname)
277 return 0;
278
279 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
280
paul98f51632004-10-25 14:19:15 +0000281 if ( bgpd_privs.change (ZPRIVS_RAISE) )
282 zlog_err ("bgp_bind: could not raise privs");
283
pauleb821182004-05-01 08:44:08 +0000284 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000285 &ifreq, sizeof (ifreq));
Lou Berger056f3762013-04-10 12:30:04 -0700286 myerrno = errno;
287
paul98f51632004-10-25 14:19:15 +0000288 if (bgpd_privs.change (ZPRIVS_LOWER) )
289 zlog_err ("bgp_bind: could not lower privs");
290
paul718e3742002-12-13 20:15:29 +0000291 if (ret < 0)
292 {
Lou Berger056f3762013-04-10 12:30:04 -0700293 zlog (peer->log, LOG_INFO, "bind to interface %s failed, errno=%d",
294 peer->ifname, myerrno);
paul718e3742002-12-13 20:15:29 +0000295 return ret;
296 }
297#endif /* SO_BINDTODEVICE */
298 return 0;
299}
300
paul94f2b392005-06-28 12:44:16 +0000301static int
David Lamparter1727d2e2010-02-02 20:18:23 +0100302bgp_update_address (struct interface *ifp, const union sockunion *dst,
303 union sockunion *addr)
paul718e3742002-12-13 20:15:29 +0000304{
Timo Teräsc1c69e42015-05-22 13:40:57 +0300305 struct prefix *p, *sel, d;
paul718e3742002-12-13 20:15:29 +0000306 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000307 struct listnode *node;
David Lamparter1727d2e2010-02-02 20:18:23 +0100308 int common;
309
Timo Teräsc1c69e42015-05-22 13:40:57 +0300310 sockunion2hostprefix (dst, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100311 sel = NULL;
312 common = -1;
paul718e3742002-12-13 20:15:29 +0000313
paul1eb8ef22005-04-07 07:30:20 +0000314 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000315 {
David Lamparter1727d2e2010-02-02 20:18:23 +0100316 p = connected->address;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300317 if (p->family != d.family)
David Lamparter1727d2e2010-02-02 20:18:23 +0100318 continue;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300319 if (prefix_common_bits (p, &d) > common)
David Lamparter1727d2e2010-02-02 20:18:23 +0100320 {
321 sel = p;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300322 common = prefix_common_bits (sel, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100323 }
paul718e3742002-12-13 20:15:29 +0000324 }
David Lamparter1727d2e2010-02-02 20:18:23 +0100325
David Lamparter1727d2e2010-02-02 20:18:23 +0100326 if (!sel)
327 return 1;
328
329 prefix2sockunion (sel, addr);
330 return 0;
paul718e3742002-12-13 20:15:29 +0000331}
332
333/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000334static void
paul718e3742002-12-13 20:15:29 +0000335bgp_update_source (struct peer *peer)
336{
337 struct interface *ifp;
David Lamparter1727d2e2010-02-02 20:18:23 +0100338 union sockunion addr;
paul718e3742002-12-13 20:15:29 +0000339
340 /* Source is specified with interface name. */
341 if (peer->update_if)
342 {
343 ifp = if_lookup_by_name (peer->update_if);
344 if (! ifp)
345 return;
346
David Lamparter1727d2e2010-02-02 20:18:23 +0100347 if (bgp_update_address (ifp, &peer->su, &addr))
paul718e3742002-12-13 20:15:29 +0000348 return;
349
David Lamparter1727d2e2010-02-02 20:18:23 +0100350 sockunion_bind (peer->fd, &addr, 0, &addr);
paul718e3742002-12-13 20:15:29 +0000351 }
352
353 /* Source is specified with IP address. */
354 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000355 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000356}
357
358/* BGP try to connect to the peer. */
359int
360bgp_connect (struct peer *peer)
361{
Paul Jakma9099f9b2016-01-18 10:12:10 +0000362 ifindex_t ifindex = 0;
paul718e3742002-12-13 20:15:29 +0000363
364 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000365 peer->fd = sockunion_socket (&peer->su);
366 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000367 return -1;
368
Vipin Kumar48fc05f2014-01-09 00:31:22 +0000369 set_nonblocking (peer->fd);
370
Vipin Kumar3374bef2014-01-09 00:31:22 +0000371 /* Set socket send buffer size */
372 bgp_update_sock_send_buffer_size(peer->fd);
373
David Lamparteref0b0c32014-05-19 22:52:04 +0200374 bgp_set_socket_ttl (peer, peer->fd);
paul718e3742002-12-13 20:15:29 +0000375
pauleb821182004-05-01 08:44:08 +0000376 sockopt_reuseaddr (peer->fd);
377 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000378
Stephen Hemminger1423c802008-08-14 17:59:25 +0100379#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke5c88f192011-10-18 17:26:51 +0400380 if (bgpd_privs.change (ZPRIVS_RAISE))
381 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100382 if (sockunion_family (&peer->su) == AF_INET)
383 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400384 else if (sockunion_family (&peer->su) == AF_INET6)
385 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Chris Luke5c88f192011-10-18 17:26:51 +0400386 if (bgpd_privs.change (ZPRIVS_LOWER))
387 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100388#endif
389
Paul Jakma0df7c912008-07-21 21:02:49 +0000390 if (peer->password)
391 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000392
393 /* Bind socket. */
394 bgp_bind (peer);
395
396 /* Update source bind. */
397 bgp_update_source (peer);
398
paul718e3742002-12-13 20:15:29 +0000399 if (peer->ifname)
Feng Lu395828e2015-05-22 11:39:55 +0200400 ifindex = ifname2ifindex (peer->ifname);
paul718e3742002-12-13 20:15:29 +0000401
402 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000403 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000404 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000405
406 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000407 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000408}
409
410/* After TCP connection is established. Get local address and port. */
411void
412bgp_getsockname (struct peer *peer)
413{
414 if (peer->su_local)
415 {
paul22db9de2005-05-19 01:50:11 +0000416 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000417 peer->su_local = NULL;
418 }
419
420 if (peer->su_remote)
421 {
paul22db9de2005-05-19 01:50:11 +0000422 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000423 peer->su_remote = NULL;
424 }
425
pauleb821182004-05-01 08:44:08 +0000426 peer->su_local = sockunion_getsockname (peer->fd);
427 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000428
429 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
430}
431
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700432
433static int
434bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
435{
436 struct bgp_listener *listener;
437 int ret, en;
438
439 sockopt_reuseaddr (sock);
440 sockopt_reuseport (sock);
441
Chris Luke5c88f192011-10-18 17:26:51 +0400442 if (bgpd_privs.change (ZPRIVS_RAISE))
443 zlog_err ("%s: could not raise privs", __func__);
444
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700445#ifdef IPTOS_PREC_INTERNETCONTROL
446 if (sa->sa_family == AF_INET)
447 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400448 else if (sa->sa_family == AF_INET6)
449 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700450#endif
451
David Lamparterca051262009-10-04 16:21:49 +0200452 sockopt_v6only (sa->sa_family, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700453
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700454 ret = bind (sock, sa, salen);
455 en = errno;
Chris Luke5c88f192011-10-18 17:26:51 +0400456 if (bgpd_privs.change (ZPRIVS_LOWER))
457 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700458
459 if (ret < 0)
460 {
461 zlog_err ("bind: %s", safe_strerror (en));
462 return ret;
463 }
464
465 ret = listen (sock, 3);
466 if (ret < 0)
467 {
468 zlog_err ("listen: %s", safe_strerror (errno));
469 return ret;
470 }
471
472 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
473 listener->fd = sock;
474 memcpy(&listener->su, sa, salen);
Donald Sharp774914f2015-10-14 08:50:39 -0400475 listener->thread = thread_add_read (bm->master, bgp_accept, listener, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700476 listnode_add (bm->listen_sockets, listener);
477
478 return 0;
479}
480
paul718e3742002-12-13 20:15:29 +0000481/* IPv6 supported version of BGP server socket setup. */
paul718e3742002-12-13 20:15:29 +0000482int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700483bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000484{
paul718e3742002-12-13 20:15:29 +0000485 struct addrinfo *ainfo;
486 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700487 static const struct addrinfo req = {
488 .ai_family = AF_UNSPEC,
489 .ai_flags = AI_PASSIVE,
490 .ai_socktype = SOCK_STREAM,
491 };
492 int ret, count;
paul718e3742002-12-13 20:15:29 +0000493 char port_str[BUFSIZ];
494
Paul Jakma90b68762008-01-29 17:26:34 +0000495 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000496 port_str[sizeof (port_str) - 1] = '\0';
497
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700498 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000499 if (ret != 0)
500 {
501 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
502 return -1;
503 }
504
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700505 count = 0;
506 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000507 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700508 int sock;
509
paul718e3742002-12-13 20:15:29 +0000510 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
511 continue;
512
513 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
514 if (sock < 0)
515 {
ajs6099b3b2004-11-20 02:06:59 +0000516 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000517 continue;
518 }
Nick Hilliardfa411a22011-03-23 15:33:17 +0000519
520 /* if we intend to implement ttl-security, this socket needs ttl=255 */
521 sockopt_ttl (ainfo->ai_family, sock, MAXTTL);
522
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700523 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
524 if (ret == 0)
525 ++count;
526 else
527 close(sock);
paul718e3742002-12-13 20:15:29 +0000528 }
paul718e3742002-12-13 20:15:29 +0000529 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700530 if (count == 0)
531 {
532 zlog_err ("%s: no usable addresses", __func__);
533 return -1;
534 }
paul718e3742002-12-13 20:15:29 +0000535
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700536 return 0;
paul718e3742002-12-13 20:15:29 +0000537}
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700538
539void
540bgp_close (void)
541{
542 struct listnode *node, *next;
543 struct bgp_listener *listener;
544
545 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
546 {
547 thread_cancel (listener->thread);
548 close (listener->fd);
549 listnode_delete (bm->listen_sockets, listener);
550 XFREE (MTYPE_BGP_LISTENER, listener);
551 }
552}