blob: 6e1feece1bc6561eabd8202b4bca22843e042912 [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"
Paul Jakma0df7c912008-07-21 21:02:49 +000025#include "sockunion.h"
paul718e3742002-12-13 20:15:29 +000026
paul0b3acf42004-09-17 08:39:08 +000027int
28setsockopt_so_recvbuf (int sock, int size)
29{
30 int ret;
31
paulb89e60c2004-09-21 15:43:13 +000032 if ( (ret = setsockopt (sock, SOL_SOCKET, SO_RCVBUF, (char *)
ajsff29bb32004-11-19 18:29:22 +000033 &size, sizeof (int))) < 0)
34 zlog_err ("fd %d: can't setsockopt SO_RCVBUF to %d: %s",
ajsae5e24d2004-11-19 23:43:10 +000035 sock,size,safe_strerror(errno));
paul0b3acf42004-09-17 08:39:08 +000036
37 return ret;
38}
39
Denis Ovsienkob7fe4142007-08-21 16:32:56 +000040int
41setsockopt_so_sendbuf (const int sock, int size)
42{
43 int ret = setsockopt (sock, SOL_SOCKET, SO_SNDBUF,
44 (char *)&size, sizeof (int));
45
46 if (ret < 0)
47 zlog_err ("fd %d: can't setsockopt SO_SNDBUF to %d: %s",
48 sock, size, safe_strerror (errno));
49
50 return ret;
51}
52
53int
54getsockopt_so_sendbuf (const int sock)
55{
56 u_int32_t optval;
57 socklen_t optlen = sizeof (optval);
58 int ret = getsockopt (sock, SOL_SOCKET, SO_SNDBUF,
59 (char *)&optval, &optlen);
60 if (ret < 0)
61 {
62 zlog_err ("fd %d: can't getsockopt SO_SNDBUF: %d (%s)",
63 sock, errno, safe_strerror (errno));
64 return ret;
65 }
66 return optval;
67}
68
paul4f7baa02004-07-23 15:11:07 +000069static void *
70getsockopt_cmsg_data (struct msghdr *msgh, int level, int type)
71{
72 struct cmsghdr *cmsg;
73 void *ptr = NULL;
74
ajsb99760a2005-01-04 16:24:43 +000075 for (cmsg = ZCMSG_FIRSTHDR(msgh);
paul4f7baa02004-07-23 15:11:07 +000076 cmsg != NULL;
77 cmsg = CMSG_NXTHDR(msgh, cmsg))
78 if (cmsg->cmsg_level == level && cmsg->cmsg_type)
79 return (ptr = CMSG_DATA(cmsg));
paul9035efa2004-10-10 11:56:56 +000080
81 return NULL;
paul4f7baa02004-07-23 15:11:07 +000082}
83
paul718e3742002-12-13 20:15:29 +000084#ifdef HAVE_IPV6
85/* Set IPv6 packet info to the socket. */
86int
87setsockopt_ipv6_pktinfo (int sock, int val)
88{
89 int ret;
90
91#ifdef IPV6_RECVPKTINFO /*2292bis-01*/
92 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &val, sizeof(val));
93 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +000094 zlog_warn ("can't setsockopt IPV6_RECVPKTINFO : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000095#else /*RFC2292*/
96 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_PKTINFO, &val, sizeof(val));
97 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +000098 zlog_warn ("can't setsockopt IPV6_PKTINFO : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000099#endif /* INIA_IPV6 */
100 return ret;
101}
102
103/* Set multicast hops val to the socket. */
104int
105setsockopt_ipv6_checksum (int sock, int val)
106{
107 int ret;
108
109#ifdef GNU_LINUX
110 ret = setsockopt(sock, IPPROTO_RAW, IPV6_CHECKSUM, &val, sizeof(val));
111#else
112 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_CHECKSUM, &val, sizeof(val));
113#endif /* GNU_LINUX */
114 if (ret < 0)
115 zlog_warn ("can't setsockopt IPV6_CHECKSUM");
116 return ret;
117}
118
119/* Set multicast hops val to the socket. */
120int
121setsockopt_ipv6_multicast_hops (int sock, int val)
122{
123 int ret;
124
125 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val));
126 if (ret < 0)
127 zlog_warn ("can't setsockopt IPV6_MULTICAST_HOPS");
128 return ret;
129}
130
131/* Set multicast hops val to the socket. */
132int
133setsockopt_ipv6_unicast_hops (int sock, int val)
134{
135 int ret;
136
137 ret = setsockopt(sock, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &val, sizeof(val));
138 if (ret < 0)
139 zlog_warn ("can't setsockopt IPV6_UNICAST_HOPS");
140 return ret;
141}
142
143int
144setsockopt_ipv6_hoplimit (int sock, int val)
145{
146 int ret;
147
148#ifdef IPV6_RECVHOPLIMIT /*2292bis-01*/
149 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &val, sizeof(val));
150 if (ret < 0)
151 zlog_warn ("can't setsockopt IPV6_RECVHOPLIMIT");
152#else /*RFC2292*/
153 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_HOPLIMIT, &val, sizeof(val));
154 if (ret < 0)
155 zlog_warn ("can't setsockopt IPV6_HOPLIMIT");
156#endif
157 return ret;
158}
159
160/* Set multicast loop zero to the socket. */
161int
162setsockopt_ipv6_multicast_loop (int sock, int val)
163{
164 int ret;
165
166 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &val,
167 sizeof (val));
168 if (ret < 0)
169 zlog_warn ("can't setsockopt IPV6_MULTICAST_LOOP");
170 return ret;
171}
172
paul4f7baa02004-07-23 15:11:07 +0000173static int
paule6822762004-08-19 04:13:29 +0000174getsockopt_ipv6_ifindex (struct msghdr *msgh)
paul4f7baa02004-07-23 15:11:07 +0000175{
176 struct in6_pktinfo *pktinfo;
177
178 pktinfo = getsockopt_cmsg_data (msgh, IPPROTO_IPV6, IPV6_PKTINFO);
179
180 return pktinfo->ipi6_ifindex;
181}
paul718e3742002-12-13 20:15:29 +0000182#endif /* HAVE_IPV6 */
183
184
gdtcc49eb52004-12-30 13:50:32 +0000185/*
186 * Process multicast socket options for IPv4 in an OS-dependent manner.
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400187 * Supported options are IP_{ADD,DROP}_MEMBERSHIP.
gdtcc49eb52004-12-30 13:50:32 +0000188 *
189 * Many operating systems have a limit on the number of groups that
190 * can be joined per socket (where each group and local address
191 * counts). This impacts OSPF, which joins groups on each interface
192 * using a single socket. The limit is typically 20, derived from the
193 * original BSD multicast implementation. Some systems have
194 * mechanisms for increasing this limit.
ajsc188c372005-10-21 02:57:41 +0000195 *
196 * In many 4.4BSD-derived systems, multicast group operations are not
197 * allowed on interfaces that are not UP. Thus, a previous attempt to
198 * leave the group may have failed, leaving it still joined, and we
199 * drop/join quietly to recover. This may not be necessary, but aims to
200 * defend against unknown behavior in that we will still return an error
201 * if the second join fails. It is not clear how other systems
202 * (e.g. Linux, Solaris) behave when leaving groups on down interfaces,
203 * but this behavior should not be harmful if they behave the same way,
204 * allow leaves, or implicitly leave all groups joined to down interfaces.
gdtcc49eb52004-12-30 13:50:32 +0000205 */
paul718e3742002-12-13 20:15:29 +0000206int
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400207setsockopt_ipv4_multicast(int sock,
paul718e3742002-12-13 20:15:29 +0000208 int optname,
paul718e3742002-12-13 20:15:29 +0000209 unsigned int mcast_addr,
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400210 unsigned int ifindex)
paul718e3742002-12-13 20:15:29 +0000211{
212
paul42c98192005-05-07 02:22:51 +0000213#ifdef HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
paul718e3742002-12-13 20:15:29 +0000214 struct ip_mreqn mreqn;
ajsc188c372005-10-21 02:57:41 +0000215 int ret;
paul718e3742002-12-13 20:15:29 +0000216
217 switch (optname)
218 {
paul718e3742002-12-13 20:15:29 +0000219 case IP_ADD_MEMBERSHIP:
220 case IP_DROP_MEMBERSHIP:
221 memset (&mreqn, 0, sizeof(mreqn));
222
223 if (mcast_addr)
224 mreqn.imr_multiaddr.s_addr = mcast_addr;
225
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400226 mreqn.imr_ifindex = ifindex;
paul718e3742002-12-13 20:15:29 +0000227
ajsc188c372005-10-21 02:57:41 +0000228 ret = setsockopt(sock, IPPROTO_IP, optname,
229 (void *)&mreqn, sizeof(mreqn));
230 if ((ret < 0) && (optname == IP_ADD_MEMBERSHIP) && (errno == EADDRINUSE))
231 {
232 /* see above: handle possible problem when interface comes back up */
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400233 char buf[1][INET_ADDRSTRLEN];
234 zlog_info("setsockopt_ipv4_multicast attempting to drop and "
235 "re-add (fd %d, mcast %s, ifindex %u)",
ajsc188c372005-10-21 02:57:41 +0000236 sock,
ajsc188c372005-10-21 02:57:41 +0000237 inet_ntop(AF_INET, &mreqn.imr_multiaddr,
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400238 buf[0], sizeof(buf[0])), ifindex);
ajsc188c372005-10-21 02:57:41 +0000239 setsockopt(sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
240 (void *)&mreqn, sizeof(mreqn));
241 ret = setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
242 (void *)&mreqn, sizeof(mreqn));
243 }
244 return ret;
paul718e3742002-12-13 20:15:29 +0000245 break;
246
247 default:
248 /* Can out and give an understandable error */
249 errno = EINVAL;
250 return -1;
251 break;
252 }
253
254 /* Example defines for another OS, boilerplate off other code in this
255 function, AND handle optname as per other sections for consistency !! */
256 /* #elif defined(BOGON_NIX) && EXAMPLE_VERSION_CODE > -100000 */
257 /* Add your favourite OS here! */
258
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400259#elif defined(HAVE_BSD_STRUCT_IP_MREQ_HACK) /* #if OS_TYPE */
gdtcc49eb52004-12-30 13:50:32 +0000260 /* standard BSD API */
paul718e3742002-12-13 20:15:29 +0000261
262 struct in_addr m;
263 struct ip_mreq mreq;
ajsc188c372005-10-21 02:57:41 +0000264 int ret;
paul718e3742002-12-13 20:15:29 +0000265
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400266 m.s_addr = htonl(ifindex);
paul42c98192005-05-07 02:22:51 +0000267
paul718e3742002-12-13 20:15:29 +0000268 switch (optname)
269 {
paul718e3742002-12-13 20:15:29 +0000270 case IP_ADD_MEMBERSHIP:
271 case IP_DROP_MEMBERSHIP:
272 memset (&mreq, 0, sizeof(mreq));
273 mreq.imr_multiaddr.s_addr = mcast_addr;
paul42c98192005-05-07 02:22:51 +0000274 mreq.imr_interface = m;
paul718e3742002-12-13 20:15:29 +0000275
ajsc188c372005-10-21 02:57:41 +0000276 ret = setsockopt (sock, IPPROTO_IP, optname, (void *)&mreq, sizeof(mreq));
277 if ((ret < 0) && (optname == IP_ADD_MEMBERSHIP) && (errno == EADDRINUSE))
278 {
279 /* see above: handle possible problem when interface comes back up */
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400280 char buf[1][INET_ADDRSTRLEN];
281 zlog_info("setsockopt_ipv4_multicast attempting to drop and "
282 "re-add (fd %d, mcast %s, ifindex %u)",
ajsc188c372005-10-21 02:57:41 +0000283 sock,
ajsc188c372005-10-21 02:57:41 +0000284 inet_ntop(AF_INET, &mreq.imr_multiaddr,
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400285 buf[0], sizeof(buf[0])), ifindex);
ajsc188c372005-10-21 02:57:41 +0000286 setsockopt (sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
287 (void *)&mreq, sizeof(mreq));
288 ret = setsockopt (sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
289 (void *)&mreq, sizeof(mreq));
290 }
291 return ret;
paul718e3742002-12-13 20:15:29 +0000292 break;
293
294 default:
295 /* Can out and give an understandable error */
296 errno = EINVAL;
297 return -1;
298 break;
299 }
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400300#else
301 #error "Unsupported multicast API"
paul718e3742002-12-13 20:15:29 +0000302#endif /* #if OS_TYPE */
303
304}
paul4f7baa02004-07-23 15:11:07 +0000305
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400306/*
307 * Set IP_MULTICAST_IF socket option in an OS-dependent manner.
308 */
309int
310setsockopt_ipv4_multicast_if(int sock,
311 unsigned int ifindex)
312{
313
314#ifdef HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
315 struct ip_mreqn mreqn;
Dmitrij Tejblum87d29032011-08-19 22:25:23 +0400316 memset (&mreqn, 0, sizeof(mreqn));
Dmitrij Tejblumbf510e92011-08-18 20:22:17 +0400317
318 mreqn.imr_ifindex = ifindex;
319 return setsockopt(sock, IPPROTO_IP, IP_MULTICAST_IF, (void *)&mreqn, sizeof(mreqn));
320
321 /* Example defines for another OS, boilerplate off other code in this
322 function */
323 /* #elif defined(BOGON_NIX) && EXAMPLE_VERSION_CODE > -100000 */
324 /* Add your favourite OS here! */
325#elif defined(HAVE_BSD_STRUCT_IP_MREQ_HACK)
326 struct in_addr m;
327
328 m.s_addr = htonl(ifindex);
329
330 return setsockopt (sock, IPPROTO_IP, IP_MULTICAST_IF, (void *)&m, sizeof(m));
331#else
332 #error "Unsupported multicast API"
333#endif
334}
335
paul4f7baa02004-07-23 15:11:07 +0000336static int
paule6822762004-08-19 04:13:29 +0000337setsockopt_ipv4_ifindex (int sock, int val)
paul4f7baa02004-07-23 15:11:07 +0000338{
339 int ret;
340
341#if defined (IP_PKTINFO)
ajs1d75c8c2004-12-28 21:43:17 +0000342 if ((ret = setsockopt (sock, IPPROTO_IP, IP_PKTINFO, &val, sizeof (val))) < 0)
343 zlog_warn ("Can't set IP_PKTINFO option for fd %d to %d: %s",
344 sock,val,safe_strerror(errno));
paul4f7baa02004-07-23 15:11:07 +0000345#elif defined (IP_RECVIF)
ajs1d75c8c2004-12-28 21:43:17 +0000346 if ((ret = setsockopt (sock, IPPROTO_IP, IP_RECVIF, &val, sizeof (val))) < 0)
347 zlog_warn ("Can't set IP_RECVIF option for fd %d to %d: %s",
348 sock,val,safe_strerror(errno));
paul4f7baa02004-07-23 15:11:07 +0000349#else
350#warning "Neither IP_PKTINFO nor IP_RECVIF is available."
351#warning "Will not be able to receive link info."
352#warning "Things might be seriously broken.."
ajs1d75c8c2004-12-28 21:43:17 +0000353 /* XXX Does this ever happen? Should there be a zlog_warn message here? */
354 ret = -1;
paul4f7baa02004-07-23 15:11:07 +0000355#endif
paul4f7baa02004-07-23 15:11:07 +0000356 return ret;
357}
358
paule6822762004-08-19 04:13:29 +0000359int
Stephen Hemminger1423c802008-08-14 17:59:25 +0100360setsockopt_ipv4_tos(int sock, int tos)
361{
362 int ret;
363
364 ret = setsockopt (sock, IPPROTO_IP, IP_TOS, &tos, sizeof (tos));
365 if (ret < 0)
366 zlog_warn ("Can't set IP_TOS option for fd %d to %#x: %s",
367 sock, tos, safe_strerror(errno));
368 return ret;
369}
370
371
372int
paule6822762004-08-19 04:13:29 +0000373setsockopt_ifindex (int af, int sock, int val)
paul4f7baa02004-07-23 15:11:07 +0000374{
paule6822762004-08-19 04:13:29 +0000375 int ret = -1;
376
377 switch (af)
378 {
379 case AF_INET:
380 ret = setsockopt_ipv4_ifindex (sock, val);
381 break;
382#ifdef HAVE_IPV6
383 case AF_INET6:
384 ret = setsockopt_ipv6_pktinfo (sock, val);
385 break;
386#endif
387 default:
hassoe473b032004-09-26 16:08:11 +0000388 zlog_warn ("setsockopt_ifindex: unknown address family %d", af);
paule6822762004-08-19 04:13:29 +0000389 }
390 return ret;
391}
392
gdtd44debe2004-12-29 20:06:23 +0000393/*
394 * Requires: msgh is not NULL and points to a valid struct msghdr, which
395 * may or may not have control data about the incoming interface.
396 *
397 * Returns the interface index (small integer >= 1) if it can be
398 * determined, or else 0.
399 */
paule6822762004-08-19 04:13:29 +0000400static int
401getsockopt_ipv4_ifindex (struct msghdr *msgh)
402{
gdtd44debe2004-12-29 20:06:23 +0000403 /* XXX: initialize to zero? (Always overwritten, so just cosmetic.) */
paule6822762004-08-19 04:13:29 +0000404 int ifindex = -1;
gdt1d69fdf2004-12-29 18:53:30 +0000405
paule6822762004-08-19 04:13:29 +0000406#if defined(IP_PKTINFO)
407/* Linux pktinfo based ifindex retrieval */
paul4f7baa02004-07-23 15:11:07 +0000408 struct in_pktinfo *pktinfo;
paule6822762004-08-19 04:13:29 +0000409
410 pktinfo =
411 (struct in_pktinfo *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_PKTINFO);
gdtd44debe2004-12-29 20:06:23 +0000412 /* XXX Can pktinfo be NULL? Clean up post 0.98. */
paule6822762004-08-19 04:13:29 +0000413 ifindex = pktinfo->ipi_ifindex;
414
415#elif defined(IP_RECVIF)
gdtd44debe2004-12-29 20:06:23 +0000416
417 /* retrieval based on IP_RECVIF */
418
paul4f7baa02004-07-23 15:11:07 +0000419#ifndef SUNOS_5
gdtd44debe2004-12-29 20:06:23 +0000420 /* BSD systems use a sockaddr_dl as the control message payload. */
paul4f7baa02004-07-23 15:11:07 +0000421 struct sockaddr_dl *sdl;
gdtd44debe2004-12-29 20:06:23 +0000422#else
423 /* SUNOS_5 uses an integer with the index. */
424 int *ifindex_p;
paul4f7baa02004-07-23 15:11:07 +0000425#endif /* SUNOS_5 */
gdt1d69fdf2004-12-29 18:53:30 +0000426
gdt33f92322004-07-23 16:14:32 +0000427#ifndef SUNOS_5
gdtd44debe2004-12-29 20:06:23 +0000428 /* BSD */
gdt33f92322004-07-23 16:14:32 +0000429 sdl =
paul4f7baa02004-07-23 15:11:07 +0000430 (struct sockaddr_dl *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_RECVIF);
gdtd44debe2004-12-29 20:06:23 +0000431 if (sdl != NULL)
432 ifindex = sdl->sdl_index;
433 else
434 ifindex = 0;
435#else
436 /*
437 * Solaris. On Solaris 8, IP_RECVIF is defined, but the call to
438 * enable it fails with errno=99, and the struct msghdr has
439 * controllen 0.
440 */
441 ifindex_p = (uint_t *)getsockopt_cmsg_data (msgh, IPPROTO_IP, IP_RECVIF);
442 if (ifindex_p != NULL)
443 ifindex = *ifindex_p;
444 else
445 ifindex = 0;
paul4f7baa02004-07-23 15:11:07 +0000446#endif /* SUNOS_5 */
paule6822762004-08-19 04:13:29 +0000447
gdtd44debe2004-12-29 20:06:23 +0000448#else
449 /*
450 * Neither IP_PKTINFO nor IP_RECVIF defined - warn at compile time.
451 * XXX Decide if this is a core service, or if daemons have to cope.
452 * Since Solaris 8 and OpenBSD seem not to provide it, it seems that
453 * daemons have to cope.
454 */
455#warning "getsockopt_ipv4_ifindex: Neither IP_PKTINFO nor IP_RECVIF defined."
456#warning "Some daemons may fail to operate correctly!"
paul7d9c6e52004-10-22 10:54:39 +0000457 ifindex = 0;
gdtd44debe2004-12-29 20:06:23 +0000458
paule6822762004-08-19 04:13:29 +0000459#endif /* IP_PKTINFO */
gdtd44debe2004-12-29 20:06:23 +0000460
paul4f7baa02004-07-23 15:11:07 +0000461 return ifindex;
462}
463
464/* return ifindex, 0 if none found */
465int
paule6822762004-08-19 04:13:29 +0000466getsockopt_ifindex (int af, struct msghdr *msgh)
paul4f7baa02004-07-23 15:11:07 +0000467{
paul4f7baa02004-07-23 15:11:07 +0000468 switch (af)
469 {
470 case AF_INET:
paule6822762004-08-19 04:13:29 +0000471 return (getsockopt_ipv4_ifindex (msgh));
paul4f7baa02004-07-23 15:11:07 +0000472 break;
473#ifdef HAVE_IPV6
474 case AF_INET6:
paule6822762004-08-19 04:13:29 +0000475 return (getsockopt_ipv6_ifindex (msgh));
paul4f7baa02004-07-23 15:11:07 +0000476 break;
477#endif
478 default:
hassoe473b032004-09-26 16:08:11 +0000479 zlog_warn ("getsockopt_ifindex: unknown address family %d", af);
Denis Ovsienkoc69f91b2011-08-01 21:59:04 +0400480 return 0;
paul4f7baa02004-07-23 15:11:07 +0000481 }
482}
paul96e27c92004-10-05 14:33:43 +0000483
484/* swab iph between order system uses for IP_HDRINCL and host order */
485void
486sockopt_iphdrincl_swab_htosys (struct ip *iph)
487{
488 /* BSD and derived take iph in network order, except for
489 * ip_len and ip_off
490 */
491#ifndef HAVE_IP_HDRINCL_BSD_ORDER
492 iph->ip_len = htons(iph->ip_len);
493 iph->ip_off = htons(iph->ip_off);
494#endif /* HAVE_IP_HDRINCL_BSD_ORDER */
495
496 iph->ip_id = htons(iph->ip_id);
497}
498
499void
500sockopt_iphdrincl_swab_systoh (struct ip *iph)
501{
502#ifndef HAVE_IP_HDRINCL_BSD_ORDER
503 iph->ip_len = ntohs(iph->ip_len);
504 iph->ip_off = ntohs(iph->ip_off);
505#endif /* HAVE_IP_HDRINCL_BSD_ORDER */
506
507 iph->ip_id = ntohs(iph->ip_id);
508}
Paul Jakma0df7c912008-07-21 21:02:49 +0000509
510int
511sockopt_tcp_signature (int sock, union sockunion *su, const char *password)
512{
Paul Jakma3453a712009-06-12 14:21:02 +0100513#if defined(HAVE_TCP_MD5_LINUX24) && defined(GNU_LINUX)
514 /* Support for the old Linux 2.4 TCP-MD5 patch, taken from Hasso Tepper's
515 * version of the Quagga patch (based on work by Rick Payne, and Bruce
516 * Simpson)
517 */
518#define TCP_MD5_AUTH 13
519#define TCP_MD5_AUTH_ADD 1
520#define TCP_MD5_AUTH_DEL 2
521 struct tcp_rfc2385_cmd {
522 u_int8_t command; /* Command - Add/Delete */
523 u_int32_t address; /* IPV4 address associated */
524 u_int8_t keylen; /* MD5 Key len (do NOT assume 0 terminated ascii) */
525 void *key; /* MD5 Key */
526 } cmd;
527 struct in_addr *addr = &su->sin.sin_addr;
528
529 cmd.command = (password != NULL ? TCP_MD5_AUTH_ADD : TCP_MD5_AUTH_DEL);
530 cmd.address = addr->s_addr;
531 cmd.keylen = (password != NULL ? strlen (password) : 0);
532 cmd.key = password;
533
534 return setsockopt (sock, IPPROTO_TCP, TCP_MD5_AUTH, &cmd, sizeof cmd);
535
536#elif HAVE_DECL_TCP_MD5SIG
Paul Jakmaf5612dd2008-08-15 14:05:08 +0100537 int ret;
Paul Jakma0df7c912008-07-21 21:02:49 +0000538#ifndef GNU_LINUX
539 /*
540 * XXX Need to do PF_KEY operation here to add/remove an SA entry,
541 * and add/remove an SP entry for this peer's packet flows also.
542 */
543 int md5sig = password && *password ? 1 : 0;
544#else
545 int keylen = password ? strlen (password) : 0;
546 struct tcp_md5sig md5sig;
547 union sockunion *su2, *susock;
Paul Jakma0df7c912008-07-21 21:02:49 +0000548
549 /* Figure out whether the socket and the sockunion are the same family..
550 * adding AF_INET to AF_INET6 needs to be v4 mapped, you'd think..
551 */
552 if (!(susock = sockunion_getsockname (sock)))
553 return -1;
554
555 if (susock->sa.sa_family == su->sa.sa_family)
556 su2 = su;
557 else
558 {
559 /* oops.. */
560 su2 = susock;
561
562 if (su2->sa.sa_family == AF_INET)
563 {
564 sockunion_free (susock);
Chris Caputo2b35ae42009-06-23 05:34:29 +0000565 return 0;
566 }
Paul Jakma0df7c912008-07-21 21:02:49 +0000567
Stephen Hemmingere5862a22009-02-19 23:01:41 -0800568#ifdef HAVE_IPV6
Paul Jakma0df7c912008-07-21 21:02:49 +0000569 /* If this does not work, then all users of this sockopt will need to
570 * differentiate between IPv4 and IPv6, and keep seperate sockets for
571 * each.
572 *
573 * Sadly, it doesn't seem to work at present. It's unknown whether
574 * this is a bug or not.
575 */
576 if (su2->sa.sa_family == AF_INET6
577 && su->sa.sa_family == AF_INET)
578 {
579 su2->sin6.sin6_family = AF_INET6;
580 /* V4Map the address */
581 memset (&su2->sin6.sin6_addr, 0, sizeof (struct in6_addr));
582 su2->sin6.sin6_addr.s6_addr32[2] = htonl(0xffff);
583 memcpy (&su2->sin6.sin6_addr.s6_addr32[3], &su->sin.sin_addr, 4);
584 }
Stephen Hemmingere5862a22009-02-19 23:01:41 -0800585#endif
Paul Jakma0df7c912008-07-21 21:02:49 +0000586 }
587
588 memset (&md5sig, 0, sizeof (md5sig));
589 memcpy (&md5sig.tcpm_addr, su2, sizeof (*su2));
590 md5sig.tcpm_keylen = keylen;
591 if (keylen)
592 memcpy (md5sig.tcpm_key, password, keylen);
Paul Jakmaf5612dd2008-08-15 14:05:08 +0100593 sockunion_free (susock);
Paul Jakma0df7c912008-07-21 21:02:49 +0000594#endif /* GNU_LINUX */
Chris Caputo2b35ae42009-06-23 05:34:29 +0000595 if ((ret = setsockopt (sock, IPPROTO_TCP, TCP_MD5SIG, &md5sig, sizeof md5sig)) < 0)
596 {
597 /* ENOENT is harmless. It is returned when we clear a password for which
598 one was not previously set. */
599 if (ENOENT == errno)
600 ret = 0;
601 else
602 zlog_err ("sockopt_tcp_signature: setsockopt(%d): %s",
603 sock, safe_strerror(errno));
604 }
Paul Jakma0df7c912008-07-21 21:02:49 +0000605 return ret;
606#else /* HAVE_TCP_MD5SIG */
607 return -2;
Paul Jakma3453a712009-06-12 14:21:02 +0100608#endif /* !HAVE_TCP_MD5SIG */
Paul Jakma0df7c912008-07-21 21:02:49 +0000609}