blob: 8c10e3db3d9bfab6de1adec992dd90483122c3d6 [file] [log] [blame]
Martin Josefsson77ab9cf2006-11-29 02:34:58 +01001/* Expectation handling for nf_conntrack. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/types.h>
13#include <linux/netfilter.h>
14#include <linux/skbuff.h>
15#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
17#include <linux/stddef.h>
18#include <linux/slab.h>
19#include <linux/err.h>
20#include <linux/percpu.h>
21#include <linux/kernel.h>
Patrick McHardya71c0852007-07-07 22:33:47 -070022#include <linux/jhash.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040023#include <linux/moduleparam.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020025#include <net/net_namespace.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010026
27#include <net/netfilter/nf_conntrack.h>
28#include <net/netfilter/nf_conntrack_core.h>
29#include <net/netfilter/nf_conntrack_expect.h>
30#include <net/netfilter/nf_conntrack_helper.h>
31#include <net/netfilter/nf_conntrack_tuple.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010032#include <net/netfilter/nf_conntrack_zones.h>
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010033
Patrick McHardya71c0852007-07-07 22:33:47 -070034unsigned int nf_ct_expect_hsize __read_mostly;
35EXPORT_SYMBOL_GPL(nf_ct_expect_hsize);
36
Patrick McHardyf264a7d2007-07-07 22:36:24 -070037unsigned int nf_ct_expect_max __read_mostly;
Patrick McHardya71c0852007-07-07 22:33:47 -070038
Patrick McHardye9c1b082007-07-07 22:32:53 -070039static struct kmem_cache *nf_ct_expect_cachep __read_mostly;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010040
41/* nf_conntrack_expect helper functions */
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020042void nf_ct_unlink_expect_report(struct nf_conntrack_expect *exp,
43 u32 pid, int report)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010044{
45 struct nf_conn_help *master_help = nfct_help(exp->master);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020046 struct net *net = nf_ct_exp_net(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010047
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +010048 NF_CT_ASSERT(master_help);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010049 NF_CT_ASSERT(!timer_pending(&exp->timeout));
50
Patrick McHardy7d0742d2008-01-31 04:38:19 -080051 hlist_del_rcu(&exp->hnode);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020052 net->ct.expect_count--;
Patrick McHardya71c0852007-07-07 22:33:47 -070053
Patrick McHardyb5605802007-07-07 22:35:56 -070054 hlist_del(&exp->lnode);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +010055 master_help->expecting[exp->class]--;
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +020056
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020057 nf_ct_expect_event_report(IPEXP_DESTROY, exp, pid, report);
Patrick McHardy68236452007-07-07 22:30:49 -070058 nf_ct_expect_put(exp);
Patrick McHardyb5605802007-07-07 22:35:56 -070059
Alexey Dobriyan0d55af82008-10-08 11:35:07 +020060 NF_CT_STAT_INC(net, expect_delete);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010061}
Pablo Neira Ayusoebbf41d2010-10-19 10:19:06 +020062EXPORT_SYMBOL_GPL(nf_ct_unlink_expect_report);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010063
Patrick McHardy68236452007-07-07 22:30:49 -070064static void nf_ct_expectation_timed_out(unsigned long ul_expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010065{
66 struct nf_conntrack_expect *exp = (void *)ul_expect;
67
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080068 spin_lock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010069 nf_ct_unlink_expect(exp);
Patrick McHardyf8ba1af2008-01-31 04:38:58 -080070 spin_unlock_bh(&nf_conntrack_lock);
Patrick McHardy68236452007-07-07 22:30:49 -070071 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010072}
73
Patrick McHardya71c0852007-07-07 22:33:47 -070074static unsigned int nf_ct_expect_dst_hash(const struct nf_conntrack_tuple *tuple)
75{
Patrick McHardy34498822007-12-17 22:45:52 -080076 unsigned int hash;
77
Changli Gaof682cef2011-01-05 04:23:23 +000078 if (unlikely(!nf_conntrack_hash_rnd)) {
79 init_nf_conntrack_hash_rnd();
Patrick McHardya71c0852007-07-07 22:33:47 -070080 }
81
Patrick McHardy34498822007-12-17 22:45:52 -080082 hash = jhash2(tuple->dst.u3.all, ARRAY_SIZE(tuple->dst.u3.all),
Patrick McHardya71c0852007-07-07 22:33:47 -070083 (((tuple->dst.protonum ^ tuple->src.l3num) << 16) |
Changli Gaof682cef2011-01-05 04:23:23 +000084 (__force __u16)tuple->dst.u.all) ^ nf_conntrack_hash_rnd);
Patrick McHardy34498822007-12-17 22:45:52 -080085 return ((u64)hash * nf_ct_expect_hsize) >> 32;
Patrick McHardya71c0852007-07-07 22:33:47 -070086}
87
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010088struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010089__nf_ct_expect_find(struct net *net, u16 zone,
90 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010091{
92 struct nf_conntrack_expect *i;
Patrick McHardya71c0852007-07-07 22:33:47 -070093 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +010094
Alexey Dobriyan9b03f382008-10-08 11:35:03 +020095 if (!net->ct.expect_count)
Patrick McHardya71c0852007-07-07 22:33:47 -070096 return NULL;
97
98 h = nf_ct_expect_dst_hash(tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -080099 hlist_for_each_entry_rcu(i, &net->ct.expect_hash[h], hnode) {
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100100 if (nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
101 nf_ct_zone(i->master) == zone)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100102 return i;
103 }
104 return NULL;
105}
Patrick McHardy68236452007-07-07 22:30:49 -0700106EXPORT_SYMBOL_GPL(__nf_ct_expect_find);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100107
108/* Just find a expectation corresponding to a tuple. */
109struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100110nf_ct_expect_find_get(struct net *net, u16 zone,
111 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100112{
113 struct nf_conntrack_expect *i;
114
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800115 rcu_read_lock();
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100116 i = __nf_ct_expect_find(net, zone, tuple);
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800117 if (i && !atomic_inc_not_zero(&i->use))
118 i = NULL;
119 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100120
121 return i;
122}
Patrick McHardy68236452007-07-07 22:30:49 -0700123EXPORT_SYMBOL_GPL(nf_ct_expect_find_get);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100124
125/* If an expectation for this connection is found, it gets delete from
126 * global list then returned. */
127struct nf_conntrack_expect *
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100128nf_ct_find_expectation(struct net *net, u16 zone,
129 const struct nf_conntrack_tuple *tuple)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100130{
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700131 struct nf_conntrack_expect *i, *exp = NULL;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700132 unsigned int h;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100133
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200134 if (!net->ct.expect_count)
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700135 return NULL;
136
137 h = nf_ct_expect_dst_hash(tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800138 hlist_for_each_entry(i, &net->ct.expect_hash[h], hnode) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700139 if (!(i->flags & NF_CT_EXPECT_INACTIVE) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100140 nf_ct_tuple_mask_cmp(tuple, &i->tuple, &i->mask) &&
141 nf_ct_zone(i->master) == zone) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700142 exp = i;
143 break;
144 }
145 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800146 if (!exp)
147 return NULL;
148
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100149 /* If master is not in hash table yet (ie. packet hasn't left
150 this machine yet), how can other end know about expected?
151 Hence these are not the droids you are looking for (if
152 master ct never got confirmed, we'd hold a reference to it
153 and weird things would happen to future packets). */
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800154 if (!nf_ct_is_confirmed(exp->master))
155 return NULL;
156
157 if (exp->flags & NF_CT_EXPECT_PERMANENT) {
158 atomic_inc(&exp->use);
159 return exp;
160 } else if (del_timer(&exp->timeout)) {
161 nf_ct_unlink_expect(exp);
162 return exp;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100163 }
Yasuyuki Kozakaiece00642006-12-05 13:44:57 -0800164
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100165 return NULL;
166}
167
168/* delete all expectations for this conntrack */
169void nf_ct_remove_expectations(struct nf_conn *ct)
170{
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100171 struct nf_conn_help *help = nfct_help(ct);
Patrick McHardyb5605802007-07-07 22:35:56 -0700172 struct nf_conntrack_expect *exp;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800173 struct hlist_node *next;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100174
175 /* Optimization: most connection never expect any others. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700176 if (!help)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100177 return;
178
Sasha Levinb67bfe02013-02-27 17:06:00 -0800179 hlist_for_each_entry_safe(exp, next, &help->expectations, lnode) {
Patrick McHardyb5605802007-07-07 22:35:56 -0700180 if (del_timer(&exp->timeout)) {
181 nf_ct_unlink_expect(exp);
182 nf_ct_expect_put(exp);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800183 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100184 }
185}
Patrick McHardy13b18332006-12-02 22:11:25 -0800186EXPORT_SYMBOL_GPL(nf_ct_remove_expectations);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100187
188/* Would two expected things clash? */
189static inline int expect_clash(const struct nf_conntrack_expect *a,
190 const struct nf_conntrack_expect *b)
191{
192 /* Part covered by intersection of masks must be unequal,
193 otherwise they clash */
Patrick McHardyd4156e82007-07-07 22:31:32 -0700194 struct nf_conntrack_tuple_mask intersect_mask;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100195 int count;
196
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100197 intersect_mask.src.u.all = a->mask.src.u.all & b->mask.src.u.all;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100198
199 for (count = 0; count < NF_CT_TUPLE_L3SIZE; count++){
200 intersect_mask.src.u3.all[count] =
201 a->mask.src.u3.all[count] & b->mask.src.u3.all[count];
202 }
203
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100204 return nf_ct_tuple_mask_cmp(&a->tuple, &b->tuple, &intersect_mask);
205}
206
207static inline int expect_matches(const struct nf_conntrack_expect *a,
208 const struct nf_conntrack_expect *b)
209{
Joe Perchesf64f9e72009-11-29 16:55:45 -0800210 return a->master == b->master && a->class == b->class &&
211 nf_ct_tuple_equal(&a->tuple, &b->tuple) &&
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +0100212 nf_ct_tuple_mask_equal(&a->mask, &b->mask) &&
213 nf_ct_zone(a->master) == nf_ct_zone(b->master);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100214}
215
216/* Generally a bad idea to call this: could have matched already. */
Patrick McHardy68236452007-07-07 22:30:49 -0700217void nf_ct_unexpect_related(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100218{
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800219 spin_lock_bh(&nf_conntrack_lock);
Patrick McHardy4e1d4e62007-07-07 22:32:03 -0700220 if (del_timer(&exp->timeout)) {
221 nf_ct_unlink_expect(exp);
222 nf_ct_expect_put(exp);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100223 }
Patrick McHardyf8ba1af2008-01-31 04:38:58 -0800224 spin_unlock_bh(&nf_conntrack_lock);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100225}
Patrick McHardy68236452007-07-07 22:30:49 -0700226EXPORT_SYMBOL_GPL(nf_ct_unexpect_related);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100227
228/* We don't increase the master conntrack refcount for non-fulfilled
229 * conntracks. During the conntrack destruction, the expectations are
230 * always killed before the conntrack itself */
Patrick McHardy68236452007-07-07 22:30:49 -0700231struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100232{
233 struct nf_conntrack_expect *new;
234
Patrick McHardy68236452007-07-07 22:30:49 -0700235 new = kmem_cache_alloc(nf_ct_expect_cachep, GFP_ATOMIC);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100236 if (!new)
237 return NULL;
238
239 new->master = me;
240 atomic_set(&new->use, 1);
241 return new;
242}
Patrick McHardy68236452007-07-07 22:30:49 -0700243EXPORT_SYMBOL_GPL(nf_ct_expect_alloc);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100244
Patrick McHardy6002f2662008-03-25 20:09:15 -0700245void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200246 u_int8_t family,
Patrick McHardy1d9d7522008-03-25 20:07:58 -0700247 const union nf_inet_addr *saddr,
248 const union nf_inet_addr *daddr,
249 u_int8_t proto, const __be16 *src, const __be16 *dst)
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800250{
251 int len;
252
253 if (family == AF_INET)
254 len = 4;
255 else
256 len = 16;
257
258 exp->flags = 0;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700259 exp->class = class;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800260 exp->expectfn = NULL;
261 exp->helper = NULL;
262 exp->tuple.src.l3num = family;
263 exp->tuple.dst.protonum = proto;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800264
265 if (saddr) {
266 memcpy(&exp->tuple.src.u3, saddr, len);
267 if (sizeof(exp->tuple.src.u3) > len)
268 /* address needs to be cleared for nf_ct_tuple_equal */
269 memset((void *)&exp->tuple.src.u3 + len, 0x00,
270 sizeof(exp->tuple.src.u3) - len);
271 memset(&exp->mask.src.u3, 0xFF, len);
272 if (sizeof(exp->mask.src.u3) > len)
273 memset((void *)&exp->mask.src.u3 + len, 0x00,
274 sizeof(exp->mask.src.u3) - len);
275 } else {
276 memset(&exp->tuple.src.u3, 0x00, sizeof(exp->tuple.src.u3));
277 memset(&exp->mask.src.u3, 0x00, sizeof(exp->mask.src.u3));
278 }
279
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800280 if (src) {
Al Viroa34c4582007-07-26 17:33:19 +0100281 exp->tuple.src.u.all = *src;
282 exp->mask.src.u.all = htons(0xFFFF);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800283 } else {
284 exp->tuple.src.u.all = 0;
285 exp->mask.src.u.all = 0;
286 }
287
Patrick McHardyd4156e82007-07-07 22:31:32 -0700288 memcpy(&exp->tuple.dst.u3, daddr, len);
289 if (sizeof(exp->tuple.dst.u3) > len)
290 /* address needs to be cleared for nf_ct_tuple_equal */
291 memset((void *)&exp->tuple.dst.u3 + len, 0x00,
292 sizeof(exp->tuple.dst.u3) - len);
293
Al Viroa34c4582007-07-26 17:33:19 +0100294 exp->tuple.dst.u.all = *dst;
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800295}
Patrick McHardy68236452007-07-07 22:30:49 -0700296EXPORT_SYMBOL_GPL(nf_ct_expect_init);
Patrick McHardyd6a9b652006-12-02 22:08:01 -0800297
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800298static void nf_ct_expect_free_rcu(struct rcu_head *head)
299{
300 struct nf_conntrack_expect *exp;
301
302 exp = container_of(head, struct nf_conntrack_expect, rcu);
303 kmem_cache_free(nf_ct_expect_cachep, exp);
304}
305
Patrick McHardy68236452007-07-07 22:30:49 -0700306void nf_ct_expect_put(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100307{
308 if (atomic_dec_and_test(&exp->use))
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800309 call_rcu(&exp->rcu, nf_ct_expect_free_rcu);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100310}
Patrick McHardy68236452007-07-07 22:30:49 -0700311EXPORT_SYMBOL_GPL(nf_ct_expect_put);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100312
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100313static int nf_ct_expect_insert(struct nf_conntrack_expect *exp)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100314{
315 struct nf_conn_help *master_help = nfct_help(exp->master);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100316 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200317 struct net *net = nf_ct_exp_net(exp);
Patrick McHardya71c0852007-07-07 22:33:47 -0700318 unsigned int h = nf_ct_expect_dst_hash(&exp->tuple);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100319
Eric Dumazet3bfd45f2010-11-16 10:19:18 +0100320 /* two references : one for hash insert, one for the timer */
321 atomic_add(2, &exp->use);
Patrick McHardyb5605802007-07-07 22:35:56 -0700322
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100323 hlist_add_head(&exp->lnode, &master_help->expectations);
324 master_help->expecting[exp->class]++;
Patrick McHardya71c0852007-07-07 22:33:47 -0700325
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200326 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
327 net->ct.expect_count++;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100328
Patrick McHardy68236452007-07-07 22:30:49 -0700329 setup_timer(&exp->timeout, nf_ct_expectation_timed_out,
330 (unsigned long)exp);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100331 helper = rcu_dereference_protected(master_help->helper,
332 lockdep_is_held(&nf_conntrack_lock));
333 if (helper) {
334 exp->timeout.expires = jiffies +
335 helper->expect_policy[exp->class].timeout * HZ;
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200336 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100337 add_timer(&exp->timeout);
338
Alexey Dobriyan0d55af82008-10-08 11:35:07 +0200339 NF_CT_STAT_INC(net, expect_create);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100340 return 0;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100341}
342
343/* Race with expectations being used means we could have none to find; OK. */
Patrick McHardy6002f2662008-03-25 20:09:15 -0700344static void evict_oldest_expect(struct nf_conn *master,
345 struct nf_conntrack_expect *new)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100346{
Patrick McHardyb5605802007-07-07 22:35:56 -0700347 struct nf_conn_help *master_help = nfct_help(master);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700348 struct nf_conntrack_expect *exp, *last = NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100349
Sasha Levinb67bfe02013-02-27 17:06:00 -0800350 hlist_for_each_entry(exp, &master_help->expectations, lnode) {
Patrick McHardy6002f2662008-03-25 20:09:15 -0700351 if (exp->class == new->class)
352 last = exp;
353 }
Patrick McHardyb5605802007-07-07 22:35:56 -0700354
Patrick McHardy6002f2662008-03-25 20:09:15 -0700355 if (last && del_timer(&last->timeout)) {
356 nf_ct_unlink_expect(last);
357 nf_ct_expect_put(last);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100358 }
359}
360
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100361static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100362{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700363 const struct nf_conntrack_expect_policy *p;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100364 struct nf_conntrack_expect *i;
365 struct nf_conn *master = expect->master;
366 struct nf_conn_help *master_help = nfct_help(master);
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100367 struct nf_conntrack_helper *helper;
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200368 struct net *net = nf_ct_exp_net(expect);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800369 struct hlist_node *next;
Patrick McHardya71c0852007-07-07 22:33:47 -0700370 unsigned int h;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200371 int ret = 1;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100372
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100373 if (!master_help) {
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700374 ret = -ESHUTDOWN;
375 goto out;
376 }
Patrick McHardya71c0852007-07-07 22:33:47 -0700377 h = nf_ct_expect_dst_hash(&expect->tuple);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800378 hlist_for_each_entry_safe(i, next, &net->ct.expect_hash[h], hnode) {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100379 if (expect_matches(i, expect)) {
Pablo Neira Ayuso2614f862012-08-16 02:25:24 +0200380 if (del_timer(&i->timeout)) {
381 nf_ct_unlink_expect(i);
382 nf_ct_expect_put(i);
383 break;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100384 }
385 } else if (expect_clash(i, expect)) {
386 ret = -EBUSY;
387 goto out;
388 }
389 }
390 /* Will be over limit? */
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100391 helper = rcu_dereference_protected(master_help->helper,
392 lockdep_is_held(&nf_conntrack_lock));
393 if (helper) {
394 p = &helper->expect_policy[expect->class];
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200395 if (p->max_expected &&
396 master_help->expecting[expect->class] >= p->max_expected) {
397 evict_oldest_expect(master, expect);
398 if (master_help->expecting[expect->class]
399 >= p->max_expected) {
400 ret = -EMFILE;
401 goto out;
402 }
Patrick McHardy6002f2662008-03-25 20:09:15 -0700403 }
404 }
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100405
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200406 if (net->ct.expect_count >= nf_ct_expect_max) {
Joe Perchese87cc472012-05-13 21:56:26 +0000407 net_warn_ratelimited("nf_conntrack: expectation table full\n");
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700408 ret = -EMFILE;
Patrick McHardyf264a7d2007-07-07 22:36:24 -0700409 }
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100410out:
411 return ret;
412}
413
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100414int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
415 u32 pid, int report)
416{
417 int ret;
418
419 spin_lock_bh(&nf_conntrack_lock);
420 ret = __nf_ct_expect_check(expect);
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200421 if (ret <= 0)
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100422 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200423
Pablo Neira Ayuso3d058d72011-12-18 01:55:54 +0100424 ret = nf_ct_expect_insert(expect);
425 if (ret < 0)
426 goto out;
Pablo Neira Ayuso83731672009-04-06 17:47:20 +0200427 spin_unlock_bh(&nf_conntrack_lock);
428 nf_ct_expect_event_report(IPEXP_NEW, expect, pid, report);
429 return ret;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100430out:
431 spin_unlock_bh(&nf_conntrack_lock);
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100432 return ret;
433}
434EXPORT_SYMBOL_GPL(nf_ct_expect_related_report);
435
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200436#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700437struct ct_expect_iter_state {
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200438 struct seq_net_private p;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700439 unsigned int bucket;
440};
441
442static struct hlist_node *ct_expect_get_first(struct seq_file *seq)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100443{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200444 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700445 struct ct_expect_iter_state *st = seq->private;
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800446 struct hlist_node *n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100447
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700448 for (st->bucket = 0; st->bucket < nf_ct_expect_hsize; st->bucket++) {
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100449 n = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800450 if (n)
451 return n;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100452 }
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700453 return NULL;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100454}
455
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700456static struct hlist_node *ct_expect_get_next(struct seq_file *seq,
457 struct hlist_node *head)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100458{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200459 struct net *net = seq_file_net(seq);
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700460 struct ct_expect_iter_state *st = seq->private;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100461
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100462 head = rcu_dereference(hlist_next_rcu(head));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700463 while (head == NULL) {
464 if (++st->bucket >= nf_ct_expect_hsize)
465 return NULL;
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100466 head = rcu_dereference(hlist_first_rcu(&net->ct.expect_hash[st->bucket]));
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700467 }
468 return head;
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100469}
470
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700471static struct hlist_node *ct_expect_get_idx(struct seq_file *seq, loff_t pos)
472{
473 struct hlist_node *head = ct_expect_get_first(seq);
474
475 if (head)
476 while (pos && (head = ct_expect_get_next(seq, head)))
477 pos--;
478 return pos ? NULL : head;
479}
480
481static void *exp_seq_start(struct seq_file *seq, loff_t *pos)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800482 __acquires(RCU)
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700483{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800484 rcu_read_lock();
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700485 return ct_expect_get_idx(seq, *pos);
486}
487
488static void *exp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
489{
490 (*pos)++;
491 return ct_expect_get_next(seq, v);
492}
493
494static void exp_seq_stop(struct seq_file *seq, void *v)
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800495 __releases(RCU)
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100496{
Patrick McHardy7d0742d2008-01-31 04:38:19 -0800497 rcu_read_unlock();
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100498}
499
500static int exp_seq_show(struct seq_file *s, void *v)
501{
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700502 struct nf_conntrack_expect *expect;
Patrick McHardyb87921b2010-02-11 12:22:48 +0100503 struct nf_conntrack_helper *helper;
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700504 struct hlist_node *n = v;
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700505 char *delim = "";
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700506
507 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100508
509 if (expect->timeout.function)
510 seq_printf(s, "%ld ", timer_pending(&expect->timeout)
511 ? (long)(expect->timeout.expires - jiffies)/HZ : 0);
512 else
513 seq_printf(s, "- ");
514 seq_printf(s, "l3proto = %u proto=%u ",
515 expect->tuple.src.l3num,
516 expect->tuple.dst.protonum);
517 print_tuple(s, &expect->tuple,
518 __nf_ct_l3proto_find(expect->tuple.src.l3num),
Martin Josefsson605dcad2006-11-29 02:35:06 +0100519 __nf_ct_l4proto_find(expect->tuple.src.l3num,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100520 expect->tuple.dst.protonum));
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700521
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700522 if (expect->flags & NF_CT_EXPECT_PERMANENT) {
523 seq_printf(s, "PERMANENT");
524 delim = ",";
525 }
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200526 if (expect->flags & NF_CT_EXPECT_INACTIVE) {
Patrick McHardy359b9ab2008-03-25 20:08:37 -0700527 seq_printf(s, "%sINACTIVE", delim);
Pablo Neira Ayusobc01befd2010-09-28 21:06:34 +0200528 delim = ",";
529 }
530 if (expect->flags & NF_CT_EXPECT_USERSPACE)
531 seq_printf(s, "%sUSERSPACE", delim);
Patrick McHardy4bb119e2008-03-25 20:08:17 -0700532
Patrick McHardyb87921b2010-02-11 12:22:48 +0100533 helper = rcu_dereference(nfct_help(expect->master)->helper);
534 if (helper) {
535 seq_printf(s, "%s%s", expect->flags ? " " : "", helper->name);
536 if (helper->expect_policy[expect->class].name)
537 seq_printf(s, "/%s",
538 helper->expect_policy[expect->class].name);
539 }
540
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100541 return seq_putc(s, '\n');
542}
543
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700544static const struct seq_operations exp_seq_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100545 .start = exp_seq_start,
546 .next = exp_seq_next,
547 .stop = exp_seq_stop,
548 .show = exp_seq_show
549};
550
551static int exp_open(struct inode *inode, struct file *file)
552{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200553 return seq_open_net(inode, file, &exp_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700554 sizeof(struct ct_expect_iter_state));
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100555}
556
Patrick McHardy5d08ad42007-07-07 22:34:07 -0700557static const struct file_operations exp_file_ops = {
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100558 .owner = THIS_MODULE,
559 .open = exp_open,
560 .read = seq_read,
561 .llseek = seq_lseek,
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200562 .release = seq_release_net,
Martin Josefsson77ab9cf2006-11-29 02:34:58 +0100563};
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200564#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700565
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200566static int exp_proc_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700567{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200568#ifdef CONFIG_NF_CONNTRACK_PROCFS
Patrick McHardye9c1b082007-07-07 22:32:53 -0700569 struct proc_dir_entry *proc;
570
Gao fengd4beaa62013-02-18 01:34:54 +0000571 proc = proc_create("nf_conntrack_expect", 0440, net->proc_net,
572 &exp_file_ops);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700573 if (!proc)
574 return -ENOMEM;
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200575#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700576 return 0;
577}
578
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200579static void exp_proc_remove(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700580{
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200581#ifdef CONFIG_NF_CONNTRACK_PROCFS
Gao fengece31ff2013-02-18 01:34:56 +0000582 remove_proc_entry("nf_conntrack_expect", net->proc_net);
Jan Engelhardt54b07dc2011-04-21 09:32:45 +0200583#endif /* CONFIG_NF_CONNTRACK_PROCFS */
Patrick McHardye9c1b082007-07-07 22:32:53 -0700584}
585
Alexey Dobriyan13ccdfc2010-02-08 11:17:22 -0800586module_param_named(expect_hashsize, nf_ct_expect_hsize, uint, 0400);
Patrick McHardya71c0852007-07-07 22:33:47 -0700587
Gao feng83b4dbe2013-01-21 22:10:25 +0000588int nf_conntrack_expect_pernet_init(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700589{
Patrick McHardya71c0852007-07-07 22:33:47 -0700590 int err = -ENOMEM;
591
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200592 net->ct.expect_count = 0;
Patrick McHardyd862a662011-01-14 15:45:56 +0100593 net->ct.expect_hash = nf_ct_alloc_hashtable(&nf_ct_expect_hsize, 0);
Alexey Dobriyan9b03f382008-10-08 11:35:03 +0200594 if (net->ct.expect_hash == NULL)
Patrick McHardya71c0852007-07-07 22:33:47 -0700595 goto err1;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700596
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200597 err = exp_proc_init(net);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700598 if (err < 0)
Gao feng83b4dbe2013-01-21 22:10:25 +0000599 goto err2;
Patrick McHardye9c1b082007-07-07 22:32:53 -0700600
601 return 0;
Alexey Dobriyan12293bf2008-05-29 03:19:37 -0700602err2:
Patrick McHardyd862a662011-01-14 15:45:56 +0100603 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardya71c0852007-07-07 22:33:47 -0700604err1:
Patrick McHardye9c1b082007-07-07 22:32:53 -0700605 return err;
606}
607
Gao feng83b4dbe2013-01-21 22:10:25 +0000608void nf_conntrack_expect_pernet_fini(struct net *net)
Patrick McHardye9c1b082007-07-07 22:32:53 -0700609{
Alexey Dobriyandc5129f2008-10-08 11:35:06 +0200610 exp_proc_remove(net);
Patrick McHardyd862a662011-01-14 15:45:56 +0100611 nf_ct_free_hashtable(net->ct.expect_hash, nf_ct_expect_hsize);
Patrick McHardye9c1b082007-07-07 22:32:53 -0700612}
Gao feng83b4dbe2013-01-21 22:10:25 +0000613
614int nf_conntrack_expect_init(void)
615{
616 if (!nf_ct_expect_hsize) {
617 nf_ct_expect_hsize = nf_conntrack_htable_size / 256;
618 if (!nf_ct_expect_hsize)
619 nf_ct_expect_hsize = 1;
620 }
621 nf_ct_expect_max = nf_ct_expect_hsize * 4;
622 nf_ct_expect_cachep = kmem_cache_create("nf_conntrack_expect",
623 sizeof(struct nf_conntrack_expect),
624 0, 0, NULL);
625 if (!nf_ct_expect_cachep)
626 return -ENOMEM;
627 return 0;
628}
629
630void nf_conntrack_expect_fini(void)
631{
632 rcu_barrier(); /* Wait for call_rcu() before destroy */
633 kmem_cache_destroy(nf_ct_expect_cachep);
634}