blob: 46e8966912b1d9db01fc2997ce0574f0c6094062 [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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020023#include <net/net_namespace.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010024
25#include <net/netfilter/nf_conntrack.h>
26#include <net/netfilter/nf_conntrack_core.h>
27#include <net/netfilter/nf_conntrack_expect.h>
28#include <net/netfilter/nf_conntrack_helper.h>
29#include <net/netfilter/nf_conntrack_tuple.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010030#include <net/netfilter/nf_conntrack_zones.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010031
Patrick McHardya71c0852007-07-07 22:33:47 -070032unsigned int nf_ct_expect_hsize __read_mostly;
33EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
34
35static unsigned int nf_ct_expect_hash_rnd __read_mostly;
Patrick McHardyf264a7d2007-07-07 22:36:24 -070036unsigned int nf_ct_expect_max __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070037static int nf_ct_expect_hash_rnd_initted __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 Ayusobc01befd2010-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 Ayusobc01befd2010-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
Patrick McHardya71c0852007-07-07 22:33:47 -070080 if (unlikely(!nf_ct_expect_hash_rnd_initted)) {
Hagen Paul Pfeiferaf07d242009-02-20 10:48:06 +010081 get_random_bytes(&nf_ct_expect_hash_rnd,
82 sizeof(nf_ct_expect_hash_rnd));
Patrick McHardya71c0852007-07-07 22:33:47 -070083 nf_ct_expect_hash_rnd_initted = 1;
84 }
85
Patrick McHardy34498822007-12-17 22:45:52 -080086 hash = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Patrick McHardya71c0852007-07-07 22:33:47 -070087 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
Patrick McHardy34498822007-12-17 22:45:52 -080088 (__force __u16)tuple->dst.u.all) ^ nf_ct_expect_hash_rnd);
89 return ((u64)hash * nf_ct_expect_hsize) >> 32;
Patrick McHardya71c0852007-07-07 22:33:47 -070090}
91
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010092struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010093__nf_ct_expect_find(struct net *net, u16 zone,
94 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010095{
96 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070097 struct hlist_node *n;
98 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010099
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200100 if (!net->ct.expect_count)
Patrick McHardya71c0852007-07-07 22:33:47 -0700101 return NULL;
102
103 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200104 hlist_for_each_entry_rcu(i, n, &net->ct.expect_hash[h], hnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100105 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
106 nf_ct_zone(i->master) == zone)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100107 return i;
108 }
109 return NULL;
110}
Patrick McHardy68236452007-07-07 22:30:49 -0700111EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100112
113/* Just find a expectation corresponding to a tuple. */
114struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100115nf_ct_expect_find_get(struct net *net, u16 zone,
116 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100117{
118 struct nf_conntrack_expect *i;
119
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800120 rcu_read_lock();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100121 i = __nf_ct_expect_find(net, zone, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800122 if (i && !atomic_inc_not_zero(&i->use))
123 i = NULL;
124 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100125
126 return i;
127}
Patrick McHardy68236452007-07-07 22:30:49 -0700128EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100129
130/* If an expectation for this connection is found, it gets delete from
131 * global list then returned. */
132struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100133nf_ct_find_expectation(struct net *net, u16 zone,
134 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100135{
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700136 struct nf_conntrack_expect *i, *exp = NULL;
137 struct hlist_node *n;
138 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100139
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200140 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700141 return NULL;
142
143 h = nf_ct_expect_dst_hash(tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200144 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700145 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100146 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
147 nf_ct_zone(i->master) == zone) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700148 exp = i;
149 break;
150 }
151 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800152 if (!exp)
153 return NULL;
154
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100155 /* If master is not in hash table yet (ie. packet hasn't left
156 this machine yet), how can other end know about expected?
157 Hence these are not the droids you are looking for (if
158 master ct never got confirmed, we'd hold a reference to it
159 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800160 if (!nf_ct_is_confirmed(exp->master))
161 return NULL;
162
163 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
164 atomic_inc(&exp->use);
165 return exp;
166 } else if (del_timer(&exp->timeout)) {
167 nf_ct_unlink_expect(exp);
168 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100169 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800170
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100171 return NULL;
172}
173
174/* delete all expectations for this conntrack */
175void nf_ct_remove_expectations(struct nf_conn *ct)
176{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100177 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700178 struct nf_conntrack_expect *exp;
179 struct hlist_node *n, *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100180
181 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700182 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100183 return;
184
Patrick McHardyb5605802007-07-07 22:35:56 -0700185 hlist_for_each_entry_safe(exp, n, next, &help->expectations, lnode) {
186 if (del_timer(&exp->timeout)) {
187 nf_ct_unlink_expect(exp);
188 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800189 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100190 }
191}
Patrick McHardy13b18332006-12-02 22:11:25 -0800192EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100193
194/* Would two expected things clash? */
195static inline int expect_clash(const struct nf_conntrack_expect *a,
196 const struct nf_conntrack_expect *b)
197{
198 /* Part covered by intersection of masks must be unequal,
199 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700200 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100201 int count;
202
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100203 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100204
205 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
206 intersect_mask.src.u3.all[count] =
207 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
208 }
209
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100210 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
211}
212
213static inline int expect_matches(const struct nf_conntrack_expect *a,
214 const struct nf_conntrack_expect *b)
215{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800216 return a->master == b->master && a->class == b->class &&
217 nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100218 nf_ct_tuple_mask_equal(&a->mask, &b->mask) &&
219 nf_ct_zone(a->master) == nf_ct_zone(b->master);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100220}
221
222/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700223void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100224{
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800225 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700226 if (del_timer(&exp->timeout)) {
227 nf_ct_unlink_expect(exp);
228 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100229 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800230 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100231}
Patrick McHardy68236452007-07-07 22:30:49 -0700232EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100233
234/* We don't increase the master conntrack refcount for non-fulfilled
235 * conntracks. During the conntrack destruction, the expectations are
236 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700237struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100238{
239 struct nf_conntrack_expect *new;
240
Patrick McHardy68236452007-07-07 22:30:49 -0700241 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100242 if (!new)
243 return NULL;
244
245 new->master = me;
246 atomic_set(&new->use, 1);
247 return new;
248}
Patrick McHardy68236452007-07-07 22:30:49 -0700249EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100250
Patrick McHardy6002f2662008-03-25 20:09:15 -0700251void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200252 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700253 const union nf_inet_addr *saddr,
254 const union nf_inet_addr *daddr,
255 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800256{
257 int len;
258
259 if (family == AF_INET)
260 len = 4;
261 else
262 len = 16;
263
264 exp->flags = 0;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700265 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800266 exp->expectfn = NULL;
267 exp->helper = NULL;
268 exp->tuple.src.l3num = family;
269 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800270
271 if (saddr) {
272 memcpy(&exp->tuple.src.u3, saddr, len);
273 if (sizeof(exp->tuple.src.u3) > len)
274 /* address needs to be cleared for nf_ct_tuple_equal */
275 memset((void *)&exp->tuple.src.u3 + len, 0x00,
276 sizeof(exp->tuple.src.u3) - len);
277 memset(&exp->mask.src.u3, 0xFF, len);
278 if (sizeof(exp->mask.src.u3) > len)
279 memset((void *)&exp->mask.src.u3 + len, 0x00,
280 sizeof(exp->mask.src.u3) - len);
281 } else {
282 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
283 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
284 }
285
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800286 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100287 exp->tuple.src.u.all = *src;
288 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800289 } else {
290 exp->tuple.src.u.all = 0;
291 exp->mask.src.u.all = 0;
292 }
293
Patrick McHardyd4156e82007-07-07 22:31:32 -0700294 memcpy(&exp->tuple.dst.u3, daddr, len);
295 if (sizeof(exp->tuple.dst.u3) > len)
296 /* address needs to be cleared for nf_ct_tuple_equal */
297 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
298 sizeof(exp->tuple.dst.u3) - len);
299
Al Viroa34c4582007-07-26 17:33:19 +0100300 exp->tuple.dst.u.all = *dst;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800301}
Patrick McHardy68236452007-07-07 22:30:49 -0700302EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800303
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800304static void nf_ct_expect_free_rcu(struct rcu_head *head)
305{
306 struct nf_conntrack_expect *exp;
307
308 exp = container_of(head, struct nf_conntrack_expect, rcu);
309 kmem_cache_free(nf_ct_expect_cachep, exp);
310}
311
Patrick McHardy68236452007-07-07 22:30:49 -0700312void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100313{
314 if (atomic_dec_and_test(&exp->use))
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800315 call_rcu(&exp->rcu, nf_ct_expect_free_rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100316}
Patrick McHardy68236452007-07-07 22:30:49 -0700317EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100318
Patrick McHardy68236452007-07-07 22:30:49 -0700319static void nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100320{
321 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200322 struct net *net = nf_ct_exp_net(exp);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700323 const struct nf_conntrack_expect_policy *p;
Patrick McHardya71c0852007-07-07 22:33:47 -0700324 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100325
326 atomic_inc(&exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700327
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200328 if (master_help) {
329 hlist_add_head(&exp->lnode, &master_help->expectations);
330 master_help->expecting[exp->class]++;
331 } else if (exp->flags & NF_CT_EXPECT_USERSPACE)
332 hlist_add_head(&exp->lnode, &nf_ct_userspace_expect_list);
Patrick McHardya71c0852007-07-07 22:33:47 -0700333
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200334 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
335 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100336
Patrick McHardy68236452007-07-07 22:30:49 -0700337 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
338 (unsigned long)exp);
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200339 if (master_help) {
340 p = &master_help->helper->expect_policy[exp->class];
341 exp->timeout.expires = jiffies + p->timeout * HZ;
342 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100343 add_timer(&exp->timeout);
344
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100345 atomic_inc(&exp->use);
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200346 NF_CT_STAT_INC(net, expect_create);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100347}
348
349/* Race with expectations being used means we could have none to find; OK. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700350static void evict_oldest_expect(struct nf_conn *master,
351 struct nf_conntrack_expect *new)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100352{
Patrick McHardyb5605802007-07-07 22:35:56 -0700353 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700354 struct nf_conntrack_expect *exp, *last = NULL;
Patrick McHardyb5605802007-07-07 22:35:56 -0700355 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100356
Patrick McHardy6002f2662008-03-25 20:09:15 -0700357 hlist_for_each_entry(exp, n, &master_help->expectations, lnode) {
358 if (exp->class == new->class)
359 last = exp;
360 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700361
Patrick McHardy6002f2662008-03-25 20:09:15 -0700362 if (last && del_timer(&last->timeout)) {
363 nf_ct_unlink_expect(last);
364 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100365 }
366}
367
368static inline int refresh_timer(struct nf_conntrack_expect *i)
369{
370 struct nf_conn_help *master_help = nfct_help(i->master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700371 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100372
373 if (!del_timer(&i->timeout))
374 return 0;
375
Patrick McHardy6002f2662008-03-25 20:09:15 -0700376 p = &master_help->helper->expect_policy[i->class];
377 i->timeout.expires = jiffies + p->timeout * HZ;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100378 add_timer(&i->timeout);
379 return 1;
380}
381
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100382static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100383{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700384 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100385 struct nf_conntrack_expect *i;
386 struct nf_conn *master = expect->master;
387 struct nf_conn_help *master_help = nfct_help(master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200388 struct net *net = nf_ct_exp_net(expect);
Patrick McHardya71c0852007-07-07 22:33:47 -0700389 struct hlist_node *n;
390 unsigned int h;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200391 int ret = 1;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100392
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200393 /* Don't allow expectations created from kernel-space with no helper */
394 if (!(expect->flags & NF_CT_EXPECT_USERSPACE) &&
395 (!master_help || (master_help && !master_help->helper))) {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700396 ret = -ESHUTDOWN;
397 goto out;
398 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700399 h = nf_ct_expect_dst_hash(&expect->tuple);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200400 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100401 if (expect_matches(i, expect)) {
402 /* Refresh timer: if it's dying, ignore.. */
403 if (refresh_timer(i)) {
404 ret = 0;
405 goto out;
406 }
407 } else if (expect_clash(i, expect)) {
408 ret = -EBUSY;
409 goto out;
410 }
411 }
412 /* Will be over limit? */
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200413 if (master_help) {
414 p = &master_help->helper->expect_policy[expect->class];
415 if (p->max_expected &&
416 master_help->expecting[expect->class] >= p->max_expected) {
417 evict_oldest_expect(master, expect);
418 if (master_help->expecting[expect->class]
419 >= p->max_expected) {
420 ret = -EMFILE;
421 goto out;
422 }
Patrick McHardy6002f2662008-03-25 20:09:15 -0700423 }
424 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100425
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200426 if (net->ct.expect_count >= nf_ct_expect_max) {
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700427 if (net_ratelimit())
428 printk(KERN_WARNING
Alexey Dobriyan3d89e9c2008-03-10 16:43:10 -0700429 "nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700430 ret = -EMFILE;
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700431 }
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100432out:
433 return ret;
434}
435
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100436int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
437 u32 pid, int report)
438{
439 int ret;
440
441 spin_lock_bh(&nf_conntrack_lock);
442 ret = __nf_ct_expect_check(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200443 if (ret <= 0)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100444 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200445
446 ret = 0;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100447 nf_ct_expect_insert(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200448 spin_unlock_bh(&nf_conntrack_lock);
449 nf_ct_expect_event_report(IPEXP_NEW, expect, pid, report);
450 return ret;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100451out:
452 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100453 return ret;
454}
455EXPORT_SYMBOL_GPL(nf_ct_expect_related_report);
456
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200457void nf_ct_remove_userspace_expectations(void)
458{
459 struct nf_conntrack_expect *exp;
460 struct hlist_node *n, *next;
461
462 hlist_for_each_entry_safe(exp, n, next,
463 &nf_ct_userspace_expect_list, lnode) {
464 if (del_timer(&exp->timeout)) {
465 nf_ct_unlink_expect(exp);
466 nf_ct_expect_put(exp);
467 }
468 }
469}
470EXPORT_SYMBOL_GPL(nf_ct_remove_userspace_expectations);
471
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100472#ifdef CONFIG_PROC_FS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700473struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200474 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700475 unsigned int bucket;
476};
477
478static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100479{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200480 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700481 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800482 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100483
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700484 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200485 n = rcu_dereference(net->ct.expect_hash[st->bucket].first);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800486 if (n)
487 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100488 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700489 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100490}
491
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700492static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
493 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100494{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200495 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700496 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100497
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800498 head = rcu_dereference(head->next);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700499 while (head == NULL) {
500 if (++st->bucket >= nf_ct_expect_hsize)
501 return NULL;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200502 head = rcu_dereference(net->ct.expect_hash[st->bucket].first);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700503 }
504 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100505}
506
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700507static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
508{
509 struct hlist_node *head = ct_expect_get_first(seq);
510
511 if (head)
512 while (pos && (head = ct_expect_get_next(seq, head)))
513 pos--;
514 return pos ? NULL : head;
515}
516
517static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800518 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700519{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800520 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700521 return ct_expect_get_idx(seq, *pos);
522}
523
524static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
525{
526 (*pos)++;
527 return ct_expect_get_next(seq, v);
528}
529
530static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800531 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100532{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800533 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100534}
535
536static int exp_seq_show(struct seq_file *s, void *v)
537{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700538 struct nf_conntrack_expect *expect;
Patrick McHardyb87921b2010-02-11 12:22:48 +0100539 struct nf_conntrack_helper *helper;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700540 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700541 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700542
543 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100544
545 if (expect->timeout.function)
546 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
547 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
548 else
549 seq_printf(s, "- ");
550 seq_printf(s, "l3proto = %u proto=%u ",
551 expect->tuple.src.l3num,
552 expect->tuple.dst.protonum);
553 print_tuple(s, &expect->tuple,
554 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100555 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100556 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700557
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700558 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
559 seq_printf(s, "PERMANENT");
560 delim = ",";
561 }
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200562 if (expect->flags & NF_CT_EXPECT_INACTIVE) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700563 seq_printf(s, "%sINACTIVE", delim);
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200564 delim = ",";
565 }
566 if (expect->flags & NF_CT_EXPECT_USERSPACE)
567 seq_printf(s, "%sUSERSPACE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700568
Patrick McHardyb87921b2010-02-11 12:22:48 +0100569 helper = rcu_dereference(nfct_help(expect->master)->helper);
570 if (helper) {
571 seq_printf(s, "%s%s", expect->flags ? " " : "", helper->name);
572 if (helper->expect_policy[expect->class].name)
573 seq_printf(s, "/%s",
574 helper->expect_policy[expect->class].name);
575 }
576
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100577 return seq_putc(s, '\n');
578}
579
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700580static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100581 .start = exp_seq_start,
582 .next = exp_seq_next,
583 .stop = exp_seq_stop,
584 .show = exp_seq_show
585};
586
587static int exp_open(struct inode *inode, struct file *file)
588{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200589 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700590 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100591}
592
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700593static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100594 .owner = THIS_MODULE,
595 .open = exp_open,
596 .read = seq_read,
597 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200598 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100599};
600#endif /* CONFIG_PROC_FS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700601
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200602static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700603{
604#ifdef CONFIG_PROC_FS
605 struct proc_dir_entry *proc;
606
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200607 proc = proc_net_fops_create(net, "nf_conntrack_expect", 0440, &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700608 if (!proc)
609 return -ENOMEM;
610#endif /* CONFIG_PROC_FS */
611 return 0;
612}
613
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200614static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700615{
616#ifdef CONFIG_PROC_FS
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200617 proc_net_remove(net, "nf_conntrack_expect");
Patrick McHardye9c1b082007-07-07 22:32:53 -0700618#endif /* CONFIG_PROC_FS */
619}
620
Alexey Dobriyan13ccdfc2010-02-08 11:17:22 -0800621module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0400);
Patrick McHardya71c0852007-07-07 22:33:47 -0700622
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200623int nf_conntrack_expect_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700624{
Patrick McHardya71c0852007-07-07 22:33:47 -0700625 int err = -ENOMEM;
626
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200627 if (net_eq(net, &init_net)) {
628 if (!nf_ct_expect_hsize) {
Patrick McHardyd696c7b2010-02-08 11:18:07 -0800629 nf_ct_expect_hsize = net->ct.htable_size / 256;
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200630 if (!nf_ct_expect_hsize)
631 nf_ct_expect_hsize = 1;
632 }
633 nf_ct_expect_max = nf_ct_expect_hsize * 4;
Patrick McHardya71c0852007-07-07 22:33:47 -0700634 }
635
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200636 net->ct.expect_count = 0;
637 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize,
Eric Dumazetea781f12009-03-25 21:05:46 +0100638 &net->ct.expect_vmalloc, 0);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200639 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700640 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700641
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200642 if (net_eq(net, &init_net)) {
643 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
Patrick McHardye9c1b082007-07-07 22:32:53 -0700644 sizeof(struct nf_conntrack_expect),
Paul Mundt20c2df82007-07-20 10:11:58 +0900645 0, 0, NULL);
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200646 if (!nf_ct_expect_cachep)
647 goto err2;
648 }
Patrick McHardye9c1b082007-07-07 22:32:53 -0700649
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200650 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700651 if (err < 0)
Patrick McHardya71c0852007-07-07 22:33:47 -0700652 goto err3;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700653
654 return 0;
655
Patrick McHardya71c0852007-07-07 22:33:47 -0700656err3:
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200657 if (net_eq(net, &init_net))
658 kmem_cache_destroy(nf_ct_expect_cachep);
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700659err2:
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200660 nf_ct_free_hashtable(net->ct.expect_hash, net->ct.expect_vmalloc,
Patrick McHardya71c0852007-07-07 22:33:47 -0700661 nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700662err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700663 return err;
664}
665
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200666void nf_conntrack_expect_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700667{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200668 exp_proc_remove(net);
Jesper Dangaard Brouer308ff822009-06-25 16:32:52 +0200669 if (net_eq(net, &init_net)) {
670 rcu_barrier(); /* Wait for call_rcu() before destroy */
Alexey Dobriyan08f65472008-10-08 11:35:09 +0200671 kmem_cache_destroy(nf_ct_expect_cachep);
Jesper Dangaard Brouer308ff822009-06-25 16:32:52 +0200672 }
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200673 nf_ct_free_hashtable(net->ct.expect_hash, net->ct.expect_vmalloc,
Patrick McHardya71c0852007-07-07 22:33:47 -0700674 nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700675}