]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet6/ip6_input.c
MFC r237569:
[FreeBSD/stable/8.git] / sys / netinet6 / ip6_input.c
1 /*-
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the project nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      $KAME: ip6_input.c,v 1.259 2002/01/21 04:58:09 jinmei Exp $
30  */
31
32 /*-
33  * Copyright (c) 1982, 1986, 1988, 1993
34  *      The Regents of the University of California.  All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  * 4. Neither the name of the University nor the names of its contributors
45  *    may be used to endorse or promote products derived from this software
46  *    without specific prior written permission.
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58  * SUCH DAMAGE.
59  *
60  *      @(#)ip_input.c  8.2 (Berkeley) 1/4/94
61  */
62
63 #include <sys/cdefs.h>
64 __FBSDID("$FreeBSD$");
65
66 #include "opt_inet.h"
67 #include "opt_inet6.h"
68 #include "opt_ipsec.h"
69
70 #include <sys/param.h>
71 #include <sys/systm.h>
72 #include <sys/malloc.h>
73 #include <sys/mbuf.h>
74 #include <sys/proc.h>
75 #include <sys/domain.h>
76 #include <sys/protosw.h>
77 #include <sys/socket.h>
78 #include <sys/socketvar.h>
79 #include <sys/errno.h>
80 #include <sys/time.h>
81 #include <sys/kernel.h>
82 #include <sys/syslog.h>
83
84 #include <net/if.h>
85 #include <net/if_types.h>
86 #include <net/if_dl.h>
87 #include <net/route.h>
88 #include <net/netisr.h>
89 #include <net/pfil.h>
90 #include <net/vnet.h>
91
92 #include <netinet/in.h>
93 #include <netinet/in_systm.h>
94 #include <net/if_llatbl.h>
95 #ifdef INET
96 #include <netinet/ip.h>
97 #include <netinet/ip_icmp.h>
98 #endif /* INET */
99 #include <netinet/ip6.h>
100 #include <netinet6/in6_var.h>
101 #include <netinet6/ip6_var.h>
102 #include <netinet/in_pcb.h>
103 #include <netinet/icmp6.h>
104 #include <netinet6/scope6_var.h>
105 #include <netinet6/in6_ifattach.h>
106 #include <netinet6/nd6.h>
107
108 #ifdef IPSEC
109 #include <netipsec/ipsec.h>
110 #include <netinet6/ip6_ipsec.h>
111 #include <netipsec/ipsec6.h>
112 #endif /* IPSEC */
113
114 #include <netinet6/ip6protosw.h>
115
116 extern struct domain inet6domain;
117
118 u_char ip6_protox[IPPROTO_MAX];
119 VNET_DEFINE(struct in6_ifaddrhead, in6_ifaddrhead);
120
121 static struct netisr_handler ip6_nh = {
122         .nh_name = "ip6",
123         .nh_handler = ip6_input,
124         .nh_proto = NETISR_IPV6,
125         .nh_policy = NETISR_POLICY_FLOW,
126 };
127
128 VNET_DECLARE(struct callout, in6_tmpaddrtimer_ch);
129 #define V_in6_tmpaddrtimer_ch           VNET(in6_tmpaddrtimer_ch)
130
131 VNET_DEFINE(struct pfil_head, inet6_pfil_hook);
132
133 VNET_DEFINE(struct ip6stat, ip6stat);
134
135 struct rwlock in6_ifaddr_lock;
136 RW_SYSINIT(in6_ifaddr_lock, &in6_ifaddr_lock, "in6_ifaddr_lock");
137
138 static void ip6_init2(void *);
139 static struct ip6aux *ip6_setdstifaddr(struct mbuf *, struct in6_ifaddr *);
140 static int ip6_hopopts_input(u_int32_t *, u_int32_t *, struct mbuf **, int *);
141 #ifdef PULLDOWN_TEST
142 static struct mbuf *ip6_pullexthdr(struct mbuf *, size_t, int);
143 #endif
144
145 /*
146  * IP6 initialization: fill in IP6 protocol switch table.
147  * All protocols not implemented in kernel go to raw IP6 protocol handler.
148  */
149 void
150 ip6_init(void)
151 {
152         struct ip6protosw *pr;
153         int i;
154
155         TUNABLE_INT_FETCH("net.inet6.ip6.auto_linklocal",
156             &V_ip6_auto_linklocal);
157
158         TAILQ_INIT(&V_in6_ifaddrhead);
159
160         /* Initialize packet filter hooks. */
161         V_inet6_pfil_hook.ph_type = PFIL_TYPE_AF;
162         V_inet6_pfil_hook.ph_af = AF_INET6;
163         if ((i = pfil_head_register(&V_inet6_pfil_hook)) != 0)
164                 printf("%s: WARNING: unable to register pfil hook, "
165                         "error %d\n", __func__, i);
166
167         scope6_init();
168         addrsel_policy_init();
169         nd6_init();
170         frag6_init();
171
172         V_ip6_desync_factor = arc4random() % MAX_TEMP_DESYNC_FACTOR;
173
174         /* Skip global initialization stuff for non-default instances. */
175         if (!IS_DEFAULT_VNET(curvnet))
176                 return;
177
178 #ifdef DIAGNOSTIC
179         if (sizeof(struct protosw) != sizeof(struct ip6protosw))
180                 panic("sizeof(protosw) != sizeof(ip6protosw)");
181 #endif
182         pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
183         if (pr == NULL)
184                 panic("ip6_init");
185
186         /* Initialize the entire ip6_protox[] array to IPPROTO_RAW. */
187         for (i = 0; i < IPPROTO_MAX; i++)
188                 ip6_protox[i] = pr - inet6sw;
189         /*
190          * Cycle through IP protocols and put them into the appropriate place
191          * in ip6_protox[].
192          */
193         for (pr = (struct ip6protosw *)inet6domain.dom_protosw;
194             pr < (struct ip6protosw *)inet6domain.dom_protoswNPROTOSW; pr++)
195                 if (pr->pr_domain->dom_family == PF_INET6 &&
196                     pr->pr_protocol && pr->pr_protocol != IPPROTO_RAW) {
197                         /* Be careful to only index valid IP protocols. */
198                         if (pr->pr_protocol < IPPROTO_MAX)
199                                 ip6_protox[pr->pr_protocol] = pr - inet6sw;
200                 }
201
202         netisr_register(&ip6_nh);
203 }
204
205 /*
206  * The protocol to be inserted into ip6_protox[] must be already registered
207  * in inet6sw[], either statically or through pf_proto_register().
208  */
209 int
210 ip6proto_register(short ip6proto)
211 {
212         struct ip6protosw *pr;
213
214         /* Sanity checks. */
215         if (ip6proto <= 0 || ip6proto >= IPPROTO_MAX)
216                 return (EPROTONOSUPPORT);
217
218         /*
219          * The protocol slot must not be occupied by another protocol
220          * already.  An index pointing to IPPROTO_RAW is unused.
221          */
222         pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
223         if (pr == NULL)
224                 return (EPFNOSUPPORT);
225         if (ip6_protox[ip6proto] != pr - inet6sw)       /* IPPROTO_RAW */
226                 return (EEXIST);
227
228         /*
229          * Find the protocol position in inet6sw[] and set the index.
230          */
231         for (pr = (struct ip6protosw *)inet6domain.dom_protosw;
232             pr < (struct ip6protosw *)inet6domain.dom_protoswNPROTOSW; pr++) {
233                 if (pr->pr_domain->dom_family == PF_INET6 &&
234                     pr->pr_protocol && pr->pr_protocol == ip6proto) {
235                         ip6_protox[pr->pr_protocol] = pr - inet6sw;
236                         return (0);
237                 }
238         }
239         return (EPROTONOSUPPORT);
240 }
241
242 int
243 ip6proto_unregister(short ip6proto)
244 {
245         struct ip6protosw *pr;
246
247         /* Sanity checks. */
248         if (ip6proto <= 0 || ip6proto >= IPPROTO_MAX)
249                 return (EPROTONOSUPPORT);
250
251         /* Check if the protocol was indeed registered. */
252         pr = (struct ip6protosw *)pffindproto(PF_INET6, IPPROTO_RAW, SOCK_RAW);
253         if (pr == NULL)
254                 return (EPFNOSUPPORT);
255         if (ip6_protox[ip6proto] == pr - inet6sw)       /* IPPROTO_RAW */
256                 return (ENOENT);
257
258         /* Reset the protocol slot to IPPROTO_RAW. */
259         ip6_protox[ip6proto] = pr - inet6sw;
260         return (0);
261 }
262
263 #ifdef VIMAGE
264 void
265 ip6_destroy()
266 {
267
268         nd6_destroy();
269         callout_drain(&V_in6_tmpaddrtimer_ch);
270 }
271 #endif
272
273 static int
274 ip6_init2_vnet(const void *unused __unused)
275 {
276
277         /* nd6_timer_init */
278         callout_init(&V_nd6_timer_ch, 0);
279         callout_reset(&V_nd6_timer_ch, hz, nd6_timer, curvnet);
280
281         /* timer for regeneranation of temporary addresses randomize ID */
282         callout_init(&V_in6_tmpaddrtimer_ch, 0);
283         callout_reset(&V_in6_tmpaddrtimer_ch,
284                       (V_ip6_temp_preferred_lifetime - V_ip6_desync_factor -
285                        V_ip6_temp_regen_advance) * hz,
286                       in6_tmpaddrtimer, curvnet);
287
288         return (0);
289 }
290
291 static void
292 ip6_init2(void *dummy)
293 {
294
295         ip6_init2_vnet(NULL);
296 }
297
298 /* cheat */
299 /* This must be after route_init(), which is now SI_ORDER_THIRD */
300 SYSINIT(netinet6init2, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, ip6_init2, NULL);
301
302 void
303 ip6_input(struct mbuf *m)
304 {
305         struct ip6_hdr *ip6;
306         int off = sizeof(struct ip6_hdr), nest;
307         u_int32_t plen;
308         u_int32_t rtalert = ~0;
309         int nxt, ours = 0;
310         struct ifnet *deliverifp = NULL, *ifp = NULL;
311         struct in6_addr odst;
312         struct route_in6 rin6;
313         int srcrt = 0;
314         struct llentry *lle = NULL;
315         struct sockaddr_in6 dst6, *dst;
316
317         bzero(&rin6, sizeof(struct route_in6));
318 #ifdef IPSEC
319         /*
320          * should the inner packet be considered authentic?
321          * see comment in ah4_input().
322          * NB: m cannot be NULL when passed to the input routine
323          */
324
325         m->m_flags &= ~M_AUTHIPHDR;
326         m->m_flags &= ~M_AUTHIPDGM;
327
328 #endif /* IPSEC */
329
330         /*
331          * make sure we don't have onion peering information into m_tag.
332          */
333         ip6_delaux(m);
334
335         /*
336          * mbuf statistics
337          */
338         if (m->m_flags & M_EXT) {
339                 if (m->m_next)
340                         V_ip6stat.ip6s_mext2m++;
341                 else
342                         V_ip6stat.ip6s_mext1++;
343         } else {
344 #define M2MMAX  (sizeof(V_ip6stat.ip6s_m2m)/sizeof(V_ip6stat.ip6s_m2m[0]))
345                 if (m->m_next) {
346                         if (m->m_flags & M_LOOP) {
347                                 V_ip6stat.ip6s_m2m[V_loif->if_index]++;
348                         } else if (m->m_pkthdr.rcvif->if_index < M2MMAX)
349                                 V_ip6stat.ip6s_m2m[m->m_pkthdr.rcvif->if_index]++;
350                         else
351                                 V_ip6stat.ip6s_m2m[0]++;
352                 } else
353                         V_ip6stat.ip6s_m1++;
354 #undef M2MMAX
355         }
356
357         /* drop the packet if IPv6 operation is disabled on the IF */
358         if ((ND_IFINFO(m->m_pkthdr.rcvif)->flags & ND6_IFF_IFDISABLED)) {
359                 m_freem(m);
360                 return;
361         }
362
363         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_receive);
364         V_ip6stat.ip6s_total++;
365
366 #ifndef PULLDOWN_TEST
367         /*
368          * L2 bridge code and some other code can return mbuf chain
369          * that does not conform to KAME requirement.  too bad.
370          * XXX: fails to join if interface MTU > MCLBYTES.  jumbogram?
371          */
372         if (m && m->m_next != NULL && m->m_pkthdr.len < MCLBYTES) {
373                 struct mbuf *n;
374
375                 MGETHDR(n, M_DONTWAIT, MT_HEADER);
376                 if (n)
377                         M_MOVE_PKTHDR(n, m);
378                 if (n && n->m_pkthdr.len > MHLEN) {
379                         MCLGET(n, M_DONTWAIT);
380                         if ((n->m_flags & M_EXT) == 0) {
381                                 m_freem(n);
382                                 n = NULL;
383                         }
384                 }
385                 if (n == NULL) {
386                         m_freem(m);
387                         return; /* ENOBUFS */
388                 }
389
390                 m_copydata(m, 0, n->m_pkthdr.len, mtod(n, caddr_t));
391                 n->m_len = n->m_pkthdr.len;
392                 m_freem(m);
393                 m = n;
394         }
395         IP6_EXTHDR_CHECK(m, 0, sizeof(struct ip6_hdr), /* nothing */);
396 #endif
397
398         if (m->m_len < sizeof(struct ip6_hdr)) {
399                 struct ifnet *inifp;
400                 inifp = m->m_pkthdr.rcvif;
401                 if ((m = m_pullup(m, sizeof(struct ip6_hdr))) == NULL) {
402                         V_ip6stat.ip6s_toosmall++;
403                         in6_ifstat_inc(inifp, ifs6_in_hdrerr);
404                         return;
405                 }
406         }
407
408         ip6 = mtod(m, struct ip6_hdr *);
409
410         if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
411                 V_ip6stat.ip6s_badvers++;
412                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
413                 goto bad;
414         }
415
416         V_ip6stat.ip6s_nxthist[ip6->ip6_nxt]++;
417
418         /*
419          * Check against address spoofing/corruption.
420          */
421         if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src) ||
422             IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst)) {
423                 /*
424                  * XXX: "badscope" is not very suitable for a multicast source.
425                  */
426                 V_ip6stat.ip6s_badscope++;
427                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
428                 goto bad;
429         }
430         if (IN6_IS_ADDR_MC_INTFACELOCAL(&ip6->ip6_dst) &&
431             !(m->m_flags & M_LOOP)) {
432                 /*
433                  * In this case, the packet should come from the loopback
434                  * interface.  However, we cannot just check the if_flags,
435                  * because ip6_mloopback() passes the "actual" interface
436                  * as the outgoing/incoming interface.
437                  */
438                 V_ip6stat.ip6s_badscope++;
439                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
440                 goto bad;
441         }
442
443 #ifdef ALTQ
444         if (altq_input != NULL && (*altq_input)(m, AF_INET6) == 0) {
445                 /* packet is dropped by traffic conditioner */
446                 return;
447         }
448 #endif
449         /*
450          * The following check is not documented in specs.  A malicious
451          * party may be able to use IPv4 mapped addr to confuse tcp/udp stack
452          * and bypass security checks (act as if it was from 127.0.0.1 by using
453          * IPv6 src ::ffff:127.0.0.1).  Be cautious.
454          *
455          * This check chokes if we are in an SIIT cloud.  As none of BSDs
456          * support IPv4-less kernel compilation, we cannot support SIIT
457          * environment at all.  So, it makes more sense for us to reject any
458          * malicious packets for non-SIIT environment, than try to do a
459          * partial support for SIIT environment.
460          */
461         if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
462             IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
463                 V_ip6stat.ip6s_badscope++;
464                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
465                 goto bad;
466         }
467 #if 0
468         /*
469          * Reject packets with IPv4 compatible addresses (auto tunnel).
470          *
471          * The code forbids auto tunnel relay case in RFC1933 (the check is
472          * stronger than RFC1933).  We may want to re-enable it if mech-xx
473          * is revised to forbid relaying case.
474          */
475         if (IN6_IS_ADDR_V4COMPAT(&ip6->ip6_src) ||
476             IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
477                 V_ip6stat.ip6s_badscope++;
478                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
479                 goto bad;
480         }
481 #endif
482
483         /*
484          * Run through list of hooks for input packets.
485          *
486          * NB: Beware of the destination address changing
487          *     (e.g. by NAT rewriting).  When this happens,
488          *     tell ip6_forward to do the right thing.
489          */
490         odst = ip6->ip6_dst;
491
492         /* Jump over all PFIL processing if hooks are not active. */
493         if (!PFIL_HOOKED(&V_inet6_pfil_hook))
494                 goto passin;
495
496         if (pfil_run_hooks(&V_inet6_pfil_hook, &m,
497             m->m_pkthdr.rcvif, PFIL_IN, NULL))
498                 return;
499         if (m == NULL)                  /* consumed by filter */
500                 return;
501         ip6 = mtod(m, struct ip6_hdr *);
502         srcrt = !IN6_ARE_ADDR_EQUAL(&odst, &ip6->ip6_dst);
503
504 passin:
505         /*
506          * Disambiguate address scope zones (if there is ambiguity).
507          * We first make sure that the original source or destination address
508          * is not in our internal form for scoped addresses.  Such addresses
509          * are not necessarily invalid spec-wise, but we cannot accept them due
510          * to the usage conflict.
511          * in6_setscope() then also checks and rejects the cases where src or
512          * dst are the loopback address and the receiving interface
513          * is not loopback.
514          */
515         if (in6_clearscope(&ip6->ip6_src) || in6_clearscope(&ip6->ip6_dst)) {
516                 V_ip6stat.ip6s_badscope++; /* XXX */
517                 goto bad;
518         }
519         if (in6_setscope(&ip6->ip6_src, m->m_pkthdr.rcvif, NULL) ||
520             in6_setscope(&ip6->ip6_dst, m->m_pkthdr.rcvif, NULL)) {
521                 V_ip6stat.ip6s_badscope++;
522                 goto bad;
523         }
524
525         /*
526          * Multicast check. Assume packet is for us to avoid
527          * prematurely taking locks.
528          */
529         if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
530                 ours = 1;
531                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_mcast);
532                 deliverifp = m->m_pkthdr.rcvif;
533                 goto hbhcheck;
534         }
535
536         /*
537          *  Unicast check
538          */
539
540         bzero(&dst6, sizeof(dst6));
541         dst6.sin6_family = AF_INET6;
542         dst6.sin6_len = sizeof(struct sockaddr_in6);
543         dst6.sin6_addr = ip6->ip6_dst;
544         ifp = m->m_pkthdr.rcvif;
545         IF_AFDATA_RLOCK(ifp);
546         lle = lla_lookup(LLTABLE6(ifp), 0,
547              (struct sockaddr *)&dst6);
548         IF_AFDATA_RUNLOCK(ifp);
549         if ((lle != NULL) && (lle->la_flags & LLE_IFADDR)) {
550                 struct ifaddr *ifa;
551                 struct in6_ifaddr *ia6;
552                 int bad;
553
554                 bad = 1;
555 #define sa_equal(a1, a2)                                                \
556         (bcmp((a1), (a2), ((a1))->sin6_len) == 0)
557                 IF_ADDR_RLOCK(ifp);
558                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
559                         if (ifa->ifa_addr->sa_family != dst6.sin6_family)
560                                 continue;
561                         if (sa_equal(&dst6, ifa->ifa_addr))
562                                 break;
563                 }
564                 KASSERT(ifa != NULL, ("%s: ifa not found for lle %p",
565                     __func__, lle));
566 #undef sa_equal
567
568                 ia6 = (struct in6_ifaddr *)ifa;
569                 if (!(ia6->ia6_flags & IN6_IFF_NOTREADY)) {
570                         /* Count the packet in the ip address stats */
571                         ia6->ia_ifa.if_ipackets++;
572                         ia6->ia_ifa.if_ibytes += m->m_pkthdr.len;
573
574                         /*
575                          * record address information into m_tag.
576                          */
577                         (void)ip6_setdstifaddr(m, ia6);
578
579                         bad = 0;
580                 } else {
581                         char ip6bufs[INET6_ADDRSTRLEN];
582                         char ip6bufd[INET6_ADDRSTRLEN];
583                         /* address is not ready, so discard the packet. */
584                         nd6log((LOG_INFO,
585                             "ip6_input: packet to an unready address %s->%s\n",
586                             ip6_sprintf(ip6bufs, &ip6->ip6_src),
587                             ip6_sprintf(ip6bufd, &ip6->ip6_dst)));
588                 }
589                 IF_ADDR_RUNLOCK(ifp);
590                 LLE_RUNLOCK(lle);
591                 if (bad)
592                         goto bad;
593                 else {
594                         ours = 1;
595                         deliverifp = ifp;
596                         goto hbhcheck;
597                 }
598         }
599         if (lle != NULL)
600                 LLE_RUNLOCK(lle);
601
602         dst = &rin6.ro_dst;
603         dst->sin6_len = sizeof(struct sockaddr_in6);
604         dst->sin6_family = AF_INET6;
605         dst->sin6_addr = ip6->ip6_dst;
606         rin6.ro_rt = in6_rtalloc1((struct sockaddr *)dst, 0, 0, M_GETFIB(m));
607         if (rin6.ro_rt)
608                 RT_UNLOCK(rin6.ro_rt);
609
610 #define rt6_key(r) ((struct sockaddr_in6 *)((r)->rt_nodes->rn_key))
611
612         /*
613          * Accept the packet if the forwarding interface to the destination
614          * according to the routing table is the loopback interface,
615          * unless the associated route has a gateway.
616          * Note that this approach causes to accept a packet if there is a
617          * route to the loopback interface for the destination of the packet.
618          * But we think it's even useful in some situations, e.g. when using
619          * a special daemon which wants to intercept the packet.
620          *
621          * XXX: some OSes automatically make a cloned route for the destination
622          * of an outgoing packet.  If the outgoing interface of the packet
623          * is a loopback one, the kernel would consider the packet to be
624          * accepted, even if we have no such address assinged on the interface.
625          * We check the cloned flag of the route entry to reject such cases,
626          * assuming that route entries for our own addresses are not made by
627          * cloning (it should be true because in6_addloop explicitly installs
628          * the host route).  However, we might have to do an explicit check
629          * while it would be less efficient.  Or, should we rather install a
630          * reject route for such a case?
631          */
632         if (rin6.ro_rt &&
633             (rin6.ro_rt->rt_flags &
634              (RTF_HOST|RTF_GATEWAY)) == RTF_HOST &&
635 #ifdef RTF_WASCLONED
636             !(rin6.ro_rt->rt_flags & RTF_WASCLONED) &&
637 #endif
638 #ifdef RTF_CLONED
639             !(rin6.ro_rt->rt_flags & RTF_CLONED) &&
640 #endif
641 #if 0
642             /*
643              * The check below is redundant since the comparison of
644              * the destination and the key of the rtentry has
645              * already done through looking up the routing table.
646              */
647             IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst,
648             &rt6_key(rin6.ro_rt)->sin6_addr)
649 #endif
650             rin6.ro_rt->rt_ifp->if_type == IFT_LOOP) {
651                 int free_ia6 = 0;
652                 struct in6_ifaddr *ia6;
653
654                 /*
655                  * found the loopback route to the interface address
656                  */
657                 if (rin6.ro_rt->rt_gateway->sa_family == AF_LINK) {
658                         struct sockaddr_in6 dest6;
659
660                         bzero(&dest6, sizeof(dest6));
661                         dest6.sin6_family = AF_INET6;
662                         dest6.sin6_len = sizeof(dest6);
663                         dest6.sin6_addr = ip6->ip6_dst;
664                         ia6 = (struct in6_ifaddr *)
665                             ifa_ifwithaddr((struct sockaddr *)&dest6);
666                         if (ia6 == NULL)
667                                 goto bad;
668                         free_ia6 = 1;
669                 }
670                 else
671                         ia6 = (struct in6_ifaddr *)rin6.ro_rt->rt_ifa;
672
673                 /*
674                  * record address information into m_tag.
675                  */
676                 (void)ip6_setdstifaddr(m, ia6);
677
678                 /*
679                  * packets to a tentative, duplicated, or somehow invalid
680                  * address must not be accepted.
681                  */
682                 if (!(ia6->ia6_flags & IN6_IFF_NOTREADY)) {
683                         /* this address is ready */
684                         ours = 1;
685                         deliverifp = ia6->ia_ifp;       /* correct? */
686                         /* Count the packet in the ip address stats */
687                         ia6->ia_ifa.if_ipackets++;
688                         ia6->ia_ifa.if_ibytes += m->m_pkthdr.len;
689                         if (ia6 != NULL && free_ia6 != 0)
690                                 ifa_free(&ia6->ia_ifa);
691                         goto hbhcheck;
692                 } else {
693                         char ip6bufs[INET6_ADDRSTRLEN];
694                         char ip6bufd[INET6_ADDRSTRLEN];
695                         /* address is not ready, so discard the packet. */
696                         nd6log((LOG_INFO,
697                             "ip6_input: packet to an unready address %s->%s\n",
698                             ip6_sprintf(ip6bufs, &ip6->ip6_src),
699                             ip6_sprintf(ip6bufd, &ip6->ip6_dst)));
700
701                         if (ia6 != NULL && free_ia6 != 0)
702                                 ifa_free(&ia6->ia_ifa);
703                         goto bad;
704                 }
705         }
706
707         /*
708          * FAITH (Firewall Aided Internet Translator)
709          */
710         if (V_ip6_keepfaith) {
711                 if (rin6.ro_rt && rin6.ro_rt->rt_ifp &&
712                     rin6.ro_rt->rt_ifp->if_type == IFT_FAITH) {
713                         /* XXX do we need more sanity checks? */
714                         ours = 1;
715                         deliverifp = rin6.ro_rt->rt_ifp; /* faith */
716                         goto hbhcheck;
717                 }
718         }
719
720         /*
721          * Now there is no reason to process the packet if it's not our own
722          * and we're not a router.
723          */
724         if (!V_ip6_forwarding) {
725                 V_ip6stat.ip6s_cantforward++;
726                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
727                 goto bad;
728         }
729
730   hbhcheck:
731         /*
732          * record address information into m_tag, if we don't have one yet.
733          * note that we are unable to record it, if the address is not listed
734          * as our interface address (e.g. multicast addresses, addresses
735          * within FAITH prefixes and such).
736          */
737         if (deliverifp) {
738                 struct in6_ifaddr *ia6;
739
740                 if ((ia6 = ip6_getdstifaddr(m)) != NULL) {
741                         ifa_free(&ia6->ia_ifa);
742                 } else {
743                         ia6 = in6_ifawithifp(deliverifp, &ip6->ip6_dst);
744                         if (ia6) {
745                                 if (!ip6_setdstifaddr(m, ia6)) {
746                                         /*
747                                          * XXX maybe we should drop the packet here,
748                                          * as we could not provide enough information
749                                          * to the upper layers.
750                                          */
751                                 }
752                                 ifa_free(&ia6->ia_ifa);
753                         }
754                 }
755         }
756
757         /*
758          * Process Hop-by-Hop options header if it's contained.
759          * m may be modified in ip6_hopopts_input().
760          * If a JumboPayload option is included, plen will also be modified.
761          */
762         plen = (u_int32_t)ntohs(ip6->ip6_plen);
763         if (ip6->ip6_nxt == IPPROTO_HOPOPTS) {
764                 struct ip6_hbh *hbh;
765
766                 if (ip6_hopopts_input(&plen, &rtalert, &m, &off)) {
767 #if 0   /*touches NULL pointer*/
768                         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
769 #endif
770                         goto out;       /* m have already been freed */
771                 }
772
773                 /* adjust pointer */
774                 ip6 = mtod(m, struct ip6_hdr *);
775
776                 /*
777                  * if the payload length field is 0 and the next header field
778                  * indicates Hop-by-Hop Options header, then a Jumbo Payload
779                  * option MUST be included.
780                  */
781                 if (ip6->ip6_plen == 0 && plen == 0) {
782                         /*
783                          * Note that if a valid jumbo payload option is
784                          * contained, ip6_hopopts_input() must set a valid
785                          * (non-zero) payload length to the variable plen.
786                          */
787                         V_ip6stat.ip6s_badoptions++;
788                         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
789                         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_hdrerr);
790                         icmp6_error(m, ICMP6_PARAM_PROB,
791                                     ICMP6_PARAMPROB_HEADER,
792                                     (caddr_t)&ip6->ip6_plen - (caddr_t)ip6);
793                         goto out;
794                 }
795 #ifndef PULLDOWN_TEST
796                 /* ip6_hopopts_input() ensures that mbuf is contiguous */
797                 hbh = (struct ip6_hbh *)(ip6 + 1);
798 #else
799                 IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
800                         sizeof(struct ip6_hbh));
801                 if (hbh == NULL) {
802                         V_ip6stat.ip6s_tooshort++;
803                         goto out;
804                 }
805 #endif
806                 nxt = hbh->ip6h_nxt;
807
808                 /*
809                  * If we are acting as a router and the packet contains a
810                  * router alert option, see if we know the option value.
811                  * Currently, we only support the option value for MLD, in which
812                  * case we should pass the packet to the multicast routing
813                  * daemon.
814                  */
815                 if (rtalert != ~0) {
816                         switch (rtalert) {
817                         case IP6OPT_RTALERT_MLD:
818                                 if (V_ip6_forwarding)
819                                         ours = 1;
820                                 break;
821                         default:
822                                 /*
823                                  * RFC2711 requires unrecognized values must be
824                                  * silently ignored.
825                                  */
826                                 break;
827                         }
828                 }
829         } else
830                 nxt = ip6->ip6_nxt;
831
832         /*
833          * Check that the amount of data in the buffers
834          * is as at least much as the IPv6 header would have us expect.
835          * Trim mbufs if longer than we expect.
836          * Drop packet if shorter than we expect.
837          */
838         if (m->m_pkthdr.len - sizeof(struct ip6_hdr) < plen) {
839                 V_ip6stat.ip6s_tooshort++;
840                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_truncated);
841                 goto bad;
842         }
843         if (m->m_pkthdr.len > sizeof(struct ip6_hdr) + plen) {
844                 if (m->m_len == m->m_pkthdr.len) {
845                         m->m_len = sizeof(struct ip6_hdr) + plen;
846                         m->m_pkthdr.len = sizeof(struct ip6_hdr) + plen;
847                 } else
848                         m_adj(m, sizeof(struct ip6_hdr) + plen - m->m_pkthdr.len);
849         }
850
851         /*
852          * Forward if desirable.
853          */
854         if (V_ip6_mrouter &&
855             IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
856                 /*
857                  * If we are acting as a multicast router, all
858                  * incoming multicast packets are passed to the
859                  * kernel-level multicast forwarding function.
860                  * The packet is returned (relatively) intact; if
861                  * ip6_mforward() returns a non-zero value, the packet
862                  * must be discarded, else it may be accepted below.
863                  *
864                  * XXX TODO: Check hlim and multicast scope here to avoid
865                  * unnecessarily calling into ip6_mforward().
866                  */
867                 if (ip6_mforward &&
868                     ip6_mforward(ip6, m->m_pkthdr.rcvif, m)) {
869                         IP6STAT_INC(ip6s_cantforward);
870                         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_discard);
871                         goto bad;
872                 }
873         } else if (!ours) {
874                 ip6_forward(m, srcrt);
875                 goto out;
876         }
877
878         ip6 = mtod(m, struct ip6_hdr *);
879
880         /*
881          * Malicious party may be able to use IPv4 mapped addr to confuse
882          * tcp/udp stack and bypass security checks (act as if it was from
883          * 127.0.0.1 by using IPv6 src ::ffff:127.0.0.1).  Be cautious.
884          *
885          * For SIIT end node behavior, you may want to disable the check.
886          * However, you will  become vulnerable to attacks using IPv4 mapped
887          * source.
888          */
889         if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
890             IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
891                 V_ip6stat.ip6s_badscope++;
892                 in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
893                 goto bad;
894         }
895
896         /*
897          * Tell launch routine the next header
898          */
899         V_ip6stat.ip6s_delivered++;
900         in6_ifstat_inc(deliverifp, ifs6_in_deliver);
901         nest = 0;
902
903         while (nxt != IPPROTO_DONE) {
904                 if (V_ip6_hdrnestlimit && (++nest > V_ip6_hdrnestlimit)) {
905                         V_ip6stat.ip6s_toomanyhdr++;
906                         goto bad;
907                 }
908
909                 /*
910                  * protection against faulty packet - there should be
911                  * more sanity checks in header chain processing.
912                  */
913                 if (m->m_pkthdr.len < off) {
914                         V_ip6stat.ip6s_tooshort++;
915                         in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_truncated);
916                         goto bad;
917                 }
918
919 #ifdef IPSEC
920                 /*
921                  * enforce IPsec policy checking if we are seeing last header.
922                  * note that we do not visit this with protocols with pcb layer
923                  * code - like udp/tcp/raw ip.
924                  */
925                 if (ip6_ipsec_input(m, nxt))
926                         goto bad;
927 #endif /* IPSEC */
928
929                 /*
930                  * Use mbuf flags to propagate Router Alert option to
931                  * ICMPv6 layer, as hop-by-hop options have been stripped.
932                  */
933                 if (nxt == IPPROTO_ICMPV6 && rtalert != ~0)
934                         m->m_flags |= M_RTALERT_MLD;
935
936                 nxt = (*inet6sw[ip6_protox[nxt]].pr_input)(&m, &off, nxt);
937         }
938         goto out;
939 bad:
940         m_freem(m);
941 out:
942         if (rin6.ro_rt)
943                 RTFREE(rin6.ro_rt);
944 }
945
946 /*
947  * set/grab in6_ifaddr correspond to IPv6 destination address.
948  * XXX backward compatibility wrapper
949  *
950  * XXXRW: We should bump the refcount on ia6 before sticking it in the m_tag,
951  * and then bump it when the tag is copied, and release it when the tag is
952  * freed.  Unfortunately, m_tags don't support deep copies (yet), so instead
953  * we just bump the ia refcount when we receive it.  This should be fixed.
954  */
955 static struct ip6aux *
956 ip6_setdstifaddr(struct mbuf *m, struct in6_ifaddr *ia6)
957 {
958         struct ip6aux *ip6a;
959
960         ip6a = ip6_addaux(m);
961         if (ip6a)
962                 ip6a->ip6a_dstia6 = ia6;
963         return ip6a;    /* NULL if failed to set */
964 }
965
966 struct in6_ifaddr *
967 ip6_getdstifaddr(struct mbuf *m)
968 {
969         struct ip6aux *ip6a;
970         struct in6_ifaddr *ia;
971
972         ip6a = ip6_findaux(m);
973         if (ip6a) {
974                 ia = ip6a->ip6a_dstia6;
975                 ifa_ref(&ia->ia_ifa);
976                 return ia;
977         } else
978                 return NULL;
979 }
980
981 /*
982  * Hop-by-Hop options header processing. If a valid jumbo payload option is
983  * included, the real payload length will be stored in plenp.
984  *
985  * rtalertp - XXX: should be stored more smart way
986  */
987 static int
988 ip6_hopopts_input(u_int32_t *plenp, u_int32_t *rtalertp,
989     struct mbuf **mp, int *offp)
990 {
991         struct mbuf *m = *mp;
992         int off = *offp, hbhlen;
993         struct ip6_hbh *hbh;
994         u_int8_t *opt;
995
996         /* validation of the length of the header */
997 #ifndef PULLDOWN_TEST
998         IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), -1);
999         hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off);
1000         hbhlen = (hbh->ip6h_len + 1) << 3;
1001
1002         IP6_EXTHDR_CHECK(m, off, hbhlen, -1);
1003         hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off);
1004 #else
1005         IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m,
1006                 sizeof(struct ip6_hdr), sizeof(struct ip6_hbh));
1007         if (hbh == NULL) {
1008                 V_ip6stat.ip6s_tooshort++;
1009                 return -1;
1010         }
1011         hbhlen = (hbh->ip6h_len + 1) << 3;
1012         IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
1013                 hbhlen);
1014         if (hbh == NULL) {
1015                 V_ip6stat.ip6s_tooshort++;
1016                 return -1;
1017         }
1018 #endif
1019         off += hbhlen;
1020         hbhlen -= sizeof(struct ip6_hbh);
1021         opt = (u_int8_t *)hbh + sizeof(struct ip6_hbh);
1022
1023         if (ip6_process_hopopts(m, (u_int8_t *)hbh + sizeof(struct ip6_hbh),
1024                                 hbhlen, rtalertp, plenp) < 0)
1025                 return (-1);
1026
1027         *offp = off;
1028         *mp = m;
1029         return (0);
1030 }
1031
1032 /*
1033  * Search header for all Hop-by-hop options and process each option.
1034  * This function is separate from ip6_hopopts_input() in order to
1035  * handle a case where the sending node itself process its hop-by-hop
1036  * options header. In such a case, the function is called from ip6_output().
1037  *
1038  * The function assumes that hbh header is located right after the IPv6 header
1039  * (RFC2460 p7), opthead is pointer into data content in m, and opthead to
1040  * opthead + hbhlen is located in continuous memory region.
1041  */
1042 int
1043 ip6_process_hopopts(struct mbuf *m, u_int8_t *opthead, int hbhlen,
1044     u_int32_t *rtalertp, u_int32_t *plenp)
1045 {
1046         struct ip6_hdr *ip6;
1047         int optlen = 0;
1048         u_int8_t *opt = opthead;
1049         u_int16_t rtalert_val;
1050         u_int32_t jumboplen;
1051         const int erroff = sizeof(struct ip6_hdr) + sizeof(struct ip6_hbh);
1052
1053         for (; hbhlen > 0; hbhlen -= optlen, opt += optlen) {
1054                 switch (*opt) {
1055                 case IP6OPT_PAD1:
1056                         optlen = 1;
1057                         break;
1058                 case IP6OPT_PADN:
1059                         if (hbhlen < IP6OPT_MINLEN) {
1060                                 V_ip6stat.ip6s_toosmall++;
1061                                 goto bad;
1062                         }
1063                         optlen = *(opt + 1) + 2;
1064                         break;
1065                 case IP6OPT_ROUTER_ALERT:
1066                         /* XXX may need check for alignment */
1067                         if (hbhlen < IP6OPT_RTALERT_LEN) {
1068                                 V_ip6stat.ip6s_toosmall++;
1069                                 goto bad;
1070                         }
1071                         if (*(opt + 1) != IP6OPT_RTALERT_LEN - 2) {
1072                                 /* XXX stat */
1073                                 icmp6_error(m, ICMP6_PARAM_PROB,
1074                                     ICMP6_PARAMPROB_HEADER,
1075                                     erroff + opt + 1 - opthead);
1076                                 return (-1);
1077                         }
1078                         optlen = IP6OPT_RTALERT_LEN;
1079                         bcopy((caddr_t)(opt + 2), (caddr_t)&rtalert_val, 2);
1080                         *rtalertp = ntohs(rtalert_val);
1081                         break;
1082                 case IP6OPT_JUMBO:
1083                         /* XXX may need check for alignment */
1084                         if (hbhlen < IP6OPT_JUMBO_LEN) {
1085                                 V_ip6stat.ip6s_toosmall++;
1086                                 goto bad;
1087                         }
1088                         if (*(opt + 1) != IP6OPT_JUMBO_LEN - 2) {
1089                                 /* XXX stat */
1090                                 icmp6_error(m, ICMP6_PARAM_PROB,
1091                                     ICMP6_PARAMPROB_HEADER,
1092                                     erroff + opt + 1 - opthead);
1093                                 return (-1);
1094                         }
1095                         optlen = IP6OPT_JUMBO_LEN;
1096
1097                         /*
1098                          * IPv6 packets that have non 0 payload length
1099                          * must not contain a jumbo payload option.
1100                          */
1101                         ip6 = mtod(m, struct ip6_hdr *);
1102                         if (ip6->ip6_plen) {
1103                                 V_ip6stat.ip6s_badoptions++;
1104                                 icmp6_error(m, ICMP6_PARAM_PROB,
1105                                     ICMP6_PARAMPROB_HEADER,
1106                                     erroff + opt - opthead);
1107                                 return (-1);
1108                         }
1109
1110                         /*
1111                          * We may see jumbolen in unaligned location, so
1112                          * we'd need to perform bcopy().
1113                          */
1114                         bcopy(opt + 2, &jumboplen, sizeof(jumboplen));
1115                         jumboplen = (u_int32_t)htonl(jumboplen);
1116
1117 #if 1
1118                         /*
1119                          * if there are multiple jumbo payload options,
1120                          * *plenp will be non-zero and the packet will be
1121                          * rejected.
1122                          * the behavior may need some debate in ipngwg -
1123                          * multiple options does not make sense, however,
1124                          * there's no explicit mention in specification.
1125                          */
1126                         if (*plenp != 0) {
1127                                 V_ip6stat.ip6s_badoptions++;
1128                                 icmp6_error(m, ICMP6_PARAM_PROB,
1129                                     ICMP6_PARAMPROB_HEADER,
1130                                     erroff + opt + 2 - opthead);
1131                                 return (-1);
1132                         }
1133 #endif
1134
1135                         /*
1136                          * jumbo payload length must be larger than 65535.
1137                          */
1138                         if (jumboplen <= IPV6_MAXPACKET) {
1139                                 V_ip6stat.ip6s_badoptions++;
1140                                 icmp6_error(m, ICMP6_PARAM_PROB,
1141                                     ICMP6_PARAMPROB_HEADER,
1142                                     erroff + opt + 2 - opthead);
1143                                 return (-1);
1144                         }
1145                         *plenp = jumboplen;
1146
1147                         break;
1148                 default:                /* unknown option */
1149                         if (hbhlen < IP6OPT_MINLEN) {
1150                                 V_ip6stat.ip6s_toosmall++;
1151                                 goto bad;
1152                         }
1153                         optlen = ip6_unknown_opt(opt, m,
1154                             erroff + opt - opthead);
1155                         if (optlen == -1)
1156                                 return (-1);
1157                         optlen += 2;
1158                         break;
1159                 }
1160         }
1161
1162         return (0);
1163
1164   bad:
1165         m_freem(m);
1166         return (-1);
1167 }
1168
1169 /*
1170  * Unknown option processing.
1171  * The third argument `off' is the offset from the IPv6 header to the option,
1172  * which is necessary if the IPv6 header the and option header and IPv6 header
1173  * is not continuous in order to return an ICMPv6 error.
1174  */
1175 int
1176 ip6_unknown_opt(u_int8_t *optp, struct mbuf *m, int off)
1177 {
1178         struct ip6_hdr *ip6;
1179
1180         switch (IP6OPT_TYPE(*optp)) {
1181         case IP6OPT_TYPE_SKIP: /* ignore the option */
1182                 return ((int)*(optp + 1));
1183         case IP6OPT_TYPE_DISCARD:       /* silently discard */
1184                 m_freem(m);
1185                 return (-1);
1186         case IP6OPT_TYPE_FORCEICMP: /* send ICMP even if multicasted */
1187                 V_ip6stat.ip6s_badoptions++;
1188                 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_OPTION, off);
1189                 return (-1);
1190         case IP6OPT_TYPE_ICMP: /* send ICMP if not multicasted */
1191                 V_ip6stat.ip6s_badoptions++;
1192                 ip6 = mtod(m, struct ip6_hdr *);
1193                 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
1194                     (m->m_flags & (M_BCAST|M_MCAST)))
1195                         m_freem(m);
1196                 else
1197                         icmp6_error(m, ICMP6_PARAM_PROB,
1198                                     ICMP6_PARAMPROB_OPTION, off);
1199                 return (-1);
1200         }
1201
1202         m_freem(m);             /* XXX: NOTREACHED */
1203         return (-1);
1204 }
1205
1206 /*
1207  * Create the "control" list for this pcb.
1208  * These functions will not modify mbuf chain at all.
1209  *
1210  * With KAME mbuf chain restriction:
1211  * The routine will be called from upper layer handlers like tcp6_input().
1212  * Thus the routine assumes that the caller (tcp6_input) have already
1213  * called IP6_EXTHDR_CHECK() and all the extension headers are located in the
1214  * very first mbuf on the mbuf chain.
1215  *
1216  * ip6_savecontrol_v4 will handle those options that are possible to be
1217  * set on a v4-mapped socket.
1218  * ip6_savecontrol will directly call ip6_savecontrol_v4 to handle those
1219  * options and handle the v6-only ones itself.
1220  */
1221 struct mbuf **
1222 ip6_savecontrol_v4(struct inpcb *inp, struct mbuf *m, struct mbuf **mp,
1223     int *v4only)
1224 {
1225         struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1226
1227 #ifdef SO_TIMESTAMP
1228         if ((inp->inp_socket->so_options & SO_TIMESTAMP) != 0) {
1229                 struct timeval tv;
1230
1231                 microtime(&tv);
1232                 *mp = sbcreatecontrol((caddr_t) &tv, sizeof(tv),
1233                     SCM_TIMESTAMP, SOL_SOCKET);
1234                 if (*mp)
1235                         mp = &(*mp)->m_next;
1236         }
1237 #endif
1238
1239 #define IS2292(inp, x, y)       (((inp)->inp_flags & IN6P_RFC2292) ? (x) : (y))
1240         /* RFC 2292 sec. 5 */
1241         if ((inp->inp_flags & IN6P_PKTINFO) != 0) {
1242                 struct in6_pktinfo pi6;
1243
1244                 if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1245 #ifdef INET
1246                         struct ip *ip;
1247
1248                         ip = mtod(m, struct ip *);
1249                         pi6.ipi6_addr.s6_addr32[0] = 0;
1250                         pi6.ipi6_addr.s6_addr32[1] = 0;
1251                         pi6.ipi6_addr.s6_addr32[2] = IPV6_ADDR_INT32_SMP;
1252                         pi6.ipi6_addr.s6_addr32[3] = ip->ip_dst.s_addr;
1253 #else
1254                         /* We won't hit this code */
1255                         bzero(&pi6.ipi6_addr, sizeof(struct in6_addr));
1256 #endif
1257                 } else {        
1258                         bcopy(&ip6->ip6_dst, &pi6.ipi6_addr, sizeof(struct in6_addr));
1259                         in6_clearscope(&pi6.ipi6_addr); /* XXX */
1260                 }
1261                 pi6.ipi6_ifindex =
1262                     (m && m->m_pkthdr.rcvif) ? m->m_pkthdr.rcvif->if_index : 0;
1263
1264                 *mp = sbcreatecontrol((caddr_t) &pi6,
1265                     sizeof(struct in6_pktinfo),
1266                     IS2292(inp, IPV6_2292PKTINFO, IPV6_PKTINFO), IPPROTO_IPV6);
1267                 if (*mp)
1268                         mp = &(*mp)->m_next;
1269         }
1270
1271         if ((inp->inp_flags & IN6P_HOPLIMIT) != 0) {
1272                 int hlim;
1273
1274                 if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1275 #ifdef INET
1276                         struct ip *ip;
1277
1278                         ip = mtod(m, struct ip *);
1279                         hlim = ip->ip_ttl;
1280 #else
1281                         /* We won't hit this code */
1282                         hlim = 0;
1283 #endif
1284                 } else {
1285                         hlim = ip6->ip6_hlim & 0xff;
1286                 }
1287                 *mp = sbcreatecontrol((caddr_t) &hlim, sizeof(int),
1288                     IS2292(inp, IPV6_2292HOPLIMIT, IPV6_HOPLIMIT),
1289                     IPPROTO_IPV6);
1290                 if (*mp)
1291                         mp = &(*mp)->m_next;
1292         }
1293
1294         if ((inp->inp_flags & IN6P_TCLASS) != 0) {
1295                 int tclass;
1296
1297                 if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1298 #ifdef INET
1299                         struct ip *ip;
1300
1301                         ip = mtod(m, struct ip *);
1302                         tclass = ip->ip_tos;
1303 #else
1304                         /* We won't hit this code */
1305                         tclass = 0;
1306 #endif
1307                 } else {
1308                         u_int32_t flowinfo;
1309
1310                         flowinfo = (u_int32_t)ntohl(ip6->ip6_flow & IPV6_FLOWINFO_MASK);
1311                         flowinfo >>= 20;
1312                         tclass = flowinfo & 0xff;
1313                 }
1314                 *mp = sbcreatecontrol((caddr_t) &tclass, sizeof(int),
1315                     IPV6_TCLASS, IPPROTO_IPV6);
1316                 if (*mp)
1317                         mp = &(*mp)->m_next;
1318         }
1319
1320         if (v4only != NULL) {
1321                 if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
1322                         *v4only = 1;
1323                 } else {
1324                         *v4only = 0;
1325                 }
1326         }
1327
1328         return (mp);
1329 }
1330
1331 void
1332 ip6_savecontrol(struct inpcb *in6p, struct mbuf *m, struct mbuf **mp)
1333 {
1334         struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1335         int v4only = 0;
1336
1337         mp = ip6_savecontrol_v4(in6p, m, mp, &v4only);
1338         if (v4only)
1339                 return;
1340
1341         /*
1342          * IPV6_HOPOPTS socket option.  Recall that we required super-user
1343          * privilege for the option (see ip6_ctloutput), but it might be too
1344          * strict, since there might be some hop-by-hop options which can be
1345          * returned to normal user.
1346          * See also RFC 2292 section 6 (or RFC 3542 section 8).
1347          */
1348         if ((in6p->inp_flags & IN6P_HOPOPTS) != 0) {
1349                 /*
1350                  * Check if a hop-by-hop options header is contatined in the
1351                  * received packet, and if so, store the options as ancillary
1352                  * data. Note that a hop-by-hop options header must be
1353                  * just after the IPv6 header, which is assured through the
1354                  * IPv6 input processing.
1355                  */
1356                 if (ip6->ip6_nxt == IPPROTO_HOPOPTS) {
1357                         struct ip6_hbh *hbh;
1358                         int hbhlen = 0;
1359 #ifdef PULLDOWN_TEST
1360                         struct mbuf *ext;
1361 #endif
1362
1363 #ifndef PULLDOWN_TEST
1364                         hbh = (struct ip6_hbh *)(ip6 + 1);
1365                         hbhlen = (hbh->ip6h_len + 1) << 3;
1366 #else
1367                         ext = ip6_pullexthdr(m, sizeof(struct ip6_hdr),
1368                             ip6->ip6_nxt);
1369                         if (ext == NULL) {
1370                                 V_ip6stat.ip6s_tooshort++;
1371                                 return;
1372                         }
1373                         hbh = mtod(ext, struct ip6_hbh *);
1374                         hbhlen = (hbh->ip6h_len + 1) << 3;
1375                         if (hbhlen != ext->m_len) {
1376                                 m_freem(ext);
1377                                 V_ip6stat.ip6s_tooshort++;
1378                                 return;
1379                         }
1380 #endif
1381
1382                         /*
1383                          * XXX: We copy the whole header even if a
1384                          * jumbo payload option is included, the option which
1385                          * is to be removed before returning according to
1386                          * RFC2292.
1387                          * Note: this constraint is removed in RFC3542
1388                          */
1389                         *mp = sbcreatecontrol((caddr_t)hbh, hbhlen,
1390                             IS2292(in6p, IPV6_2292HOPOPTS, IPV6_HOPOPTS),
1391                             IPPROTO_IPV6);
1392                         if (*mp)
1393                                 mp = &(*mp)->m_next;
1394 #ifdef PULLDOWN_TEST
1395                         m_freem(ext);
1396 #endif
1397                 }
1398         }
1399
1400         if ((in6p->inp_flags & (IN6P_RTHDR | IN6P_DSTOPTS)) != 0) {
1401                 int nxt = ip6->ip6_nxt, off = sizeof(struct ip6_hdr);
1402
1403                 /*
1404                  * Search for destination options headers or routing
1405                  * header(s) through the header chain, and stores each
1406                  * header as ancillary data.
1407                  * Note that the order of the headers remains in
1408                  * the chain of ancillary data.
1409                  */
1410                 while (1) {     /* is explicit loop prevention necessary? */
1411                         struct ip6_ext *ip6e = NULL;
1412                         int elen;
1413 #ifdef PULLDOWN_TEST
1414                         struct mbuf *ext = NULL;
1415 #endif
1416
1417                         /*
1418                          * if it is not an extension header, don't try to
1419                          * pull it from the chain.
1420                          */
1421                         switch (nxt) {
1422                         case IPPROTO_DSTOPTS:
1423                         case IPPROTO_ROUTING:
1424                         case IPPROTO_HOPOPTS:
1425                         case IPPROTO_AH: /* is it possible? */
1426                                 break;
1427                         default:
1428                                 goto loopend;
1429                         }
1430
1431 #ifndef PULLDOWN_TEST
1432                         if (off + sizeof(*ip6e) > m->m_len)
1433                                 goto loopend;
1434                         ip6e = (struct ip6_ext *)(mtod(m, caddr_t) + off);
1435                         if (nxt == IPPROTO_AH)
1436                                 elen = (ip6e->ip6e_len + 2) << 2;
1437                         else
1438                                 elen = (ip6e->ip6e_len + 1) << 3;
1439                         if (off + elen > m->m_len)
1440                                 goto loopend;
1441 #else
1442                         ext = ip6_pullexthdr(m, off, nxt);
1443                         if (ext == NULL) {
1444                                 V_ip6stat.ip6s_tooshort++;
1445                                 return;
1446                         }
1447                         ip6e = mtod(ext, struct ip6_ext *);
1448                         if (nxt == IPPROTO_AH)
1449                                 elen = (ip6e->ip6e_len + 2) << 2;
1450                         else
1451                                 elen = (ip6e->ip6e_len + 1) << 3;
1452                         if (elen != ext->m_len) {
1453                                 m_freem(ext);
1454                                 V_ip6stat.ip6s_tooshort++;
1455                                 return;
1456                         }
1457 #endif
1458
1459                         switch (nxt) {
1460                         case IPPROTO_DSTOPTS:
1461                                 if (!(in6p->inp_flags & IN6P_DSTOPTS))
1462                                         break;
1463
1464                                 *mp = sbcreatecontrol((caddr_t)ip6e, elen,
1465                                     IS2292(in6p,
1466                                         IPV6_2292DSTOPTS, IPV6_DSTOPTS),
1467                                     IPPROTO_IPV6);
1468                                 if (*mp)
1469                                         mp = &(*mp)->m_next;
1470                                 break;
1471                         case IPPROTO_ROUTING:
1472                                 if (!in6p->inp_flags & IN6P_RTHDR)
1473                                         break;
1474
1475                                 *mp = sbcreatecontrol((caddr_t)ip6e, elen,
1476                                     IS2292(in6p, IPV6_2292RTHDR, IPV6_RTHDR),
1477                                     IPPROTO_IPV6);
1478                                 if (*mp)
1479                                         mp = &(*mp)->m_next;
1480                                 break;
1481                         case IPPROTO_HOPOPTS:
1482                         case IPPROTO_AH: /* is it possible? */
1483                                 break;
1484
1485                         default:
1486                                 /*
1487                                  * other cases have been filtered in the above.
1488                                  * none will visit this case.  here we supply
1489                                  * the code just in case (nxt overwritten or
1490                                  * other cases).
1491                                  */
1492 #ifdef PULLDOWN_TEST
1493                                 m_freem(ext);
1494 #endif
1495                                 goto loopend;
1496
1497                         }
1498
1499                         /* proceed with the next header. */
1500                         off += elen;
1501                         nxt = ip6e->ip6e_nxt;
1502                         ip6e = NULL;
1503 #ifdef PULLDOWN_TEST
1504                         m_freem(ext);
1505                         ext = NULL;
1506 #endif
1507                 }
1508           loopend:
1509                 ;
1510         }
1511 }
1512 #undef IS2292
1513
1514 void
1515 ip6_notify_pmtu(struct inpcb *in6p, struct sockaddr_in6 *dst, u_int32_t *mtu)
1516 {
1517         struct socket *so;
1518         struct mbuf *m_mtu;
1519         struct ip6_mtuinfo mtuctl;
1520
1521         so =  in6p->inp_socket;
1522
1523         if (mtu == NULL)
1524                 return;
1525
1526 #ifdef DIAGNOSTIC
1527         if (so == NULL)         /* I believe this is impossible */
1528                 panic("ip6_notify_pmtu: socket is NULL");
1529 #endif
1530
1531         bzero(&mtuctl, sizeof(mtuctl)); /* zero-clear for safety */
1532         mtuctl.ip6m_mtu = *mtu;
1533         mtuctl.ip6m_addr = *dst;
1534         if (sa6_recoverscope(&mtuctl.ip6m_addr))
1535                 return;
1536
1537         if ((m_mtu = sbcreatecontrol((caddr_t)&mtuctl, sizeof(mtuctl),
1538             IPV6_PATHMTU, IPPROTO_IPV6)) == NULL)
1539                 return;
1540
1541         if (sbappendaddr(&so->so_rcv, (struct sockaddr *)dst, NULL, m_mtu)
1542             == 0) {
1543                 m_freem(m_mtu);
1544                 /* XXX: should count statistics */
1545         } else
1546                 sorwakeup(so);
1547
1548         return;
1549 }
1550
1551 #ifdef PULLDOWN_TEST
1552 /*
1553  * pull single extension header from mbuf chain.  returns single mbuf that
1554  * contains the result, or NULL on error.
1555  */
1556 static struct mbuf *
1557 ip6_pullexthdr(struct mbuf *m, size_t off, int nxt)
1558 {
1559         struct ip6_ext ip6e;
1560         size_t elen;
1561         struct mbuf *n;
1562
1563 #ifdef DIAGNOSTIC
1564         switch (nxt) {
1565         case IPPROTO_DSTOPTS:
1566         case IPPROTO_ROUTING:
1567         case IPPROTO_HOPOPTS:
1568         case IPPROTO_AH: /* is it possible? */
1569                 break;
1570         default:
1571                 printf("ip6_pullexthdr: invalid nxt=%d\n", nxt);
1572         }
1573 #endif
1574
1575         m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1576         if (nxt == IPPROTO_AH)
1577                 elen = (ip6e.ip6e_len + 2) << 2;
1578         else
1579                 elen = (ip6e.ip6e_len + 1) << 3;
1580
1581         MGET(n, M_DONTWAIT, MT_DATA);
1582         if (n && elen >= MLEN) {
1583                 MCLGET(n, M_DONTWAIT);
1584                 if ((n->m_flags & M_EXT) == 0) {
1585                         m_free(n);
1586                         n = NULL;
1587                 }
1588         }
1589         if (!n)
1590                 return NULL;
1591
1592         n->m_len = 0;
1593         if (elen >= M_TRAILINGSPACE(n)) {
1594                 m_free(n);
1595                 return NULL;
1596         }
1597
1598         m_copydata(m, off, elen, mtod(n, caddr_t));
1599         n->m_len = elen;
1600         return n;
1601 }
1602 #endif
1603
1604 /*
1605  * Get pointer to the previous header followed by the header
1606  * currently processed.
1607  * XXX: This function supposes that
1608  *      M includes all headers,
1609  *      the next header field and the header length field of each header
1610  *      are valid, and
1611  *      the sum of each header length equals to OFF.
1612  * Because of these assumptions, this function must be called very
1613  * carefully. Moreover, it will not be used in the near future when
1614  * we develop `neater' mechanism to process extension headers.
1615  */
1616 char *
1617 ip6_get_prevhdr(struct mbuf *m, int off)
1618 {
1619         struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
1620
1621         if (off == sizeof(struct ip6_hdr))
1622                 return (&ip6->ip6_nxt);
1623         else {
1624                 int len, nxt;
1625                 struct ip6_ext *ip6e = NULL;
1626
1627                 nxt = ip6->ip6_nxt;
1628                 len = sizeof(struct ip6_hdr);
1629                 while (len < off) {
1630                         ip6e = (struct ip6_ext *)(mtod(m, caddr_t) + len);
1631
1632                         switch (nxt) {
1633                         case IPPROTO_FRAGMENT:
1634                                 len += sizeof(struct ip6_frag);
1635                                 break;
1636                         case IPPROTO_AH:
1637                                 len += (ip6e->ip6e_len + 2) << 2;
1638                                 break;
1639                         default:
1640                                 len += (ip6e->ip6e_len + 1) << 3;
1641                                 break;
1642                         }
1643                         nxt = ip6e->ip6e_nxt;
1644                 }
1645                 if (ip6e)
1646                         return (&ip6e->ip6e_nxt);
1647                 else
1648                         return NULL;
1649         }
1650 }
1651
1652 /*
1653  * get next header offset.  m will be retained.
1654  */
1655 int
1656 ip6_nexthdr(struct mbuf *m, int off, int proto, int *nxtp)
1657 {
1658         struct ip6_hdr ip6;
1659         struct ip6_ext ip6e;
1660         struct ip6_frag fh;
1661
1662         /* just in case */
1663         if (m == NULL)
1664                 panic("ip6_nexthdr: m == NULL");
1665         if ((m->m_flags & M_PKTHDR) == 0 || m->m_pkthdr.len < off)
1666                 return -1;
1667
1668         switch (proto) {
1669         case IPPROTO_IPV6:
1670                 if (m->m_pkthdr.len < off + sizeof(ip6))
1671                         return -1;
1672                 m_copydata(m, off, sizeof(ip6), (caddr_t)&ip6);
1673                 if (nxtp)
1674                         *nxtp = ip6.ip6_nxt;
1675                 off += sizeof(ip6);
1676                 return off;
1677
1678         case IPPROTO_FRAGMENT:
1679                 /*
1680                  * terminate parsing if it is not the first fragment,
1681                  * it does not make sense to parse through it.
1682                  */
1683                 if (m->m_pkthdr.len < off + sizeof(fh))
1684                         return -1;
1685                 m_copydata(m, off, sizeof(fh), (caddr_t)&fh);
1686                 /* IP6F_OFF_MASK = 0xfff8(BigEndian), 0xf8ff(LittleEndian) */
1687                 if (fh.ip6f_offlg & IP6F_OFF_MASK)
1688                         return -1;
1689                 if (nxtp)
1690                         *nxtp = fh.ip6f_nxt;
1691                 off += sizeof(struct ip6_frag);
1692                 return off;
1693
1694         case IPPROTO_AH:
1695                 if (m->m_pkthdr.len < off + sizeof(ip6e))
1696                         return -1;
1697                 m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1698                 if (nxtp)
1699                         *nxtp = ip6e.ip6e_nxt;
1700                 off += (ip6e.ip6e_len + 2) << 2;
1701                 return off;
1702
1703         case IPPROTO_HOPOPTS:
1704         case IPPROTO_ROUTING:
1705         case IPPROTO_DSTOPTS:
1706                 if (m->m_pkthdr.len < off + sizeof(ip6e))
1707                         return -1;
1708                 m_copydata(m, off, sizeof(ip6e), (caddr_t)&ip6e);
1709                 if (nxtp)
1710                         *nxtp = ip6e.ip6e_nxt;
1711                 off += (ip6e.ip6e_len + 1) << 3;
1712                 return off;
1713
1714         case IPPROTO_NONE:
1715         case IPPROTO_ESP:
1716         case IPPROTO_IPCOMP:
1717                 /* give up */
1718                 return -1;
1719
1720         default:
1721                 return -1;
1722         }
1723
1724         return -1;
1725 }
1726
1727 /*
1728  * get offset for the last header in the chain.  m will be kept untainted.
1729  */
1730 int
1731 ip6_lasthdr(struct mbuf *m, int off, int proto, int *nxtp)
1732 {
1733         int newoff;
1734         int nxt;
1735
1736         if (!nxtp) {
1737                 nxt = -1;
1738                 nxtp = &nxt;
1739         }
1740         while (1) {
1741                 newoff = ip6_nexthdr(m, off, proto, nxtp);
1742                 if (newoff < 0)
1743                         return off;
1744                 else if (newoff < off)
1745                         return -1;      /* invalid */
1746                 else if (newoff == off)
1747                         return newoff;
1748
1749                 off = newoff;
1750                 proto = *nxtp;
1751         }
1752 }
1753
1754 struct ip6aux *
1755 ip6_addaux(struct mbuf *m)
1756 {
1757         struct m_tag *mtag;
1758
1759         mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1760         if (!mtag) {
1761                 mtag = m_tag_get(PACKET_TAG_IPV6_INPUT, sizeof(struct ip6aux),
1762                     M_NOWAIT);
1763                 if (mtag) {
1764                         m_tag_prepend(m, mtag);
1765                         bzero(mtag + 1, sizeof(struct ip6aux));
1766                 }
1767         }
1768         return mtag ? (struct ip6aux *)(mtag + 1) : NULL;
1769 }
1770
1771 struct ip6aux *
1772 ip6_findaux(struct mbuf *m)
1773 {
1774         struct m_tag *mtag;
1775
1776         mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1777         return mtag ? (struct ip6aux *)(mtag + 1) : NULL;
1778 }
1779
1780 void
1781 ip6_delaux(struct mbuf *m)
1782 {
1783         struct m_tag *mtag;
1784
1785         mtag = m_tag_find(m, PACKET_TAG_IPV6_INPUT, NULL);
1786         if (mtag)
1787                 m_tag_delete(m, mtag);
1788 }
1789
1790 /*
1791  * System control for IP6
1792  */
1793
1794 u_char  inet6ctlerrmap[PRC_NCMDS] = {
1795         0,              0,              0,              0,
1796         0,              EMSGSIZE,       EHOSTDOWN,      EHOSTUNREACH,
1797         EHOSTUNREACH,   EHOSTUNREACH,   ECONNREFUSED,   ECONNREFUSED,
1798         EMSGSIZE,       EHOSTUNREACH,   0,              0,
1799         0,              0,              0,              0,
1800         ENOPROTOOPT
1801 };