blob: 340c80d968d412ac77684a79b9bb98ceccb68b3f [file] [log] [blame]
Martin Josefsson77ab9cf2006-11-29 02:34:58 +01001/* Expectation handling for nf_conntrack. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/types.h>
13#include <linux/netfilter.h>
14#include <linux/skbuff.h>
15#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
17#include <linux/stddef.h>
18#include <linux/slab.h>
19#include <linux/err.h>
20#include <linux/percpu.h>
21#include <linux/kernel.h>
Patrick McHardya71c0852007-07-07 22:33:47 -070022#include <linux/jhash.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040023#include <linux/moduleparam.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020025#include <net/net_namespace.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010026
27#include <net/netfilter/nf_conntrack.h>
28#include <net/netfilter/nf_conntrack_core.h>
29#include <net/netfilter/nf_conntrack_expect.h>
30#include <net/netfilter/nf_conntrack_helper.h>
31#include <net/netfilter/nf_conntrack_tuple.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010032#include <net/netfilter/nf_conntrack_zones.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010033
Patrick McHardya71c0852007-07-07 22:33:47 -070034unsigned int nf_ct_expect_hsize __read_mostly;
35EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
36
Patrick McHardyf264a7d2007-07-07 22:36:24 -070037unsigned int nf_ct_expect_max __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070038
Patrick McHardye9c1b082007-07-07 22:32:53 -070039static struct kmem_cache *nf_ct_expect_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010040
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +020041static HLIST_HEAD(nf_ct_userspace_expect_list);
42
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010043/* nf_conntrack_expect helper functions */
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020044void nf_ct_unlink_expect_report(struct nf_conntrack_expect *exp,
45 u32 pid, int report)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010046{
47 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020048 struct net *net = nf_ct_exp_net(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010049
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010050 NF_CT_ASSERT(!timer_pending(&exp->timeout));
51
Patrick McHardy7d0742d2008-01-31 04:38:19 -080052 hlist_del_rcu(&exp->hnode);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020053 net->ct.expect_count--;
Patrick McHardya71c0852007-07-07 22:33:47 -070054
Patrick McHardyb5605802007-07-07 22:35:56 -070055 hlist_del(&exp->lnode);
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +020056 if (!(exp->flags & NF_CT_EXPECT_USERSPACE))
57 master_help->expecting[exp->class]--;
58
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020059 nf_ct_expect_event_report(IPEXP_DESTROY, exp, pid, report);
Patrick McHardy68236452007-07-07 22:30:49 -070060 nf_ct_expect_put(exp);
Patrick McHardyb5605802007-07-07 22:35:56 -070061
Alexey Dobriyan0d55af82008-10-08 11:35:07 +020062 NF_CT_STAT_INC(net, expect_delete);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010063}
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020064EXPORT_SYMBOL_GPL(nf_ct_unlink_expect_report);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010065
Patrick McHardy68236452007-07-07 22:30:49 -070066static void nf_ct_expectation_timed_out(unsigned long ul_expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010067{
68 struct nf_conntrack_expect *exp = (void *)ul_expect;
69
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080070 spin_lock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010071 nf_ct_unlink_expect(exp);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080072 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -070073 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010074}
75
Patrick McHardya71c0852007-07-07 22:33:47 -070076static unsigned int nf_ct_expect_dst_hash(const struct nf_conntrack_tuple *tuple)
77{
Patrick McHardy34498822007-12-17 22:45:52 -080078 unsigned int hash;
79
Changli Gaof682cef2011-01-05 04:23:23 +000080 if (unlikely(!nf_conntrack_hash_rnd)) {
81 init_nf_conntrack_hash_rnd();
Patrick McHardya71c0852007-07-07 22:33:47 -070082 }
83
Patrick McHardy34498822007-12-17 22:45:52 -080084 hash = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Patrick McHardya71c0852007-07-07 22:33:47 -070085 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
Changli Gaof682cef2011-01-05 04:23:23 +000086 (__force __u16)tuple->dst.u.all) ^ nf_conntrack_hash_rnd);
Patrick McHardy34498822007-12-17 22:45:52 -080087 return ((u64)hash * nf_ct_expect_hsize) >> 32;
Patrick McHardya71c0852007-07-07 22:33:47 -070088}
89
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010090struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010091__nf_ct_expect_find(struct net *net, u16 zone,
92 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010093{
94 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070095 struct hlist_node *n;
96 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010097
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020098 if (!net->ct.expect_count)
Patrick McHardya71c0852007-07-07 22:33:47 -070099 return NULL;
100
101 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200102 hlist_for_each_entry_rcu(i, n, &net->ct.expect_hash[h], hnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100103 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
104 nf_ct_zone(i->master) == zone)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100105 return i;
106 }
107 return NULL;
108}
Patrick McHardy68236452007-07-07 22:30:49 -0700109EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100110
111/* Just find a expectation corresponding to a tuple. */
112struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100113nf_ct_expect_find_get(struct net *net, u16 zone,
114 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100115{
116 struct nf_conntrack_expect *i;
117
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800118 rcu_read_lock();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100119 i = __nf_ct_expect_find(net, zone, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800120 if (i && !atomic_inc_not_zero(&i->use))
121 i = NULL;
122 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100123
124 return i;
125}
Patrick McHardy68236452007-07-07 22:30:49 -0700126EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100127
128/* If an expectation for this connection is found, it gets delete from
129 * global list then returned. */
130struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100131nf_ct_find_expectation(struct net *net, u16 zone,
132 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100133{
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700134 struct nf_conntrack_expect *i, *exp = NULL;
135 struct hlist_node *n;
136 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100137
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200138 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700139 return NULL;
140
141 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200142 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700143 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100144 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
145 nf_ct_zone(i->master) == zone) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700146 exp = i;
147 break;
148 }
149 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800150 if (!exp)
151 return NULL;
152
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100153 /* If master is not in hash table yet (ie. packet hasn't left
154 this machine yet), how can other end know about expected?
155 Hence these are not the droids you are looking for (if
156 master ct never got confirmed, we'd hold a reference to it
157 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800158 if (!nf_ct_is_confirmed(exp->master))
159 return NULL;
160
161 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
162 atomic_inc(&exp->use);
163 return exp;
164 } else if (del_timer(&exp->timeout)) {
165 nf_ct_unlink_expect(exp);
166 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100167 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800168
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100169 return NULL;
170}
171
172/* delete all expectations for this conntrack */
173void nf_ct_remove_expectations(struct nf_conn *ct)
174{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100175 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700176 struct nf_conntrack_expect *exp;
177 struct hlist_node *n, *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100178
179 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f262008-03-25 20:09:15 -0700180 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100181 return;
182
Patrick McHardyb5605802007-07-07 22:35:56 -0700183 hlist_for_each_entry_safe(exp, n, next, &help->expectations, lnode) {
184 if (del_timer(&exp->timeout)) {
185 nf_ct_unlink_expect(exp);
186 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800187 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100188 }
189}
Patrick McHardy13b18332006-12-02 22:11:25 -0800190EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100191
192/* Would two expected things clash? */
193static inline int expect_clash(const struct nf_conntrack_expect *a,
194 const struct nf_conntrack_expect *b)
195{
196 /* Part covered by intersection of masks must be unequal,
197 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700198 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100199 int count;
200
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100201 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100202
203 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
204 intersect_mask.src.u3.all[count] =
205 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
206 }
207
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100208 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
209}
210
211static inline int expect_matches(const struct nf_conntrack_expect *a,
212 const struct nf_conntrack_expect *b)
213{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800214 return a->master == b->master && a->class == b->class &&
215 nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100216 nf_ct_tuple_mask_equal(&a->mask, &b->mask) &&
217 nf_ct_zone(a->master) == nf_ct_zone(b->master);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100218}
219
220/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700221void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100222{
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800223 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700224 if (del_timer(&exp->timeout)) {
225 nf_ct_unlink_expect(exp);
226 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100227 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800228 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100229}
Patrick McHardy68236452007-07-07 22:30:49 -0700230EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100231
232/* We don't increase the master conntrack refcount for non-fulfilled
233 * conntracks. During the conntrack destruction, the expectations are
234 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700235struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100236{
237 struct nf_conntrack_expect *new;
238
Patrick McHardy68236452007-07-07 22:30:49 -0700239 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100240 if (!new)
241 return NULL;
242
243 new->master = me;
244 atomic_set(&new->use, 1);
245 return new;
246}
Patrick McHardy68236452007-07-07 22:30:49 -0700247EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100248
Patrick McHardy6002f262008-03-25 20:09:15 -0700249void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200250 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700251 const union nf_inet_addr *saddr,
252 const union nf_inet_addr *daddr,
253 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800254{
255 int len;
256
257 if (family == AF_INET)
258 len = 4;
259 else
260 len = 16;
261
262 exp->flags = 0;
Patrick McHardy6002f262008-03-25 20:09:15 -0700263 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800264 exp->expectfn = NULL;
265 exp->helper = NULL;
266 exp->tuple.src.l3num = family;
267 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800268
269 if (saddr) {
270 memcpy(&exp->tuple.src.u3, saddr, len);
271 if (sizeof(exp->tuple.src.u3) > len)
272 /* address needs to be cleared for nf_ct_tuple_equal */
273 memset((void *)&exp->tuple.src.u3 + len, 0x00,
274 sizeof(exp->tuple.src.u3) - len);
275 memset(&exp->mask.src.u3, 0xFF, len);
276 if (sizeof(exp->mask.src.u3) > len)
277 memset((void *)&exp->mask.src.u3 + len, 0x00,
278 sizeof(exp->mask.src.u3) - len);
279 } else {
280 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
281 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
282 }
283
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800284 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100285 exp->tuple.src.u.all = *src;
286 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800287 } else {
288 exp->tuple.src.u.all = 0;
289 exp->mask.src.u.all = 0;
290 }
291
Patrick McHardyd4156e82007-07-07 22:31:32 -0700292 memcpy(&exp->tuple.dst.u3, daddr, len);
293 if (sizeof(exp->tuple.dst.u3) > len)
294 /* address needs to be cleared for nf_ct_tuple_equal */
295 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
296 sizeof(exp->tuple.dst.u3) - len);
297
Al Viroa34c4582007-07-26 17:33:19 +0100298 exp->tuple.dst.u.all = *dst;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800299}
Patrick McHardy68236452007-07-07 22:30:49 -0700300EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800301
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800302static void nf_ct_expect_free_rcu(struct rcu_head *head)
303{
304 struct nf_conntrack_expect *exp;
305
306 exp = container_of(head, struct nf_conntrack_expect, rcu);
307 kmem_cache_free(nf_ct_expect_cachep, exp);
308}
309
Patrick McHardy68236452007-07-07 22:30:49 -0700310void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100311{
312 if (atomic_dec_and_test(&exp->use))
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800313 call_rcu(&exp->rcu, nf_ct_expect_free_rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100314}
Patrick McHardy68236452007-07-07 22:30:49 -0700315EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100316
Patrick McHardy68236452007-07-07 22:30:49 -0700317static void nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100318{
319 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200320 struct net *net = nf_ct_exp_net(exp);
Patrick McHardy6002f262008-03-25 20:09:15 -0700321 const struct nf_conntrack_expect_policy *p;
Patrick McHardya71c0852007-07-07 22:33:47 -0700322 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100323
Eric Dumazet3bfd45f2010-11-16 10:19:18 +0100324 /* two references : one for hash insert, one for the timer */
325 atomic_add(2, &exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700326
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200327 if (master_help) {
328 hlist_add_head(&exp->lnode, &master_help->expectations);
329 master_help->expecting[exp->class]++;
330 } else if (exp->flags & NF_CT_EXPECT_USERSPACE)
331 hlist_add_head(&exp->lnode, &nf_ct_userspace_expect_list);
Patrick McHardya71c0852007-07-07 22:33:47 -0700332
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200333 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
334 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100335
Patrick McHardy68236452007-07-07 22:30:49 -0700336 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
337 (unsigned long)exp);
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200338 if (master_help) {
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100339 p = &rcu_dereference_protected(
340 master_help->helper,
341 lockdep_is_held(&nf_conntrack_lock)
342 )->expect_policy[exp->class];
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200343 exp->timeout.expires = jiffies + p->timeout * HZ;
344 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100345 add_timer(&exp->timeout);
346
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200347 NF_CT_STAT_INC(net, expect_create);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100348}
349
350/* Race with expectations being used means we could have none to find; OK. */
Patrick McHardy6002f262008-03-25 20:09:15 -0700351static void evict_oldest_expect(struct nf_conn *master,
352 struct nf_conntrack_expect *new)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100353{
Patrick McHardyb5605802007-07-07 22:35:56 -0700354 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardy6002f262008-03-25 20:09:15 -0700355 struct nf_conntrack_expect *exp, *last = NULL;
Patrick McHardyb5605802007-07-07 22:35:56 -0700356 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100357
Patrick McHardy6002f262008-03-25 20:09:15 -0700358 hlist_for_each_entry(exp, n, &master_help->expectations, lnode) {
359 if (exp->class == new->class)
360 last = exp;
361 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700362
Patrick McHardy6002f262008-03-25 20:09:15 -0700363 if (last && del_timer(&last->timeout)) {
364 nf_ct_unlink_expect(last);
365 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100366 }
367}
368
369static inline int refresh_timer(struct nf_conntrack_expect *i)
370{
371 struct nf_conn_help *master_help = nfct_help(i->master);
Patrick McHardy6002f262008-03-25 20:09:15 -0700372 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100373
374 if (!del_timer(&i->timeout))
375 return 0;
376
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100377 p = &rcu_dereference_protected(
378 master_help->helper,
379 lockdep_is_held(&nf_conntrack_lock)
380 )->expect_policy[i->class];
Patrick McHardy6002f262008-03-25 20:09:15 -0700381 i->timeout.expires = jiffies + p->timeout * HZ;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100382 add_timer(&i->timeout);
383 return 1;
384}
385
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100386static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100387{
Patrick McHardy6002f262008-03-25 20:09:15 -0700388 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100389 struct nf_conntrack_expect *i;
390 struct nf_conn *master = expect->master;
391 struct nf_conn_help *master_help = nfct_help(master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200392 struct net *net = nf_ct_exp_net(expect);
Patrick McHardya71c0852007-07-07 22:33:47 -0700393 struct hlist_node *n;
394 unsigned int h;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200395 int ret = 1;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100396
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200397 /* Don't allow expectations created from kernel-space with no helper */
398 if (!(expect->flags & NF_CT_EXPECT_USERSPACE) &&
399 (!master_help || (master_help && !master_help->helper))) {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700400 ret = -ESHUTDOWN;
401 goto out;
402 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700403 h = nf_ct_expect_dst_hash(&expect->tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200404 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100405 if (expect_matches(i, expect)) {
406 /* Refresh timer: if it's dying, ignore.. */
407 if (refresh_timer(i)) {
408 ret = 0;
409 goto out;
410 }
411 } else if (expect_clash(i, expect)) {
412 ret = -EBUSY;
413 goto out;
414 }
415 }
416 /* Will be over limit? */
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200417 if (master_help) {
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100418 p = &rcu_dereference_protected(
419 master_help->helper,
420 lockdep_is_held(&nf_conntrack_lock)
421 )->expect_policy[expect->class];
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200422 if (p->max_expected &&
423 master_help->expecting[expect->class] >= p->max_expected) {
424 evict_oldest_expect(master, expect);
425 if (master_help->expecting[expect->class]
426 >= p->max_expected) {
427 ret = -EMFILE;
428 goto out;
429 }
Patrick McHardy6002f262008-03-25 20:09:15 -0700430 }
431 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100432
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200433 if (net->ct.expect_count >= nf_ct_expect_max) {
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700434 if (net_ratelimit())
435 printk(KERN_WARNING
Alexey Dobriyan3d89e9c2008-03-10 16:43:10 -0700436 "nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700437 ret = -EMFILE;
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700438 }
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100439out:
440 return ret;
441}
442
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100443int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
444 u32 pid, int report)
445{
446 int ret;
447
448 spin_lock_bh(&nf_conntrack_lock);
449 ret = __nf_ct_expect_check(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200450 if (ret <= 0)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100451 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200452
453 ret = 0;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100454 nf_ct_expect_insert(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200455 spin_unlock_bh(&nf_conntrack_lock);
456 nf_ct_expect_event_report(IPEXP_NEW, expect, pid, report);
457 return ret;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100458out:
459 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100460 return ret;
461}
462EXPORT_SYMBOL_GPL(nf_ct_expect_related_report);
463
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200464void nf_ct_remove_userspace_expectations(void)
465{
466 struct nf_conntrack_expect *exp;
467 struct hlist_node *n, *next;
468
469 hlist_for_each_entry_safe(exp, n, next,
470 &nf_ct_userspace_expect_list, lnode) {
471 if (del_timer(&exp->timeout)) {
472 nf_ct_unlink_expect(exp);
473 nf_ct_expect_put(exp);
474 }
475 }
476}
477EXPORT_SYMBOL_GPL(nf_ct_remove_userspace_expectations);
478
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100479#ifdef CONFIG_PROC_FS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700480struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200481 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700482 unsigned int bucket;
483};
484
485static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100486{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200487 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700488 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800489 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100490
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700491 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100492 n = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800493 if (n)
494 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100495 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700496 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100497}
498
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700499static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
500 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100501{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200502 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700503 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100504
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100505 head = rcu_dereference(hlist_next_rcu(head));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700506 while (head == NULL) {
507 if (++st->bucket >= nf_ct_expect_hsize)
508 return NULL;
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100509 head = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700510 }
511 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100512}
513
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700514static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
515{
516 struct hlist_node *head = ct_expect_get_first(seq);
517
518 if (head)
519 while (pos && (head = ct_expect_get_next(seq, head)))
520 pos--;
521 return pos ? NULL : head;
522}
523
524static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800525 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700526{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800527 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700528 return ct_expect_get_idx(seq, *pos);
529}
530
531static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
532{
533 (*pos)++;
534 return ct_expect_get_next(seq, v);
535}
536
537static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800538 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100539{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800540 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100541}
542
543static int exp_seq_show(struct seq_file *s, void *v)
544{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700545 struct nf_conntrack_expect *expect;
Patrick McHardyb87921b2010-02-11 12:22:48 +0100546 struct nf_conntrack_helper *helper;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700547 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700548 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700549
550 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100551
552 if (expect->timeout.function)
553 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
554 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
555 else
556 seq_printf(s, "- ");
557 seq_printf(s, "l3proto = %u proto=%u ",
558 expect->tuple.src.l3num,
559 expect->tuple.dst.protonum);
560 print_tuple(s, &expect->tuple,
561 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100562 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100563 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700564
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700565 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
566 seq_printf(s, "PERMANENT");
567 delim = ",";
568 }
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200569 if (expect->flags & NF_CT_EXPECT_INACTIVE) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700570 seq_printf(s, "%sINACTIVE", delim);
Pablo Neira Ayusobc01bef2010-09-28 21:06:34 +0200571 delim = ",";
572 }
573 if (expect->flags & NF_CT_EXPECT_USERSPACE)
574 seq_printf(s, "%sUSERSPACE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700575
Patrick McHardyb87921b2010-02-11 12:22:48 +0100576 helper = rcu_dereference(nfct_help(expect->master)->helper);
577 if (helper) {
578 seq_printf(s, "%s%s", expect->flags ? " " : "", helper->name);
579 if (helper->expect_policy[expect->class].name)
580 seq_printf(s, "/%s",
581 helper->expect_policy[expect->class].name);
582 }
583
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100584 return seq_putc(s, '\n');
585}
586
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700587static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100588 .start = exp_seq_start,
589 .next = exp_seq_next,
590 .stop = exp_seq_stop,
591 .show = exp_seq_show
592};
593
594static int exp_open(struct inode *inode, struct file *file)
595{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200596 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700597 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100598}
599
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700600static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100601 .owner = THIS_MODULE,
602 .open = exp_open,
603 .read = seq_read,
604 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200605 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100606};
607#endif /* CONFIG_PROC_FS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700608
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200609static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700610{
611#ifdef CONFIG_PROC_FS
612 struct proc_dir_entry *proc;
613
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200614 proc = proc_net_fops_create(net, "nf_conntrack_expect", 0440, &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700615 if (!proc)
616 return -ENOMEM;
617#endif /* CONFIG_PROC_FS */
618 return 0;
619}
620
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200621static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700622{
623#ifdef CONFIG_PROC_FS
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200624 proc_net_remove(net, "nf_conntrack_expect");
Patrick McHardye9c1b082007-07-07 22:32:53 -0700625#endif /* CONFIG_PROC_FS */
626}
627
Alexey Dobriyan13ccdfc2010-02-08 11:17:22 -0800628module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0400);
Patrick McHardya71c0852007-07-07 22:33:47 -0700629
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200630int nf_conntrack_expect_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700631{
Patrick McHardya71c0852007-07-07 22:33:47 -0700632 int err = -ENOMEM;
633
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200634 if (net_eq(net, &init_net)) {
635 if (!nf_ct_expect_hsize) {
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800636 nf_ct_expect_hsize = net->ct.htable_size / 256;
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200637 if (!nf_ct_expect_hsize)
638 nf_ct_expect_hsize = 1;
639 }
640 nf_ct_expect_max = nf_ct_expect_hsize * 4;
Patrick McHardya71c0852007-07-07 22:33:47 -0700641 }
642
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200643 net->ct.expect_count = 0;
Patrick McHardyd862a662011-01-14 15:45:56 +0100644 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize, 0);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200645 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700646 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700647
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200648 if (net_eq(net, &init_net)) {
649 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
Patrick McHardye9c1b082007-07-07 22:32:53 -0700650 sizeof(struct nf_conntrack_expect),
Paul Mundt20c2df82007-07-20 10:11:58 +0900651 0, 0, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200652 if (!nf_ct_expect_cachep)
653 goto err2;
654 }
Patrick McHardye9c1b082007-07-07 22:32:53 -0700655
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200656 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700657 if (err < 0)
Patrick McHardya71c0852007-07-07 22:33:47 -0700658 goto err3;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700659
660 return 0;
661
Patrick McHardya71c0852007-07-07 22:33:47 -0700662err3:
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200663 if (net_eq(net, &init_net))
664 kmem_cache_destroy(nf_ct_expect_cachep);
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700665err2:
Patrick McHardyd862a662011-01-14 15:45:56 +0100666 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700667err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700668 return err;
669}
670
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200671void nf_conntrack_expect_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700672{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200673 exp_proc_remove(net);
Jesper Dangaard Brouer308ff822009-06-25 16:32:52 +0200674 if (net_eq(net, &init_net)) {
675 rcu_barrier(); /* Wait for call_rcu() before destroy */
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200676 kmem_cache_destroy(nf_ct_expect_cachep);
Jesper Dangaard Brouer308ff822009-06-25 16:32:52 +0200677 }
Patrick McHardyd862a662011-01-14 15:45:56 +0100678 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700679}