1 | /* $Id: ip_input.c 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - IP input.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | /*
|
---|
29 | * This code is based on:
|
---|
30 | *
|
---|
31 | * Copyright (c) 1982, 1986, 1988, 1993
|
---|
32 | * The Regents of the University of California. All rights reserved.
|
---|
33 | *
|
---|
34 | * Redistribution and use in source and binary forms, with or without
|
---|
35 | * modification, are permitted provided that the following conditions
|
---|
36 | * are met:
|
---|
37 | * 1. Redistributions of source code must retain the above copyright
|
---|
38 | * notice, this list of conditions and the following disclaimer.
|
---|
39 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
40 | * notice, this list of conditions and the following disclaimer in the
|
---|
41 | * documentation and/or other materials provided with the distribution.
|
---|
42 | * 3. Neither the name of the University nor the names of its contributors
|
---|
43 | * may be used to endorse or promote products derived from this software
|
---|
44 | * without specific prior written permission.
|
---|
45 | *
|
---|
46 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
---|
47 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
48 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
49 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
---|
50 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
51 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
52 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
53 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
54 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
55 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
56 | * SUCH DAMAGE.
|
---|
57 | *
|
---|
58 | * @(#)ip_input.c 8.2 (Berkeley) 1/4/94
|
---|
59 | * ip_input.c,v 1.11 1994/11/16 10:17:08 jkh Exp
|
---|
60 | */
|
---|
61 |
|
---|
62 | /*
|
---|
63 | * Changes and additions relating to SLiRP are
|
---|
64 | * Copyright (c) 1995 Danny Gasparovski.
|
---|
65 | *
|
---|
66 | * Please read the file COPYRIGHT for the
|
---|
67 | * terms and conditions of the copyright.
|
---|
68 | */
|
---|
69 |
|
---|
70 | #include <slirp.h>
|
---|
71 | #include "ip_icmp.h"
|
---|
72 | #include "alias.h"
|
---|
73 |
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * IP initialization: fill in IP protocol switch table.
|
---|
77 | * All protocols not implemented in kernel go to raw IP protocol handler.
|
---|
78 | */
|
---|
79 | void
|
---|
80 | ip_init(PNATState pData)
|
---|
81 | {
|
---|
82 | int i = 0;
|
---|
83 | for (i = 0; i < IPREASS_NHASH; ++i)
|
---|
84 | TAILQ_INIT(&ipq[i]);
|
---|
85 | maxnipq = 100; /* ??? */
|
---|
86 | maxfragsperpacket = 16;
|
---|
87 | nipq = 0;
|
---|
88 | ip_currid = tt.tv_sec & 0xffff;
|
---|
89 | udp_init(pData);
|
---|
90 | tcp_init(pData);
|
---|
91 | }
|
---|
92 |
|
---|
93 | /*
|
---|
94 | * Ip input routine. Checksum and byte swap header. If fragmented
|
---|
95 | * try to reassemble. Process options. Pass to next level.
|
---|
96 | */
|
---|
97 | void
|
---|
98 | ip_input(PNATState pData, struct mbuf *m)
|
---|
99 | {
|
---|
100 | register struct ip *ip;
|
---|
101 | int hlen = 0;
|
---|
102 | int mlen = 0;
|
---|
103 | int iplen = 0;
|
---|
104 |
|
---|
105 | STAM_PROFILE_START(&pData->StatIP_input, a);
|
---|
106 |
|
---|
107 | LogFlowFunc(("ENTER: m = %p\n", m));
|
---|
108 | ip = mtod(m, struct ip *);
|
---|
109 | Log2(("ip_dst=%RTnaipv4(len:%d) m_len = %d\n", ip->ip_dst, RT_N2H_U16(ip->ip_len), m->m_len));
|
---|
110 |
|
---|
111 | ipstat.ips_total++;
|
---|
112 |
|
---|
113 | mlen = m->m_len;
|
---|
114 |
|
---|
115 | if (mlen < sizeof(struct ip))
|
---|
116 | {
|
---|
117 | ipstat.ips_toosmall++;
|
---|
118 | goto bad_free_m;
|
---|
119 | }
|
---|
120 |
|
---|
121 | ip = mtod(m, struct ip *);
|
---|
122 | if (ip->ip_v != IPVERSION)
|
---|
123 | {
|
---|
124 | ipstat.ips_badvers++;
|
---|
125 | goto bad_free_m;
|
---|
126 | }
|
---|
127 |
|
---|
128 | hlen = ip->ip_hl << 2;
|
---|
129 | if ( hlen < sizeof(struct ip)
|
---|
130 | || hlen > mlen)
|
---|
131 | {
|
---|
132 | /* min header length */
|
---|
133 | ipstat.ips_badhlen++; /* or packet too short */
|
---|
134 | goto bad_free_m;
|
---|
135 | }
|
---|
136 |
|
---|
137 | /* keep ip header intact for ICMP reply
|
---|
138 | * ip->ip_sum = cksum(m, hlen);
|
---|
139 | * if (ip->ip_sum) {
|
---|
140 | */
|
---|
141 | if (cksum(m, hlen))
|
---|
142 | {
|
---|
143 | ipstat.ips_badsum++;
|
---|
144 | goto bad_free_m;
|
---|
145 | }
|
---|
146 |
|
---|
147 | iplen = RT_N2H_U16(ip->ip_len);
|
---|
148 | if (iplen < hlen)
|
---|
149 | {
|
---|
150 | ipstat.ips_badlen++;
|
---|
151 | goto bad_free_m;
|
---|
152 | }
|
---|
153 |
|
---|
154 | /*
|
---|
155 | * Check that the amount of data in the buffers
|
---|
156 | * is as at least much as the IP header would have us expect.
|
---|
157 | * Trim mbufs if longer than we expect.
|
---|
158 | * Drop packet if shorter than we expect.
|
---|
159 | */
|
---|
160 | if (mlen < iplen)
|
---|
161 | {
|
---|
162 | ipstat.ips_tooshort++;
|
---|
163 | goto bad_free_m;
|
---|
164 | }
|
---|
165 |
|
---|
166 | /* Should drop packet if mbuf too long? hmmm... */
|
---|
167 | if (mlen > iplen)
|
---|
168 | {
|
---|
169 | m_adj(m, iplen - mlen);
|
---|
170 | mlen = m->m_len;
|
---|
171 | }
|
---|
172 |
|
---|
173 | /* source must be unicast */
|
---|
174 | if ((ip->ip_src.s_addr & RT_N2H_U32_C(0xe0000000)) == RT_N2H_U32_C(0xe0000000))
|
---|
175 | goto free_m;
|
---|
176 |
|
---|
177 | /*
|
---|
178 | * Drop multicast (class d) and reserved (class e) here. The rest
|
---|
179 | * of the code is not yet prepared to deal with it. IGMP is not
|
---|
180 | * implemented either.
|
---|
181 | */
|
---|
182 | if ( (ip->ip_dst.s_addr & RT_N2H_U32_C(0xe0000000)) == RT_N2H_U32_C(0xe0000000)
|
---|
183 | && ip->ip_dst.s_addr != 0xffffffff)
|
---|
184 | {
|
---|
185 | goto free_m;
|
---|
186 | }
|
---|
187 |
|
---|
188 |
|
---|
189 | /* do we need to "forward" this packet? */
|
---|
190 | if (!CTL_CHECK_MINE(ip->ip_dst.s_addr))
|
---|
191 | {
|
---|
192 | if (ip->ip_ttl <= 1)
|
---|
193 | {
|
---|
194 | /* icmp_error expects these in host order */
|
---|
195 | NTOHS(ip->ip_len);
|
---|
196 | NTOHS(ip->ip_id);
|
---|
197 | NTOHS(ip->ip_off);
|
---|
198 |
|
---|
199 | icmp_error(pData, m, ICMP_TIMXCEED, ICMP_TIMXCEED_INTRANS, 0, "ttl");
|
---|
200 | goto no_free_m;
|
---|
201 | }
|
---|
202 |
|
---|
203 | /* ignore packets to other nodes from our private network */
|
---|
204 | if ( CTL_CHECK_NETWORK(ip->ip_dst.s_addr)
|
---|
205 | && !CTL_CHECK_BROADCAST(ip->ip_dst.s_addr))
|
---|
206 | {
|
---|
207 | /* XXX: send ICMP_REDIRECT_HOST to be pedantic? */
|
---|
208 | goto free_m;
|
---|
209 | }
|
---|
210 |
|
---|
211 | ip->ip_ttl--;
|
---|
212 | if (ip->ip_sum > RT_H2N_U16_C(0xffffU - (1 << 8)))
|
---|
213 | ip->ip_sum += RT_H2N_U16_C(1 << 8) + 1;
|
---|
214 | else
|
---|
215 | ip->ip_sum += RT_H2N_U16_C(1 << 8);
|
---|
216 | }
|
---|
217 |
|
---|
218 | /* run it through libalias */
|
---|
219 | {
|
---|
220 | int rc;
|
---|
221 | if (!(m->m_flags & M_SKIP_FIREWALL))
|
---|
222 | {
|
---|
223 | STAM_PROFILE_START(&pData->StatALIAS_input, b);
|
---|
224 | rc = LibAliasIn(pData->proxy_alias, mtod(m, char *), mlen);
|
---|
225 | STAM_PROFILE_STOP(&pData->StatALIAS_input, b);
|
---|
226 | Log2(("NAT: LibAlias return %d\n", rc));
|
---|
227 | }
|
---|
228 | else
|
---|
229 | m->m_flags &= ~M_SKIP_FIREWALL;
|
---|
230 |
|
---|
231 | #if 0 /* disabled: no module we use does it in this direction */
|
---|
232 | /*
|
---|
233 | * XXX: spooky action at a distance - libalias may modify the
|
---|
234 | * packet and will update ip_len to reflect the new length.
|
---|
235 | */
|
---|
236 | if (iplen != RT_N2H_U16(ip->ip_len))
|
---|
237 | {
|
---|
238 | iplen = RT_N2H_U16(ip->ip_len);
|
---|
239 | m->m_len = iplen;
|
---|
240 | mlen = m->m_len;
|
---|
241 | }
|
---|
242 | #endif
|
---|
243 | }
|
---|
244 |
|
---|
245 | /*
|
---|
246 | * Convert fields to host representation.
|
---|
247 | */
|
---|
248 | NTOHS(ip->ip_len);
|
---|
249 | NTOHS(ip->ip_id);
|
---|
250 | NTOHS(ip->ip_off);
|
---|
251 |
|
---|
252 | /*
|
---|
253 | * If offset or IP_MF are set, must reassemble.
|
---|
254 | * Otherwise, nothing need be done.
|
---|
255 | * (We could look in the reassembly queue to see
|
---|
256 | * if the packet was previously fragmented,
|
---|
257 | * but it's not worth the time; just let them time out.)
|
---|
258 | *
|
---|
259 | */
|
---|
260 | if (ip->ip_off & (IP_MF | IP_OFFMASK))
|
---|
261 | {
|
---|
262 | m = ip_reass(pData, m);
|
---|
263 | if (m == NULL)
|
---|
264 | goto no_free_m;
|
---|
265 | ip = mtod(m, struct ip *);
|
---|
266 | hlen = ip->ip_hl << 2;
|
---|
267 | }
|
---|
268 | else
|
---|
269 | ip->ip_len -= hlen;
|
---|
270 |
|
---|
271 | /*
|
---|
272 | * Switch out to protocol's input routine.
|
---|
273 | */
|
---|
274 | ipstat.ips_delivered++;
|
---|
275 | switch (ip->ip_p)
|
---|
276 | {
|
---|
277 | case IPPROTO_TCP:
|
---|
278 | tcp_input(pData, m, hlen, (struct socket *)NULL);
|
---|
279 | break;
|
---|
280 | case IPPROTO_UDP:
|
---|
281 | udp_input(pData, m, hlen);
|
---|
282 | break;
|
---|
283 | case IPPROTO_ICMP:
|
---|
284 | icmp_input(pData, m, hlen);
|
---|
285 | break;
|
---|
286 | default:
|
---|
287 | ipstat.ips_noproto++;
|
---|
288 | m_freem(pData, m);
|
---|
289 | }
|
---|
290 | goto no_free_m;
|
---|
291 |
|
---|
292 | bad_free_m:
|
---|
293 | Log2(("NAT: IP datagram to %RTnaipv4 with size(%d) claimed as bad\n",
|
---|
294 | ip->ip_dst, ip->ip_len));
|
---|
295 | free_m:
|
---|
296 | m_freem(pData, m);
|
---|
297 | no_free_m:
|
---|
298 | STAM_PROFILE_STOP(&pData->StatIP_input, a);
|
---|
299 | LogFlowFuncLeave();
|
---|
300 | return;
|
---|
301 | }
|
---|
302 |
|
---|
303 | struct mbuf *
|
---|
304 | ip_reass(PNATState pData, struct mbuf* m)
|
---|
305 | {
|
---|
306 | struct ip *ip;
|
---|
307 | struct mbuf *p, *q, *nq;
|
---|
308 | struct ipq_t *fp = NULL;
|
---|
309 | struct ipqhead *head;
|
---|
310 | int i, hlen, next;
|
---|
311 | u_short hash;
|
---|
312 |
|
---|
313 | /* If maxnipq or maxfragsperpacket are 0, never accept fragments. */
|
---|
314 | LogFlowFunc(("ENTER: m:%p\n", m));
|
---|
315 | if ( maxnipq == 0
|
---|
316 | || maxfragsperpacket == 0)
|
---|
317 | {
|
---|
318 | ipstat.ips_fragments++;
|
---|
319 | ipstat.ips_fragdropped++;
|
---|
320 | m_freem(pData, m);
|
---|
321 | LogFlowFunc(("LEAVE: NULL\n"));
|
---|
322 | return (NULL);
|
---|
323 | }
|
---|
324 |
|
---|
325 | ip = mtod(m, struct ip *);
|
---|
326 | hlen = ip->ip_hl << 2;
|
---|
327 |
|
---|
328 | hash = IPREASS_HASH(ip->ip_src.s_addr, ip->ip_id);
|
---|
329 | head = &ipq[hash];
|
---|
330 |
|
---|
331 | /*
|
---|
332 | * Look for queue of fragments
|
---|
333 | * of this datagram.
|
---|
334 | */
|
---|
335 | TAILQ_FOREACH(fp, head, ipq_list)
|
---|
336 | if (ip->ip_id == fp->ipq_id &&
|
---|
337 | ip->ip_src.s_addr == fp->ipq_src.s_addr &&
|
---|
338 | ip->ip_dst.s_addr == fp->ipq_dst.s_addr &&
|
---|
339 | ip->ip_p == fp->ipq_p)
|
---|
340 | goto found;
|
---|
341 |
|
---|
342 | fp = NULL;
|
---|
343 |
|
---|
344 | /*
|
---|
345 | * Attempt to trim the number of allocated fragment queues if it
|
---|
346 | * exceeds the administrative limit.
|
---|
347 | */
|
---|
348 | if ((nipq > maxnipq) && (maxnipq > 0))
|
---|
349 | {
|
---|
350 | /*
|
---|
351 | * drop something from the tail of the current queue
|
---|
352 | * before proceeding further
|
---|
353 | */
|
---|
354 | struct ipq_t *pHead = TAILQ_LAST(head, ipqhead);
|
---|
355 | if (pHead == NULL)
|
---|
356 | {
|
---|
357 | /* gak */
|
---|
358 | for (i = 0; i < IPREASS_NHASH; i++)
|
---|
359 | {
|
---|
360 | struct ipq_t *pTail = TAILQ_LAST(&ipq[i], ipqhead);
|
---|
361 | if (pTail)
|
---|
362 | {
|
---|
363 | ipstat.ips_fragtimeout += pTail->ipq_nfrags;
|
---|
364 | ip_freef(pData, &ipq[i], pTail);
|
---|
365 | break;
|
---|
366 | }
|
---|
367 | }
|
---|
368 | }
|
---|
369 | else
|
---|
370 | {
|
---|
371 | ipstat.ips_fragtimeout += pHead->ipq_nfrags;
|
---|
372 | ip_freef(pData, head, pHead);
|
---|
373 | }
|
---|
374 | }
|
---|
375 |
|
---|
376 | found:
|
---|
377 | /*
|
---|
378 | * Adjust ip_len to not reflect header,
|
---|
379 | * convert offset of this to bytes.
|
---|
380 | */
|
---|
381 | ip->ip_len -= hlen;
|
---|
382 | if (ip->ip_off & IP_MF)
|
---|
383 | {
|
---|
384 | /*
|
---|
385 | * Make sure that fragments have a data length
|
---|
386 | * that's a non-zero multiple of 8 bytes.
|
---|
387 | */
|
---|
388 | if (ip->ip_len == 0 || (ip->ip_len & 0x7) != 0)
|
---|
389 | {
|
---|
390 | ipstat.ips_toosmall++; /* XXX */
|
---|
391 | goto dropfrag;
|
---|
392 | }
|
---|
393 | m->m_flags |= M_FRAG;
|
---|
394 | }
|
---|
395 | else
|
---|
396 | m->m_flags &= ~M_FRAG;
|
---|
397 | ip->ip_off <<= 3;
|
---|
398 |
|
---|
399 |
|
---|
400 | /*
|
---|
401 | * Attempt reassembly; if it succeeds, proceed.
|
---|
402 | * ip_reass() will return a different mbuf.
|
---|
403 | */
|
---|
404 | ipstat.ips_fragments++;
|
---|
405 |
|
---|
406 | /* Previous ip_reass() started here. */
|
---|
407 | /*
|
---|
408 | * Presence of header sizes in mbufs
|
---|
409 | * would confuse code below.
|
---|
410 | */
|
---|
411 | m->m_data += hlen;
|
---|
412 | m->m_len -= hlen;
|
---|
413 |
|
---|
414 | /*
|
---|
415 | * If first fragment to arrive, create a reassembly queue.
|
---|
416 | */
|
---|
417 | if (fp == NULL)
|
---|
418 | {
|
---|
419 | fp = RTMemAlloc(sizeof(struct ipq_t));
|
---|
420 | if (fp == NULL)
|
---|
421 | goto dropfrag;
|
---|
422 | TAILQ_INSERT_HEAD(head, fp, ipq_list);
|
---|
423 | nipq++;
|
---|
424 | fp->ipq_nfrags = 1;
|
---|
425 | fp->ipq_ttl = IPFRAGTTL;
|
---|
426 | fp->ipq_p = ip->ip_p;
|
---|
427 | fp->ipq_id = ip->ip_id;
|
---|
428 | fp->ipq_src = ip->ip_src;
|
---|
429 | fp->ipq_dst = ip->ip_dst;
|
---|
430 | fp->ipq_frags = m;
|
---|
431 | m->m_nextpkt = NULL;
|
---|
432 | goto done;
|
---|
433 | }
|
---|
434 | else
|
---|
435 | {
|
---|
436 | fp->ipq_nfrags++;
|
---|
437 | }
|
---|
438 |
|
---|
439 | #define GETIP(m) ((struct ip*)((m)->m_pkthdr.header))
|
---|
440 |
|
---|
441 | /*
|
---|
442 | * Find a segment which begins after this one does.
|
---|
443 | */
|
---|
444 | for (p = NULL, q = fp->ipq_frags; q; p = q, q = q->m_nextpkt)
|
---|
445 | if (GETIP(q)->ip_off > ip->ip_off)
|
---|
446 | break;
|
---|
447 |
|
---|
448 | /*
|
---|
449 | * If there is a preceding segment, it may provide some of
|
---|
450 | * our data already. If so, drop the data from the incoming
|
---|
451 | * segment. If it provides all of our data, drop us, otherwise
|
---|
452 | * stick new segment in the proper place.
|
---|
453 | *
|
---|
454 | * If some of the data is dropped from the preceding
|
---|
455 | * segment, then it's checksum is invalidated.
|
---|
456 | */
|
---|
457 | if (p)
|
---|
458 | {
|
---|
459 | i = GETIP(p)->ip_off + GETIP(p)->ip_len - ip->ip_off;
|
---|
460 | if (i > 0)
|
---|
461 | {
|
---|
462 | if (i >= ip->ip_len)
|
---|
463 | goto dropfrag;
|
---|
464 | m_adj(m, i);
|
---|
465 | ip->ip_off += i;
|
---|
466 | ip->ip_len -= i;
|
---|
467 | }
|
---|
468 | m->m_nextpkt = p->m_nextpkt;
|
---|
469 | p->m_nextpkt = m;
|
---|
470 | }
|
---|
471 | else
|
---|
472 | {
|
---|
473 | m->m_nextpkt = fp->ipq_frags;
|
---|
474 | fp->ipq_frags = m;
|
---|
475 | }
|
---|
476 |
|
---|
477 | /*
|
---|
478 | * While we overlap succeeding segments trim them or,
|
---|
479 | * if they are completely covered, dequeue them.
|
---|
480 | */
|
---|
481 | for (; q != NULL && ip->ip_off + ip->ip_len > GETIP(q)->ip_off;
|
---|
482 | q = nq)
|
---|
483 | {
|
---|
484 | i = (ip->ip_off + ip->ip_len) - GETIP(q)->ip_off;
|
---|
485 | if (i < GETIP(q)->ip_len)
|
---|
486 | {
|
---|
487 | GETIP(q)->ip_len -= i;
|
---|
488 | GETIP(q)->ip_off += i;
|
---|
489 | m_adj(q, i);
|
---|
490 | break;
|
---|
491 | }
|
---|
492 | nq = q->m_nextpkt;
|
---|
493 | m->m_nextpkt = nq;
|
---|
494 | ipstat.ips_fragdropped++;
|
---|
495 | fp->ipq_nfrags--;
|
---|
496 | m_freem(pData, q);
|
---|
497 | }
|
---|
498 |
|
---|
499 | /*
|
---|
500 | * Check for complete reassembly and perform frag per packet
|
---|
501 | * limiting.
|
---|
502 | *
|
---|
503 | * Frag limiting is performed here so that the nth frag has
|
---|
504 | * a chance to complete the packet before we drop the packet.
|
---|
505 | * As a result, n+1 frags are actually allowed per packet, but
|
---|
506 | * only n will ever be stored. (n = maxfragsperpacket.)
|
---|
507 | *
|
---|
508 | */
|
---|
509 | next = 0;
|
---|
510 | for (p = NULL, q = fp->ipq_frags; q; p = q, q = q->m_nextpkt)
|
---|
511 | {
|
---|
512 | if (GETIP(q)->ip_off != next)
|
---|
513 | {
|
---|
514 | if (fp->ipq_nfrags > maxfragsperpacket)
|
---|
515 | {
|
---|
516 | ipstat.ips_fragdropped += fp->ipq_nfrags;
|
---|
517 | ip_freef(pData, head, fp);
|
---|
518 | }
|
---|
519 | goto done;
|
---|
520 | }
|
---|
521 | next += GETIP(q)->ip_len;
|
---|
522 | }
|
---|
523 | /* Make sure the last packet didn't have the IP_MF flag */
|
---|
524 | if (p->m_flags & M_FRAG)
|
---|
525 | {
|
---|
526 | if (fp->ipq_nfrags > maxfragsperpacket)
|
---|
527 | {
|
---|
528 | ipstat.ips_fragdropped += fp->ipq_nfrags;
|
---|
529 | ip_freef(pData, head, fp);
|
---|
530 | }
|
---|
531 | goto done;
|
---|
532 | }
|
---|
533 |
|
---|
534 | /*
|
---|
535 | * Reassembly is complete. Make sure the packet is a sane size.
|
---|
536 | */
|
---|
537 | q = fp->ipq_frags;
|
---|
538 | ip = GETIP(q);
|
---|
539 | hlen = ip->ip_hl << 2;
|
---|
540 | if (next + hlen > IP_MAXPACKET)
|
---|
541 | {
|
---|
542 | ipstat.ips_fragdropped += fp->ipq_nfrags;
|
---|
543 | ip_freef(pData, head, fp);
|
---|
544 | goto done;
|
---|
545 | }
|
---|
546 |
|
---|
547 | /*
|
---|
548 | * Concatenate fragments.
|
---|
549 | */
|
---|
550 | m = q;
|
---|
551 | nq = q->m_nextpkt;
|
---|
552 | q->m_nextpkt = NULL;
|
---|
553 | for (q = nq; q != NULL; q = nq)
|
---|
554 | {
|
---|
555 | nq = q->m_nextpkt;
|
---|
556 | q->m_nextpkt = NULL;
|
---|
557 | m_cat(pData, m, q);
|
---|
558 |
|
---|
559 | m->m_len += hlen;
|
---|
560 | m->m_data -= hlen;
|
---|
561 | ip = mtod(m, struct ip *); /*update ip pointer */
|
---|
562 | hlen = ip->ip_hl << 2;
|
---|
563 | m->m_len -= hlen;
|
---|
564 | m->m_data += hlen;
|
---|
565 | }
|
---|
566 | m->m_len += hlen;
|
---|
567 | m->m_data -= hlen;
|
---|
568 |
|
---|
569 | /*
|
---|
570 | * Create header for new ip packet by modifying header of first
|
---|
571 | * packet; dequeue and discard fragment reassembly header.
|
---|
572 | * Make header visible.
|
---|
573 | */
|
---|
574 |
|
---|
575 | ip->ip_len = next;
|
---|
576 | ip->ip_src = fp->ipq_src;
|
---|
577 | ip->ip_dst = fp->ipq_dst;
|
---|
578 | TAILQ_REMOVE(head, fp, ipq_list);
|
---|
579 | nipq--;
|
---|
580 | RTMemFree(fp);
|
---|
581 |
|
---|
582 | Assert((ip->ip_len == next));
|
---|
583 | /* some debugging cruft by sklower, below, will go away soon */
|
---|
584 | #if 0
|
---|
585 | if (m->m_flags & M_PKTHDR) /* XXX this should be done elsewhere */
|
---|
586 | m_fixhdr(m);
|
---|
587 | #endif
|
---|
588 | ipstat.ips_reassembled++;
|
---|
589 | LogFlowFunc(("LEAVE: %p\n", m));
|
---|
590 | return (m);
|
---|
591 |
|
---|
592 | dropfrag:
|
---|
593 | ipstat.ips_fragdropped++;
|
---|
594 | if (fp != NULL)
|
---|
595 | fp->ipq_nfrags--;
|
---|
596 | m_freem(pData, m);
|
---|
597 |
|
---|
598 | done:
|
---|
599 | LogFlowFunc(("LEAVE: NULL\n"));
|
---|
600 | return NULL;
|
---|
601 |
|
---|
602 | #undef GETIP
|
---|
603 | }
|
---|
604 |
|
---|
605 | void
|
---|
606 | ip_freef(PNATState pData, struct ipqhead *fhp, struct ipq_t *fp)
|
---|
607 | {
|
---|
608 | struct mbuf *q;
|
---|
609 |
|
---|
610 | while (fp->ipq_frags)
|
---|
611 | {
|
---|
612 | q = fp->ipq_frags;
|
---|
613 | fp->ipq_frags = q->m_nextpkt;
|
---|
614 | m_freem(pData, q);
|
---|
615 | }
|
---|
616 | TAILQ_REMOVE(fhp, fp, ipq_list);
|
---|
617 | RTMemFree(fp);
|
---|
618 | nipq--;
|
---|
619 | }
|
---|
620 |
|
---|
621 | /*
|
---|
622 | * IP timer processing;
|
---|
623 | * if a timer expires on a reassembly
|
---|
624 | * queue, discard it.
|
---|
625 | */
|
---|
626 | void
|
---|
627 | ip_slowtimo(PNATState pData)
|
---|
628 | {
|
---|
629 | register struct ipq_t *fp;
|
---|
630 |
|
---|
631 | /* XXX: the fragment expiration is the same but requier
|
---|
632 | * additional loop see (see ip_input.c in FreeBSD tree)
|
---|
633 | */
|
---|
634 | int i;
|
---|
635 | LogFlow(("ip_slowtimo:\n"));
|
---|
636 | for (i = 0; i < IPREASS_NHASH; i++)
|
---|
637 | {
|
---|
638 | for(fp = TAILQ_FIRST(&ipq[i]); fp;)
|
---|
639 | {
|
---|
640 | struct ipq_t *fpp;
|
---|
641 |
|
---|
642 | fpp = fp;
|
---|
643 | fp = TAILQ_NEXT(fp, ipq_list);
|
---|
644 | if(--fpp->ipq_ttl == 0)
|
---|
645 | {
|
---|
646 | ipstat.ips_fragtimeout += fpp->ipq_nfrags;
|
---|
647 | ip_freef(pData, &ipq[i], fpp);
|
---|
648 | }
|
---|
649 | }
|
---|
650 | }
|
---|
651 | /*
|
---|
652 | * If we are over the maximum number of fragments
|
---|
653 | * (due to the limit being lowered), drain off
|
---|
654 | * enough to get down to the new limit.
|
---|
655 | */
|
---|
656 | if (maxnipq >= 0 && nipq > maxnipq)
|
---|
657 | {
|
---|
658 | for (i = 0; i < IPREASS_NHASH; i++)
|
---|
659 | {
|
---|
660 | while (nipq > maxnipq && !TAILQ_EMPTY(&ipq[i]))
|
---|
661 | {
|
---|
662 | ipstat.ips_fragdropped += TAILQ_FIRST(&ipq[i])->ipq_nfrags;
|
---|
663 | ip_freef(pData, &ipq[i], TAILQ_FIRST(&ipq[i]));
|
---|
664 | }
|
---|
665 | }
|
---|
666 | }
|
---|
667 | }
|
---|
668 |
|
---|
669 |
|
---|
670 | /*
|
---|
671 | * Strip out IP options, at higher
|
---|
672 | * level protocol in the kernel.
|
---|
673 | * Second argument is buffer to which options
|
---|
674 | * will be moved, and return value is their length.
|
---|
675 | * (XXX) should be deleted; last arg currently ignored.
|
---|
676 | */
|
---|
677 | void
|
---|
678 | ip_stripoptions(struct mbuf *m, struct mbuf *mopt)
|
---|
679 | {
|
---|
680 | register int i;
|
---|
681 | struct ip *ip = mtod(m, struct ip *);
|
---|
682 | register caddr_t opts;
|
---|
683 | int olen;
|
---|
684 | NOREF(mopt); /** @todo do we really will need this options buffer? */
|
---|
685 |
|
---|
686 | olen = (ip->ip_hl<<2) - sizeof(struct ip);
|
---|
687 | opts = (caddr_t)(ip + 1);
|
---|
688 | i = m->m_len - (sizeof(struct ip) + olen);
|
---|
689 | memcpy(opts, opts + olen, (unsigned)i);
|
---|
690 | m->m_len -= olen;
|
---|
691 |
|
---|
692 | ip->ip_hl = sizeof(struct ip) >> 2;
|
---|
693 | }
|
---|