blob: f8fa946ef4df77508fa752a1eb2d34be7f179840 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* setsockopt functions
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23#include "log.h"
paule6822762004-08-19 04:13:29 +000024#include "sockopt.h"
paul718e3742002-12-13 20:15:29 +000025
paul0b3acf42004-09-17 08:39:08 +000026int
27setsockopt_so_recvbuf (int sock, int size)
28{
29 int ret;
30
paulb89e60c2004-09-21 15:43:13 +000031 if ( (ret = setsockopt (sock, SOL_SOCKET, SO_RCVBUF, (char *)
ajsff29bb32004-11-19 18:29:22 +000032 &size, sizeof (int))) < 0)
33 zlog_err ("fd %d: can't setsockopt SO_RCVBUF to %d: %s",
ajsae5e24d2004-11-19 23:43:10 +000034 sock,size,safe_strerror(errno));
paul0b3acf42004-09-17 08:39:08 +000035
36 return ret;
37}
38
Denis Ovsienkob7fe4142007-08-21 16:32:56 +000039int
40setsockopt_so_sendbuf (const int sock, int size)
41{
42 int ret = setsockopt (sock, SOL_SOCKET, SO_SNDBUF,
43 (char *)&size, sizeof (int));
44
45 if (ret < 0)
46 zlog_err ("fd %d: can't setsockopt SO_SNDBUF to %d: %s",
47 sock, size, safe_strerror (errno));
48
49 return ret;
50}
51
52int
53getsockopt_so_sendbuf (const int sock)
54{
55 u_int32_t optval;
56 socklen_t optlen = sizeof (optval);
57 int ret = getsockopt (sock, SOL_SOCKET, SO_SNDBUF,
58 (char *)&optval, &optlen);
59 if (ret < 0)
60 {
61 zlog_err ("fd %d: can't getsockopt SO_SNDBUF: %d (%s)",
62 sock, errno, safe_strerror (errno));
63 return ret;
64 }
65 return optval;
66}
67
paul4f7baa02004-07-23 15:11:07 +000068static void *
69getsockopt_cmsg_data (struct msghdr *msgh, int level, int type)
70{
71 struct cmsghdr *cmsg;
72 void *ptr = NULL;
73
ajsb99760a2005-01-04 16:24:43 +000074 for (cmsg = ZCMSG_FIRSTHDR(msgh);
paul4f7baa02004-07-23 15:11:07 +000075 cmsg != NULL;
76 cmsg = CMSG_NXTHDR(msgh, cmsg))
77 if (cmsg->cmsg_level == level && cmsg->cmsg_type)
78 return (ptr = CMSG_DATA(cmsg));
paul9035efa2004-10-10 11:56:56 +000079
80 return NULL;
paul4f7baa02004-07-23 15:11:07 +000081}
82
paul718e3742002-12-13 20:15:29 +000083#ifdef HAVE_IPV6
84/* Set IPv6 packet info to the socket. */
85int
86setsockopt_ipv6_pktinfo (int sock, int val)
87{
88 int ret;
89
90#ifdef IPV6_RECVPKTINFO /*2292bis-01*/
91 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &val, sizeof(val));
92 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +000093 zlog_warn ("can't setsockopt IPV6_RECVPKTINFO : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000094#else /*RFC2292*/
95 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_PKTINFO, &val, sizeof(val));
96 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +000097 zlog_warn ("can't setsockopt IPV6_PKTINFO : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000098#endif /* INIA_IPV6 */
99 return ret;
100}
101
102/* Set multicast hops val to the socket. */
103int
104setsockopt_ipv6_checksum (int sock, int val)
105{
106 int ret;
107
108#ifdef GNU_LINUX
109 ret = setsockopt(sock, IPPROTO_RAW, IPV6_CHECKSUM, &val, sizeof(val));
110#else
111 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_CHECKSUM, &val, sizeof(val));
112#endif /* GNU_LINUX */
113 if (ret < 0)
114 zlog_warn ("can't setsockopt IPV6_CHECKSUM");
115 return ret;
116}
117
118/* Set multicast hops val to the socket. */
119int
120setsockopt_ipv6_multicast_hops (int sock, int val)
121{
122 int ret;
123
124 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val));
125 if (ret < 0)
126 zlog_warn ("can't setsockopt IPV6_MULTICAST_HOPS");
127 return ret;
128}
129
130/* Set multicast hops val to the socket. */
131int
132setsockopt_ipv6_unicast_hops (int sock, int val)
133{
134 int ret;
135
136 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &val, sizeof(val));
137 if (ret < 0)
138 zlog_warn ("can't setsockopt IPV6_UNICAST_HOPS");
139 return ret;
140}
141
142int
143setsockopt_ipv6_hoplimit (int sock, int val)
144{
145 int ret;
146
147#ifdef IPV6_RECVHOPLIMIT /*2292bis-01*/
148 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &val, sizeof(val));
149 if (ret < 0)
150 zlog_warn ("can't setsockopt IPV6_RECVHOPLIMIT");
151#else /*RFC2292*/
152 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_HOPLIMIT, &val, sizeof(val));
153 if (ret < 0)
154 zlog_warn ("can't setsockopt IPV6_HOPLIMIT");
155#endif
156 return ret;
157}
158
159/* Set multicast loop zero to the socket. */
160int
161setsockopt_ipv6_multicast_loop (int sock, int val)
162{
163 int ret;
164
165 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &val,
166 sizeof (val));
167 if (ret < 0)
168 zlog_warn ("can't setsockopt IPV6_MULTICAST_LOOP");
169 return ret;
170}
171
paul4f7baa02004-07-23 15:11:07 +0000172static int
paule6822762004-08-19 04:13:29 +0000173getsockopt_ipv6_ifindex (struct msghdr *msgh)
paul4f7baa02004-07-23 15:11:07 +0000174{
175 struct in6_pktinfo *pktinfo;
176
177 pktinfo = getsockopt_cmsg_data (msgh, IPPROTO_IPV6, IPV6_PKTINFO);
178
179 return pktinfo->ipi6_ifindex;
180}
paul718e3742002-12-13 20:15:29 +0000181#endif /* HAVE_IPV6 */
182
183
gdtcc49eb52004-12-30 13:50:32 +0000184/*
185 * Process multicast socket options for IPv4 in an OS-dependent manner.
186 * Supported options are IP_MULTICAST_IF and IP_{ADD,DROP}_MEMBERSHIP.
187 *
188 * Many operating systems have a limit on the number of groups that
189 * can be joined per socket (where each group and local address
190 * counts). This impacts OSPF, which joins groups on each interface
191 * using a single socket. The limit is typically 20, derived from the
192 * original BSD multicast implementation. Some systems have
193 * mechanisms for increasing this limit.
ajsc188c372005-10-21 02:57:41 +0000194 *
195 * In many 4.4BSD-derived systems, multicast group operations are not
196 * allowed on interfaces that are not UP. Thus, a previous attempt to
197 * leave the group may have failed, leaving it still joined, and we
198 * drop/join quietly to recover. This may not be necessary, but aims to
199 * defend against unknown behavior in that we will still return an error
200 * if the second join fails. It is not clear how other systems
201 * (e.g. Linux, Solaris) behave when leaving groups on down interfaces,
202 * but this behavior should not be harmful if they behave the same way,
203 * allow leaves, or implicitly leave all groups joined to down interfaces.
gdtcc49eb52004-12-30 13:50:32 +0000204 */
paul718e3742002-12-13 20:15:29 +0000205int
206setsockopt_multicast_ipv4(int sock,
207 int optname,
Andrew J. Schorr97cabcf2007-07-06 17:00:24 +0000208 struct in_addr if_addr /* required */,
paul718e3742002-12-13 20:15:29 +0000209 unsigned int mcast_addr,
Andrew J. Schorr97cabcf2007-07-06 17:00:24 +0000210 unsigned int ifindex /* optional: if non-zero, may be
211 used instead of if_addr */)
paul718e3742002-12-13 20:15:29 +0000212{
213
paul42c98192005-05-07 02:22:51 +0000214#ifdef HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
paul718e3742002-12-13 20:15:29 +0000215 /* This is better because it uses ifindex directly */
216 struct ip_mreqn mreqn;
ajsc188c372005-10-21 02:57:41 +0000217 int ret;
paul718e3742002-12-13 20:15:29 +0000218
219 switch (optname)
220 {
221 case IP_MULTICAST_IF:
222 case IP_ADD_MEMBERSHIP:
223 case IP_DROP_MEMBERSHIP:
224 memset (&mreqn, 0, sizeof(mreqn));
225
226 if (mcast_addr)
227 mreqn.imr_multiaddr.s_addr = mcast_addr;
228
229 if (ifindex)
230 mreqn.imr_ifindex = ifindex;
231 else
232 mreqn.imr_address = if_addr;
233
ajsc188c372005-10-21 02:57:41 +0000234 ret = setsockopt(sock, IPPROTO_IP, optname,
235 (void *)&mreqn, sizeof(mreqn));
236 if ((ret < 0) && (optname == IP_ADD_MEMBERSHIP) && (errno == EADDRINUSE))
237 {
238 /* see above: handle possible problem when interface comes back up */
239 char buf[2][INET_ADDRSTRLEN];
240 zlog_info("setsockopt_multicast_ipv4 attempting to drop and "
241 "re-add (fd %d, ifaddr %s, mcast %s, ifindex %u)",
242 sock,
243 inet_ntop(AF_INET, &if_addr, buf[0], sizeof(buf[0])),
244 inet_ntop(AF_INET, &mreqn.imr_multiaddr,
245 buf[1], sizeof(buf[1])), ifindex);
246 setsockopt(sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
247 (void *)&mreqn, sizeof(mreqn));
248 ret = setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
249 (void *)&mreqn, sizeof(mreqn));
250 }
251 return ret;
paul718e3742002-12-13 20:15:29 +0000252 break;
253
254 default:
255 /* Can out and give an understandable error */
256 errno = EINVAL;
257 return -1;
258 break;
259 }
260
261 /* Example defines for another OS, boilerplate off other code in this
262 function, AND handle optname as per other sections for consistency !! */
263 /* #elif defined(BOGON_NIX) && EXAMPLE_VERSION_CODE > -100000 */
264 /* Add your favourite OS here! */
265
266#else /* #if OS_TYPE */
gdtcc49eb52004-12-30 13:50:32 +0000267 /* standard BSD API */
paul718e3742002-12-13 20:15:29 +0000268
269 struct in_addr m;
270 struct ip_mreq mreq;
ajsc188c372005-10-21 02:57:41 +0000271 int ret;
paul718e3742002-12-13 20:15:29 +0000272
paul42c98192005-05-07 02:22:51 +0000273#ifdef HAVE_BSD_STRUCT_IP_MREQ_HACK
274 if (ifindex)
275 m.s_addr = htonl(ifindex);
276 else
277#endif
278 m = if_addr;
279
paul718e3742002-12-13 20:15:29 +0000280 switch (optname)
281 {
282 case IP_MULTICAST_IF:
paul718e3742002-12-13 20:15:29 +0000283 return setsockopt (sock, IPPROTO_IP, optname, (void *)&m, sizeof(m));
284 break;
285
286 case IP_ADD_MEMBERSHIP:
287 case IP_DROP_MEMBERSHIP:
288 memset (&mreq, 0, sizeof(mreq));
289 mreq.imr_multiaddr.s_addr = mcast_addr;
paul42c98192005-05-07 02:22:51 +0000290 mreq.imr_interface = m;
paul718e3742002-12-13 20:15:29 +0000291
ajsc188c372005-10-21 02:57:41 +0000292 ret = setsockopt (sock, IPPROTO_IP, optname, (void *)&mreq, sizeof(mreq));
293 if ((ret < 0) && (optname == IP_ADD_MEMBERSHIP) && (errno == EADDRINUSE))
294 {
295 /* see above: handle possible problem when interface comes back up */
296 char buf[2][INET_ADDRSTRLEN];
297 zlog_info("setsockopt_multicast_ipv4 attempting to drop and "
298 "re-add (fd %d, ifaddr %s, mcast %s, ifindex %u)",
299 sock,
300 inet_ntop(AF_INET, &if_addr, buf[0], sizeof(buf[0])),
301 inet_ntop(AF_INET, &mreq.imr_multiaddr,
302 buf[1], sizeof(buf[1])), ifindex);
303 setsockopt (sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
304 (void *)&mreq, sizeof(mreq));
305 ret = setsockopt (sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
306 (void *)&mreq, sizeof(mreq));
307 }
308 return ret;
paul718e3742002-12-13 20:15:29 +0000309 break;
310
311 default:
312 /* Can out and give an understandable error */
313 errno = EINVAL;
314 return -1;
315 break;
316 }
317#endif /* #if OS_TYPE */
318
319}
paul4f7baa02004-07-23 15:11:07 +0000320
321static int
paule6822762004-08-19 04:13:29 +0000322setsockopt_ipv4_ifindex (int sock, int val)
paul4f7baa02004-07-23 15:11:07 +0000323{
324 int ret;
325
326#if defined (IP_PKTINFO)
ajs1d75c8c2004-12-28 21:43:17 +0000327 if ((ret = setsockopt (sock, IPPROTO_IP, IP_PKTINFO, &val, sizeof (val))) < 0)
328 zlog_warn ("Can't set IP_PKTINFO option for fd %d to %d: %s",
329 sock,val,safe_strerror(errno));
paul4f7baa02004-07-23 15:11:07 +0000330#elif defined (IP_RECVIF)
ajs1d75c8c2004-12-28 21:43:17 +0000331 if ((ret = setsockopt (sock, IPPROTO_IP, IP_RECVIF, &val, sizeof (val))) < 0)
332 zlog_warn ("Can't set IP_RECVIF option for fd %d to %d: %s",
333 sock,val,safe_strerror(errno));
paul4f7baa02004-07-23 15:11:07 +0000334#else
335#warning "Neither IP_PKTINFO nor IP_RECVIF is available."
336#warning "Will not be able to receive link info."
337#warning "Things might be seriously broken.."
ajs1d75c8c2004-12-28 21:43:17 +0000338 /* XXX Does this ever happen? Should there be a zlog_warn message here? */
339 ret = -1;
paul4f7baa02004-07-23 15:11:07 +0000340#endif
paul4f7baa02004-07-23 15:11:07 +0000341 return ret;
342}
343
paule6822762004-08-19 04:13:29 +0000344int
345setsockopt_ifindex (int af, int sock, int val)
paul4f7baa02004-07-23 15:11:07 +0000346{
paule6822762004-08-19 04:13:29 +0000347 int ret = -1;
348
349 switch (af)
350 {
351 case AF_INET:
352 ret = setsockopt_ipv4_ifindex (sock, val);
353 break;
354#ifdef HAVE_IPV6
355 case AF_INET6:
356 ret = setsockopt_ipv6_pktinfo (sock, val);
357 break;
358#endif
359 default:
hassoe473b032004-09-26 16:08:11 +0000360 zlog_warn ("setsockopt_ifindex: unknown address family %d", af);
paule6822762004-08-19 04:13:29 +0000361 }
362 return ret;
363}
364
gdtd44debe2004-12-29 20:06:23 +0000365/*
366 * Requires: msgh is not NULL and points to a valid struct msghdr, which
367 * may or may not have control data about the incoming interface.
368 *
369 * Returns the interface index (small integer >= 1) if it can be
370 * determined, or else 0.
371 */
paule6822762004-08-19 04:13:29 +0000372static int
373getsockopt_ipv4_ifindex (struct msghdr *msgh)
374{
gdtd44debe2004-12-29 20:06:23 +0000375 /* XXX: initialize to zero? (Always overwritten, so just cosmetic.) */
paule6822762004-08-19 04:13:29 +0000376 int ifindex = -1;
gdt1d69fdf2004-12-29 18:53:30 +0000377
paule6822762004-08-19 04:13:29 +0000378#if defined(IP_PKTINFO)
379/* Linux pktinfo based ifindex retrieval */
paul4f7baa02004-07-23 15:11:07 +0000380 struct in_pktinfo *pktinfo;
paule6822762004-08-19 04:13:29 +0000381
382 pktinfo =
383 (struct in_pktinfo *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_PKTINFO);
gdtd44debe2004-12-29 20:06:23 +0000384 /* XXX Can pktinfo be NULL? Clean up post 0.98. */
paule6822762004-08-19 04:13:29 +0000385 ifindex = pktinfo->ipi_ifindex;
386
387#elif defined(IP_RECVIF)
gdtd44debe2004-12-29 20:06:23 +0000388
389 /* retrieval based on IP_RECVIF */
390
paul4f7baa02004-07-23 15:11:07 +0000391#ifndef SUNOS_5
gdtd44debe2004-12-29 20:06:23 +0000392 /* BSD systems use a sockaddr_dl as the control message payload. */
paul4f7baa02004-07-23 15:11:07 +0000393 struct sockaddr_dl *sdl;
gdtd44debe2004-12-29 20:06:23 +0000394#else
395 /* SUNOS_5 uses an integer with the index. */
396 int *ifindex_p;
paul4f7baa02004-07-23 15:11:07 +0000397#endif /* SUNOS_5 */
gdt1d69fdf2004-12-29 18:53:30 +0000398
gdt33f92322004-07-23 16:14:32 +0000399#ifndef SUNOS_5
gdtd44debe2004-12-29 20:06:23 +0000400 /* BSD */
gdt33f92322004-07-23 16:14:32 +0000401 sdl =
paul4f7baa02004-07-23 15:11:07 +0000402 (struct sockaddr_dl *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_RECVIF);
gdtd44debe2004-12-29 20:06:23 +0000403 if (sdl != NULL)
404 ifindex = sdl->sdl_index;
405 else
406 ifindex = 0;
407#else
408 /*
409 * Solaris. On Solaris 8, IP_RECVIF is defined, but the call to
410 * enable it fails with errno=99, and the struct msghdr has
411 * controllen 0.
412 */
413 ifindex_p = (uint_t *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_RECVIF);
414 if (ifindex_p != NULL)
415 ifindex = *ifindex_p;
416 else
417 ifindex = 0;
paul4f7baa02004-07-23 15:11:07 +0000418#endif /* SUNOS_5 */
paule6822762004-08-19 04:13:29 +0000419
gdtd44debe2004-12-29 20:06:23 +0000420#else
421 /*
422 * Neither IP_PKTINFO nor IP_RECVIF defined - warn at compile time.
423 * XXX Decide if this is a core service, or if daemons have to cope.
424 * Since Solaris 8 and OpenBSD seem not to provide it, it seems that
425 * daemons have to cope.
426 */
427#warning "getsockopt_ipv4_ifindex: Neither IP_PKTINFO nor IP_RECVIF defined."
428#warning "Some daemons may fail to operate correctly!"
paul7d9c6e52004-10-22 10:54:39 +0000429 ifindex = 0;
gdtd44debe2004-12-29 20:06:23 +0000430
paule6822762004-08-19 04:13:29 +0000431#endif /* IP_PKTINFO */
gdtd44debe2004-12-29 20:06:23 +0000432
paul4f7baa02004-07-23 15:11:07 +0000433 return ifindex;
434}
435
436/* return ifindex, 0 if none found */
437int
paule6822762004-08-19 04:13:29 +0000438getsockopt_ifindex (int af, struct msghdr *msgh)
paul4f7baa02004-07-23 15:11:07 +0000439{
440 int ifindex = 0;
441
442 switch (af)
443 {
444 case AF_INET:
paule6822762004-08-19 04:13:29 +0000445 return (getsockopt_ipv4_ifindex (msgh));
paul4f7baa02004-07-23 15:11:07 +0000446 break;
447#ifdef HAVE_IPV6
448 case AF_INET6:
paule6822762004-08-19 04:13:29 +0000449 return (getsockopt_ipv6_ifindex (msgh));
paul4f7baa02004-07-23 15:11:07 +0000450 break;
451#endif
452 default:
hassoe473b032004-09-26 16:08:11 +0000453 zlog_warn ("getsockopt_ifindex: unknown address family %d", af);
paul4f7baa02004-07-23 15:11:07 +0000454 return (ifindex = 0);
455 }
456}
paul96e27c92004-10-05 14:33:43 +0000457
458/* swab iph between order system uses for IP_HDRINCL and host order */
459void
460sockopt_iphdrincl_swab_htosys (struct ip *iph)
461{
462 /* BSD and derived take iph in network order, except for
463 * ip_len and ip_off
464 */
465#ifndef HAVE_IP_HDRINCL_BSD_ORDER
466 iph->ip_len = htons(iph->ip_len);
467 iph->ip_off = htons(iph->ip_off);
468#endif /* HAVE_IP_HDRINCL_BSD_ORDER */
469
470 iph->ip_id = htons(iph->ip_id);
471}
472
473void
474sockopt_iphdrincl_swab_systoh (struct ip *iph)
475{
476#ifndef HAVE_IP_HDRINCL_BSD_ORDER
477 iph->ip_len = ntohs(iph->ip_len);
478 iph->ip_off = ntohs(iph->ip_off);
479#endif /* HAVE_IP_HDRINCL_BSD_ORDER */
480
481 iph->ip_id = ntohs(iph->ip_id);
482}