blob: d7fa2bf3a0c14b9e7cb9f5c8b80c15095a043866 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The IP fragmentation functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Version: $Id: ip_fragment.c,v 1.59 2002/01/12 07:54:56 davem Exp $
9 *
10 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
11 * Alan Cox <Alan.Cox@linux.org>
12 *
13 * Fixes:
14 * Alan Cox : Split from ip.c , see ip_input.c for history.
15 * David S. Miller : Begin massive cleanup...
16 * Andi Kleen : Add sysctls.
17 * xxxx : Overlapfrag bug.
18 * Ultima : ip_expire() kernel panic.
19 * Bill Hawes : Frag accounting and evictor fixes.
20 * John McDonald : 0 length frag bug.
21 * Alexey Kuznetsov: SMP races, threading, cleanup.
22 * Patrick McHardy : LRU queue of frag heads for evictor.
23 */
24
Herbert Xu89cee8b2005-12-13 23:14:27 -080025#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/jiffies.h>
30#include <linux/skbuff.h>
31#include <linux/list.h>
32#include <linux/ip.h>
33#include <linux/icmp.h>
34#include <linux/netdevice.h>
35#include <linux/jhash.h>
36#include <linux/random.h>
37#include <net/sock.h>
38#include <net/ip.h>
39#include <net/icmp.h>
40#include <net/checksum.h>
Herbert Xu89cee8b2005-12-13 23:14:27 -080041#include <net/inetpeer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/tcp.h>
43#include <linux/udp.h>
44#include <linux/inet.h>
45#include <linux/netfilter_ipv4.h>
46
47/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
48 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
49 * as well. Or notify me, at least. --ANK
50 */
51
52/* Fragment cache limits. We will commit 256K at one time. Should we
53 * cross that limit we will prune down to 192K. This should cope with
54 * even the most extreme cases without allowing an attacker to measurably
55 * harm machine performance.
56 */
Brian Haleyab32ea52006-09-22 14:15:41 -070057int sysctl_ipfrag_high_thresh __read_mostly = 256*1024;
58int sysctl_ipfrag_low_thresh __read_mostly = 192*1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Brian Haleyab32ea52006-09-22 14:15:41 -070060int sysctl_ipfrag_max_dist __read_mostly = 64;
Herbert Xu89cee8b2005-12-13 23:14:27 -080061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* Important NOTE! Fragment queue must be destroyed before MSL expires.
63 * RFC791 is wrong proposing to prolongate timer each fragment arrival by TTL.
64 */
Brian Haleyab32ea52006-09-22 14:15:41 -070065int sysctl_ipfrag_time __read_mostly = IP_FRAG_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67struct ipfrag_skb_cb
68{
69 struct inet_skb_parm h;
70 int offset;
71};
72
73#define FRAG_CB(skb) ((struct ipfrag_skb_cb*)((skb)->cb))
74
75/* Describe an entry in the "incomplete datagrams" queue. */
76struct ipq {
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -080077 struct hlist_node list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct list_head lru_list; /* lru list member */
79 u32 user;
Al Viro18277772006-09-26 22:19:02 -070080 __be32 saddr;
81 __be32 daddr;
82 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 u8 protocol;
84 u8 last_in;
85#define COMPLETE 4
86#define FIRST_IN 2
87#define LAST_IN 1
88
89 struct sk_buff *fragments; /* linked list of received fragments */
90 int len; /* total length of original datagram */
91 int meat;
92 spinlock_t lock;
93 atomic_t refcnt;
94 struct timer_list timer; /* when will this queue expire? */
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -070095 ktime_t stamp;
Herbert Xu89cee8b2005-12-13 23:14:27 -080096 int iif;
97 unsigned int rid;
98 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101/* Hash table. */
102
103#define IPQ_HASHSZ 64
104
105/* Per-bucket lock is easy to add now. */
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800106static struct hlist_head ipq_hash[IPQ_HASHSZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static DEFINE_RWLOCK(ipfrag_lock);
108static u32 ipfrag_hash_rnd;
109static LIST_HEAD(ipq_lru_list);
110int ip_frag_nqueues = 0;
111
Herbert Xu1706d582007-10-14 00:38:15 -0700112static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
113 struct net_device *dev);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static __inline__ void __ipq_unlink(struct ipq *qp)
116{
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800117 hlist_del(&qp->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 list_del(&qp->lru_list);
119 ip_frag_nqueues--;
120}
121
122static __inline__ void ipq_unlink(struct ipq *ipq)
123{
124 write_lock(&ipfrag_lock);
125 __ipq_unlink(ipq);
126 write_unlock(&ipfrag_lock);
127}
128
Al Viro18277772006-09-26 22:19:02 -0700129static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Al Viro18277772006-09-26 22:19:02 -0700131 return jhash_3words((__force u32)id << 16 | prot,
132 (__force u32)saddr, (__force u32)daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 ipfrag_hash_rnd) & (IPQ_HASHSZ - 1);
134}
135
136static struct timer_list ipfrag_secret_timer;
Brian Haleyab32ea52006-09-22 14:15:41 -0700137int sysctl_ipfrag_secret_interval __read_mostly = 10 * 60 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139static void ipfrag_secret_rebuild(unsigned long dummy)
140{
141 unsigned long now = jiffies;
142 int i;
143
144 write_lock(&ipfrag_lock);
145 get_random_bytes(&ipfrag_hash_rnd, sizeof(u32));
146 for (i = 0; i < IPQ_HASHSZ; i++) {
147 struct ipq *q;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800148 struct hlist_node *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800150 hlist_for_each_entry_safe(q, p, n, &ipq_hash[i], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 unsigned int hval = ipqhashfn(q->id, q->saddr,
152 q->daddr, q->protocol);
153
154 if (hval != i) {
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800155 hlist_del(&q->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* Relink to new hash chain. */
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800158 hlist_add_head(&q->list, &ipq_hash[hval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161 }
162 write_unlock(&ipfrag_lock);
163
164 mod_timer(&ipfrag_secret_timer, now + sysctl_ipfrag_secret_interval);
165}
166
167atomic_t ip_frag_mem = ATOMIC_INIT(0); /* Memory used for fragments */
168
169/* Memory Tracking Functions. */
170static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work)
171{
172 if (work)
173 *work -= skb->truesize;
174 atomic_sub(skb->truesize, &ip_frag_mem);
175 kfree_skb(skb);
176}
177
178static __inline__ void frag_free_queue(struct ipq *qp, int *work)
179{
180 if (work)
181 *work -= sizeof(struct ipq);
182 atomic_sub(sizeof(struct ipq), &ip_frag_mem);
183 kfree(qp);
184}
185
186static __inline__ struct ipq *frag_alloc_queue(void)
187{
188 struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC);
189
Stephen Hemminger132adf52007-03-08 20:44:43 -0800190 if (!qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return NULL;
192 atomic_add(sizeof(struct ipq), &ip_frag_mem);
193 return qp;
194}
195
196
197/* Destruction primitives. */
198
199/* Complete destruction of ipq. */
200static void ip_frag_destroy(struct ipq *qp, int *work)
201{
202 struct sk_buff *fp;
203
204 BUG_TRAP(qp->last_in&COMPLETE);
205 BUG_TRAP(del_timer(&qp->timer) == 0);
206
Herbert Xu89cee8b2005-12-13 23:14:27 -0800207 if (qp->peer)
208 inet_putpeer(qp->peer);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Release all fragment data. */
211 fp = qp->fragments;
212 while (fp) {
213 struct sk_buff *xp = fp->next;
214
215 frag_kfree_skb(fp, work);
216 fp = xp;
217 }
218
219 /* Finally, release the queue descriptor itself. */
220 frag_free_queue(qp, work);
221}
222
223static __inline__ void ipq_put(struct ipq *ipq, int *work)
224{
225 if (atomic_dec_and_test(&ipq->refcnt))
226 ip_frag_destroy(ipq, work);
227}
228
229/* Kill ipq entry. It is not destroyed immediately,
230 * because caller (and someone more) holds reference count.
231 */
232static void ipq_kill(struct ipq *ipq)
233{
234 if (del_timer(&ipq->timer))
235 atomic_dec(&ipq->refcnt);
236
237 if (!(ipq->last_in & COMPLETE)) {
238 ipq_unlink(ipq);
239 atomic_dec(&ipq->refcnt);
240 ipq->last_in |= COMPLETE;
241 }
242}
243
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900244/* Memory limiting on fragments. Evictor trashes the oldest
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * fragment queue until we are back under the threshold.
246 */
247static void ip_evictor(void)
248{
249 struct ipq *qp;
250 struct list_head *tmp;
251 int work;
252
253 work = atomic_read(&ip_frag_mem) - sysctl_ipfrag_low_thresh;
254 if (work <= 0)
255 return;
256
257 while (work > 0) {
258 read_lock(&ipfrag_lock);
259 if (list_empty(&ipq_lru_list)) {
260 read_unlock(&ipfrag_lock);
261 return;
262 }
263 tmp = ipq_lru_list.next;
264 qp = list_entry(tmp, struct ipq, lru_list);
265 atomic_inc(&qp->refcnt);
266 read_unlock(&ipfrag_lock);
267
268 spin_lock(&qp->lock);
269 if (!(qp->last_in&COMPLETE))
270 ipq_kill(qp);
271 spin_unlock(&qp->lock);
272
273 ipq_put(qp, &work);
274 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
275 }
276}
277
278/*
279 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
280 */
281static void ip_expire(unsigned long arg)
282{
283 struct ipq *qp = (struct ipq *) arg;
284
285 spin_lock(&qp->lock);
286
287 if (qp->last_in & COMPLETE)
288 goto out;
289
290 ipq_kill(qp);
291
292 IP_INC_STATS_BH(IPSTATS_MIB_REASMTIMEOUT);
293 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
294
295 if ((qp->last_in&FIRST_IN) && qp->fragments != NULL) {
296 struct sk_buff *head = qp->fragments;
297 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700298 if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
300 dev_put(head->dev);
301 }
302 }
303out:
304 spin_unlock(&qp->lock);
305 ipq_put(qp, NULL);
306}
307
308/* Creation primitives. */
309
David S. Miller55c00222006-04-09 22:43:55 -0700310static struct ipq *ip_frag_intern(struct ipq *qp_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800313#ifdef CONFIG_SMP
314 struct hlist_node *n;
315#endif
David S. Miller55c00222006-04-09 22:43:55 -0700316 unsigned int hash;
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 write_lock(&ipfrag_lock);
David S. Miller55c00222006-04-09 22:43:55 -0700319 hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
320 qp_in->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#ifdef CONFIG_SMP
322 /* With SMP race we have to recheck hash table, because
323 * such entry could be created on other cpu, while we
324 * promoted read lock to write lock.
325 */
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800326 hlist_for_each_entry(qp, n, &ipq_hash[hash], list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800327 if (qp->id == qp_in->id &&
328 qp->saddr == qp_in->saddr &&
329 qp->daddr == qp_in->daddr &&
330 qp->protocol == qp_in->protocol &&
331 qp->user == qp_in->user) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 atomic_inc(&qp->refcnt);
333 write_unlock(&ipfrag_lock);
334 qp_in->last_in |= COMPLETE;
335 ipq_put(qp_in, NULL);
336 return qp;
337 }
338 }
339#endif
340 qp = qp_in;
341
342 if (!mod_timer(&qp->timer, jiffies + sysctl_ipfrag_time))
343 atomic_inc(&qp->refcnt);
344
345 atomic_inc(&qp->refcnt);
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800346 hlist_add_head(&qp->list, &ipq_hash[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 INIT_LIST_HEAD(&qp->lru_list);
348 list_add_tail(&qp->lru_list, &ipq_lru_list);
349 ip_frag_nqueues++;
350 write_unlock(&ipfrag_lock);
351 return qp;
352}
353
354/* Add an entry to the 'ipq' queue for a newly received IP datagram. */
David S. Miller55c00222006-04-09 22:43:55 -0700355static struct ipq *ip_frag_create(struct iphdr *iph, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct ipq *qp;
358
359 if ((qp = frag_alloc_queue()) == NULL)
360 goto out_nomem;
361
362 qp->protocol = iph->protocol;
363 qp->last_in = 0;
364 qp->id = iph->id;
365 qp->saddr = iph->saddr;
366 qp->daddr = iph->daddr;
367 qp->user = user;
368 qp->len = 0;
369 qp->meat = 0;
370 qp->fragments = NULL;
371 qp->iif = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800372 qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* Initialize a timer for this entry. */
375 init_timer(&qp->timer);
376 qp->timer.data = (unsigned long) qp; /* pointer to queue */
377 qp->timer.function = ip_expire; /* expire function */
378 spin_lock_init(&qp->lock);
379 atomic_set(&qp->refcnt, 1);
380
David S. Miller55c00222006-04-09 22:43:55 -0700381 return ip_frag_intern(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383out_nomem:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700384 LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return NULL;
386}
387
388/* Find the correct entry in the "incomplete datagrams" queue for
389 * this IP datagram, and create new one, if nothing is found.
390 */
391static inline struct ipq *ip_find(struct iphdr *iph, u32 user)
392{
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800393 __be16 id = iph->id;
Al Viro18277772006-09-26 22:19:02 -0700394 __be32 saddr = iph->saddr;
395 __be32 daddr = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 __u8 protocol = iph->protocol;
David S. Miller55c00222006-04-09 22:43:55 -0700397 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800399 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 read_lock(&ipfrag_lock);
David S. Miller55c00222006-04-09 22:43:55 -0700402 hash = ipqhashfn(id, saddr, daddr, protocol);
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800403 hlist_for_each_entry(qp, n, &ipq_hash[hash], list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800404 if (qp->id == id &&
405 qp->saddr == saddr &&
406 qp->daddr == daddr &&
407 qp->protocol == protocol &&
408 qp->user == user) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 atomic_inc(&qp->refcnt);
410 read_unlock(&ipfrag_lock);
411 return qp;
412 }
413 }
414 read_unlock(&ipfrag_lock);
415
David S. Miller55c00222006-04-09 22:43:55 -0700416 return ip_frag_create(iph, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Herbert Xu89cee8b2005-12-13 23:14:27 -0800419/* Is the fragment too far ahead to be part of ipq? */
420static inline int ip_frag_too_far(struct ipq *qp)
421{
422 struct inet_peer *peer = qp->peer;
423 unsigned int max = sysctl_ipfrag_max_dist;
424 unsigned int start, end;
425
426 int rc;
427
428 if (!peer || !max)
429 return 0;
430
431 start = qp->rid;
432 end = atomic_inc_return(&peer->rid);
433 qp->rid = end;
434
435 rc = qp->fragments && (end - start) > max;
436
437 if (rc) {
438 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
439 }
440
441 return rc;
442}
443
444static int ip_frag_reinit(struct ipq *qp)
445{
446 struct sk_buff *fp;
447
448 if (!mod_timer(&qp->timer, jiffies + sysctl_ipfrag_time)) {
449 atomic_inc(&qp->refcnt);
450 return -ETIMEDOUT;
451 }
452
453 fp = qp->fragments;
454 do {
455 struct sk_buff *xp = fp->next;
456 frag_kfree_skb(fp, NULL);
457 fp = xp;
458 } while (fp);
459
460 qp->last_in = 0;
461 qp->len = 0;
462 qp->meat = 0;
463 qp->fragments = NULL;
464 qp->iif = 0;
465
466 return 0;
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700470static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700473 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int flags, offset;
475 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700476 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (qp->last_in & COMPLETE)
479 goto err;
480
Herbert Xu89cee8b2005-12-13 23:14:27 -0800481 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700482 unlikely(ip_frag_too_far(qp)) &&
483 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800484 ipq_kill(qp);
485 goto err;
486 }
487
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700488 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 flags = offset & ~IP_OFFSET;
490 offset &= IP_OFFSET;
491 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300492 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /* Determine the position of this fragment. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900495 end = offset + skb->len - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700496 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* Is this the final fragment? */
499 if ((flags & IP_MF) == 0) {
500 /* If we already have some bits beyond end
501 * or have different end, the segment is corrrupted.
502 */
503 if (end < qp->len ||
504 ((qp->last_in & LAST_IN) && end != qp->len))
505 goto err;
506 qp->last_in |= LAST_IN;
507 qp->len = end;
508 } else {
509 if (end&7) {
510 end &= ~7;
511 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
512 skb->ip_summed = CHECKSUM_NONE;
513 }
514 if (end > qp->len) {
515 /* Some bits beyond end -> corruption. */
516 if (qp->last_in & LAST_IN)
517 goto err;
518 qp->len = end;
519 }
520 }
521 if (end == offset)
522 goto err;
523
Herbert Xu1706d582007-10-14 00:38:15 -0700524 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (pskb_pull(skb, ihl) == NULL)
526 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700527
528 err = pskb_trim_rcsum(skb, end - offset);
529 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 goto err;
531
532 /* Find out which fragments are in front and at the back of us
533 * in the chain of fragments so far. We must know where to put
534 * this fragment, right?
535 */
536 prev = NULL;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800537 for (next = qp->fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (FRAG_CB(next)->offset >= offset)
539 break; /* bingo! */
540 prev = next;
541 }
542
543 /* We found where to put this one. Check for overlap with
544 * preceding fragment, and, if needed, align things so that
545 * any overlaps are eliminated.
546 */
547 if (prev) {
548 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
549
550 if (i > 0) {
551 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700552 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (end <= offset)
554 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700555 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!pskb_pull(skb, i))
557 goto err;
558 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
559 skb->ip_summed = CHECKSUM_NONE;
560 }
561 }
562
Herbert Xu1706d582007-10-14 00:38:15 -0700563 err = -ENOMEM;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 while (next && FRAG_CB(next)->offset < end) {
566 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
567
568 if (i < next->len) {
569 /* Eat head of the next overlapped fragment
570 * and leave the loop. The next ones cannot overlap.
571 */
572 if (!pskb_pull(next, i))
573 goto err;
574 FRAG_CB(next)->offset += i;
575 qp->meat -= i;
576 if (next->ip_summed != CHECKSUM_UNNECESSARY)
577 next->ip_summed = CHECKSUM_NONE;
578 break;
579 } else {
580 struct sk_buff *free_it = next;
581
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100582 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * new one drop it.
584 */
585 next = next->next;
586
587 if (prev)
588 prev->next = next;
589 else
590 qp->fragments = next;
591
592 qp->meat -= free_it->len;
593 frag_kfree_skb(free_it, NULL);
594 }
595 }
596
597 FRAG_CB(skb)->offset = offset;
598
599 /* Insert this fragment in the chain of fragments. */
600 skb->next = next;
601 if (prev)
602 prev->next = skb;
603 else
604 qp->fragments = skb;
605
Herbert Xu1706d582007-10-14 00:38:15 -0700606 dev = skb->dev;
607 if (dev) {
608 qp->iif = dev->ifindex;
609 skb->dev = NULL;
610 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700611 qp->stamp = skb->tstamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 qp->meat += skb->len;
613 atomic_add(skb->truesize, &ip_frag_mem);
614 if (offset == 0)
615 qp->last_in |= FIRST_IN;
616
Herbert Xu1706d582007-10-14 00:38:15 -0700617 if (qp->last_in == (FIRST_IN | LAST_IN) && qp->meat == qp->len)
618 return ip_frag_reasm(qp, prev, dev);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 write_lock(&ipfrag_lock);
621 list_move_tail(&qp->lru_list, &ipq_lru_list);
622 write_unlock(&ipfrag_lock);
Herbert Xu1706d582007-10-14 00:38:15 -0700623 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625err:
626 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700627 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630
631/* Build a new IP datagram from all its fragments. */
632
Herbert Xu1706d582007-10-14 00:38:15 -0700633static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
634 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct iphdr *iph;
637 struct sk_buff *fp, *head = qp->fragments;
638 int len;
639 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700640 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 ipq_kill(qp);
643
Herbert Xu1706d582007-10-14 00:38:15 -0700644 /* Make the one we just received the head. */
645 if (prev) {
646 head = prev->next;
647 fp = skb_clone(head, GFP_ATOMIC);
648
649 if (!fp)
650 goto out_nomem;
651
652 fp->next = head->next;
653 prev->next = fp;
654
655 skb_morph(head, qp->fragments);
656 head->next = qp->fragments->next;
657
658 kfree_skb(qp->fragments);
659 qp->fragments = head;
660 }
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 BUG_TRAP(head != NULL);
663 BUG_TRAP(FRAG_CB(head)->offset == 0);
664
665 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300666 ihlen = ip_hdrlen(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 len = ihlen + qp->len;
668
Herbert Xu1706d582007-10-14 00:38:15 -0700669 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800670 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 goto out_oversize;
672
673 /* Head of list must not be cloned. */
Herbert Xu1706d582007-10-14 00:38:15 -0700674 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
676 goto out_nomem;
677
678 /* If the first fragment is fragmented itself, we split
679 * it to two chunks: the first with data and paged part
680 * and the second, holding only fragments. */
681 if (skb_shinfo(head)->frag_list) {
682 struct sk_buff *clone;
683 int i, plen = 0;
684
685 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
686 goto out_nomem;
687 clone->next = head->next;
688 head->next = clone;
689 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
690 skb_shinfo(head)->frag_list = NULL;
691 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
692 plen += skb_shinfo(head)->frags[i].size;
693 clone->len = clone->data_len = head->data_len - plen;
694 head->data_len -= clone->len;
695 head->len -= clone->len;
696 clone->csum = 0;
697 clone->ip_summed = head->ip_summed;
698 atomic_add(clone->truesize, &ip_frag_mem);
699 }
700
701 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700702 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 atomic_sub(head->truesize, &ip_frag_mem);
704
705 for (fp=head->next; fp; fp = fp->next) {
706 head->data_len += fp->len;
707 head->len += fp->len;
708 if (head->ip_summed != fp->ip_summed)
709 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700710 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 head->csum = csum_add(head->csum, fp->csum);
712 head->truesize += fp->truesize;
713 atomic_sub(fp->truesize, &ip_frag_mem);
714 }
715
716 head->next = NULL;
717 head->dev = dev;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700718 head->tstamp = qp->stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700720 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 iph->frag_off = 0;
722 iph->tot_len = htons(len);
723 IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS);
724 qp->fragments = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700725 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727out_nomem:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900728 LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing "
Patrick McHardy64ce2072005-08-09 20:50:53 -0700729 "queue %p\n", qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto out_fail;
731out_oversize:
732 if (net_ratelimit())
733 printk(KERN_INFO
734 "Oversized IP packet from %d.%d.%d.%d.\n",
735 NIPQUAD(qp->saddr));
736out_fail:
737 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700738 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741/* Process an incoming IP datagram fragment. */
742struct sk_buff *ip_defrag(struct sk_buff *skb, u32 user)
743{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS);
747
748 /* Start by cleaning up the memory. */
749 if (atomic_read(&ip_frag_mem) > sysctl_ipfrag_high_thresh)
750 ip_evictor();
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* Lookup (or create) queue header */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700753 if ((qp = ip_find(ip_hdr(skb), user)) != NULL) {
Herbert Xu1706d582007-10-14 00:38:15 -0700754 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 spin_lock(&qp->lock);
757
Herbert Xu1706d582007-10-14 00:38:15 -0700758 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 spin_unlock(&qp->lock);
761 ipq_put(qp, NULL);
Herbert Xu1706d582007-10-14 00:38:15 -0700762 return ret ? NULL : skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
765 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
766 kfree_skb(skb);
767 return NULL;
768}
769
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700770void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 ipfrag_hash_rnd = (u32) ((num_physpages ^ (num_physpages>>7)) ^
773 (jiffies ^ (jiffies >> 6)));
774
775 init_timer(&ipfrag_secret_timer);
776 ipfrag_secret_timer.function = ipfrag_secret_rebuild;
777 ipfrag_secret_timer.expires = jiffies + sysctl_ipfrag_secret_interval;
778 add_timer(&ipfrag_secret_timer);
779}
780
781EXPORT_SYMBOL(ip_defrag);