dest6.c revision 1.1.2.2 1 1.1.2.1 itojun /*
2 1.1.2.1 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 1.1.2.1 itojun * All rights reserved.
4 1.1.2.1 itojun *
5 1.1.2.1 itojun * Redistribution and use in source and binary forms, with or without
6 1.1.2.1 itojun * modification, are permitted provided that the following conditions
7 1.1.2.1 itojun * are met:
8 1.1.2.1 itojun * 1. Redistributions of source code must retain the above copyright
9 1.1.2.1 itojun * notice, this list of conditions and the following disclaimer.
10 1.1.2.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
11 1.1.2.1 itojun * notice, this list of conditions and the following disclaimer in the
12 1.1.2.1 itojun * documentation and/or other materials provided with the distribution.
13 1.1.2.1 itojun * 3. Neither the name of the project nor the names of its contributors
14 1.1.2.1 itojun * may be used to endorse or promote products derived from this software
15 1.1.2.1 itojun * without specific prior written permission.
16 1.1.2.1 itojun *
17 1.1.2.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 1.1.2.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 1.1.2.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 1.1.2.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 1.1.2.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.1.2.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 1.1.2.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.1.2.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.1.2.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.1.2.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.1.2.1 itojun * SUCH DAMAGE.
28 1.1.2.1 itojun */
29 1.1.2.1 itojun
30 1.1.2.1 itojun #include <sys/param.h>
31 1.1.2.1 itojun #include <sys/systm.h>
32 1.1.2.1 itojun #include <sys/malloc.h>
33 1.1.2.1 itojun #include <sys/mbuf.h>
34 1.1.2.1 itojun #include <sys/domain.h>
35 1.1.2.1 itojun #include <sys/protosw.h>
36 1.1.2.1 itojun #include <sys/socket.h>
37 1.1.2.1 itojun #include <sys/errno.h>
38 1.1.2.1 itojun #include <sys/time.h>
39 1.1.2.1 itojun #include <sys/kernel.h>
40 1.1.2.1 itojun
41 1.1.2.1 itojun #include <net/if.h>
42 1.1.2.1 itojun #include <net/route.h>
43 1.1.2.1 itojun
44 1.1.2.1 itojun #include <netinet/in.h>
45 1.1.2.1 itojun #include <netinet/in_var.h>
46 1.1.2.1 itojun #include <netinet6/ip6.h>
47 1.1.2.2 itojun #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3) && !defined(__OpenBSD__)
48 1.1.2.1 itojun #include <netinet6/in6_pcb.h>
49 1.1.2.1 itojun #endif
50 1.1.2.1 itojun #include <netinet6/ip6_var.h>
51 1.1.2.1 itojun #include <netinet6/icmp6.h>
52 1.1.2.1 itojun
53 1.1.2.1 itojun /*
54 1.1.2.1 itojun * Destination options header processing.
55 1.1.2.1 itojun */
56 1.1.2.1 itojun int
57 1.1.2.1 itojun dest6_input(mp, offp, proto)
58 1.1.2.1 itojun struct mbuf **mp;
59 1.1.2.1 itojun int *offp, proto;
60 1.1.2.1 itojun {
61 1.1.2.1 itojun register struct mbuf *m = *mp;
62 1.1.2.1 itojun int off = *offp, dstoptlen, optlen;
63 1.1.2.1 itojun struct ip6_dest *dstopts;
64 1.1.2.1 itojun u_int8_t *opt;
65 1.1.2.1 itojun
66 1.1.2.1 itojun /* validation of the length of the header */
67 1.1.2.2 itojun #ifndef PULLDOWN_TEST
68 1.1.2.1 itojun IP6_EXTHDR_CHECK(m, off, sizeof(*dstopts), IPPROTO_DONE);
69 1.1.2.1 itojun dstopts = (struct ip6_dest *)(mtod(m, caddr_t) + off);
70 1.1.2.2 itojun #else
71 1.1.2.2 itojun IP6_EXTHDR_GET(dstopts, struct ip6_dest *, m, off, sizeof(*dstopts));
72 1.1.2.2 itojun if (dstopts == NULL)
73 1.1.2.2 itojun return IPPROTO_DONE;
74 1.1.2.2 itojun #endif
75 1.1.2.1 itojun dstoptlen = (dstopts->ip6d_len + 1) << 3;
76 1.1.2.1 itojun
77 1.1.2.2 itojun #ifndef PULLDOWN_TEST
78 1.1.2.1 itojun IP6_EXTHDR_CHECK(m, off, dstoptlen, IPPROTO_DONE);
79 1.1.2.1 itojun dstopts = (struct ip6_dest *)(mtod(m, caddr_t) + off);
80 1.1.2.2 itojun #else
81 1.1.2.2 itojun IP6_EXTHDR_GET(dstopts, struct ip6_dest *, m, off, dstoptlen);
82 1.1.2.2 itojun if (dstopts == NULL)
83 1.1.2.2 itojun return IPPROTO_DONE;
84 1.1.2.2 itojun #endif
85 1.1.2.1 itojun off += dstoptlen;
86 1.1.2.1 itojun dstoptlen -= sizeof(struct ip6_dest);
87 1.1.2.1 itojun opt = (u_int8_t *)dstopts + sizeof(struct ip6_dest);
88 1.1.2.1 itojun
89 1.1.2.1 itojun /* search header for all options. */
90 1.1.2.1 itojun for (optlen = 0; dstoptlen > 0; dstoptlen -= optlen, opt += optlen) {
91 1.1.2.1 itojun switch(*opt) {
92 1.1.2.1 itojun case IP6OPT_PAD1:
93 1.1.2.1 itojun optlen = 1;
94 1.1.2.1 itojun break;
95 1.1.2.1 itojun case IP6OPT_PADN:
96 1.1.2.1 itojun if (dstoptlen < IP6OPT_MINLEN) {
97 1.1.2.1 itojun ip6stat.ip6s_toosmall++;
98 1.1.2.1 itojun goto bad;
99 1.1.2.1 itojun }
100 1.1.2.1 itojun optlen = *(opt + 1) + 2;
101 1.1.2.1 itojun break;
102 1.1.2.1 itojun default: /* unknown option */
103 1.1.2.1 itojun if (dstoptlen < IP6OPT_MINLEN) {
104 1.1.2.1 itojun ip6stat.ip6s_toosmall++;
105 1.1.2.1 itojun goto bad;
106 1.1.2.1 itojun }
107 1.1.2.1 itojun if ((optlen = ip6_unknown_opt(opt, m,
108 1.1.2.1 itojun opt-mtod(m, u_int8_t *))) == -1)
109 1.1.2.1 itojun return(IPPROTO_DONE);
110 1.1.2.1 itojun optlen += 2;
111 1.1.2.1 itojun break;
112 1.1.2.1 itojun }
113 1.1.2.1 itojun }
114 1.1.2.1 itojun
115 1.1.2.1 itojun *offp = off;
116 1.1.2.1 itojun return(dstopts->ip6d_nxt);
117 1.1.2.1 itojun
118 1.1.2.1 itojun bad:
119 1.1.2.1 itojun m_freem(m);
120 1.1.2.1 itojun return(IPPROTO_DONE);
121 1.1.2.1 itojun }
122