This source file includes following definitions.
- route6_input
- ip6_rthdr0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 #include <sys/param.h>
34 #include <sys/mbuf.h>
35 #include <sys/socket.h>
36 #include <sys/systm.h>
37
38 #include <net/if.h>
39
40 #include <netinet/in.h>
41 #include <netinet6/in6_var.h>
42 #include <netinet/ip6.h>
43 #include <netinet6/ip6_var.h>
44
45 #include <netinet/icmp6.h>
46
47 #if 0
48 static int ip6_rthdr0(struct mbuf *, struct ip6_hdr *, struct ip6_rthdr0 *);
49 #endif
50
51 int
52 route6_input(mp, offp, proto)
53 struct mbuf **mp;
54 int *offp, proto;
55 {
56 struct ip6_hdr *ip6;
57 struct mbuf *m = *mp;
58 struct ip6_rthdr *rh;
59 int off = *offp, rhlen;
60
61 ip6 = mtod(m, struct ip6_hdr *);
62 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
63 if (rh == NULL) {
64 ip6stat.ip6s_tooshort++;
65 return IPPROTO_DONE;
66 }
67
68 switch (rh->ip6r_type) {
69 #if 0
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85 case IPV6_RTHDR_TYPE_0:
86 rhlen = (rh->ip6r_len + 1) << 3;
87 if (rh->ip6r_segleft == 0)
88 break;
89
90
91
92
93
94
95
96
97 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
98 if (rh == NULL) {
99 ip6stat.ip6s_tooshort++;
100 return IPPROTO_DONE;
101 }
102 if (ip6_rthdr0(m, ip6, (struct ip6_rthdr0 *)rh))
103 return (IPPROTO_DONE);
104 break;
105 #endif
106 default:
107
108 if (rh->ip6r_segleft == 0) {
109 rhlen = (rh->ip6r_len + 1) << 3;
110 break;
111 }
112 ip6stat.ip6s_badoptions++;
113 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
114 (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
115 return (IPPROTO_DONE);
116 }
117
118 *offp += rhlen;
119 return (rh->ip6r_nxt);
120 }
121
122 #if 0
123
124
125
126
127
128
129 static int
130 ip6_rthdr0(m, ip6, rh0)
131 struct mbuf *m;
132 struct ip6_hdr *ip6;
133 struct ip6_rthdr0 *rh0;
134 {
135 int addrs, index;
136 struct in6_addr *nextaddr, tmpaddr;
137
138 if (rh0->ip6r0_segleft == 0)
139 return (0);
140
141 if (rh0->ip6r0_len % 2) {
142
143
144
145
146
147 ip6stat.ip6s_badoptions++;
148 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
149 (caddr_t)&rh0->ip6r0_len - (caddr_t)ip6);
150 return (-1);
151 }
152
153 if ((addrs = rh0->ip6r0_len / 2) < rh0->ip6r0_segleft) {
154 ip6stat.ip6s_badoptions++;
155 icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
156 (caddr_t)&rh0->ip6r0_segleft - (caddr_t)ip6);
157 return (-1);
158 }
159
160 index = addrs - rh0->ip6r0_segleft;
161 rh0->ip6r0_segleft--;
162 nextaddr = ((struct in6_addr *)(rh0 + 1)) + index;
163
164
165
166
167
168
169 if (IN6_IS_ADDR_MULTICAST(nextaddr) ||
170 IN6_IS_ADDR_UNSPECIFIED(nextaddr) ||
171 IN6_IS_ADDR_V4MAPPED(nextaddr) ||
172 IN6_IS_ADDR_V4COMPAT(nextaddr)) {
173 ip6stat.ip6s_badoptions++;
174 goto bad;
175 }
176 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
177 IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst) ||
178 IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst) ||
179 IN6_IS_ADDR_V4COMPAT(&ip6->ip6_dst)) {
180 ip6stat.ip6s_badoptions++;
181 goto bad;
182 }
183
184
185
186
187 tmpaddr = *nextaddr;
188 *nextaddr = ip6->ip6_dst;
189 if (IN6_IS_ADDR_LINKLOCAL(nextaddr))
190 nextaddr->s6_addr16[1] = 0;
191 ip6->ip6_dst = tmpaddr;
192 if (IN6_IS_ADDR_LINKLOCAL(&ip6->ip6_dst))
193 ip6->ip6_dst.s6_addr16[1] = htons(m->m_pkthdr.rcvif->if_index);
194
195 ip6_forward(m, 1);
196
197 return (-1);
198
199 bad:
200 m_freem(m);
201 return (-1);
202 }
203 #endif