blob: 3355316c36f9f5ff1245846396a1087a60571109 [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"
paul718e3742002-12-13 20:15:29 +000033
34#include "bgpd/bgpd.h"
35#include "bgpd/bgp_fsm.h"
36#include "bgpd/bgp_attr.h"
37#include "bgpd/bgp_debug.h"
38#include "bgpd/bgp_network.h"
pauledd7c242003-06-04 13:59:38 +000039
40extern struct zebra_privs_t bgpd_privs;
41
Stephen Hemmingerd023aec2009-07-21 16:27:21 -070042/* BGP listening socket. */
43struct bgp_listener
44{
45 int fd;
46 union sockunion su;
47 struct thread *thread;
48};
paul718e3742002-12-13 20:15:29 +000049
Paul Jakma0df7c912008-07-21 21:02:49 +000050/*
51 * Set MD5 key for the socket, for the given IPv4 peer address.
52 * If the password is NULL or zero-length, the option will be disabled.
53 */
54static int
55bgp_md5_set_socket (int socket, union sockunion *su, const char *password)
56{
57 int ret = -1;
58 int en = ENOSYS;
59
60 assert (socket >= 0);
61
62#if HAVE_DECL_TCP_MD5SIG
63 ret = sockopt_tcp_signature (socket, su, password);
64 en = errno;
65#endif /* HAVE_TCP_MD5SIG */
66
67 if (ret < 0)
68 zlog (NULL, LOG_WARNING, "can't set TCP_MD5SIG option on socket %d: %s",
69 socket, safe_strerror (en));
70
71 return ret;
72}
73
74/* Helper for bgp_connect */
75static int
76bgp_md5_set_connect (int socket, union sockunion *su, const char *password)
77{
78 int ret = -1;
79
80#if HAVE_DECL_TCP_MD5SIG
81 if ( bgpd_privs.change (ZPRIVS_RAISE) )
82 {
83 zlog_err ("%s: could not raise privs", __func__);
84 return ret;
85 }
86
87 ret = bgp_md5_set_socket (socket, su, password);
88
89 if (bgpd_privs.change (ZPRIVS_LOWER) )
90 zlog_err ("%s: could not lower privs", __func__);
91#endif /* HAVE_TCP_MD5SIG */
92
93 return ret;
94}
95
96int
97bgp_md5_set (struct peer *peer)
98{
99 struct listnode *node;
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700100 int ret = 0;
101 struct bgp_listener *listener;
Paul Jakma0df7c912008-07-21 21:02:49 +0000102
103 if ( bgpd_privs.change (ZPRIVS_RAISE) )
104 {
105 zlog_err ("%s: could not raise privs", __func__);
106 return -1;
107 }
108
109 /* Just set the password on the listen socket(s). Outbound connections
110 * are taken care of in bgp_connect() below.
111 */
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700112 for (ALL_LIST_ELEMENTS_RO(bm->listen_sockets, node, listener))
113 if (listener->su.sa.sa_family == peer->su.sa.sa_family)
114 {
115 ret = bgp_md5_set_socket (listener->fd, &peer->su, peer->password);
116 break;
117 }
118
Paul Jakma0df7c912008-07-21 21:02:49 +0000119 if (bgpd_privs.change (ZPRIVS_LOWER) )
120 zlog_err ("%s: could not lower privs", __func__);
121
Stephen Hemmingerd1c21ca2009-08-25 10:18:15 -0700122 return ret;
Paul Jakma0df7c912008-07-21 21:02:49 +0000123}
124
paul718e3742002-12-13 20:15:29 +0000125/* Accept bgp connection. */
126static int
127bgp_accept (struct thread *thread)
128{
129 int bgp_sock;
130 int accept_sock;
131 union sockunion su;
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700132 struct bgp_listener *listener = THREAD_ARG(thread);
paul718e3742002-12-13 20:15:29 +0000133 struct peer *peer;
pauleb821182004-05-01 08:44:08 +0000134 struct peer *peer1;
paul718e3742002-12-13 20:15:29 +0000135 char buf[SU_ADDRSTRLEN];
136
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700137 /* Register accept thread. */
paul718e3742002-12-13 20:15:29 +0000138 accept_sock = THREAD_FD (thread);
paul718e3742002-12-13 20:15:29 +0000139 if (accept_sock < 0)
140 {
141 zlog_err ("accept_sock is nevative value %d", accept_sock);
142 return -1;
143 }
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700144 listener->thread = thread_add_read (master, bgp_accept, listener, accept_sock);
paul718e3742002-12-13 20:15:29 +0000145
146 /* Accept client connection. */
147 bgp_sock = sockunion_accept (accept_sock, &su);
148 if (bgp_sock < 0)
149 {
ajs6099b3b2004-11-20 02:06:59 +0000150 zlog_err ("[Error] BGP socket accept failed (%s)", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000151 return -1;
152 }
153
154 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000155 zlog_debug ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
paul718e3742002-12-13 20:15:29 +0000156
157 /* Check remote IP address */
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700158 peer1 = peer_lookup (NULL, &su);
pauleb821182004-05-01 08:44:08 +0000159 if (! peer1 || peer1->status == Idle)
paul718e3742002-12-13 20:15:29 +0000160 {
161 if (BGP_DEBUG (events, EVENTS))
162 {
pauleb821182004-05-01 08:44:08 +0000163 if (! peer1)
ajs478ba052004-12-08 20:41:23 +0000164 zlog_debug ("[Event] BGP connection IP address %s is not configured",
paul718e3742002-12-13 20:15:29 +0000165 inet_sutop (&su, buf));
166 else
ajs478ba052004-12-08 20:41:23 +0000167 zlog_debug ("[Event] BGP connection IP address %s is Idle state",
paul718e3742002-12-13 20:15:29 +0000168 inet_sutop (&su, buf));
169 }
170 close (bgp_sock);
171 return -1;
172 }
173
174 /* In case of peer is EBGP, we should set TTL for this connection. */
pauleb821182004-05-01 08:44:08 +0000175 if (peer_sort (peer1) == BGP_PEER_EBGP)
176 sockopt_ttl (peer1->su.sa.sa_family, bgp_sock, peer1->ttl);
paul718e3742002-12-13 20:15:29 +0000177
pauleb821182004-05-01 08:44:08 +0000178 /* Make dummy peer until read Open packet. */
179 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000180 zlog_debug ("[Event] Make dummy peer structure until read Open packet");
pauleb821182004-05-01 08:44:08 +0000181
182 {
183 char buf[SU_ADDRSTRLEN + 1];
184
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700185 peer = peer_create_accept (peer1->bgp);
pauleb821182004-05-01 08:44:08 +0000186 SET_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER);
187 peer->su = su;
188 peer->fd = bgp_sock;
189 peer->status = Active;
190 peer->local_id = peer1->local_id;
Timo Teräse8eb0002009-02-17 12:14:23 +0200191 peer->v_holdtime = peer1->v_holdtime;
192 peer->v_keepalive = peer1->v_keepalive;
pauleb821182004-05-01 08:44:08 +0000193
194 /* Make peer's address string. */
195 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000196 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000197 }
paul718e3742002-12-13 20:15:29 +0000198
199 BGP_EVENT_ADD (peer, TCP_connection_open);
200
201 return 0;
202}
203
204/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000205static int
paul718e3742002-12-13 20:15:29 +0000206bgp_bind (struct peer *peer)
207{
208#ifdef SO_BINDTODEVICE
209 int ret;
210 struct ifreq ifreq;
211
212 if (! peer->ifname)
213 return 0;
214
215 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
216
paul98f51632004-10-25 14:19:15 +0000217 if ( bgpd_privs.change (ZPRIVS_RAISE) )
218 zlog_err ("bgp_bind: could not raise privs");
219
pauleb821182004-05-01 08:44:08 +0000220 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000221 &ifreq, sizeof (ifreq));
paul98f51632004-10-25 14:19:15 +0000222
223 if (bgpd_privs.change (ZPRIVS_LOWER) )
224 zlog_err ("bgp_bind: could not lower privs");
225
paul718e3742002-12-13 20:15:29 +0000226 if (ret < 0)
227 {
228 zlog (peer->log, LOG_INFO, "bind to interface %s failed", peer->ifname);
229 return ret;
230 }
231#endif /* SO_BINDTODEVICE */
232 return 0;
233}
234
paul94f2b392005-06-28 12:44:16 +0000235static int
paul718e3742002-12-13 20:15:29 +0000236bgp_bind_address (int sock, struct in_addr *addr)
237{
238 int ret;
239 struct sockaddr_in local;
240
241 memset (&local, 0, sizeof (struct sockaddr_in));
242 local.sin_family = AF_INET;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000243#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000244 local.sin_len = sizeof(struct sockaddr_in);
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000245#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000246 memcpy (&local.sin_addr, addr, sizeof (struct in_addr));
247
pauledd7c242003-06-04 13:59:38 +0000248 if ( bgpd_privs.change (ZPRIVS_RAISE) )
249 zlog_err ("bgp_bind_address: could not raise privs");
250
paul718e3742002-12-13 20:15:29 +0000251 ret = bind (sock, (struct sockaddr *)&local, sizeof (struct sockaddr_in));
252 if (ret < 0)
253 ;
pauledd7c242003-06-04 13:59:38 +0000254
255 if (bgpd_privs.change (ZPRIVS_LOWER) )
256 zlog_err ("bgp_bind_address: could not lower privs");
257
paul718e3742002-12-13 20:15:29 +0000258 return 0;
259}
260
paul94f2b392005-06-28 12:44:16 +0000261static struct in_addr *
paul718e3742002-12-13 20:15:29 +0000262bgp_update_address (struct interface *ifp)
263{
264 struct prefix_ipv4 *p;
265 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000266 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000267
paul1eb8ef22005-04-07 07:30:20 +0000268 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000269 {
paul718e3742002-12-13 20:15:29 +0000270 p = (struct prefix_ipv4 *) connected->address;
271
272 if (p->family == AF_INET)
273 return &p->prefix;
274 }
275 return NULL;
276}
277
278/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000279static void
paul718e3742002-12-13 20:15:29 +0000280bgp_update_source (struct peer *peer)
281{
282 struct interface *ifp;
283 struct in_addr *addr;
284
285 /* Source is specified with interface name. */
286 if (peer->update_if)
287 {
288 ifp = if_lookup_by_name (peer->update_if);
289 if (! ifp)
290 return;
291
292 addr = bgp_update_address (ifp);
293 if (! addr)
294 return;
295
pauleb821182004-05-01 08:44:08 +0000296 bgp_bind_address (peer->fd, addr);
paul718e3742002-12-13 20:15:29 +0000297 }
298
299 /* Source is specified with IP address. */
300 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000301 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000302}
303
304/* BGP try to connect to the peer. */
305int
306bgp_connect (struct peer *peer)
307{
308 unsigned int ifindex = 0;
309
310 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000311 peer->fd = sockunion_socket (&peer->su);
312 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000313 return -1;
314
315 /* If we can get socket for the peer, adjest TTL and make connection. */
316 if (peer_sort (peer) == BGP_PEER_EBGP)
pauleb821182004-05-01 08:44:08 +0000317 sockopt_ttl (peer->su.sa.sa_family, peer->fd, peer->ttl);
paul718e3742002-12-13 20:15:29 +0000318
pauleb821182004-05-01 08:44:08 +0000319 sockopt_reuseaddr (peer->fd);
320 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000321
Stephen Hemminger1423c802008-08-14 17:59:25 +0100322#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke90d181b2011-10-18 17:26:51 +0400323 if (bgpd_privs.change (ZPRIVS_RAISE))
324 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100325 if (sockunion_family (&peer->su) == AF_INET)
326 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemmingerd1e2faa2011-09-28 14:23:35 +0400327# ifdef HAVE_IPV6
328 else if (sockunion_family (&peer->su) == AF_INET6)
329 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
330# endif
Chris Luke90d181b2011-10-18 17:26:51 +0400331 if (bgpd_privs.change (ZPRIVS_LOWER))
332 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100333#endif
334
Paul Jakma0df7c912008-07-21 21:02:49 +0000335 if (peer->password)
336 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000337
338 /* Bind socket. */
339 bgp_bind (peer);
340
341 /* Update source bind. */
342 bgp_update_source (peer);
343
344#ifdef HAVE_IPV6
345 if (peer->ifname)
346 ifindex = if_nametoindex (peer->ifname);
347#endif /* HAVE_IPV6 */
348
349 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000350 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000351 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000352
353 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000354 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000355}
356
357/* After TCP connection is established. Get local address and port. */
358void
359bgp_getsockname (struct peer *peer)
360{
361 if (peer->su_local)
362 {
paul22db9de2005-05-19 01:50:11 +0000363 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000364 peer->su_local = NULL;
365 }
366
367 if (peer->su_remote)
368 {
paul22db9de2005-05-19 01:50:11 +0000369 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000370 peer->su_remote = NULL;
371 }
372
pauleb821182004-05-01 08:44:08 +0000373 peer->su_local = sockunion_getsockname (peer->fd);
374 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000375
376 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
377}
378
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700379
380static int
381bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
382{
383 struct bgp_listener *listener;
384 int ret, en;
385
386 sockopt_reuseaddr (sock);
387 sockopt_reuseport (sock);
388
Chris Luke90d181b2011-10-18 17:26:51 +0400389 if (bgpd_privs.change (ZPRIVS_RAISE))
390 zlog_err ("%s: could not raise privs", __func__);
391
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700392#ifdef IPTOS_PREC_INTERNETCONTROL
393 if (sa->sa_family == AF_INET)
394 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemmingerd1e2faa2011-09-28 14:23:35 +0400395# ifdef HAVE_IPV6
396 else if (sa->sa_family == AF_INET6)
397 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
398# endif
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700399#endif
400
401#ifdef IPV6_V6ONLY
402 /* Want only IPV6 on ipv6 socket (not mapped addresses) */
403 if (sa->sa_family == AF_INET6) {
404 int on = 1;
405 setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY,
406 (void *) &on, sizeof (on));
407 }
408#endif
409
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700410 ret = bind (sock, sa, salen);
411 en = errno;
Chris Luke90d181b2011-10-18 17:26:51 +0400412 if (bgpd_privs.change (ZPRIVS_LOWER))
413 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700414
415 if (ret < 0)
416 {
417 zlog_err ("bind: %s", safe_strerror (en));
418 return ret;
419 }
420
421 ret = listen (sock, 3);
422 if (ret < 0)
423 {
424 zlog_err ("listen: %s", safe_strerror (errno));
425 return ret;
426 }
427
428 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
429 listener->fd = sock;
430 memcpy(&listener->su, sa, salen);
431 listener->thread = thread_add_read (master, bgp_accept, listener, sock);
432 listnode_add (bm->listen_sockets, listener);
433
434 return 0;
435}
436
paul718e3742002-12-13 20:15:29 +0000437/* IPv6 supported version of BGP server socket setup. */
438#if defined (HAVE_IPV6) && ! defined (NRL)
439int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700440bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000441{
paul718e3742002-12-13 20:15:29 +0000442 struct addrinfo *ainfo;
443 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700444 static const struct addrinfo req = {
445 .ai_family = AF_UNSPEC,
446 .ai_flags = AI_PASSIVE,
447 .ai_socktype = SOCK_STREAM,
448 };
449 int ret, count;
paul718e3742002-12-13 20:15:29 +0000450 char port_str[BUFSIZ];
451
Paul Jakma90b68762008-01-29 17:26:34 +0000452 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000453 port_str[sizeof (port_str) - 1] = '\0';
454
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700455 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000456 if (ret != 0)
457 {
458 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
459 return -1;
460 }
461
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700462 count = 0;
463 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000464 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700465 int sock;
466
paul718e3742002-12-13 20:15:29 +0000467 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
468 continue;
469
470 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
471 if (sock < 0)
472 {
ajs6099b3b2004-11-20 02:06:59 +0000473 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000474 continue;
475 }
476
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700477 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
478 if (ret == 0)
479 ++count;
480 else
481 close(sock);
paul718e3742002-12-13 20:15:29 +0000482 }
paul718e3742002-12-13 20:15:29 +0000483 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700484 if (count == 0)
485 {
486 zlog_err ("%s: no usable addresses", __func__);
487 return -1;
488 }
paul718e3742002-12-13 20:15:29 +0000489
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700490 return 0;
paul718e3742002-12-13 20:15:29 +0000491}
492#else
493/* Traditional IPv4 only version. */
494int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700495bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000496{
497 int sock;
498 int socklen;
499 struct sockaddr_in sin;
hasso4a1a2712004-02-12 15:41:38 +0000500 int ret, en;
paul718e3742002-12-13 20:15:29 +0000501
502 sock = socket (AF_INET, SOCK_STREAM, 0);
503 if (sock < 0)
504 {
ajs6099b3b2004-11-20 02:06:59 +0000505 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000506 return sock;
507 }
508
paul718e3742002-12-13 20:15:29 +0000509 memset (&sin, 0, sizeof (struct sockaddr_in));
paul718e3742002-12-13 20:15:29 +0000510 sin.sin_family = AF_INET;
511 sin.sin_port = htons (port);
512 socklen = sizeof (struct sockaddr_in);
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000513
Paul Jakma90b68762008-01-29 17:26:34 +0000514 if (address && ((ret = inet_aton(address, &sin.sin_addr)) < 1))
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000515 {
Paul Jakma90b68762008-01-29 17:26:34 +0000516 zlog_err("bgp_socket: could not parse ip address %s: %s",
517 address, safe_strerror (errno));
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000518 return ret;
519 }
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000520#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +0000521 sin.sin_len = socklen;
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000522#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +0000523
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700524 ret = bgp_listener (sock, (struct sockaddr *) &sin, socklen);
paul718e3742002-12-13 20:15:29 +0000525 if (ret < 0)
526 {
paul718e3742002-12-13 20:15:29 +0000527 close (sock);
528 return ret;
529 }
paul718e3742002-12-13 20:15:29 +0000530 return sock;
531}
532#endif /* HAVE_IPV6 && !NRL */
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700533
534void
535bgp_close (void)
536{
537 struct listnode *node, *next;
538 struct bgp_listener *listener;
539
540 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
541 {
542 thread_cancel (listener->thread);
543 close (listener->fd);
544 listnode_delete (bm->listen_sockets, listener);
545 XFREE (MTYPE_BGP_LISTENER, listener);
546 }
547}