blob: 980db854c3c8be6420fab1fd192401c131b177f7 [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
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +010069 spin_lock_bh(&nf_conntrack_expect_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010070 nf_ct_unlink_expect(exp);
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +010071 spin_unlock_bh(&nf_conntrack_expect_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);
Daniel Borkmann8fc54f62014-08-23 20:58:54 +020086
87 return reciprocal_scale(hash, nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -070088}
89
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010090struct nf_conntrack_expect *
Daniel Borkmann308ac912015-08-08 21:40:01 +020091__nf_ct_expect_find(struct net *net,
92 const struct nf_conntrack_zone *zone,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010093 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010094{
95 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070096 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);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800102 hlist_for_each_entry_rcu(i, &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) &&
Daniel Borkmann308ac912015-08-08 21:40:01 +0200104 nf_ct_zone_equal(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 *
Daniel Borkmann308ac912015-08-08 21:40:01 +0200113nf_ct_expect_find_get(struct net *net,
114 const struct nf_conntrack_zone *zone,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100115 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100116{
117 struct nf_conntrack_expect *i;
118
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800119 rcu_read_lock();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100120 i = __nf_ct_expect_find(net, zone, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800121 if (i && !atomic_inc_not_zero(&i->use))
122 i = NULL;
123 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100124
125 return i;
126}
Patrick McHardy68236452007-07-07 22:30:49 -0700127EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100128
129/* If an expectation for this connection is found, it gets delete from
130 * global list then returned. */
131struct nf_conntrack_expect *
Daniel Borkmann308ac912015-08-08 21:40:01 +0200132nf_ct_find_expectation(struct net *net,
133 const struct nf_conntrack_zone *zone,
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100134 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;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700137 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100138
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200139 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700140 return NULL;
141
142 h = nf_ct_expect_dst_hash(tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800143 hlist_for_each_entry(i, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700144 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100145 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
Daniel Borkmann308ac912015-08-08 21:40:01 +0200146 nf_ct_zone_equal(i->master, zone)) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700147 exp = i;
148 break;
149 }
150 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800151 if (!exp)
152 return NULL;
153
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100154 /* If master is not in hash table yet (ie. packet hasn't left
155 this machine yet), how can other end know about expected?
156 Hence these are not the droids you are looking for (if
157 master ct never got confirmed, we'd hold a reference to it
158 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800159 if (!nf_ct_is_confirmed(exp->master))
160 return NULL;
161
Jesper Dangaard Brouere1b207d2014-03-03 14:45:39 +0100162 /* Avoid race with other CPUs, that for exp->master ct, is
163 * about to invoke ->destroy(), or nf_ct_delete() via timeout
164 * or early_drop().
165 *
166 * The atomic_inc_not_zero() check tells: If that fails, we
167 * know that the ct is being destroyed. If it succeeds, we
168 * can be sure the ct cannot disappear underneath.
169 */
170 if (unlikely(nf_ct_is_dying(exp->master) ||
171 !atomic_inc_not_zero(&exp->master->ct_general.use)))
172 return NULL;
173
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800174 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
175 atomic_inc(&exp->use);
176 return exp;
177 } else if (del_timer(&exp->timeout)) {
178 nf_ct_unlink_expect(exp);
179 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100180 }
Jesper Dangaard Brouere1b207d2014-03-03 14:45:39 +0100181 /* Undo exp->master refcnt increase, if del_timer() failed */
182 nf_ct_put(exp->master);
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800183
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100184 return NULL;
185}
186
187/* delete all expectations for this conntrack */
188void nf_ct_remove_expectations(struct nf_conn *ct)
189{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100190 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700191 struct nf_conntrack_expect *exp;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800192 struct hlist_node *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100193
194 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700195 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100196 return;
197
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100198 spin_lock_bh(&nf_conntrack_expect_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800199 hlist_for_each_entry_safe(exp, next, &help->expectations, lnode) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700200 if (del_timer(&exp->timeout)) {
201 nf_ct_unlink_expect(exp);
202 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800203 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100204 }
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100205 spin_unlock_bh(&nf_conntrack_expect_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100206}
Patrick McHardy13b18332006-12-02 22:11:25 -0800207EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100208
209/* Would two expected things clash? */
210static inline int expect_clash(const struct nf_conntrack_expect *a,
211 const struct nf_conntrack_expect *b)
212{
213 /* Part covered by intersection of masks must be unequal,
214 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700215 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100216 int count;
217
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100218 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100219
220 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
221 intersect_mask.src.u3.all[count] =
222 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
223 }
224
Joe Stringer4b318142015-07-21 21:37:31 -0700225 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask) &&
Daniel Borkmann308ac912015-08-08 21:40:01 +0200226 nf_ct_zone_equal(a->master, nf_ct_zone(b->master));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100227}
228
229static inline int expect_matches(const struct nf_conntrack_expect *a,
230 const struct nf_conntrack_expect *b)
231{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800232 return a->master == b->master && a->class == b->class &&
Daniel Borkmann308ac912015-08-08 21:40:01 +0200233 nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
234 nf_ct_tuple_mask_equal(&a->mask, &b->mask) &&
235 nf_ct_zone_equal(a->master, nf_ct_zone(b->master));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100236}
237
238/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700239void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100240{
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100241 spin_lock_bh(&nf_conntrack_expect_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700242 if (del_timer(&exp->timeout)) {
243 nf_ct_unlink_expect(exp);
244 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100245 }
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100246 spin_unlock_bh(&nf_conntrack_expect_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100247}
Patrick McHardy68236452007-07-07 22:30:49 -0700248EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100249
250/* We don't increase the master conntrack refcount for non-fulfilled
251 * conntracks. During the conntrack destruction, the expectations are
252 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700253struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100254{
255 struct nf_conntrack_expect *new;
256
Patrick McHardy68236452007-07-07 22:30:49 -0700257 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100258 if (!new)
259 return NULL;
260
261 new->master = me;
262 atomic_set(&new->use, 1);
263 return new;
264}
Patrick McHardy68236452007-07-07 22:30:49 -0700265EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100266
Patrick McHardy6002f2662008-03-25 20:09:15 -0700267void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200268 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700269 const union nf_inet_addr *saddr,
270 const union nf_inet_addr *daddr,
271 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800272{
273 int len;
274
275 if (family == AF_INET)
276 len = 4;
277 else
278 len = 16;
279
280 exp->flags = 0;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700281 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800282 exp->expectfn = NULL;
283 exp->helper = NULL;
284 exp->tuple.src.l3num = family;
285 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800286
287 if (saddr) {
288 memcpy(&exp->tuple.src.u3, saddr, len);
289 if (sizeof(exp->tuple.src.u3) > len)
290 /* address needs to be cleared for nf_ct_tuple_equal */
291 memset((void *)&exp->tuple.src.u3 + len, 0x00,
292 sizeof(exp->tuple.src.u3) - len);
293 memset(&exp->mask.src.u3, 0xFF, len);
294 if (sizeof(exp->mask.src.u3) > len)
295 memset((void *)&exp->mask.src.u3 + len, 0x00,
296 sizeof(exp->mask.src.u3) - len);
297 } else {
298 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
299 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
300 }
301
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800302 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100303 exp->tuple.src.u.all = *src;
304 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800305 } else {
306 exp->tuple.src.u.all = 0;
307 exp->mask.src.u.all = 0;
308 }
309
Patrick McHardyd4156e82007-07-07 22:31:32 -0700310 memcpy(&exp->tuple.dst.u3, daddr, len);
311 if (sizeof(exp->tuple.dst.u3) > len)
312 /* address needs to be cleared for nf_ct_tuple_equal */
313 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
314 sizeof(exp->tuple.dst.u3) - len);
315
Al Viroa34c4582007-07-26 17:33:19 +0100316 exp->tuple.dst.u.all = *dst;
Pablo Neira Ayusof09eca82013-07-09 20:16:39 +0200317
318#ifdef CONFIG_NF_NAT_NEEDED
319 memset(&exp->saved_addr, 0, sizeof(exp->saved_addr));
320 memset(&exp->saved_proto, 0, sizeof(exp->saved_proto));
321#endif
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800322}
Patrick McHardy68236452007-07-07 22:30:49 -0700323EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800324
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800325static void nf_ct_expect_free_rcu(struct rcu_head *head)
326{
327 struct nf_conntrack_expect *exp;
328
329 exp = container_of(head, struct nf_conntrack_expect, rcu);
330 kmem_cache_free(nf_ct_expect_cachep, exp);
331}
332
Patrick McHardy68236452007-07-07 22:30:49 -0700333void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100334{
335 if (atomic_dec_and_test(&exp->use))
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800336 call_rcu(&exp->rcu, nf_ct_expect_free_rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100337}
Patrick McHardy68236452007-07-07 22:30:49 -0700338EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100339
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100340static int nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100341{
342 struct nf_conn_help *master_help = nfct_help(exp->master);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100343 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200344 struct net *net = nf_ct_exp_net(exp);
Patrick McHardya71c0852007-07-07 22:33:47 -0700345 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100346
Eric Dumazet3bfd45f2010-11-16 10:19:18 +0100347 /* two references : one for hash insert, one for the timer */
348 atomic_add(2, &exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700349
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100350 hlist_add_head(&exp->lnode, &master_help->expectations);
351 master_help->expecting[exp->class]++;
Patrick McHardya71c0852007-07-07 22:33:47 -0700352
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200353 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
354 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100355
Patrick McHardy68236452007-07-07 22:30:49 -0700356 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
357 (unsigned long)exp);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100358 helper = rcu_dereference_protected(master_help->helper,
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100359 lockdep_is_held(&nf_conntrack_expect_lock));
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100360 if (helper) {
361 exp->timeout.expires = jiffies +
362 helper->expect_policy[exp->class].timeout * HZ;
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200363 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100364 add_timer(&exp->timeout);
365
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200366 NF_CT_STAT_INC(net, expect_create);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100367 return 0;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100368}
369
370/* Race with expectations being used means we could have none to find; OK. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700371static void evict_oldest_expect(struct nf_conn *master,
372 struct nf_conntrack_expect *new)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100373{
Patrick McHardyb5605802007-07-07 22:35:56 -0700374 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700375 struct nf_conntrack_expect *exp, *last = NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100376
Sasha Levinb67bfe02013-02-27 17:06:00 -0800377 hlist_for_each_entry(exp, &master_help->expectations, lnode) {
Patrick McHardy6002f2662008-03-25 20:09:15 -0700378 if (exp->class == new->class)
379 last = exp;
380 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700381
Patrick McHardy6002f2662008-03-25 20:09:15 -0700382 if (last && del_timer(&last->timeout)) {
383 nf_ct_unlink_expect(last);
384 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100385 }
386}
387
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100388static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100389{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700390 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100391 struct nf_conntrack_expect *i;
392 struct nf_conn *master = expect->master;
393 struct nf_conn_help *master_help = nfct_help(master);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100394 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200395 struct net *net = nf_ct_exp_net(expect);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800396 struct hlist_node *next;
Patrick McHardya71c0852007-07-07 22:33:47 -0700397 unsigned int h;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200398 int ret = 1;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100399
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100400 if (!master_help) {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700401 ret = -ESHUTDOWN;
402 goto out;
403 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700404 h = nf_ct_expect_dst_hash(&expect->tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800405 hlist_for_each_entry_safe(i, next, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100406 if (expect_matches(i, expect)) {
Pablo Neira Ayuso2614f862012-08-16 02:25:24 +0200407 if (del_timer(&i->timeout)) {
408 nf_ct_unlink_expect(i);
409 nf_ct_expect_put(i);
410 break;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100411 }
412 } else if (expect_clash(i, expect)) {
413 ret = -EBUSY;
414 goto out;
415 }
416 }
417 /* Will be over limit? */
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100418 helper = rcu_dereference_protected(master_help->helper,
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100419 lockdep_is_held(&nf_conntrack_expect_lock));
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100420 if (helper) {
421 p = &helper->expect_policy[expect->class];
Pablo Neira Ayusobc01befd2010-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 McHardy6002f2662008-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) {
Joe Perchese87cc472012-05-13 21:56:26 +0000434 net_warn_ratelimited("nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700435 ret = -EMFILE;
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700436 }
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100437out:
438 return ret;
439}
440
Jesper Dangaard Brouerb476b722014-03-03 14:44:54 +0100441int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
Patrick McHardyec464e52013-04-17 06:47:08 +0000442 u32 portid, int report)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100443{
444 int ret;
445
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100446 spin_lock_bh(&nf_conntrack_expect_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100447 ret = __nf_ct_expect_check(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200448 if (ret <= 0)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100449 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200450
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100451 ret = nf_ct_expect_insert(expect);
452 if (ret < 0)
453 goto out;
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100454 spin_unlock_bh(&nf_conntrack_expect_lock);
Patrick McHardyec464e52013-04-17 06:47:08 +0000455 nf_ct_expect_event_report(IPEXP_NEW, expect, portid, report);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200456 return ret;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100457out:
Jesper Dangaard Brouerca7433d2014-03-03 14:46:01 +0100458 spin_unlock_bh(&nf_conntrack_expect_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100459 return ret;
460}
461EXPORT_SYMBOL_GPL(nf_ct_expect_related_report);
462
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200463#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700464struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200465 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700466 unsigned int bucket;
467};
468
469static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100470{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200471 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700472 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800473 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100474
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700475 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100476 n = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800477 if (n)
478 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100479 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700480 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100481}
482
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700483static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
484 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100485{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200486 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700487 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100488
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100489 head = rcu_dereference(hlist_next_rcu(head));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700490 while (head == NULL) {
491 if (++st->bucket >= nf_ct_expect_hsize)
492 return NULL;
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100493 head = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700494 }
495 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100496}
497
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700498static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
499{
500 struct hlist_node *head = ct_expect_get_first(seq);
501
502 if (head)
503 while (pos && (head = ct_expect_get_next(seq, head)))
504 pos--;
505 return pos ? NULL : head;
506}
507
508static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800509 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700510{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800511 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700512 return ct_expect_get_idx(seq, *pos);
513}
514
515static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
516{
517 (*pos)++;
518 return ct_expect_get_next(seq, v);
519}
520
521static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800522 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100523{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800524 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100525}
526
527static int exp_seq_show(struct seq_file *s, void *v)
528{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700529 struct nf_conntrack_expect *expect;
Patrick McHardyb87921b2010-02-11 12:22:48 +0100530 struct nf_conntrack_helper *helper;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700531 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700532 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700533
534 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100535
536 if (expect->timeout.function)
537 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
538 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
539 else
540 seq_printf(s, "- ");
541 seq_printf(s, "l3proto = %u proto=%u ",
542 expect->tuple.src.l3num,
543 expect->tuple.dst.protonum);
544 print_tuple(s, &expect->tuple,
545 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100546 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100547 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700548
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700549 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
550 seq_printf(s, "PERMANENT");
551 delim = ",";
552 }
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200553 if (expect->flags & NF_CT_EXPECT_INACTIVE) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700554 seq_printf(s, "%sINACTIVE", delim);
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200555 delim = ",";
556 }
557 if (expect->flags & NF_CT_EXPECT_USERSPACE)
558 seq_printf(s, "%sUSERSPACE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700559
Patrick McHardyb87921b2010-02-11 12:22:48 +0100560 helper = rcu_dereference(nfct_help(expect->master)->helper);
561 if (helper) {
562 seq_printf(s, "%s%s", expect->flags ? " " : "", helper->name);
563 if (helper->expect_policy[expect->class].name)
564 seq_printf(s, "/%s",
565 helper->expect_policy[expect->class].name);
566 }
567
Joe Perches1ca9e412015-03-16 11:25:17 -0700568 seq_putc(s, '\n');
569
570 return 0;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100571}
572
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700573static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100574 .start = exp_seq_start,
575 .next = exp_seq_next,
576 .stop = exp_seq_stop,
577 .show = exp_seq_show
578};
579
580static int exp_open(struct inode *inode, struct file *file)
581{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200582 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700583 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100584}
585
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700586static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100587 .owner = THIS_MODULE,
588 .open = exp_open,
589 .read = seq_read,
590 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200591 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100592};
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200593#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700594
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200595static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700596{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200597#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardye9c1b082007-07-07 22:32:53 -0700598 struct proc_dir_entry *proc;
599
Gao fengd4beaa62013-02-18 01:34:54 +0000600 proc = proc_create("nf_conntrack_expect", 0440, net->proc_net,
601 &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700602 if (!proc)
603 return -ENOMEM;
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200604#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700605 return 0;
606}
607
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200608static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700609{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200610#ifdef CONFIG_NF_CONNTRACK_PROCFS
Gao fengece31ff2013-02-18 01:34:56 +0000611 remove_proc_entry("nf_conntrack_expect", net->proc_net);
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200612#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700613}
614
Alexey Dobriyan13ccdfc2010-02-08 11:17:22 -0800615module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0400);
Patrick McHardya71c0852007-07-07 22:33:47 -0700616
Gao feng83b4dbe2013-01-21 22:10:25 +0000617int nf_conntrack_expect_pernet_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700618{
Patrick McHardya71c0852007-07-07 22:33:47 -0700619 int err = -ENOMEM;
620
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200621 net->ct.expect_count = 0;
Patrick McHardyd862a662011-01-14 15:45:56 +0100622 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize, 0);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200623 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700624 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700625
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200626 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700627 if (err < 0)
Gao feng83b4dbe2013-01-21 22:10:25 +0000628 goto err2;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700629
630 return 0;
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700631err2:
Patrick McHardyd862a662011-01-14 15:45:56 +0100632 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700633err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700634 return err;
635}
636
Gao feng83b4dbe2013-01-21 22:10:25 +0000637void nf_conntrack_expect_pernet_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700638{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200639 exp_proc_remove(net);
Patrick McHardyd862a662011-01-14 15:45:56 +0100640 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700641}
Gao feng83b4dbe2013-01-21 22:10:25 +0000642
643int nf_conntrack_expect_init(void)
644{
645 if (!nf_ct_expect_hsize) {
646 nf_ct_expect_hsize = nf_conntrack_htable_size / 256;
647 if (!nf_ct_expect_hsize)
648 nf_ct_expect_hsize = 1;
649 }
650 nf_ct_expect_max = nf_ct_expect_hsize * 4;
651 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
652 sizeof(struct nf_conntrack_expect),
653 0, 0, NULL);
654 if (!nf_ct_expect_cachep)
655 return -ENOMEM;
656 return 0;
657}
658
659void nf_conntrack_expect_fini(void)
660{
661 rcu_barrier(); /* Wait for call_rcu() before destroy */
662 kmem_cache_destroy(nf_ct_expect_cachep);
663}