[INET]: Collect frag queues management objects together
[safe/jmp/linux-2.6] / net / ipv4 / ip_fragment.c
1 /*
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.
7  *
8  * 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
25 #include <linux/compiler.h>
26 #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>
41 #include <net/inetpeer.h>
42 #include <net/inet_frag.h>
43 #include <linux/tcp.h>
44 #include <linux/udp.h>
45 #include <linux/inet.h>
46 #include <linux/netfilter_ipv4.h>
47
48 /* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
49  * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
50  * as well. Or notify me, at least. --ANK
51  */
52
53 /* Fragment cache limits. We will commit 256K at one time. Should we
54  * cross that limit we will prune down to 192K. This should cope with
55  * even the most extreme cases without allowing an attacker to measurably
56  * harm machine performance.
57  */
58 int sysctl_ipfrag_high_thresh __read_mostly = 256*1024;
59 int sysctl_ipfrag_low_thresh __read_mostly = 192*1024;
60
61 int sysctl_ipfrag_max_dist __read_mostly = 64;
62
63 /* Important NOTE! Fragment queue must be destroyed before MSL expires.
64  * RFC791 is wrong proposing to prolongate timer each fragment arrival by TTL.
65  */
66 int sysctl_ipfrag_time __read_mostly = IP_FRAG_TIME;
67
68 struct ipfrag_skb_cb
69 {
70         struct inet_skb_parm    h;
71         int                     offset;
72 };
73
74 #define FRAG_CB(skb)    ((struct ipfrag_skb_cb*)((skb)->cb))
75
76 /* Describe an entry in the "incomplete datagrams" queue. */
77 struct ipq {
78         struct inet_frag_queue q;
79
80         u32             user;
81         __be32          saddr;
82         __be32          daddr;
83         __be16          id;
84         u8              protocol;
85         int             iif;
86         unsigned int    rid;
87         struct inet_peer *peer;
88 };
89
90 static struct inet_frags ip4_frags;
91
92 int ip_frag_nqueues(void)
93 {
94         return ip4_frags.nqueues;
95 }
96
97 int ip_frag_mem(void)
98 {
99         return atomic_read(&ip4_frags.mem);
100 }
101
102 static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
103                          struct net_device *dev);
104
105 static __inline__ void __ipq_unlink(struct ipq *qp)
106 {
107         hlist_del(&qp->q.list);
108         list_del(&qp->q.lru_list);
109         ip4_frags.nqueues--;
110 }
111
112 static __inline__ void ipq_unlink(struct ipq *ipq)
113 {
114         write_lock(&ip4_frags.lock);
115         __ipq_unlink(ipq);
116         write_unlock(&ip4_frags.lock);
117 }
118
119 static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
120 {
121         return jhash_3words((__force u32)id << 16 | prot,
122                             (__force u32)saddr, (__force u32)daddr,
123                             ip4_frags.rnd) & (INETFRAGS_HASHSZ - 1);
124 }
125
126 int sysctl_ipfrag_secret_interval __read_mostly = 10 * 60 * HZ;
127
128 static void ipfrag_secret_rebuild(unsigned long dummy)
129 {
130         unsigned long now = jiffies;
131         int i;
132
133         write_lock(&ip4_frags.lock);
134         get_random_bytes(&ip4_frags.rnd, sizeof(u32));
135         for (i = 0; i < INETFRAGS_HASHSZ; i++) {
136                 struct ipq *q;
137                 struct hlist_node *p, *n;
138
139                 hlist_for_each_entry_safe(q, p, n, &ip4_frags.hash[i], q.list) {
140                         unsigned int hval = ipqhashfn(q->id, q->saddr,
141                                                       q->daddr, q->protocol);
142
143                         if (hval != i) {
144                                 hlist_del(&q->q.list);
145
146                                 /* Relink to new hash chain. */
147                                 hlist_add_head(&q->q.list, &ip4_frags.hash[hval]);
148                         }
149                 }
150         }
151         write_unlock(&ip4_frags.lock);
152
153         mod_timer(&ip4_frags.secret_timer, now + sysctl_ipfrag_secret_interval);
154 }
155
156 /* Memory Tracking Functions. */
157 static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work)
158 {
159         if (work)
160                 *work -= skb->truesize;
161         atomic_sub(skb->truesize, &ip4_frags.mem);
162         kfree_skb(skb);
163 }
164
165 static __inline__ void frag_free_queue(struct ipq *qp, int *work)
166 {
167         if (work)
168                 *work -= sizeof(struct ipq);
169         atomic_sub(sizeof(struct ipq), &ip4_frags.mem);
170         kfree(qp);
171 }
172
173 static __inline__ struct ipq *frag_alloc_queue(void)
174 {
175         struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC);
176
177         if (!qp)
178                 return NULL;
179         atomic_add(sizeof(struct ipq), &ip4_frags.mem);
180         return qp;
181 }
182
183
184 /* Destruction primitives. */
185
186 /* Complete destruction of ipq. */
187 static void ip_frag_destroy(struct ipq *qp, int *work)
188 {
189         struct sk_buff *fp;
190
191         BUG_TRAP(qp->q.last_in&COMPLETE);
192         BUG_TRAP(del_timer(&qp->q.timer) == 0);
193
194         if (qp->peer)
195                 inet_putpeer(qp->peer);
196
197         /* Release all fragment data. */
198         fp = qp->q.fragments;
199         while (fp) {
200                 struct sk_buff *xp = fp->next;
201
202                 frag_kfree_skb(fp, work);
203                 fp = xp;
204         }
205
206         /* Finally, release the queue descriptor itself. */
207         frag_free_queue(qp, work);
208 }
209
210 static __inline__ void ipq_put(struct ipq *ipq, int *work)
211 {
212         if (atomic_dec_and_test(&ipq->q.refcnt))
213                 ip_frag_destroy(ipq, work);
214 }
215
216 /* Kill ipq entry. It is not destroyed immediately,
217  * because caller (and someone more) holds reference count.
218  */
219 static void ipq_kill(struct ipq *ipq)
220 {
221         if (del_timer(&ipq->q.timer))
222                 atomic_dec(&ipq->q.refcnt);
223
224         if (!(ipq->q.last_in & COMPLETE)) {
225                 ipq_unlink(ipq);
226                 atomic_dec(&ipq->q.refcnt);
227                 ipq->q.last_in |= COMPLETE;
228         }
229 }
230
231 /* Memory limiting on fragments.  Evictor trashes the oldest
232  * fragment queue until we are back under the threshold.
233  */
234 static void ip_evictor(void)
235 {
236         struct ipq *qp;
237         struct list_head *tmp;
238         int work;
239
240         work = atomic_read(&ip4_frags.mem) - sysctl_ipfrag_low_thresh;
241         if (work <= 0)
242                 return;
243
244         while (work > 0) {
245                 read_lock(&ip4_frags.lock);
246                 if (list_empty(&ip4_frags.lru_list)) {
247                         read_unlock(&ip4_frags.lock);
248                         return;
249                 }
250                 tmp = ip4_frags.lru_list.next;
251                 qp = list_entry(tmp, struct ipq, q.lru_list);
252                 atomic_inc(&qp->q.refcnt);
253                 read_unlock(&ip4_frags.lock);
254
255                 spin_lock(&qp->q.lock);
256                 if (!(qp->q.last_in&COMPLETE))
257                         ipq_kill(qp);
258                 spin_unlock(&qp->q.lock);
259
260                 ipq_put(qp, &work);
261                 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
262         }
263 }
264
265 /*
266  * Oops, a fragment queue timed out.  Kill it and send an ICMP reply.
267  */
268 static void ip_expire(unsigned long arg)
269 {
270         struct ipq *qp = (struct ipq *) arg;
271
272         spin_lock(&qp->q.lock);
273
274         if (qp->q.last_in & COMPLETE)
275                 goto out;
276
277         ipq_kill(qp);
278
279         IP_INC_STATS_BH(IPSTATS_MIB_REASMTIMEOUT);
280         IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
281
282         if ((qp->q.last_in&FIRST_IN) && qp->q.fragments != NULL) {
283                 struct sk_buff *head = qp->q.fragments;
284                 /* Send an ICMP "Fragment Reassembly Timeout" message. */
285                 if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) {
286                         icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
287                         dev_put(head->dev);
288                 }
289         }
290 out:
291         spin_unlock(&qp->q.lock);
292         ipq_put(qp, NULL);
293 }
294
295 /* Creation primitives. */
296
297 static struct ipq *ip_frag_intern(struct ipq *qp_in)
298 {
299         struct ipq *qp;
300 #ifdef CONFIG_SMP
301         struct hlist_node *n;
302 #endif
303         unsigned int hash;
304
305         write_lock(&ip4_frags.lock);
306         hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
307                          qp_in->protocol);
308 #ifdef CONFIG_SMP
309         /* With SMP race we have to recheck hash table, because
310          * such entry could be created on other cpu, while we
311          * promoted read lock to write lock.
312          */
313         hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
314                 if (qp->id == qp_in->id         &&
315                     qp->saddr == qp_in->saddr   &&
316                     qp->daddr == qp_in->daddr   &&
317                     qp->protocol == qp_in->protocol &&
318                     qp->user == qp_in->user) {
319                         atomic_inc(&qp->q.refcnt);
320                         write_unlock(&ip4_frags.lock);
321                         qp_in->q.last_in |= COMPLETE;
322                         ipq_put(qp_in, NULL);
323                         return qp;
324                 }
325         }
326 #endif
327         qp = qp_in;
328
329         if (!mod_timer(&qp->q.timer, jiffies + sysctl_ipfrag_time))
330                 atomic_inc(&qp->q.refcnt);
331
332         atomic_inc(&qp->q.refcnt);
333         hlist_add_head(&qp->q.list, &ip4_frags.hash[hash]);
334         INIT_LIST_HEAD(&qp->q.lru_list);
335         list_add_tail(&qp->q.lru_list, &ip4_frags.lru_list);
336         ip4_frags.nqueues++;
337         write_unlock(&ip4_frags.lock);
338         return qp;
339 }
340
341 /* Add an entry to the 'ipq' queue for a newly received IP datagram. */
342 static struct ipq *ip_frag_create(struct iphdr *iph, u32 user)
343 {
344         struct ipq *qp;
345
346         if ((qp = frag_alloc_queue()) == NULL)
347                 goto out_nomem;
348
349         qp->protocol = iph->protocol;
350         qp->q.last_in = 0;
351         qp->id = iph->id;
352         qp->saddr = iph->saddr;
353         qp->daddr = iph->daddr;
354         qp->user = user;
355         qp->q.len = 0;
356         qp->q.meat = 0;
357         qp->q.fragments = NULL;
358         qp->iif = 0;
359         qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL;
360
361         /* Initialize a timer for this entry. */
362         init_timer(&qp->q.timer);
363         qp->q.timer.data = (unsigned long) qp;  /* pointer to queue     */
364         qp->q.timer.function = ip_expire;               /* expire function      */
365         spin_lock_init(&qp->q.lock);
366         atomic_set(&qp->q.refcnt, 1);
367
368         return ip_frag_intern(qp);
369
370 out_nomem:
371         LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n");
372         return NULL;
373 }
374
375 /* Find the correct entry in the "incomplete datagrams" queue for
376  * this IP datagram, and create new one, if nothing is found.
377  */
378 static inline struct ipq *ip_find(struct iphdr *iph, u32 user)
379 {
380         __be16 id = iph->id;
381         __be32 saddr = iph->saddr;
382         __be32 daddr = iph->daddr;
383         __u8 protocol = iph->protocol;
384         unsigned int hash;
385         struct ipq *qp;
386         struct hlist_node *n;
387
388         read_lock(&ip4_frags.lock);
389         hash = ipqhashfn(id, saddr, daddr, protocol);
390         hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
391                 if (qp->id == id                &&
392                     qp->saddr == saddr  &&
393                     qp->daddr == daddr  &&
394                     qp->protocol == protocol &&
395                     qp->user == user) {
396                         atomic_inc(&qp->q.refcnt);
397                         read_unlock(&ip4_frags.lock);
398                         return qp;
399                 }
400         }
401         read_unlock(&ip4_frags.lock);
402
403         return ip_frag_create(iph, user);
404 }
405
406 /* Is the fragment too far ahead to be part of ipq? */
407 static inline int ip_frag_too_far(struct ipq *qp)
408 {
409         struct inet_peer *peer = qp->peer;
410         unsigned int max = sysctl_ipfrag_max_dist;
411         unsigned int start, end;
412
413         int rc;
414
415         if (!peer || !max)
416                 return 0;
417
418         start = qp->rid;
419         end = atomic_inc_return(&peer->rid);
420         qp->rid = end;
421
422         rc = qp->q.fragments && (end - start) > max;
423
424         if (rc) {
425                 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
426         }
427
428         return rc;
429 }
430
431 static int ip_frag_reinit(struct ipq *qp)
432 {
433         struct sk_buff *fp;
434
435         if (!mod_timer(&qp->q.timer, jiffies + sysctl_ipfrag_time)) {
436                 atomic_inc(&qp->q.refcnt);
437                 return -ETIMEDOUT;
438         }
439
440         fp = qp->q.fragments;
441         do {
442                 struct sk_buff *xp = fp->next;
443                 frag_kfree_skb(fp, NULL);
444                 fp = xp;
445         } while (fp);
446
447         qp->q.last_in = 0;
448         qp->q.len = 0;
449         qp->q.meat = 0;
450         qp->q.fragments = NULL;
451         qp->iif = 0;
452
453         return 0;
454 }
455
456 /* Add new segment to existing queue. */
457 static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
458 {
459         struct sk_buff *prev, *next;
460         struct net_device *dev;
461         int flags, offset;
462         int ihl, end;
463         int err = -ENOENT;
464
465         if (qp->q.last_in & COMPLETE)
466                 goto err;
467
468         if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
469             unlikely(ip_frag_too_far(qp)) &&
470             unlikely(err = ip_frag_reinit(qp))) {
471                 ipq_kill(qp);
472                 goto err;
473         }
474
475         offset = ntohs(ip_hdr(skb)->frag_off);
476         flags = offset & ~IP_OFFSET;
477         offset &= IP_OFFSET;
478         offset <<= 3;           /* offset is in 8-byte chunks */
479         ihl = ip_hdrlen(skb);
480
481         /* Determine the position of this fragment. */
482         end = offset + skb->len - ihl;
483         err = -EINVAL;
484
485         /* Is this the final fragment? */
486         if ((flags & IP_MF) == 0) {
487                 /* If we already have some bits beyond end
488                  * or have different end, the segment is corrrupted.
489                  */
490                 if (end < qp->q.len ||
491                     ((qp->q.last_in & LAST_IN) && end != qp->q.len))
492                         goto err;
493                 qp->q.last_in |= LAST_IN;
494                 qp->q.len = end;
495         } else {
496                 if (end&7) {
497                         end &= ~7;
498                         if (skb->ip_summed != CHECKSUM_UNNECESSARY)
499                                 skb->ip_summed = CHECKSUM_NONE;
500                 }
501                 if (end > qp->q.len) {
502                         /* Some bits beyond end -> corruption. */
503                         if (qp->q.last_in & LAST_IN)
504                                 goto err;
505                         qp->q.len = end;
506                 }
507         }
508         if (end == offset)
509                 goto err;
510
511         err = -ENOMEM;
512         if (pskb_pull(skb, ihl) == NULL)
513                 goto err;
514
515         err = pskb_trim_rcsum(skb, end - offset);
516         if (err)
517                 goto err;
518
519         /* Find out which fragments are in front and at the back of us
520          * in the chain of fragments so far.  We must know where to put
521          * this fragment, right?
522          */
523         prev = NULL;
524         for (next = qp->q.fragments; next != NULL; next = next->next) {
525                 if (FRAG_CB(next)->offset >= offset)
526                         break;  /* bingo! */
527                 prev = next;
528         }
529
530         /* We found where to put this one.  Check for overlap with
531          * preceding fragment, and, if needed, align things so that
532          * any overlaps are eliminated.
533          */
534         if (prev) {
535                 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
536
537                 if (i > 0) {
538                         offset += i;
539                         err = -EINVAL;
540                         if (end <= offset)
541                                 goto err;
542                         err = -ENOMEM;
543                         if (!pskb_pull(skb, i))
544                                 goto err;
545                         if (skb->ip_summed != CHECKSUM_UNNECESSARY)
546                                 skb->ip_summed = CHECKSUM_NONE;
547                 }
548         }
549
550         err = -ENOMEM;
551
552         while (next && FRAG_CB(next)->offset < end) {
553                 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
554
555                 if (i < next->len) {
556                         /* Eat head of the next overlapped fragment
557                          * and leave the loop. The next ones cannot overlap.
558                          */
559                         if (!pskb_pull(next, i))
560                                 goto err;
561                         FRAG_CB(next)->offset += i;
562                         qp->q.meat -= i;
563                         if (next->ip_summed != CHECKSUM_UNNECESSARY)
564                                 next->ip_summed = CHECKSUM_NONE;
565                         break;
566                 } else {
567                         struct sk_buff *free_it = next;
568
569                         /* Old fragment is completely overridden with
570                          * new one drop it.
571                          */
572                         next = next->next;
573
574                         if (prev)
575                                 prev->next = next;
576                         else
577                                 qp->q.fragments = next;
578
579                         qp->q.meat -= free_it->len;
580                         frag_kfree_skb(free_it, NULL);
581                 }
582         }
583
584         FRAG_CB(skb)->offset = offset;
585
586         /* Insert this fragment in the chain of fragments. */
587         skb->next = next;
588         if (prev)
589                 prev->next = skb;
590         else
591                 qp->q.fragments = skb;
592
593         dev = skb->dev;
594         if (dev) {
595                 qp->iif = dev->ifindex;
596                 skb->dev = NULL;
597         }
598         qp->q.stamp = skb->tstamp;
599         qp->q.meat += skb->len;
600         atomic_add(skb->truesize, &ip4_frags.mem);
601         if (offset == 0)
602                 qp->q.last_in |= FIRST_IN;
603
604         if (qp->q.last_in == (FIRST_IN | LAST_IN) && qp->q.meat == qp->q.len)
605                 return ip_frag_reasm(qp, prev, dev);
606
607         write_lock(&ip4_frags.lock);
608         list_move_tail(&qp->q.lru_list, &ip4_frags.lru_list);
609         write_unlock(&ip4_frags.lock);
610         return -EINPROGRESS;
611
612 err:
613         kfree_skb(skb);
614         return err;
615 }
616
617
618 /* Build a new IP datagram from all its fragments. */
619
620 static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
621                          struct net_device *dev)
622 {
623         struct iphdr *iph;
624         struct sk_buff *fp, *head = qp->q.fragments;
625         int len;
626         int ihlen;
627         int err;
628
629         ipq_kill(qp);
630
631         /* Make the one we just received the head. */
632         if (prev) {
633                 head = prev->next;
634                 fp = skb_clone(head, GFP_ATOMIC);
635
636                 if (!fp)
637                         goto out_nomem;
638
639                 fp->next = head->next;
640                 prev->next = fp;
641
642                 skb_morph(head, qp->q.fragments);
643                 head->next = qp->q.fragments->next;
644
645                 kfree_skb(qp->q.fragments);
646                 qp->q.fragments = head;
647         }
648
649         BUG_TRAP(head != NULL);
650         BUG_TRAP(FRAG_CB(head)->offset == 0);
651
652         /* Allocate a new buffer for the datagram. */
653         ihlen = ip_hdrlen(head);
654         len = ihlen + qp->q.len;
655
656         err = -E2BIG;
657         if (len > 65535)
658                 goto out_oversize;
659
660         /* Head of list must not be cloned. */
661         err = -ENOMEM;
662         if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
663                 goto out_nomem;
664
665         /* If the first fragment is fragmented itself, we split
666          * it to two chunks: the first with data and paged part
667          * and the second, holding only fragments. */
668         if (skb_shinfo(head)->frag_list) {
669                 struct sk_buff *clone;
670                 int i, plen = 0;
671
672                 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
673                         goto out_nomem;
674                 clone->next = head->next;
675                 head->next = clone;
676                 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
677                 skb_shinfo(head)->frag_list = NULL;
678                 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
679                         plen += skb_shinfo(head)->frags[i].size;
680                 clone->len = clone->data_len = head->data_len - plen;
681                 head->data_len -= clone->len;
682                 head->len -= clone->len;
683                 clone->csum = 0;
684                 clone->ip_summed = head->ip_summed;
685                 atomic_add(clone->truesize, &ip4_frags.mem);
686         }
687
688         skb_shinfo(head)->frag_list = head->next;
689         skb_push(head, head->data - skb_network_header(head));
690         atomic_sub(head->truesize, &ip4_frags.mem);
691
692         for (fp=head->next; fp; fp = fp->next) {
693                 head->data_len += fp->len;
694                 head->len += fp->len;
695                 if (head->ip_summed != fp->ip_summed)
696                         head->ip_summed = CHECKSUM_NONE;
697                 else if (head->ip_summed == CHECKSUM_COMPLETE)
698                         head->csum = csum_add(head->csum, fp->csum);
699                 head->truesize += fp->truesize;
700                 atomic_sub(fp->truesize, &ip4_frags.mem);
701         }
702
703         head->next = NULL;
704         head->dev = dev;
705         head->tstamp = qp->q.stamp;
706
707         iph = ip_hdr(head);
708         iph->frag_off = 0;
709         iph->tot_len = htons(len);
710         IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS);
711         qp->q.fragments = NULL;
712         return 0;
713
714 out_nomem:
715         LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing "
716                               "queue %p\n", qp);
717         goto out_fail;
718 out_oversize:
719         if (net_ratelimit())
720                 printk(KERN_INFO
721                         "Oversized IP packet from %d.%d.%d.%d.\n",
722                         NIPQUAD(qp->saddr));
723 out_fail:
724         IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
725         return err;
726 }
727
728 /* Process an incoming IP datagram fragment. */
729 int ip_defrag(struct sk_buff *skb, u32 user)
730 {
731         struct ipq *qp;
732
733         IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS);
734
735         /* Start by cleaning up the memory. */
736         if (atomic_read(&ip4_frags.mem) > sysctl_ipfrag_high_thresh)
737                 ip_evictor();
738
739         /* Lookup (or create) queue header */
740         if ((qp = ip_find(ip_hdr(skb), user)) != NULL) {
741                 int ret;
742
743                 spin_lock(&qp->q.lock);
744
745                 ret = ip_frag_queue(qp, skb);
746
747                 spin_unlock(&qp->q.lock);
748                 ipq_put(qp, NULL);
749                 return ret;
750         }
751
752         IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
753         kfree_skb(skb);
754         return -ENOMEM;
755 }
756
757 void __init ipfrag_init(void)
758 {
759         init_timer(&ip4_frags.secret_timer);
760         ip4_frags.secret_timer.function = ipfrag_secret_rebuild;
761         ip4_frags.secret_timer.expires = jiffies + sysctl_ipfrag_secret_interval;
762         add_timer(&ip4_frags.secret_timer);
763
764         inet_frags_init(&ip4_frags);
765 }
766
767 EXPORT_SYMBOL(ip_defrag);