blob: 321e694b72e88ceedb1e0dedcbd695379eb45224 [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
53/* Fragment cache limits. We will commit 256K at one time. Should we
54 * cross that limit we will prune down to 192K. This should cope with
55 * even the most extreme cases without allowing an attacker to measurably
56 * harm machine performance.
57 */
Brian Haleyab32ea52006-09-22 14:15:41 -070058int sysctl_ipfrag_high_thresh __read_mostly = 256*1024;
59int sysctl_ipfrag_low_thresh __read_mostly = 192*1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Brian Haleyab32ea52006-09-22 14:15:41 -070061int sysctl_ipfrag_max_dist __read_mostly = 64;
Herbert Xu89cee8b2005-12-13 23:14:27 -080062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* Important NOTE! Fragment queue must be destroyed before MSL expires.
64 * RFC791 is wrong proposing to prolongate timer each fragment arrival by TTL.
65 */
Brian Haleyab32ea52006-09-22 14:15:41 -070066int sysctl_ipfrag_time __read_mostly = IP_FRAG_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68struct ipfrag_skb_cb
69{
70 struct inet_skb_parm h;
71 int offset;
72};
73
74#define FRAG_CB(skb) ((struct ipfrag_skb_cb*)((skb)->cb))
75
76/* Describe an entry in the "incomplete datagrams" queue. */
77struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070078 struct inet_frag_queue q;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 u32 user;
Al Viro18277772006-09-26 22:19:02 -070081 __be32 saddr;
82 __be32 daddr;
83 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 u8 protocol;
Herbert Xu89cee8b2005-12-13 23:14:27 -080085 int iif;
86 unsigned int rid;
87 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070090static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070092int ip_frag_nqueues(void)
93{
94 return ip4_frags.nqueues;
95}
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070097int ip_frag_mem(void)
98{
99 return atomic_read(&ip4_frags.mem);
100}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Herbert Xu1706d582007-10-14 00:38:15 -0700102static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
103 struct net_device *dev);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static __inline__ void __ipq_unlink(struct ipq *qp)
106{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700107 hlist_del(&qp->q.list);
108 list_del(&qp->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700109 ip4_frags.nqueues--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112static __inline__ void ipq_unlink(struct ipq *ipq)
113{
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700114 write_lock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 __ipq_unlink(ipq);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700116 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Al Viro18277772006-09-26 22:19:02 -0700119static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Al Viro18277772006-09-26 22:19:02 -0700121 return jhash_3words((__force u32)id << 16 | prot,
122 (__force u32)saddr, (__force u32)daddr,
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700123 ip4_frags.rnd) & (INETFRAGS_HASHSZ - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Brian Haleyab32ea52006-09-22 14:15:41 -0700126int sysctl_ipfrag_secret_interval __read_mostly = 10 * 60 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128static void ipfrag_secret_rebuild(unsigned long dummy)
129{
130 unsigned long now = jiffies;
131 int i;
132
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700133 write_lock(&ip4_frags.lock);
134 get_random_bytes(&ip4_frags.rnd, sizeof(u32));
135 for (i = 0; i < INETFRAGS_HASHSZ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 struct ipq *q;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800137 struct hlist_node *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700139 hlist_for_each_entry_safe(q, p, n, &ip4_frags.hash[i], q.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 unsigned int hval = ipqhashfn(q->id, q->saddr,
141 q->daddr, q->protocol);
142
143 if (hval != i) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700144 hlist_del(&q->q.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Relink to new hash chain. */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700147 hlist_add_head(&q->q.list, &ip4_frags.hash[hval]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700151 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700153 mod_timer(&ip4_frags.secret_timer, now + sysctl_ipfrag_secret_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/* Memory Tracking Functions. */
157static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work)
158{
159 if (work)
160 *work -= skb->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700161 atomic_sub(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 kfree_skb(skb);
163}
164
165static __inline__ void frag_free_queue(struct ipq *qp, int *work)
166{
167 if (work)
168 *work -= sizeof(struct ipq);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700169 atomic_sub(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 kfree(qp);
171}
172
173static __inline__ struct ipq *frag_alloc_queue(void)
174{
175 struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC);
176
Stephen Hemminger132adf52007-03-08 20:44:43 -0800177 if (!qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700179 atomic_add(sizeof(struct ipq), &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return qp;
181}
182
183
184/* Destruction primitives. */
185
186/* Complete destruction of ipq. */
187static void ip_frag_destroy(struct ipq *qp, int *work)
188{
189 struct sk_buff *fp;
190
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700191 BUG_TRAP(qp->q.last_in&COMPLETE);
192 BUG_TRAP(del_timer(&qp->q.timer) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Herbert Xu89cee8b2005-12-13 23:14:27 -0800194 if (qp->peer)
195 inet_putpeer(qp->peer);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Release all fragment data. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700198 fp = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 while (fp) {
200 struct sk_buff *xp = fp->next;
201
202 frag_kfree_skb(fp, work);
203 fp = xp;
204 }
205
206 /* Finally, release the queue descriptor itself. */
207 frag_free_queue(qp, work);
208}
209
210static __inline__ void ipq_put(struct ipq *ipq, int *work)
211{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700212 if (atomic_dec_and_test(&ipq->q.refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 ip_frag_destroy(ipq, work);
214}
215
216/* Kill ipq entry. It is not destroyed immediately,
217 * because caller (and someone more) holds reference count.
218 */
219static void ipq_kill(struct ipq *ipq)
220{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700221 if (del_timer(&ipq->q.timer))
222 atomic_dec(&ipq->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700224 if (!(ipq->q.last_in & COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ipq_unlink(ipq);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700226 atomic_dec(&ipq->q.refcnt);
227 ipq->q.last_in |= COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229}
230
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900231/* Memory limiting on fragments. Evictor trashes the oldest
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * fragment queue until we are back under the threshold.
233 */
234static void ip_evictor(void)
235{
236 struct ipq *qp;
237 struct list_head *tmp;
238 int work;
239
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700240 work = atomic_read(&ip4_frags.mem) - sysctl_ipfrag_low_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (work <= 0)
242 return;
243
244 while (work > 0) {
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700245 read_lock(&ip4_frags.lock);
246 if (list_empty(&ip4_frags.lru_list)) {
247 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return;
249 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700250 tmp = ip4_frags.lru_list.next;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700251 qp = list_entry(tmp, struct ipq, q.lru_list);
252 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700253 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700255 spin_lock(&qp->q.lock);
256 if (!(qp->q.last_in&COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 ipq_kill(qp);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700258 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 ipq_put(qp, &work);
261 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
262 }
263}
264
265/*
266 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
267 */
268static void ip_expire(unsigned long arg)
269{
270 struct ipq *qp = (struct ipq *) arg;
271
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700272 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700274 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto out;
276
277 ipq_kill(qp);
278
279 IP_INC_STATS_BH(IPSTATS_MIB_REASMTIMEOUT);
280 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
281
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700282 if ((qp->q.last_in&FIRST_IN) && qp->q.fragments != NULL) {
283 struct sk_buff *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700285 if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
287 dev_put(head->dev);
288 }
289 }
290out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700291 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 ipq_put(qp, NULL);
293}
294
295/* Creation primitives. */
296
David S. Miller55c00222006-04-09 22:43:55 -0700297static struct ipq *ip_frag_intern(struct ipq *qp_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800300#ifdef CONFIG_SMP
301 struct hlist_node *n;
302#endif
David S. Miller55c00222006-04-09 22:43:55 -0700303 unsigned int hash;
304
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700305 write_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700306 hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
307 qp_in->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#ifdef CONFIG_SMP
309 /* With SMP race we have to recheck hash table, because
310 * such entry could be created on other cpu, while we
311 * promoted read lock to write lock.
312 */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700313 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800314 if (qp->id == qp_in->id &&
315 qp->saddr == qp_in->saddr &&
316 qp->daddr == qp_in->daddr &&
317 qp->protocol == qp_in->protocol &&
318 qp->user == qp_in->user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700319 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700320 write_unlock(&ip4_frags.lock);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700321 qp_in->q.last_in |= COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 ipq_put(qp_in, NULL);
323 return qp;
324 }
325 }
326#endif
327 qp = qp_in;
328
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700329 if (!mod_timer(&qp->q.timer, jiffies + sysctl_ipfrag_time))
330 atomic_inc(&qp->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700332 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700333 hlist_add_head(&qp->q.list, &ip4_frags.hash[hash]);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700334 INIT_LIST_HEAD(&qp->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700335 list_add_tail(&qp->q.lru_list, &ip4_frags.lru_list);
336 ip4_frags.nqueues++;
337 write_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return qp;
339}
340
341/* Add an entry to the 'ipq' queue for a newly received IP datagram. */
David S. Miller55c00222006-04-09 22:43:55 -0700342static struct ipq *ip_frag_create(struct iphdr *iph, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct ipq *qp;
345
346 if ((qp = frag_alloc_queue()) == NULL)
347 goto out_nomem;
348
349 qp->protocol = iph->protocol;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700350 qp->q.last_in = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 qp->id = iph->id;
352 qp->saddr = iph->saddr;
353 qp->daddr = iph->daddr;
354 qp->user = user;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700355 qp->q.len = 0;
356 qp->q.meat = 0;
357 qp->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 qp->iif = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800359 qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Initialize a timer for this entry. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700362 init_timer(&qp->q.timer);
363 qp->q.timer.data = (unsigned long) qp; /* pointer to queue */
364 qp->q.timer.function = ip_expire; /* expire function */
365 spin_lock_init(&qp->q.lock);
366 atomic_set(&qp->q.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
David S. Miller55c00222006-04-09 22:43:55 -0700368 return ip_frag_intern(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370out_nomem:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700371 LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return NULL;
373}
374
375/* Find the correct entry in the "incomplete datagrams" queue for
376 * this IP datagram, and create new one, if nothing is found.
377 */
378static inline struct ipq *ip_find(struct iphdr *iph, u32 user)
379{
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800380 __be16 id = iph->id;
Al Viro18277772006-09-26 22:19:02 -0700381 __be32 saddr = iph->saddr;
382 __be32 daddr = iph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 __u8 protocol = iph->protocol;
David S. Miller55c00222006-04-09 22:43:55 -0700384 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct ipq *qp;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800386 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700388 read_lock(&ip4_frags.lock);
David S. Miller55c00222006-04-09 22:43:55 -0700389 hash = ipqhashfn(id, saddr, daddr, protocol);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700390 hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) {
Stephen Hemminger132adf52007-03-08 20:44:43 -0800391 if (qp->id == id &&
392 qp->saddr == saddr &&
393 qp->daddr == daddr &&
394 qp->protocol == protocol &&
395 qp->user == user) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700396 atomic_inc(&qp->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700397 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return qp;
399 }
400 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700401 read_unlock(&ip4_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
David S. Miller55c00222006-04-09 22:43:55 -0700403 return ip_frag_create(iph, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Herbert Xu89cee8b2005-12-13 23:14:27 -0800406/* Is the fragment too far ahead to be part of ipq? */
407static inline int ip_frag_too_far(struct ipq *qp)
408{
409 struct inet_peer *peer = qp->peer;
410 unsigned int max = sysctl_ipfrag_max_dist;
411 unsigned int start, end;
412
413 int rc;
414
415 if (!peer || !max)
416 return 0;
417
418 start = qp->rid;
419 end = atomic_inc_return(&peer->rid);
420 qp->rid = end;
421
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700422 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800423
424 if (rc) {
425 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
426 }
427
428 return rc;
429}
430
431static int ip_frag_reinit(struct ipq *qp)
432{
433 struct sk_buff *fp;
434
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700435 if (!mod_timer(&qp->q.timer, jiffies + sysctl_ipfrag_time)) {
436 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800437 return -ETIMEDOUT;
438 }
439
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700440 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800441 do {
442 struct sk_buff *xp = fp->next;
443 frag_kfree_skb(fp, NULL);
444 fp = xp;
445 } while (fp);
446
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700447 qp->q.last_in = 0;
448 qp->q.len = 0;
449 qp->q.meat = 0;
450 qp->q.fragments = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800451 qp->iif = 0;
452
453 return 0;
454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700457static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700460 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int flags, offset;
462 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700463 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700465 if (qp->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 goto err;
467
Herbert Xu89cee8b2005-12-13 23:14:27 -0800468 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700469 unlikely(ip_frag_too_far(qp)) &&
470 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800471 ipq_kill(qp);
472 goto err;
473 }
474
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700475 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 flags = offset & ~IP_OFFSET;
477 offset &= IP_OFFSET;
478 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300479 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* Determine the position of this fragment. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900482 end = offset + skb->len - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700483 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* Is this the final fragment? */
486 if ((flags & IP_MF) == 0) {
487 /* If we already have some bits beyond end
488 * or have different end, the segment is corrrupted.
489 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700490 if (end < qp->q.len ||
491 ((qp->q.last_in & LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700493 qp->q.last_in |= LAST_IN;
494 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 } else {
496 if (end&7) {
497 end &= ~7;
498 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
499 skb->ip_summed = CHECKSUM_NONE;
500 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700501 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700503 if (qp->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700505 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507 }
508 if (end == offset)
509 goto err;
510
Herbert Xu1706d582007-10-14 00:38:15 -0700511 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (pskb_pull(skb, ihl) == NULL)
513 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700514
515 err = pskb_trim_rcsum(skb, end - offset);
516 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto err;
518
519 /* Find out which fragments are in front and at the back of us
520 * in the chain of fragments so far. We must know where to put
521 * this fragment, right?
522 */
523 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700524 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (FRAG_CB(next)->offset >= offset)
526 break; /* bingo! */
527 prev = next;
528 }
529
530 /* We found where to put this one. Check for overlap with
531 * preceding fragment, and, if needed, align things so that
532 * any overlaps are eliminated.
533 */
534 if (prev) {
535 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
536
537 if (i > 0) {
538 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700539 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (end <= offset)
541 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700542 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (!pskb_pull(skb, i))
544 goto err;
545 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
546 skb->ip_summed = CHECKSUM_NONE;
547 }
548 }
549
Herbert Xu1706d582007-10-14 00:38:15 -0700550 err = -ENOMEM;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 while (next && FRAG_CB(next)->offset < end) {
553 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
554
555 if (i < next->len) {
556 /* Eat head of the next overlapped fragment
557 * and leave the loop. The next ones cannot overlap.
558 */
559 if (!pskb_pull(next, i))
560 goto err;
561 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700562 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (next->ip_summed != CHECKSUM_UNNECESSARY)
564 next->ip_summed = CHECKSUM_NONE;
565 break;
566 } else {
567 struct sk_buff *free_it = next;
568
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100569 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * new one drop it.
571 */
572 next = next->next;
573
574 if (prev)
575 prev->next = next;
576 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700577 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700579 qp->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 frag_kfree_skb(free_it, NULL);
581 }
582 }
583
584 FRAG_CB(skb)->offset = offset;
585
586 /* Insert this fragment in the chain of fragments. */
587 skb->next = next;
588 if (prev)
589 prev->next = skb;
590 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700591 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Herbert Xu1706d582007-10-14 00:38:15 -0700593 dev = skb->dev;
594 if (dev) {
595 qp->iif = dev->ifindex;
596 skb->dev = NULL;
597 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700598 qp->q.stamp = skb->tstamp;
599 qp->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700600 atomic_add(skb->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (offset == 0)
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700602 qp->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700604 if (qp->q.last_in == (FIRST_IN | LAST_IN) && qp->q.meat == qp->q.len)
Herbert Xu1706d582007-10-14 00:38:15 -0700605 return ip_frag_reasm(qp, prev, dev);
606
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700607 write_lock(&ip4_frags.lock);
608 list_move_tail(&qp->q.lru_list, &ip4_frags.lru_list);
609 write_unlock(&ip4_frags.lock);
Herbert Xu1706d582007-10-14 00:38:15 -0700610 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612err:
613 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700614 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617
618/* Build a new IP datagram from all its fragments. */
619
Herbert Xu1706d582007-10-14 00:38:15 -0700620static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
621 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700624 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 int len;
626 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700627 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 ipq_kill(qp);
630
Herbert Xu1706d582007-10-14 00:38:15 -0700631 /* Make the one we just received the head. */
632 if (prev) {
633 head = prev->next;
634 fp = skb_clone(head, GFP_ATOMIC);
635
636 if (!fp)
637 goto out_nomem;
638
639 fp->next = head->next;
640 prev->next = fp;
641
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700642 skb_morph(head, qp->q.fragments);
643 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700644
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700645 kfree_skb(qp->q.fragments);
646 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700647 }
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 BUG_TRAP(head != NULL);
650 BUG_TRAP(FRAG_CB(head)->offset == 0);
651
652 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300653 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700654 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Herbert Xu1706d582007-10-14 00:38:15 -0700656 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800657 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 goto out_oversize;
659
660 /* Head of list must not be cloned. */
Herbert Xu1706d582007-10-14 00:38:15 -0700661 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
663 goto out_nomem;
664
665 /* If the first fragment is fragmented itself, we split
666 * it to two chunks: the first with data and paged part
667 * and the second, holding only fragments. */
668 if (skb_shinfo(head)->frag_list) {
669 struct sk_buff *clone;
670 int i, plen = 0;
671
672 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
673 goto out_nomem;
674 clone->next = head->next;
675 head->next = clone;
676 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
677 skb_shinfo(head)->frag_list = NULL;
678 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
679 plen += skb_shinfo(head)->frags[i].size;
680 clone->len = clone->data_len = head->data_len - plen;
681 head->data_len -= clone->len;
682 head->len -= clone->len;
683 clone->csum = 0;
684 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700685 atomic_add(clone->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700689 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700690 atomic_sub(head->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 for (fp=head->next; fp; fp = fp->next) {
693 head->data_len += fp->len;
694 head->len += fp->len;
695 if (head->ip_summed != fp->ip_summed)
696 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700697 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 head->csum = csum_add(head->csum, fp->csum);
699 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700700 atomic_sub(fp->truesize, &ip4_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 head->next = NULL;
704 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700705 head->tstamp = qp->q.stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700707 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 iph->frag_off = 0;
709 iph->tot_len = htons(len);
710 IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700711 qp->q.fragments = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714out_nomem:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900715 LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing "
Patrick McHardy64ce2072005-08-09 20:50:53 -0700716 "queue %p\n", qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 goto out_fail;
718out_oversize:
719 if (net_ratelimit())
720 printk(KERN_INFO
721 "Oversized IP packet from %d.%d.%d.%d.\n",
722 NIPQUAD(qp->saddr));
723out_fail:
724 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700725 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
728/* Process an incoming IP datagram fragment. */
Herbert Xu776c7292007-10-14 00:38:32 -0700729int ip_defrag(struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS);
734
735 /* Start by cleaning up the memory. */
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700736 if (atomic_read(&ip4_frags.mem) > sysctl_ipfrag_high_thresh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 ip_evictor();
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /* Lookup (or create) queue header */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700740 if ((qp = ip_find(ip_hdr(skb), user)) != NULL) {
Herbert Xu1706d582007-10-14 00:38:15 -0700741 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700743 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Herbert Xu1706d582007-10-14 00:38:15 -0700745 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700747 spin_unlock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 ipq_put(qp, NULL);
Herbert Xu776c7292007-10-14 00:38:32 -0700749 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS);
753 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700754 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700757void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700759 init_timer(&ip4_frags.secret_timer);
760 ip4_frags.secret_timer.function = ipfrag_secret_rebuild;
761 ip4_frags.secret_timer.expires = jiffies + sysctl_ipfrag_secret_interval;
762 add_timer(&ip4_frags.secret_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700764 inet_frags_init(&ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767EXPORT_SYMBOL(ip_defrag);