ip6_output.c revision 1.44.4.4 1 1.44.4.4 jmc /* $NetBSD: ip6_output.c,v 1.44.4.4 2004/02/07 20:06:04 jmc Exp $ */
2 1.33 itojun /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */
3 1.3 thorpej
4 1.2 itojun /*
5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.2 itojun * All rights reserved.
7 1.19 itojun *
8 1.2 itojun * Redistribution and use in source and binary forms, with or without
9 1.2 itojun * modification, are permitted provided that the following conditions
10 1.2 itojun * are met:
11 1.2 itojun * 1. Redistributions of source code must retain the above copyright
12 1.2 itojun * notice, this list of conditions and the following disclaimer.
13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 itojun * notice, this list of conditions and the following disclaimer in the
15 1.2 itojun * documentation and/or other materials provided with the distribution.
16 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.2 itojun * may be used to endorse or promote products derived from this software
18 1.2 itojun * without specific prior written permission.
19 1.19 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.2 itojun * SUCH DAMAGE.
31 1.2 itojun */
32 1.2 itojun
33 1.2 itojun /*
34 1.2 itojun * Copyright (c) 1982, 1986, 1988, 1990, 1993
35 1.2 itojun * The Regents of the University of California. All rights reserved.
36 1.2 itojun *
37 1.2 itojun * Redistribution and use in source and binary forms, with or without
38 1.2 itojun * modification, are permitted provided that the following conditions
39 1.2 itojun * are met:
40 1.2 itojun * 1. Redistributions of source code must retain the above copyright
41 1.2 itojun * notice, this list of conditions and the following disclaimer.
42 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
43 1.2 itojun * notice, this list of conditions and the following disclaimer in the
44 1.2 itojun * documentation and/or other materials provided with the distribution.
45 1.2 itojun * 3. All advertising materials mentioning features or use of this software
46 1.2 itojun * must display the following acknowledgement:
47 1.2 itojun * This product includes software developed by the University of
48 1.2 itojun * California, Berkeley and its contributors.
49 1.2 itojun * 4. Neither the name of the University nor the names of its contributors
50 1.2 itojun * may be used to endorse or promote products derived from this software
51 1.2 itojun * without specific prior written permission.
52 1.2 itojun *
53 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 1.2 itojun * SUCH DAMAGE.
64 1.2 itojun *
65 1.2 itojun * @(#)ip_output.c 8.3 (Berkeley) 1/21/94
66 1.2 itojun */
67 1.41 lukem
68 1.41 lukem #include <sys/cdefs.h>
69 1.44.4.4 jmc __KERNEL_RCSID(0, "$NetBSD: ip6_output.c,v 1.44.4.4 2004/02/07 20:06:04 jmc Exp $");
70 1.2 itojun
71 1.2 itojun #include "opt_inet.h"
72 1.4 thorpej #include "opt_ipsec.h"
73 1.15 darrenr #include "opt_pfil_hooks.h"
74 1.2 itojun
75 1.2 itojun #include <sys/param.h>
76 1.2 itojun #include <sys/malloc.h>
77 1.2 itojun #include <sys/mbuf.h>
78 1.2 itojun #include <sys/errno.h>
79 1.2 itojun #include <sys/protosw.h>
80 1.2 itojun #include <sys/socket.h>
81 1.2 itojun #include <sys/socketvar.h>
82 1.2 itojun #include <sys/systm.h>
83 1.2 itojun #include <sys/proc.h>
84 1.2 itojun
85 1.2 itojun #include <net/if.h>
86 1.2 itojun #include <net/route.h>
87 1.15 darrenr #ifdef PFIL_HOOKS
88 1.15 darrenr #include <net/pfil.h>
89 1.15 darrenr #endif
90 1.2 itojun
91 1.2 itojun #include <netinet/in.h>
92 1.2 itojun #include <netinet/in_var.h>
93 1.14 itojun #include <netinet/ip6.h>
94 1.14 itojun #include <netinet/icmp6.h>
95 1.10 itojun #include <netinet6/ip6_var.h>
96 1.2 itojun #include <netinet6/in6_pcb.h>
97 1.2 itojun #include <netinet6/nd6.h>
98 1.44.4.4 jmc #include <netinet6/ip6protosw.h>
99 1.2 itojun
100 1.2 itojun #ifdef IPSEC
101 1.2 itojun #include <netinet6/ipsec.h>
102 1.2 itojun #include <netkey/key.h>
103 1.2 itojun #endif /* IPSEC */
104 1.2 itojun
105 1.2 itojun #include "loop.h"
106 1.9 itojun
107 1.9 itojun #include <net/net_osdep.h>
108 1.9 itojun
109 1.27 thorpej #ifdef PFIL_HOOKS
110 1.27 thorpej extern struct pfil_head inet6_pfil_hook; /* XXX */
111 1.27 thorpej #endif
112 1.27 thorpej
113 1.2 itojun struct ip6_exthdrs {
114 1.2 itojun struct mbuf *ip6e_ip6;
115 1.2 itojun struct mbuf *ip6e_hbh;
116 1.2 itojun struct mbuf *ip6e_dest1;
117 1.2 itojun struct mbuf *ip6e_rthdr;
118 1.2 itojun struct mbuf *ip6e_dest2;
119 1.2 itojun };
120 1.2 itojun
121 1.2 itojun static int ip6_pcbopts __P((struct ip6_pktopts **, struct mbuf *,
122 1.2 itojun struct socket *));
123 1.2 itojun static int ip6_setmoptions __P((int, struct ip6_moptions **, struct mbuf *));
124 1.2 itojun static int ip6_getmoptions __P((int, struct ip6_moptions *, struct mbuf **));
125 1.2 itojun static int ip6_copyexthdr __P((struct mbuf **, caddr_t, int));
126 1.2 itojun static int ip6_insertfraghdr __P((struct mbuf *, struct mbuf *, int,
127 1.44.4.4 jmc struct ip6_frag **));
128 1.2 itojun static int ip6_insert_jumboopt __P((struct ip6_exthdrs *, u_int32_t));
129 1.2 itojun static int ip6_splithdr __P((struct mbuf *, struct ip6_exthdrs *));
130 1.44.4.4 jmc static int ip6_getpmtu __P((struct route_in6 *, struct route_in6 *,
131 1.44.4.4 jmc struct ifnet *, struct in6_addr *, u_long *, int *));
132 1.2 itojun
133 1.2 itojun extern struct ifnet loif[NLOOP];
134 1.2 itojun
135 1.2 itojun /*
136 1.2 itojun * IP6 output. The packet in mbuf chain m contains a skeletal IP6
137 1.2 itojun * header (with pri, len, nxt, hlim, src, dst).
138 1.2 itojun * This function may modify ver and hlim only.
139 1.2 itojun * The mbuf chain containing the packet will be freed.
140 1.2 itojun * The mbuf opt, if present, will not be freed.
141 1.2 itojun */
142 1.2 itojun int
143 1.9 itojun ip6_output(m0, opt, ro, flags, im6o, ifpp)
144 1.2 itojun struct mbuf *m0;
145 1.2 itojun struct ip6_pktopts *opt;
146 1.2 itojun struct route_in6 *ro;
147 1.2 itojun int flags;
148 1.2 itojun struct ip6_moptions *im6o;
149 1.9 itojun struct ifnet **ifpp; /* XXX: just for statistics */
150 1.2 itojun {
151 1.2 itojun struct ip6_hdr *ip6, *mhip6;
152 1.19 itojun struct ifnet *ifp, *origifp;
153 1.2 itojun struct mbuf *m = m0;
154 1.2 itojun int hlen, tlen, len, off;
155 1.2 itojun struct route_in6 ip6route;
156 1.2 itojun struct sockaddr_in6 *dst;
157 1.2 itojun int error = 0;
158 1.2 itojun struct in6_ifaddr *ia;
159 1.2 itojun u_long mtu;
160 1.44.4.4 jmc int alwaysfrag, dontfrag;
161 1.2 itojun u_int32_t optlen = 0, plen = 0, unfragpartlen = 0;
162 1.2 itojun struct ip6_exthdrs exthdrs;
163 1.2 itojun struct in6_addr finaldst;
164 1.2 itojun struct route_in6 *ro_pmtu = NULL;
165 1.2 itojun int hdrsplit = 0;
166 1.2 itojun int needipsec = 0;
167 1.2 itojun #ifdef IPSEC
168 1.2 itojun int needipsectun = 0;
169 1.2 itojun struct socket *so;
170 1.2 itojun struct secpolicy *sp = NULL;
171 1.2 itojun
172 1.2 itojun /* for AH processing. stupid to have "socket" variable in IP layer... */
173 1.17 itojun so = ipsec_getsocket(m);
174 1.28 itojun (void)ipsec_setsocket(m, NULL);
175 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
176 1.2 itojun #endif /* IPSEC */
177 1.2 itojun
178 1.22 itojun #define MAKE_EXTHDR(hp, mp) \
179 1.22 itojun do { \
180 1.2 itojun if (hp) { \
181 1.2 itojun struct ip6_ext *eh = (struct ip6_ext *)(hp); \
182 1.2 itojun error = ip6_copyexthdr((mp), (caddr_t)(hp), \
183 1.2 itojun ((eh)->ip6e_len + 1) << 3); \
184 1.2 itojun if (error) \
185 1.2 itojun goto freehdrs; \
186 1.2 itojun } \
187 1.22 itojun } while (0)
188 1.22 itojun
189 1.2 itojun bzero(&exthdrs, sizeof(exthdrs));
190 1.2 itojun if (opt) {
191 1.2 itojun /* Hop-by-Hop options header */
192 1.2 itojun MAKE_EXTHDR(opt->ip6po_hbh, &exthdrs.ip6e_hbh);
193 1.2 itojun /* Destination options header(1st part) */
194 1.2 itojun MAKE_EXTHDR(opt->ip6po_dest1, &exthdrs.ip6e_dest1);
195 1.2 itojun /* Routing header */
196 1.2 itojun MAKE_EXTHDR(opt->ip6po_rthdr, &exthdrs.ip6e_rthdr);
197 1.2 itojun /* Destination options header(2nd part) */
198 1.2 itojun MAKE_EXTHDR(opt->ip6po_dest2, &exthdrs.ip6e_dest2);
199 1.2 itojun }
200 1.2 itojun
201 1.2 itojun #ifdef IPSEC
202 1.2 itojun /* get a security policy for this packet */
203 1.2 itojun if (so == NULL)
204 1.13 itojun sp = ipsec6_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND, 0, &error);
205 1.2 itojun else
206 1.13 itojun sp = ipsec6_getpolicybysock(m, IPSEC_DIR_OUTBOUND, so, &error);
207 1.2 itojun
208 1.2 itojun if (sp == NULL) {
209 1.2 itojun ipsec6stat.out_inval++;
210 1.23 itojun goto freehdrs;
211 1.2 itojun }
212 1.2 itojun
213 1.2 itojun error = 0;
214 1.2 itojun
215 1.2 itojun /* check policy */
216 1.2 itojun switch (sp->policy) {
217 1.2 itojun case IPSEC_POLICY_DISCARD:
218 1.2 itojun /*
219 1.2 itojun * This packet is just discarded.
220 1.2 itojun */
221 1.2 itojun ipsec6stat.out_polvio++;
222 1.23 itojun goto freehdrs;
223 1.2 itojun
224 1.2 itojun case IPSEC_POLICY_BYPASS:
225 1.2 itojun case IPSEC_POLICY_NONE:
226 1.2 itojun /* no need to do IPsec. */
227 1.2 itojun needipsec = 0;
228 1.2 itojun break;
229 1.2 itojun
230 1.2 itojun case IPSEC_POLICY_IPSEC:
231 1.2 itojun if (sp->req == NULL) {
232 1.2 itojun /* XXX should be panic ? */
233 1.2 itojun printf("ip6_output: No IPsec request specified.\n");
234 1.2 itojun error = EINVAL;
235 1.23 itojun goto freehdrs;
236 1.2 itojun }
237 1.2 itojun needipsec = 1;
238 1.2 itojun break;
239 1.2 itojun
240 1.2 itojun case IPSEC_POLICY_ENTRUST:
241 1.2 itojun default:
242 1.2 itojun printf("ip6_output: Invalid policy found. %d\n", sp->policy);
243 1.2 itojun }
244 1.2 itojun #endif /* IPSEC */
245 1.2 itojun
246 1.2 itojun /*
247 1.2 itojun * Calculate the total length of the extension header chain.
248 1.2 itojun * Keep the length of the unfragmentable part for fragmentation.
249 1.2 itojun */
250 1.9 itojun optlen = 0;
251 1.2 itojun if (exthdrs.ip6e_hbh) optlen += exthdrs.ip6e_hbh->m_len;
252 1.2 itojun if (exthdrs.ip6e_dest1) optlen += exthdrs.ip6e_dest1->m_len;
253 1.2 itojun if (exthdrs.ip6e_rthdr) optlen += exthdrs.ip6e_rthdr->m_len;
254 1.9 itojun unfragpartlen = optlen + sizeof(struct ip6_hdr);
255 1.2 itojun /* NOTE: we don't add AH/ESP length here. do that later. */
256 1.2 itojun if (exthdrs.ip6e_dest2) optlen += exthdrs.ip6e_dest2->m_len;
257 1.2 itojun
258 1.2 itojun /*
259 1.2 itojun * If we need IPsec, or there is at least one extension header,
260 1.2 itojun * separate IP6 header from the payload.
261 1.2 itojun */
262 1.2 itojun if ((needipsec || optlen) && !hdrsplit) {
263 1.2 itojun if ((error = ip6_splithdr(m, &exthdrs)) != 0) {
264 1.2 itojun m = NULL;
265 1.2 itojun goto freehdrs;
266 1.2 itojun }
267 1.2 itojun m = exthdrs.ip6e_ip6;
268 1.2 itojun hdrsplit++;
269 1.2 itojun }
270 1.2 itojun
271 1.2 itojun /* adjust pointer */
272 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
273 1.2 itojun
274 1.2 itojun /* adjust mbuf packet header length */
275 1.2 itojun m->m_pkthdr.len += optlen;
276 1.2 itojun plen = m->m_pkthdr.len - sizeof(*ip6);
277 1.2 itojun
278 1.2 itojun /* If this is a jumbo payload, insert a jumbo payload option. */
279 1.2 itojun if (plen > IPV6_MAXPACKET) {
280 1.2 itojun if (!hdrsplit) {
281 1.2 itojun if ((error = ip6_splithdr(m, &exthdrs)) != 0) {
282 1.2 itojun m = NULL;
283 1.2 itojun goto freehdrs;
284 1.2 itojun }
285 1.2 itojun m = exthdrs.ip6e_ip6;
286 1.2 itojun hdrsplit++;
287 1.2 itojun }
288 1.2 itojun /* adjust pointer */
289 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
290 1.2 itojun if ((error = ip6_insert_jumboopt(&exthdrs, plen)) != 0)
291 1.2 itojun goto freehdrs;
292 1.2 itojun ip6->ip6_plen = 0;
293 1.2 itojun } else
294 1.2 itojun ip6->ip6_plen = htons(plen);
295 1.2 itojun
296 1.2 itojun /*
297 1.2 itojun * Concatenate headers and fill in next header fields.
298 1.2 itojun * Here we have, on "m"
299 1.9 itojun * IPv6 payload
300 1.2 itojun * and we insert headers accordingly. Finally, we should be getting:
301 1.2 itojun * IPv6 hbh dest1 rthdr ah* [esp* dest2 payload]
302 1.9 itojun *
303 1.9 itojun * during the header composing process, "m" points to IPv6 header.
304 1.9 itojun * "mprev" points to an extension header prior to esp.
305 1.2 itojun */
306 1.2 itojun {
307 1.2 itojun u_char *nexthdrp = &ip6->ip6_nxt;
308 1.2 itojun struct mbuf *mprev = m;
309 1.2 itojun
310 1.2 itojun /*
311 1.2 itojun * we treat dest2 specially. this makes IPsec processing
312 1.2 itojun * much easier.
313 1.9 itojun *
314 1.9 itojun * result: IPv6 dest2 payload
315 1.9 itojun * m and mprev will point to IPv6 header.
316 1.2 itojun */
317 1.2 itojun if (exthdrs.ip6e_dest2) {
318 1.2 itojun if (!hdrsplit)
319 1.2 itojun panic("assumption failed: hdr not split");
320 1.9 itojun exthdrs.ip6e_dest2->m_next = m->m_next;
321 1.9 itojun m->m_next = exthdrs.ip6e_dest2;
322 1.2 itojun *mtod(exthdrs.ip6e_dest2, u_char *) = ip6->ip6_nxt;
323 1.2 itojun ip6->ip6_nxt = IPPROTO_DSTOPTS;
324 1.2 itojun }
325 1.2 itojun
326 1.22 itojun #define MAKE_CHAIN(m, mp, p, i)\
327 1.22 itojun do {\
328 1.2 itojun if (m) {\
329 1.2 itojun if (!hdrsplit) \
330 1.2 itojun panic("assumption failed: hdr not split"); \
331 1.2 itojun *mtod((m), u_char *) = *(p);\
332 1.2 itojun *(p) = (i);\
333 1.2 itojun p = mtod((m), u_char *);\
334 1.2 itojun (m)->m_next = (mp)->m_next;\
335 1.2 itojun (mp)->m_next = (m);\
336 1.2 itojun (mp) = (m);\
337 1.2 itojun }\
338 1.22 itojun } while (0)
339 1.9 itojun /*
340 1.9 itojun * result: IPv6 hbh dest1 rthdr dest2 payload
341 1.9 itojun * m will point to IPv6 header. mprev will point to the
342 1.9 itojun * extension header prior to dest2 (rthdr in the above case).
343 1.9 itojun */
344 1.2 itojun MAKE_CHAIN(exthdrs.ip6e_hbh, mprev,
345 1.2 itojun nexthdrp, IPPROTO_HOPOPTS);
346 1.2 itojun MAKE_CHAIN(exthdrs.ip6e_dest1, mprev,
347 1.2 itojun nexthdrp, IPPROTO_DSTOPTS);
348 1.2 itojun MAKE_CHAIN(exthdrs.ip6e_rthdr, mprev,
349 1.2 itojun nexthdrp, IPPROTO_ROUTING);
350 1.2 itojun
351 1.2 itojun #ifdef IPSEC
352 1.2 itojun if (!needipsec)
353 1.2 itojun goto skip_ipsec2;
354 1.2 itojun
355 1.2 itojun /*
356 1.2 itojun * pointers after IPsec headers are not valid any more.
357 1.2 itojun * other pointers need a great care too.
358 1.2 itojun * (IPsec routines should not mangle mbufs prior to AH/ESP)
359 1.2 itojun */
360 1.2 itojun exthdrs.ip6e_dest2 = NULL;
361 1.2 itojun
362 1.2 itojun {
363 1.2 itojun struct ip6_rthdr *rh = NULL;
364 1.2 itojun int segleft_org = 0;
365 1.2 itojun struct ipsec_output_state state;
366 1.2 itojun
367 1.2 itojun if (exthdrs.ip6e_rthdr) {
368 1.2 itojun rh = mtod(exthdrs.ip6e_rthdr, struct ip6_rthdr *);
369 1.2 itojun segleft_org = rh->ip6r_segleft;
370 1.2 itojun rh->ip6r_segleft = 0;
371 1.2 itojun }
372 1.2 itojun
373 1.2 itojun bzero(&state, sizeof(state));
374 1.2 itojun state.m = m;
375 1.2 itojun error = ipsec6_output_trans(&state, nexthdrp, mprev, sp, flags,
376 1.2 itojun &needipsectun);
377 1.2 itojun m = state.m;
378 1.2 itojun if (error) {
379 1.2 itojun /* mbuf is already reclaimed in ipsec6_output_trans. */
380 1.2 itojun m = NULL;
381 1.2 itojun switch (error) {
382 1.2 itojun case EHOSTUNREACH:
383 1.2 itojun case ENETUNREACH:
384 1.2 itojun case EMSGSIZE:
385 1.2 itojun case ENOBUFS:
386 1.2 itojun case ENOMEM:
387 1.2 itojun break;
388 1.2 itojun default:
389 1.2 itojun printf("ip6_output (ipsec): error code %d\n", error);
390 1.42 itojun /* fall through */
391 1.2 itojun case ENOENT:
392 1.2 itojun /* don't show these error codes to the user */
393 1.2 itojun error = 0;
394 1.2 itojun break;
395 1.2 itojun }
396 1.2 itojun goto bad;
397 1.2 itojun }
398 1.2 itojun if (exthdrs.ip6e_rthdr) {
399 1.2 itojun /* ah6_output doesn't modify mbuf chain */
400 1.2 itojun rh->ip6r_segleft = segleft_org;
401 1.2 itojun }
402 1.2 itojun }
403 1.2 itojun skip_ipsec2:;
404 1.2 itojun #endif
405 1.2 itojun }
406 1.2 itojun
407 1.2 itojun /*
408 1.2 itojun * If there is a routing header, replace destination address field
409 1.2 itojun * with the first hop of the routing header.
410 1.2 itojun */
411 1.2 itojun if (exthdrs.ip6e_rthdr) {
412 1.2 itojun struct ip6_rthdr *rh =
413 1.2 itojun (struct ip6_rthdr *)(mtod(exthdrs.ip6e_rthdr,
414 1.2 itojun struct ip6_rthdr *));
415 1.2 itojun struct ip6_rthdr0 *rh0;
416 1.2 itojun
417 1.2 itojun finaldst = ip6->ip6_dst;
418 1.31 itojun switch (rh->ip6r_type) {
419 1.2 itojun case IPV6_RTHDR_TYPE_0:
420 1.2 itojun rh0 = (struct ip6_rthdr0 *)rh;
421 1.2 itojun ip6->ip6_dst = rh0->ip6r0_addr[0];
422 1.2 itojun bcopy((caddr_t)&rh0->ip6r0_addr[1],
423 1.2 itojun (caddr_t)&rh0->ip6r0_addr[0],
424 1.25 itojun sizeof(struct in6_addr) * (rh0->ip6r0_segleft - 1)
425 1.2 itojun );
426 1.2 itojun rh0->ip6r0_addr[rh0->ip6r0_segleft - 1] = finaldst;
427 1.2 itojun break;
428 1.2 itojun default: /* is it possible? */
429 1.2 itojun error = EINVAL;
430 1.2 itojun goto bad;
431 1.2 itojun }
432 1.2 itojun }
433 1.2 itojun
434 1.2 itojun /* Source address validation */
435 1.2 itojun if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src) &&
436 1.44.4.3 tron (flags & IPV6_UNSPECSRC) == 0) {
437 1.2 itojun error = EOPNOTSUPP;
438 1.2 itojun ip6stat.ip6s_badscope++;
439 1.2 itojun goto bad;
440 1.2 itojun }
441 1.2 itojun if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
442 1.2 itojun error = EOPNOTSUPP;
443 1.2 itojun ip6stat.ip6s_badscope++;
444 1.2 itojun goto bad;
445 1.2 itojun }
446 1.2 itojun
447 1.2 itojun ip6stat.ip6s_localout++;
448 1.2 itojun
449 1.2 itojun /*
450 1.2 itojun * Route packet.
451 1.2 itojun */
452 1.2 itojun if (ro == 0) {
453 1.2 itojun ro = &ip6route;
454 1.2 itojun bzero((caddr_t)ro, sizeof(*ro));
455 1.2 itojun }
456 1.2 itojun ro_pmtu = ro;
457 1.2 itojun if (opt && opt->ip6po_rthdr)
458 1.2 itojun ro = &opt->ip6po_route;
459 1.2 itojun dst = (struct sockaddr_in6 *)&ro->ro_dst;
460 1.2 itojun /*
461 1.2 itojun * If there is a cached route,
462 1.2 itojun * check that it is to the same destination
463 1.2 itojun * and is still up. If not, free it and try again.
464 1.2 itojun */
465 1.2 itojun if (ro->ro_rt && ((ro->ro_rt->rt_flags & RTF_UP) == 0 ||
466 1.44 itojun dst->sin6_family != AF_INET6 ||
467 1.44 itojun !IN6_ARE_ADDR_EQUAL(&dst->sin6_addr, &ip6->ip6_dst))) {
468 1.2 itojun RTFREE(ro->ro_rt);
469 1.2 itojun ro->ro_rt = (struct rtentry *)0;
470 1.2 itojun }
471 1.2 itojun if (ro->ro_rt == 0) {
472 1.2 itojun bzero(dst, sizeof(*dst));
473 1.2 itojun dst->sin6_family = AF_INET6;
474 1.2 itojun dst->sin6_len = sizeof(struct sockaddr_in6);
475 1.2 itojun dst->sin6_addr = ip6->ip6_dst;
476 1.2 itojun }
477 1.2 itojun #ifdef IPSEC
478 1.2 itojun if (needipsec && needipsectun) {
479 1.2 itojun struct ipsec_output_state state;
480 1.2 itojun
481 1.2 itojun /*
482 1.2 itojun * All the extension headers will become inaccessible
483 1.2 itojun * (since they can be encrypted).
484 1.2 itojun * Don't panic, we need no more updates to extension headers
485 1.2 itojun * on inner IPv6 packet (since they are now encapsulated).
486 1.2 itojun *
487 1.2 itojun * IPv6 [ESP|AH] IPv6 [extension headers] payload
488 1.2 itojun */
489 1.2 itojun bzero(&exthdrs, sizeof(exthdrs));
490 1.2 itojun exthdrs.ip6e_ip6 = m;
491 1.2 itojun
492 1.2 itojun bzero(&state, sizeof(state));
493 1.2 itojun state.m = m;
494 1.2 itojun state.ro = (struct route *)ro;
495 1.2 itojun state.dst = (struct sockaddr *)dst;
496 1.2 itojun
497 1.2 itojun error = ipsec6_output_tunnel(&state, sp, flags);
498 1.2 itojun
499 1.2 itojun m = state.m;
500 1.2 itojun ro = (struct route_in6 *)state.ro;
501 1.2 itojun dst = (struct sockaddr_in6 *)state.dst;
502 1.2 itojun if (error) {
503 1.2 itojun /* mbuf is already reclaimed in ipsec6_output_tunnel. */
504 1.2 itojun m0 = m = NULL;
505 1.2 itojun m = NULL;
506 1.2 itojun switch (error) {
507 1.2 itojun case EHOSTUNREACH:
508 1.2 itojun case ENETUNREACH:
509 1.2 itojun case EMSGSIZE:
510 1.2 itojun case ENOBUFS:
511 1.2 itojun case ENOMEM:
512 1.2 itojun break;
513 1.2 itojun default:
514 1.2 itojun printf("ip6_output (ipsec): error code %d\n", error);
515 1.42 itojun /* fall through */
516 1.2 itojun case ENOENT:
517 1.2 itojun /* don't show these error codes to the user */
518 1.2 itojun error = 0;
519 1.2 itojun break;
520 1.2 itojun }
521 1.2 itojun goto bad;
522 1.2 itojun }
523 1.2 itojun
524 1.2 itojun exthdrs.ip6e_ip6 = m;
525 1.2 itojun }
526 1.40 itojun #endif /* IPSEC */
527 1.2 itojun
528 1.2 itojun if (!IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
529 1.2 itojun /* Unicast */
530 1.2 itojun
531 1.2 itojun #define ifatoia6(ifa) ((struct in6_ifaddr *)(ifa))
532 1.2 itojun #define sin6tosa(sin6) ((struct sockaddr *)(sin6))
533 1.2 itojun /* xxx
534 1.2 itojun * interface selection comes here
535 1.2 itojun * if an interface is specified from an upper layer,
536 1.2 itojun * ifp must point it.
537 1.2 itojun */
538 1.2 itojun if (ro->ro_rt == 0) {
539 1.6 itojun /*
540 1.19 itojun * non-bsdi always clone routes, if parent is
541 1.6 itojun * PRF_CLONING.
542 1.6 itojun */
543 1.6 itojun rtalloc((struct route *)ro);
544 1.2 itojun }
545 1.2 itojun if (ro->ro_rt == 0) {
546 1.2 itojun ip6stat.ip6s_noroute++;
547 1.2 itojun error = EHOSTUNREACH;
548 1.9 itojun /* XXX in6_ifstat_inc(ifp, ifs6_out_discard); */
549 1.2 itojun goto bad;
550 1.2 itojun }
551 1.2 itojun ia = ifatoia6(ro->ro_rt->rt_ifa);
552 1.2 itojun ifp = ro->ro_rt->rt_ifp;
553 1.2 itojun ro->ro_rt->rt_use++;
554 1.2 itojun if (ro->ro_rt->rt_flags & RTF_GATEWAY)
555 1.2 itojun dst = (struct sockaddr_in6 *)ro->ro_rt->rt_gateway;
556 1.2 itojun m->m_flags &= ~(M_BCAST | M_MCAST); /* just in case */
557 1.2 itojun
558 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_request);
559 1.9 itojun
560 1.2 itojun /*
561 1.19 itojun * Check if the outgoing interface conflicts with
562 1.19 itojun * the interface specified by ifi6_ifindex (if specified).
563 1.2 itojun * Note that loopback interface is always okay.
564 1.19 itojun * (this may happen when we are sending a packet to one of
565 1.19 itojun * our own addresses.)
566 1.2 itojun */
567 1.2 itojun if (opt && opt->ip6po_pktinfo
568 1.2 itojun && opt->ip6po_pktinfo->ipi6_ifindex) {
569 1.2 itojun if (!(ifp->if_flags & IFF_LOOPBACK)
570 1.2 itojun && ifp->if_index != opt->ip6po_pktinfo->ipi6_ifindex) {
571 1.2 itojun ip6stat.ip6s_noroute++;
572 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_discard);
573 1.2 itojun error = EHOSTUNREACH;
574 1.2 itojun goto bad;
575 1.2 itojun }
576 1.2 itojun }
577 1.2 itojun
578 1.2 itojun if (opt && opt->ip6po_hlim != -1)
579 1.2 itojun ip6->ip6_hlim = opt->ip6po_hlim & 0xff;
580 1.2 itojun } else {
581 1.2 itojun /* Multicast */
582 1.2 itojun struct in6_multi *in6m;
583 1.2 itojun
584 1.2 itojun m->m_flags = (m->m_flags & ~M_BCAST) | M_MCAST;
585 1.2 itojun
586 1.2 itojun /*
587 1.2 itojun * See if the caller provided any multicast options
588 1.2 itojun */
589 1.2 itojun ifp = NULL;
590 1.2 itojun if (im6o != NULL) {
591 1.2 itojun ip6->ip6_hlim = im6o->im6o_multicast_hlim;
592 1.2 itojun if (im6o->im6o_multicast_ifp != NULL)
593 1.2 itojun ifp = im6o->im6o_multicast_ifp;
594 1.2 itojun } else
595 1.2 itojun ip6->ip6_hlim = ip6_defmcasthlim;
596 1.2 itojun
597 1.2 itojun /*
598 1.2 itojun * See if the caller provided the outgoing interface
599 1.2 itojun * as an ancillary data.
600 1.2 itojun * Boundary check for ifindex is assumed to be already done.
601 1.2 itojun */
602 1.2 itojun if (opt && opt->ip6po_pktinfo && opt->ip6po_pktinfo->ipi6_ifindex)
603 1.2 itojun ifp = ifindex2ifnet[opt->ip6po_pktinfo->ipi6_ifindex];
604 1.2 itojun
605 1.2 itojun /*
606 1.2 itojun * If the destination is a node-local scope multicast,
607 1.2 itojun * the packet should be loop-backed only.
608 1.2 itojun */
609 1.2 itojun if (IN6_IS_ADDR_MC_NODELOCAL(&ip6->ip6_dst)) {
610 1.2 itojun /*
611 1.2 itojun * If the outgoing interface is already specified,
612 1.2 itojun * it should be a loopback interface.
613 1.2 itojun */
614 1.2 itojun if (ifp && (ifp->if_flags & IFF_LOOPBACK) == 0) {
615 1.2 itojun ip6stat.ip6s_badscope++;
616 1.2 itojun error = ENETUNREACH; /* XXX: better error? */
617 1.9 itojun /* XXX correct ifp? */
618 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_discard);
619 1.2 itojun goto bad;
620 1.19 itojun } else {
621 1.2 itojun ifp = &loif[0];
622 1.2 itojun }
623 1.2 itojun }
624 1.2 itojun
625 1.2 itojun if (opt && opt->ip6po_hlim != -1)
626 1.2 itojun ip6->ip6_hlim = opt->ip6po_hlim & 0xff;
627 1.2 itojun
628 1.2 itojun /*
629 1.2 itojun * If caller did not provide an interface lookup a
630 1.2 itojun * default in the routing table. This is either a
631 1.2 itojun * default for the speicfied group (i.e. a host
632 1.2 itojun * route), or a multicast default (a route for the
633 1.2 itojun * ``net'' ff00::/8).
634 1.2 itojun */
635 1.2 itojun if (ifp == NULL) {
636 1.2 itojun if (ro->ro_rt == 0) {
637 1.9 itojun ro->ro_rt = rtalloc1((struct sockaddr *)
638 1.9 itojun &ro->ro_dst, 0
639 1.9 itojun );
640 1.2 itojun }
641 1.2 itojun if (ro->ro_rt == 0) {
642 1.2 itojun ip6stat.ip6s_noroute++;
643 1.2 itojun error = EHOSTUNREACH;
644 1.9 itojun /* XXX in6_ifstat_inc(ifp, ifs6_out_discard) */
645 1.2 itojun goto bad;
646 1.2 itojun }
647 1.2 itojun ia = ifatoia6(ro->ro_rt->rt_ifa);
648 1.2 itojun ifp = ro->ro_rt->rt_ifp;
649 1.2 itojun ro->ro_rt->rt_use++;
650 1.2 itojun }
651 1.9 itojun
652 1.9 itojun if ((flags & IPV6_FORWARDING) == 0)
653 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_request);
654 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_mcast);
655 1.9 itojun
656 1.2 itojun /*
657 1.2 itojun * Confirm that the outgoing interface supports multicast.
658 1.2 itojun */
659 1.2 itojun if ((ifp->if_flags & IFF_MULTICAST) == 0) {
660 1.2 itojun ip6stat.ip6s_noroute++;
661 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_discard);
662 1.2 itojun error = ENETUNREACH;
663 1.2 itojun goto bad;
664 1.2 itojun }
665 1.2 itojun IN6_LOOKUP_MULTI(ip6->ip6_dst, ifp, in6m);
666 1.2 itojun if (in6m != NULL &&
667 1.2 itojun (im6o == NULL || im6o->im6o_multicast_loop)) {
668 1.2 itojun /*
669 1.2 itojun * If we belong to the destination multicast group
670 1.2 itojun * on the outgoing interface, and the caller did not
671 1.2 itojun * forbid loopback, loop back a copy.
672 1.2 itojun */
673 1.2 itojun ip6_mloopback(ifp, m, dst);
674 1.2 itojun } else {
675 1.2 itojun /*
676 1.2 itojun * If we are acting as a multicast router, perform
677 1.2 itojun * multicast forwarding as if the packet had just
678 1.2 itojun * arrived on the interface to which we are about
679 1.2 itojun * to send. The multicast forwarding function
680 1.2 itojun * recursively calls this function, using the
681 1.2 itojun * IPV6_FORWARDING flag to prevent infinite recursion.
682 1.2 itojun *
683 1.2 itojun * Multicasts that are looped back by ip6_mloopback(),
684 1.2 itojun * above, will be forwarded by the ip6_input() routine,
685 1.2 itojun * if necessary.
686 1.2 itojun */
687 1.2 itojun if (ip6_mrouter && (flags & IPV6_FORWARDING) == 0) {
688 1.20 thorpej if (ip6_mforward(ip6, ifp, m) != 0) {
689 1.2 itojun m_freem(m);
690 1.2 itojun goto done;
691 1.2 itojun }
692 1.2 itojun }
693 1.2 itojun }
694 1.2 itojun /*
695 1.2 itojun * Multicasts with a hoplimit of zero may be looped back,
696 1.2 itojun * above, but must not be transmitted on a network.
697 1.2 itojun * Also, multicasts addressed to the loopback interface
698 1.2 itojun * are not sent -- the above call to ip6_mloopback() will
699 1.2 itojun * loop back a copy if this host actually belongs to the
700 1.2 itojun * destination group on the loopback interface.
701 1.2 itojun */
702 1.2 itojun if (ip6->ip6_hlim == 0 || (ifp->if_flags & IFF_LOOPBACK)) {
703 1.2 itojun m_freem(m);
704 1.2 itojun goto done;
705 1.2 itojun }
706 1.2 itojun }
707 1.2 itojun
708 1.2 itojun /*
709 1.9 itojun * Fill the outgoing inteface to tell the upper layer
710 1.9 itojun * to increment per-interface statistics.
711 1.9 itojun */
712 1.9 itojun if (ifpp)
713 1.9 itojun *ifpp = ifp;
714 1.9 itojun
715 1.44.4.4 jmc /* Determine path MTU. */
716 1.44.4.4 jmc if ((error = ip6_getpmtu(ro_pmtu, ro, ifp, &finaldst, &mtu,
717 1.44.4.4 jmc &alwaysfrag)) != 0)
718 1.44.4.4 jmc goto bad;
719 1.44.4.4 jmc
720 1.9 itojun /*
721 1.44.4.4 jmc * The caller of this function may specify to use the minimum MTU
722 1.44.4.4 jmc * in some cases.
723 1.2 itojun */
724 1.44.4.4 jmc if (mtu > IPV6_MMTU) {
725 1.44.4.4 jmc if ((flags & IPV6_MINMTU))
726 1.44.4.4 jmc mtu = IPV6_MMTU;
727 1.43 itojun }
728 1.43 itojun
729 1.19 itojun /* Fake scoped addresses */
730 1.19 itojun if ((ifp->if_flags & IFF_LOOPBACK) != 0) {
731 1.19 itojun /*
732 1.19 itojun * If source or destination address is a scoped address, and
733 1.19 itojun * the packet is going to be sent to a loopback interface,
734 1.19 itojun * we should keep the original interface.
735 1.19 itojun */
736 1.19 itojun
737 1.19 itojun /*
738 1.19 itojun * XXX: this is a very experimental and temporary solution.
739 1.19 itojun * We eventually have sockaddr_in6 and use the sin6_scope_id
740 1.19 itojun * field of the structure here.
741 1.19 itojun * We rely on the consistency between two scope zone ids
742 1.19 itojun * of source add destination, which should already be assured
743 1.19 itojun * Larger scopes than link will be supported in the near
744 1.19 itojun * future.
745 1.19 itojun */
746 1.29 itojun origifp = NULL;
747 1.19 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src))
748 1.19 itojun origifp = ifindex2ifnet[ntohs(ip6->ip6_src.s6_addr16[1])];
749 1.19 itojun else if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst))
750 1.19 itojun origifp = ifindex2ifnet[ntohs(ip6->ip6_dst.s6_addr16[1])];
751 1.29 itojun /*
752 1.29 itojun * XXX: origifp can be NULL even in those two cases above.
753 1.29 itojun * For example, if we remove the (only) link-local address
754 1.29 itojun * from the loopback interface, and try to send a link-local
755 1.29 itojun * address without link-id information. Then the source
756 1.29 itojun * address is ::1, and the destination address is the
757 1.29 itojun * link-local address with its s6_addr16[1] being zero.
758 1.29 itojun * What is worse, if the packet goes to the loopback interface
759 1.29 itojun * by a default rejected route, the null pointer would be
760 1.29 itojun * passed to looutput, and the kernel would hang.
761 1.29 itojun * The following last resort would prevent such disaster.
762 1.29 itojun */
763 1.30 itojun if (origifp == NULL)
764 1.19 itojun origifp = ifp;
765 1.19 itojun }
766 1.19 itojun else
767 1.19 itojun origifp = ifp;
768 1.34 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src))
769 1.34 itojun ip6->ip6_src.s6_addr16[1] = 0;
770 1.34 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst))
771 1.34 itojun ip6->ip6_dst.s6_addr16[1] = 0;
772 1.2 itojun
773 1.2 itojun /*
774 1.2 itojun * If the outgoing packet contains a hop-by-hop options header,
775 1.2 itojun * it must be examined and processed even by the source node.
776 1.2 itojun * (RFC 2460, section 4.)
777 1.2 itojun */
778 1.2 itojun if (exthdrs.ip6e_hbh) {
779 1.31 itojun struct ip6_hbh *hbh = mtod(exthdrs.ip6e_hbh, struct ip6_hbh *);
780 1.5 itojun u_int32_t dummy1; /* XXX unused */
781 1.2 itojun u_int32_t dummy2; /* XXX unused */
782 1.2 itojun
783 1.2 itojun /*
784 1.2 itojun * XXX: if we have to send an ICMPv6 error to the sender,
785 1.2 itojun * we need the M_LOOP flag since icmp6_error() expects
786 1.2 itojun * the IPv6 and the hop-by-hop options header are
787 1.2 itojun * continuous unless the flag is set.
788 1.2 itojun */
789 1.2 itojun m->m_flags |= M_LOOP;
790 1.2 itojun m->m_pkthdr.rcvif = ifp;
791 1.2 itojun if (ip6_process_hopopts(m,
792 1.2 itojun (u_int8_t *)(hbh + 1),
793 1.2 itojun ((hbh->ip6h_len + 1) << 3) -
794 1.2 itojun sizeof(struct ip6_hbh),
795 1.2 itojun &dummy1, &dummy2) < 0) {
796 1.2 itojun /* m was already freed at this point */
797 1.2 itojun error = EINVAL;/* better error? */
798 1.2 itojun goto done;
799 1.2 itojun }
800 1.2 itojun m->m_flags &= ~M_LOOP; /* XXX */
801 1.2 itojun m->m_pkthdr.rcvif = NULL;
802 1.2 itojun }
803 1.2 itojun
804 1.15 darrenr #ifdef PFIL_HOOKS
805 1.15 darrenr /*
806 1.15 darrenr * Run through list of hooks for output packets.
807 1.15 darrenr */
808 1.27 thorpej if ((error = pfil_run_hooks(&inet6_pfil_hook, &m, ifp,
809 1.27 thorpej PFIL_OUT)) != 0)
810 1.27 thorpej goto done;
811 1.27 thorpej if (m == NULL)
812 1.27 thorpej goto done;
813 1.27 thorpej ip6 = mtod(m, struct ip6_hdr *);
814 1.15 darrenr #endif /* PFIL_HOOKS */
815 1.2 itojun /*
816 1.2 itojun * Send the packet to the outgoing interface.
817 1.19 itojun * If necessary, do IPv6 fragmentation before sending.
818 1.44.4.4 jmc *
819 1.44.4.4 jmc * the logic here is rather complex:
820 1.44.4.4 jmc * 1: normal case (dontfrag == 0, alwaysfrag == 0)
821 1.44.4.4 jmc * 1-a: send as is if tlen <= path mtu
822 1.44.4.4 jmc * 1-b: fragment if tlen > path mtu
823 1.44.4.4 jmc *
824 1.44.4.4 jmc * 2: if user asks us not to fragment (dontfrag == 1)
825 1.44.4.4 jmc * 2-a: send as is if tlen <= interface mtu
826 1.44.4.4 jmc * 2-b: error if tlen > interface mtu
827 1.44.4.4 jmc *
828 1.44.4.4 jmc * 3: if we always need to attach fragment header (alwaysfrag == 1)
829 1.44.4.4 jmc * always fragment
830 1.44.4.4 jmc *
831 1.44.4.4 jmc * 4: if dontfrag == 1 && alwaysfrag == 1
832 1.44.4.4 jmc * error, as we cannot handle this conflicting request
833 1.2 itojun */
834 1.2 itojun tlen = m->m_pkthdr.len;
835 1.44.4.4 jmc
836 1.44.4.4 jmc dontfrag = 0;
837 1.44.4.4 jmc if (dontfrag && alwaysfrag) { /* case 4 */
838 1.44.4.4 jmc /* conflicting request - can't transmit */
839 1.44.4.4 jmc error = EMSGSIZE;
840 1.44.4.4 jmc goto bad;
841 1.44.4.4 jmc }
842 1.44.4.4 jmc if (dontfrag && tlen > nd_ifinfo[ifp->if_index].linkmtu) { /* case 2-b */
843 1.44.4.4 jmc /*
844 1.44.4.4 jmc * Even if the DONTFRAG option is specified, we cannot send the
845 1.44.4.4 jmc * packet when the data length is larger than the MTU of the
846 1.44.4.4 jmc * outgoing interface.
847 1.44.4.4 jmc * Notify the error by sending IPV6_PATHMTU ancillary data as
848 1.44.4.4 jmc * well as returning an error code (the latter is not described
849 1.44.4.4 jmc * in the API spec.)
850 1.44.4.4 jmc */
851 1.44.4.4 jmc u_int32_t mtu32;
852 1.44.4.4 jmc struct ip6ctlparam ip6cp;
853 1.44.4.4 jmc
854 1.44.4.4 jmc mtu32 = (u_int32_t)mtu;
855 1.44.4.4 jmc bzero(&ip6cp, sizeof(ip6cp));
856 1.44.4.4 jmc ip6cp.ip6c_cmdarg = (void *)&mtu32;
857 1.44.4.4 jmc pfctlinput2(PRC_MSGSIZE, (struct sockaddr *)&ro_pmtu->ro_dst,
858 1.44.4.4 jmc (void *)&ip6cp);
859 1.44.4.4 jmc
860 1.44.4.4 jmc error = EMSGSIZE;
861 1.44.4.4 jmc goto bad;
862 1.44.4.4 jmc }
863 1.44.4.4 jmc
864 1.44.4.4 jmc /*
865 1.44.4.4 jmc * transmit packet without fragmentation
866 1.44.4.4 jmc */
867 1.44.4.4 jmc if (dontfrag || (!alwaysfrag && tlen <= mtu)) { /* case 1-a and 2-a */
868 1.26 itojun struct in6_ifaddr *ia6;
869 1.44.4.4 jmc
870 1.26 itojun ip6 = mtod(m, struct ip6_hdr *);
871 1.26 itojun ia6 = in6_ifawithifp(ifp, &ip6->ip6_src);
872 1.26 itojun if (ia6) {
873 1.42 itojun /* Record statistics for this interface address. */
874 1.44.4.4 jmc ia6->ia_ifa.ifa_data.ifad_outbytes += m->m_pkthdr.len;
875 1.9 itojun }
876 1.28 itojun #ifdef IPSEC
877 1.28 itojun /* clean ipsec history once it goes out of the node */
878 1.28 itojun ipsec_delaux(m);
879 1.28 itojun #endif
880 1.19 itojun error = nd6_output(ifp, origifp, m, dst, ro->ro_rt);
881 1.2 itojun goto done;
882 1.44.4.4 jmc }
883 1.44.4.4 jmc
884 1.44.4.4 jmc /*
885 1.44.4.4 jmc * try to fragment the packet. case 1-b and 3
886 1.44.4.4 jmc */
887 1.44.4.4 jmc if (mtu < IPV6_MMTU) {
888 1.44.4.4 jmc /* path MTU cannot be less than IPV6_MMTU */
889 1.2 itojun error = EMSGSIZE;
890 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_fragfail);
891 1.2 itojun goto bad;
892 1.44.4.4 jmc } else if (ip6->ip6_plen == 0) {
893 1.44.4.4 jmc /* jumbo payload cannot be fragmented */
894 1.2 itojun error = EMSGSIZE;
895 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_fragfail);
896 1.2 itojun goto bad;
897 1.2 itojun } else {
898 1.2 itojun struct mbuf **mnext, *m_frgpart;
899 1.2 itojun struct ip6_frag *ip6f;
900 1.5 itojun u_int32_t id = htonl(ip6_id++);
901 1.2 itojun u_char nextproto;
902 1.44.4.4 jmc struct ip6ctlparam ip6cp;
903 1.44.4.4 jmc u_int32_t mtu32;
904 1.2 itojun
905 1.2 itojun /*
906 1.2 itojun * Too large for the destination or interface;
907 1.2 itojun * fragment if possible.
908 1.2 itojun * Must be able to put at least 8 bytes per fragment.
909 1.2 itojun */
910 1.2 itojun hlen = unfragpartlen;
911 1.2 itojun if (mtu > IPV6_MAXPACKET)
912 1.2 itojun mtu = IPV6_MAXPACKET;
913 1.44.4.4 jmc
914 1.44.4.4 jmc /* Notify a proper path MTU to applications. */
915 1.44.4.4 jmc mtu32 = (u_int32_t)mtu;
916 1.44.4.4 jmc bzero(&ip6cp, sizeof(ip6cp));
917 1.44.4.4 jmc ip6cp.ip6c_cmdarg = (void *)&mtu32;
918 1.44.4.4 jmc pfctlinput2(PRC_MSGSIZE, (struct sockaddr *)&ro_pmtu->ro_dst,
919 1.44.4.4 jmc (void *)&ip6cp);
920 1.44.4.4 jmc
921 1.2 itojun len = (mtu - hlen - sizeof(struct ip6_frag)) & ~7;
922 1.2 itojun if (len < 8) {
923 1.2 itojun error = EMSGSIZE;
924 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_fragfail);
925 1.2 itojun goto bad;
926 1.2 itojun }
927 1.2 itojun
928 1.2 itojun mnext = &m->m_nextpkt;
929 1.2 itojun
930 1.2 itojun /*
931 1.2 itojun * Change the next header field of the last header in the
932 1.2 itojun * unfragmentable part.
933 1.2 itojun */
934 1.2 itojun if (exthdrs.ip6e_rthdr) {
935 1.2 itojun nextproto = *mtod(exthdrs.ip6e_rthdr, u_char *);
936 1.2 itojun *mtod(exthdrs.ip6e_rthdr, u_char *) = IPPROTO_FRAGMENT;
937 1.19 itojun } else if (exthdrs.ip6e_dest1) {
938 1.2 itojun nextproto = *mtod(exthdrs.ip6e_dest1, u_char *);
939 1.2 itojun *mtod(exthdrs.ip6e_dest1, u_char *) = IPPROTO_FRAGMENT;
940 1.19 itojun } else if (exthdrs.ip6e_hbh) {
941 1.2 itojun nextproto = *mtod(exthdrs.ip6e_hbh, u_char *);
942 1.2 itojun *mtod(exthdrs.ip6e_hbh, u_char *) = IPPROTO_FRAGMENT;
943 1.19 itojun } else {
944 1.2 itojun nextproto = ip6->ip6_nxt;
945 1.2 itojun ip6->ip6_nxt = IPPROTO_FRAGMENT;
946 1.2 itojun }
947 1.2 itojun
948 1.2 itojun /*
949 1.2 itojun * Loop through length of segment after first fragment,
950 1.42 itojun * make new header and copy data of each part and link onto
951 1.42 itojun * chain.
952 1.2 itojun */
953 1.2 itojun m0 = m;
954 1.2 itojun for (off = hlen; off < tlen; off += len) {
955 1.44.4.4 jmc struct mbuf *mlast;
956 1.44.4.4 jmc
957 1.2 itojun MGETHDR(m, M_DONTWAIT, MT_HEADER);
958 1.2 itojun if (!m) {
959 1.2 itojun error = ENOBUFS;
960 1.2 itojun ip6stat.ip6s_odropped++;
961 1.2 itojun goto sendorfree;
962 1.2 itojun }
963 1.44.4.4 jmc m->m_pkthdr.rcvif = NULL;
964 1.2 itojun m->m_flags = m0->m_flags & M_COPYFLAGS;
965 1.2 itojun *mnext = m;
966 1.2 itojun mnext = &m->m_nextpkt;
967 1.2 itojun m->m_data += max_linkhdr;
968 1.2 itojun mhip6 = mtod(m, struct ip6_hdr *);
969 1.2 itojun *mhip6 = *ip6;
970 1.2 itojun m->m_len = sizeof(*mhip6);
971 1.42 itojun error = ip6_insertfraghdr(m0, m, hlen, &ip6f);
972 1.42 itojun if (error) {
973 1.2 itojun ip6stat.ip6s_odropped++;
974 1.2 itojun goto sendorfree;
975 1.2 itojun }
976 1.44.4.4 jmc ip6f->ip6f_offlg = htons((u_int16_t)((off - hlen) & ~7));
977 1.2 itojun if (off + len >= tlen)
978 1.2 itojun len = tlen - off;
979 1.2 itojun else
980 1.2 itojun ip6f->ip6f_offlg |= IP6F_MORE_FRAG;
981 1.44.4.4 jmc mhip6->ip6_plen = htons((u_int16_t)(len + hlen +
982 1.44.4.4 jmc sizeof(*ip6f) - sizeof(struct ip6_hdr)));
983 1.2 itojun if ((m_frgpart = m_copy(m0, off, len)) == 0) {
984 1.2 itojun error = ENOBUFS;
985 1.2 itojun ip6stat.ip6s_odropped++;
986 1.2 itojun goto sendorfree;
987 1.2 itojun }
988 1.44.4.4 jmc for (mlast = m; mlast->m_next; mlast = mlast->m_next)
989 1.44.4.4 jmc ;
990 1.44.4.4 jmc mlast->m_next = m_frgpart;
991 1.2 itojun m->m_pkthdr.len = len + hlen + sizeof(*ip6f);
992 1.2 itojun m->m_pkthdr.rcvif = (struct ifnet *)0;
993 1.2 itojun ip6f->ip6f_reserved = 0;
994 1.2 itojun ip6f->ip6f_ident = id;
995 1.2 itojun ip6f->ip6f_nxt = nextproto;
996 1.2 itojun ip6stat.ip6s_ofragments++;
997 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_fragcreat);
998 1.2 itojun }
999 1.9 itojun
1000 1.9 itojun in6_ifstat_inc(ifp, ifs6_out_fragok);
1001 1.2 itojun }
1002 1.2 itojun
1003 1.2 itojun /*
1004 1.2 itojun * Remove leading garbages.
1005 1.2 itojun */
1006 1.2 itojun sendorfree:
1007 1.2 itojun m = m0->m_nextpkt;
1008 1.2 itojun m0->m_nextpkt = 0;
1009 1.2 itojun m_freem(m0);
1010 1.2 itojun for (m0 = m; m; m = m0) {
1011 1.2 itojun m0 = m->m_nextpkt;
1012 1.2 itojun m->m_nextpkt = 0;
1013 1.2 itojun if (error == 0) {
1014 1.26 itojun struct in6_ifaddr *ia6;
1015 1.26 itojun ip6 = mtod(m, struct ip6_hdr *);
1016 1.26 itojun ia6 = in6_ifawithifp(ifp, &ip6->ip6_src);
1017 1.26 itojun if (ia6) {
1018 1.42 itojun /*
1019 1.42 itojun * Record statistics for this interface
1020 1.42 itojun * address.
1021 1.42 itojun */
1022 1.26 itojun ia6->ia_ifa.ifa_data.ifad_outbytes +=
1023 1.44.4.4 jmc m->m_pkthdr.len;
1024 1.9 itojun }
1025 1.28 itojun #ifdef IPSEC
1026 1.28 itojun /* clean ipsec history once it goes out of the node */
1027 1.28 itojun ipsec_delaux(m);
1028 1.9 itojun #endif
1029 1.19 itojun error = nd6_output(ifp, origifp, m, dst, ro->ro_rt);
1030 1.19 itojun } else
1031 1.2 itojun m_freem(m);
1032 1.2 itojun }
1033 1.2 itojun
1034 1.2 itojun if (error == 0)
1035 1.2 itojun ip6stat.ip6s_fragmented++;
1036 1.2 itojun
1037 1.2 itojun done:
1038 1.2 itojun if (ro == &ip6route && ro->ro_rt) { /* brace necessary for RTFREE */
1039 1.2 itojun RTFREE(ro->ro_rt);
1040 1.2 itojun } else if (ro_pmtu == &ip6route && ro_pmtu->ro_rt) {
1041 1.2 itojun RTFREE(ro_pmtu->ro_rt);
1042 1.2 itojun }
1043 1.2 itojun
1044 1.2 itojun #ifdef IPSEC
1045 1.2 itojun if (sp != NULL)
1046 1.2 itojun key_freesp(sp);
1047 1.2 itojun #endif /* IPSEC */
1048 1.2 itojun
1049 1.44.4.4 jmc return (error);
1050 1.2 itojun
1051 1.2 itojun freehdrs:
1052 1.2 itojun m_freem(exthdrs.ip6e_hbh); /* m_freem will check if mbuf is 0 */
1053 1.2 itojun m_freem(exthdrs.ip6e_dest1);
1054 1.2 itojun m_freem(exthdrs.ip6e_rthdr);
1055 1.2 itojun m_freem(exthdrs.ip6e_dest2);
1056 1.2 itojun /* fall through */
1057 1.2 itojun bad:
1058 1.2 itojun m_freem(m);
1059 1.2 itojun goto done;
1060 1.2 itojun }
1061 1.2 itojun
1062 1.2 itojun static int
1063 1.2 itojun ip6_copyexthdr(mp, hdr, hlen)
1064 1.2 itojun struct mbuf **mp;
1065 1.2 itojun caddr_t hdr;
1066 1.2 itojun int hlen;
1067 1.2 itojun {
1068 1.2 itojun struct mbuf *m;
1069 1.2 itojun
1070 1.2 itojun if (hlen > MCLBYTES)
1071 1.2 itojun return(ENOBUFS); /* XXX */
1072 1.2 itojun
1073 1.2 itojun MGET(m, M_DONTWAIT, MT_DATA);
1074 1.2 itojun if (!m)
1075 1.2 itojun return(ENOBUFS);
1076 1.2 itojun
1077 1.2 itojun if (hlen > MLEN) {
1078 1.2 itojun MCLGET(m, M_DONTWAIT);
1079 1.2 itojun if ((m->m_flags & M_EXT) == 0) {
1080 1.2 itojun m_free(m);
1081 1.2 itojun return(ENOBUFS);
1082 1.2 itojun }
1083 1.2 itojun }
1084 1.2 itojun m->m_len = hlen;
1085 1.2 itojun if (hdr)
1086 1.2 itojun bcopy(hdr, mtod(m, caddr_t), hlen);
1087 1.2 itojun
1088 1.2 itojun *mp = m;
1089 1.2 itojun return(0);
1090 1.2 itojun }
1091 1.2 itojun
1092 1.2 itojun /*
1093 1.19 itojun * Insert jumbo payload option.
1094 1.2 itojun */
1095 1.2 itojun static int
1096 1.2 itojun ip6_insert_jumboopt(exthdrs, plen)
1097 1.2 itojun struct ip6_exthdrs *exthdrs;
1098 1.2 itojun u_int32_t plen;
1099 1.2 itojun {
1100 1.2 itojun struct mbuf *mopt;
1101 1.2 itojun u_char *optbuf;
1102 1.25 itojun u_int32_t v;
1103 1.2 itojun
1104 1.2 itojun #define JUMBOOPTLEN 8 /* length of jumbo payload option and padding */
1105 1.2 itojun
1106 1.2 itojun /*
1107 1.2 itojun * If there is no hop-by-hop options header, allocate new one.
1108 1.2 itojun * If there is one but it doesn't have enough space to store the
1109 1.2 itojun * jumbo payload option, allocate a cluster to store the whole options.
1110 1.2 itojun * Otherwise, use it to store the options.
1111 1.2 itojun */
1112 1.2 itojun if (exthdrs->ip6e_hbh == 0) {
1113 1.2 itojun MGET(mopt, M_DONTWAIT, MT_DATA);
1114 1.2 itojun if (mopt == 0)
1115 1.2 itojun return(ENOBUFS);
1116 1.2 itojun mopt->m_len = JUMBOOPTLEN;
1117 1.2 itojun optbuf = mtod(mopt, u_char *);
1118 1.2 itojun optbuf[1] = 0; /* = ((JUMBOOPTLEN) >> 3) - 1 */
1119 1.2 itojun exthdrs->ip6e_hbh = mopt;
1120 1.19 itojun } else {
1121 1.2 itojun struct ip6_hbh *hbh;
1122 1.2 itojun
1123 1.2 itojun mopt = exthdrs->ip6e_hbh;
1124 1.2 itojun if (M_TRAILINGSPACE(mopt) < JUMBOOPTLEN) {
1125 1.25 itojun /*
1126 1.25 itojun * XXX assumption:
1127 1.25 itojun * - exthdrs->ip6e_hbh is not referenced from places
1128 1.25 itojun * other than exthdrs.
1129 1.25 itojun * - exthdrs->ip6e_hbh is not an mbuf chain.
1130 1.25 itojun */
1131 1.2 itojun int oldoptlen = mopt->m_len;
1132 1.25 itojun struct mbuf *n;
1133 1.2 itojun
1134 1.25 itojun /*
1135 1.25 itojun * XXX: give up if the whole (new) hbh header does
1136 1.25 itojun * not fit even in an mbuf cluster.
1137 1.25 itojun */
1138 1.25 itojun if (oldoptlen + JUMBOOPTLEN > MCLBYTES)
1139 1.2 itojun return(ENOBUFS);
1140 1.2 itojun
1141 1.25 itojun /*
1142 1.25 itojun * As a consequence, we must always prepare a cluster
1143 1.25 itojun * at this point.
1144 1.25 itojun */
1145 1.25 itojun MGET(n, M_DONTWAIT, MT_DATA);
1146 1.25 itojun if (n) {
1147 1.25 itojun MCLGET(n, M_DONTWAIT);
1148 1.25 itojun if ((n->m_flags & M_EXT) == 0) {
1149 1.25 itojun m_freem(n);
1150 1.25 itojun n = NULL;
1151 1.25 itojun }
1152 1.25 itojun }
1153 1.25 itojun if (!n)
1154 1.25 itojun return(ENOBUFS);
1155 1.25 itojun n->m_len = oldoptlen + JUMBOOPTLEN;
1156 1.25 itojun bcopy(mtod(mopt, caddr_t), mtod(n, caddr_t),
1157 1.25 itojun oldoptlen);
1158 1.25 itojun optbuf = mtod(n, caddr_t) + oldoptlen;
1159 1.25 itojun m_freem(mopt);
1160 1.33 itojun mopt = exthdrs->ip6e_hbh = n;
1161 1.19 itojun } else {
1162 1.2 itojun optbuf = mtod(mopt, u_char *) + mopt->m_len;
1163 1.2 itojun mopt->m_len += JUMBOOPTLEN;
1164 1.2 itojun }
1165 1.2 itojun optbuf[0] = IP6OPT_PADN;
1166 1.44.4.2 lukem optbuf[1] = 0;
1167 1.2 itojun
1168 1.2 itojun /*
1169 1.2 itojun * Adjust the header length according to the pad and
1170 1.2 itojun * the jumbo payload option.
1171 1.2 itojun */
1172 1.2 itojun hbh = mtod(mopt, struct ip6_hbh *);
1173 1.2 itojun hbh->ip6h_len += (JUMBOOPTLEN >> 3);
1174 1.2 itojun }
1175 1.2 itojun
1176 1.2 itojun /* fill in the option. */
1177 1.2 itojun optbuf[2] = IP6OPT_JUMBO;
1178 1.2 itojun optbuf[3] = 4;
1179 1.25 itojun v = (u_int32_t)htonl(plen + JUMBOOPTLEN);
1180 1.25 itojun bcopy(&v, &optbuf[4], sizeof(u_int32_t));
1181 1.2 itojun
1182 1.2 itojun /* finally, adjust the packet header length */
1183 1.2 itojun exthdrs->ip6e_ip6->m_pkthdr.len += JUMBOOPTLEN;
1184 1.2 itojun
1185 1.2 itojun return(0);
1186 1.2 itojun #undef JUMBOOPTLEN
1187 1.2 itojun }
1188 1.2 itojun
1189 1.2 itojun /*
1190 1.2 itojun * Insert fragment header and copy unfragmentable header portions.
1191 1.2 itojun */
1192 1.2 itojun static int
1193 1.2 itojun ip6_insertfraghdr(m0, m, hlen, frghdrp)
1194 1.2 itojun struct mbuf *m0, *m;
1195 1.2 itojun int hlen;
1196 1.2 itojun struct ip6_frag **frghdrp;
1197 1.2 itojun {
1198 1.2 itojun struct mbuf *n, *mlast;
1199 1.2 itojun
1200 1.2 itojun if (hlen > sizeof(struct ip6_hdr)) {
1201 1.2 itojun n = m_copym(m0, sizeof(struct ip6_hdr),
1202 1.2 itojun hlen - sizeof(struct ip6_hdr), M_DONTWAIT);
1203 1.2 itojun if (n == 0)
1204 1.2 itojun return(ENOBUFS);
1205 1.2 itojun m->m_next = n;
1206 1.19 itojun } else
1207 1.2 itojun n = m;
1208 1.2 itojun
1209 1.2 itojun /* Search for the last mbuf of unfragmentable part. */
1210 1.2 itojun for (mlast = n; mlast->m_next; mlast = mlast->m_next)
1211 1.2 itojun ;
1212 1.2 itojun
1213 1.2 itojun if ((mlast->m_flags & M_EXT) == 0 &&
1214 1.22 itojun M_TRAILINGSPACE(mlast) >= sizeof(struct ip6_frag)) {
1215 1.2 itojun /* use the trailing space of the last mbuf for the fragment hdr */
1216 1.2 itojun *frghdrp =
1217 1.2 itojun (struct ip6_frag *)(mtod(mlast, caddr_t) + mlast->m_len);
1218 1.2 itojun mlast->m_len += sizeof(struct ip6_frag);
1219 1.2 itojun m->m_pkthdr.len += sizeof(struct ip6_frag);
1220 1.19 itojun } else {
1221 1.2 itojun /* allocate a new mbuf for the fragment header */
1222 1.2 itojun struct mbuf *mfrg;
1223 1.2 itojun
1224 1.2 itojun MGET(mfrg, M_DONTWAIT, MT_DATA);
1225 1.2 itojun if (mfrg == 0)
1226 1.2 itojun return(ENOBUFS);
1227 1.2 itojun mfrg->m_len = sizeof(struct ip6_frag);
1228 1.2 itojun *frghdrp = mtod(mfrg, struct ip6_frag *);
1229 1.2 itojun mlast->m_next = mfrg;
1230 1.2 itojun }
1231 1.2 itojun
1232 1.44.4.4 jmc return (0);
1233 1.44.4.4 jmc }
1234 1.44.4.4 jmc
1235 1.44.4.4 jmc static int
1236 1.44.4.4 jmc ip6_getpmtu(ro_pmtu, ro, ifp, dst, mtup, alwaysfragp)
1237 1.44.4.4 jmc struct route_in6 *ro_pmtu, *ro;
1238 1.44.4.4 jmc struct ifnet *ifp;
1239 1.44.4.4 jmc struct in6_addr *dst;
1240 1.44.4.4 jmc u_long *mtup;
1241 1.44.4.4 jmc int *alwaysfragp;
1242 1.44.4.4 jmc {
1243 1.44.4.4 jmc u_int32_t mtu = 0;
1244 1.44.4.4 jmc int alwaysfrag = 0;
1245 1.44.4.4 jmc int error = 0;
1246 1.44.4.4 jmc
1247 1.44.4.4 jmc if (ro_pmtu != ro) {
1248 1.44.4.4 jmc /* The first hop and the final destination may differ. */
1249 1.44.4.4 jmc struct sockaddr_in6 *sa6_dst =
1250 1.44.4.4 jmc (struct sockaddr_in6 *)&ro_pmtu->ro_dst;
1251 1.44.4.4 jmc if (ro_pmtu->ro_rt &&
1252 1.44.4.4 jmc ((ro_pmtu->ro_rt->rt_flags & RTF_UP) == 0 ||
1253 1.44.4.4 jmc !IN6_ARE_ADDR_EQUAL(&sa6_dst->sin6_addr, dst))) {
1254 1.44.4.4 jmc RTFREE(ro_pmtu->ro_rt);
1255 1.44.4.4 jmc ro_pmtu->ro_rt = (struct rtentry *)NULL;
1256 1.44.4.4 jmc }
1257 1.44.4.4 jmc if (ro_pmtu->ro_rt == NULL) {
1258 1.44.4.4 jmc bzero(sa6_dst, sizeof(*sa6_dst)); /* for safety */
1259 1.44.4.4 jmc sa6_dst->sin6_family = AF_INET6;
1260 1.44.4.4 jmc sa6_dst->sin6_len = sizeof(struct sockaddr_in6);
1261 1.44.4.4 jmc sa6_dst->sin6_addr = *dst;
1262 1.44.4.4 jmc
1263 1.44.4.4 jmc rtalloc((struct route *)ro_pmtu);
1264 1.44.4.4 jmc }
1265 1.44.4.4 jmc }
1266 1.44.4.4 jmc if (ro_pmtu->ro_rt) {
1267 1.44.4.4 jmc u_int32_t ifmtu;
1268 1.44.4.4 jmc
1269 1.44.4.4 jmc if (ifp == NULL)
1270 1.44.4.4 jmc ifp = ro_pmtu->ro_rt->rt_ifp;
1271 1.44.4.4 jmc ifmtu = nd_ifinfo[ifp->if_index].linkmtu;
1272 1.44.4.4 jmc mtu = ro_pmtu->ro_rt->rt_rmx.rmx_mtu;
1273 1.44.4.4 jmc if (mtu == 0)
1274 1.44.4.4 jmc mtu = ifmtu;
1275 1.44.4.4 jmc else if (mtu < IPV6_MMTU) {
1276 1.44.4.4 jmc /*
1277 1.44.4.4 jmc * RFC2460 section 5, last paragraph:
1278 1.44.4.4 jmc * if we record ICMPv6 too big message with
1279 1.44.4.4 jmc * mtu < IPV6_MMTU, transmit packets sized IPV6_MMTU
1280 1.44.4.4 jmc * or smaller, with fragment header attached.
1281 1.44.4.4 jmc * (fragment header is needed regardless from the
1282 1.44.4.4 jmc * packet size, for translators to identify packets)
1283 1.44.4.4 jmc */
1284 1.44.4.4 jmc alwaysfrag = 1;
1285 1.44.4.4 jmc mtu = IPV6_MMTU;
1286 1.44.4.4 jmc } else if (mtu > ifmtu) {
1287 1.44.4.4 jmc /*
1288 1.44.4.4 jmc * The MTU on the route is larger than the MTU on
1289 1.44.4.4 jmc * the interface! This shouldn't happen, unless the
1290 1.44.4.4 jmc * MTU of the interface has been changed after the
1291 1.44.4.4 jmc * interface was brought up. Change the MTU in the
1292 1.44.4.4 jmc * route to match the interface MTU (as long as the
1293 1.44.4.4 jmc * field isn't locked).
1294 1.44.4.4 jmc */
1295 1.44.4.4 jmc mtu = ifmtu;
1296 1.44.4.4 jmc if (!(ro_pmtu->ro_rt->rt_rmx.rmx_locks & RTV_MTU))
1297 1.44.4.4 jmc ro_pmtu->ro_rt->rt_rmx.rmx_mtu = mtu;
1298 1.44.4.4 jmc }
1299 1.44.4.4 jmc } else if (ifp) {
1300 1.44.4.4 jmc mtu = nd_ifinfo[ifp->if_index].linkmtu;
1301 1.44.4.4 jmc } else
1302 1.44.4.4 jmc error = EHOSTUNREACH; /* XXX */
1303 1.44.4.4 jmc
1304 1.44.4.4 jmc *mtup = mtu;
1305 1.44.4.4 jmc if (alwaysfragp)
1306 1.44.4.4 jmc *alwaysfragp = alwaysfrag;
1307 1.44.4.4 jmc return (error);
1308 1.2 itojun }
1309 1.2 itojun
1310 1.2 itojun /*
1311 1.2 itojun * IP6 socket option processing.
1312 1.2 itojun */
1313 1.2 itojun int
1314 1.2 itojun ip6_ctloutput(op, so, level, optname, mp)
1315 1.2 itojun int op;
1316 1.2 itojun struct socket *so;
1317 1.2 itojun int level, optname;
1318 1.2 itojun struct mbuf **mp;
1319 1.2 itojun {
1320 1.31 itojun struct in6pcb *in6p = sotoin6pcb(so);
1321 1.31 itojun struct mbuf *m = *mp;
1322 1.31 itojun int optval = 0;
1323 1.2 itojun int error = 0;
1324 1.2 itojun struct proc *p = curproc; /* XXX */
1325 1.2 itojun
1326 1.19 itojun if (level == IPPROTO_IPV6) {
1327 1.2 itojun switch (op) {
1328 1.2 itojun
1329 1.2 itojun case PRCO_SETOPT:
1330 1.2 itojun switch (optname) {
1331 1.2 itojun case IPV6_PKTOPTIONS:
1332 1.22 itojun /* m is freed in ip6_pcbopts */
1333 1.2 itojun return(ip6_pcbopts(&in6p->in6p_outputopts,
1334 1.2 itojun m, so));
1335 1.2 itojun case IPV6_HOPOPTS:
1336 1.2 itojun case IPV6_DSTOPTS:
1337 1.2 itojun if (p == 0 || suser(p->p_ucred, &p->p_acflag)) {
1338 1.2 itojun error = EPERM;
1339 1.2 itojun break;
1340 1.2 itojun }
1341 1.2 itojun /* fall through */
1342 1.2 itojun case IPV6_UNICAST_HOPS:
1343 1.2 itojun case IPV6_RECVOPTS:
1344 1.2 itojun case IPV6_RECVRETOPTS:
1345 1.2 itojun case IPV6_RECVDSTADDR:
1346 1.2 itojun case IPV6_PKTINFO:
1347 1.2 itojun case IPV6_HOPLIMIT:
1348 1.2 itojun case IPV6_RTHDR:
1349 1.2 itojun case IPV6_FAITH:
1350 1.37 itojun case IPV6_V6ONLY:
1351 1.37 itojun if (!m || m->m_len != sizeof(int)) {
1352 1.2 itojun error = EINVAL;
1353 1.37 itojun break;
1354 1.37 itojun }
1355 1.37 itojun optval = *mtod(m, int *);
1356 1.37 itojun switch (optname) {
1357 1.37 itojun
1358 1.37 itojun case IPV6_UNICAST_HOPS:
1359 1.37 itojun if (optval < -1 || optval >= 256)
1360 1.37 itojun error = EINVAL;
1361 1.37 itojun else {
1362 1.37 itojun /* -1 = kernel default */
1363 1.37 itojun in6p->in6p_hops = optval;
1364 1.37 itojun }
1365 1.37 itojun break;
1366 1.2 itojun #define OPTSET(bit) \
1367 1.37 itojun if (optval) \
1368 1.37 itojun in6p->in6p_flags |= bit; \
1369 1.37 itojun else \
1370 1.37 itojun in6p->in6p_flags &= ~bit;
1371 1.2 itojun
1372 1.37 itojun case IPV6_RECVOPTS:
1373 1.37 itojun OPTSET(IN6P_RECVOPTS);
1374 1.37 itojun break;
1375 1.2 itojun
1376 1.37 itojun case IPV6_RECVRETOPTS:
1377 1.37 itojun OPTSET(IN6P_RECVRETOPTS);
1378 1.37 itojun break;
1379 1.2 itojun
1380 1.37 itojun case IPV6_RECVDSTADDR:
1381 1.37 itojun OPTSET(IN6P_RECVDSTADDR);
1382 1.37 itojun break;
1383 1.2 itojun
1384 1.37 itojun case IPV6_PKTINFO:
1385 1.37 itojun OPTSET(IN6P_PKTINFO);
1386 1.37 itojun break;
1387 1.2 itojun
1388 1.37 itojun case IPV6_HOPLIMIT:
1389 1.37 itojun OPTSET(IN6P_HOPLIMIT);
1390 1.37 itojun break;
1391 1.2 itojun
1392 1.37 itojun case IPV6_HOPOPTS:
1393 1.37 itojun OPTSET(IN6P_HOPOPTS);
1394 1.37 itojun break;
1395 1.2 itojun
1396 1.37 itojun case IPV6_DSTOPTS:
1397 1.37 itojun OPTSET(IN6P_DSTOPTS);
1398 1.37 itojun break;
1399 1.2 itojun
1400 1.37 itojun case IPV6_RTHDR:
1401 1.37 itojun OPTSET(IN6P_RTHDR);
1402 1.37 itojun break;
1403 1.2 itojun
1404 1.37 itojun case IPV6_FAITH:
1405 1.37 itojun OPTSET(IN6P_FAITH);
1406 1.37 itojun break;
1407 1.10 itojun
1408 1.37 itojun case IPV6_V6ONLY:
1409 1.37 itojun /*
1410 1.37 itojun * make setsockopt(IPV6_V6ONLY)
1411 1.37 itojun * available only prior to bind(2).
1412 1.37 itojun * see ipng mailing list, Jun 22 2001.
1413 1.37 itojun */
1414 1.37 itojun if (in6p->in6p_lport ||
1415 1.37 itojun !IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr))
1416 1.37 itojun {
1417 1.37 itojun error = EINVAL;
1418 1.10 itojun break;
1419 1.37 itojun }
1420 1.37 itojun #ifdef INET6_BINDV6ONLY
1421 1.37 itojun if (!optval)
1422 1.37 itojun error = EINVAL;
1423 1.37 itojun #else
1424 1.37 itojun OPTSET(IN6P_IPV6_V6ONLY);
1425 1.10 itojun #endif
1426 1.37 itojun break;
1427 1.2 itojun }
1428 1.2 itojun break;
1429 1.2 itojun #undef OPTSET
1430 1.2 itojun
1431 1.2 itojun case IPV6_MULTICAST_IF:
1432 1.2 itojun case IPV6_MULTICAST_HOPS:
1433 1.2 itojun case IPV6_MULTICAST_LOOP:
1434 1.2 itojun case IPV6_JOIN_GROUP:
1435 1.2 itojun case IPV6_LEAVE_GROUP:
1436 1.2 itojun error = ip6_setmoptions(optname, &in6p->in6p_moptions, m);
1437 1.2 itojun break;
1438 1.2 itojun
1439 1.12 itojun case IPV6_PORTRANGE:
1440 1.12 itojun optval = *mtod(m, int *);
1441 1.12 itojun
1442 1.12 itojun switch (optval) {
1443 1.12 itojun case IPV6_PORTRANGE_DEFAULT:
1444 1.12 itojun in6p->in6p_flags &= ~(IN6P_LOWPORT);
1445 1.12 itojun in6p->in6p_flags &= ~(IN6P_HIGHPORT);
1446 1.12 itojun break;
1447 1.12 itojun
1448 1.12 itojun case IPV6_PORTRANGE_HIGH:
1449 1.12 itojun in6p->in6p_flags &= ~(IN6P_LOWPORT);
1450 1.12 itojun in6p->in6p_flags |= IN6P_HIGHPORT;
1451 1.12 itojun break;
1452 1.12 itojun
1453 1.12 itojun case IPV6_PORTRANGE_LOW:
1454 1.12 itojun in6p->in6p_flags &= ~(IN6P_HIGHPORT);
1455 1.12 itojun in6p->in6p_flags |= IN6P_LOWPORT;
1456 1.12 itojun break;
1457 1.12 itojun
1458 1.12 itojun default:
1459 1.12 itojun error = EINVAL;
1460 1.12 itojun break;
1461 1.12 itojun }
1462 1.12 itojun break;
1463 1.12 itojun
1464 1.2 itojun #ifdef IPSEC
1465 1.2 itojun case IPV6_IPSEC_POLICY:
1466 1.2 itojun {
1467 1.2 itojun caddr_t req = NULL;
1468 1.13 itojun size_t len = 0;
1469 1.13 itojun
1470 1.2 itojun int priv = 0;
1471 1.2 itojun if (p == 0 || suser(p->p_ucred, &p->p_acflag))
1472 1.2 itojun priv = 0;
1473 1.2 itojun else
1474 1.2 itojun priv = 1;
1475 1.13 itojun if (m) {
1476 1.2 itojun req = mtod(m, caddr_t);
1477 1.2 itojun len = m->m_len;
1478 1.2 itojun }
1479 1.13 itojun error = ipsec6_set_policy(in6p,
1480 1.13 itojun optname, req, len, priv);
1481 1.2 itojun }
1482 1.2 itojun break;
1483 1.2 itojun #endif /* IPSEC */
1484 1.2 itojun
1485 1.2 itojun default:
1486 1.2 itojun error = ENOPROTOOPT;
1487 1.2 itojun break;
1488 1.2 itojun }
1489 1.2 itojun if (m)
1490 1.2 itojun (void)m_free(m);
1491 1.2 itojun break;
1492 1.2 itojun
1493 1.2 itojun case PRCO_GETOPT:
1494 1.2 itojun switch (optname) {
1495 1.2 itojun
1496 1.2 itojun case IPV6_OPTIONS:
1497 1.2 itojun case IPV6_RETOPTS:
1498 1.2 itojun #if 0
1499 1.2 itojun *mp = m = m_get(M_WAIT, MT_SOOPTS);
1500 1.2 itojun if (in6p->in6p_options) {
1501 1.2 itojun m->m_len = in6p->in6p_options->m_len;
1502 1.2 itojun bcopy(mtod(in6p->in6p_options, caddr_t),
1503 1.2 itojun mtod(m, caddr_t),
1504 1.2 itojun (unsigned)m->m_len);
1505 1.2 itojun } else
1506 1.2 itojun m->m_len = 0;
1507 1.2 itojun break;
1508 1.2 itojun #else
1509 1.2 itojun error = ENOPROTOOPT;
1510 1.2 itojun break;
1511 1.2 itojun #endif
1512 1.2 itojun
1513 1.2 itojun case IPV6_PKTOPTIONS:
1514 1.2 itojun if (in6p->in6p_options) {
1515 1.2 itojun *mp = m_copym(in6p->in6p_options, 0,
1516 1.2 itojun M_COPYALL, M_WAIT);
1517 1.2 itojun } else {
1518 1.2 itojun *mp = m_get(M_WAIT, MT_SOOPTS);
1519 1.2 itojun (*mp)->m_len = 0;
1520 1.2 itojun }
1521 1.2 itojun break;
1522 1.2 itojun
1523 1.2 itojun case IPV6_HOPOPTS:
1524 1.2 itojun case IPV6_DSTOPTS:
1525 1.2 itojun if (p == 0 || suser(p->p_ucred, &p->p_acflag)) {
1526 1.2 itojun error = EPERM;
1527 1.2 itojun break;
1528 1.2 itojun }
1529 1.2 itojun /* fall through */
1530 1.2 itojun case IPV6_UNICAST_HOPS:
1531 1.2 itojun case IPV6_RECVOPTS:
1532 1.2 itojun case IPV6_RECVRETOPTS:
1533 1.2 itojun case IPV6_RECVDSTADDR:
1534 1.12 itojun case IPV6_PORTRANGE:
1535 1.2 itojun case IPV6_PKTINFO:
1536 1.2 itojun case IPV6_HOPLIMIT:
1537 1.2 itojun case IPV6_RTHDR:
1538 1.2 itojun case IPV6_FAITH:
1539 1.37 itojun case IPV6_V6ONLY:
1540 1.2 itojun *mp = m = m_get(M_WAIT, MT_SOOPTS);
1541 1.2 itojun m->m_len = sizeof(int);
1542 1.2 itojun switch (optname) {
1543 1.2 itojun
1544 1.2 itojun case IPV6_UNICAST_HOPS:
1545 1.2 itojun optval = in6p->in6p_hops;
1546 1.2 itojun break;
1547 1.2 itojun
1548 1.2 itojun #define OPTBIT(bit) (in6p->in6p_flags & bit ? 1 : 0)
1549 1.2 itojun
1550 1.2 itojun case IPV6_RECVOPTS:
1551 1.2 itojun optval = OPTBIT(IN6P_RECVOPTS);
1552 1.2 itojun break;
1553 1.2 itojun
1554 1.2 itojun case IPV6_RECVRETOPTS:
1555 1.2 itojun optval = OPTBIT(IN6P_RECVRETOPTS);
1556 1.2 itojun break;
1557 1.2 itojun
1558 1.2 itojun case IPV6_RECVDSTADDR:
1559 1.2 itojun optval = OPTBIT(IN6P_RECVDSTADDR);
1560 1.2 itojun break;
1561 1.12 itojun
1562 1.12 itojun case IPV6_PORTRANGE:
1563 1.12 itojun {
1564 1.12 itojun int flags;
1565 1.12 itojun flags = in6p->in6p_flags;
1566 1.12 itojun if (flags & IN6P_HIGHPORT)
1567 1.12 itojun optval = IPV6_PORTRANGE_HIGH;
1568 1.12 itojun else if (flags & IN6P_LOWPORT)
1569 1.12 itojun optval = IPV6_PORTRANGE_LOW;
1570 1.12 itojun else
1571 1.12 itojun optval = 0;
1572 1.12 itojun break;
1573 1.12 itojun }
1574 1.2 itojun
1575 1.2 itojun case IPV6_PKTINFO:
1576 1.2 itojun optval = OPTBIT(IN6P_PKTINFO);
1577 1.2 itojun break;
1578 1.2 itojun
1579 1.2 itojun case IPV6_HOPLIMIT:
1580 1.2 itojun optval = OPTBIT(IN6P_HOPLIMIT);
1581 1.2 itojun break;
1582 1.2 itojun
1583 1.2 itojun case IPV6_HOPOPTS:
1584 1.2 itojun optval = OPTBIT(IN6P_HOPOPTS);
1585 1.2 itojun break;
1586 1.2 itojun
1587 1.2 itojun case IPV6_DSTOPTS:
1588 1.2 itojun optval = OPTBIT(IN6P_DSTOPTS);
1589 1.2 itojun break;
1590 1.2 itojun
1591 1.2 itojun case IPV6_RTHDR:
1592 1.2 itojun optval = OPTBIT(IN6P_RTHDR);
1593 1.2 itojun break;
1594 1.2 itojun
1595 1.2 itojun case IPV6_FAITH:
1596 1.2 itojun optval = OPTBIT(IN6P_FAITH);
1597 1.2 itojun break;
1598 1.10 itojun
1599 1.37 itojun case IPV6_V6ONLY:
1600 1.37 itojun optval = OPTBIT(IN6P_IPV6_V6ONLY);
1601 1.10 itojun break;
1602 1.2 itojun }
1603 1.2 itojun *mtod(m, int *) = optval;
1604 1.2 itojun break;
1605 1.2 itojun
1606 1.2 itojun case IPV6_MULTICAST_IF:
1607 1.2 itojun case IPV6_MULTICAST_HOPS:
1608 1.2 itojun case IPV6_MULTICAST_LOOP:
1609 1.2 itojun case IPV6_JOIN_GROUP:
1610 1.2 itojun case IPV6_LEAVE_GROUP:
1611 1.2 itojun error = ip6_getmoptions(optname, in6p->in6p_moptions, mp);
1612 1.2 itojun break;
1613 1.2 itojun
1614 1.2 itojun #ifdef IPSEC
1615 1.2 itojun case IPV6_IPSEC_POLICY:
1616 1.13 itojun {
1617 1.13 itojun caddr_t req = NULL;
1618 1.13 itojun size_t len = 0;
1619 1.13 itojun
1620 1.13 itojun if (m) {
1621 1.13 itojun req = mtod(m, caddr_t);
1622 1.13 itojun len = m->m_len;
1623 1.13 itojun }
1624 1.13 itojun error = ipsec6_get_policy(in6p, req, len, mp);
1625 1.2 itojun break;
1626 1.13 itojun }
1627 1.2 itojun #endif /* IPSEC */
1628 1.2 itojun
1629 1.2 itojun default:
1630 1.2 itojun error = ENOPROTOOPT;
1631 1.2 itojun break;
1632 1.2 itojun }
1633 1.2 itojun break;
1634 1.2 itojun }
1635 1.19 itojun } else {
1636 1.2 itojun error = EINVAL;
1637 1.2 itojun if (op == PRCO_SETOPT && *mp)
1638 1.2 itojun (void)m_free(*mp);
1639 1.2 itojun }
1640 1.2 itojun return(error);
1641 1.2 itojun }
1642 1.2 itojun
1643 1.2 itojun /*
1644 1.2 itojun * Set up IP6 options in pcb for insertion in output packets.
1645 1.2 itojun * Store in mbuf with pointer in pcbopt, adding pseudo-option
1646 1.2 itojun * with destination address if source routed.
1647 1.2 itojun */
1648 1.2 itojun static int
1649 1.2 itojun ip6_pcbopts(pktopt, m, so)
1650 1.2 itojun struct ip6_pktopts **pktopt;
1651 1.31 itojun struct mbuf *m;
1652 1.2 itojun struct socket *so;
1653 1.2 itojun {
1654 1.31 itojun struct ip6_pktopts *opt = *pktopt;
1655 1.2 itojun int error = 0;
1656 1.2 itojun struct proc *p = curproc; /* XXX */
1657 1.2 itojun int priv = 0;
1658 1.2 itojun
1659 1.2 itojun /* turn off any old options. */
1660 1.2 itojun if (opt) {
1661 1.2 itojun if (opt->ip6po_m)
1662 1.2 itojun (void)m_free(opt->ip6po_m);
1663 1.19 itojun } else
1664 1.2 itojun opt = malloc(sizeof(*opt), M_IP6OPT, M_WAITOK);
1665 1.2 itojun *pktopt = 0;
1666 1.2 itojun
1667 1.2 itojun if (!m || m->m_len == 0) {
1668 1.2 itojun /*
1669 1.2 itojun * Only turning off any previous options.
1670 1.2 itojun */
1671 1.2 itojun if (opt)
1672 1.2 itojun free(opt, M_IP6OPT);
1673 1.2 itojun if (m)
1674 1.2 itojun (void)m_free(m);
1675 1.2 itojun return(0);
1676 1.2 itojun }
1677 1.2 itojun
1678 1.2 itojun /* set options specified by user. */
1679 1.2 itojun if (p && !suser(p->p_ucred, &p->p_acflag))
1680 1.2 itojun priv = 1;
1681 1.2 itojun if ((error = ip6_setpktoptions(m, opt, priv)) != 0) {
1682 1.2 itojun (void)m_free(m);
1683 1.2 itojun return(error);
1684 1.2 itojun }
1685 1.2 itojun *pktopt = opt;
1686 1.2 itojun return(0);
1687 1.2 itojun }
1688 1.2 itojun
1689 1.2 itojun /*
1690 1.2 itojun * Set the IP6 multicast options in response to user setsockopt().
1691 1.2 itojun */
1692 1.2 itojun static int
1693 1.2 itojun ip6_setmoptions(optname, im6op, m)
1694 1.2 itojun int optname;
1695 1.2 itojun struct ip6_moptions **im6op;
1696 1.2 itojun struct mbuf *m;
1697 1.2 itojun {
1698 1.2 itojun int error = 0;
1699 1.2 itojun u_int loop, ifindex;
1700 1.2 itojun struct ipv6_mreq *mreq;
1701 1.2 itojun struct ifnet *ifp;
1702 1.2 itojun struct ip6_moptions *im6o = *im6op;
1703 1.2 itojun struct route_in6 ro;
1704 1.2 itojun struct sockaddr_in6 *dst;
1705 1.2 itojun struct in6_multi_mship *imm;
1706 1.2 itojun struct proc *p = curproc; /* XXX */
1707 1.2 itojun
1708 1.2 itojun if (im6o == NULL) {
1709 1.2 itojun /*
1710 1.2 itojun * No multicast option buffer attached to the pcb;
1711 1.2 itojun * allocate one and initialize to default values.
1712 1.2 itojun */
1713 1.2 itojun im6o = (struct ip6_moptions *)
1714 1.2 itojun malloc(sizeof(*im6o), M_IPMOPTS, M_WAITOK);
1715 1.2 itojun
1716 1.2 itojun if (im6o == NULL)
1717 1.2 itojun return(ENOBUFS);
1718 1.2 itojun *im6op = im6o;
1719 1.2 itojun im6o->im6o_multicast_ifp = NULL;
1720 1.2 itojun im6o->im6o_multicast_hlim = ip6_defmcasthlim;
1721 1.2 itojun im6o->im6o_multicast_loop = IPV6_DEFAULT_MULTICAST_LOOP;
1722 1.2 itojun LIST_INIT(&im6o->im6o_memberships);
1723 1.2 itojun }
1724 1.2 itojun
1725 1.2 itojun switch (optname) {
1726 1.2 itojun
1727 1.2 itojun case IPV6_MULTICAST_IF:
1728 1.2 itojun /*
1729 1.2 itojun * Select the interface for outgoing multicast packets.
1730 1.2 itojun */
1731 1.2 itojun if (m == NULL || m->m_len != sizeof(u_int)) {
1732 1.2 itojun error = EINVAL;
1733 1.2 itojun break;
1734 1.2 itojun }
1735 1.25 itojun bcopy(mtod(m, u_int *), &ifindex, sizeof(ifindex));
1736 1.2 itojun if (ifindex < 0 || if_index < ifindex) {
1737 1.2 itojun error = ENXIO; /* XXX EINVAL? */
1738 1.2 itojun break;
1739 1.2 itojun }
1740 1.2 itojun ifp = ifindex2ifnet[ifindex];
1741 1.2 itojun if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
1742 1.2 itojun error = EADDRNOTAVAIL;
1743 1.2 itojun break;
1744 1.2 itojun }
1745 1.2 itojun im6o->im6o_multicast_ifp = ifp;
1746 1.2 itojun break;
1747 1.2 itojun
1748 1.2 itojun case IPV6_MULTICAST_HOPS:
1749 1.2 itojun {
1750 1.2 itojun /*
1751 1.2 itojun * Set the IP6 hoplimit for outgoing multicast packets.
1752 1.2 itojun */
1753 1.2 itojun int optval;
1754 1.2 itojun if (m == NULL || m->m_len != sizeof(int)) {
1755 1.2 itojun error = EINVAL;
1756 1.2 itojun break;
1757 1.2 itojun }
1758 1.25 itojun bcopy(mtod(m, u_int *), &optval, sizeof(optval));
1759 1.2 itojun if (optval < -1 || optval >= 256)
1760 1.2 itojun error = EINVAL;
1761 1.2 itojun else if (optval == -1)
1762 1.2 itojun im6o->im6o_multicast_hlim = ip6_defmcasthlim;
1763 1.2 itojun else
1764 1.2 itojun im6o->im6o_multicast_hlim = optval;
1765 1.2 itojun break;
1766 1.2 itojun }
1767 1.2 itojun
1768 1.2 itojun case IPV6_MULTICAST_LOOP:
1769 1.2 itojun /*
1770 1.2 itojun * Set the loopback flag for outgoing multicast packets.
1771 1.2 itojun * Must be zero or one.
1772 1.2 itojun */
1773 1.25 itojun if (m == NULL || m->m_len != sizeof(u_int)) {
1774 1.25 itojun error = EINVAL;
1775 1.25 itojun break;
1776 1.25 itojun }
1777 1.25 itojun bcopy(mtod(m, u_int *), &loop, sizeof(loop));
1778 1.25 itojun if (loop > 1) {
1779 1.2 itojun error = EINVAL;
1780 1.2 itojun break;
1781 1.2 itojun }
1782 1.2 itojun im6o->im6o_multicast_loop = loop;
1783 1.2 itojun break;
1784 1.2 itojun
1785 1.2 itojun case IPV6_JOIN_GROUP:
1786 1.2 itojun /*
1787 1.2 itojun * Add a multicast group membership.
1788 1.2 itojun * Group must be a valid IP6 multicast address.
1789 1.2 itojun */
1790 1.2 itojun if (m == NULL || m->m_len != sizeof(struct ipv6_mreq)) {
1791 1.2 itojun error = EINVAL;
1792 1.2 itojun break;
1793 1.2 itojun }
1794 1.2 itojun mreq = mtod(m, struct ipv6_mreq *);
1795 1.9 itojun if (IN6_IS_ADDR_UNSPECIFIED(&mreq->ipv6mr_multiaddr)) {
1796 1.2 itojun /*
1797 1.2 itojun * We use the unspecified address to specify to accept
1798 1.2 itojun * all multicast addresses. Only super user is allowed
1799 1.2 itojun * to do this.
1800 1.2 itojun */
1801 1.31 itojun if (suser(p->p_ucred, &p->p_acflag))
1802 1.31 itojun {
1803 1.2 itojun error = EACCES;
1804 1.2 itojun break;
1805 1.2 itojun }
1806 1.2 itojun } else if (!IN6_IS_ADDR_MULTICAST(&mreq->ipv6mr_multiaddr)) {
1807 1.2 itojun error = EINVAL;
1808 1.2 itojun break;
1809 1.2 itojun }
1810 1.2 itojun
1811 1.2 itojun /*
1812 1.2 itojun * If the interface is specified, validate it.
1813 1.2 itojun */
1814 1.2 itojun if (mreq->ipv6mr_interface < 0
1815 1.2 itojun || if_index < mreq->ipv6mr_interface) {
1816 1.2 itojun error = ENXIO; /* XXX EINVAL? */
1817 1.2 itojun break;
1818 1.2 itojun }
1819 1.2 itojun /*
1820 1.2 itojun * If no interface was explicitly specified, choose an
1821 1.2 itojun * appropriate one according to the given multicast address.
1822 1.2 itojun */
1823 1.2 itojun if (mreq->ipv6mr_interface == 0) {
1824 1.2 itojun /*
1825 1.2 itojun * If the multicast address is in node-local scope,
1826 1.2 itojun * the interface should be a loopback interface.
1827 1.2 itojun * Otherwise, look up the routing table for the
1828 1.2 itojun * address, and choose the outgoing interface.
1829 1.2 itojun * XXX: is it a good approach?
1830 1.2 itojun */
1831 1.2 itojun if (IN6_IS_ADDR_MC_NODELOCAL(&mreq->ipv6mr_multiaddr)) {
1832 1.2 itojun ifp = &loif[0];
1833 1.19 itojun } else {
1834 1.2 itojun ro.ro_rt = NULL;
1835 1.2 itojun dst = (struct sockaddr_in6 *)&ro.ro_dst;
1836 1.2 itojun bzero(dst, sizeof(*dst));
1837 1.2 itojun dst->sin6_len = sizeof(struct sockaddr_in6);
1838 1.2 itojun dst->sin6_family = AF_INET6;
1839 1.2 itojun dst->sin6_addr = mreq->ipv6mr_multiaddr;
1840 1.2 itojun rtalloc((struct route *)&ro);
1841 1.2 itojun if (ro.ro_rt == NULL) {
1842 1.2 itojun error = EADDRNOTAVAIL;
1843 1.2 itojun break;
1844 1.2 itojun }
1845 1.2 itojun ifp = ro.ro_rt->rt_ifp;
1846 1.2 itojun rtfree(ro.ro_rt);
1847 1.2 itojun }
1848 1.2 itojun } else
1849 1.2 itojun ifp = ifindex2ifnet[mreq->ipv6mr_interface];
1850 1.2 itojun
1851 1.2 itojun /*
1852 1.2 itojun * See if we found an interface, and confirm that it
1853 1.2 itojun * supports multicast
1854 1.2 itojun */
1855 1.2 itojun if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
1856 1.2 itojun error = EADDRNOTAVAIL;
1857 1.2 itojun break;
1858 1.2 itojun }
1859 1.2 itojun /*
1860 1.2 itojun * Put interface index into the multicast address,
1861 1.2 itojun * if the address has link-local scope.
1862 1.2 itojun */
1863 1.2 itojun if (IN6_IS_ADDR_MC_LINKLOCAL(&mreq->ipv6mr_multiaddr)) {
1864 1.2 itojun mreq->ipv6mr_multiaddr.s6_addr16[1]
1865 1.2 itojun = htons(mreq->ipv6mr_interface);
1866 1.2 itojun }
1867 1.2 itojun /*
1868 1.2 itojun * See if the membership already exists.
1869 1.2 itojun */
1870 1.2 itojun for (imm = im6o->im6o_memberships.lh_first;
1871 1.2 itojun imm != NULL; imm = imm->i6mm_chain.le_next)
1872 1.2 itojun if (imm->i6mm_maddr->in6m_ifp == ifp &&
1873 1.2 itojun IN6_ARE_ADDR_EQUAL(&imm->i6mm_maddr->in6m_addr,
1874 1.2 itojun &mreq->ipv6mr_multiaddr))
1875 1.2 itojun break;
1876 1.2 itojun if (imm != NULL) {
1877 1.2 itojun error = EADDRINUSE;
1878 1.2 itojun break;
1879 1.2 itojun }
1880 1.2 itojun /*
1881 1.2 itojun * Everything looks good; add a new record to the multicast
1882 1.2 itojun * address list for the given interface.
1883 1.2 itojun */
1884 1.43 itojun imm = in6_joingroup(ifp, &mreq->ipv6mr_multiaddr, &error);
1885 1.43 itojun if (!imm)
1886 1.2 itojun break;
1887 1.2 itojun LIST_INSERT_HEAD(&im6o->im6o_memberships, imm, i6mm_chain);
1888 1.2 itojun break;
1889 1.2 itojun
1890 1.2 itojun case IPV6_LEAVE_GROUP:
1891 1.2 itojun /*
1892 1.2 itojun * Drop a multicast group membership.
1893 1.2 itojun * Group must be a valid IP6 multicast address.
1894 1.2 itojun */
1895 1.2 itojun if (m == NULL || m->m_len != sizeof(struct ipv6_mreq)) {
1896 1.2 itojun error = EINVAL;
1897 1.2 itojun break;
1898 1.2 itojun }
1899 1.2 itojun mreq = mtod(m, struct ipv6_mreq *);
1900 1.9 itojun if (IN6_IS_ADDR_UNSPECIFIED(&mreq->ipv6mr_multiaddr)) {
1901 1.31 itojun if (suser(p->p_ucred, &p->p_acflag))
1902 1.31 itojun {
1903 1.2 itojun error = EACCES;
1904 1.2 itojun break;
1905 1.2 itojun }
1906 1.2 itojun } else if (!IN6_IS_ADDR_MULTICAST(&mreq->ipv6mr_multiaddr)) {
1907 1.2 itojun error = EINVAL;
1908 1.2 itojun break;
1909 1.2 itojun }
1910 1.2 itojun /*
1911 1.2 itojun * If an interface address was specified, get a pointer
1912 1.2 itojun * to its ifnet structure.
1913 1.2 itojun */
1914 1.2 itojun if (mreq->ipv6mr_interface < 0
1915 1.2 itojun || if_index < mreq->ipv6mr_interface) {
1916 1.2 itojun error = ENXIO; /* XXX EINVAL? */
1917 1.2 itojun break;
1918 1.2 itojun }
1919 1.2 itojun ifp = ifindex2ifnet[mreq->ipv6mr_interface];
1920 1.2 itojun /*
1921 1.2 itojun * Put interface index into the multicast address,
1922 1.2 itojun * if the address has link-local scope.
1923 1.2 itojun */
1924 1.2 itojun if (IN6_IS_ADDR_MC_LINKLOCAL(&mreq->ipv6mr_multiaddr)) {
1925 1.2 itojun mreq->ipv6mr_multiaddr.s6_addr16[1]
1926 1.2 itojun = htons(mreq->ipv6mr_interface);
1927 1.2 itojun }
1928 1.2 itojun /*
1929 1.2 itojun * Find the membership in the membership list.
1930 1.2 itojun */
1931 1.2 itojun for (imm = im6o->im6o_memberships.lh_first;
1932 1.2 itojun imm != NULL; imm = imm->i6mm_chain.le_next) {
1933 1.2 itojun if ((ifp == NULL ||
1934 1.2 itojun imm->i6mm_maddr->in6m_ifp == ifp) &&
1935 1.2 itojun IN6_ARE_ADDR_EQUAL(&imm->i6mm_maddr->in6m_addr,
1936 1.2 itojun &mreq->ipv6mr_multiaddr))
1937 1.2 itojun break;
1938 1.2 itojun }
1939 1.2 itojun if (imm == NULL) {
1940 1.2 itojun /* Unable to resolve interface */
1941 1.2 itojun error = EADDRNOTAVAIL;
1942 1.2 itojun break;
1943 1.2 itojun }
1944 1.2 itojun /*
1945 1.2 itojun * Give up the multicast address record to which the
1946 1.2 itojun * membership points.
1947 1.2 itojun */
1948 1.2 itojun LIST_REMOVE(imm, i6mm_chain);
1949 1.43 itojun in6_leavegroup(imm);
1950 1.2 itojun break;
1951 1.2 itojun
1952 1.2 itojun default:
1953 1.2 itojun error = EOPNOTSUPP;
1954 1.2 itojun break;
1955 1.2 itojun }
1956 1.2 itojun
1957 1.2 itojun /*
1958 1.2 itojun * If all options have default values, no need to keep the mbuf.
1959 1.2 itojun */
1960 1.2 itojun if (im6o->im6o_multicast_ifp == NULL &&
1961 1.2 itojun im6o->im6o_multicast_hlim == ip6_defmcasthlim &&
1962 1.2 itojun im6o->im6o_multicast_loop == IPV6_DEFAULT_MULTICAST_LOOP &&
1963 1.2 itojun im6o->im6o_memberships.lh_first == NULL) {
1964 1.2 itojun free(*im6op, M_IPMOPTS);
1965 1.2 itojun *im6op = NULL;
1966 1.2 itojun }
1967 1.2 itojun
1968 1.2 itojun return(error);
1969 1.2 itojun }
1970 1.2 itojun
1971 1.2 itojun /*
1972 1.2 itojun * Return the IP6 multicast options in response to user getsockopt().
1973 1.2 itojun */
1974 1.2 itojun static int
1975 1.2 itojun ip6_getmoptions(optname, im6o, mp)
1976 1.2 itojun int optname;
1977 1.31 itojun struct ip6_moptions *im6o;
1978 1.31 itojun struct mbuf **mp;
1979 1.2 itojun {
1980 1.2 itojun u_int *hlim, *loop, *ifindex;
1981 1.2 itojun
1982 1.2 itojun *mp = m_get(M_WAIT, MT_SOOPTS);
1983 1.2 itojun
1984 1.2 itojun switch (optname) {
1985 1.2 itojun
1986 1.2 itojun case IPV6_MULTICAST_IF:
1987 1.2 itojun ifindex = mtod(*mp, u_int *);
1988 1.2 itojun (*mp)->m_len = sizeof(u_int);
1989 1.2 itojun if (im6o == NULL || im6o->im6o_multicast_ifp == NULL)
1990 1.2 itojun *ifindex = 0;
1991 1.2 itojun else
1992 1.2 itojun *ifindex = im6o->im6o_multicast_ifp->if_index;
1993 1.2 itojun return(0);
1994 1.2 itojun
1995 1.2 itojun case IPV6_MULTICAST_HOPS:
1996 1.2 itojun hlim = mtod(*mp, u_int *);
1997 1.2 itojun (*mp)->m_len = sizeof(u_int);
1998 1.2 itojun if (im6o == NULL)
1999 1.2 itojun *hlim = ip6_defmcasthlim;
2000 1.2 itojun else
2001 1.2 itojun *hlim = im6o->im6o_multicast_hlim;
2002 1.2 itojun return(0);
2003 1.2 itojun
2004 1.2 itojun case IPV6_MULTICAST_LOOP:
2005 1.2 itojun loop = mtod(*mp, u_int *);
2006 1.2 itojun (*mp)->m_len = sizeof(u_int);
2007 1.2 itojun if (im6o == NULL)
2008 1.2 itojun *loop = ip6_defmcasthlim;
2009 1.2 itojun else
2010 1.2 itojun *loop = im6o->im6o_multicast_loop;
2011 1.2 itojun return(0);
2012 1.2 itojun
2013 1.2 itojun default:
2014 1.2 itojun return(EOPNOTSUPP);
2015 1.2 itojun }
2016 1.2 itojun }
2017 1.2 itojun
2018 1.2 itojun /*
2019 1.2 itojun * Discard the IP6 multicast options.
2020 1.2 itojun */
2021 1.2 itojun void
2022 1.2 itojun ip6_freemoptions(im6o)
2023 1.31 itojun struct ip6_moptions *im6o;
2024 1.2 itojun {
2025 1.2 itojun struct in6_multi_mship *imm;
2026 1.2 itojun
2027 1.2 itojun if (im6o == NULL)
2028 1.2 itojun return;
2029 1.2 itojun
2030 1.2 itojun while ((imm = im6o->im6o_memberships.lh_first) != NULL) {
2031 1.2 itojun LIST_REMOVE(imm, i6mm_chain);
2032 1.43 itojun in6_leavegroup(imm);
2033 1.2 itojun }
2034 1.2 itojun free(im6o, M_IPMOPTS);
2035 1.2 itojun }
2036 1.2 itojun
2037 1.2 itojun /*
2038 1.2 itojun * Set IPv6 outgoing packet options based on advanced API.
2039 1.2 itojun */
2040 1.2 itojun int
2041 1.2 itojun ip6_setpktoptions(control, opt, priv)
2042 1.2 itojun struct mbuf *control;
2043 1.2 itojun struct ip6_pktopts *opt;
2044 1.2 itojun int priv;
2045 1.2 itojun {
2046 1.31 itojun struct cmsghdr *cm = 0;
2047 1.2 itojun
2048 1.2 itojun if (control == 0 || opt == 0)
2049 1.2 itojun return(EINVAL);
2050 1.2 itojun
2051 1.2 itojun bzero(opt, sizeof(*opt));
2052 1.2 itojun opt->ip6po_hlim = -1; /* -1 means to use default hop limit */
2053 1.2 itojun
2054 1.2 itojun /*
2055 1.2 itojun * XXX: Currently, we assume all the optional information is stored
2056 1.2 itojun * in a single mbuf.
2057 1.2 itojun */
2058 1.2 itojun if (control->m_next)
2059 1.2 itojun return(EINVAL);
2060 1.2 itojun
2061 1.2 itojun opt->ip6po_m = control;
2062 1.2 itojun
2063 1.2 itojun for (; control->m_len; control->m_data += CMSG_ALIGN(cm->cmsg_len),
2064 1.2 itojun control->m_len -= CMSG_ALIGN(cm->cmsg_len)) {
2065 1.2 itojun cm = mtod(control, struct cmsghdr *);
2066 1.2 itojun if (cm->cmsg_len == 0 || cm->cmsg_len > control->m_len)
2067 1.2 itojun return(EINVAL);
2068 1.2 itojun if (cm->cmsg_level != IPPROTO_IPV6)
2069 1.2 itojun continue;
2070 1.2 itojun
2071 1.31 itojun switch (cm->cmsg_type) {
2072 1.2 itojun case IPV6_PKTINFO:
2073 1.2 itojun if (cm->cmsg_len != CMSG_LEN(sizeof(struct in6_pktinfo)))
2074 1.2 itojun return(EINVAL);
2075 1.2 itojun opt->ip6po_pktinfo = (struct in6_pktinfo *)CMSG_DATA(cm);
2076 1.2 itojun if (opt->ip6po_pktinfo->ipi6_ifindex &&
2077 1.2 itojun IN6_IS_ADDR_LINKLOCAL(&opt->ip6po_pktinfo->ipi6_addr))
2078 1.2 itojun opt->ip6po_pktinfo->ipi6_addr.s6_addr16[1] =
2079 1.2 itojun htons(opt->ip6po_pktinfo->ipi6_ifindex);
2080 1.2 itojun
2081 1.2 itojun if (opt->ip6po_pktinfo->ipi6_ifindex > if_index
2082 1.2 itojun || opt->ip6po_pktinfo->ipi6_ifindex < 0) {
2083 1.2 itojun return(ENXIO);
2084 1.2 itojun }
2085 1.2 itojun
2086 1.19 itojun /*
2087 1.19 itojun * Check if the requested source address is indeed a
2088 1.35 itojun * unicast address assigned to the node, and can be
2089 1.35 itojun * used as the packet's source address.
2090 1.19 itojun */
2091 1.9 itojun if (!IN6_IS_ADDR_UNSPECIFIED(&opt->ip6po_pktinfo->ipi6_addr)) {
2092 1.2 itojun struct ifaddr *ia;
2093 1.35 itojun struct in6_ifaddr *ia6;
2094 1.2 itojun struct sockaddr_in6 sin6;
2095 1.2 itojun
2096 1.2 itojun bzero(&sin6, sizeof(sin6));
2097 1.2 itojun sin6.sin6_len = sizeof(sin6);
2098 1.2 itojun sin6.sin6_family = AF_INET6;
2099 1.2 itojun sin6.sin6_addr =
2100 1.2 itojun opt->ip6po_pktinfo->ipi6_addr;
2101 1.2 itojun ia = ifa_ifwithaddr(sin6tosa(&sin6));
2102 1.2 itojun if (ia == NULL ||
2103 1.2 itojun (opt->ip6po_pktinfo->ipi6_ifindex &&
2104 1.2 itojun (ia->ifa_ifp->if_index !=
2105 1.2 itojun opt->ip6po_pktinfo->ipi6_ifindex))) {
2106 1.2 itojun return(EADDRNOTAVAIL);
2107 1.2 itojun }
2108 1.35 itojun ia6 = (struct in6_ifaddr *)ia;
2109 1.35 itojun if ((ia6->ia6_flags & (IN6_IFF_ANYCAST|IN6_IFF_NOTREADY)) != 0) {
2110 1.35 itojun return(EADDRNOTAVAIL);
2111 1.35 itojun }
2112 1.35 itojun
2113 1.2 itojun /*
2114 1.2 itojun * Check if the requested source address is
2115 1.2 itojun * indeed a unicast address assigned to the
2116 1.2 itojun * node.
2117 1.2 itojun */
2118 1.2 itojun if (IN6_IS_ADDR_MULTICAST(&opt->ip6po_pktinfo->ipi6_addr))
2119 1.2 itojun return(EADDRNOTAVAIL);
2120 1.2 itojun }
2121 1.2 itojun break;
2122 1.2 itojun
2123 1.2 itojun case IPV6_HOPLIMIT:
2124 1.2 itojun if (cm->cmsg_len != CMSG_LEN(sizeof(int)))
2125 1.2 itojun return(EINVAL);
2126 1.2 itojun
2127 1.25 itojun bcopy(CMSG_DATA(cm), &opt->ip6po_hlim,
2128 1.25 itojun sizeof(opt->ip6po_hlim));
2129 1.2 itojun if (opt->ip6po_hlim < -1 || opt->ip6po_hlim > 255)
2130 1.2 itojun return(EINVAL);
2131 1.2 itojun break;
2132 1.2 itojun
2133 1.2 itojun case IPV6_NEXTHOP:
2134 1.2 itojun if (!priv)
2135 1.2 itojun return(EPERM);
2136 1.31 itojun
2137 1.2 itojun if (cm->cmsg_len < sizeof(u_char) ||
2138 1.19 itojun /* check if cmsg_len is large enough for sa_len */
2139 1.2 itojun cm->cmsg_len < CMSG_LEN(*CMSG_DATA(cm)))
2140 1.2 itojun return(EINVAL);
2141 1.2 itojun
2142 1.2 itojun opt->ip6po_nexthop = (struct sockaddr *)CMSG_DATA(cm);
2143 1.2 itojun
2144 1.2 itojun break;
2145 1.2 itojun
2146 1.2 itojun case IPV6_HOPOPTS:
2147 1.2 itojun if (cm->cmsg_len < CMSG_LEN(sizeof(struct ip6_hbh)))
2148 1.2 itojun return(EINVAL);
2149 1.2 itojun opt->ip6po_hbh = (struct ip6_hbh *)CMSG_DATA(cm);
2150 1.2 itojun if (cm->cmsg_len !=
2151 1.2 itojun CMSG_LEN((opt->ip6po_hbh->ip6h_len + 1) << 3))
2152 1.2 itojun return(EINVAL);
2153 1.2 itojun break;
2154 1.2 itojun
2155 1.2 itojun case IPV6_DSTOPTS:
2156 1.2 itojun if (cm->cmsg_len < CMSG_LEN(sizeof(struct ip6_dest)))
2157 1.2 itojun return(EINVAL);
2158 1.2 itojun
2159 1.2 itojun /*
2160 1.2 itojun * If there is no routing header yet, the destination
2161 1.2 itojun * options header should be put on the 1st part.
2162 1.2 itojun * Otherwise, the header should be on the 2nd part.
2163 1.2 itojun * (See RFC 2460, section 4.1)
2164 1.2 itojun */
2165 1.2 itojun if (opt->ip6po_rthdr == NULL) {
2166 1.2 itojun opt->ip6po_dest1 =
2167 1.2 itojun (struct ip6_dest *)CMSG_DATA(cm);
2168 1.2 itojun if (cm->cmsg_len !=
2169 1.2 itojun CMSG_LEN((opt->ip6po_dest1->ip6d_len + 1)
2170 1.2 itojun << 3))
2171 1.2 itojun return(EINVAL);
2172 1.2 itojun }
2173 1.2 itojun else {
2174 1.2 itojun opt->ip6po_dest2 =
2175 1.2 itojun (struct ip6_dest *)CMSG_DATA(cm);
2176 1.2 itojun if (cm->cmsg_len !=
2177 1.2 itojun CMSG_LEN((opt->ip6po_dest2->ip6d_len + 1)
2178 1.2 itojun << 3))
2179 1.2 itojun return(EINVAL);
2180 1.2 itojun }
2181 1.2 itojun break;
2182 1.2 itojun
2183 1.2 itojun case IPV6_RTHDR:
2184 1.2 itojun if (cm->cmsg_len < CMSG_LEN(sizeof(struct ip6_rthdr)))
2185 1.2 itojun return(EINVAL);
2186 1.2 itojun opt->ip6po_rthdr = (struct ip6_rthdr *)CMSG_DATA(cm);
2187 1.2 itojun if (cm->cmsg_len !=
2188 1.2 itojun CMSG_LEN((opt->ip6po_rthdr->ip6r_len + 1) << 3))
2189 1.2 itojun return(EINVAL);
2190 1.31 itojun switch (opt->ip6po_rthdr->ip6r_type) {
2191 1.2 itojun case IPV6_RTHDR_TYPE_0:
2192 1.2 itojun if (opt->ip6po_rthdr->ip6r_segleft == 0)
2193 1.2 itojun return(EINVAL);
2194 1.2 itojun break;
2195 1.2 itojun default:
2196 1.2 itojun return(EINVAL);
2197 1.2 itojun }
2198 1.2 itojun break;
2199 1.2 itojun
2200 1.2 itojun default:
2201 1.2 itojun return(ENOPROTOOPT);
2202 1.2 itojun }
2203 1.2 itojun }
2204 1.2 itojun
2205 1.2 itojun return(0);
2206 1.2 itojun }
2207 1.2 itojun
2208 1.2 itojun /*
2209 1.2 itojun * Routine called from ip6_output() to loop back a copy of an IP6 multicast
2210 1.2 itojun * packet to the input queue of a specified interface. Note that this
2211 1.2 itojun * calls the output routine of the loopback "driver", but with an interface
2212 1.2 itojun * pointer that might NOT be &loif -- easier than replicating that code here.
2213 1.2 itojun */
2214 1.2 itojun void
2215 1.2 itojun ip6_mloopback(ifp, m, dst)
2216 1.2 itojun struct ifnet *ifp;
2217 1.31 itojun struct mbuf *m;
2218 1.31 itojun struct sockaddr_in6 *dst;
2219 1.2 itojun {
2220 1.22 itojun struct mbuf *copym;
2221 1.22 itojun struct ip6_hdr *ip6;
2222 1.2 itojun
2223 1.2 itojun copym = m_copy(m, 0, M_COPYALL);
2224 1.22 itojun if (copym == NULL)
2225 1.22 itojun return;
2226 1.22 itojun
2227 1.22 itojun /*
2228 1.22 itojun * Make sure to deep-copy IPv6 header portion in case the data
2229 1.22 itojun * is in an mbuf cluster, so that we can safely override the IPv6
2230 1.22 itojun * header portion later.
2231 1.22 itojun */
2232 1.22 itojun if ((copym->m_flags & M_EXT) != 0 ||
2233 1.22 itojun copym->m_len < sizeof(struct ip6_hdr)) {
2234 1.22 itojun copym = m_pullup(copym, sizeof(struct ip6_hdr));
2235 1.22 itojun if (copym == NULL)
2236 1.22 itojun return;
2237 1.22 itojun }
2238 1.22 itojun
2239 1.22 itojun #ifdef DIAGNOSTIC
2240 1.22 itojun if (copym->m_len < sizeof(*ip6)) {
2241 1.22 itojun m_freem(copym);
2242 1.22 itojun return;
2243 1.22 itojun }
2244 1.22 itojun #endif
2245 1.22 itojun
2246 1.34 itojun ip6 = mtod(copym, struct ip6_hdr *);
2247 1.34 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src))
2248 1.34 itojun ip6->ip6_src.s6_addr16[1] = 0;
2249 1.34 itojun if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst))
2250 1.34 itojun ip6->ip6_dst.s6_addr16[1] = 0;
2251 1.22 itojun
2252 1.22 itojun (void)looutput(ifp, copym, (struct sockaddr *)dst, NULL);
2253 1.2 itojun }
2254 1.2 itojun
2255 1.2 itojun /*
2256 1.2 itojun * Chop IPv6 header off from the payload.
2257 1.2 itojun */
2258 1.2 itojun static int
2259 1.2 itojun ip6_splithdr(m, exthdrs)
2260 1.2 itojun struct mbuf *m;
2261 1.2 itojun struct ip6_exthdrs *exthdrs;
2262 1.2 itojun {
2263 1.2 itojun struct mbuf *mh;
2264 1.2 itojun struct ip6_hdr *ip6;
2265 1.2 itojun
2266 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
2267 1.2 itojun if (m->m_len > sizeof(*ip6)) {
2268 1.2 itojun MGETHDR(mh, M_DONTWAIT, MT_HEADER);
2269 1.2 itojun if (mh == 0) {
2270 1.2 itojun m_freem(m);
2271 1.2 itojun return ENOBUFS;
2272 1.2 itojun }
2273 1.2 itojun M_COPY_PKTHDR(mh, m);
2274 1.2 itojun MH_ALIGN(mh, sizeof(*ip6));
2275 1.2 itojun m->m_flags &= ~M_PKTHDR;
2276 1.2 itojun m->m_len -= sizeof(*ip6);
2277 1.2 itojun m->m_data += sizeof(*ip6);
2278 1.2 itojun mh->m_next = m;
2279 1.2 itojun m = mh;
2280 1.2 itojun m->m_len = sizeof(*ip6);
2281 1.2 itojun bcopy((caddr_t)ip6, mtod(m, caddr_t), sizeof(*ip6));
2282 1.2 itojun }
2283 1.2 itojun exthdrs->ip6e_ip6 = m;
2284 1.2 itojun return 0;
2285 1.2 itojun }
2286 1.2 itojun
2287 1.2 itojun /*
2288 1.2 itojun * Compute IPv6 extension header length.
2289 1.2 itojun */
2290 1.2 itojun int
2291 1.2 itojun ip6_optlen(in6p)
2292 1.2 itojun struct in6pcb *in6p;
2293 1.2 itojun {
2294 1.2 itojun int len;
2295 1.2 itojun
2296 1.2 itojun if (!in6p->in6p_outputopts)
2297 1.2 itojun return 0;
2298 1.2 itojun
2299 1.2 itojun len = 0;
2300 1.2 itojun #define elen(x) \
2301 1.2 itojun (((struct ip6_ext *)(x)) ? (((struct ip6_ext *)(x))->ip6e_len + 1) << 3 : 0)
2302 1.2 itojun
2303 1.2 itojun len += elen(in6p->in6p_outputopts->ip6po_hbh);
2304 1.2 itojun len += elen(in6p->in6p_outputopts->ip6po_dest1);
2305 1.2 itojun len += elen(in6p->in6p_outputopts->ip6po_rthdr);
2306 1.2 itojun len += elen(in6p->in6p_outputopts->ip6po_dest2);
2307 1.2 itojun return len;
2308 1.2 itojun #undef elen
2309 1.2 itojun }
2310