blob: aaa38701f9743ebbfa969ddec6fbb1b661787d55 [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))
Paul Jakmaac278ea2016-04-26 11:46:34 +0100218 zlog_debug ("[Event] BGP connection from host %s:%d",
219 inet_sutop (&su, buf), sockunion_get_port (&su));
paul718e3742002-12-13 20:15:29 +0000220
221 /* Check remote IP address */
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700222 peer1 = peer_lookup (NULL, &su);
Paul Jakmaac278ea2016-04-26 11:46:34 +0100223 /* We could perhaps just drop new connections from already Established
224 * peers here.
225 */
226 if (! peer1 || peer1->status == Idle || peer1->status > Established)
paul718e3742002-12-13 20:15:29 +0000227 {
228 if (BGP_DEBUG (events, EVENTS))
229 {
pauleb821182004-05-01 08:44:08 +0000230 if (! peer1)
ajs478ba052004-12-08 20:41:23 +0000231 zlog_debug ("[Event] BGP connection IP address %s is not configured",
paul718e3742002-12-13 20:15:29 +0000232 inet_sutop (&su, buf));
233 else
Paul Jakmaac278ea2016-04-26 11:46:34 +0100234 zlog_debug ("[Event] BGP connection IP address %s is %s state",
235 inet_sutop (&su, buf),
236 LOOKUP (bgp_status_msg, peer1->status));
paul718e3742002-12-13 20:15:29 +0000237 }
238 close (bgp_sock);
239 return -1;
240 }
241
David Lamparteref0b0c32014-05-19 22:52:04 +0200242 bgp_set_socket_ttl (peer1, bgp_sock);
paul718e3742002-12-13 20:15:29 +0000243
pauleb821182004-05-01 08:44:08 +0000244 /* Make dummy peer until read Open packet. */
245 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000246 zlog_debug ("[Event] Make dummy peer structure until read Open packet");
pauleb821182004-05-01 08:44:08 +0000247
248 {
Jorge Boncompte [DTI2]682ca042012-04-10 16:57:27 +0200249 char buf[SU_ADDRSTRLEN];
pauleb821182004-05-01 08:44:08 +0000250
Stephen Hemminger5bd58812009-08-06 21:05:47 -0700251 peer = peer_create_accept (peer1->bgp);
pauleb821182004-05-01 08:44:08 +0000252 SET_FLAG (peer->sflags, PEER_STATUS_ACCEPT_PEER);
253 peer->su = su;
254 peer->fd = bgp_sock;
255 peer->status = Active;
256 peer->local_id = peer1->local_id;
Timo Teräse8eb0002009-02-17 12:14:23 +0200257 peer->v_holdtime = peer1->v_holdtime;
258 peer->v_keepalive = peer1->v_keepalive;
Paul Jakma2d81a7a2016-04-20 14:05:20 +0100259 peer->local_as = peer1->local_as;
260 peer->change_local_as = peer1->change_local_as;
pauleb821182004-05-01 08:44:08 +0000261
262 /* Make peer's address string. */
263 sockunion2str (&su, buf, SU_ADDRSTRLEN);
paule83e2082005-05-19 02:12:25 +0000264 peer->host = XSTRDUP (MTYPE_BGP_PEER_HOST, buf);
pauleb821182004-05-01 08:44:08 +0000265 }
paul718e3742002-12-13 20:15:29 +0000266
267 BGP_EVENT_ADD (peer, TCP_connection_open);
268
269 return 0;
270}
271
272/* BGP socket bind. */
paul94f2b392005-06-28 12:44:16 +0000273static int
paul718e3742002-12-13 20:15:29 +0000274bgp_bind (struct peer *peer)
275{
276#ifdef SO_BINDTODEVICE
277 int ret;
278 struct ifreq ifreq;
Lou Berger056f3762013-04-10 12:30:04 -0700279 int myerrno;
paul718e3742002-12-13 20:15:29 +0000280
281 if (! peer->ifname)
282 return 0;
283
284 strncpy ((char *)&ifreq.ifr_name, peer->ifname, sizeof (ifreq.ifr_name));
285
paul98f51632004-10-25 14:19:15 +0000286 if ( bgpd_privs.change (ZPRIVS_RAISE) )
287 zlog_err ("bgp_bind: could not raise privs");
288
pauleb821182004-05-01 08:44:08 +0000289 ret = setsockopt (peer->fd, SOL_SOCKET, SO_BINDTODEVICE,
paul718e3742002-12-13 20:15:29 +0000290 &ifreq, sizeof (ifreq));
Lou Berger056f3762013-04-10 12:30:04 -0700291 myerrno = errno;
292
paul98f51632004-10-25 14:19:15 +0000293 if (bgpd_privs.change (ZPRIVS_LOWER) )
294 zlog_err ("bgp_bind: could not lower privs");
295
paul718e3742002-12-13 20:15:29 +0000296 if (ret < 0)
297 {
Lou Berger056f3762013-04-10 12:30:04 -0700298 zlog (peer->log, LOG_INFO, "bind to interface %s failed, errno=%d",
299 peer->ifname, myerrno);
paul718e3742002-12-13 20:15:29 +0000300 return ret;
301 }
302#endif /* SO_BINDTODEVICE */
303 return 0;
304}
305
paul94f2b392005-06-28 12:44:16 +0000306static int
David Lamparter1727d2e2010-02-02 20:18:23 +0100307bgp_update_address (struct interface *ifp, const union sockunion *dst,
308 union sockunion *addr)
paul718e3742002-12-13 20:15:29 +0000309{
Timo Teräsc1c69e42015-05-22 13:40:57 +0300310 struct prefix *p, *sel, d;
paul718e3742002-12-13 20:15:29 +0000311 struct connected *connected;
hasso52dc7ee2004-09-23 19:18:23 +0000312 struct listnode *node;
David Lamparter1727d2e2010-02-02 20:18:23 +0100313 int common;
314
Timo Teräsc1c69e42015-05-22 13:40:57 +0300315 sockunion2hostprefix (dst, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100316 sel = NULL;
317 common = -1;
paul718e3742002-12-13 20:15:29 +0000318
paul1eb8ef22005-04-07 07:30:20 +0000319 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, connected))
paul718e3742002-12-13 20:15:29 +0000320 {
David Lamparter1727d2e2010-02-02 20:18:23 +0100321 p = connected->address;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300322 if (p->family != d.family)
David Lamparter1727d2e2010-02-02 20:18:23 +0100323 continue;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300324 if (prefix_common_bits (p, &d) > common)
David Lamparter1727d2e2010-02-02 20:18:23 +0100325 {
326 sel = p;
Timo Teräsc1c69e42015-05-22 13:40:57 +0300327 common = prefix_common_bits (sel, &d);
David Lamparter1727d2e2010-02-02 20:18:23 +0100328 }
paul718e3742002-12-13 20:15:29 +0000329 }
David Lamparter1727d2e2010-02-02 20:18:23 +0100330
David Lamparter1727d2e2010-02-02 20:18:23 +0100331 if (!sel)
332 return 1;
333
334 prefix2sockunion (sel, addr);
335 return 0;
paul718e3742002-12-13 20:15:29 +0000336}
337
338/* Update source selection. */
paul94f2b392005-06-28 12:44:16 +0000339static void
paul718e3742002-12-13 20:15:29 +0000340bgp_update_source (struct peer *peer)
341{
342 struct interface *ifp;
David Lamparter1727d2e2010-02-02 20:18:23 +0100343 union sockunion addr;
paul718e3742002-12-13 20:15:29 +0000344
345 /* Source is specified with interface name. */
346 if (peer->update_if)
347 {
348 ifp = if_lookup_by_name (peer->update_if);
349 if (! ifp)
350 return;
351
David Lamparter1727d2e2010-02-02 20:18:23 +0100352 if (bgp_update_address (ifp, &peer->su, &addr))
paul718e3742002-12-13 20:15:29 +0000353 return;
354
David Lamparter1727d2e2010-02-02 20:18:23 +0100355 sockunion_bind (peer->fd, &addr, 0, &addr);
paul718e3742002-12-13 20:15:29 +0000356 }
357
358 /* Source is specified with IP address. */
359 if (peer->update_source)
pauleb821182004-05-01 08:44:08 +0000360 sockunion_bind (peer->fd, peer->update_source, 0, peer->update_source);
paul718e3742002-12-13 20:15:29 +0000361}
362
363/* BGP try to connect to the peer. */
364int
365bgp_connect (struct peer *peer)
366{
Paul Jakma9099f9b2016-01-18 10:12:10 +0000367 ifindex_t ifindex = 0;
paul718e3742002-12-13 20:15:29 +0000368
369 /* Make socket for the peer. */
pauleb821182004-05-01 08:44:08 +0000370 peer->fd = sockunion_socket (&peer->su);
371 if (peer->fd < 0)
paul718e3742002-12-13 20:15:29 +0000372 return -1;
373
Vipin Kumar48fc05f2014-01-09 00:31:22 +0000374 set_nonblocking (peer->fd);
375
Vipin Kumar3374bef2014-01-09 00:31:22 +0000376 /* Set socket send buffer size */
377 bgp_update_sock_send_buffer_size(peer->fd);
378
David Lamparteref0b0c32014-05-19 22:52:04 +0200379 bgp_set_socket_ttl (peer, peer->fd);
paul718e3742002-12-13 20:15:29 +0000380
pauleb821182004-05-01 08:44:08 +0000381 sockopt_reuseaddr (peer->fd);
382 sockopt_reuseport (peer->fd);
Paul Jakma0df7c912008-07-21 21:02:49 +0000383
Stephen Hemminger1423c802008-08-14 17:59:25 +0100384#ifdef IPTOS_PREC_INTERNETCONTROL
Chris Luke5c88f192011-10-18 17:26:51 +0400385 if (bgpd_privs.change (ZPRIVS_RAISE))
386 zlog_err ("%s: could not raise privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100387 if (sockunion_family (&peer->su) == AF_INET)
388 setsockopt_ipv4_tos (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400389 else if (sockunion_family (&peer->su) == AF_INET6)
390 setsockopt_ipv6_tclass (peer->fd, IPTOS_PREC_INTERNETCONTROL);
Chris Luke5c88f192011-10-18 17:26:51 +0400391 if (bgpd_privs.change (ZPRIVS_LOWER))
392 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemminger1423c802008-08-14 17:59:25 +0100393#endif
394
Paul Jakma0df7c912008-07-21 21:02:49 +0000395 if (peer->password)
396 bgp_md5_set_connect (peer->fd, &peer->su, peer->password);
paul718e3742002-12-13 20:15:29 +0000397
398 /* Bind socket. */
399 bgp_bind (peer);
400
401 /* Update source bind. */
402 bgp_update_source (peer);
403
paul718e3742002-12-13 20:15:29 +0000404 if (peer->ifname)
Feng Lu395828e2015-05-22 11:39:55 +0200405 ifindex = ifname2ifindex (peer->ifname);
paul718e3742002-12-13 20:15:29 +0000406
407 if (BGP_DEBUG (events, EVENTS))
ajs478ba052004-12-08 20:41:23 +0000408 plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
pauleb821182004-05-01 08:44:08 +0000409 peer->host, peer->host, peer->fd);
paul718e3742002-12-13 20:15:29 +0000410
411 /* Connect to the remote peer. */
pauleb821182004-05-01 08:44:08 +0000412 return sockunion_connect (peer->fd, &peer->su, htons (peer->port), ifindex);
paul718e3742002-12-13 20:15:29 +0000413}
414
415/* After TCP connection is established. Get local address and port. */
416void
417bgp_getsockname (struct peer *peer)
418{
419 if (peer->su_local)
420 {
paul22db9de2005-05-19 01:50:11 +0000421 sockunion_free (peer->su_local);
paul718e3742002-12-13 20:15:29 +0000422 peer->su_local = NULL;
423 }
424
425 if (peer->su_remote)
426 {
paul22db9de2005-05-19 01:50:11 +0000427 sockunion_free (peer->su_remote);
paul718e3742002-12-13 20:15:29 +0000428 peer->su_remote = NULL;
429 }
430
pauleb821182004-05-01 08:44:08 +0000431 peer->su_local = sockunion_getsockname (peer->fd);
432 peer->su_remote = sockunion_getpeername (peer->fd);
paul718e3742002-12-13 20:15:29 +0000433
434 bgp_nexthop_set (peer->su_local, peer->su_remote, &peer->nexthop, peer);
435}
436
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700437
438static int
439bgp_listener (int sock, struct sockaddr *sa, socklen_t salen)
440{
441 struct bgp_listener *listener;
442 int ret, en;
443
444 sockopt_reuseaddr (sock);
445 sockopt_reuseport (sock);
446
Chris Luke5c88f192011-10-18 17:26:51 +0400447 if (bgpd_privs.change (ZPRIVS_RAISE))
448 zlog_err ("%s: could not raise privs", __func__);
449
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700450#ifdef IPTOS_PREC_INTERNETCONTROL
451 if (sa->sa_family == AF_INET)
452 setsockopt_ipv4_tos (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemminger6d0732c2011-09-28 14:23:35 +0400453 else if (sa->sa_family == AF_INET6)
454 setsockopt_ipv6_tclass (sock, IPTOS_PREC_INTERNETCONTROL);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700455#endif
456
David Lamparterca051262009-10-04 16:21:49 +0200457 sockopt_v6only (sa->sa_family, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700458
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700459 ret = bind (sock, sa, salen);
460 en = errno;
Chris Luke5c88f192011-10-18 17:26:51 +0400461 if (bgpd_privs.change (ZPRIVS_LOWER))
462 zlog_err ("%s: could not lower privs", __func__);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700463
464 if (ret < 0)
465 {
466 zlog_err ("bind: %s", safe_strerror (en));
467 return ret;
468 }
469
470 ret = listen (sock, 3);
471 if (ret < 0)
472 {
473 zlog_err ("listen: %s", safe_strerror (errno));
474 return ret;
475 }
476
477 listener = XMALLOC (MTYPE_BGP_LISTENER, sizeof(*listener));
478 listener->fd = sock;
479 memcpy(&listener->su, sa, salen);
Donald Sharp774914f2015-10-14 08:50:39 -0400480 listener->thread = thread_add_read (bm->master, bgp_accept, listener, sock);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700481 listnode_add (bm->listen_sockets, listener);
482
483 return 0;
484}
485
paul718e3742002-12-13 20:15:29 +0000486/* IPv6 supported version of BGP server socket setup. */
paul718e3742002-12-13 20:15:29 +0000487int
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700488bgp_socket (unsigned short port, const char *address)
paul718e3742002-12-13 20:15:29 +0000489{
paul718e3742002-12-13 20:15:29 +0000490 struct addrinfo *ainfo;
491 struct addrinfo *ainfo_save;
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700492 static const struct addrinfo req = {
493 .ai_family = AF_UNSPEC,
494 .ai_flags = AI_PASSIVE,
495 .ai_socktype = SOCK_STREAM,
496 };
497 int ret, count;
paul718e3742002-12-13 20:15:29 +0000498 char port_str[BUFSIZ];
499
Paul Jakma90b68762008-01-29 17:26:34 +0000500 snprintf (port_str, sizeof(port_str), "%d", port);
paul718e3742002-12-13 20:15:29 +0000501 port_str[sizeof (port_str) - 1] = '\0';
502
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700503 ret = getaddrinfo (address, port_str, &req, &ainfo_save);
paul718e3742002-12-13 20:15:29 +0000504 if (ret != 0)
505 {
506 zlog_err ("getaddrinfo: %s", gai_strerror (ret));
507 return -1;
508 }
509
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700510 count = 0;
511 for (ainfo = ainfo_save; ainfo; ainfo = ainfo->ai_next)
paul718e3742002-12-13 20:15:29 +0000512 {
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700513 int sock;
514
paul718e3742002-12-13 20:15:29 +0000515 if (ainfo->ai_family != AF_INET && ainfo->ai_family != AF_INET6)
516 continue;
517
518 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
519 if (sock < 0)
520 {
ajs6099b3b2004-11-20 02:06:59 +0000521 zlog_err ("socket: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000522 continue;
523 }
Nick Hilliardfa411a22011-03-23 15:33:17 +0000524
525 /* if we intend to implement ttl-security, this socket needs ttl=255 */
526 sockopt_ttl (ainfo->ai_family, sock, MAXTTL);
527
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700528 ret = bgp_listener (sock, ainfo->ai_addr, ainfo->ai_addrlen);
529 if (ret == 0)
530 ++count;
531 else
532 close(sock);
paul718e3742002-12-13 20:15:29 +0000533 }
paul718e3742002-12-13 20:15:29 +0000534 freeaddrinfo (ainfo_save);
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700535 if (count == 0)
536 {
537 zlog_err ("%s: no usable addresses", __func__);
538 return -1;
539 }
paul718e3742002-12-13 20:15:29 +0000540
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700541 return 0;
paul718e3742002-12-13 20:15:29 +0000542}
Stephen Hemmingerd023aec2009-07-21 16:27:21 -0700543
544void
545bgp_close (void)
546{
547 struct listnode *node, *next;
548 struct bgp_listener *listener;
549
550 for (ALL_LIST_ELEMENTS (bm->listen_sockets, node, next, listener))
551 {
552 thread_cancel (listener->thread);
553 close (listener->fd);
554 listnode_delete (bm->listen_sockets, listener);
555 XFREE (MTYPE_BGP_LISTENER, listener);
556 }
557}