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