Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * IPv6 fragment reassembly |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3 | * Linux INET6 implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Based on: net/ipv4/ip_fragment.c |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
| 14 | */ |
| 15 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 16 | /* |
| 17 | * Fixes: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * Andi Kleen Make it work with multiple hosts. |
| 19 | * More RFC compliance. |
| 20 | * |
| 21 | * Horst von Brand Add missing #include <linux/string.h> |
| 22 | * Alexey Kuznetsov SMP races, threading, cleanup. |
| 23 | * Patrick McHardy LRU queue of frag heads for evictor. |
| 24 | * Mitsuru KANDA @USAGI Register inet6_protocol{}. |
| 25 | * David Stevens and |
| 26 | * YOSHIFUJI,H. @USAGI Always remove fragment header to |
| 27 | * calculate ICV correctly. |
| 28 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/errno.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/string.h> |
| 32 | #include <linux/socket.h> |
| 33 | #include <linux/sockios.h> |
| 34 | #include <linux/jiffies.h> |
| 35 | #include <linux/net.h> |
| 36 | #include <linux/list.h> |
| 37 | #include <linux/netdevice.h> |
| 38 | #include <linux/in6.h> |
| 39 | #include <linux/ipv6.h> |
| 40 | #include <linux/icmpv6.h> |
| 41 | #include <linux/random.h> |
| 42 | #include <linux/jhash.h> |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 43 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 45 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | #include <net/sock.h> |
| 48 | #include <net/snmp.h> |
| 49 | |
| 50 | #include <net/ipv6.h> |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 51 | #include <net/ip6_route.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <net/protocol.h> |
| 53 | #include <net/transp_v6.h> |
| 54 | #include <net/rawv6.h> |
| 55 | #include <net/ndisc.h> |
| 56 | #include <net/addrconf.h> |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 57 | #include <net/inet_frag.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct ip6frag_skb_cb |
| 60 | { |
| 61 | struct inet6_skb_parm h; |
| 62 | int offset; |
| 63 | }; |
| 64 | |
| 65 | #define FRAG6_CB(skb) ((struct ip6frag_skb_cb*)((skb)->cb)) |
| 66 | |
| 67 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 68 | static struct inet_frags ip6_frags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 70 | static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev, |
| 71 | struct net_device *dev); |
| 72 | |
Zach Brown | f6596f9 | 2006-04-10 16:05:34 -0700 | [diff] [blame] | 73 | /* |
| 74 | * callers should be careful not to use the hash value outside the ipfrag_lock |
| 75 | * as doing so could race with ipfrag_hash_rnd being recalculated. |
| 76 | */ |
Ilpo Järvinen | 93c8b90 | 2008-10-01 02:48:31 -0700 | [diff] [blame] | 77 | unsigned int inet6_hash_frag(__be32 id, const struct in6_addr *saddr, |
| 78 | const struct in6_addr *daddr, u32 rnd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
Jozsef Kadlecsik | 82a39eb | 2010-11-25 03:15:07 +0000 | [diff] [blame] | 80 | u32 c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Eric Dumazet | 279e9f2 | 2013-02-15 18:14:48 +0000 | [diff] [blame] | 82 | c = jhash_3words(ipv6_addr_hash(saddr), ipv6_addr_hash(daddr), id, rnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 84 | return c & (INETFRAGS_HASHSZ - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
Ilpo Järvinen | 93c8b90 | 2008-10-01 02:48:31 -0700 | [diff] [blame] | 86 | EXPORT_SYMBOL_GPL(inet6_hash_frag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Pavel Emelyanov | 321a3a9 | 2007-10-15 02:38:08 -0700 | [diff] [blame] | 88 | static unsigned int ip6_hashfn(struct inet_frag_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Pavel Emelyanov | 321a3a9 | 2007-10-15 02:38:08 -0700 | [diff] [blame] | 90 | struct frag_queue *fq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Pavel Emelyanov | 321a3a9 | 2007-10-15 02:38:08 -0700 | [diff] [blame] | 92 | fq = container_of(q, struct frag_queue, q); |
Ilpo Järvinen | 93c8b90 | 2008-10-01 02:48:31 -0700 | [diff] [blame] | 93 | return inet6_hash_frag(fq->id, &fq->saddr, &fq->daddr, ip6_frags.rnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Eric Dumazet | cbc264c | 2012-05-18 05:57:13 +0200 | [diff] [blame] | 96 | bool ip6_frag_match(struct inet_frag_queue *q, void *a) |
Pavel Emelyanov | abd6523 | 2007-10-17 19:47:21 -0700 | [diff] [blame] | 97 | { |
| 98 | struct frag_queue *fq; |
| 99 | struct ip6_create_arg *arg = a; |
| 100 | |
| 101 | fq = container_of(q, struct frag_queue, q); |
Eric Dumazet | cbc264c | 2012-05-18 05:57:13 +0200 | [diff] [blame] | 102 | return fq->id == arg->id && |
| 103 | fq->user == arg->user && |
| 104 | ipv6_addr_equal(&fq->saddr, arg->src) && |
| 105 | ipv6_addr_equal(&fq->daddr, arg->dst); |
Pavel Emelyanov | abd6523 | 2007-10-17 19:47:21 -0700 | [diff] [blame] | 106 | } |
| 107 | EXPORT_SYMBOL(ip6_frag_match); |
| 108 | |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 109 | void ip6_frag_init(struct inet_frag_queue *q, void *a) |
| 110 | { |
| 111 | struct frag_queue *fq = container_of(q, struct frag_queue, q); |
| 112 | struct ip6_create_arg *arg = a; |
| 113 | |
| 114 | fq->id = arg->id; |
Patrick McHardy | 0b5ccb2 | 2009-12-15 16:59:18 +0100 | [diff] [blame] | 115 | fq->user = arg->user; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 116 | fq->saddr = *arg->src; |
| 117 | fq->daddr = *arg->dst; |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 118 | } |
| 119 | EXPORT_SYMBOL(ip6_frag_init); |
| 120 | |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 121 | void ip6_expire_frag_queue(struct net *net, struct frag_queue *fq, |
| 122 | struct inet_frags *frags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 124 | struct net_device *dev = NULL; |
Pavel Emelyanov | e521db9 | 2007-10-17 19:45:23 -0700 | [diff] [blame] | 125 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 126 | spin_lock(&fq->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 128 | if (fq->q.last_in & INET_FRAG_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | goto out; |
| 130 | |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 131 | inet_frag_kill(&fq->q, frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 133 | rcu_read_lock(); |
Eric Dumazet | 69df9d5 | 2009-11-05 20:59:47 -0800 | [diff] [blame] | 134 | dev = dev_get_by_index_rcu(net, fq->iif); |
| 135 | if (!dev) |
| 136 | goto out_rcu_unlock; |
| 137 | |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 138 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT); |
| 139 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Ingo Oeser | 78c784c | 2006-03-20 23:01:17 -0800 | [diff] [blame] | 141 | /* Don't send error if the first segment did not arrive. */ |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 142 | if (!(fq->q.last_in & INET_FRAG_FIRST_IN) || !fq->q.fragments) |
Eric Dumazet | 69df9d5 | 2009-11-05 20:59:47 -0800 | [diff] [blame] | 143 | goto out_rcu_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Ingo Oeser | 78c784c | 2006-03-20 23:01:17 -0800 | [diff] [blame] | 145 | /* |
| 146 | But use as source device on which LAST ARRIVED |
| 147 | segment was received. And do not use fq->dev |
| 148 | pointer directly, device might already disappeared. |
| 149 | */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 150 | fq->q.fragments->dev = dev; |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 151 | icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0); |
Eric Dumazet | 69df9d5 | 2009-11-05 20:59:47 -0800 | [diff] [blame] | 152 | out_rcu_unlock: |
| 153 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | out: |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 155 | spin_unlock(&fq->q.lock); |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 156 | inet_frag_put(&fq->q, frags); |
| 157 | } |
| 158 | EXPORT_SYMBOL(ip6_expire_frag_queue); |
| 159 | |
| 160 | static void ip6_frag_expire(unsigned long data) |
| 161 | { |
| 162 | struct frag_queue *fq; |
| 163 | struct net *net; |
| 164 | |
| 165 | fq = container_of((struct inet_frag_queue *)data, struct frag_queue, q); |
| 166 | net = container_of(fq->q.net, struct net, ipv6.frags); |
| 167 | |
| 168 | ip6_expire_frag_queue(net, fq, &ip6_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Pavel Emelyanov | abd6523 | 2007-10-17 19:47:21 -0700 | [diff] [blame] | 171 | static __inline__ struct frag_queue * |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 172 | fq_find(struct net *net, __be32 id, const struct in6_addr *src, const struct in6_addr *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 174 | struct inet_frag_queue *q; |
| 175 | struct ip6_create_arg arg; |
Pavel Emelyanov | abd6523 | 2007-10-17 19:47:21 -0700 | [diff] [blame] | 176 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 178 | arg.id = id; |
Patrick McHardy | 0b5ccb2 | 2009-12-15 16:59:18 +0100 | [diff] [blame] | 179 | arg.user = IP6_DEFRAG_LOCAL_DELIVER; |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 180 | arg.src = src; |
| 181 | arg.dst = dst; |
Pavel Emelyanov | 9a37580 | 2008-06-27 20:06:08 -0700 | [diff] [blame] | 182 | |
| 183 | read_lock(&ip6_frags.lock); |
Ilpo Järvinen | 93c8b90 | 2008-10-01 02:48:31 -0700 | [diff] [blame] | 184 | hash = inet6_hash_frag(id, src, dst, ip6_frags.rnd); |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 185 | |
Pavel Emelyanov | ac18e75 | 2008-01-22 06:02:14 -0800 | [diff] [blame] | 186 | q = inet_frag_find(&net->ipv6.frags, &ip6_frags, &arg, hash); |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 187 | if (q == NULL) |
Shan Wei | 9546377 | 2010-02-11 00:12:45 +0000 | [diff] [blame] | 188 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 190 | return container_of(q, struct frag_queue, q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 193 | static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | struct frag_hdr *fhdr, int nhoff) |
| 195 | { |
| 196 | struct sk_buff *prev, *next; |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 197 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | int offset, end; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 199 | struct net *net = dev_net(skb_dst(skb)->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 201 | if (fq->q.last_in & INET_FRAG_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | goto err; |
| 203 | |
| 204 | offset = ntohs(fhdr->frag_off) & ~0x7; |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 205 | end = offset + (ntohs(ipv6_hdr(skb)->payload_len) - |
| 206 | ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | if ((unsigned int)end > IPV6_MAXPLEN) { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 209 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 210 | IPSTATS_MIB_INHDRERRORS); |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 211 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, |
| 212 | ((u8 *)&fhdr->frag_off - |
| 213 | skb_network_header(skb))); |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 214 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 217 | if (skb->ip_summed == CHECKSUM_COMPLETE) { |
| 218 | const unsigned char *nh = skb_network_header(skb); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 219 | skb->csum = csum_sub(skb->csum, |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 220 | csum_partial(nh, (u8 *)(fhdr + 1) - nh, |
| 221 | 0)); |
| 222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
| 224 | /* Is this the final fragment? */ |
| 225 | if (!(fhdr->frag_off & htons(IP6_MF))) { |
| 226 | /* If we already have some bits beyond end |
| 227 | * or have different end, the segment is corrupted. |
| 228 | */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 229 | if (end < fq->q.len || |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 230 | ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | goto err; |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 232 | fq->q.last_in |= INET_FRAG_LAST_IN; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 233 | fq->q.len = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } else { |
| 235 | /* Check if the fragment is rounded to 8 bytes. |
| 236 | * Required by the RFC. |
| 237 | */ |
| 238 | if (end & 0x7) { |
| 239 | /* RFC2460 says always send parameter problem in |
| 240 | * this case. -DaveM |
| 241 | */ |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 242 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 243 | IPSTATS_MIB_INHDRERRORS); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 244 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | offsetof(struct ipv6hdr, payload_len)); |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 246 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 248 | if (end > fq->q.len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | /* Some bits beyond end -> corruption. */ |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 250 | if (fq->q.last_in & INET_FRAG_LAST_IN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | goto err; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 252 | fq->q.len = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | |
| 256 | if (end == offset) |
| 257 | goto err; |
| 258 | |
| 259 | /* Point into the IP datagram 'data' part. */ |
| 260 | if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data)) |
| 261 | goto err; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 262 | |
Stephen Hemminger | 42ca89c | 2005-09-08 12:57:43 -0700 | [diff] [blame] | 263 | if (pskb_trim_rcsum(skb, end - offset)) |
| 264 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | /* Find out which fragments are in front and at the back of us |
| 267 | * in the chain of fragments so far. We must know where to put |
| 268 | * this fragment, right? |
| 269 | */ |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 270 | prev = fq->q.fragments_tail; |
| 271 | if (!prev || FRAG6_CB(prev)->offset < offset) { |
| 272 | next = NULL; |
| 273 | goto found; |
| 274 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | prev = NULL; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 276 | for(next = fq->q.fragments; next != NULL; next = next->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (FRAG6_CB(next)->offset >= offset) |
| 278 | break; /* bingo! */ |
| 279 | prev = next; |
| 280 | } |
| 281 | |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 282 | found: |
Eric Dumazet | 5de658f | 2012-01-30 04:29:24 +0000 | [diff] [blame] | 283 | /* RFC5722, Section 4, amended by Errata ID : 3089 |
| 284 | * When reassembling an IPv6 datagram, if |
Nicolas Dichtel | 70789d7 | 2010-09-03 05:13:05 +0000 | [diff] [blame] | 285 | * one or more its constituent fragments is determined to be an |
| 286 | * overlapping fragment, the entire datagram (and any constituent |
Eric Dumazet | 5de658f | 2012-01-30 04:29:24 +0000 | [diff] [blame] | 287 | * fragments) MUST be silently discarded. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Nicolas Dichtel | 70789d7 | 2010-09-03 05:13:05 +0000 | [diff] [blame] | 290 | /* Check for overlap with preceding fragment. */ |
| 291 | if (prev && |
Shan Wei | f464214 | 2010-11-05 01:56:34 +0000 | [diff] [blame] | 292 | (FRAG6_CB(prev)->offset + prev->len) > offset) |
Nicolas Dichtel | 70789d7 | 2010-09-03 05:13:05 +0000 | [diff] [blame] | 293 | goto discard_fq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Nicolas Dichtel | 70789d7 | 2010-09-03 05:13:05 +0000 | [diff] [blame] | 295 | /* Look for overlap with succeeding segment. */ |
| 296 | if (next && FRAG6_CB(next)->offset < end) |
| 297 | goto discard_fq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | FRAG6_CB(skb)->offset = offset; |
| 300 | |
| 301 | /* Insert this fragment in the chain of fragments. */ |
| 302 | skb->next = next; |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 303 | if (!next) |
| 304 | fq->q.fragments_tail = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | if (prev) |
| 306 | prev->next = skb; |
| 307 | else |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 308 | fq->q.fragments = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 310 | dev = skb->dev; |
| 311 | if (dev) { |
| 312 | fq->iif = dev->ifindex; |
| 313 | skb->dev = NULL; |
| 314 | } |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 315 | fq->q.stamp = skb->tstamp; |
| 316 | fq->q.meat += skb->len; |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 317 | add_frag_mem_limit(&fq->q, skb->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | /* The first fragment. |
| 320 | * nhoffset is obtained from the first fragment, of course. |
| 321 | */ |
| 322 | if (offset == 0) { |
| 323 | fq->nhoffset = nhoff; |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 324 | fq->q.last_in |= INET_FRAG_FIRST_IN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 326 | |
Joe Perches | bc578a5 | 2008-03-28 16:35:27 -0700 | [diff] [blame] | 327 | if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) && |
| 328 | fq->q.meat == fq->q.len) |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 329 | return ip6_frag_reasm(fq, prev, dev); |
| 330 | |
Jesper Dangaard Brouer | 3ef0eb0 | 2013-01-28 23:45:51 +0000 | [diff] [blame] | 331 | inet_frag_lru_move(&fq->q); |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 332 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Nicolas Dichtel | 70789d7 | 2010-09-03 05:13:05 +0000 | [diff] [blame] | 334 | discard_fq: |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 335 | inet_frag_kill(&fq->q, &ip6_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | err: |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 337 | IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), |
Denis V. Lunev | 3bd653c | 2008-10-08 10:54:51 -0700 | [diff] [blame] | 338 | IPSTATS_MIB_REASMFAILS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | kfree_skb(skb); |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 340 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Check if this packet is complete. |
| 345 | * Returns NULL on failure by any reason, and pointer |
| 346 | * to current nexthdr field in reassembled frame. |
| 347 | * |
| 348 | * It is called with locked fq, and caller must check that |
| 349 | * queue is eligible for reassembly i.e. it is not COMPLETE, |
| 350 | * the last and the first frames arrived and all the bits are here. |
| 351 | */ |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 352 | static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | struct net_device *dev) |
| 354 | { |
Jorge Boncompte [DTI2] | 2bad35b | 2009-03-18 23:26:11 -0700 | [diff] [blame] | 355 | struct net *net = container_of(fq->q.net, struct net, ipv6.frags); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 356 | struct sk_buff *fp, *head = fq->q.fragments; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | int payload_len; |
| 358 | unsigned int nhoff; |
Eric Dumazet | ec16439 | 2012-05-19 03:02:35 +0000 | [diff] [blame] | 359 | int sum_truesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 361 | inet_frag_kill(&fq->q, &ip6_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 363 | /* Make the one we just received the head. */ |
| 364 | if (prev) { |
| 365 | head = prev->next; |
| 366 | fp = skb_clone(head, GFP_ATOMIC); |
| 367 | |
| 368 | if (!fp) |
| 369 | goto out_oom; |
| 370 | |
| 371 | fp->next = head->next; |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 372 | if (!fp->next) |
| 373 | fq->q.fragments_tail = fp; |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 374 | prev->next = fp; |
| 375 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 376 | skb_morph(head, fq->q.fragments); |
| 377 | head->next = fq->q.fragments->next; |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 378 | |
Eric Dumazet | 808db80 | 2012-04-24 10:17:59 +0000 | [diff] [blame] | 379 | consume_skb(fq->q.fragments); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 380 | fq->q.fragments = head; |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 383 | WARN_ON(head == NULL); |
| 384 | WARN_ON(FRAG6_CB(head)->offset != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | /* Unfragmented part is taken from the first segment. */ |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 387 | payload_len = ((head->data - skb_network_header(head)) - |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 388 | sizeof(struct ipv6hdr) + fq->q.len - |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 389 | sizeof(struct frag_hdr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | if (payload_len > IPV6_MAXPLEN) |
| 391 | goto out_oversize; |
| 392 | |
| 393 | /* Head of list must not be cloned. */ |
Pravin B Shelar | 14bbd6a | 2013-02-14 09:44:49 +0000 | [diff] [blame] | 394 | if (skb_unclone(head, GFP_ATOMIC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | goto out_oom; |
| 396 | |
| 397 | /* If the first fragment is fragmented itself, we split |
| 398 | * it to two chunks: the first with data and paged part |
| 399 | * and the second, holding only fragments. */ |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 400 | if (skb_has_frag_list(head)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | struct sk_buff *clone; |
| 402 | int i, plen = 0; |
| 403 | |
| 404 | if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL) |
| 405 | goto out_oom; |
| 406 | clone->next = head->next; |
| 407 | head->next = clone; |
| 408 | skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; |
David S. Miller | 4d9092b | 2009-06-09 00:20:05 -0700 | [diff] [blame] | 409 | skb_frag_list_init(head); |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 410 | for (i = 0; i < skb_shinfo(head)->nr_frags; i++) |
| 411 | plen += skb_frag_size(&skb_shinfo(head)->frags[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | clone->len = clone->data_len = head->data_len - plen; |
| 413 | head->data_len -= clone->len; |
| 414 | head->len -= clone->len; |
| 415 | clone->csum = 0; |
| 416 | clone->ip_summed = head->ip_summed; |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 417 | add_frag_mem_limit(&fq->q, clone->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | /* We have to remove fragment header from datagram and to relocate |
| 421 | * header in order to calculate ICV correctly. */ |
| 422 | nhoff = fq->nhoffset; |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 423 | skb_network_header(head)[nhoff] = skb_transport_header(head)[0]; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 424 | memmove(head->head + sizeof(struct frag_hdr), head->head, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | (head->data - head->head) - sizeof(struct frag_hdr)); |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 426 | head->mac_header += sizeof(struct frag_hdr); |
| 427 | head->network_header += sizeof(struct frag_hdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 429 | skb_reset_transport_header(head); |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 430 | skb_push(head, head->data - skb_network_header(head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Eric Dumazet | ec16439 | 2012-05-19 03:02:35 +0000 | [diff] [blame] | 432 | sum_truesize = head->truesize; |
| 433 | for (fp = head->next; fp;) { |
| 434 | bool headstolen; |
| 435 | int delta; |
| 436 | struct sk_buff *next = fp->next; |
| 437 | |
| 438 | sum_truesize += fp->truesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | if (head->ip_summed != fp->ip_summed) |
| 440 | head->ip_summed = CHECKSUM_NONE; |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 441 | else if (head->ip_summed == CHECKSUM_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | head->csum = csum_add(head->csum, fp->csum); |
Eric Dumazet | ec16439 | 2012-05-19 03:02:35 +0000 | [diff] [blame] | 443 | |
| 444 | if (skb_try_coalesce(head, fp, &headstolen, &delta)) { |
| 445 | kfree_skb_partial(fp, headstolen); |
| 446 | } else { |
| 447 | if (!skb_shinfo(head)->frag_list) |
| 448 | skb_shinfo(head)->frag_list = fp; |
| 449 | head->data_len += fp->len; |
| 450 | head->len += fp->len; |
| 451 | head->truesize += fp->truesize; |
| 452 | } |
| 453 | fp = next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 455 | sub_frag_mem_limit(&fq->q, sum_truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
| 457 | head->next = NULL; |
| 458 | head->dev = dev; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 459 | head->tstamp = fq->q.stamp; |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 460 | ipv6_hdr(head)->payload_len = htons(payload_len); |
Patrick McHardy | 951dbc8 | 2006-01-06 23:02:34 -0800 | [diff] [blame] | 461 | IP6CB(head)->nhoff = nhoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | /* Yes, and fold redundant checksum back. 8) */ |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 464 | if (head->ip_summed == CHECKSUM_COMPLETE) |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 465 | head->csum = csum_partial(skb_network_header(head), |
Arnaldo Carvalho de Melo | cfe1fc7 | 2007-03-16 17:26:39 -0300 | [diff] [blame] | 466 | skb_network_header_len(head), |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 467 | head->csum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 469 | rcu_read_lock(); |
Jorge Boncompte [DTI2] | 2bad35b | 2009-03-18 23:26:11 -0700 | [diff] [blame] | 470 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS); |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 471 | rcu_read_unlock(); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 472 | fq->q.fragments = NULL; |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 473 | fq->q.fragments_tail = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return 1; |
| 475 | |
| 476 | out_oversize: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 477 | net_dbg_ratelimited("ip6_frag_reasm: payload len = %d\n", payload_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | goto out_fail; |
| 479 | out_oom: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 480 | net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | out_fail: |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 482 | rcu_read_lock(); |
Jorge Boncompte [DTI2] | 2bad35b | 2009-03-18 23:26:11 -0700 | [diff] [blame] | 483 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS); |
YOSHIFUJI Hideaki | a11d206 | 2006-11-04 20:11:37 +0900 | [diff] [blame] | 484 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | return -1; |
| 486 | } |
| 487 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 488 | static int ipv6_frag_rcv(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | struct frag_hdr *fhdr; |
| 491 | struct frag_queue *fq; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 492 | const struct ipv6hdr *hdr = ipv6_hdr(skb); |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 493 | struct net *net = dev_net(skb_dst(skb)->dev); |
Amerigo Wang | 6b10286 | 2012-09-18 16:50:11 +0000 | [diff] [blame] | 494 | int evicted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 496 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMREQDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | /* Jumbo payload inhibits frag. header */ |
Denis V. Lunev | 98b3377c | 2008-10-08 10:31:44 -0700 | [diff] [blame] | 499 | if (hdr->payload_len==0) |
| 500 | goto fail_hdr; |
| 501 | |
Arnaldo Carvalho de Melo | ea2ae17 | 2007-04-25 17:55:53 -0700 | [diff] [blame] | 502 | if (!pskb_may_pull(skb, (skb_transport_offset(skb) + |
Denis V. Lunev | 98b3377c | 2008-10-08 10:31:44 -0700 | [diff] [blame] | 503 | sizeof(struct frag_hdr)))) |
| 504 | goto fail_hdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 506 | hdr = ipv6_hdr(skb); |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 507 | fhdr = (struct frag_hdr *)skb_transport_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | if (!(fhdr->frag_off & htons(0xFFF9))) { |
| 510 | /* It is not a fragmented frame */ |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 511 | skb->transport_header += sizeof(struct frag_hdr); |
Denis V. Lunev | 483a47d | 2008-10-08 11:09:27 -0700 | [diff] [blame] | 512 | IP6_INC_STATS_BH(net, |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 513 | ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMOKS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 515 | IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | return 1; |
| 517 | } |
| 518 | |
Amerigo Wang | 6b10286 | 2012-09-18 16:50:11 +0000 | [diff] [blame] | 519 | evicted = inet_frag_evictor(&net->ipv6.frags, &ip6_frags, false); |
| 520 | if (evicted) |
| 521 | IP6_ADD_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), |
| 522 | IPSTATS_MIB_REASMFAILS, evicted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Shan Wei | 9546377 | 2010-02-11 00:12:45 +0000 | [diff] [blame] | 524 | fq = fq_find(net, fhdr->identification, &hdr->saddr, &hdr->daddr); |
| 525 | if (fq != NULL) { |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 526 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 528 | spin_lock(&fq->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Herbert Xu | f61944e | 2007-10-15 01:28:47 -0700 | [diff] [blame] | 530 | ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 532 | spin_unlock(&fq->q.lock); |
Amerigo Wang | b836c99 | 2012-09-18 16:50:09 +0000 | [diff] [blame] | 533 | inet_frag_put(&fq->q, &ip6_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | return ret; |
| 535 | } |
| 536 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 537 | IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMFAILS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | kfree_skb(skb); |
| 539 | return -1; |
Denis V. Lunev | 98b3377c | 2008-10-08 10:31:44 -0700 | [diff] [blame] | 540 | |
| 541 | fail_hdr: |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 542 | IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_INHDRERRORS); |
Denis V. Lunev | 98b3377c | 2008-10-08 10:31:44 -0700 | [diff] [blame] | 543 | icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb_network_header_len(skb)); |
| 544 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 547 | static const struct inet6_protocol frag_protocol = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
| 549 | .handler = ipv6_frag_rcv, |
| 550 | .flags = INET6_PROTO_NOPOLICY, |
| 551 | }; |
| 552 | |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 553 | #ifdef CONFIG_SYSCTL |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 554 | static struct ctl_table ip6_frags_ns_ctl_table[] = { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 555 | { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 556 | .procname = "ip6frag_high_thresh", |
Pavel Emelyanov | e31e0bdc7 | 2008-01-22 06:10:13 -0800 | [diff] [blame] | 557 | .data = &init_net.ipv6.frags.high_thresh, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 558 | .maxlen = sizeof(int), |
| 559 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 560 | .proc_handler = proc_dointvec |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 561 | }, |
| 562 | { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 563 | .procname = "ip6frag_low_thresh", |
Pavel Emelyanov | e31e0bdc7 | 2008-01-22 06:10:13 -0800 | [diff] [blame] | 564 | .data = &init_net.ipv6.frags.low_thresh, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 565 | .maxlen = sizeof(int), |
| 566 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 567 | .proc_handler = proc_dointvec |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 568 | }, |
| 569 | { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 570 | .procname = "ip6frag_time", |
Pavel Emelyanov | b2fd532 | 2008-01-22 06:09:37 -0800 | [diff] [blame] | 571 | .data = &init_net.ipv6.frags.timeout, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 572 | .maxlen = sizeof(int), |
| 573 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 574 | .proc_handler = proc_dointvec_jiffies, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 575 | }, |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 576 | { } |
| 577 | }; |
| 578 | |
| 579 | static struct ctl_table ip6_frags_ctl_table[] = { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 580 | { |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 581 | .procname = "ip6frag_secret_interval", |
Pavel Emelyanov | 3b4bc4a | 2008-01-22 06:11:04 -0800 | [diff] [blame] | 582 | .data = &ip6_frags.secret_interval, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 583 | .maxlen = sizeof(int), |
| 584 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 585 | .proc_handler = proc_dointvec_jiffies, |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 586 | }, |
| 587 | { } |
| 588 | }; |
Daniel Lezcano | 7d460db | 2008-01-18 23:52:35 -0800 | [diff] [blame] | 589 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 590 | static int __net_init ip6_frags_ns_sysctl_register(struct net *net) |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 591 | { |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 592 | struct ctl_table *table; |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 593 | struct ctl_table_header *hdr; |
| 594 | |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 595 | table = ip6_frags_ns_ctl_table; |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 596 | if (!net_eq(net, &init_net)) { |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 597 | table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL); |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 598 | if (table == NULL) |
| 599 | goto err_alloc; |
| 600 | |
Pavel Emelyanov | e31e0bdc7 | 2008-01-22 06:10:13 -0800 | [diff] [blame] | 601 | table[0].data = &net->ipv6.frags.high_thresh; |
| 602 | table[1].data = &net->ipv6.frags.low_thresh; |
Pavel Emelyanov | b2fd532 | 2008-01-22 06:09:37 -0800 | [diff] [blame] | 603 | table[2].data = &net->ipv6.frags.timeout; |
Eric W. Biederman | 464dc80 | 2012-11-16 03:02:59 +0000 | [diff] [blame] | 604 | |
| 605 | /* Don't export sysctls to unprivileged users */ |
| 606 | if (net->user_ns != &init_user_ns) |
| 607 | table[0].procname = NULL; |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 608 | } |
| 609 | |
Eric W. Biederman | ec8f23c | 2012-04-19 13:44:49 +0000 | [diff] [blame] | 610 | hdr = register_net_sysctl(net, "net/ipv6", table); |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 611 | if (hdr == NULL) |
| 612 | goto err_reg; |
| 613 | |
| 614 | net->ipv6.sysctl.frags_hdr = hdr; |
| 615 | return 0; |
| 616 | |
| 617 | err_reg: |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 618 | if (!net_eq(net, &init_net)) |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 619 | kfree(table); |
| 620 | err_alloc: |
| 621 | return -ENOMEM; |
| 622 | } |
| 623 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 624 | static void __net_exit ip6_frags_ns_sysctl_unregister(struct net *net) |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 625 | { |
| 626 | struct ctl_table *table; |
| 627 | |
| 628 | table = net->ipv6.sysctl.frags_hdr->ctl_table_arg; |
| 629 | unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr); |
Yang Hongyang | 3705e11 | 2009-12-18 20:25:13 -0800 | [diff] [blame] | 630 | if (!net_eq(net, &init_net)) |
| 631 | kfree(table); |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 632 | } |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 633 | |
| 634 | static struct ctl_table_header *ip6_ctl_header; |
| 635 | |
| 636 | static int ip6_frags_sysctl_register(void) |
| 637 | { |
Eric W. Biederman | 4344475 | 2012-04-19 13:22:55 +0000 | [diff] [blame] | 638 | ip6_ctl_header = register_net_sysctl(&init_net, "net/ipv6", |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 639 | ip6_frags_ctl_table); |
| 640 | return ip6_ctl_header == NULL ? -ENOMEM : 0; |
| 641 | } |
| 642 | |
| 643 | static void ip6_frags_sysctl_unregister(void) |
| 644 | { |
| 645 | unregister_net_sysctl_table(ip6_ctl_header); |
| 646 | } |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 647 | #else |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 648 | static inline int ip6_frags_ns_sysctl_register(struct net *net) |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 649 | { |
| 650 | return 0; |
| 651 | } |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 652 | |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 653 | static inline void ip6_frags_ns_sysctl_unregister(struct net *net) |
Pavel Emelyanov | e4a2d5c | 2008-01-22 06:08:36 -0800 | [diff] [blame] | 654 | { |
| 655 | } |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 656 | |
| 657 | static inline int ip6_frags_sysctl_register(void) |
| 658 | { |
| 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | static inline void ip6_frags_sysctl_unregister(void) |
| 663 | { |
| 664 | } |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 665 | #endif |
| 666 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 667 | static int __net_init ipv6_frags_init_net(struct net *net) |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 668 | { |
Shan Wei | 7c070aa | 2010-01-20 10:42:41 +0100 | [diff] [blame] | 669 | net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH; |
| 670 | net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH; |
Pavel Emelyanov | b2fd532 | 2008-01-22 06:09:37 -0800 | [diff] [blame] | 671 | net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT; |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 672 | |
Pavel Emelyanov | e5a2bb8 | 2008-01-22 06:06:23 -0800 | [diff] [blame] | 673 | inet_frags_init_net(&net->ipv6.frags); |
| 674 | |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 675 | return ip6_frags_ns_sysctl_register(net); |
Daniel Lezcano | e71e034 | 2008-01-10 02:56:03 -0800 | [diff] [blame] | 676 | } |
| 677 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 678 | static void __net_exit ipv6_frags_exit_net(struct net *net) |
Pavel Emelyanov | 81566e8 | 2008-01-22 06:12:39 -0800 | [diff] [blame] | 679 | { |
Pavel Emelyanov | 0a64b4b | 2008-05-19 13:51:29 -0700 | [diff] [blame] | 680 | ip6_frags_ns_sysctl_unregister(net); |
Pavel Emelyanov | 81566e8 | 2008-01-22 06:12:39 -0800 | [diff] [blame] | 681 | inet_frags_exit_net(&net->ipv6.frags, &ip6_frags); |
| 682 | } |
| 683 | |
| 684 | static struct pernet_operations ip6_frags_ops = { |
| 685 | .init = ipv6_frags_init_net, |
| 686 | .exit = ipv6_frags_exit_net, |
| 687 | }; |
| 688 | |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 689 | int __init ipv6_frag_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | { |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 691 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 693 | ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT); |
| 694 | if (ret) |
| 695 | goto out; |
Daniel Lezcano | e71e034 | 2008-01-10 02:56:03 -0800 | [diff] [blame] | 696 | |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 697 | ret = ip6_frags_sysctl_register(); |
| 698 | if (ret) |
| 699 | goto err_sysctl; |
| 700 | |
Pavel Emelyanov | 0002c63 | 2008-05-19 13:52:28 -0700 | [diff] [blame] | 701 | ret = register_pernet_subsys(&ip6_frags_ops); |
| 702 | if (ret) |
| 703 | goto err_pernet; |
Pavel Emelyanov | 8d8354d | 2008-01-22 05:58:31 -0800 | [diff] [blame] | 704 | |
Pavel Emelyanov | 321a3a9 | 2007-10-15 02:38:08 -0700 | [diff] [blame] | 705 | ip6_frags.hashfn = ip6_hashfn; |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 706 | ip6_frags.constructor = ip6_frag_init; |
Pavel Emelyanov | c954770 | 2007-10-17 19:48:26 -0700 | [diff] [blame] | 707 | ip6_frags.destructor = NULL; |
Pavel Emelyanov | 1e4b828 | 2007-10-15 02:39:14 -0700 | [diff] [blame] | 708 | ip6_frags.skb_free = NULL; |
| 709 | ip6_frags.qsize = sizeof(struct frag_queue); |
Pavel Emelyanov | abd6523 | 2007-10-17 19:47:21 -0700 | [diff] [blame] | 710 | ip6_frags.match = ip6_frag_match; |
Pavel Emelyanov | e521db9 | 2007-10-17 19:45:23 -0700 | [diff] [blame] | 711 | ip6_frags.frag_expire = ip6_frag_expire; |
Pavel Emelyanov | 3b4bc4a | 2008-01-22 06:11:04 -0800 | [diff] [blame] | 712 | ip6_frags.secret_interval = 10 * 60 * HZ; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 713 | inet_frags_init(&ip6_frags); |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 714 | out: |
| 715 | return ret; |
Pavel Emelyanov | 0002c63 | 2008-05-19 13:52:28 -0700 | [diff] [blame] | 716 | |
| 717 | err_pernet: |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 718 | ip6_frags_sysctl_unregister(); |
| 719 | err_sysctl: |
Pavel Emelyanov | 0002c63 | 2008-05-19 13:52:28 -0700 | [diff] [blame] | 720 | inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT); |
| 721 | goto out; |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | void ipv6_frag_exit(void) |
| 725 | { |
| 726 | inet_frags_fini(&ip6_frags); |
Pavel Emelyanov | 7d291eb | 2008-05-19 13:53:02 -0700 | [diff] [blame] | 727 | ip6_frags_sysctl_unregister(); |
Pavel Emelyanov | 81566e8 | 2008-01-22 06:12:39 -0800 | [diff] [blame] | 728 | unregister_pernet_subsys(&ip6_frags_ops); |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 729 | inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } |