blob: e231c248aea7152b1e955d74103671a4328ea881 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The IP fragmentation functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Version: $Id: ip_fragment.c,v 1.59 2002/01/12 07:54:56 davem Exp $
9 *
10 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
11 * Alan Cox <Alan.Cox@linux.org>
12 *
13 * Fixes:
14 * Alan Cox : Split from ip.c , see ip_input.c for history.
15 * David S. Miller : Begin massive cleanup...
16 * Andi Kleen : Add sysctls.
17 * xxxx : Overlapfrag bug.
18 * Ultima : ip_expire() kernel panic.
19 * Bill Hawes : Frag accounting and evictor fixes.
20 * John McDonald : 0 length frag bug.
21 * Alexey Kuznetsov: SMP races, threading, cleanup.
22 * Patrick McHardy : LRU queue of frag heads for evictor.
23 */
24
Herbert Xu89cee8b2005-12-13 23:14:27 -080025#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/jiffies.h>
30#include <linux/skbuff.h>
31#include <linux/list.h>
32#include <linux/ip.h>
33#include <linux/icmp.h>
34#include <linux/netdevice.h>
35#include <linux/jhash.h>
36#include <linux/random.h>
37#include <net/sock.h>
38#include <net/ip.h>
39#include <net/icmp.h>
40#include <net/checksum.h>
Herbert Xu89cee8b2005-12-13 23:14:27 -080041#include <net/inetpeer.h>
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070042#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/tcp.h>
44#include <linux/udp.h>
45#include <linux/inet.h>
46#include <linux/netfilter_ipv4.h>
47
48/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
49 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
50 * as well. Or notify me, at least. --ANK
51 */
52
Brian Haleyab32ea52006-09-22 14:15:41 -070053int sysctl_ipfrag_max_dist __read_mostly = 64;
Herbert Xu89cee8b2005-12-13 23:14:27 -080054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct ipfrag_skb_cb
56{
57 struct inet_skb_parm h;
58 int offset;
59};
60
61#define FRAG_CB(skb) ((struct ipfrag_skb_cb*)((skb)->cb))
62
63/* Describe an entry in the "incomplete datagrams" queue. */
64struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070065 struct inet_frag_queue q;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 u32 user;
Al Viro18277772006-09-26 22:19:02 -070068 __be32 saddr;
69 __be32 daddr;
70 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u8 protocol;
Herbert Xu89cee8b2005-12-13 23:14:27 -080072 int iif;
73 unsigned int rid;
74 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Pavel Emelyanov04128f22007-10-15 02:33:45 -070077struct inet_frags_ctl ip4_frags_ctl __read_mostly = {
78 /*
79 * Fragment cache limits. We will commit 256K at one time. Should we
80 * cross that limit we will prune down to 192K. This should cope with
81 * even the most extreme cases without allowing an attacker to
82 * measurably harm machine performance.
83 */
84 .high_thresh = 256 * 1024,
85 .low_thresh = 192 * 1024,
86
87 /*
88 * Important NOTE! Fragment queue must be destroyed before MSL expires.
89 * RFC791 is wrong proposing to prolongate timer each fragment arrival
90 * by TTL.
91 */
92 .timeout = IP_FRAG_TIME,
93 .secret_interval = 10 * 60 * HZ,
94};
95
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070096static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070098int ip_frag_nqueues(void)
99{
100 return ip4_frags.nqueues;
101}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700103int ip_frag_mem(void)
104{
105 return atomic_read(&ip4_frags.mem);
106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Herbert Xu1706d582007-10-14 00:38:15 -0700108static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
109 struct net_device *dev);
110
Al Viro18277772006-09-26 22:19:02 -0700111static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Al Viro18277772006-09-26 22:19:02 -0700113 return jhash_3words((__force u32)id << 16 | prot,
114 (__force u32)saddr, (__force u32)daddr,
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700115 ip4_frags.rnd) & (INETFRAGS_HASHSZ - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700118static unsigned int ip4_hashfn(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700120 struct ipq *ipq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700122 ipq = container_of(q, struct ipq, q);
123 return ipqhashfn(ipq->id, ipq->saddr, ipq->daddr, ipq->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/* Memory Tracking Functions. */
127static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work)
128{
129 if (work)
130 *work -= skb->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700131 atomic_sub(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 kfree_skb(skb);
133}
134
135static __inline__ void frag_free_queue(struct ipq *qp, int *work)
136{
137 if (work)
138 *work -= sizeof(struct ipq);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700139 atomic_sub(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 kfree(qp);
141}
142
143static __inline__ struct ipq *frag_alloc_queue(void)
144{
145 struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC);
146
Stephen Hemminger132adf52007-03-08 20:44:43 -0800147 if (!qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700149 atomic_add(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return qp;
151}
152
153
154/* Destruction primitives. */
155
156/* Complete destruction of ipq. */
157static void ip_frag_destroy(struct ipq *qp, int *work)
158{
159 struct sk_buff *fp;
160
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700161 BUG_TRAP(qp->q.last_in&COMPLETE);
162 BUG_TRAP(del_timer(&qp->q.timer) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Herbert Xu89cee8b2005-12-13 23:14:27 -0800164 if (qp->peer)
165 inet_putpeer(qp->peer);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 /* Release all fragment data. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700168 fp = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 while (fp) {
170 struct sk_buff *xp = fp->next;
171
172 frag_kfree_skb(fp, work);
173 fp = xp;
174 }
175
176 /* Finally, release the queue descriptor itself. */
177 frag_free_queue(qp, work);
178}
179
180static __inline__ void ipq_put(struct ipq *ipq, int *work)
181{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700182 if (atomic_dec_and_test(&ipq->q.refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 ip_frag_destroy(ipq, work);
184}
185
186/* Kill ipq entry. It is not destroyed immediately,
187 * because caller (and someone more) holds reference count.
188 */
189static void ipq_kill(struct ipq *ipq)
190{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700191 inet_frag_kill(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900194/* Memory limiting on fragments. Evictor trashes the oldest
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * fragment queue until we are back under the threshold.
196 */
197static void ip_evictor(void)
198{
199 struct ipq *qp;
200 struct list_head *tmp;
201 int work;
202
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700203 work = atomic_read(&ip4_frags.mem) - ip4_frags_ctl.low_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (work <= 0)
205 return;
206
207 while (work > 0) {
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700208 read_lock(&ip4_frags.lock);
209 if (list_empty(&ip4_frags.lru_list)) {
210 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return;
212 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700213 tmp = ip4_frags.lru_list.next;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700214 qp = list_entry(tmp, struct ipq, q.lru_list);
215 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700216 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700218 spin_lock(&qp->q.lock);
219 if (!(qp->q.last_in&COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 ipq_kill(qp);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700221 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 ipq_put(qp, &work);
224 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
225 }
226}
227
228/*
229 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
230 */
231static void ip_expire(unsigned long arg)
232{
233 struct ipq *qp = (struct ipq *) arg;
234
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700235 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700237 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
239
240 ipq_kill(qp);
241
242 IP_INC_STATS_BH(IPSTATS_MIB_REASMTIMEOUT);
243 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
244
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700245 if ((qp->q.last_in&FIRST_IN) && qp->q.fragments != NULL) {
246 struct sk_buff *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700248 if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
250 dev_put(head->dev);
251 }
252 }
253out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700254 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ipq_put(qp, NULL);
256}
257
258/* Creation primitives. */
259
David S. Miller55c00222006-04-09 22:43:55 -0700260static struct ipq *ip_frag_intern(struct ipq *qp_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800263#ifdef CONFIG_SMP
264 struct hlist_node *n;
265#endif
David S. Miller55c00222006-04-09 22:43:55 -0700266 unsigned int hash;
267
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700268 write_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700269 hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
270 qp_in->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#ifdef CONFIG_SMP
272 /* With SMP race we have to recheck hash table, because
273 * such entry could be created on other cpu, while we
274 * promoted read lock to write lock.
275 */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700276 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800277 if (qp->id == qp_in->id &&
278 qp->saddr == qp_in->saddr &&
279 qp->daddr == qp_in->daddr &&
280 qp->protocol == qp_in->protocol &&
281 qp->user == qp_in->user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700282 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700283 write_unlock(&ip4_frags.lock);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700284 qp_in->q.last_in |= COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 ipq_put(qp_in, NULL);
286 return qp;
287 }
288 }
289#endif
290 qp = qp_in;
291
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700292 if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout))
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700293 atomic_inc(&qp->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700295 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700296 hlist_add_head(&qp->q.list, &ip4_frags.hash[hash]);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700297 INIT_LIST_HEAD(&qp->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700298 list_add_tail(&qp->q.lru_list, &ip4_frags.lru_list);
299 ip4_frags.nqueues++;
300 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return qp;
302}
303
304/* Add an entry to the 'ipq' queue for a newly received IP datagram. */
David S. Miller55c00222006-04-09 22:43:55 -0700305static struct ipq *ip_frag_create(struct iphdr *iph, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 struct ipq *qp;
308
309 if ((qp = frag_alloc_queue()) == NULL)
310 goto out_nomem;
311
312 qp->protocol = iph->protocol;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700313 qp->q.last_in = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 qp->id = iph->id;
315 qp->saddr = iph->saddr;
316 qp->daddr = iph->daddr;
317 qp->user = user;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700318 qp->q.len = 0;
319 qp->q.meat = 0;
320 qp->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 qp->iif = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800322 qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* Initialize a timer for this entry. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700325 init_timer(&qp->q.timer);
326 qp->q.timer.data = (unsigned long) qp; /* pointer to queue */
327 qp->q.timer.function = ip_expire; /* expire function */
328 spin_lock_init(&qp->q.lock);
329 atomic_set(&qp->q.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David S. Miller55c00222006-04-09 22:43:55 -0700331 return ip_frag_intern(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333out_nomem:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700334 LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return NULL;
336}
337
338/* Find the correct entry in the "incomplete datagrams" queue for
339 * this IP datagram, and create new one, if nothing is found.
340 */
341static inline struct ipq *ip_find(struct iphdr *iph, u32 user)
342{
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800343 __be16 id = iph->id;
Al Viro18277772006-09-26 22:19:02 -0700344 __be32 saddr = iph->saddr;
345 __be32 daddr = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 __u8 protocol = iph->protocol;
David S. Miller55c00222006-04-09 22:43:55 -0700347 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800349 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700351 read_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700352 hash = ipqhashfn(id, saddr, daddr, protocol);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700353 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800354 if (qp->id == id &&
355 qp->saddr == saddr &&
356 qp->daddr == daddr &&
357 qp->protocol == protocol &&
358 qp->user == user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700359 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700360 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return qp;
362 }
363 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700364 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
David S. Miller55c00222006-04-09 22:43:55 -0700366 return ip_frag_create(iph, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Herbert Xu89cee8b2005-12-13 23:14:27 -0800369/* Is the fragment too far ahead to be part of ipq? */
370static inline int ip_frag_too_far(struct ipq *qp)
371{
372 struct inet_peer *peer = qp->peer;
373 unsigned int max = sysctl_ipfrag_max_dist;
374 unsigned int start, end;
375
376 int rc;
377
378 if (!peer || !max)
379 return 0;
380
381 start = qp->rid;
382 end = atomic_inc_return(&peer->rid);
383 qp->rid = end;
384
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700385 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800386
387 if (rc) {
388 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
389 }
390
391 return rc;
392}
393
394static int ip_frag_reinit(struct ipq *qp)
395{
396 struct sk_buff *fp;
397
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700398 if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700399 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800400 return -ETIMEDOUT;
401 }
402
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700403 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800404 do {
405 struct sk_buff *xp = fp->next;
406 frag_kfree_skb(fp, NULL);
407 fp = xp;
408 } while (fp);
409
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700410 qp->q.last_in = 0;
411 qp->q.len = 0;
412 qp->q.meat = 0;
413 qp->q.fragments = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800414 qp->iif = 0;
415
416 return 0;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700420static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700423 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int flags, offset;
425 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700426 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700428 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 goto err;
430
Herbert Xu89cee8b2005-12-13 23:14:27 -0800431 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700432 unlikely(ip_frag_too_far(qp)) &&
433 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800434 ipq_kill(qp);
435 goto err;
436 }
437
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700438 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 flags = offset & ~IP_OFFSET;
440 offset &= IP_OFFSET;
441 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300442 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 /* Determine the position of this fragment. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900445 end = offset + skb->len - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700446 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* Is this the final fragment? */
449 if ((flags & IP_MF) == 0) {
450 /* If we already have some bits beyond end
451 * or have different end, the segment is corrrupted.
452 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700453 if (end < qp->q.len ||
454 ((qp->q.last_in & LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700456 qp->q.last_in |= LAST_IN;
457 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 } else {
459 if (end&7) {
460 end &= ~7;
461 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
462 skb->ip_summed = CHECKSUM_NONE;
463 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700464 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700466 if (qp->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700468 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470 }
471 if (end == offset)
472 goto err;
473
Herbert Xu1706d582007-10-14 00:38:15 -0700474 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (pskb_pull(skb, ihl) == NULL)
476 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700477
478 err = pskb_trim_rcsum(skb, end - offset);
479 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 goto err;
481
482 /* Find out which fragments are in front and at the back of us
483 * in the chain of fragments so far. We must know where to put
484 * this fragment, right?
485 */
486 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700487 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (FRAG_CB(next)->offset >= offset)
489 break; /* bingo! */
490 prev = next;
491 }
492
493 /* We found where to put this one. Check for overlap with
494 * preceding fragment, and, if needed, align things so that
495 * any overlaps are eliminated.
496 */
497 if (prev) {
498 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
499
500 if (i > 0) {
501 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700502 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (end <= offset)
504 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700505 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (!pskb_pull(skb, i))
507 goto err;
508 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
509 skb->ip_summed = CHECKSUM_NONE;
510 }
511 }
512
Herbert Xu1706d582007-10-14 00:38:15 -0700513 err = -ENOMEM;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 while (next && FRAG_CB(next)->offset < end) {
516 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
517
518 if (i < next->len) {
519 /* Eat head of the next overlapped fragment
520 * and leave the loop. The next ones cannot overlap.
521 */
522 if (!pskb_pull(next, i))
523 goto err;
524 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700525 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (next->ip_summed != CHECKSUM_UNNECESSARY)
527 next->ip_summed = CHECKSUM_NONE;
528 break;
529 } else {
530 struct sk_buff *free_it = next;
531
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100532 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * new one drop it.
534 */
535 next = next->next;
536
537 if (prev)
538 prev->next = next;
539 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700540 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700542 qp->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 frag_kfree_skb(free_it, NULL);
544 }
545 }
546
547 FRAG_CB(skb)->offset = offset;
548
549 /* Insert this fragment in the chain of fragments. */
550 skb->next = next;
551 if (prev)
552 prev->next = skb;
553 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700554 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Herbert Xu1706d582007-10-14 00:38:15 -0700556 dev = skb->dev;
557 if (dev) {
558 qp->iif = dev->ifindex;
559 skb->dev = NULL;
560 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700561 qp->q.stamp = skb->tstamp;
562 qp->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700563 atomic_add(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (offset == 0)
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700565 qp->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700567 if (qp->q.last_in == (FIRST_IN | LAST_IN) && qp->q.meat == qp->q.len)
Herbert Xu1706d582007-10-14 00:38:15 -0700568 return ip_frag_reasm(qp, prev, dev);
569
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700570 write_lock(&ip4_frags.lock);
571 list_move_tail(&qp->q.lru_list, &ip4_frags.lru_list);
572 write_unlock(&ip4_frags.lock);
Herbert Xu1706d582007-10-14 00:38:15 -0700573 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575err:
576 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700577 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580
581/* Build a new IP datagram from all its fragments. */
582
Herbert Xu1706d582007-10-14 00:38:15 -0700583static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
584 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700587 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int len;
589 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700590 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 ipq_kill(qp);
593
Herbert Xu1706d582007-10-14 00:38:15 -0700594 /* Make the one we just received the head. */
595 if (prev) {
596 head = prev->next;
597 fp = skb_clone(head, GFP_ATOMIC);
598
599 if (!fp)
600 goto out_nomem;
601
602 fp->next = head->next;
603 prev->next = fp;
604
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700605 skb_morph(head, qp->q.fragments);
606 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700607
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700608 kfree_skb(qp->q.fragments);
609 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700610 }
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 BUG_TRAP(head != NULL);
613 BUG_TRAP(FRAG_CB(head)->offset == 0);
614
615 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300616 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700617 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Herbert Xu1706d582007-10-14 00:38:15 -0700619 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800620 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 goto out_oversize;
622
623 /* Head of list must not be cloned. */
Herbert Xu1706d582007-10-14 00:38:15 -0700624 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
626 goto out_nomem;
627
628 /* If the first fragment is fragmented itself, we split
629 * it to two chunks: the first with data and paged part
630 * and the second, holding only fragments. */
631 if (skb_shinfo(head)->frag_list) {
632 struct sk_buff *clone;
633 int i, plen = 0;
634
635 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
636 goto out_nomem;
637 clone->next = head->next;
638 head->next = clone;
639 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
640 skb_shinfo(head)->frag_list = NULL;
641 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
642 plen += skb_shinfo(head)->frags[i].size;
643 clone->len = clone->data_len = head->data_len - plen;
644 head->data_len -= clone->len;
645 head->len -= clone->len;
646 clone->csum = 0;
647 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700648 atomic_add(clone->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
651 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700652 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700653 atomic_sub(head->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 for (fp=head->next; fp; fp = fp->next) {
656 head->data_len += fp->len;
657 head->len += fp->len;
658 if (head->ip_summed != fp->ip_summed)
659 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700660 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 head->csum = csum_add(head->csum, fp->csum);
662 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700663 atomic_sub(fp->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
666 head->next = NULL;
667 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700668 head->tstamp = qp->q.stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700670 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 iph->frag_off = 0;
672 iph->tot_len = htons(len);
673 IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700674 qp->q.fragments = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700675 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677out_nomem:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900678 LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing "
Patrick McHardy64ce2072005-08-09 20:50:53 -0700679 "queue %p\n", qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto out_fail;
681out_oversize:
682 if (net_ratelimit())
683 printk(KERN_INFO
684 "Oversized IP packet from %d.%d.%d.%d.\n",
685 NIPQUAD(qp->saddr));
686out_fail:
687 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700688 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691/* Process an incoming IP datagram fragment. */
Herbert Xu776c7292007-10-14 00:38:32 -0700692int ip_defrag(struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS);
697
698 /* Start by cleaning up the memory. */
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700699 if (atomic_read(&ip4_frags.mem) > ip4_frags_ctl.high_thresh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 ip_evictor();
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* Lookup (or create) queue header */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700703 if ((qp = ip_find(ip_hdr(skb), user)) != NULL) {
Herbert Xu1706d582007-10-14 00:38:15 -0700704 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700706 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Herbert Xu1706d582007-10-14 00:38:15 -0700708 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700710 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 ipq_put(qp, NULL);
Herbert Xu776c7292007-10-14 00:38:32 -0700712 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714
715 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
716 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700717 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700720void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700722 ip4_frags.ctl = &ip4_frags_ctl;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700723 ip4_frags.hashfn = ip4_hashfn;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700724 inet_frags_init(&ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
727EXPORT_SYMBOL(ip_defrag);