Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * 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 Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 25 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #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 Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 41 | #include <net/inetpeer.h> |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 42 | #include <net/inet_frag.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #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 Haley | ab32ea5 | 2006-09-22 14:15:41 -0700 | [diff] [blame] | 53 | int sysctl_ipfrag_max_dist __read_mostly = 64; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct 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. */ |
| 64 | struct ipq { |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 65 | struct inet_frag_queue q; |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | u32 user; |
Al Viro | 1827777 | 2006-09-26 22:19:02 -0700 | [diff] [blame] | 68 | __be32 saddr; |
| 69 | __be32 daddr; |
| 70 | __be16 id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | u8 protocol; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 72 | int iif; |
| 73 | unsigned int rid; |
| 74 | struct inet_peer *peer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | }; |
| 76 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 77 | struct 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 Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 96 | static struct inet_frags ip4_frags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 98 | int ip_frag_nqueues(void) |
| 99 | { |
| 100 | return ip4_frags.nqueues; |
| 101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 103 | int ip_frag_mem(void) |
| 104 | { |
| 105 | return atomic_read(&ip4_frags.mem); |
| 106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 108 | static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev, |
| 109 | struct net_device *dev); |
| 110 | |
Al Viro | 1827777 | 2006-09-26 22:19:02 -0700 | [diff] [blame] | 111 | static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Al Viro | 1827777 | 2006-09-26 22:19:02 -0700 | [diff] [blame] | 113 | return jhash_3words((__force u32)id << 16 | prot, |
| 114 | (__force u32)saddr, (__force u32)daddr, |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 115 | ip4_frags.rnd) & (INETFRAGS_HASHSZ - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | static void ipfrag_secret_rebuild(unsigned long dummy) |
| 119 | { |
| 120 | unsigned long now = jiffies; |
| 121 | int i; |
| 122 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 123 | write_lock(&ip4_frags.lock); |
| 124 | get_random_bytes(&ip4_frags.rnd, sizeof(u32)); |
| 125 | for (i = 0; i < INETFRAGS_HASHSZ; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | struct ipq *q; |
Yasuyuki Kozakai | e7c8a41 | 2005-11-16 12:55:37 -0800 | [diff] [blame] | 127 | struct hlist_node *p, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 129 | hlist_for_each_entry_safe(q, p, n, &ip4_frags.hash[i], q.list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | unsigned int hval = ipqhashfn(q->id, q->saddr, |
| 131 | q->daddr, q->protocol); |
| 132 | |
| 133 | if (hval != i) { |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 134 | hlist_del(&q->q.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | /* Relink to new hash chain. */ |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 137 | hlist_add_head(&q->q.list, &ip4_frags.hash[hval]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | } |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 141 | write_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 143 | mod_timer(&ip4_frags.secret_timer, now + ip4_frags_ctl.secret_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* Memory Tracking Functions. */ |
| 147 | static __inline__ void frag_kfree_skb(struct sk_buff *skb, int *work) |
| 148 | { |
| 149 | if (work) |
| 150 | *work -= skb->truesize; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 151 | atomic_sub(skb->truesize, &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | kfree_skb(skb); |
| 153 | } |
| 154 | |
| 155 | static __inline__ void frag_free_queue(struct ipq *qp, int *work) |
| 156 | { |
| 157 | if (work) |
| 158 | *work -= sizeof(struct ipq); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 159 | atomic_sub(sizeof(struct ipq), &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | kfree(qp); |
| 161 | } |
| 162 | |
| 163 | static __inline__ struct ipq *frag_alloc_queue(void) |
| 164 | { |
| 165 | struct ipq *qp = kmalloc(sizeof(struct ipq), GFP_ATOMIC); |
| 166 | |
Stephen Hemminger | 132adf5 | 2007-03-08 20:44:43 -0800 | [diff] [blame] | 167 | if (!qp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return NULL; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 169 | atomic_add(sizeof(struct ipq), &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | return qp; |
| 171 | } |
| 172 | |
| 173 | |
| 174 | /* Destruction primitives. */ |
| 175 | |
| 176 | /* Complete destruction of ipq. */ |
| 177 | static void ip_frag_destroy(struct ipq *qp, int *work) |
| 178 | { |
| 179 | struct sk_buff *fp; |
| 180 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 181 | BUG_TRAP(qp->q.last_in&COMPLETE); |
| 182 | BUG_TRAP(del_timer(&qp->q.timer) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 184 | if (qp->peer) |
| 185 | inet_putpeer(qp->peer); |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | /* Release all fragment data. */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 188 | fp = qp->q.fragments; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | 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 | |
| 200 | static __inline__ void ipq_put(struct ipq *ipq, int *work) |
| 201 | { |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 202 | if (atomic_dec_and_test(&ipq->q.refcnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | 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 | */ |
| 209 | static void ipq_kill(struct ipq *ipq) |
| 210 | { |
Pavel Emelyanov | 277e650 | 2007-10-15 02:37:18 -0700 | [diff] [blame^] | 211 | inet_frag_kill(&ipq->q, &ip4_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 214 | /* Memory limiting on fragments. Evictor trashes the oldest |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | * fragment queue until we are back under the threshold. |
| 216 | */ |
| 217 | static void ip_evictor(void) |
| 218 | { |
| 219 | struct ipq *qp; |
| 220 | struct list_head *tmp; |
| 221 | int work; |
| 222 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 223 | work = atomic_read(&ip4_frags.mem) - ip4_frags_ctl.low_thresh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | if (work <= 0) |
| 225 | return; |
| 226 | |
| 227 | while (work > 0) { |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 228 | read_lock(&ip4_frags.lock); |
| 229 | if (list_empty(&ip4_frags.lru_list)) { |
| 230 | read_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return; |
| 232 | } |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 233 | tmp = ip4_frags.lru_list.next; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 234 | qp = list_entry(tmp, struct ipq, q.lru_list); |
| 235 | atomic_inc(&qp->q.refcnt); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 236 | read_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 238 | spin_lock(&qp->q.lock); |
| 239 | if (!(qp->q.last_in&COMPLETE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | ipq_kill(qp); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 241 | spin_unlock(&qp->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 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 | */ |
| 251 | static void ip_expire(unsigned long arg) |
| 252 | { |
| 253 | struct ipq *qp = (struct ipq *) arg; |
| 254 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 255 | spin_lock(&qp->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 257 | if (qp->q.last_in & COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 265 | if ((qp->q.last_in&FIRST_IN) && qp->q.fragments != NULL) { |
| 266 | struct sk_buff *head = qp->q.fragments; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* Send an ICMP "Fragment Reassembly Timeout" message. */ |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 268 | if ((head->dev = dev_get_by_index(&init_net, qp->iif)) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0); |
| 270 | dev_put(head->dev); |
| 271 | } |
| 272 | } |
| 273 | out: |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 274 | spin_unlock(&qp->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | ipq_put(qp, NULL); |
| 276 | } |
| 277 | |
| 278 | /* Creation primitives. */ |
| 279 | |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 280 | static struct ipq *ip_frag_intern(struct ipq *qp_in) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
| 282 | struct ipq *qp; |
Yasuyuki Kozakai | e7c8a41 | 2005-11-16 12:55:37 -0800 | [diff] [blame] | 283 | #ifdef CONFIG_SMP |
| 284 | struct hlist_node *n; |
| 285 | #endif |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 286 | unsigned int hash; |
| 287 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 288 | write_lock(&ip4_frags.lock); |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 289 | hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr, |
| 290 | qp_in->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | #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 Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 296 | hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) { |
Stephen Hemminger | 132adf5 | 2007-03-08 20:44:43 -0800 | [diff] [blame] | 297 | 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 302 | atomic_inc(&qp->q.refcnt); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 303 | write_unlock(&ip4_frags.lock); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 304 | qp_in->q.last_in |= COMPLETE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | ipq_put(qp_in, NULL); |
| 306 | return qp; |
| 307 | } |
| 308 | } |
| 309 | #endif |
| 310 | qp = qp_in; |
| 311 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 312 | if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout)) |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 313 | atomic_inc(&qp->q.refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 315 | atomic_inc(&qp->q.refcnt); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 316 | hlist_add_head(&qp->q.list, &ip4_frags.hash[hash]); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 317 | INIT_LIST_HEAD(&qp->q.lru_list); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 318 | list_add_tail(&qp->q.lru_list, &ip4_frags.lru_list); |
| 319 | ip4_frags.nqueues++; |
| 320 | write_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | return qp; |
| 322 | } |
| 323 | |
| 324 | /* Add an entry to the 'ipq' queue for a newly received IP datagram. */ |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 325 | static struct ipq *ip_frag_create(struct iphdr *iph, u32 user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
| 327 | struct ipq *qp; |
| 328 | |
| 329 | if ((qp = frag_alloc_queue()) == NULL) |
| 330 | goto out_nomem; |
| 331 | |
| 332 | qp->protocol = iph->protocol; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 333 | qp->q.last_in = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | qp->id = iph->id; |
| 335 | qp->saddr = iph->saddr; |
| 336 | qp->daddr = iph->daddr; |
| 337 | qp->user = user; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 338 | qp->q.len = 0; |
| 339 | qp->q.meat = 0; |
| 340 | qp->q.fragments = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | qp->iif = 0; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 342 | qp->peer = sysctl_ipfrag_max_dist ? inet_getpeer(iph->saddr, 1) : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* Initialize a timer for this entry. */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 345 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 351 | return ip_frag_intern(qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
| 353 | out_nomem: |
Patrick McHardy | 64ce207 | 2005-08-09 20:50:53 -0700 | [diff] [blame] | 354 | LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | 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 | */ |
| 361 | static inline struct ipq *ip_find(struct iphdr *iph, u32 user) |
| 362 | { |
Alexey Dobriyan | 76ab608 | 2006-01-06 13:24:29 -0800 | [diff] [blame] | 363 | __be16 id = iph->id; |
Al Viro | 1827777 | 2006-09-26 22:19:02 -0700 | [diff] [blame] | 364 | __be32 saddr = iph->saddr; |
| 365 | __be32 daddr = iph->daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | __u8 protocol = iph->protocol; |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 367 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | struct ipq *qp; |
Yasuyuki Kozakai | e7c8a41 | 2005-11-16 12:55:37 -0800 | [diff] [blame] | 369 | struct hlist_node *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 371 | read_lock(&ip4_frags.lock); |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 372 | hash = ipqhashfn(id, saddr, daddr, protocol); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 373 | hlist_for_each_entry(qp, n, &ip4_frags.hash[hash], q.list) { |
Stephen Hemminger | 132adf5 | 2007-03-08 20:44:43 -0800 | [diff] [blame] | 374 | if (qp->id == id && |
| 375 | qp->saddr == saddr && |
| 376 | qp->daddr == daddr && |
| 377 | qp->protocol == protocol && |
| 378 | qp->user == user) { |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 379 | atomic_inc(&qp->q.refcnt); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 380 | read_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return qp; |
| 382 | } |
| 383 | } |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 384 | read_unlock(&ip4_frags.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
David S. Miller | 55c0022 | 2006-04-09 22:43:55 -0700 | [diff] [blame] | 386 | return ip_frag_create(iph, user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 389 | /* Is the fragment too far ahead to be part of ipq? */ |
| 390 | static 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 405 | rc = qp->q.fragments && (end - start) > max; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 406 | |
| 407 | if (rc) { |
| 408 | IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS); |
| 409 | } |
| 410 | |
| 411 | return rc; |
| 412 | } |
| 413 | |
| 414 | static int ip_frag_reinit(struct ipq *qp) |
| 415 | { |
| 416 | struct sk_buff *fp; |
| 417 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 418 | if (!mod_timer(&qp->q.timer, jiffies + ip4_frags_ctl.timeout)) { |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 419 | atomic_inc(&qp->q.refcnt); |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 420 | return -ETIMEDOUT; |
| 421 | } |
| 422 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 423 | fp = qp->q.fragments; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 424 | do { |
| 425 | struct sk_buff *xp = fp->next; |
| 426 | frag_kfree_skb(fp, NULL); |
| 427 | fp = xp; |
| 428 | } while (fp); |
| 429 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 430 | qp->q.last_in = 0; |
| 431 | qp->q.len = 0; |
| 432 | qp->q.meat = 0; |
| 433 | qp->q.fragments = NULL; |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 434 | qp->iif = 0; |
| 435 | |
| 436 | return 0; |
| 437 | } |
| 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | /* Add new segment to existing queue. */ |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 440 | static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
| 442 | struct sk_buff *prev, *next; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 443 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | int flags, offset; |
| 445 | int ihl, end; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 446 | int err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 448 | if (qp->q.last_in & COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | goto err; |
| 450 | |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 451 | if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) && |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 452 | unlikely(ip_frag_too_far(qp)) && |
| 453 | unlikely(err = ip_frag_reinit(qp))) { |
Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 454 | ipq_kill(qp); |
| 455 | goto err; |
| 456 | } |
| 457 | |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 458 | offset = ntohs(ip_hdr(skb)->frag_off); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | flags = offset & ~IP_OFFSET; |
| 460 | offset &= IP_OFFSET; |
| 461 | offset <<= 3; /* offset is in 8-byte chunks */ |
Arnaldo Carvalho de Melo | c9bdd4b | 2007-03-12 20:09:15 -0300 | [diff] [blame] | 462 | ihl = ip_hdrlen(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | /* Determine the position of this fragment. */ |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 465 | end = offset + skb->len - ihl; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 466 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 473 | if (end < qp->q.len || |
| 474 | ((qp->q.last_in & LAST_IN) && end != qp->q.len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | goto err; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 476 | qp->q.last_in |= LAST_IN; |
| 477 | qp->q.len = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } else { |
| 479 | if (end&7) { |
| 480 | end &= ~7; |
| 481 | if (skb->ip_summed != CHECKSUM_UNNECESSARY) |
| 482 | skb->ip_summed = CHECKSUM_NONE; |
| 483 | } |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 484 | if (end > qp->q.len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | /* Some bits beyond end -> corruption. */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 486 | if (qp->q.last_in & LAST_IN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | goto err; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 488 | qp->q.len = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } |
| 490 | } |
| 491 | if (end == offset) |
| 492 | goto err; |
| 493 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 494 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | if (pskb_pull(skb, ihl) == NULL) |
| 496 | goto err; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 497 | |
| 498 | err = pskb_trim_rcsum(skb, end - offset); |
| 499 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 507 | for (next = qp->q.fragments; next != NULL; next = next->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | 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 Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 522 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | if (end <= offset) |
| 524 | goto err; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 525 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | 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 Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 533 | err = -ENOMEM; |
| 534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 545 | qp->q.meat -= i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | 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 Zijlstra | 47c6bf77 | 2006-12-12 19:48:59 +0100 | [diff] [blame] | 552 | /* Old fragment is completely overridden with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | * new one drop it. |
| 554 | */ |
| 555 | next = next->next; |
| 556 | |
| 557 | if (prev) |
| 558 | prev->next = next; |
| 559 | else |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 560 | qp->q.fragments = next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 562 | qp->q.meat -= free_it->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 574 | qp->q.fragments = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 576 | dev = skb->dev; |
| 577 | if (dev) { |
| 578 | qp->iif = dev->ifindex; |
| 579 | skb->dev = NULL; |
| 580 | } |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 581 | qp->q.stamp = skb->tstamp; |
| 582 | qp->q.meat += skb->len; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 583 | atomic_add(skb->truesize, &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | if (offset == 0) |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 585 | qp->q.last_in |= FIRST_IN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 587 | if (qp->q.last_in == (FIRST_IN | LAST_IN) && qp->q.meat == qp->q.len) |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 588 | return ip_frag_reasm(qp, prev, dev); |
| 589 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 590 | write_lock(&ip4_frags.lock); |
| 591 | list_move_tail(&qp->q.lru_list, &ip4_frags.lru_list); |
| 592 | write_unlock(&ip4_frags.lock); |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 593 | return -EINPROGRESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | err: |
| 596 | kfree_skb(skb); |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 597 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | |
| 601 | /* Build a new IP datagram from all its fragments. */ |
| 602 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 603 | static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev, |
| 604 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | { |
| 606 | struct iphdr *iph; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 607 | struct sk_buff *fp, *head = qp->q.fragments; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | int len; |
| 609 | int ihlen; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 610 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
| 612 | ipq_kill(qp); |
| 613 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 614 | /* 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 Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 625 | skb_morph(head, qp->q.fragments); |
| 626 | head->next = qp->q.fragments->next; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 627 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 628 | kfree_skb(qp->q.fragments); |
| 629 | qp->q.fragments = head; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | BUG_TRAP(head != NULL); |
| 633 | BUG_TRAP(FRAG_CB(head)->offset == 0); |
| 634 | |
| 635 | /* Allocate a new buffer for the datagram. */ |
Arnaldo Carvalho de Melo | c9bdd4b | 2007-03-12 20:09:15 -0300 | [diff] [blame] | 636 | ihlen = ip_hdrlen(head); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 637 | len = ihlen + qp->q.len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 639 | err = -E2BIG; |
Stephen Hemminger | 132adf5 | 2007-03-08 20:44:43 -0800 | [diff] [blame] | 640 | if (len > 65535) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | goto out_oversize; |
| 642 | |
| 643 | /* Head of list must not be cloned. */ |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 644 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | 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 Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 668 | atomic_add(clone->truesize, &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | skb_shinfo(head)->frag_list = head->next; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 672 | skb_push(head, head->data - skb_network_header(head)); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 673 | atomic_sub(head->truesize, &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 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 McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 680 | else if (head->ip_summed == CHECKSUM_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | head->csum = csum_add(head->csum, fp->csum); |
| 682 | head->truesize += fp->truesize; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 683 | atomic_sub(fp->truesize, &ip4_frags.mem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | head->next = NULL; |
| 687 | head->dev = dev; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 688 | head->tstamp = qp->q.stamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 690 | iph = ip_hdr(head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | iph->frag_off = 0; |
| 692 | iph->tot_len = htons(len); |
| 693 | IP_INC_STATS_BH(IPSTATS_MIB_REASMOKS); |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 694 | qp->q.fragments = NULL; |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 695 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
| 697 | out_nomem: |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 698 | LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing " |
Patrick McHardy | 64ce207 | 2005-08-09 20:50:53 -0700 | [diff] [blame] | 699 | "queue %p\n", qp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | goto out_fail; |
| 701 | out_oversize: |
| 702 | if (net_ratelimit()) |
| 703 | printk(KERN_INFO |
| 704 | "Oversized IP packet from %d.%d.%d.%d.\n", |
| 705 | NIPQUAD(qp->saddr)); |
| 706 | out_fail: |
| 707 | IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS); |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 708 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | /* Process an incoming IP datagram fragment. */ |
Herbert Xu | 776c729 | 2007-10-14 00:38:32 -0700 | [diff] [blame] | 712 | int ip_defrag(struct sk_buff *skb, u32 user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | struct ipq *qp; |
YOSHIFUJI Hideaki | e905a9e | 2007-02-09 23:24:47 +0900 | [diff] [blame] | 715 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS); |
| 717 | |
| 718 | /* Start by cleaning up the memory. */ |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 719 | if (atomic_read(&ip4_frags.mem) > ip4_frags_ctl.high_thresh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | ip_evictor(); |
| 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | /* Lookup (or create) queue header */ |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 723 | if ((qp = ip_find(ip_hdr(skb), user)) != NULL) { |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 724 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 726 | spin_lock(&qp->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
Herbert Xu | 1706d58 | 2007-10-14 00:38:15 -0700 | [diff] [blame] | 728 | ret = ip_frag_queue(qp, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 730 | spin_unlock(&qp->q.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | ipq_put(qp, NULL); |
Herbert Xu | 776c729 | 2007-10-14 00:38:32 -0700 | [diff] [blame] | 732 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | IP_INC_STATS_BH(IPSTATS_MIB_REASMFAILS); |
| 736 | kfree_skb(skb); |
Herbert Xu | 776c729 | 2007-10-14 00:38:32 -0700 | [diff] [blame] | 737 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | } |
| 739 | |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 740 | void __init ipfrag_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 742 | init_timer(&ip4_frags.secret_timer); |
| 743 | ip4_frags.secret_timer.function = ipfrag_secret_rebuild; |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 744 | ip4_frags.secret_timer.expires = jiffies + ip4_frags_ctl.secret_interval; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 745 | add_timer(&ip4_frags.secret_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 747 | ip4_frags.ctl = &ip4_frags_ctl; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 748 | inet_frags_init(&ip4_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | EXPORT_SYMBOL(ip_defrag); |