blob: 8c0cbf5ee6226a18f57bf162e21fda3f1ec06c07 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
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
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include <zebra.h>
hasso508e53e2004-05-18 18:57:06 +000023
paul718e3742002-12-13 20:15:29 +000024#include "log.h"
hasso508e53e2004-05-18 18:57:06 +000025#include "memory.h"
paul718e3742002-12-13 20:15:29 +000026#include "sockunion.h"
hasso03d52f82004-09-29 00:26:19 +000027#include "sockopt.h"
pauledd7c242003-06-04 13:59:38 +000028#include "privs.h"
paul718e3742002-12-13 20:15:29 +000029
paul718e3742002-12-13 20:15:29 +000030#include "ospf6_proto.h"
hasso508e53e2004-05-18 18:57:06 +000031#include "ospf6_network.h"
paul718e3742002-12-13 20:15:29 +000032
pauledd7c242003-06-04 13:59:38 +000033extern struct zebra_privs_t ospf6d_privs;
paul718e3742002-12-13 20:15:29 +000034
hasso508e53e2004-05-18 18:57:06 +000035int ospf6_sock;
36struct in6_addr allspfrouters6;
37struct in6_addr alldrouters6;
paul718e3742002-12-13 20:15:29 +000038
39/* setsockopt ReUseAddr to on */
40void
41ospf6_set_reuseaddr ()
42{
43 u_int on = 0;
44 if (setsockopt (ospf6_sock, SOL_SOCKET, SO_REUSEADDR, &on,
45 sizeof (u_int)) < 0)
ajs6099b3b2004-11-20 02:06:59 +000046 zlog_warn ("Network: set SO_REUSEADDR failed: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000047}
48
49/* setsockopt MulticastLoop to off */
50void
51ospf6_reset_mcastloop ()
52{
53 u_int off = 0;
54 if (setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
55 &off, sizeof (u_int)) < 0)
56 zlog_warn ("Network: reset IPV6_MULTICAST_LOOP failed: %s",
ajs6099b3b2004-11-20 02:06:59 +000057 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000058}
59
60void
61ospf6_set_pktinfo ()
62{
paul79dc3732004-07-23 15:17:45 +000063 setsockopt_ipv6_pktinfo (ospf6_sock, 1);
paul718e3742002-12-13 20:15:29 +000064}
65
66void
67ospf6_set_checksum ()
68{
69 int offset = 12;
hasso508e53e2004-05-18 18:57:06 +000070#ifndef DISABLE_IPV6_CHECKSUM
paul718e3742002-12-13 20:15:29 +000071 if (setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_CHECKSUM,
72 &offset, sizeof (offset)) < 0)
ajs6099b3b2004-11-20 02:06:59 +000073 zlog_warn ("Network: set IPV6_CHECKSUM failed: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000074#else
75 zlog_warn ("Network: Don't set IPV6_CHECKSUM");
76#endif /* DISABLE_IPV6_CHECKSUM */
77}
78
hasso508e53e2004-05-18 18:57:06 +000079/* Make ospf6d's server socket. */
80int
81ospf6_serv_sock ()
82{
83 if (ospf6d_privs.change (ZPRIVS_RAISE))
84 zlog_err ("ospf6_serv_sock: could not raise privs");
85
86 ospf6_sock = socket (AF_INET6, SOCK_RAW, IPPROTO_OSPFIGP);
87 if (ospf6_sock < 0)
88 {
89 zlog_warn ("Network: can't create OSPF6 socket.");
90 if (ospf6d_privs.change (ZPRIVS_LOWER))
91 zlog_err ("ospf_sock_init: could not lower privs");
92 return -1;
93 }
94 if (ospf6d_privs.change (ZPRIVS_LOWER))
95 zlog_err ("ospf_sock_init: could not lower privs");
96
97 /* set socket options */
98#if 1
99 sockopt_reuseaddr (ospf6_sock);
100#else
101 ospf6_set_reuseaddr ();
102#endif /*1*/
103 ospf6_reset_mcastloop ();
104 ospf6_set_pktinfo ();
105 ospf6_set_checksum ();
106
107 /* setup global in6_addr, allspf6 and alldr6 for later use */
108 inet_pton (AF_INET6, ALLSPFROUTERS6, &allspfrouters6);
109 inet_pton (AF_INET6, ALLDROUTERS6, &alldrouters6);
110
111 return 0;
112}
113
paul718e3742002-12-13 20:15:29 +0000114void
hasso508e53e2004-05-18 18:57:06 +0000115ospf6_join_allspfrouters (u_int ifindex)
116{
117 struct ipv6_mreq mreq6;
118 int retval;
119
120 assert (ifindex);
121 mreq6.ipv6mr_interface = ifindex;
122 memcpy (&mreq6.ipv6mr_multiaddr, &allspfrouters6,
123 sizeof (struct in6_addr));
124
125 retval = setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_JOIN_GROUP,
126 &mreq6, sizeof (mreq6));
127
128 if (retval < 0)
129 zlog_err ("Network: Join AllSPFRouters on ifindex %d failed: %s",
ajs6099b3b2004-11-20 02:06:59 +0000130 ifindex, safe_strerror (errno));
hasso508e53e2004-05-18 18:57:06 +0000131#if 0
132 else
hassoc6487d62004-12-24 06:00:11 +0000133 zlog_debug ("Network: Join AllSPFRouters on ifindex %d", ifindex);
hasso508e53e2004-05-18 18:57:06 +0000134#endif
135}
136
137void
138ospf6_leave_allspfrouters (u_int ifindex)
139{
140 struct ipv6_mreq mreq6;
141
142 assert (ifindex);
143 mreq6.ipv6mr_interface = ifindex;
144 memcpy (&mreq6.ipv6mr_multiaddr, &allspfrouters6,
145 sizeof (struct in6_addr));
146
147 if (setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_LEAVE_GROUP,
148 &mreq6, sizeof (mreq6)) < 0)
149 zlog_warn ("Network: Leave AllSPFRouters on ifindex %d Failed: %s",
ajs6099b3b2004-11-20 02:06:59 +0000150 ifindex, safe_strerror (errno));
hasso508e53e2004-05-18 18:57:06 +0000151#if 0
152 else
hassoc6487d62004-12-24 06:00:11 +0000153 zlog_debug ("Network: Leave AllSPFRouters on ifindex %d", ifindex);
hasso508e53e2004-05-18 18:57:06 +0000154#endif
155}
156
157void
158ospf6_join_alldrouters (u_int ifindex)
159{
160 struct ipv6_mreq mreq6;
161
162 assert (ifindex);
163 mreq6.ipv6mr_interface = ifindex;
164 memcpy (&mreq6.ipv6mr_multiaddr, &alldrouters6,
165 sizeof (struct in6_addr));
166
167 if (setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_JOIN_GROUP,
168 &mreq6, sizeof (mreq6)) < 0)
169 zlog_warn ("Network: Join AllDRouters on ifindex %d Failed: %s",
ajs6099b3b2004-11-20 02:06:59 +0000170 ifindex, safe_strerror (errno));
hasso508e53e2004-05-18 18:57:06 +0000171#if 0
172 else
hassoc6487d62004-12-24 06:00:11 +0000173 zlog_debug ("Network: Join AllDRouters on ifindex %d", ifindex);
hasso508e53e2004-05-18 18:57:06 +0000174#endif
175}
176
177void
178ospf6_leave_alldrouters (u_int ifindex)
179{
180 struct ipv6_mreq mreq6;
181
182 assert (ifindex);
183 mreq6.ipv6mr_interface = ifindex;
184 memcpy (&mreq6.ipv6mr_multiaddr, &alldrouters6,
185 sizeof (struct in6_addr));
186
187 if (setsockopt (ospf6_sock, IPPROTO_IPV6, IPV6_LEAVE_GROUP,
188 &mreq6, sizeof (mreq6)) < 0)
189 zlog_warn ("Network: Leave AllDRouters on ifindex %d Failed", ifindex);
190#if 0
191 else
hassoc6487d62004-12-24 06:00:11 +0000192 zlog_debug ("Network: Leave AllDRouters on ifindex %d", ifindex);
hasso508e53e2004-05-18 18:57:06 +0000193#endif
194}
195
196int
197iov_count (struct iovec *iov)
198{
199 int i;
200 for (i = 0; iov[i].iov_base; i++)
201 ;
202 return i;
203}
204
205int
206iov_totallen (struct iovec *iov)
207{
208 int i;
209 int totallen = 0;
210 for (i = 0; iov[i].iov_base; i++)
211 totallen += iov[i].iov_len;
212 return totallen;
213}
214
215int
paul718e3742002-12-13 20:15:29 +0000216ospf6_sendmsg (struct in6_addr *src, struct in6_addr *dst,
217 unsigned int *ifindex, struct iovec *message)
218{
219 int retval;
220 struct msghdr smsghdr;
221 struct cmsghdr *scmsgp;
222 u_char cmsgbuf[CMSG_SPACE(sizeof (struct in6_pktinfo))];
223 struct in6_pktinfo *pktinfo;
224 struct sockaddr_in6 dst_sin6;
225
226 assert (dst);
227 assert (*ifindex);
228
229 scmsgp = (struct cmsghdr *)cmsgbuf;
230 pktinfo = (struct in6_pktinfo *)(CMSG_DATA(scmsgp));
231 memset (&dst_sin6, 0, sizeof (struct sockaddr_in6));
232
233 /* source address */
234 pktinfo->ipi6_ifindex = *ifindex;
235 if (src)
236 memcpy (&pktinfo->ipi6_addr, src, sizeof (struct in6_addr));
237 else
238 memset (&pktinfo->ipi6_addr, 0, sizeof (struct in6_addr));
239
240 /* destination address */
241 dst_sin6.sin6_family = AF_INET6;
242#ifdef SIN6_LEN
243 dst_sin6.sin6_len = sizeof (struct sockaddr_in6);
244#endif /*SIN6_LEN*/
245 memcpy (&dst_sin6.sin6_addr, dst, sizeof (struct in6_addr));
246#ifdef HAVE_SIN6_SCOPE_ID
247 dst_sin6.sin6_scope_id = *ifindex;
248#endif
249
250 /* send control msg */
251 scmsgp->cmsg_level = IPPROTO_IPV6;
252 scmsgp->cmsg_type = IPV6_PKTINFO;
253 scmsgp->cmsg_len = CMSG_LEN (sizeof (struct in6_pktinfo));
254 /* scmsgp = CMSG_NXTHDR (&smsghdr, scmsgp); */
255
256 /* send msg hdr */
Paul Jakmacf1ce252006-05-15 10:46:07 +0000257 memset (&smsghdr, 0, sizeof (smsghdr));
paul718e3742002-12-13 20:15:29 +0000258 smsghdr.msg_iov = message;
259 smsghdr.msg_iovlen = iov_count (message);
260 smsghdr.msg_name = (caddr_t) &dst_sin6;
261 smsghdr.msg_namelen = sizeof (struct sockaddr_in6);
262 smsghdr.msg_control = (caddr_t) cmsgbuf;
263 smsghdr.msg_controllen = sizeof (cmsgbuf);
264
265 retval = sendmsg (ospf6_sock, &smsghdr, 0);
266 if (retval != iov_totallen (message))
hasso508e53e2004-05-18 18:57:06 +0000267 zlog_warn ("sendmsg failed: ifindex: %d: %s (%d)",
ajs6099b3b2004-11-20 02:06:59 +0000268 *ifindex, safe_strerror (errno), errno);
hasso508e53e2004-05-18 18:57:06 +0000269
270 return retval;
paul718e3742002-12-13 20:15:29 +0000271}
272
hasso508e53e2004-05-18 18:57:06 +0000273int
paul718e3742002-12-13 20:15:29 +0000274ospf6_recvmsg (struct in6_addr *src, struct in6_addr *dst,
275 unsigned int *ifindex, struct iovec *message)
276{
277 int retval;
278 struct msghdr rmsghdr;
279 struct cmsghdr *rcmsgp;
280 u_char cmsgbuf[CMSG_SPACE(sizeof (struct in6_pktinfo))];
281 struct in6_pktinfo *pktinfo;
282 struct sockaddr_in6 src_sin6;
283
284 rcmsgp = (struct cmsghdr *)cmsgbuf;
285 pktinfo = (struct in6_pktinfo *)(CMSG_DATA(rcmsgp));
286 memset (&src_sin6, 0, sizeof (struct sockaddr_in6));
287
288 /* receive control msg */
289 rcmsgp->cmsg_level = IPPROTO_IPV6;
290 rcmsgp->cmsg_type = IPV6_PKTINFO;
291 rcmsgp->cmsg_len = CMSG_LEN (sizeof (struct in6_pktinfo));
292 /* rcmsgp = CMSG_NXTHDR (&rmsghdr, rcmsgp); */
293
294 /* receive msg hdr */
Paul Jakmacf1ce252006-05-15 10:46:07 +0000295 memset (&rmsghdr, 0, sizeof (rmsghdr));
paul718e3742002-12-13 20:15:29 +0000296 rmsghdr.msg_iov = message;
297 rmsghdr.msg_iovlen = iov_count (message);
298 rmsghdr.msg_name = (caddr_t) &src_sin6;
299 rmsghdr.msg_namelen = sizeof (struct sockaddr_in6);
300 rmsghdr.msg_control = (caddr_t) cmsgbuf;
301 rmsghdr.msg_controllen = sizeof (cmsgbuf);
302
303 retval = recvmsg (ospf6_sock, &rmsghdr, 0);
304 if (retval < 0)
ajs6099b3b2004-11-20 02:06:59 +0000305 zlog_warn ("recvmsg failed: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000306 else if (retval == iov_totallen (message))
hasso508e53e2004-05-18 18:57:06 +0000307 zlog_warn ("recvmsg read full buffer size: %d", retval);
paul718e3742002-12-13 20:15:29 +0000308
309 /* source address */
310 assert (src);
311 memcpy (src, &src_sin6.sin6_addr, sizeof (struct in6_addr));
312
313 /* destination address */
314 if (ifindex)
315 *ifindex = pktinfo->ipi6_ifindex;
316 if (dst)
317 memcpy (dst, &pktinfo->ipi6_addr, sizeof (struct in6_addr));
hasso508e53e2004-05-18 18:57:06 +0000318
319 return retval;
paul718e3742002-12-13 20:15:29 +0000320}
321
paul718e3742002-12-13 20:15:29 +0000322