frag6.c revision 1.4 1 1.4 itojun /* $NetBSD: frag6.c,v 1.4 1999/07/04 02:01:15 itojun Exp $ */
2 1.3 thorpej
3 1.2 itojun /*
4 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.2 itojun * All rights reserved.
6 1.2 itojun *
7 1.2 itojun * Redistribution and use in source and binary forms, with or without
8 1.2 itojun * modification, are permitted provided that the following conditions
9 1.2 itojun * are met:
10 1.2 itojun * 1. Redistributions of source code must retain the above copyright
11 1.2 itojun * notice, this list of conditions and the following disclaimer.
12 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.2 itojun * notice, this list of conditions and the following disclaimer in the
14 1.2 itojun * documentation and/or other materials provided with the distribution.
15 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.2 itojun * may be used to endorse or promote products derived from this software
17 1.2 itojun * without specific prior written permission.
18 1.2 itojun *
19 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.2 itojun * SUCH DAMAGE.
30 1.2 itojun */
31 1.2 itojun
32 1.2 itojun #include <sys/param.h>
33 1.2 itojun #include <sys/systm.h>
34 1.2 itojun #include <sys/malloc.h>
35 1.2 itojun #include <sys/mbuf.h>
36 1.2 itojun #include <sys/domain.h>
37 1.2 itojun #include <sys/protosw.h>
38 1.2 itojun #include <sys/socket.h>
39 1.2 itojun #include <sys/errno.h>
40 1.2 itojun #include <sys/time.h>
41 1.2 itojun #include <sys/kernel.h>
42 1.2 itojun #include <sys/syslog.h>
43 1.2 itojun
44 1.2 itojun #include <net/if.h>
45 1.2 itojun #include <net/route.h>
46 1.2 itojun
47 1.2 itojun #include <netinet/in.h>
48 1.2 itojun #include <netinet/in_var.h>
49 1.2 itojun #include <netinet6/in6_systm.h>
50 1.2 itojun #include <netinet6/ip6.h>
51 1.2 itojun #if !defined(__FreeBSD__) || __FreeBSD__ < 3
52 1.2 itojun #include <netinet6/in6_pcb.h>
53 1.2 itojun #endif
54 1.2 itojun #include <netinet6/ip6_var.h>
55 1.2 itojun #include <netinet6/icmp6.h>
56 1.2 itojun
57 1.2 itojun static void frag6_enq __P((struct ip6asfrag *, struct ip6asfrag *));
58 1.2 itojun static void frag6_deq __P((struct ip6asfrag *));
59 1.2 itojun static void frag6_insque __P((struct ip6q *, struct ip6q *));
60 1.2 itojun static void frag6_remque __P((struct ip6q *));
61 1.2 itojun static void frag6_freef __P((struct ip6q *));
62 1.2 itojun
63 1.2 itojun int frag6_doing_reass;
64 1.2 itojun u_int frag6_nfragpackets;
65 1.2 itojun struct ip6q ip6q; /* ip6 reassemble queue */
66 1.2 itojun
67 1.2 itojun /*
68 1.2 itojun * Initialise reassembly queue and fragment identifier.
69 1.2 itojun */
70 1.2 itojun void
71 1.2 itojun frag6_init()
72 1.2 itojun {
73 1.2 itojun ip6q.ip6q_next = ip6q.ip6q_prev = &ip6q;
74 1.2 itojun #if !defined(__FreeBSD__) || __FreeBSD__ < 3
75 1.2 itojun ip6_id = time.tv_sec & 0xffff;
76 1.2 itojun #else
77 1.2 itojun ip6_id = time_second & 0xffff;
78 1.2 itojun #endif
79 1.2 itojun }
80 1.2 itojun
81 1.2 itojun /*
82 1.2 itojun * Fragment input
83 1.2 itojun */
84 1.2 itojun int
85 1.2 itojun frag6_input(mp, offp, proto)
86 1.2 itojun struct mbuf **mp;
87 1.2 itojun int *offp, proto;
88 1.2 itojun {
89 1.2 itojun struct mbuf *m = *mp, *t;
90 1.2 itojun struct ip6_hdr *ip6;
91 1.2 itojun struct ip6_frag *ip6f;
92 1.2 itojun struct ip6q *q6;
93 1.2 itojun struct ip6asfrag *af6, *ip6af;
94 1.2 itojun int offset = *offp, nxt, i, next;
95 1.2 itojun int first_frag = 0;
96 1.2 itojun u_short fragoff, frgpartlen;
97 1.2 itojun
98 1.2 itojun IP6_EXTHDR_CHECK(m, offset, sizeof(struct ip6_frag), IPPROTO_DONE);
99 1.2 itojun
100 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
101 1.2 itojun ip6f = (struct ip6_frag *)((caddr_t)ip6 + offset);
102 1.2 itojun
103 1.2 itojun /* jumbo payload can't contain a fragment header */
104 1.2 itojun if (ip6->ip6_plen == 0) {
105 1.2 itojun icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER, offset);
106 1.2 itojun return IPPROTO_DONE;
107 1.2 itojun }
108 1.2 itojun
109 1.2 itojun /*
110 1.2 itojun * check whether fragment packet's fragment length is
111 1.2 itojun * multiple of 8 octets.
112 1.2 itojun * sizeof(struct ip6_frag) == 8
113 1.2 itojun * sizeof(struct ip6_hdr) = 40
114 1.2 itojun */
115 1.2 itojun if ((ip6f->ip6f_offlg & IP6F_MORE_FRAG) &&
116 1.2 itojun (((ntohs(ip6->ip6_plen) - offset) & 0x7) != 0)) {
117 1.2 itojun icmp6_error(m, ICMP6_PARAM_PROB,
118 1.2 itojun ICMP6_PARAMPROB_HEADER,
119 1.2 itojun (caddr_t)&ip6->ip6_plen - (caddr_t)ip6);
120 1.2 itojun return IPPROTO_DONE;
121 1.2 itojun }
122 1.2 itojun
123 1.2 itojun ip6stat.ip6s_fragments++;
124 1.2 itojun
125 1.2 itojun /*
126 1.2 itojun * Presence of header sizes in mbufs
127 1.2 itojun * would confuse code below.
128 1.2 itojun */
129 1.2 itojun
130 1.2 itojun offset += sizeof(struct ip6_frag);
131 1.2 itojun m->m_data += offset;
132 1.2 itojun m->m_len -= offset;
133 1.2 itojun
134 1.2 itojun for (q6 = ip6q.ip6q_next; q6 != &ip6q; q6 = q6->ip6q_next)
135 1.2 itojun if (ip6f->ip6f_ident == q6->ip6q_ident &&
136 1.2 itojun IN6_ARE_ADDR_EQUAL(&ip6->ip6_src, &q6->ip6q_src) &&
137 1.2 itojun IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &q6->ip6q_dst))
138 1.2 itojun break;
139 1.2 itojun
140 1.2 itojun if (q6 == &ip6q) {
141 1.2 itojun /*
142 1.2 itojun * the first fragment to arrive, create a reassembly queue.
143 1.2 itojun */
144 1.2 itojun first_frag = 1;
145 1.2 itojun frag6_nfragpackets++;
146 1.2 itojun
147 1.2 itojun /*
148 1.2 itojun * Enforce upper bound on number of fragmented packets
149 1.2 itojun * for which we attempt reassembly;
150 1.2 itojun * If maxfrag is 0, never accept fragments.
151 1.2 itojun * If maxfrag is -1, accept all fragments without limitation.
152 1.2 itojun */
153 1.2 itojun if (frag6_nfragpackets >= (u_int)ip6_maxfragpackets) {
154 1.2 itojun ip6stat.ip6s_fragoverflow++;
155 1.2 itojun frag6_freef(ip6q.ip6q_prev);
156 1.2 itojun }
157 1.2 itojun q6 = (struct ip6q *)malloc(sizeof(struct ip6q), M_FTABLE,
158 1.2 itojun M_DONTWAIT);
159 1.2 itojun if (q6 == NULL)
160 1.2 itojun goto dropfrag;
161 1.2 itojun
162 1.2 itojun frag6_insque(q6, &ip6q);
163 1.2 itojun
164 1.2 itojun q6->ip6q_down = q6->ip6q_up = (struct ip6asfrag *)q6;
165 1.2 itojun #if 0
166 1.2 itojun /*
167 1.2 itojun * It is not necessarily the first segment; fragment offset
168 1.2 itojun * might be non-0.
169 1.2 itojun */
170 1.2 itojun q6->ip6q_nxt = ip6f->ip6f_nxt;
171 1.2 itojun #endif
172 1.2 itojun #ifdef notyet
173 1.2 itojun q6->ip6q_nxtp = (u_char *)nxtp;
174 1.2 itojun #endif
175 1.2 itojun q6->ip6q_ident = ip6f->ip6f_ident;
176 1.2 itojun q6->ip6q_arrive = 0; /* Is it used anywhere? */
177 1.2 itojun q6->ip6q_ttl = IPV6_FRAGTTL;
178 1.2 itojun q6->ip6q_src = ip6->ip6_src;
179 1.2 itojun q6->ip6q_dst = ip6->ip6_dst;
180 1.2 itojun q6->ip6q_unfrglen = -1; /* The 1st fragment has not arrived. */
181 1.2 itojun }
182 1.2 itojun
183 1.2 itojun /*
184 1.2 itojun * If it's the 1st fragment, record the length of the
185 1.2 itojun * unfragmentable part and the next header of the fragment header.
186 1.2 itojun */
187 1.2 itojun fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK);
188 1.2 itojun if (fragoff == 0) {
189 1.2 itojun q6->ip6q_unfrglen = offset - sizeof(struct ip6_hdr)
190 1.2 itojun - sizeof(struct ip6_frag);
191 1.2 itojun q6->ip6q_nxt = ip6f->ip6f_nxt;
192 1.2 itojun }
193 1.2 itojun
194 1.2 itojun /*
195 1.2 itojun * Check that the reassembled packet would not exceed 65535 bytes
196 1.2 itojun * in size.
197 1.2 itojun * If it would exceed, discard the fragment and return an ICMP error.
198 1.2 itojun */
199 1.2 itojun frgpartlen = sizeof(struct ip6_hdr) + ntohs(ip6->ip6_plen) - offset;
200 1.2 itojun if (q6->ip6q_unfrglen >= 0) {
201 1.2 itojun /* The 1st fragment has already arrived. */
202 1.2 itojun if (q6->ip6q_unfrglen + fragoff + frgpartlen > IPV6_MAXPACKET) {
203 1.2 itojun m->m_data -= offset;
204 1.2 itojun m->m_len += offset;
205 1.2 itojun icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
206 1.2 itojun offset - sizeof(struct ip6_frag) + 2);
207 1.2 itojun return(IPPROTO_DONE);
208 1.2 itojun }
209 1.2 itojun }
210 1.2 itojun else if (fragoff + frgpartlen > IPV6_MAXPACKET) {
211 1.2 itojun m->m_data -= offset;
212 1.2 itojun m->m_len += offset;
213 1.2 itojun icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
214 1.2 itojun offset - sizeof(struct ip6_frag) + 2);
215 1.2 itojun return(IPPROTO_DONE);
216 1.2 itojun }
217 1.2 itojun /*
218 1.2 itojun * If it's the first fragment, do the above check for each
219 1.2 itojun * fragment already stored in the reassembly queue.
220 1.2 itojun */
221 1.2 itojun if (fragoff == 0) {
222 1.2 itojun struct ip6asfrag *af6dwn;
223 1.2 itojun
224 1.2 itojun for (af6 = q6->ip6q_down; af6 != (struct ip6asfrag *)q6;
225 1.2 itojun af6 = af6dwn) {
226 1.2 itojun af6dwn = af6->ip6af_down;
227 1.2 itojun
228 1.2 itojun if (q6->ip6q_unfrglen + af6->ip6af_off + af6->ip6af_frglen >
229 1.2 itojun IPV6_MAXPACKET) {
230 1.2 itojun struct mbuf *merr = IP6_REASS_MBUF(af6);
231 1.2 itojun struct ip6_hdr *ip6err;
232 1.2 itojun int erroff = af6->ip6af_offset;
233 1.2 itojun
234 1.2 itojun /* dequeue the fragment. */
235 1.2 itojun frag6_deq(af6);
236 1.2 itojun
237 1.2 itojun /* adjust pointer. */
238 1.2 itojun merr->m_data -= af6->ip6af_offset;
239 1.2 itojun merr->m_len += af6->ip6af_offset;
240 1.2 itojun ip6err = mtod(merr, struct ip6_hdr *);
241 1.2 itojun
242 1.2 itojun /*
243 1.2 itojun * Restore source and destination addresses
244 1.2 itojun * in the erroneous IPv6 header.
245 1.2 itojun */
246 1.2 itojun ip6err->ip6_src = q6->ip6q_src;
247 1.2 itojun ip6err->ip6_dst = q6->ip6q_dst;
248 1.2 itojun
249 1.2 itojun icmp6_error(merr, ICMP6_PARAM_PROB,
250 1.2 itojun ICMP6_PARAMPROB_HEADER,
251 1.2 itojun erroff - sizeof(struct ip6_frag) + 2);
252 1.2 itojun }
253 1.2 itojun }
254 1.2 itojun }
255 1.2 itojun
256 1.2 itojun /* Override the IPv6 header */
257 1.2 itojun ip6af = (struct ip6asfrag *)ip6;
258 1.2 itojun ip6af->ip6af_mff = ip6f->ip6f_offlg & IP6F_MORE_FRAG;
259 1.2 itojun ip6af->ip6af_off = fragoff;
260 1.2 itojun ip6af->ip6af_frglen = frgpartlen;
261 1.2 itojun ip6af->ip6af_offset = offset;
262 1.2 itojun IP6_REASS_MBUF(ip6af) = m;
263 1.2 itojun
264 1.2 itojun if (first_frag) {
265 1.2 itojun af6 = (struct ip6asfrag *)q6;
266 1.2 itojun goto insert;
267 1.2 itojun }
268 1.2 itojun
269 1.2 itojun /*
270 1.2 itojun * Find a segment which begins after this one does.
271 1.2 itojun */
272 1.2 itojun for (af6 = q6->ip6q_down; af6 != (struct ip6asfrag *)q6;
273 1.2 itojun af6 = af6->ip6af_down)
274 1.2 itojun if (af6->ip6af_off > ip6af->ip6af_off)
275 1.2 itojun break;
276 1.2 itojun
277 1.2 itojun #if 0
278 1.2 itojun /*
279 1.2 itojun * If there is a preceding segment, it may provide some of
280 1.2 itojun * our data already. If so, drop the data from the incoming
281 1.2 itojun * segment. If it provides all of our data, drop us.
282 1.2 itojun */
283 1.2 itojun if (af6->ip6af_up != (struct ip6asfrag *)q6) {
284 1.2 itojun i = af6->ip6af_up->ip6af_off + af6->ip6af_up->ip6af_frglen
285 1.2 itojun - ip6af->ip6af_off;
286 1.2 itojun if (i > 0) {
287 1.2 itojun if (i >= ip6af->ip6af_frglen)
288 1.2 itojun goto dropfrag;
289 1.2 itojun m_adj(IP6_REASS_MBUF(ip6af), i);
290 1.2 itojun ip6af->ip6af_off += i;
291 1.2 itojun ip6af->ip6af_frglen -= i;
292 1.2 itojun }
293 1.2 itojun }
294 1.2 itojun
295 1.2 itojun /*
296 1.2 itojun * While we overlap succeeding segments trim them or,
297 1.2 itojun * if they are completely covered, dequeue them.
298 1.2 itojun */
299 1.2 itojun while (af6 != (struct ip6asfrag *)q6 &&
300 1.2 itojun ip6af->ip6af_off + ip6af->ip6af_frglen > af6->ip6af_off) {
301 1.2 itojun i = (ip6af->ip6af_off + ip6af->ip6af_frglen) - af6->ip6af_off;
302 1.2 itojun if (i < af6->ip6af_frglen) {
303 1.2 itojun af6->ip6af_frglen -= i;
304 1.2 itojun af6->ip6af_off += i;
305 1.2 itojun m_adj(IP6_REASS_MBUF(af6), i);
306 1.2 itojun break;
307 1.2 itojun }
308 1.2 itojun af6 = af6->ip6af_down;
309 1.2 itojun m_freem(IP6_REASS_MBUF(af6->ip6af_up));
310 1.2 itojun frag6_deq(af6->ip6af_up);
311 1.2 itojun }
312 1.2 itojun #else
313 1.2 itojun /*
314 1.2 itojun * If the incoming framgent overlaps some existing fragments in
315 1.2 itojun * the reassembly queue, drop it, since it is dangerous to override
316 1.2 itojun * existing fragments from a security point of view.
317 1.2 itojun */
318 1.2 itojun if (af6->ip6af_up != (struct ip6asfrag *)q6) {
319 1.2 itojun i = af6->ip6af_up->ip6af_off + af6->ip6af_up->ip6af_frglen
320 1.2 itojun - ip6af->ip6af_off;
321 1.2 itojun if (i > 0) {
322 1.2 itojun log(LOG_ERR, "%d bytes of a fragment from %s "
323 1.2 itojun "overlaps the previous fragment\n",
324 1.2 itojun i, ip6_sprintf(&q6->ip6q_src));
325 1.2 itojun goto dropfrag;
326 1.2 itojun }
327 1.2 itojun }
328 1.2 itojun if (af6 != (struct ip6asfrag *)q6) {
329 1.2 itojun i = (ip6af->ip6af_off + ip6af->ip6af_frglen) - af6->ip6af_off;
330 1.2 itojun if (i > 0) {
331 1.2 itojun log(LOG_ERR, "%d bytes of a fragment from %s "
332 1.2 itojun "overlaps the succeeding fragment",
333 1.2 itojun i, ip6_sprintf(&q6->ip6q_src));
334 1.2 itojun goto dropfrag;
335 1.2 itojun }
336 1.2 itojun }
337 1.2 itojun #endif
338 1.2 itojun
339 1.2 itojun insert:
340 1.2 itojun
341 1.2 itojun /*
342 1.2 itojun * Stick new segment in its place;
343 1.2 itojun * check for complete reassembly.
344 1.2 itojun * Move to front of packet queue, as we are
345 1.2 itojun * the most recently active fragmented packet.
346 1.2 itojun */
347 1.2 itojun frag6_enq(ip6af, af6->ip6af_up);
348 1.2 itojun #if 0 /* xxx */
349 1.2 itojun if (q6 != ip6q.ip6q_next) {
350 1.2 itojun frag6_remque(q6);
351 1.2 itojun frag6_insque(q6, &ip6q);
352 1.2 itojun }
353 1.2 itojun #endif
354 1.2 itojun next = 0;
355 1.2 itojun for (af6 = q6->ip6q_down; af6 != (struct ip6asfrag *)q6;
356 1.2 itojun af6 = af6->ip6af_down) {
357 1.2 itojun if (af6->ip6af_off != next) {
358 1.2 itojun frag6_doing_reass = 0;
359 1.2 itojun return IPPROTO_DONE;
360 1.2 itojun }
361 1.2 itojun next += af6->ip6af_frglen;
362 1.2 itojun }
363 1.2 itojun if (af6->ip6af_up->ip6af_mff) {
364 1.2 itojun frag6_doing_reass = 0;
365 1.2 itojun return IPPROTO_DONE;
366 1.2 itojun }
367 1.2 itojun
368 1.2 itojun /*
369 1.2 itojun * Reassembly is complete; concatenate fragments.
370 1.2 itojun */
371 1.2 itojun
372 1.2 itojun ip6af = q6->ip6q_down;
373 1.2 itojun t = m = IP6_REASS_MBUF(ip6af);
374 1.2 itojun af6 = ip6af->ip6af_down;
375 1.2 itojun while (af6 != (struct ip6asfrag *)q6) {
376 1.2 itojun while (t->m_next)
377 1.2 itojun t = t->m_next;
378 1.2 itojun t->m_next = IP6_REASS_MBUF(af6);
379 1.2 itojun af6 = af6->ip6af_down;
380 1.2 itojun }
381 1.2 itojun
382 1.2 itojun /* adjust offset to point where the original next header starts */
383 1.2 itojun offset = ip6af->ip6af_offset - sizeof(struct ip6_frag);
384 1.2 itojun ip6 = (struct ip6_hdr *)ip6af;
385 1.2 itojun ip6->ip6_plen = htons((u_short)next + offset - sizeof(struct ip6_hdr));
386 1.2 itojun ip6->ip6_src = q6->ip6q_src;
387 1.2 itojun ip6->ip6_dst = q6->ip6q_dst;
388 1.2 itojun nxt = q6->ip6q_nxt;
389 1.2 itojun #ifdef notyet
390 1.2 itojun *q6->ip6q_nxtp = (u_char)(nxt & 0xff);
391 1.2 itojun #endif
392 1.2 itojun
393 1.2 itojun /*
394 1.2 itojun * Delete frag6 header with as a few cost as possible.
395 1.2 itojun */
396 1.2 itojun
397 1.2 itojun if (offset < m->m_len)
398 1.2 itojun bcopy((caddr_t)ip6, (caddr_t)ip6 + sizeof(struct ip6_frag),
399 1.2 itojun offset);
400 1.2 itojun else {
401 1.2 itojun bcopy(mtod(m, caddr_t), (caddr_t)ip6 + offset, m->m_len);
402 1.2 itojun m->m_data -= sizeof(struct ip6_frag);
403 1.2 itojun }
404 1.2 itojun m->m_data -= offset;
405 1.2 itojun m->m_len += offset;
406 1.2 itojun
407 1.2 itojun /*
408 1.2 itojun * Store NXT to the original.
409 1.2 itojun */
410 1.2 itojun {
411 1.2 itojun char *prvnxtp = ip6_get_prevhdr(m, offset); /* XXX */
412 1.2 itojun *prvnxtp = nxt;
413 1.2 itojun }
414 1.2 itojun
415 1.2 itojun frag6_remque(q6);
416 1.2 itojun free(q6, M_FTABLE);
417 1.2 itojun frag6_nfragpackets--;
418 1.2 itojun
419 1.2 itojun if (m->m_flags & M_PKTHDR) { /* Isn't it always true? */
420 1.2 itojun int plen = 0;
421 1.2 itojun for (t = m; t; t = t->m_next)
422 1.2 itojun plen += t->m_len;
423 1.2 itojun m->m_pkthdr.len = plen;
424 1.2 itojun }
425 1.2 itojun
426 1.2 itojun ip6stat.ip6s_reassembled++;
427 1.2 itojun
428 1.2 itojun /*
429 1.2 itojun * Tell launch routine the next header
430 1.2 itojun */
431 1.2 itojun
432 1.2 itojun *mp = m;
433 1.2 itojun *offp = offset;
434 1.2 itojun
435 1.2 itojun frag6_doing_reass = 0;
436 1.2 itojun return nxt;
437 1.2 itojun
438 1.2 itojun dropfrag:
439 1.2 itojun ip6stat.ip6s_fragdropped++;
440 1.2 itojun m_freem(m);
441 1.2 itojun return IPPROTO_DONE;
442 1.2 itojun }
443 1.2 itojun
444 1.2 itojun /*
445 1.2 itojun * Free a fragment reassembly header and all
446 1.2 itojun * associated datagrams.
447 1.2 itojun */
448 1.2 itojun void
449 1.2 itojun frag6_freef(q6)
450 1.2 itojun struct ip6q *q6;
451 1.2 itojun {
452 1.2 itojun struct ip6asfrag *af6, *down6;
453 1.2 itojun
454 1.2 itojun for (af6 = q6->ip6q_down; af6 != (struct ip6asfrag *)q6;
455 1.2 itojun af6 = down6) {
456 1.2 itojun struct mbuf *m = IP6_REASS_MBUF(af6);
457 1.2 itojun
458 1.2 itojun down6 = af6->ip6af_down;
459 1.2 itojun frag6_deq(af6);
460 1.2 itojun
461 1.2 itojun /*
462 1.2 itojun * Return ICMP time exceeded error for the 1st fragment.
463 1.2 itojun * Just free other fragments.
464 1.2 itojun */
465 1.2 itojun if (af6->ip6af_off == 0) {
466 1.2 itojun struct ip6_hdr *ip6;
467 1.2 itojun
468 1.2 itojun /* adjust pointer */
469 1.2 itojun m->m_data -= af6->ip6af_offset;
470 1.2 itojun m->m_len += af6->ip6af_offset;
471 1.2 itojun ip6 = mtod(m, struct ip6_hdr *);
472 1.2 itojun
473 1.2 itojun /* restoure source and destination addresses */
474 1.2 itojun ip6->ip6_src = q6->ip6q_src;
475 1.2 itojun ip6->ip6_dst = q6->ip6q_dst;
476 1.2 itojun
477 1.2 itojun icmp6_error(m, ICMP6_TIME_EXCEEDED,
478 1.2 itojun ICMP6_TIME_EXCEED_REASSEMBLY, 0);
479 1.2 itojun }
480 1.2 itojun else
481 1.2 itojun m_freem(m);
482 1.2 itojun }
483 1.2 itojun frag6_remque(q6);
484 1.2 itojun free(q6, M_FTABLE);
485 1.2 itojun frag6_nfragpackets--;
486 1.2 itojun }
487 1.2 itojun
488 1.2 itojun /*
489 1.2 itojun * Put an ip fragment on a reassembly chain.
490 1.2 itojun * Like insque, but pointers in middle of structure.
491 1.2 itojun */
492 1.2 itojun void
493 1.2 itojun frag6_enq(af6, up6)
494 1.2 itojun struct ip6asfrag *af6, *up6;
495 1.2 itojun {
496 1.2 itojun af6->ip6af_up = up6;
497 1.2 itojun af6->ip6af_down = up6->ip6af_down;
498 1.2 itojun up6->ip6af_down->ip6af_up = af6;
499 1.2 itojun up6->ip6af_down = af6;
500 1.2 itojun }
501 1.2 itojun
502 1.2 itojun /*
503 1.2 itojun * To frag6_enq as remque is to insque.
504 1.2 itojun */
505 1.2 itojun void
506 1.2 itojun frag6_deq(af6)
507 1.2 itojun struct ip6asfrag *af6;
508 1.2 itojun {
509 1.2 itojun af6->ip6af_up->ip6af_down = af6->ip6af_down;
510 1.2 itojun af6->ip6af_down->ip6af_up = af6->ip6af_up;
511 1.2 itojun }
512 1.2 itojun
513 1.2 itojun void
514 1.2 itojun frag6_insque(new, old)
515 1.2 itojun struct ip6q *new, *old;
516 1.2 itojun {
517 1.2 itojun new->ip6q_prev = old;
518 1.2 itojun new->ip6q_next = old->ip6q_next;
519 1.2 itojun old->ip6q_next->ip6q_prev= new;
520 1.2 itojun old->ip6q_next = new;
521 1.2 itojun }
522 1.2 itojun
523 1.2 itojun void
524 1.2 itojun frag6_remque(p6)
525 1.2 itojun struct ip6q *p6;
526 1.2 itojun {
527 1.2 itojun p6->ip6q_prev->ip6q_next = p6->ip6q_next;
528 1.2 itojun p6->ip6q_next->ip6q_prev = p6->ip6q_prev;
529 1.2 itojun }
530 1.2 itojun
531 1.2 itojun /*
532 1.2 itojun * IP timer processing;
533 1.2 itojun * if a timer expires on a reassembly
534 1.2 itojun * queue, discard it.
535 1.2 itojun */
536 1.2 itojun void
537 1.2 itojun frag6_slowtimo()
538 1.2 itojun {
539 1.2 itojun struct ip6q *q6;
540 1.4 itojun int s = splsoftnet();
541 1.2 itojun #if 0
542 1.2 itojun extern struct route_in6 ip6_forward_rt;
543 1.2 itojun #endif
544 1.2 itojun
545 1.2 itojun frag6_doing_reass = 1;
546 1.2 itojun q6 = ip6q.ip6q_next;
547 1.2 itojun if (q6)
548 1.2 itojun while (q6 != &ip6q) {
549 1.2 itojun --q6->ip6q_ttl;
550 1.2 itojun q6 = q6->ip6q_next;
551 1.2 itojun if (q6->ip6q_prev->ip6q_ttl == 0) {
552 1.2 itojun ip6stat.ip6s_fragtimeout++;
553 1.2 itojun frag6_freef(q6->ip6q_prev);
554 1.2 itojun }
555 1.2 itojun }
556 1.2 itojun /*
557 1.2 itojun * If we are over the maximum number of fragments
558 1.2 itojun * (due to the limit being lowered), drain off
559 1.2 itojun * enough to get down to the new limit.
560 1.2 itojun */
561 1.2 itojun while (frag6_nfragpackets > (u_int)ip6_maxfragpackets) {
562 1.2 itojun ip6stat.ip6s_fragoverflow++;
563 1.2 itojun frag6_freef(ip6q.ip6q_prev);
564 1.2 itojun }
565 1.2 itojun frag6_doing_reass = 0;
566 1.2 itojun
567 1.2 itojun #if 0
568 1.2 itojun /*
569 1.2 itojun * Routing changes might produce a better route than we last used;
570 1.2 itojun * make sure we notice eventually, even if forwarding only for one
571 1.2 itojun * destination and the cache is never replaced.
572 1.2 itojun */
573 1.2 itojun if (ip6_forward_rt.ro_rt) {
574 1.2 itojun RTFREE(ip6_forward_rt.ro_rt);
575 1.2 itojun ip6_forward_rt.ro_rt = 0;
576 1.2 itojun }
577 1.2 itojun if (ipsrcchk_rt.ro_rt) {
578 1.2 itojun RTFREE(ipsrcchk_rt.ro_rt);
579 1.2 itojun ipsrcchk_rt.ro_rt = 0;
580 1.2 itojun }
581 1.2 itojun #endif
582 1.2 itojun
583 1.2 itojun splx(s);
584 1.2 itojun }
585 1.2 itojun
586 1.2 itojun /*
587 1.2 itojun * Drain off all datagram fragments.
588 1.2 itojun */
589 1.2 itojun void
590 1.2 itojun frag6_drain()
591 1.2 itojun {
592 1.2 itojun if (frag6_doing_reass)
593 1.2 itojun return;
594 1.2 itojun while (ip6q.ip6q_next != &ip6q) {
595 1.2 itojun ip6stat.ip6s_fragdropped++;
596 1.2 itojun frag6_freef(ip6q.ip6q_next);
597 1.2 itojun }
598 1.2 itojun }
599