blob: d86db3c8ac48cfd41066f60577e0675a39a81cf2 [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"
paul718e3742002-12-13 20:15:29 +000034
35#include "bgpd/bgpd.h"
36#include "bgpd/bgp_fsm.h"
37#include "bgpd/bgp_attr.h"
38#include "bgpd/bgp_debug.h"
39#include "bgpd/bgp_network.h"
pauledd7c242003-06-04 13:59:38 +000040
41extern struct zebra_privs_t bgpd_privs;
42
Stephen Hemmingerd023aec2009-07-21 16:27:21 -070043/* BGP listening socket. */
44struct bgp_listener
45{
46 int fd;
47 union sockunion su;
48 struct thread *thread;
49};
paul718e3742002-12-13 20:15:29 +000050
Paul Jakma0df7c912008-07-21 21:02:49 +000051/*
52 * Set MD5 key for the socket, for the given IPv4 peer address.
53 * If the password is NULL or zero-length, the option will be disabled.
54 */
55static int
56bgp_md5_set_socket (int socket, union sockunion *su, const char *password)
57{
58 int ret = -1;
59 int en = ENOSYS;
60
61 assert (socket >= 0);
62
63#if HAVE_DECL_TCP_MD5SIG
64 ret = sockopt_tcp_signature (socket, su, password);
65 en = errno;
66#endif /* HAVE_TCP_MD5SIG */
67
68 if (ret < 0)
69 zlog (NULL, LOG_WARNING, "can't set TCP_MD5SIG option on socket %d: %s",
70 socket, safe_strerror (en));
71
72 return ret;
73}
74
75/* Helper for bgp_connect */
76static int
77bgp_md5_set_connect (int socket, union sockunion *su, const char *password)
78{
79 int ret = -1;
80
81#if HAVE_DECL_TCP_MD5SIG
82 if ( bgpd_privs.change (ZPRIVS_RAISE) )
83 {
84 zlog_err ("%s: could not raise privs", __func__);
85 return ret;
86 }
87
88 ret = bgp_md5_set_socket (socket, su, password);
89
90 if (bgpd_privs.change (ZPRIVS_LOWER) )
91 zlog_err ("%s: could not lower privs", __func__);
92#endif /* HAVE_TCP_MD5SIG */
93
94 return ret;
95}
96
97int
98bgp_md5_set (struct peer *peer)
99{
100 struct listnode *node;
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700101 int ret = 0;
102 struct bgp_listener *listener;
Paul Jakma0df7c912008-07-21 21:02:49 +0000103
104 if ( bgpd_privs.change (ZPRIVS_RAISE) )
105 {
106 zlog_err ("%s: could not raise privs", __func__);
107 return -1;
108 }
109
110 /* Just set the password on the listen socket(s). Outbound connections
111 * are taken care of in bgp_connect() below.
112 */
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700113 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
114 if (listener->su.sa.sa_family == peer->su.sa.sa_family)
115 {
116 ret = bgp_md5_set_socket (listener->fd, &peer->su, peer->password);
117 break;
118 }
119
Paul Jakma0df7c912008-07-21 21:02:49 +0000120 if (bgpd_privs.change (ZPRIVS_LOWER) )
121 zlog_err ("%s: could not lower privs", __func__);
122
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700123 return ret;
Paul Jakma0df7c912008-07-21 21:02:49 +0000124}
Vipin Kumar3374bef2014-01-09 00:31:22 +0000125
126/* Update BGP socket send buffer size */
127static void
128bgp_update_sock_send_buffer_size (int fd)
129{
130 int size = BGP_SOCKET_SNDBUF_SIZE;
131 int optval;
132 socklen_t optlen = sizeof(optval);
133
134 if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &optval, &optlen) < 0)
135 {
136 zlog_err("getsockopt of SO_SNDBUF failed %s\n", safe_strerror(errno));
137 return;
138 }
139 if (optval < size)
140 {
141 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &size, sizeof(size)) < 0)
142 {
143 zlog_err("Couldn't increase send buffer: %s\n", safe_strerror(errno));
144 }
145 }
146}
147
paul718e3742002-12-13 20:15:29 +0000148/* Accept bgp connection. */
149static int
150bgp_accept (struct thread *thread)
151{
152 int bgp_sock;
153 int accept_sock;
154 union sockunion su;
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700155 struct bgp_listener *listener = THREAD_ARG(thread);
paul718e3742002-12-13 20:15:29 +0000156 struct peer *peer;
pauleb821182004-05-01 08:44:08 +0000157 struct peer *peer1;
paul718e3742002-12-13 20:15:29 +0000158 char buf[SU_ADDRSTRLEN];
159
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700160 /* Register accept thread. */
paul718e3742002-12-13 20:15:29 +0000161 accept_sock = THREAD_FD (thread);
paul718e3742002-12-13 20:15:29 +0000162 if (accept_sock < 0)
163 {
164 zlog_err ("accept_sock is nevative value %d", accept_sock);
165 return -1;
166 }
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700167 listener->thread = thread_add_read (master, bgp_accept, listener, accept_sock);
paul718e3742002-12-13 20:15:29 +0000168
169 /* Accept client connection. */
170 bgp_sock = sockunion_accept (accept_sock, &su);
171 if (bgp_sock < 0)
172 {
ajs6099b3b2004-11-20 02:06:59 +0000173 zlog_err ("[Error] BGP socket accept failed (%s)", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000174 return -1;
175 }
Stephen Hemminger35398582010-08-05 10:26:23 -0700176 set_nonblocking (bgp_sock);
paul718e3742002-12-13 20:15:29 +0000177
Vipin Kumar3374bef2014-01-09 00:31:22 +0000178 /* Set socket send buffer size */
179 bgp_update_sock_send_buffer_size(bgp_sock);
180
paul718e3742002-12-13 20:15:29 +0000181 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000182 zlog_debug ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
paul718e3742002-12-13 20:15:29 +0000183
184 /* Check remote IP address */
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700185 peer1 = peer_lookup (NULL, &su);
pauleb821182004-05-01 08:44:08 +0000186 if (! peer1 || peer1->status == Idle)
paul718e3742002-12-13 20:15:29 +0000187 {
188 if (BGP_DEBUG (events, EVENTS))
189 {
pauleb821182004-05-01 08:44:08 +0000190 if (! peer1)
ajs478ba052004-12-08 20:41:23 +0000191 zlog_debug ("[Event] BGP connection IP address %s is not configured",
paul718e3742002-12-13 20:15:29 +0000192 inet_sutop (&su, buf));
193 else
ajs478ba052004-12-08 20:41:23 +0000194 zlog_debug ("[Event] BGP connection IP address %s is Idle state",
paul718e3742002-12-13 20:15:29 +0000195 inet_sutop (&su, buf));
196 }
197 close (bgp_sock);
198 return -1;
199 }
200
201 /* In case of peer is EBGP, we should set TTL for this connection. */
Jorge Boncompte [DTI2]6d85b152012-05-07 16:52:54 +0000202 if (peer1->sort == BGP_PEER_EBGP) {
pauleb821182004-05-01 08:44:08 +0000203 sockopt_ttl (peer1->su.sa.sa_family, bgp_sock, peer1->ttl);
Nick Hilliardfa411a22011-03-23 15:33:17 +0000204 if (peer1->gtsm_hops)
205 sockopt_minttl (peer1->su.sa.sa_family, bgp_sock, MAXTTL + 1 - peer1->gtsm_hops);
206 }
paul718e3742002-12-13 20:15:29 +0000207
pauleb821182004-05-01 08:44:08 +0000208 /* Make dummy peer until read Open packet. */
209 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000210 zlog_debug ("[Event] Make dummy peer structure until read Open packet");
pauleb821182004-05-01 08:44:08 +0000211
212 {
Jorge Boncompte [DTI2]682ca042012-04-10 16:57:27 +0200213 char buf[SU_ADDRSTRLEN];
pauleb821182004-05-01 08:44:08 +0000214
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700215 peer = peer_create_accept (peer1->bgp);
pauleb821182004-05-01 08:44:08 +0000216 SET_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER);
217 peer->su = su;
218 peer->fd = bgp_sock;
219 peer->status = Active;
220 peer->local_id = peer1->local_id;
Timo Teräse8eb0002009-02-17 12:14:23 +0200221 peer->v_holdtime = peer1->v_holdtime;
222 peer->v_keepalive = peer1->v_keepalive;
pauleb821182004-05-01 08:44:08 +0000223
224 /* Make peer's address string. */
225 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000226 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000227 }
paul718e3742002-12-13 20:15:29 +0000228
229 BGP_EVENT_ADD (peer, TCP_connection_open);
230
231 return 0;
232}
233
234/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000235static int
paul718e3742002-12-13 20:15:29 +0000236bgp_bind (struct peer *peer)
237{
238#ifdef SO_BINDTODEVICE
239 int ret;
240 struct ifreq ifreq;
241
242 if (! peer->ifname)
243 return 0;
244
245 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
246
paul98f51632004-10-25 14:19:15 +0000247 if ( bgpd_privs.change (ZPRIVS_RAISE) )
248 zlog_err ("bgp_bind: could not raise privs");
249
pauleb821182004-05-01 08:44:08 +0000250 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000251 &ifreq, sizeof (ifreq));
paul98f51632004-10-25 14:19:15 +0000252
253 if (bgpd_privs.change (ZPRIVS_LOWER) )
254 zlog_err ("bgp_bind: could not lower privs");
255
paul718e3742002-12-13 20:15:29 +0000256 if (ret < 0)
257 {
258 zlog (peer->log, LOG_INFO, "bind to interface %s failed", peer->ifname);
259 return ret;
260 }
261#endif /* SO_BINDTODEVICE */
262 return 0;
263}
264
paul94f2b392005-06-28 12:44:16 +0000265static int
David Lamparter1727d2e2010-02-02 20:18:23 +0100266bgp_update_address (struct interface *ifp, const union sockunion *dst,
267 union sockunion *addr)
paul718e3742002-12-13 20:15:29 +0000268{
David Lamparter1727d2e2010-02-02 20:18:23 +0100269 struct prefix *p, *sel, *d;
paul718e3742002-12-13 20:15:29 +0000270 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000271 struct listnode *node;
David Lamparter1727d2e2010-02-02 20:18:23 +0100272 int common;
273
274 d = sockunion2hostprefix (dst);
275 sel = NULL;
276 common = -1;
paul718e3742002-12-13 20:15:29 +0000277
paul1eb8ef22005-04-07 07:30:20 +0000278 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000279 {
David Lamparter1727d2e2010-02-02 20:18:23 +0100280 p = connected->address;
281 if (p->family != d->family)
282 continue;
283 if (prefix_common_bits (p, d) > common)
284 {
285 sel = p;
286 common = prefix_common_bits (sel, d);
287 }
paul718e3742002-12-13 20:15:29 +0000288 }
David Lamparter1727d2e2010-02-02 20:18:23 +0100289
290 prefix_free (d);
291 if (!sel)
292 return 1;
293
294 prefix2sockunion (sel, addr);
295 return 0;
paul718e3742002-12-13 20:15:29 +0000296}
297
298/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000299static void
paul718e3742002-12-13 20:15:29 +0000300bgp_update_source (struct peer *peer)
301{
302 struct interface *ifp;
David Lamparter1727d2e2010-02-02 20:18:23 +0100303 union sockunion addr;
paul718e3742002-12-13 20:15:29 +0000304
305 /* Source is specified with interface name. */
306 if (peer->update_if)
307 {
308 ifp = if_lookup_by_name (peer->update_if);
309 if (! ifp)
310 return;
311
David Lamparter1727d2e2010-02-02 20:18:23 +0100312 if (bgp_update_address (ifp, &peer->su, &addr))
paul718e3742002-12-13 20:15:29 +0000313 return;
314
David Lamparter1727d2e2010-02-02 20:18:23 +0100315 sockunion_bind (peer->fd, &addr, 0, &addr);
paul718e3742002-12-13 20:15:29 +0000316 }
317
318 /* Source is specified with IP address. */
319 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000320 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000321}
322
323/* BGP try to connect to the peer. */
324int
325bgp_connect (struct peer *peer)
326{
327 unsigned int ifindex = 0;
328
329 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000330 peer->fd = sockunion_socket (&peer->su);
331 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000332 return -1;
333
Vipin Kumar48fc05f2014-01-09 00:31:22 +0000334 set_nonblocking (peer->fd);
335
Vipin Kumar3374bef2014-01-09 00:31:22 +0000336 /* Set socket send buffer size */
337 bgp_update_sock_send_buffer_size(peer->fd);
338
paul718e3742002-12-13 20:15:29 +0000339 /* If we can get socket for the peer, adjest TTL and make connection. */
Jorge Boncompte [DTI2]6d85b152012-05-07 16:52:54 +0000340 if (peer->sort == BGP_PEER_EBGP) {
pauleb821182004-05-01 08:44:08 +0000341 sockopt_ttl (peer->su.sa.sa_family, peer->fd, peer->ttl);
Nick Hilliardfa411a22011-03-23 15:33:17 +0000342 if (peer->gtsm_hops)
343 sockopt_minttl (peer->su.sa.sa_family, peer->fd, MAXTTL + 1 - peer->gtsm_hops);
344 }
paul718e3742002-12-13 20:15:29 +0000345
pauleb821182004-05-01 08:44:08 +0000346 sockopt_reuseaddr (peer->fd);
347 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000348
Stephen Hemminger1423c802008-08-14 17:59:25 +0100349#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke5c88f192011-10-18 17:26:51 +0400350 if (bgpd_privs.change (ZPRIVS_RAISE))
351 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100352 if (sockunion_family (&peer->su) == AF_INET)
353 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400354# ifdef HAVE_IPV6
355 else if (sockunion_family (&peer->su) == AF_INET6)
356 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
357# endif
Chris Luke5c88f192011-10-18 17:26:51 +0400358 if (bgpd_privs.change (ZPRIVS_LOWER))
359 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100360#endif
361
Paul Jakma0df7c912008-07-21 21:02:49 +0000362 if (peer->password)
363 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000364
365 /* Bind socket. */
366 bgp_bind (peer);
367
368 /* Update source bind. */
369 bgp_update_source (peer);
370
371#ifdef HAVE_IPV6
372 if (peer->ifname)
373 ifindex = if_nametoindex (peer->ifname);
374#endif /* HAVE_IPV6 */
375
376 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000377 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000378 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000379
380 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000381 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000382}
383
384/* After TCP connection is established. Get local address and port. */
385void
386bgp_getsockname (struct peer *peer)
387{
388 if (peer->su_local)
389 {
paul22db9de2005-05-19 01:50:11 +0000390 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000391 peer->su_local = NULL;
392 }
393
394 if (peer->su_remote)
395 {
paul22db9de2005-05-19 01:50:11 +0000396 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000397 peer->su_remote = NULL;
398 }
399
pauleb821182004-05-01 08:44:08 +0000400 peer->su_local = sockunion_getsockname (peer->fd);
401 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000402
403 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
404}
405
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700406
407static int
408bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
409{
410 struct bgp_listener *listener;
411 int ret, en;
412
413 sockopt_reuseaddr (sock);
414 sockopt_reuseport (sock);
415
Chris Luke5c88f192011-10-18 17:26:51 +0400416 if (bgpd_privs.change (ZPRIVS_RAISE))
417 zlog_err ("%s: could not raise privs", __func__);
418
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700419#ifdef IPTOS_PREC_INTERNETCONTROL
420 if (sa->sa_family == AF_INET)
421 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400422# ifdef HAVE_IPV6
423 else if (sa->sa_family == AF_INET6)
424 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
425# endif
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700426#endif
427
David Lamparterca051262009-10-04 16:21:49 +0200428 sockopt_v6only (sa->sa_family, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700429
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700430 ret = bind (sock, sa, salen);
431 en = errno;
Chris Luke5c88f192011-10-18 17:26:51 +0400432 if (bgpd_privs.change (ZPRIVS_LOWER))
433 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700434
435 if (ret < 0)
436 {
437 zlog_err ("bind: %s", safe_strerror (en));
438 return ret;
439 }
440
441 ret = listen (sock, 3);
442 if (ret < 0)
443 {
444 zlog_err ("listen: %s", safe_strerror (errno));
445 return ret;
446 }
447
448 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
449 listener->fd = sock;
450 memcpy(&listener->su, sa, salen);
451 listener->thread = thread_add_read (master, bgp_accept, listener, sock);
452 listnode_add (bm->listen_sockets, listener);
453
454 return 0;
455}
456
paul718e3742002-12-13 20:15:29 +0000457/* IPv6 supported version of BGP server socket setup. */
458#if defined (HAVE_IPV6) && ! defined (NRL)
459int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700460bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000461{
paul718e3742002-12-13 20:15:29 +0000462 struct addrinfo *ainfo;
463 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700464 static const struct addrinfo req = {
465 .ai_family = AF_UNSPEC,
466 .ai_flags = AI_PASSIVE,
467 .ai_socktype = SOCK_STREAM,
468 };
469 int ret, count;
paul718e3742002-12-13 20:15:29 +0000470 char port_str[BUFSIZ];
471
Paul Jakma90b68762008-01-29 17:26:34 +0000472 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000473 port_str[sizeof (port_str) - 1] = '\0';
474
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700475 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000476 if (ret != 0)
477 {
478 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
479 return -1;
480 }
481
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700482 count = 0;
483 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000484 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700485 int sock;
486
paul718e3742002-12-13 20:15:29 +0000487 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
488 continue;
489
490 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
491 if (sock < 0)
492 {
ajs6099b3b2004-11-20 02:06:59 +0000493 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000494 continue;
495 }
Nick Hilliardfa411a22011-03-23 15:33:17 +0000496
497 /* if we intend to implement ttl-security, this socket needs ttl=255 */
498 sockopt_ttl (ainfo->ai_family, sock, MAXTTL);
499
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700500 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
501 if (ret == 0)
502 ++count;
503 else
504 close(sock);
paul718e3742002-12-13 20:15:29 +0000505 }
paul718e3742002-12-13 20:15:29 +0000506 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700507 if (count == 0)
508 {
509 zlog_err ("%s: no usable addresses", __func__);
510 return -1;
511 }
paul718e3742002-12-13 20:15:29 +0000512
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700513 return 0;
paul718e3742002-12-13 20:15:29 +0000514}
515#else
516/* Traditional IPv4 only version. */
517int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700518bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000519{
520 int sock;
521 int socklen;
522 struct sockaddr_in sin;
hasso4a1a2712004-02-12 15:41:38 +0000523 int ret, en;
paul718e3742002-12-13 20:15:29 +0000524
525 sock = socket (AF_INET, SOCK_STREAM, 0);
526 if (sock < 0)
527 {
ajs6099b3b2004-11-20 02:06:59 +0000528 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000529 return sock;
530 }
531
Nick Hilliardfa411a22011-03-23 15:33:17 +0000532 /* if we intend to implement ttl-security, this socket needs ttl=255 */
533 sockopt_ttl (AF_INET, sock, MAXTTL);
534
paul718e3742002-12-13 20:15:29 +0000535 memset (&sin, 0, sizeof (struct sockaddr_in));
paul718e3742002-12-13 20:15:29 +0000536 sin.sin_family = AF_INET;
537 sin.sin_port = htons (port);
538 socklen = sizeof (struct sockaddr_in);
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000539
Paul Jakma90b68762008-01-29 17:26:34 +0000540 if (address && ((ret = inet_aton(address, &sin.sin_addr)) < 1))
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000541 {
Paul Jakma90b68762008-01-29 17:26:34 +0000542 zlog_err("bgp_socket: could not parse ip address %s: %s",
543 address, safe_strerror (errno));
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000544 return ret;
545 }
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000546#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000547 sin.sin_len = socklen;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000548#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000549
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700550 ret = bgp_listener (sock, (struct sockaddr *) &sin, socklen);
paul718e3742002-12-13 20:15:29 +0000551 if (ret < 0)
552 {
paul718e3742002-12-13 20:15:29 +0000553 close (sock);
554 return ret;
555 }
paul718e3742002-12-13 20:15:29 +0000556 return sock;
557}
558#endif /* HAVE_IPV6 && !NRL */
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700559
560void
561bgp_close (void)
562{
563 struct listnode *node, *next;
564 struct bgp_listener *listener;
565
566 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
567 {
568 thread_cancel (listener->thread);
569 close (listener->fd);
570 listnode_delete (bm->listen_sockets, listener);
571 XFREE (MTYPE_BGP_LISTENER, listener);
572 }
573}