blob: c7d33890382cdec9453e3c79a76423833475df1d [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;
pauleb821182004-05-01 08:44:08 +0000254
255 /* Make peer's address string. */
256 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000257 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000258 }
paul718e3742002-12-13 20:15:29 +0000259
260 BGP_EVENT_ADD (peer, TCP_connection_open);
261
262 return 0;
263}
264
265/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000266static int
paul718e3742002-12-13 20:15:29 +0000267bgp_bind (struct peer *peer)
268{
269#ifdef SO_BINDTODEVICE
270 int ret;
271 struct ifreq ifreq;
Lou Berger056f3762013-04-10 12:30:04 -0700272 int myerrno;
paul718e3742002-12-13 20:15:29 +0000273
274 if (! peer->ifname)
275 return 0;
276
277 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
278
paul98f51632004-10-25 14:19:15 +0000279 if ( bgpd_privs.change (ZPRIVS_RAISE) )
280 zlog_err ("bgp_bind: could not raise privs");
281
pauleb821182004-05-01 08:44:08 +0000282 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000283 &ifreq, sizeof (ifreq));
Lou Berger056f3762013-04-10 12:30:04 -0700284 myerrno = errno;
285
paul98f51632004-10-25 14:19:15 +0000286 if (bgpd_privs.change (ZPRIVS_LOWER) )
287 zlog_err ("bgp_bind: could not lower privs");
288
paul718e3742002-12-13 20:15:29 +0000289 if (ret < 0)
290 {
Lou Berger056f3762013-04-10 12:30:04 -0700291 zlog (peer->log, LOG_INFO, "bind to interface %s failed, errno=%d",
292 peer->ifname, myerrno);
paul718e3742002-12-13 20:15:29 +0000293 return ret;
294 }
295#endif /* SO_BINDTODEVICE */
296 return 0;
297}
298
paul94f2b392005-06-28 12:44:16 +0000299static int
David Lamparter1727d2e2010-02-02 20:18:23 +0100300bgp_update_address (struct interface *ifp, const union sockunion *dst,
301 union sockunion *addr)
paul718e3742002-12-13 20:15:29 +0000302{
Timo Teräsc1c69e42015-05-22 13:40:57 +0300303 struct prefix *p, *sel, d;
paul718e3742002-12-13 20:15:29 +0000304 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000305 struct listnode *node;
David Lamparter1727d2e2010-02-02 20:18:23 +0100306 int common;
307
Timo Teräsc1c69e42015-05-22 13:40:57 +0300308 sockunion2hostprefix (dst, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100309 sel = NULL;
310 common = -1;
paul718e3742002-12-13 20:15:29 +0000311
paul1eb8ef22005-04-07 07:30:20 +0000312 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000313 {
David Lamparter1727d2e2010-02-02 20:18:23 +0100314 p = connected->address;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300315 if (p->family != d.family)
David Lamparter1727d2e2010-02-02 20:18:23 +0100316 continue;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300317 if (prefix_common_bits (p, &d) > common)
David Lamparter1727d2e2010-02-02 20:18:23 +0100318 {
319 sel = p;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300320 common = prefix_common_bits (sel, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100321 }
paul718e3742002-12-13 20:15:29 +0000322 }
David Lamparter1727d2e2010-02-02 20:18:23 +0100323
David Lamparter1727d2e2010-02-02 20:18:23 +0100324 if (!sel)
325 return 1;
326
327 prefix2sockunion (sel, addr);
328 return 0;
paul718e3742002-12-13 20:15:29 +0000329}
330
331/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000332static void
paul718e3742002-12-13 20:15:29 +0000333bgp_update_source (struct peer *peer)
334{
335 struct interface *ifp;
David Lamparter1727d2e2010-02-02 20:18:23 +0100336 union sockunion addr;
paul718e3742002-12-13 20:15:29 +0000337
338 /* Source is specified with interface name. */
339 if (peer->update_if)
340 {
341 ifp = if_lookup_by_name (peer->update_if);
342 if (! ifp)
343 return;
344
David Lamparter1727d2e2010-02-02 20:18:23 +0100345 if (bgp_update_address (ifp, &peer->su, &addr))
paul718e3742002-12-13 20:15:29 +0000346 return;
347
David Lamparter1727d2e2010-02-02 20:18:23 +0100348 sockunion_bind (peer->fd, &addr, 0, &addr);
paul718e3742002-12-13 20:15:29 +0000349 }
350
351 /* Source is specified with IP address. */
352 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000353 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000354}
355
356/* BGP try to connect to the peer. */
357int
358bgp_connect (struct peer *peer)
359{
Paul Jakma9099f9b2016-01-18 10:12:10 +0000360 ifindex_t ifindex = 0;
paul718e3742002-12-13 20:15:29 +0000361
362 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000363 peer->fd = sockunion_socket (&peer->su);
364 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000365 return -1;
366
Vipin Kumar48fc05f2014-01-09 00:31:22 +0000367 set_nonblocking (peer->fd);
368
Vipin Kumar3374bef2014-01-09 00:31:22 +0000369 /* Set socket send buffer size */
370 bgp_update_sock_send_buffer_size(peer->fd);
371
David Lamparteref0b0c32014-05-19 22:52:04 +0200372 bgp_set_socket_ttl (peer, peer->fd);
paul718e3742002-12-13 20:15:29 +0000373
pauleb821182004-05-01 08:44:08 +0000374 sockopt_reuseaddr (peer->fd);
375 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000376
Stephen Hemminger1423c802008-08-14 17:59:25 +0100377#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke5c88f192011-10-18 17:26:51 +0400378 if (bgpd_privs.change (ZPRIVS_RAISE))
379 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100380 if (sockunion_family (&peer->su) == AF_INET)
381 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400382 else if (sockunion_family (&peer->su) == AF_INET6)
383 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Chris Luke5c88f192011-10-18 17:26:51 +0400384 if (bgpd_privs.change (ZPRIVS_LOWER))
385 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100386#endif
387
Paul Jakma0df7c912008-07-21 21:02:49 +0000388 if (peer->password)
389 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000390
391 /* Bind socket. */
392 bgp_bind (peer);
393
394 /* Update source bind. */
395 bgp_update_source (peer);
396
paul718e3742002-12-13 20:15:29 +0000397 if (peer->ifname)
Feng Lu395828e2015-05-22 11:39:55 +0200398 ifindex = ifname2ifindex (peer->ifname);
paul718e3742002-12-13 20:15:29 +0000399
400 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000401 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000402 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000403
404 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000405 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000406}
407
408/* After TCP connection is established. Get local address and port. */
409void
410bgp_getsockname (struct peer *peer)
411{
412 if (peer->su_local)
413 {
paul22db9de2005-05-19 01:50:11 +0000414 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000415 peer->su_local = NULL;
416 }
417
418 if (peer->su_remote)
419 {
paul22db9de2005-05-19 01:50:11 +0000420 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000421 peer->su_remote = NULL;
422 }
423
pauleb821182004-05-01 08:44:08 +0000424 peer->su_local = sockunion_getsockname (peer->fd);
425 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000426
427 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
428}
429
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700430
431static int
432bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
433{
434 struct bgp_listener *listener;
435 int ret, en;
436
437 sockopt_reuseaddr (sock);
438 sockopt_reuseport (sock);
439
Chris Luke5c88f192011-10-18 17:26:51 +0400440 if (bgpd_privs.change (ZPRIVS_RAISE))
441 zlog_err ("%s: could not raise privs", __func__);
442
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700443#ifdef IPTOS_PREC_INTERNETCONTROL
444 if (sa->sa_family == AF_INET)
445 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400446 else if (sa->sa_family == AF_INET6)
447 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700448#endif
449
David Lamparterca051262009-10-04 16:21:49 +0200450 sockopt_v6only (sa->sa_family, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700451
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700452 ret = bind (sock, sa, salen);
453 en = errno;
Chris Luke5c88f192011-10-18 17:26:51 +0400454 if (bgpd_privs.change (ZPRIVS_LOWER))
455 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700456
457 if (ret < 0)
458 {
459 zlog_err ("bind: %s", safe_strerror (en));
460 return ret;
461 }
462
463 ret = listen (sock, 3);
464 if (ret < 0)
465 {
466 zlog_err ("listen: %s", safe_strerror (errno));
467 return ret;
468 }
469
470 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
471 listener->fd = sock;
472 memcpy(&listener->su, sa, salen);
Donald Sharp774914f2015-10-14 08:50:39 -0400473 listener->thread = thread_add_read (bm->master, bgp_accept, listener, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700474 listnode_add (bm->listen_sockets, listener);
475
476 return 0;
477}
478
paul718e3742002-12-13 20:15:29 +0000479/* IPv6 supported version of BGP server socket setup. */
paul718e3742002-12-13 20:15:29 +0000480int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700481bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000482{
paul718e3742002-12-13 20:15:29 +0000483 struct addrinfo *ainfo;
484 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700485 static const struct addrinfo req = {
486 .ai_family = AF_UNSPEC,
487 .ai_flags = AI_PASSIVE,
488 .ai_socktype = SOCK_STREAM,
489 };
490 int ret, count;
paul718e3742002-12-13 20:15:29 +0000491 char port_str[BUFSIZ];
492
Paul Jakma90b68762008-01-29 17:26:34 +0000493 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000494 port_str[sizeof (port_str) - 1] = '\0';
495
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700496 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000497 if (ret != 0)
498 {
499 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
500 return -1;
501 }
502
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700503 count = 0;
504 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000505 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700506 int sock;
507
paul718e3742002-12-13 20:15:29 +0000508 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
509 continue;
510
511 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
512 if (sock < 0)
513 {
ajs6099b3b2004-11-20 02:06:59 +0000514 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000515 continue;
516 }
Nick Hilliardfa411a22011-03-23 15:33:17 +0000517
518 /* if we intend to implement ttl-security, this socket needs ttl=255 */
519 sockopt_ttl (ainfo->ai_family, sock, MAXTTL);
520
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700521 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
522 if (ret == 0)
523 ++count;
524 else
525 close(sock);
paul718e3742002-12-13 20:15:29 +0000526 }
paul718e3742002-12-13 20:15:29 +0000527 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700528 if (count == 0)
529 {
530 zlog_err ("%s: no usable addresses", __func__);
531 return -1;
532 }
paul718e3742002-12-13 20:15:29 +0000533
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700534 return 0;
paul718e3742002-12-13 20:15:29 +0000535}
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700536
537void
538bgp_close (void)
539{
540 struct listnode *node, *next;
541 struct bgp_listener *listener;
542
543 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
544 {
545 thread_cancel (listener->thread);
546 close (listener->fd);
547 listnode_delete (bm->listen_sockets, listener);
548 XFREE (MTYPE_BGP_LISTENER, listener);
549 }
550}