netfilter: defrag: kill unused work parameter of frag_kfree_skb()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / ipv6 / netfilter / nf_conntrack_reasm.c
blob9254008602d4901d0d6f6b6813c439b1e7ef84db
1 /*
2 * IPv6 fragment reassembly for connection tracking
4 * Copyright (C)2004 USAGI/WIDE Project
6 * Author:
7 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
9 * Based on: net/ipv6/reassembly.c
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/errno.h>
18 #include <linux/types.h>
19 #include <linux/string.h>
20 #include <linux/socket.h>
21 #include <linux/sockios.h>
22 #include <linux/jiffies.h>
23 #include <linux/net.h>
24 #include <linux/list.h>
25 #include <linux/netdevice.h>
26 #include <linux/in6.h>
27 #include <linux/ipv6.h>
28 #include <linux/icmpv6.h>
29 #include <linux/random.h>
30 #include <linux/slab.h>
32 #include <net/sock.h>
33 #include <net/snmp.h>
34 #include <net/inet_frag.h>
36 #include <net/ipv6.h>
37 #include <net/protocol.h>
38 #include <net/transp_v6.h>
39 #include <net/rawv6.h>
40 #include <net/ndisc.h>
41 #include <net/addrconf.h>
42 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
43 #include <linux/sysctl.h>
44 #include <linux/netfilter.h>
45 #include <linux/netfilter_ipv6.h>
46 #include <linux/kernel.h>
47 #include <linux/module.h>
50 struct nf_ct_frag6_skb_cb
52 struct inet6_skb_parm h;
53 int offset;
54 struct sk_buff *orig;
57 #define NFCT_FRAG6_CB(skb) ((struct nf_ct_frag6_skb_cb*)((skb)->cb))
59 struct nf_ct_frag6_queue
61 struct inet_frag_queue q;
63 __be32 id; /* fragment id */
64 u32 user;
65 struct in6_addr saddr;
66 struct in6_addr daddr;
68 unsigned int csum;
69 __u16 nhoffset;
72 static struct inet_frags nf_frags;
73 static struct netns_frags nf_init_frags;
75 #ifdef CONFIG_SYSCTL
76 struct ctl_table nf_ct_ipv6_sysctl_table[] = {
78 .procname = "nf_conntrack_frag6_timeout",
79 .data = &nf_init_frags.timeout,
80 .maxlen = sizeof(unsigned int),
81 .mode = 0644,
82 .proc_handler = proc_dointvec_jiffies,
85 .procname = "nf_conntrack_frag6_low_thresh",
86 .data = &nf_init_frags.low_thresh,
87 .maxlen = sizeof(unsigned int),
88 .mode = 0644,
89 .proc_handler = proc_dointvec,
92 .procname = "nf_conntrack_frag6_high_thresh",
93 .data = &nf_init_frags.high_thresh,
94 .maxlen = sizeof(unsigned int),
95 .mode = 0644,
96 .proc_handler = proc_dointvec,
98 { }
100 #endif
102 static unsigned int nf_hashfn(struct inet_frag_queue *q)
104 const struct nf_ct_frag6_queue *nq;
106 nq = container_of(q, struct nf_ct_frag6_queue, q);
107 return inet6_hash_frag(nq->id, &nq->saddr, &nq->daddr, nf_frags.rnd);
110 static void nf_skb_free(struct sk_buff *skb)
112 if (NFCT_FRAG6_CB(skb)->orig)
113 kfree_skb(NFCT_FRAG6_CB(skb)->orig);
116 /* Memory Tracking Functions. */
117 static void frag_kfree_skb(struct sk_buff *skb)
119 atomic_sub(skb->truesize, &nf_init_frags.mem);
120 nf_skb_free(skb);
121 kfree_skb(skb);
124 /* Destruction primitives. */
126 static __inline__ void fq_put(struct nf_ct_frag6_queue *fq)
128 inet_frag_put(&fq->q, &nf_frags);
131 /* Kill fq entry. It is not destroyed immediately,
132 * because caller (and someone more) holds reference count.
134 static __inline__ void fq_kill(struct nf_ct_frag6_queue *fq)
136 inet_frag_kill(&fq->q, &nf_frags);
139 static void nf_ct_frag6_evictor(void)
141 local_bh_disable();
142 inet_frag_evictor(&nf_init_frags, &nf_frags);
143 local_bh_enable();
146 static void nf_ct_frag6_expire(unsigned long data)
148 struct nf_ct_frag6_queue *fq;
150 fq = container_of((struct inet_frag_queue *)data,
151 struct nf_ct_frag6_queue, q);
153 spin_lock(&fq->q.lock);
155 if (fq->q.last_in & INET_FRAG_COMPLETE)
156 goto out;
158 fq_kill(fq);
160 out:
161 spin_unlock(&fq->q.lock);
162 fq_put(fq);
165 /* Creation primitives. */
167 static __inline__ struct nf_ct_frag6_queue *
168 fq_find(__be32 id, u32 user, struct in6_addr *src, struct in6_addr *dst)
170 struct inet_frag_queue *q;
171 struct ip6_create_arg arg;
172 unsigned int hash;
174 arg.id = id;
175 arg.user = user;
176 arg.src = src;
177 arg.dst = dst;
179 read_lock_bh(&nf_frags.lock);
180 hash = inet6_hash_frag(id, src, dst, nf_frags.rnd);
182 q = inet_frag_find(&nf_init_frags, &nf_frags, &arg, hash);
183 local_bh_enable();
184 if (q == NULL)
185 goto oom;
187 return container_of(q, struct nf_ct_frag6_queue, q);
189 oom:
190 pr_debug("Can't alloc new queue\n");
191 return NULL;
195 static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
196 const struct frag_hdr *fhdr, int nhoff)
198 struct sk_buff *prev, *next;
199 int offset, end;
201 if (fq->q.last_in & INET_FRAG_COMPLETE) {
202 pr_debug("Allready completed\n");
203 goto err;
206 offset = ntohs(fhdr->frag_off) & ~0x7;
207 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
208 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
210 if ((unsigned int)end > IPV6_MAXPLEN) {
211 pr_debug("offset is too large.\n");
212 return -1;
215 if (skb->ip_summed == CHECKSUM_COMPLETE) {
216 const unsigned char *nh = skb_network_header(skb);
217 skb->csum = csum_sub(skb->csum,
218 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
219 0));
222 /* Is this the final fragment? */
223 if (!(fhdr->frag_off & htons(IP6_MF))) {
224 /* If we already have some bits beyond end
225 * or have different end, the segment is corrupted.
227 if (end < fq->q.len ||
228 ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len)) {
229 pr_debug("already received last fragment\n");
230 goto err;
232 fq->q.last_in |= INET_FRAG_LAST_IN;
233 fq->q.len = end;
234 } else {
235 /* Check if the fragment is rounded to 8 bytes.
236 * Required by the RFC.
238 if (end & 0x7) {
239 /* RFC2460 says always send parameter problem in
240 * this case. -DaveM
242 pr_debug("end of fragment not rounded to 8 bytes.\n");
243 return -1;
245 if (end > fq->q.len) {
246 /* Some bits beyond end -> corruption. */
247 if (fq->q.last_in & INET_FRAG_LAST_IN) {
248 pr_debug("last packet already reached.\n");
249 goto err;
251 fq->q.len = end;
255 if (end == offset)
256 goto err;
258 /* Point into the IP datagram 'data' part. */
259 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data)) {
260 pr_debug("queue: message is too short.\n");
261 goto err;
263 if (pskb_trim_rcsum(skb, end - offset)) {
264 pr_debug("Can't trim\n");
265 goto err;
268 /* Find out which fragments are in front and at the back of us
269 * in the chain of fragments so far. We must know where to put
270 * this fragment, right?
272 prev = NULL;
273 for (next = fq->q.fragments; next != NULL; next = next->next) {
274 if (NFCT_FRAG6_CB(next)->offset >= offset)
275 break; /* bingo! */
276 prev = next;
279 /* We found where to put this one. Check for overlap with
280 * preceding fragment, and, if needed, align things so that
281 * any overlaps are eliminated.
283 if (prev) {
284 int i = (NFCT_FRAG6_CB(prev)->offset + prev->len) - offset;
286 if (i > 0) {
287 offset += i;
288 if (end <= offset) {
289 pr_debug("overlap\n");
290 goto err;
292 if (!pskb_pull(skb, i)) {
293 pr_debug("Can't pull\n");
294 goto err;
296 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
297 skb->ip_summed = CHECKSUM_NONE;
301 /* Look for overlap with succeeding segments.
302 * If we can merge fragments, do it.
304 while (next && NFCT_FRAG6_CB(next)->offset < end) {
305 /* overlap is 'i' bytes */
306 int i = end - NFCT_FRAG6_CB(next)->offset;
308 if (i < next->len) {
309 /* Eat head of the next overlapped fragment
310 * and leave the loop. The next ones cannot overlap.
312 pr_debug("Eat head of the overlapped parts.: %d", i);
313 if (!pskb_pull(next, i))
314 goto err;
316 /* next fragment */
317 NFCT_FRAG6_CB(next)->offset += i;
318 fq->q.meat -= i;
319 if (next->ip_summed != CHECKSUM_UNNECESSARY)
320 next->ip_summed = CHECKSUM_NONE;
321 break;
322 } else {
323 struct sk_buff *free_it = next;
325 /* Old fragmnet is completely overridden with
326 * new one drop it.
328 next = next->next;
330 if (prev)
331 prev->next = next;
332 else
333 fq->q.fragments = next;
335 fq->q.meat -= free_it->len;
336 frag_kfree_skb(free_it);
340 NFCT_FRAG6_CB(skb)->offset = offset;
342 /* Insert this fragment in the chain of fragments. */
343 skb->next = next;
344 if (prev)
345 prev->next = skb;
346 else
347 fq->q.fragments = skb;
349 skb->dev = NULL;
350 fq->q.stamp = skb->tstamp;
351 fq->q.meat += skb->len;
352 atomic_add(skb->truesize, &nf_init_frags.mem);
354 /* The first fragment.
355 * nhoffset is obtained from the first fragment, of course.
357 if (offset == 0) {
358 fq->nhoffset = nhoff;
359 fq->q.last_in |= INET_FRAG_FIRST_IN;
361 write_lock(&nf_frags.lock);
362 list_move_tail(&fq->q.lru_list, &nf_init_frags.lru_list);
363 write_unlock(&nf_frags.lock);
364 return 0;
366 err:
367 return -1;
371 * Check if this packet is complete.
372 * Returns NULL on failure by any reason, and pointer
373 * to current nexthdr field in reassembled frame.
375 * It is called with locked fq, and caller must check that
376 * queue is eligible for reassembly i.e. it is not COMPLETE,
377 * the last and the first frames arrived and all the bits are here.
379 static struct sk_buff *
380 nf_ct_frag6_reasm(struct nf_ct_frag6_queue *fq, struct net_device *dev)
382 struct sk_buff *fp, *op, *head = fq->q.fragments;
383 int payload_len;
385 fq_kill(fq);
387 WARN_ON(head == NULL);
388 WARN_ON(NFCT_FRAG6_CB(head)->offset != 0);
390 /* Unfragmented part is taken from the first segment. */
391 payload_len = ((head->data - skb_network_header(head)) -
392 sizeof(struct ipv6hdr) + fq->q.len -
393 sizeof(struct frag_hdr));
394 if (payload_len > IPV6_MAXPLEN) {
395 pr_debug("payload len is too large.\n");
396 goto out_oversize;
399 /* Head of list must not be cloned. */
400 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC)) {
401 pr_debug("skb is cloned but can't expand head");
402 goto out_oom;
405 /* If the first fragment is fragmented itself, we split
406 * it to two chunks: the first with data and paged part
407 * and the second, holding only fragments. */
408 if (skb_has_frags(head)) {
409 struct sk_buff *clone;
410 int i, plen = 0;
412 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL) {
413 pr_debug("Can't alloc skb\n");
414 goto out_oom;
416 clone->next = head->next;
417 head->next = clone;
418 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
419 skb_frag_list_init(head);
420 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
421 plen += skb_shinfo(head)->frags[i].size;
422 clone->len = clone->data_len = head->data_len - plen;
423 head->data_len -= clone->len;
424 head->len -= clone->len;
425 clone->csum = 0;
426 clone->ip_summed = head->ip_summed;
428 NFCT_FRAG6_CB(clone)->orig = NULL;
429 atomic_add(clone->truesize, &nf_init_frags.mem);
432 /* We have to remove fragment header from datagram and to relocate
433 * header in order to calculate ICV correctly. */
434 skb_network_header(head)[fq->nhoffset] = skb_transport_header(head)[0];
435 memmove(head->head + sizeof(struct frag_hdr), head->head,
436 (head->data - head->head) - sizeof(struct frag_hdr));
437 head->mac_header += sizeof(struct frag_hdr);
438 head->network_header += sizeof(struct frag_hdr);
440 skb_shinfo(head)->frag_list = head->next;
441 skb_reset_transport_header(head);
442 skb_push(head, head->data - skb_network_header(head));
444 for (fp=head->next; fp; fp = fp->next) {
445 head->data_len += fp->len;
446 head->len += fp->len;
447 if (head->ip_summed != fp->ip_summed)
448 head->ip_summed = CHECKSUM_NONE;
449 else if (head->ip_summed == CHECKSUM_COMPLETE)
450 head->csum = csum_add(head->csum, fp->csum);
451 head->truesize += fp->truesize;
453 atomic_sub(head->truesize, &nf_init_frags.mem);
455 head->next = NULL;
456 head->dev = dev;
457 head->tstamp = fq->q.stamp;
458 ipv6_hdr(head)->payload_len = htons(payload_len);
460 /* Yes, and fold redundant checksum back. 8) */
461 if (head->ip_summed == CHECKSUM_COMPLETE)
462 head->csum = csum_partial(skb_network_header(head),
463 skb_network_header_len(head),
464 head->csum);
466 fq->q.fragments = NULL;
468 /* all original skbs are linked into the NFCT_FRAG6_CB(head).orig */
469 fp = skb_shinfo(head)->frag_list;
470 if (fp && NFCT_FRAG6_CB(fp)->orig == NULL)
471 /* at above code, head skb is divided into two skbs. */
472 fp = fp->next;
474 op = NFCT_FRAG6_CB(head)->orig;
475 for (; fp; fp = fp->next) {
476 struct sk_buff *orig = NFCT_FRAG6_CB(fp)->orig;
478 op->next = orig;
479 op = orig;
480 NFCT_FRAG6_CB(fp)->orig = NULL;
483 return head;
485 out_oversize:
486 if (net_ratelimit())
487 printk(KERN_DEBUG "nf_ct_frag6_reasm: payload len = %d\n", payload_len);
488 goto out_fail;
489 out_oom:
490 if (net_ratelimit())
491 printk(KERN_DEBUG "nf_ct_frag6_reasm: no memory for reassembly\n");
492 out_fail:
493 return NULL;
497 * find the header just before Fragment Header.
499 * if success return 0 and set ...
500 * (*prevhdrp): the value of "Next Header Field" in the header
501 * just before Fragment Header.
502 * (*prevhoff): the offset of "Next Header Field" in the header
503 * just before Fragment Header.
504 * (*fhoff) : the offset of Fragment Header.
506 * Based on ipv6_skip_hdr() in net/ipv6/exthdr.c
509 static int
510 find_prev_fhdr(struct sk_buff *skb, u8 *prevhdrp, int *prevhoff, int *fhoff)
512 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
513 const int netoff = skb_network_offset(skb);
514 u8 prev_nhoff = netoff + offsetof(struct ipv6hdr, nexthdr);
515 int start = netoff + sizeof(struct ipv6hdr);
516 int len = skb->len - start;
517 u8 prevhdr = NEXTHDR_IPV6;
519 while (nexthdr != NEXTHDR_FRAGMENT) {
520 struct ipv6_opt_hdr hdr;
521 int hdrlen;
523 if (!ipv6_ext_hdr(nexthdr)) {
524 return -1;
526 if (nexthdr == NEXTHDR_NONE) {
527 pr_debug("next header is none\n");
528 return -1;
530 if (len < (int)sizeof(struct ipv6_opt_hdr)) {
531 pr_debug("too short\n");
532 return -1;
534 if (skb_copy_bits(skb, start, &hdr, sizeof(hdr)))
535 BUG();
536 if (nexthdr == NEXTHDR_AUTH)
537 hdrlen = (hdr.hdrlen+2)<<2;
538 else
539 hdrlen = ipv6_optlen(&hdr);
541 prevhdr = nexthdr;
542 prev_nhoff = start;
544 nexthdr = hdr.nexthdr;
545 len -= hdrlen;
546 start += hdrlen;
549 if (len < 0)
550 return -1;
552 *prevhdrp = prevhdr;
553 *prevhoff = prev_nhoff;
554 *fhoff = start;
556 return 0;
559 struct sk_buff *nf_ct_frag6_gather(struct sk_buff *skb, u32 user)
561 struct sk_buff *clone;
562 struct net_device *dev = skb->dev;
563 struct frag_hdr *fhdr;
564 struct nf_ct_frag6_queue *fq;
565 struct ipv6hdr *hdr;
566 int fhoff, nhoff;
567 u8 prevhdr;
568 struct sk_buff *ret_skb = NULL;
570 /* Jumbo payload inhibits frag. header */
571 if (ipv6_hdr(skb)->payload_len == 0) {
572 pr_debug("payload len = 0\n");
573 return skb;
576 if (find_prev_fhdr(skb, &prevhdr, &nhoff, &fhoff) < 0)
577 return skb;
579 clone = skb_clone(skb, GFP_ATOMIC);
580 if (clone == NULL) {
581 pr_debug("Can't clone skb\n");
582 return skb;
585 NFCT_FRAG6_CB(clone)->orig = skb;
587 if (!pskb_may_pull(clone, fhoff + sizeof(*fhdr))) {
588 pr_debug("message is too short.\n");
589 goto ret_orig;
592 skb_set_transport_header(clone, fhoff);
593 hdr = ipv6_hdr(clone);
594 fhdr = (struct frag_hdr *)skb_transport_header(clone);
596 if (atomic_read(&nf_init_frags.mem) > nf_init_frags.high_thresh)
597 nf_ct_frag6_evictor();
599 fq = fq_find(fhdr->identification, user, &hdr->saddr, &hdr->daddr);
600 if (fq == NULL) {
601 pr_debug("Can't find and can't create new queue\n");
602 goto ret_orig;
605 spin_lock_bh(&fq->q.lock);
607 if (nf_ct_frag6_queue(fq, clone, fhdr, nhoff) < 0) {
608 spin_unlock_bh(&fq->q.lock);
609 pr_debug("Can't insert skb to queue\n");
610 fq_put(fq);
611 goto ret_orig;
614 if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
615 fq->q.meat == fq->q.len) {
616 ret_skb = nf_ct_frag6_reasm(fq, dev);
617 if (ret_skb == NULL)
618 pr_debug("Can't reassemble fragmented packets\n");
620 spin_unlock_bh(&fq->q.lock);
622 fq_put(fq);
623 return ret_skb;
625 ret_orig:
626 kfree_skb(clone);
627 return skb;
630 void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb,
631 struct net_device *in, struct net_device *out,
632 int (*okfn)(struct sk_buff *))
634 struct sk_buff *s, *s2;
636 for (s = NFCT_FRAG6_CB(skb)->orig; s;) {
637 nf_conntrack_put_reasm(s->nfct_reasm);
638 nf_conntrack_get_reasm(skb);
639 s->nfct_reasm = skb;
641 s2 = s->next;
642 s->next = NULL;
644 NF_HOOK_THRESH(NFPROTO_IPV6, hooknum, s, in, out, okfn,
645 NF_IP6_PRI_CONNTRACK_DEFRAG + 1);
646 s = s2;
648 nf_conntrack_put_reasm(skb);
651 int nf_ct_frag6_init(void)
653 nf_frags.hashfn = nf_hashfn;
654 nf_frags.constructor = ip6_frag_init;
655 nf_frags.destructor = NULL;
656 nf_frags.skb_free = nf_skb_free;
657 nf_frags.qsize = sizeof(struct nf_ct_frag6_queue);
658 nf_frags.match = ip6_frag_match;
659 nf_frags.frag_expire = nf_ct_frag6_expire;
660 nf_frags.secret_interval = 10 * 60 * HZ;
661 nf_init_frags.timeout = IPV6_FRAG_TIMEOUT;
662 nf_init_frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
663 nf_init_frags.low_thresh = IPV6_FRAG_LOW_THRESH;
664 inet_frags_init_net(&nf_init_frags);
665 inet_frags_init(&nf_frags);
667 return 0;
670 void nf_ct_frag6_cleanup(void)
672 inet_frags_fini(&nf_frags);
674 nf_init_frags.low_thresh = 0;
675 nf_ct_frag6_evictor();