blob: 4fd1ca94fd4a140b374385ded878af60b503b529 [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02006 * (c) 2005-2012 Patrick McHardy <kaber@trash.net>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +01007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/types.h>
14#include <linux/netfilter.h>
15#include <linux/skbuff.h>
16#include <linux/proc_fs.h>
17#include <linux/seq_file.h>
18#include <linux/stddef.h>
19#include <linux/slab.h>
20#include <linux/err.h>
21#include <linux/percpu.h>
22#include <linux/kernel.h>
Patrick McHardya71c0852007-07-07 22:33:47 -070023#include <linux/jhash.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040024#include <linux/moduleparam.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040025#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020026#include <net/net_namespace.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010027
28#include <net/netfilter/nf_conntrack.h>
29#include <net/netfilter/nf_conntrack_core.h>
30#include <net/netfilter/nf_conntrack_expect.h>
31#include <net/netfilter/nf_conntrack_helper.h>
32#include <net/netfilter/nf_conntrack_tuple.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010033#include <net/netfilter/nf_conntrack_zones.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010034
Patrick McHardya71c0852007-07-07 22:33:47 -070035unsigned int nf_ct_expect_hsize __read_mostly;
36EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
37
Patrick McHardyf264a7d2007-07-07 22:36:24 -070038unsigned int nf_ct_expect_max __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070039
Patrick McHardye9c1b082007-07-07 22:32:53 -070040static struct kmem_cache *nf_ct_expect_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010041
42/* nf_conntrack_expect helper functions */
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020043void nf_ct_unlink_expect_report(struct nf_conntrack_expect *exp,
Patrick McHardyec464e52013-04-17 06:47:08 +000044 u32 portid, int report)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010045{
46 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020047 struct net *net = nf_ct_exp_net(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010048
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +010049 NF_CT_ASSERT(master_help);
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 Ayuso3d058d72011-12-18 01:55:54 +010056 master_help->expecting[exp->class]--;
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +020057
Patrick McHardyec464e52013-04-17 06:47:08 +000058 nf_ct_expect_event_report(IPEXP_DESTROY, exp, portid, report);
Patrick McHardy68236452007-07-07 22:30:49 -070059 nf_ct_expect_put(exp);
Patrick McHardyb5605802007-07-07 22:35:56 -070060
Alexey Dobriyan0d55af82008-10-08 11:35:07 +020061 NF_CT_STAT_INC(net, expect_delete);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010062}
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020063EXPORT_SYMBOL_GPL(nf_ct_unlink_expect_report);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010064
Patrick McHardy68236452007-07-07 22:30:49 -070065static void nf_ct_expectation_timed_out(unsigned long ul_expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010066{
67 struct nf_conntrack_expect *exp = (void *)ul_expect;
68
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080069 spin_lock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010070 nf_ct_unlink_expect(exp);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080071 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -070072 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010073}
74
Patrick McHardya71c0852007-07-07 22:33:47 -070075static unsigned int nf_ct_expect_dst_hash(const struct nf_conntrack_tuple *tuple)
76{
Patrick McHardy34498822007-12-17 22:45:52 -080077 unsigned int hash;
78
Changli Gaof682cef2011-01-05 04:23:23 +000079 if (unlikely(!nf_conntrack_hash_rnd)) {
80 init_nf_conntrack_hash_rnd();
Patrick McHardya71c0852007-07-07 22:33:47 -070081 }
82
Patrick McHardy34498822007-12-17 22:45:52 -080083 hash = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Patrick McHardya71c0852007-07-07 22:33:47 -070084 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
Changli Gaof682cef2011-01-05 04:23:23 +000085 (__force __u16)tuple->dst.u.all) ^ nf_conntrack_hash_rnd);
Patrick McHardy34498822007-12-17 22:45:52 -080086 return ((u64)hash * nf_ct_expect_hsize) >> 32;
Patrick McHardya71c0852007-07-07 22:33:47 -070087}
88
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010089struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010090__nf_ct_expect_find(struct net *net, u16 zone,
91 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010092{
93 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070094 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010095
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020096 if (!net->ct.expect_count)
Patrick McHardya71c0852007-07-07 22:33:47 -070097 return NULL;
98
99 h = nf_ct_expect_dst_hash(tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800100 hlist_for_each_entry_rcu(i, &net->ct.expect_hash[h], hnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100101 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
102 nf_ct_zone(i->master) == zone)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100103 return i;
104 }
105 return NULL;
106}
Patrick McHardy68236452007-07-07 22:30:49 -0700107EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100108
109/* Just find a expectation corresponding to a tuple. */
110struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100111nf_ct_expect_find_get(struct net *net, u16 zone,
112 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100113{
114 struct nf_conntrack_expect *i;
115
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800116 rcu_read_lock();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100117 i = __nf_ct_expect_find(net, zone, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800118 if (i && !atomic_inc_not_zero(&i->use))
119 i = NULL;
120 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100121
122 return i;
123}
Patrick McHardy68236452007-07-07 22:30:49 -0700124EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100125
126/* If an expectation for this connection is found, it gets delete from
127 * global list then returned. */
128struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100129nf_ct_find_expectation(struct net *net, u16 zone,
130 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100131{
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700132 struct nf_conntrack_expect *i, *exp = NULL;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700133 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100134
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200135 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700136 return NULL;
137
138 h = nf_ct_expect_dst_hash(tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800139 hlist_for_each_entry(i, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700140 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100141 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
142 nf_ct_zone(i->master) == zone) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700143 exp = i;
144 break;
145 }
146 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800147 if (!exp)
148 return NULL;
149
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100150 /* If master is not in hash table yet (ie. packet hasn't left
151 this machine yet), how can other end know about expected?
152 Hence these are not the droids you are looking for (if
153 master ct never got confirmed, we'd hold a reference to it
154 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800155 if (!nf_ct_is_confirmed(exp->master))
156 return NULL;
157
158 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
159 atomic_inc(&exp->use);
160 return exp;
161 } else if (del_timer(&exp->timeout)) {
162 nf_ct_unlink_expect(exp);
163 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100164 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800165
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100166 return NULL;
167}
168
169/* delete all expectations for this conntrack */
170void nf_ct_remove_expectations(struct nf_conn *ct)
171{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100172 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700173 struct nf_conntrack_expect *exp;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800174 struct hlist_node *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100175
176 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700177 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100178 return;
179
Sasha Levinb67bfe02013-02-27 17:06:00 -0800180 hlist_for_each_entry_safe(exp, next, &help->expectations, lnode) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700181 if (del_timer(&exp->timeout)) {
182 nf_ct_unlink_expect(exp);
183 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800184 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100185 }
186}
Patrick McHardy13b18332006-12-02 22:11:25 -0800187EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100188
189/* Would two expected things clash? */
190static inline int expect_clash(const struct nf_conntrack_expect *a,
191 const struct nf_conntrack_expect *b)
192{
193 /* Part covered by intersection of masks must be unequal,
194 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700195 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100196 int count;
197
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100198 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100199
200 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
201 intersect_mask.src.u3.all[count] =
202 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
203 }
204
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100205 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
206}
207
208static inline int expect_matches(const struct nf_conntrack_expect *a,
209 const struct nf_conntrack_expect *b)
210{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800211 return a->master == b->master && a->class == b->class &&
212 nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100213 nf_ct_tuple_mask_equal(&a->mask, &b->mask) &&
214 nf_ct_zone(a->master) == nf_ct_zone(b->master);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100215}
216
217/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700218void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100219{
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800220 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700221 if (del_timer(&exp->timeout)) {
222 nf_ct_unlink_expect(exp);
223 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100224 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800225 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100226}
Patrick McHardy68236452007-07-07 22:30:49 -0700227EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100228
229/* We don't increase the master conntrack refcount for non-fulfilled
230 * conntracks. During the conntrack destruction, the expectations are
231 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700232struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100233{
234 struct nf_conntrack_expect *new;
235
Patrick McHardy68236452007-07-07 22:30:49 -0700236 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100237 if (!new)
238 return NULL;
239
240 new->master = me;
241 atomic_set(&new->use, 1);
242 return new;
243}
Patrick McHardy68236452007-07-07 22:30:49 -0700244EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100245
Patrick McHardy6002f2662008-03-25 20:09:15 -0700246void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200247 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700248 const union nf_inet_addr *saddr,
249 const union nf_inet_addr *daddr,
250 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800251{
252 int len;
253
254 if (family == AF_INET)
255 len = 4;
256 else
257 len = 16;
258
259 exp->flags = 0;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700260 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800261 exp->expectfn = NULL;
262 exp->helper = NULL;
263 exp->tuple.src.l3num = family;
264 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800265
266 if (saddr) {
267 memcpy(&exp->tuple.src.u3, saddr, len);
268 if (sizeof(exp->tuple.src.u3) > len)
269 /* address needs to be cleared for nf_ct_tuple_equal */
270 memset((void *)&exp->tuple.src.u3 + len, 0x00,
271 sizeof(exp->tuple.src.u3) - len);
272 memset(&exp->mask.src.u3, 0xFF, len);
273 if (sizeof(exp->mask.src.u3) > len)
274 memset((void *)&exp->mask.src.u3 + len, 0x00,
275 sizeof(exp->mask.src.u3) - len);
276 } else {
277 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
278 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
279 }
280
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800281 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100282 exp->tuple.src.u.all = *src;
283 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800284 } else {
285 exp->tuple.src.u.all = 0;
286 exp->mask.src.u.all = 0;
287 }
288
Patrick McHardyd4156e82007-07-07 22:31:32 -0700289 memcpy(&exp->tuple.dst.u3, daddr, len);
290 if (sizeof(exp->tuple.dst.u3) > len)
291 /* address needs to be cleared for nf_ct_tuple_equal */
292 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
293 sizeof(exp->tuple.dst.u3) - len);
294
Al Viroa34c4582007-07-26 17:33:19 +0100295 exp->tuple.dst.u.all = *dst;
Pablo Neira Ayusof09eca82013-07-09 20:16:39 +0200296
297#ifdef CONFIG_NF_NAT_NEEDED
298 memset(&exp->saved_addr, 0, sizeof(exp->saved_addr));
299 memset(&exp->saved_proto, 0, sizeof(exp->saved_proto));
300#endif
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
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100319static int 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);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100322 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200323 struct net *net = nf_ct_exp_net(exp);
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
Eric Dumazet3bfd45f2010-11-16 10:19:18 +0100326 /* two references : one for hash insert, one for the timer */
327 atomic_add(2, &exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700328
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100329 hlist_add_head(&exp->lnode, &master_help->expectations);
330 master_help->expecting[exp->class]++;
Patrick McHardya71c0852007-07-07 22:33:47 -0700331
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200332 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
333 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100334
Patrick McHardy68236452007-07-07 22:30:49 -0700335 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
336 (unsigned long)exp);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100337 helper = rcu_dereference_protected(master_help->helper,
338 lockdep_is_held(&nf_conntrack_lock));
339 if (helper) {
340 exp->timeout.expires = jiffies +
341 helper->expect_policy[exp->class].timeout * HZ;
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200342 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100343 add_timer(&exp->timeout);
344
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200345 NF_CT_STAT_INC(net, expect_create);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100346 return 0;
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;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100355
Sasha Levinb67bfe02013-02-27 17:06:00 -0800356 hlist_for_each_entry(exp, &master_help->expectations, lnode) {
Patrick McHardy6002f2662008-03-25 20:09:15 -0700357 if (exp->class == new->class)
358 last = exp;
359 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700360
Patrick McHardy6002f2662008-03-25 20:09:15 -0700361 if (last && del_timer(&last->timeout)) {
362 nf_ct_unlink_expect(last);
363 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100364 }
365}
366
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100367static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100368{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700369 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100370 struct nf_conntrack_expect *i;
371 struct nf_conn *master = expect->master;
372 struct nf_conn_help *master_help = nfct_help(master);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100373 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200374 struct net *net = nf_ct_exp_net(expect);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800375 struct hlist_node *next;
Patrick McHardya71c0852007-07-07 22:33:47 -0700376 unsigned int h;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200377 int ret = 1;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100378
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100379 if (!master_help) {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700380 ret = -ESHUTDOWN;
381 goto out;
382 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700383 h = nf_ct_expect_dst_hash(&expect->tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800384 hlist_for_each_entry_safe(i, next, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100385 if (expect_matches(i, expect)) {
Pablo Neira Ayuso2614f862012-08-16 02:25:24 +0200386 if (del_timer(&i->timeout)) {
387 nf_ct_unlink_expect(i);
388 nf_ct_expect_put(i);
389 break;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100390 }
391 } else if (expect_clash(i, expect)) {
392 ret = -EBUSY;
393 goto out;
394 }
395 }
396 /* Will be over limit? */
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100397 helper = rcu_dereference_protected(master_help->helper,
398 lockdep_is_held(&nf_conntrack_lock));
399 if (helper) {
400 p = &helper->expect_policy[expect->class];
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200401 if (p->max_expected &&
402 master_help->expecting[expect->class] >= p->max_expected) {
403 evict_oldest_expect(master, expect);
404 if (master_help->expecting[expect->class]
405 >= p->max_expected) {
406 ret = -EMFILE;
407 goto out;
408 }
Patrick McHardy6002f2662008-03-25 20:09:15 -0700409 }
410 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100411
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200412 if (net->ct.expect_count >= nf_ct_expect_max) {
Joe Perchese87cc472012-05-13 21:56:26 +0000413 net_warn_ratelimited("nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700414 ret = -EMFILE;
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700415 }
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100416out:
417 return ret;
418}
419
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100420int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
Patrick McHardyec464e52013-04-17 06:47:08 +0000421 u32 portid, int report)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100422{
423 int ret;
424
425 spin_lock_bh(&nf_conntrack_lock);
426 ret = __nf_ct_expect_check(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200427 if (ret <= 0)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100428 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200429
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100430 ret = nf_ct_expect_insert(expect);
431 if (ret < 0)
432 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200433 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardyec464e52013-04-17 06:47:08 +0000434 nf_ct_expect_event_report(IPEXP_NEW, expect, portid, report);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200435 return ret;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100436out:
437 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100438 return ret;
439}
440EXPORT_SYMBOL_GPL(nf_ct_expect_related_report);
441
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200442#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700443struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200444 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700445 unsigned int bucket;
446};
447
448static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100449{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200450 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700451 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800452 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100453
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700454 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100455 n = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800456 if (n)
457 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100458 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700459 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100460}
461
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700462static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
463 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100464{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200465 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700466 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100467
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100468 head = rcu_dereference(hlist_next_rcu(head));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700469 while (head == NULL) {
470 if (++st->bucket >= nf_ct_expect_hsize)
471 return NULL;
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100472 head = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700473 }
474 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100475}
476
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700477static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
478{
479 struct hlist_node *head = ct_expect_get_first(seq);
480
481 if (head)
482 while (pos && (head = ct_expect_get_next(seq, head)))
483 pos--;
484 return pos ? NULL : head;
485}
486
487static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800488 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700489{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800490 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700491 return ct_expect_get_idx(seq, *pos);
492}
493
494static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
495{
496 (*pos)++;
497 return ct_expect_get_next(seq, v);
498}
499
500static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800501 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100502{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800503 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100504}
505
506static int exp_seq_show(struct seq_file *s, void *v)
507{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700508 struct nf_conntrack_expect *expect;
Patrick McHardyb87921b2010-02-11 12:22:48 +0100509 struct nf_conntrack_helper *helper;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700510 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700511 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700512
513 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100514
515 if (expect->timeout.function)
516 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
517 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
518 else
519 seq_printf(s, "- ");
520 seq_printf(s, "l3proto = %u proto=%u ",
521 expect->tuple.src.l3num,
522 expect->tuple.dst.protonum);
523 print_tuple(s, &expect->tuple,
524 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100525 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100526 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700527
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700528 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
529 seq_printf(s, "PERMANENT");
530 delim = ",";
531 }
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200532 if (expect->flags & NF_CT_EXPECT_INACTIVE) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700533 seq_printf(s, "%sINACTIVE", delim);
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200534 delim = ",";
535 }
536 if (expect->flags & NF_CT_EXPECT_USERSPACE)
537 seq_printf(s, "%sUSERSPACE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700538
Patrick McHardyb87921b2010-02-11 12:22:48 +0100539 helper = rcu_dereference(nfct_help(expect->master)->helper);
540 if (helper) {
541 seq_printf(s, "%s%s", expect->flags ? " " : "", helper->name);
542 if (helper->expect_policy[expect->class].name)
543 seq_printf(s, "/%s",
544 helper->expect_policy[expect->class].name);
545 }
546
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100547 return seq_putc(s, '\n');
548}
549
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700550static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100551 .start = exp_seq_start,
552 .next = exp_seq_next,
553 .stop = exp_seq_stop,
554 .show = exp_seq_show
555};
556
557static int exp_open(struct inode *inode, struct file *file)
558{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200559 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700560 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100561}
562
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700563static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100564 .owner = THIS_MODULE,
565 .open = exp_open,
566 .read = seq_read,
567 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200568 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100569};
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200570#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700571
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200572static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700573{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200574#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardye9c1b082007-07-07 22:32:53 -0700575 struct proc_dir_entry *proc;
576
Gao fengd4beaa62013-02-18 01:34:54 +0000577 proc = proc_create("nf_conntrack_expect", 0440, net->proc_net,
578 &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700579 if (!proc)
580 return -ENOMEM;
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200581#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700582 return 0;
583}
584
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200585static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700586{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200587#ifdef CONFIG_NF_CONNTRACK_PROCFS
Gao fengece31ff2013-02-18 01:34:56 +0000588 remove_proc_entry("nf_conntrack_expect", net->proc_net);
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200589#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700590}
591
Alexey Dobriyan13ccdfc2010-02-08 11:17:22 -0800592module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0400);
Patrick McHardya71c0852007-07-07 22:33:47 -0700593
Gao feng83b4dbe2013-01-21 22:10:25 +0000594int nf_conntrack_expect_pernet_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700595{
Patrick McHardya71c0852007-07-07 22:33:47 -0700596 int err = -ENOMEM;
597
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200598 net->ct.expect_count = 0;
Patrick McHardyd862a662011-01-14 15:45:56 +0100599 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize, 0);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200600 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700601 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700602
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200603 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700604 if (err < 0)
Gao feng83b4dbe2013-01-21 22:10:25 +0000605 goto err2;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700606
607 return 0;
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700608err2:
Patrick McHardyd862a662011-01-14 15:45:56 +0100609 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700610err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700611 return err;
612}
613
Gao feng83b4dbe2013-01-21 22:10:25 +0000614void nf_conntrack_expect_pernet_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700615{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200616 exp_proc_remove(net);
Patrick McHardyd862a662011-01-14 15:45:56 +0100617 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700618}
Gao feng83b4dbe2013-01-21 22:10:25 +0000619
620int nf_conntrack_expect_init(void)
621{
622 if (!nf_ct_expect_hsize) {
623 nf_ct_expect_hsize = nf_conntrack_htable_size / 256;
624 if (!nf_ct_expect_hsize)
625 nf_ct_expect_hsize = 1;
626 }
627 nf_ct_expect_max = nf_ct_expect_hsize * 4;
628 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
629 sizeof(struct nf_conntrack_expect),
630 0, 0, NULL);
631 if (!nf_ct_expect_cachep)
632 return -ENOMEM;
633 return 0;
634}
635
636void nf_conntrack_expect_fini(void)
637{
638 rcu_barrier(); /* Wait for call_rcu() before destroy */
639 kmem_cache_destroy(nf_ct_expect_cachep);
640}