blob: 7416c05dd334acf91222698eb31dd9e21b27b29d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static void ipfrag_secret_rebuild(unsigned long dummy)
119{
120 unsigned long now = jiffies;
121 int i;
122
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700123 write_lock(&ip4_frags.lock);
124 get_random_bytes(&ip4_frags.rnd, sizeof(u32));
125 for (i = 0; i < INETFRAGS_HASHSZ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct ipq *q;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800127 struct hlist_node *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700129 hlist_for_each_entry_safe(q, p, n, &ip4_frags.hash[i], q.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 unsigned int hval = ipqhashfn(q->id, q->saddr,
131 q->daddr, q->protocol);
132
133 if (hval != i) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700134 hlist_del(&q->q.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* Relink to new hash chain. */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700137 hlist_add_head(&q->q.list, &ip4_frags.hash[hval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700141 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700143 mod_timer(&ip4_frags.secret_timer, now + ip4_frags_ctl.secret_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* Memory Tracking Functions. */
147static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work)
148{
149 if (work)
150 *work -= skb->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700151 atomic_sub(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 kfree_skb(skb);
153}
154
155static __inline__ void frag_free_queue(struct ipq *qp, int *work)
156{
157 if (work)
158 *work -= sizeof(struct ipq);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700159 atomic_sub(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 kfree(qp);
161}
162
163static __inline__ struct ipq *frag_alloc_queue(void)
164{
165 struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC);
166
Stephen Hemminger132adf52007-03-08 20:44:43 -0800167 if (!qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700169 atomic_add(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return qp;
171}
172
173
174/* Destruction primitives. */
175
176/* Complete destruction of ipq. */
177static void ip_frag_destroy(struct ipq *qp, int *work)
178{
179 struct sk_buff *fp;
180
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700181 BUG_TRAP(qp->q.last_in&COMPLETE);
182 BUG_TRAP(del_timer(&qp->q.timer) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Herbert Xu89cee8b2005-12-13 23:14:27 -0800184 if (qp->peer)
185 inet_putpeer(qp->peer);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Release all fragment data. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700188 fp = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 while (fp) {
190 struct sk_buff *xp = fp->next;
191
192 frag_kfree_skb(fp, work);
193 fp = xp;
194 }
195
196 /* Finally, release the queue descriptor itself. */
197 frag_free_queue(qp, work);
198}
199
200static __inline__ void ipq_put(struct ipq *ipq, int *work)
201{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700202 if (atomic_dec_and_test(&ipq->q.refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 ip_frag_destroy(ipq, work);
204}
205
206/* Kill ipq entry. It is not destroyed immediately,
207 * because caller (and someone more) holds reference count.
208 */
209static void ipq_kill(struct ipq *ipq)
210{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700211 inet_frag_kill(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900214/* Memory limiting on fragments. Evictor trashes the oldest
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * fragment queue until we are back under the threshold.
216 */
217static void ip_evictor(void)
218{
219 struct ipq *qp;
220 struct list_head *tmp;
221 int work;
222
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700223 work = atomic_read(&ip4_frags.mem) - ip4_frags_ctl.low_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (work <= 0)
225 return;
226
227 while (work > 0) {
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700228 read_lock(&ip4_frags.lock);
229 if (list_empty(&ip4_frags.lru_list)) {
230 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return;
232 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700233 tmp = ip4_frags.lru_list.next;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700234 qp = list_entry(tmp, struct ipq, q.lru_list);
235 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700236 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700238 spin_lock(&qp->q.lock);
239 if (!(qp->q.last_in&COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 ipq_kill(qp);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700241 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 ipq_put(qp, &work);
244 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
245 }
246}
247
248/*
249 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
250 */
251static void ip_expire(unsigned long arg)
252{
253 struct ipq *qp = (struct ipq *) arg;
254
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700255 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700257 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 goto out;
259
260 ipq_kill(qp);
261
262 IP_INC_STATS_BH(IPSTATS_MIB_REASMTIMEOUT);
263 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
264
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700265 if ((qp->q.last_in&FIRST_IN) && qp->q.fragments != NULL) {
266 struct sk_buff *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700268 if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
270 dev_put(head->dev);
271 }
272 }
273out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700274 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ipq_put(qp, NULL);
276}
277
278/* Creation primitives. */
279
David S. Miller55c00222006-04-09 22:43:55 -0700280static struct ipq *ip_frag_intern(struct ipq *qp_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800283#ifdef CONFIG_SMP
284 struct hlist_node *n;
285#endif
David S. Miller55c00222006-04-09 22:43:55 -0700286 unsigned int hash;
287
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700288 write_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700289 hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
290 qp_in->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#ifdef CONFIG_SMP
292 /* With SMP race we have to recheck hash table, because
293 * such entry could be created on other cpu, while we
294 * promoted read lock to write lock.
295 */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700296 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800297 if (qp->id == qp_in->id &&
298 qp->saddr == qp_in->saddr &&
299 qp->daddr == qp_in->daddr &&
300 qp->protocol == qp_in->protocol &&
301 qp->user == qp_in->user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700302 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700303 write_unlock(&ip4_frags.lock);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700304 qp_in->q.last_in |= COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ipq_put(qp_in, NULL);
306 return qp;
307 }
308 }
309#endif
310 qp = qp_in;
311
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700312 if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout))
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700313 atomic_inc(&qp->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700315 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700316 hlist_add_head(&qp->q.list, &ip4_frags.hash[hash]);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700317 INIT_LIST_HEAD(&qp->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700318 list_add_tail(&qp->q.lru_list, &ip4_frags.lru_list);
319 ip4_frags.nqueues++;
320 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return qp;
322}
323
324/* Add an entry to the 'ipq' queue for a newly received IP datagram. */
David S. Miller55c00222006-04-09 22:43:55 -0700325static struct ipq *ip_frag_create(struct iphdr *iph, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct ipq *qp;
328
329 if ((qp = frag_alloc_queue()) == NULL)
330 goto out_nomem;
331
332 qp->protocol = iph->protocol;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700333 qp->q.last_in = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 qp->id = iph->id;
335 qp->saddr = iph->saddr;
336 qp->daddr = iph->daddr;
337 qp->user = user;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700338 qp->q.len = 0;
339 qp->q.meat = 0;
340 qp->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 qp->iif = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800342 qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /* Initialize a timer for this entry. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700345 init_timer(&qp->q.timer);
346 qp->q.timer.data = (unsigned long) qp; /* pointer to queue */
347 qp->q.timer.function = ip_expire; /* expire function */
348 spin_lock_init(&qp->q.lock);
349 atomic_set(&qp->q.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
David S. Miller55c00222006-04-09 22:43:55 -0700351 return ip_frag_intern(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353out_nomem:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700354 LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return NULL;
356}
357
358/* Find the correct entry in the "incomplete datagrams" queue for
359 * this IP datagram, and create new one, if nothing is found.
360 */
361static inline struct ipq *ip_find(struct iphdr *iph, u32 user)
362{
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800363 __be16 id = iph->id;
Al Viro18277772006-09-26 22:19:02 -0700364 __be32 saddr = iph->saddr;
365 __be32 daddr = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 __u8 protocol = iph->protocol;
David S. Miller55c00222006-04-09 22:43:55 -0700367 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800369 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700371 read_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700372 hash = ipqhashfn(id, saddr, daddr, protocol);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700373 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800374 if (qp->id == id &&
375 qp->saddr == saddr &&
376 qp->daddr == daddr &&
377 qp->protocol == protocol &&
378 qp->user == user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700379 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700380 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return qp;
382 }
383 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700384 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
David S. Miller55c00222006-04-09 22:43:55 -0700386 return ip_frag_create(iph, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Herbert Xu89cee8b2005-12-13 23:14:27 -0800389/* Is the fragment too far ahead to be part of ipq? */
390static inline int ip_frag_too_far(struct ipq *qp)
391{
392 struct inet_peer *peer = qp->peer;
393 unsigned int max = sysctl_ipfrag_max_dist;
394 unsigned int start, end;
395
396 int rc;
397
398 if (!peer || !max)
399 return 0;
400
401 start = qp->rid;
402 end = atomic_inc_return(&peer->rid);
403 qp->rid = end;
404
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700405 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800406
407 if (rc) {
408 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
409 }
410
411 return rc;
412}
413
414static int ip_frag_reinit(struct ipq *qp)
415{
416 struct sk_buff *fp;
417
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700418 if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700419 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800420 return -ETIMEDOUT;
421 }
422
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700423 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800424 do {
425 struct sk_buff *xp = fp->next;
426 frag_kfree_skb(fp, NULL);
427 fp = xp;
428 } while (fp);
429
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700430 qp->q.last_in = 0;
431 qp->q.len = 0;
432 qp->q.meat = 0;
433 qp->q.fragments = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800434 qp->iif = 0;
435
436 return 0;
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700440static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700443 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int flags, offset;
445 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700446 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700448 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto err;
450
Herbert Xu89cee8b2005-12-13 23:14:27 -0800451 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700452 unlikely(ip_frag_too_far(qp)) &&
453 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800454 ipq_kill(qp);
455 goto err;
456 }
457
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700458 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 flags = offset & ~IP_OFFSET;
460 offset &= IP_OFFSET;
461 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300462 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /* Determine the position of this fragment. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900465 end = offset + skb->len - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700466 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* Is this the final fragment? */
469 if ((flags & IP_MF) == 0) {
470 /* If we already have some bits beyond end
471 * or have different end, the segment is corrrupted.
472 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700473 if (end < qp->q.len ||
474 ((qp->q.last_in & LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700476 qp->q.last_in |= LAST_IN;
477 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 } else {
479 if (end&7) {
480 end &= ~7;
481 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
482 skb->ip_summed = CHECKSUM_NONE;
483 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700484 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700486 if (qp->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700488 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
491 if (end == offset)
492 goto err;
493
Herbert Xu1706d582007-10-14 00:38:15 -0700494 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (pskb_pull(skb, ihl) == NULL)
496 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700497
498 err = pskb_trim_rcsum(skb, end - offset);
499 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 goto err;
501
502 /* Find out which fragments are in front and at the back of us
503 * in the chain of fragments so far. We must know where to put
504 * this fragment, right?
505 */
506 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700507 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (FRAG_CB(next)->offset >= offset)
509 break; /* bingo! */
510 prev = next;
511 }
512
513 /* We found where to put this one. Check for overlap with
514 * preceding fragment, and, if needed, align things so that
515 * any overlaps are eliminated.
516 */
517 if (prev) {
518 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
519
520 if (i > 0) {
521 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700522 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (end <= offset)
524 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700525 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!pskb_pull(skb, i))
527 goto err;
528 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
529 skb->ip_summed = CHECKSUM_NONE;
530 }
531 }
532
Herbert Xu1706d582007-10-14 00:38:15 -0700533 err = -ENOMEM;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 while (next && FRAG_CB(next)->offset < end) {
536 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
537
538 if (i < next->len) {
539 /* Eat head of the next overlapped fragment
540 * and leave the loop. The next ones cannot overlap.
541 */
542 if (!pskb_pull(next, i))
543 goto err;
544 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700545 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (next->ip_summed != CHECKSUM_UNNECESSARY)
547 next->ip_summed = CHECKSUM_NONE;
548 break;
549 } else {
550 struct sk_buff *free_it = next;
551
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100552 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * new one drop it.
554 */
555 next = next->next;
556
557 if (prev)
558 prev->next = next;
559 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700560 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700562 qp->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 frag_kfree_skb(free_it, NULL);
564 }
565 }
566
567 FRAG_CB(skb)->offset = offset;
568
569 /* Insert this fragment in the chain of fragments. */
570 skb->next = next;
571 if (prev)
572 prev->next = skb;
573 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700574 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Herbert Xu1706d582007-10-14 00:38:15 -0700576 dev = skb->dev;
577 if (dev) {
578 qp->iif = dev->ifindex;
579 skb->dev = NULL;
580 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700581 qp->q.stamp = skb->tstamp;
582 qp->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700583 atomic_add(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (offset == 0)
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700585 qp->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700587 if (qp->q.last_in == (FIRST_IN | LAST_IN) && qp->q.meat == qp->q.len)
Herbert Xu1706d582007-10-14 00:38:15 -0700588 return ip_frag_reasm(qp, prev, dev);
589
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700590 write_lock(&ip4_frags.lock);
591 list_move_tail(&qp->q.lru_list, &ip4_frags.lru_list);
592 write_unlock(&ip4_frags.lock);
Herbert Xu1706d582007-10-14 00:38:15 -0700593 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595err:
596 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700597 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600
601/* Build a new IP datagram from all its fragments. */
602
Herbert Xu1706d582007-10-14 00:38:15 -0700603static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
604 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700607 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int len;
609 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700610 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 ipq_kill(qp);
613
Herbert Xu1706d582007-10-14 00:38:15 -0700614 /* Make the one we just received the head. */
615 if (prev) {
616 head = prev->next;
617 fp = skb_clone(head, GFP_ATOMIC);
618
619 if (!fp)
620 goto out_nomem;
621
622 fp->next = head->next;
623 prev->next = fp;
624
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700625 skb_morph(head, qp->q.fragments);
626 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700627
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700628 kfree_skb(qp->q.fragments);
629 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700630 }
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 BUG_TRAP(head != NULL);
633 BUG_TRAP(FRAG_CB(head)->offset == 0);
634
635 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300636 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700637 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Herbert Xu1706d582007-10-14 00:38:15 -0700639 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800640 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto out_oversize;
642
643 /* Head of list must not be cloned. */
Herbert Xu1706d582007-10-14 00:38:15 -0700644 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
646 goto out_nomem;
647
648 /* If the first fragment is fragmented itself, we split
649 * it to two chunks: the first with data and paged part
650 * and the second, holding only fragments. */
651 if (skb_shinfo(head)->frag_list) {
652 struct sk_buff *clone;
653 int i, plen = 0;
654
655 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
656 goto out_nomem;
657 clone->next = head->next;
658 head->next = clone;
659 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
660 skb_shinfo(head)->frag_list = NULL;
661 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
662 plen += skb_shinfo(head)->frags[i].size;
663 clone->len = clone->data_len = head->data_len - plen;
664 head->data_len -= clone->len;
665 head->len -= clone->len;
666 clone->csum = 0;
667 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700668 atomic_add(clone->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
671 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700672 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700673 atomic_sub(head->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 for (fp=head->next; fp; fp = fp->next) {
676 head->data_len += fp->len;
677 head->len += fp->len;
678 if (head->ip_summed != fp->ip_summed)
679 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700680 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 head->csum = csum_add(head->csum, fp->csum);
682 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700683 atomic_sub(fp->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
686 head->next = NULL;
687 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700688 head->tstamp = qp->q.stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700690 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 iph->frag_off = 0;
692 iph->tot_len = htons(len);
693 IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700694 qp->q.fragments = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700695 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697out_nomem:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900698 LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing "
Patrick McHardy64ce2072005-08-09 20:50:53 -0700699 "queue %p\n", qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 goto out_fail;
701out_oversize:
702 if (net_ratelimit())
703 printk(KERN_INFO
704 "Oversized IP packet from %d.%d.%d.%d.\n",
705 NIPQUAD(qp->saddr));
706out_fail:
707 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700708 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711/* Process an incoming IP datagram fragment. */
Herbert Xu776c7292007-10-14 00:38:32 -0700712int ip_defrag(struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS);
717
718 /* Start by cleaning up the memory. */
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700719 if (atomic_read(&ip4_frags.mem) > ip4_frags_ctl.high_thresh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 ip_evictor();
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* Lookup (or create) queue header */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700723 if ((qp = ip_find(ip_hdr(skb), user)) != NULL) {
Herbert Xu1706d582007-10-14 00:38:15 -0700724 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700726 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Herbert Xu1706d582007-10-14 00:38:15 -0700728 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700730 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ipq_put(qp, NULL);
Herbert Xu776c7292007-10-14 00:38:32 -0700732 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
735 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
736 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700737 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700740void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700742 init_timer(&ip4_frags.secret_timer);
743 ip4_frags.secret_timer.function = ipfrag_secret_rebuild;
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700744 ip4_frags.secret_timer.expires = jiffies + ip4_frags_ctl.secret_interval;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700745 add_timer(&ip4_frags.secret_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700747 ip4_frags.ctl = &ip4_frags_ctl;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700748 inet_frags_init(&ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
751EXPORT_SYMBOL(ip_defrag);