raw_ip6.c revision 1.2 1 1.2 itojun /*
2 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 1.2 itojun * All rights reserved.
4 1.2 itojun *
5 1.2 itojun * Redistribution and use in source and binary forms, with or without
6 1.2 itojun * modification, are permitted provided that the following conditions
7 1.2 itojun * are met:
8 1.2 itojun * 1. Redistributions of source code must retain the above copyright
9 1.2 itojun * notice, this list of conditions and the following disclaimer.
10 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
11 1.2 itojun * notice, this list of conditions and the following disclaimer in the
12 1.2 itojun * documentation and/or other materials provided with the distribution.
13 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
14 1.2 itojun * may be used to endorse or promote products derived from this software
15 1.2 itojun * without specific prior written permission.
16 1.2 itojun *
17 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.2 itojun * SUCH DAMAGE.
28 1.2 itojun */
29 1.2 itojun
30 1.2 itojun /*
31 1.2 itojun * Copyright (c) 1982, 1986, 1988, 1993
32 1.2 itojun * The Regents of the University of California. All rights reserved.
33 1.2 itojun *
34 1.2 itojun * Redistribution and use in source and binary forms, with or without
35 1.2 itojun * modification, are permitted provided that the following conditions
36 1.2 itojun * are met:
37 1.2 itojun * 1. Redistributions of source code must retain the above copyright
38 1.2 itojun * notice, this list of conditions and the following disclaimer.
39 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
40 1.2 itojun * notice, this list of conditions and the following disclaimer in the
41 1.2 itojun * documentation and/or other materials provided with the distribution.
42 1.2 itojun * 3. All advertising materials mentioning features or use of this software
43 1.2 itojun * must display the following acknowledgement:
44 1.2 itojun * This product includes software developed by the University of
45 1.2 itojun * California, Berkeley and its contributors.
46 1.2 itojun * 4. Neither the name of the University nor the names of its contributors
47 1.2 itojun * may be used to endorse or promote products derived from this software
48 1.2 itojun * without specific prior written permission.
49 1.2 itojun *
50 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 1.2 itojun * SUCH DAMAGE.
61 1.2 itojun *
62 1.2 itojun * @(#)raw_ip.c 8.2 (Berkeley) 1/4/94
63 1.2 itojun */
64 1.2 itojun
65 1.2 itojun #include <sys/param.h>
66 1.2 itojun #include <sys/malloc.h>
67 1.2 itojun #include <sys/mbuf.h>
68 1.2 itojun #include <sys/socket.h>
69 1.2 itojun #include <sys/protosw.h>
70 1.2 itojun #include <sys/socketvar.h>
71 1.2 itojun #include <sys/errno.h>
72 1.2 itojun #include <sys/systm.h>
73 1.2 itojun #ifdef __NetBSD__
74 1.2 itojun #include <sys/proc.h>
75 1.2 itojun #endif
76 1.2 itojun
77 1.2 itojun #include <net/if.h>
78 1.2 itojun #include <net/route.h>
79 1.2 itojun #include <net/if_types.h>
80 1.2 itojun
81 1.2 itojun #include <netinet/in.h>
82 1.2 itojun #include <netinet/in_var.h>
83 1.2 itojun #include <netinet6/in6_systm.h>
84 1.2 itojun #include <netinet6/ip6.h>
85 1.2 itojun #include <netinet6/ip6_var.h>
86 1.2 itojun #include <netinet6/ip6_mroute.h>
87 1.2 itojun #include <netinet6/icmp6.h>
88 1.2 itojun #include <netinet6/in6_pcb.h>
89 1.2 itojun #include <netinet6/nd6.h>
90 1.2 itojun
91 1.2 itojun #ifdef IPSEC
92 1.2 itojun #include <netinet6/ipsec.h>
93 1.2 itojun #endif /*IPSEC*/
94 1.2 itojun
95 1.2 itojun #include <machine/stdarg.h>
96 1.2 itojun
97 1.2 itojun #include "faith.h"
98 1.2 itojun
99 1.2 itojun struct in6pcb rawin6pcb;
100 1.2 itojun #define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa))
101 1.2 itojun
102 1.2 itojun /*
103 1.2 itojun * Raw interface to IP6 protocol.
104 1.2 itojun */
105 1.2 itojun
106 1.2 itojun /*
107 1.2 itojun * Initialize raw connection block queue.
108 1.2 itojun */
109 1.2 itojun void
110 1.2 itojun rip6_init()
111 1.2 itojun {
112 1.2 itojun rawin6pcb.in6p_next = rawin6pcb.in6p_prev = &rawin6pcb;
113 1.2 itojun }
114 1.2 itojun
115 1.2 itojun /*
116 1.2 itojun * Setup generic address and protocol structures
117 1.2 itojun * for raw_input routine, then pass them along with
118 1.2 itojun * mbuf chain.
119 1.2 itojun */
120 1.2 itojun int
121 1.2 itojun rip6_input(mp, offp, proto)
122 1.2 itojun struct mbuf **mp;
123 1.2 itojun int *offp, proto;
124 1.2 itojun {
125 1.2 itojun struct mbuf *m = *mp;
126 1.2 itojun register struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
127 1.2 itojun register struct in6pcb *in6p;
128 1.2 itojun struct in6pcb *last = NULL;
129 1.2 itojun struct sockaddr_in6 rip6src;
130 1.2 itojun struct mbuf *opts = NULL;
131 1.2 itojun
132 1.2 itojun #if defined(NFAITH) && 0 < NFAITH
133 1.2 itojun if (m->m_pkthdr.rcvif) {
134 1.2 itojun if (m->m_pkthdr.rcvif->if_type == IFT_FAITH) {
135 1.2 itojun /* send icmp6 host unreach? */
136 1.2 itojun m_freem(m);
137 1.2 itojun return IPPROTO_DONE;
138 1.2 itojun }
139 1.2 itojun }
140 1.2 itojun #endif
141 1.2 itojun bzero(&rip6src, sizeof(rip6src));
142 1.2 itojun rip6src.sin6_len = sizeof(struct sockaddr_in6);
143 1.2 itojun rip6src.sin6_family = AF_INET6;
144 1.2 itojun rip6src.sin6_addr = ip6->ip6_src;
145 1.2 itojun if (IN6_IS_SCOPE_LINKLOCAL(&rip6src.sin6_addr))
146 1.2 itojun rip6src.sin6_addr.s6_addr16[1] = 0;
147 1.2 itojun if (m->m_pkthdr.rcvif) {
148 1.2 itojun if (IN6_IS_SCOPE_LINKLOCAL(&rip6src.sin6_addr))
149 1.2 itojun rip6src.sin6_scope_id = m->m_pkthdr.rcvif->if_index;
150 1.2 itojun else
151 1.2 itojun rip6src.sin6_scope_id = 0;
152 1.2 itojun } else
153 1.2 itojun rip6src.sin6_scope_id = 0;
154 1.2 itojun
155 1.2 itojun for (in6p = rawin6pcb.in6p_next;
156 1.2 itojun in6p != &rawin6pcb; in6p = in6p->in6p_next) {
157 1.2 itojun if (in6p->in6p_ip6.ip6_nxt &&
158 1.2 itojun in6p->in6p_ip6.ip6_nxt != proto)
159 1.2 itojun continue;
160 1.2 itojun if (!IN6_IS_ADDR_ANY(&in6p->in6p_laddr) &&
161 1.2 itojun !IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &ip6->ip6_dst))
162 1.2 itojun continue;
163 1.2 itojun if (!IN6_IS_ADDR_ANY(&in6p->in6p_faddr) &&
164 1.2 itojun !IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr, &ip6->ip6_src))
165 1.2 itojun continue;
166 1.2 itojun if (in6p->in6p_cksum != -1
167 1.2 itojun && in6_cksum(m, ip6->ip6_nxt, *offp,
168 1.2 itojun sizeof(struct ip6_hdr) + ip6->ip6_plen - *offp)) {
169 1.2 itojun /* XXX bark something */
170 1.2 itojun continue;
171 1.2 itojun }
172 1.2 itojun if (last) {
173 1.2 itojun struct mbuf *n;
174 1.2 itojun if ((n = m_copy(m, 0, (int)M_COPYALL)) != NULL) {
175 1.2 itojun if (last->in6p_flags & IN6P_CONTROLOPTS)
176 1.2 itojun ip6_savecontrol(last, &opts, ip6, n);
177 1.2 itojun /* strip intermediate headers */
178 1.2 itojun m_adj(n, *offp);
179 1.2 itojun if (sbappendaddr(&last->in6p_socket->so_rcv,
180 1.2 itojun (struct sockaddr *)&rip6src,
181 1.2 itojun n, opts) == 0) {
182 1.2 itojun /* should notify about lost packet */
183 1.2 itojun m_freem(n);
184 1.2 itojun if (opts)
185 1.2 itojun m_freem(opts);
186 1.2 itojun } else
187 1.2 itojun sorwakeup(last->in6p_socket);
188 1.2 itojun opts = NULL;
189 1.2 itojun }
190 1.2 itojun }
191 1.2 itojun last = in6p;
192 1.2 itojun }
193 1.2 itojun if (last) {
194 1.2 itojun if (last->in6p_flags & IN6P_CONTROLOPTS)
195 1.2 itojun ip6_savecontrol(last, &opts, ip6, m);
196 1.2 itojun /* strip intermediate headers */
197 1.2 itojun m_adj(m, *offp);
198 1.2 itojun if (sbappendaddr(&last->in6p_socket->so_rcv,
199 1.2 itojun (struct sockaddr *)&rip6src, m, opts) == 0) {
200 1.2 itojun m_freem(m);
201 1.2 itojun if (opts)
202 1.2 itojun m_freem(opts);
203 1.2 itojun } else
204 1.2 itojun sorwakeup(last->in6p_socket);
205 1.2 itojun } else {
206 1.2 itojun if (proto == IPPROTO_NONE)
207 1.2 itojun m_freem(m);
208 1.2 itojun else {
209 1.2 itojun char *prvnxtp = ip6_get_prevhdr(m, *offp); /* XXX */
210 1.2 itojun icmp6_error(m, ICMP6_PARAM_PROB,
211 1.2 itojun ICMP6_PARAMPROB_NEXTHEADER,
212 1.2 itojun prvnxtp - mtod(m, char *));
213 1.2 itojun }
214 1.2 itojun ip6stat.ip6s_delivered--;
215 1.2 itojun }
216 1.2 itojun return IPPROTO_DONE;
217 1.2 itojun }
218 1.2 itojun
219 1.2 itojun /*
220 1.2 itojun * Generate IPv6 header and pass packet to ip6_output.
221 1.2 itojun * Tack on options user may have setup with control call.
222 1.2 itojun */
223 1.2 itojun int
224 1.2 itojun #if __STDC__
225 1.2 itojun rip6_output(struct mbuf *m, ...)
226 1.2 itojun #else
227 1.2 itojun rip6_output(m, va_alist)
228 1.2 itojun struct mbuf *m;
229 1.2 itojun va_dcl
230 1.2 itojun #endif
231 1.2 itojun {
232 1.2 itojun struct socket *so;
233 1.2 itojun struct sockaddr_in6 *dstsock;
234 1.2 itojun struct mbuf *control;
235 1.2 itojun struct in6_addr *dst;
236 1.2 itojun struct ip6_hdr *ip6;
237 1.2 itojun struct in6pcb *in6p;
238 1.2 itojun u_int plen = m->m_pkthdr.len;
239 1.2 itojun int error = 0;
240 1.2 itojun struct ip6_pktopts opt, *optp = NULL;
241 1.2 itojun struct ifnet *oifp = NULL;
242 1.2 itojun int priv = 0;
243 1.2 itojun va_list ap;
244 1.2 itojun
245 1.2 itojun va_start(ap, m);
246 1.2 itojun so = va_arg(ap, struct socket *);
247 1.2 itojun dstsock = va_arg(ap, struct sockaddr_in6 *);
248 1.2 itojun control = va_arg(ap, struct mbuf *);
249 1.2 itojun va_end(ap);
250 1.2 itojun
251 1.2 itojun in6p = sotoin6pcb(so);
252 1.2 itojun
253 1.2 itojun {
254 1.2 itojun struct proc *p = curproc; /* XXX */
255 1.2 itojun
256 1.2 itojun if (p && !suser(p->p_ucred, &p->p_acflag))
257 1.2 itojun priv = 1;
258 1.2 itojun }
259 1.2 itojun dst = &dstsock->sin6_addr;
260 1.2 itojun if (control) {
261 1.2 itojun if ((error = ip6_setpktoptions(control, &opt, priv)) != 0)
262 1.2 itojun goto bad;
263 1.2 itojun optp = &opt;
264 1.2 itojun } else
265 1.2 itojun optp = in6p->in6p_outputopts;
266 1.2 itojun
267 1.2 itojun M_PREPEND(m, sizeof(*ip6), M_WAIT);
268 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
269 1.2 itojun
270 1.2 itojun /*
271 1.2 itojun * Next header might not be ICMP6 but use its pseudo header anyway.
272 1.2 itojun */
273 1.2 itojun ip6->ip6_dst = *dst;
274 1.2 itojun
275 1.2 itojun /*
276 1.2 itojun * If the scope of the destination is link-local, embed the interface
277 1.2 itojun * index in the address.
278 1.2 itojun *
279 1.2 itojun * XXX advanced-api value overrides sin6_scope_id
280 1.2 itojun */
281 1.2 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst)) {
282 1.2 itojun struct in6_pktinfo *pi;
283 1.2 itojun
284 1.2 itojun /*
285 1.2 itojun * XXX Boundary check is assumed to be already done in
286 1.2 itojun * in6_setpktoptions().
287 1.2 itojun */
288 1.2 itojun if (optp && (pi = optp->ip6po_pktinfo) && pi->ipi6_ifindex) {
289 1.2 itojun ip6->ip6_dst.s6_addr16[1] = htons(pi->ipi6_ifindex);
290 1.2 itojun oifp = ifindex2ifnet[pi->ipi6_ifindex];
291 1.2 itojun }
292 1.2 itojun else if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) &&
293 1.2 itojun in6p->in6p_moptions &&
294 1.2 itojun in6p->in6p_moptions->im6o_multicast_ifp) {
295 1.2 itojun ip6->ip6_dst.s6_addr16[1] =
296 1.2 itojun htons(in6p->in6p_moptions->im6o_multicast_ifp->if_index);
297 1.2 itojun oifp = ifindex2ifnet[in6p->in6p_moptions->im6o_multicast_ifp->if_index];
298 1.2 itojun } else if (dstsock->sin6_scope_id) {
299 1.2 itojun /* boundary check */
300 1.2 itojun if (dstsock->sin6_scope_id < 0
301 1.2 itojun || if_index < dstsock->sin6_scope_id) {
302 1.2 itojun error = ENXIO; /* XXX EINVAL? */
303 1.2 itojun goto bad;
304 1.2 itojun }
305 1.2 itojun ip6->ip6_dst.s6_addr16[1]
306 1.2 itojun = htons(dstsock->sin6_scope_id & 0xffff);/*XXX*/
307 1.2 itojun }
308 1.2 itojun }
309 1.2 itojun
310 1.2 itojun if (IN6_IS_ADDR_ANY(&in6p->in6p_laddr)) {
311 1.2 itojun struct in6_addr *in6a;
312 1.2 itojun
313 1.2 itojun if ((in6a = in6_selectsrc(dstsock, optp,
314 1.2 itojun in6p->in6p_moptions,
315 1.2 itojun &in6p->in6p_route,
316 1.2 itojun &error)) == 0) {
317 1.2 itojun if (error == 0)
318 1.2 itojun error = EADDRNOTAVAIL;
319 1.2 itojun goto bad;
320 1.2 itojun }
321 1.2 itojun ip6->ip6_src = *in6a;
322 1.2 itojun if (in6p->in6p_route.ro_rt)
323 1.2 itojun oifp = ifindex2ifnet[in6p->in6p_route.ro_rt->rt_ifp->if_index];
324 1.2 itojun } else
325 1.2 itojun ip6->ip6_src = in6p->in6p_laddr;
326 1.2 itojun
327 1.2 itojun ip6->ip6_flow = in6p->in6p_flowinfo & IPV6_FLOWINFO_MASK;
328 1.2 itojun ip6->ip6_vfc = IPV6_VERSION;
329 1.2 itojun #if 0 /* ip6_plen will be filled in ip6_output. */
330 1.2 itojun ip6->ip6_plen = htons((u_short)plen);
331 1.2 itojun #endif
332 1.2 itojun ip6->ip6_nxt = in6p->in6p_ip6.ip6_nxt;
333 1.2 itojun if (oifp)
334 1.2 itojun ip6->ip6_hlim = nd_ifinfo[oifp->if_index].chlim;
335 1.2 itojun else
336 1.2 itojun ip6->ip6_hlim = in6p->in6p_ip6.ip6_hlim;
337 1.2 itojun
338 1.2 itojun if (so->so_proto->pr_protocol == IPPROTO_ICMPV6 ||
339 1.2 itojun in6p->in6p_cksum != -1) {
340 1.2 itojun struct mbuf *n;
341 1.2 itojun int off;
342 1.2 itojun u_int16_t *p;
343 1.2 itojun
344 1.2 itojun #define offsetof(type, member) ((size_t)(&((type *)0)->member)) /* XXX */
345 1.2 itojun
346 1.2 itojun /* compute checksum */
347 1.2 itojun if (so->so_proto->pr_protocol == IPPROTO_ICMPV6)
348 1.2 itojun off = offsetof(struct icmp6_hdr, icmp6_cksum);
349 1.2 itojun else
350 1.2 itojun off = in6p->in6p_cksum;
351 1.2 itojun if (plen < off + 1) {
352 1.2 itojun error = EINVAL;
353 1.2 itojun goto bad;
354 1.2 itojun }
355 1.2 itojun off += sizeof(struct ip6_hdr);
356 1.2 itojun
357 1.2 itojun n = m;
358 1.2 itojun while (n && n->m_len <= off) {
359 1.2 itojun off -= n->m_len;
360 1.2 itojun n = n->m_next;
361 1.2 itojun }
362 1.2 itojun if (!n)
363 1.2 itojun goto bad;
364 1.2 itojun p = (u_int16_t *)(mtod(n, caddr_t) + off);
365 1.2 itojun *p = 0;
366 1.2 itojun *p = in6_cksum(m, ip6->ip6_nxt, sizeof(*ip6), plen);
367 1.2 itojun }
368 1.2 itojun
369 1.2 itojun #ifdef IPSEC
370 1.2 itojun m->m_pkthdr.rcvif = (struct ifnet *)so;
371 1.2 itojun #endif /*IPSEC*/
372 1.2 itojun
373 1.2 itojun error = ip6_output(m, optp, &in6p->in6p_route, 0, in6p->in6p_moptions);
374 1.2 itojun goto freectl;
375 1.2 itojun
376 1.2 itojun bad:
377 1.2 itojun if (m)
378 1.2 itojun m_freem(m);
379 1.2 itojun
380 1.2 itojun freectl:
381 1.2 itojun if (optp == &opt && optp->ip6po_rthdr && optp->ip6po_route.ro_rt)
382 1.2 itojun RTFREE(optp->ip6po_route.ro_rt);
383 1.2 itojun if (control)
384 1.2 itojun m_freem(control);
385 1.2 itojun return(error);
386 1.2 itojun }
387 1.2 itojun
388 1.2 itojun /*
389 1.2 itojun * Raw IPv6 socket option processing.
390 1.2 itojun */
391 1.2 itojun int
392 1.2 itojun rip6_ctloutput(op, so, level, optname, m)
393 1.2 itojun int op;
394 1.2 itojun struct socket *so;
395 1.2 itojun int level, optname;
396 1.2 itojun struct mbuf **m;
397 1.2 itojun {
398 1.2 itojun int error = 0;
399 1.2 itojun
400 1.2 itojun switch(level) {
401 1.2 itojun case IPPROTO_IPV6:
402 1.2 itojun switch(optname) {
403 1.2 itojun case MRT6_INIT:
404 1.2 itojun case MRT6_DONE:
405 1.2 itojun case MRT6_ADD_MIF:
406 1.2 itojun case MRT6_DEL_MIF:
407 1.2 itojun case MRT6_ADD_MFC:
408 1.2 itojun case MRT6_DEL_MFC:
409 1.2 itojun case MRT6_PIM:
410 1.2 itojun if (op == PRCO_SETOPT) {
411 1.2 itojun error = ip6_mrouter_set(optname, so, *m);
412 1.2 itojun if (*m)
413 1.2 itojun (void)m_free(*m);
414 1.2 itojun } else if (op == PRCO_GETOPT) {
415 1.2 itojun error = ip6_mrouter_get(optname, so, m);
416 1.2 itojun } else
417 1.2 itojun error = EINVAL;
418 1.2 itojun return (error);
419 1.2 itojun }
420 1.2 itojun return (ip6_ctloutput(op, so, level, optname, m));
421 1.2 itojun /* NOTREACHED */
422 1.2 itojun
423 1.2 itojun case IPPROTO_ICMPV6:
424 1.2 itojun /*
425 1.2 itojun * XXX: is it better to call icmp6_ctloutput() directly
426 1.2 itojun * from protosw?
427 1.2 itojun */
428 1.2 itojun return(icmp6_ctloutput(op, so, level, optname, m));
429 1.2 itojun
430 1.2 itojun default:
431 1.2 itojun if (op == PRCO_SETOPT && *m)
432 1.2 itojun (void)m_free(*m);
433 1.2 itojun return(EINVAL);
434 1.2 itojun }
435 1.2 itojun }
436 1.2 itojun
437 1.2 itojun extern u_long rip6_sendspace;
438 1.2 itojun extern u_long rip6_recvspace;
439 1.2 itojun
440 1.2 itojun int
441 1.2 itojun rip6_usrreq(so, req, m, nam, control, p)
442 1.2 itojun register struct socket *so;
443 1.2 itojun int req;
444 1.2 itojun struct mbuf *m, *nam, *control;
445 1.2 itojun struct proc *p;
446 1.2 itojun {
447 1.2 itojun register struct in6pcb *in6p = sotoin6pcb(so);
448 1.2 itojun int s;
449 1.2 itojun int error = 0;
450 1.2 itojun /* extern struct socket *ip6_mrouter; */ /* xxx */
451 1.2 itojun
452 1.2 itojun if (req == PRU_CONTROL)
453 1.2 itojun return (in6_control(so, (u_long)m, (caddr_t)nam,
454 1.2 itojun (struct ifnet *)control, p));
455 1.2 itojun
456 1.2 itojun switch (req) {
457 1.2 itojun case PRU_ATTACH:
458 1.2 itojun if (in6p)
459 1.2 itojun panic("rip6_attach");
460 1.2 itojun if (p == 0 || suser(p->p_ucred, &p->p_acflag)) {
461 1.2 itojun error = EACCES;
462 1.2 itojun break;
463 1.2 itojun }
464 1.2 itojun s = splnet();
465 1.2 itojun if ((error = soreserve(so, rip6_sendspace, rip6_recvspace)) ||
466 1.2 itojun (error = in6_pcballoc(so, &rawin6pcb))) {
467 1.2 itojun splx(s);
468 1.2 itojun break;
469 1.2 itojun }
470 1.2 itojun splx(s);
471 1.2 itojun in6p = sotoin6pcb(so);
472 1.2 itojun in6p->in6p_ip6.ip6_nxt = (int)nam;
473 1.2 itojun in6p->in6p_cksum = -1;
474 1.2 itojun #ifdef IPSEC
475 1.2 itojun if ((error = ipsec_init_policy(&in6p->in6p_sp)) != 0)
476 1.2 itojun break;
477 1.2 itojun #endif /*IPSEC*/
478 1.2 itojun
479 1.2 itojun MALLOC(in6p->in6p_icmp6filt, struct icmp6_filter *,
480 1.2 itojun sizeof(struct icmp6_filter), M_PCB, M_NOWAIT);
481 1.2 itojun ICMP6_FILTER_SETPASSALL(in6p->in6p_icmp6filt);
482 1.2 itojun break;
483 1.2 itojun
484 1.2 itojun case PRU_DISCONNECT:
485 1.2 itojun if ((so->so_state & SS_ISCONNECTED) == 0) {
486 1.2 itojun error = ENOTCONN;
487 1.2 itojun break;
488 1.2 itojun }
489 1.2 itojun in6p->in6p_faddr = in6addr_any;
490 1.2 itojun so->so_state &= ~SS_ISCONNECTED; /* XXX */
491 1.2 itojun break;
492 1.2 itojun
493 1.2 itojun case PRU_ABORT:
494 1.2 itojun soisdisconnected(so);
495 1.2 itojun /* Fallthrough */
496 1.2 itojun case PRU_DETACH:
497 1.2 itojun if (in6p == 0)
498 1.2 itojun panic("rip6_detach");
499 1.2 itojun if (so == ip6_mrouter)
500 1.2 itojun ip6_mrouter_done();
501 1.2 itojun /* xxx: RSVP */
502 1.2 itojun if (in6p->in6p_icmp6filt) {
503 1.2 itojun FREE(in6p->in6p_icmp6filt, M_PCB);
504 1.2 itojun in6p->in6p_icmp6filt = NULL;
505 1.2 itojun }
506 1.2 itojun in6_pcbdetach(in6p);
507 1.2 itojun break;
508 1.2 itojun
509 1.2 itojun case PRU_BIND:
510 1.2 itojun {
511 1.2 itojun struct sockaddr_in6 *addr = mtod(nam, struct sockaddr_in6 *);
512 1.2 itojun struct ifaddr *ia = NULL;
513 1.2 itojun
514 1.2 itojun if (nam->m_len != sizeof(*addr)) {
515 1.2 itojun error = EINVAL;
516 1.2 itojun break;
517 1.2 itojun }
518 1.2 itojun if ((ifnet.tqh_first == 0) ||
519 1.2 itojun (addr->sin6_family != AF_INET6) ||
520 1.2 itojun (!IN6_IS_ADDR_ANY(&addr->sin6_addr) &&
521 1.2 itojun (ia = ifa_ifwithaddr((struct sockaddr *)addr)) == 0)) {
522 1.2 itojun error = EADDRNOTAVAIL;
523 1.2 itojun break;
524 1.2 itojun }
525 1.2 itojun if (ia &&
526 1.2 itojun ((struct in6_ifaddr *)ia)->ia6_flags &
527 1.2 itojun (IN6_IFF_ANYCAST|IN6_IFF_NOTREADY|
528 1.2 itojun IN6_IFF_DETACHED|IN6_IFF_DEPRECATED)) {
529 1.2 itojun error = EADDRNOTAVAIL;
530 1.2 itojun break;
531 1.2 itojun }
532 1.2 itojun in6p->in6p_laddr = addr->sin6_addr;
533 1.2 itojun break;
534 1.2 itojun }
535 1.2 itojun
536 1.2 itojun case PRU_CONNECT:
537 1.2 itojun {
538 1.2 itojun struct sockaddr_in6 *addr = mtod(nam, struct sockaddr_in6 *);
539 1.2 itojun struct in6_addr *in6a = NULL;
540 1.2 itojun
541 1.2 itojun if (nam->m_len != sizeof(*addr)) {
542 1.2 itojun error = EINVAL;
543 1.2 itojun break;
544 1.2 itojun }
545 1.2 itojun if (ifnet.tqh_first == 0) {
546 1.2 itojun error = EADDRNOTAVAIL;
547 1.2 itojun break;
548 1.2 itojun }
549 1.2 itojun if (addr->sin6_family != AF_INET6) {
550 1.2 itojun error = EAFNOSUPPORT;
551 1.2 itojun break;
552 1.2 itojun }
553 1.2 itojun
554 1.2 itojun /* Source address selection. XXX: need pcblookup? */
555 1.2 itojun in6a = &in6p->in6p_laddr;
556 1.2 itojun if (IN6_IS_ADDR_ANY(in6a) &&
557 1.2 itojun (in6a = in6_selectsrc(addr, in6p->in6p_outputopts,
558 1.2 itojun in6p->in6p_moptions, &in6p->in6p_route,
559 1.2 itojun &error)) == NULL) {
560 1.2 itojun if (error == 0)
561 1.2 itojun error = EADDRNOTAVAIL;
562 1.2 itojun break;
563 1.2 itojun }
564 1.2 itojun in6p->in6p_laddr = *in6a;
565 1.2 itojun in6p->in6p_faddr = addr->sin6_addr;
566 1.2 itojun soisconnected(so);
567 1.2 itojun break;
568 1.2 itojun }
569 1.2 itojun
570 1.2 itojun case PRU_CONNECT2:
571 1.2 itojun error = EOPNOTSUPP;
572 1.2 itojun break;
573 1.2 itojun
574 1.2 itojun /*
575 1.2 itojun * Mark the connection as being incapable of futther input.
576 1.2 itojun */
577 1.2 itojun case PRU_SHUTDOWN:
578 1.2 itojun socantsendmore(so);
579 1.2 itojun break;
580 1.2 itojun /*
581 1.2 itojun * Ship a packet out. The appropriate raw output
582 1.2 itojun * routine handles any messaging necessary.
583 1.2 itojun */
584 1.2 itojun case PRU_SEND:
585 1.2 itojun {
586 1.2 itojun struct sockaddr_in6 tmp;
587 1.2 itojun struct sockaddr_in6 *dst;
588 1.2 itojun
589 1.2 itojun if (so->so_state & SS_ISCONNECTED) {
590 1.2 itojun if (nam) {
591 1.2 itojun error = EISCONN;
592 1.2 itojun break;
593 1.2 itojun }
594 1.2 itojun /* XXX */
595 1.2 itojun bzero(&tmp, sizeof(tmp));
596 1.2 itojun tmp.sin6_family = AF_INET6;
597 1.2 itojun tmp.sin6_len = sizeof(struct sockaddr_in6);
598 1.2 itojun bcopy(&in6p->in6p_faddr, &tmp.sin6_addr,
599 1.2 itojun sizeof(struct in6_addr));
600 1.2 itojun dst = &tmp;
601 1.2 itojun } else {
602 1.2 itojun if (nam == NULL) {
603 1.2 itojun error = ENOTCONN;
604 1.2 itojun break;
605 1.2 itojun }
606 1.2 itojun dst = mtod(nam, struct sockaddr_in6 *);
607 1.2 itojun }
608 1.2 itojun error = rip6_output(m, so, dst, control);
609 1.2 itojun m = NULL;
610 1.2 itojun break;
611 1.2 itojun }
612 1.2 itojun
613 1.2 itojun case PRU_SENSE:
614 1.2 itojun /*
615 1.2 itojun * stat: don't bother with a blocksize
616 1.2 itojun */
617 1.2 itojun return(0);
618 1.2 itojun /*
619 1.2 itojun * Not supported.
620 1.2 itojun */
621 1.2 itojun case PRU_RCVOOB:
622 1.2 itojun case PRU_RCVD:
623 1.2 itojun case PRU_LISTEN:
624 1.2 itojun case PRU_ACCEPT:
625 1.2 itojun case PRU_SENDOOB:
626 1.2 itojun error = EOPNOTSUPP;
627 1.2 itojun break;
628 1.2 itojun
629 1.2 itojun case PRU_SOCKADDR:
630 1.2 itojun in6_setsockaddr(in6p, nam);
631 1.2 itojun break;
632 1.2 itojun
633 1.2 itojun case PRU_PEERADDR:
634 1.2 itojun in6_setpeeraddr(in6p, nam);
635 1.2 itojun break;
636 1.2 itojun
637 1.2 itojun default:
638 1.2 itojun panic("rip6_usrreq");
639 1.2 itojun }
640 1.2 itojun if (m != NULL)
641 1.2 itojun m_freem(m);
642 1.2 itojun return(error);
643 1.2 itojun }
644