blob: 52c72b67670c4acf4786c6ed4bfccf5101178246 [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}
125
paul718e3742002-12-13 20:15:29 +0000126/* Accept bgp connection. */
127static int
128bgp_accept (struct thread *thread)
129{
130 int bgp_sock;
131 int accept_sock;
132 union sockunion su;
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700133 struct bgp_listener *listener = THREAD_ARG(thread);
paul718e3742002-12-13 20:15:29 +0000134 struct peer *peer;
pauleb821182004-05-01 08:44:08 +0000135 struct peer *peer1;
paul718e3742002-12-13 20:15:29 +0000136 char buf[SU_ADDRSTRLEN];
137
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700138 /* Register accept thread. */
paul718e3742002-12-13 20:15:29 +0000139 accept_sock = THREAD_FD (thread);
paul718e3742002-12-13 20:15:29 +0000140 if (accept_sock < 0)
141 {
142 zlog_err ("accept_sock is nevative value %d", accept_sock);
143 return -1;
144 }
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700145 listener->thread = thread_add_read (master, bgp_accept, listener, accept_sock);
paul718e3742002-12-13 20:15:29 +0000146
147 /* Accept client connection. */
148 bgp_sock = sockunion_accept (accept_sock, &su);
149 if (bgp_sock < 0)
150 {
ajs6099b3b2004-11-20 02:06:59 +0000151 zlog_err ("[Error] BGP socket accept failed (%s)", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000152 return -1;
153 }
Stephen Hemminger35398582010-08-05 10:26:23 -0700154 set_nonblocking (bgp_sock);
paul718e3742002-12-13 20:15:29 +0000155
156 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000157 zlog_debug ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
paul718e3742002-12-13 20:15:29 +0000158
159 /* Check remote IP address */
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700160 peer1 = peer_lookup (NULL, &su);
pauleb821182004-05-01 08:44:08 +0000161 if (! peer1 || peer1->status == Idle)
paul718e3742002-12-13 20:15:29 +0000162 {
163 if (BGP_DEBUG (events, EVENTS))
164 {
pauleb821182004-05-01 08:44:08 +0000165 if (! peer1)
ajs478ba052004-12-08 20:41:23 +0000166 zlog_debug ("[Event] BGP connection IP address %s is not configured",
paul718e3742002-12-13 20:15:29 +0000167 inet_sutop (&su, buf));
168 else
ajs478ba052004-12-08 20:41:23 +0000169 zlog_debug ("[Event] BGP connection IP address %s is Idle state",
paul718e3742002-12-13 20:15:29 +0000170 inet_sutop (&su, buf));
171 }
172 close (bgp_sock);
173 return -1;
174 }
175
176 /* In case of peer is EBGP, we should set TTL for this connection. */
Nick Hilliardfa411a22011-03-23 15:33:17 +0000177 if (peer_sort (peer1) == BGP_PEER_EBGP) {
pauleb821182004-05-01 08:44:08 +0000178 sockopt_ttl (peer1->su.sa.sa_family, bgp_sock, peer1->ttl);
Nick Hilliardfa411a22011-03-23 15:33:17 +0000179 if (peer1->gtsm_hops)
180 sockopt_minttl (peer1->su.sa.sa_family, bgp_sock, MAXTTL + 1 - peer1->gtsm_hops);
181 }
paul718e3742002-12-13 20:15:29 +0000182
pauleb821182004-05-01 08:44:08 +0000183 /* Make dummy peer until read Open packet. */
184 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000185 zlog_debug ("[Event] Make dummy peer structure until read Open packet");
pauleb821182004-05-01 08:44:08 +0000186
187 {
188 char buf[SU_ADDRSTRLEN + 1];
189
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700190 peer = peer_create_accept (peer1->bgp);
pauleb821182004-05-01 08:44:08 +0000191 SET_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER);
192 peer->su = su;
193 peer->fd = bgp_sock;
194 peer->status = Active;
195 peer->local_id = peer1->local_id;
Timo Teräse8eb0002009-02-17 12:14:23 +0200196 peer->v_holdtime = peer1->v_holdtime;
197 peer->v_keepalive = peer1->v_keepalive;
pauleb821182004-05-01 08:44:08 +0000198
199 /* Make peer's address string. */
200 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000201 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000202 }
paul718e3742002-12-13 20:15:29 +0000203
204 BGP_EVENT_ADD (peer, TCP_connection_open);
205
206 return 0;
207}
208
209/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000210static int
paul718e3742002-12-13 20:15:29 +0000211bgp_bind (struct peer *peer)
212{
213#ifdef SO_BINDTODEVICE
214 int ret;
215 struct ifreq ifreq;
216
217 if (! peer->ifname)
218 return 0;
219
220 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
221
paul98f51632004-10-25 14:19:15 +0000222 if ( bgpd_privs.change (ZPRIVS_RAISE) )
223 zlog_err ("bgp_bind: could not raise privs");
224
pauleb821182004-05-01 08:44:08 +0000225 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000226 &ifreq, sizeof (ifreq));
paul98f51632004-10-25 14:19:15 +0000227
228 if (bgpd_privs.change (ZPRIVS_LOWER) )
229 zlog_err ("bgp_bind: could not lower privs");
230
paul718e3742002-12-13 20:15:29 +0000231 if (ret < 0)
232 {
233 zlog (peer->log, LOG_INFO, "bind to interface %s failed", peer->ifname);
234 return ret;
235 }
236#endif /* SO_BINDTODEVICE */
237 return 0;
238}
239
paul94f2b392005-06-28 12:44:16 +0000240static int
paul718e3742002-12-13 20:15:29 +0000241bgp_bind_address (int sock, struct in_addr *addr)
242{
243 int ret;
244 struct sockaddr_in local;
245
246 memset (&local, 0, sizeof (struct sockaddr_in));
247 local.sin_family = AF_INET;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000248#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000249 local.sin_len = sizeof(struct sockaddr_in);
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000250#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000251 memcpy (&local.sin_addr, addr, sizeof (struct in_addr));
252
pauledd7c242003-06-04 13:59:38 +0000253 if ( bgpd_privs.change (ZPRIVS_RAISE) )
254 zlog_err ("bgp_bind_address: could not raise privs");
255
paul718e3742002-12-13 20:15:29 +0000256 ret = bind (sock, (struct sockaddr *)&local, sizeof (struct sockaddr_in));
257 if (ret < 0)
258 ;
pauledd7c242003-06-04 13:59:38 +0000259
260 if (bgpd_privs.change (ZPRIVS_LOWER) )
261 zlog_err ("bgp_bind_address: could not lower privs");
262
paul718e3742002-12-13 20:15:29 +0000263 return 0;
264}
265
paul94f2b392005-06-28 12:44:16 +0000266static struct in_addr *
paul718e3742002-12-13 20:15:29 +0000267bgp_update_address (struct interface *ifp)
268{
269 struct prefix_ipv4 *p;
270 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000271 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000272
paul1eb8ef22005-04-07 07:30:20 +0000273 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000274 {
paul718e3742002-12-13 20:15:29 +0000275 p = (struct prefix_ipv4 *) connected->address;
276
277 if (p->family == AF_INET)
278 return &p->prefix;
279 }
280 return NULL;
281}
282
283/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000284static void
paul718e3742002-12-13 20:15:29 +0000285bgp_update_source (struct peer *peer)
286{
287 struct interface *ifp;
288 struct in_addr *addr;
289
290 /* Source is specified with interface name. */
291 if (peer->update_if)
292 {
293 ifp = if_lookup_by_name (peer->update_if);
294 if (! ifp)
295 return;
296
297 addr = bgp_update_address (ifp);
298 if (! addr)
299 return;
300
pauleb821182004-05-01 08:44:08 +0000301 bgp_bind_address (peer->fd, addr);
paul718e3742002-12-13 20:15:29 +0000302 }
303
304 /* Source is specified with IP address. */
305 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000306 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000307}
308
309/* BGP try to connect to the peer. */
310int
311bgp_connect (struct peer *peer)
312{
313 unsigned int ifindex = 0;
314
315 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000316 peer->fd = sockunion_socket (&peer->su);
317 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000318 return -1;
319
320 /* If we can get socket for the peer, adjest TTL and make connection. */
Nick Hilliardfa411a22011-03-23 15:33:17 +0000321 if (peer_sort (peer) == BGP_PEER_EBGP) {
pauleb821182004-05-01 08:44:08 +0000322 sockopt_ttl (peer->su.sa.sa_family, peer->fd, peer->ttl);
Nick Hilliardfa411a22011-03-23 15:33:17 +0000323 if (peer->gtsm_hops)
324 sockopt_minttl (peer->su.sa.sa_family, peer->fd, MAXTTL + 1 - peer->gtsm_hops);
325 }
paul718e3742002-12-13 20:15:29 +0000326
pauleb821182004-05-01 08:44:08 +0000327 sockopt_reuseaddr (peer->fd);
328 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000329
Stephen Hemminger1423c802008-08-14 17:59:25 +0100330#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke5c88f192011-10-18 17:26:51 +0400331 if (bgpd_privs.change (ZPRIVS_RAISE))
332 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100333 if (sockunion_family (&peer->su) == AF_INET)
334 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400335# ifdef HAVE_IPV6
336 else if (sockunion_family (&peer->su) == AF_INET6)
337 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
338# endif
Chris Luke5c88f192011-10-18 17:26:51 +0400339 if (bgpd_privs.change (ZPRIVS_LOWER))
340 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100341#endif
342
Paul Jakma0df7c912008-07-21 21:02:49 +0000343 if (peer->password)
344 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000345
346 /* Bind socket. */
347 bgp_bind (peer);
348
349 /* Update source bind. */
350 bgp_update_source (peer);
351
352#ifdef HAVE_IPV6
353 if (peer->ifname)
354 ifindex = if_nametoindex (peer->ifname);
355#endif /* HAVE_IPV6 */
356
357 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000358 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000359 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000360
361 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000362 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000363}
364
365/* After TCP connection is established. Get local address and port. */
366void
367bgp_getsockname (struct peer *peer)
368{
369 if (peer->su_local)
370 {
paul22db9de2005-05-19 01:50:11 +0000371 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000372 peer->su_local = NULL;
373 }
374
375 if (peer->su_remote)
376 {
paul22db9de2005-05-19 01:50:11 +0000377 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000378 peer->su_remote = NULL;
379 }
380
pauleb821182004-05-01 08:44:08 +0000381 peer->su_local = sockunion_getsockname (peer->fd);
382 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000383
384 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
385}
386
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700387
388static int
389bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
390{
391 struct bgp_listener *listener;
392 int ret, en;
393
394 sockopt_reuseaddr (sock);
395 sockopt_reuseport (sock);
396
Chris Luke5c88f192011-10-18 17:26:51 +0400397 if (bgpd_privs.change (ZPRIVS_RAISE))
398 zlog_err ("%s: could not raise privs", __func__);
399
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700400#ifdef IPTOS_PREC_INTERNETCONTROL
401 if (sa->sa_family == AF_INET)
402 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400403# ifdef HAVE_IPV6
404 else if (sa->sa_family == AF_INET6)
405 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
406# endif
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700407#endif
408
409#ifdef IPV6_V6ONLY
410 /* Want only IPV6 on ipv6 socket (not mapped addresses) */
411 if (sa->sa_family == AF_INET6) {
412 int on = 1;
413 setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY,
414 (void *) &on, sizeof (on));
415 }
416#endif
417
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700418 ret = bind (sock, sa, salen);
419 en = errno;
Chris Luke5c88f192011-10-18 17:26:51 +0400420 if (bgpd_privs.change (ZPRIVS_LOWER))
421 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700422
423 if (ret < 0)
424 {
425 zlog_err ("bind: %s", safe_strerror (en));
426 return ret;
427 }
428
429 ret = listen (sock, 3);
430 if (ret < 0)
431 {
432 zlog_err ("listen: %s", safe_strerror (errno));
433 return ret;
434 }
435
436 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
437 listener->fd = sock;
438 memcpy(&listener->su, sa, salen);
439 listener->thread = thread_add_read (master, bgp_accept, listener, sock);
440 listnode_add (bm->listen_sockets, listener);
441
442 return 0;
443}
444
paul718e3742002-12-13 20:15:29 +0000445/* IPv6 supported version of BGP server socket setup. */
446#if defined (HAVE_IPV6) && ! defined (NRL)
447int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700448bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000449{
paul718e3742002-12-13 20:15:29 +0000450 struct addrinfo *ainfo;
451 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700452 static const struct addrinfo req = {
453 .ai_family = AF_UNSPEC,
454 .ai_flags = AI_PASSIVE,
455 .ai_socktype = SOCK_STREAM,
456 };
457 int ret, count;
paul718e3742002-12-13 20:15:29 +0000458 char port_str[BUFSIZ];
459
Paul Jakma90b68762008-01-29 17:26:34 +0000460 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000461 port_str[sizeof (port_str) - 1] = '\0';
462
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700463 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000464 if (ret != 0)
465 {
466 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
467 return -1;
468 }
469
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700470 count = 0;
471 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000472 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700473 int sock;
474
paul718e3742002-12-13 20:15:29 +0000475 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
476 continue;
477
478 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
479 if (sock < 0)
480 {
ajs6099b3b2004-11-20 02:06:59 +0000481 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000482 continue;
483 }
Nick Hilliardfa411a22011-03-23 15:33:17 +0000484
485 /* if we intend to implement ttl-security, this socket needs ttl=255 */
486 sockopt_ttl (ainfo->ai_family, sock, MAXTTL);
487
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700488 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
489 if (ret == 0)
490 ++count;
491 else
492 close(sock);
paul718e3742002-12-13 20:15:29 +0000493 }
paul718e3742002-12-13 20:15:29 +0000494 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700495 if (count == 0)
496 {
497 zlog_err ("%s: no usable addresses", __func__);
498 return -1;
499 }
paul718e3742002-12-13 20:15:29 +0000500
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700501 return 0;
paul718e3742002-12-13 20:15:29 +0000502}
503#else
504/* Traditional IPv4 only version. */
505int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700506bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000507{
508 int sock;
509 int socklen;
510 struct sockaddr_in sin;
hasso4a1a2712004-02-12 15:41:38 +0000511 int ret, en;
paul718e3742002-12-13 20:15:29 +0000512
513 sock = socket (AF_INET, SOCK_STREAM, 0);
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 return sock;
518 }
519
Nick Hilliardfa411a22011-03-23 15:33:17 +0000520 /* if we intend to implement ttl-security, this socket needs ttl=255 */
521 sockopt_ttl (AF_INET, sock, MAXTTL);
522
paul718e3742002-12-13 20:15:29 +0000523 memset (&sin, 0, sizeof (struct sockaddr_in));
paul718e3742002-12-13 20:15:29 +0000524 sin.sin_family = AF_INET;
525 sin.sin_port = htons (port);
526 socklen = sizeof (struct sockaddr_in);
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000527
Paul Jakma90b68762008-01-29 17:26:34 +0000528 if (address && ((ret = inet_aton(address, &sin.sin_addr)) < 1))
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000529 {
Paul Jakma90b68762008-01-29 17:26:34 +0000530 zlog_err("bgp_socket: could not parse ip address %s: %s",
531 address, safe_strerror (errno));
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000532 return ret;
533 }
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000534#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000535 sin.sin_len = socklen;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000536#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000537
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700538 ret = bgp_listener (sock, (struct sockaddr *) &sin, socklen);
paul718e3742002-12-13 20:15:29 +0000539 if (ret < 0)
540 {
paul718e3742002-12-13 20:15:29 +0000541 close (sock);
542 return ret;
543 }
paul718e3742002-12-13 20:15:29 +0000544 return sock;
545}
546#endif /* HAVE_IPV6 && !NRL */
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700547
548void
549bgp_close (void)
550{
551 struct listnode *node, *next;
552 struct bgp_listener *listener;
553
554 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
555 {
556 thread_cancel (listener->thread);
557 close (listener->fd);
558 listnode_delete (bm->listen_sockets, listener);
559 XFREE (MTYPE_BGP_LISTENER, listener);
560 }
561}