blob: 22fc32143e9c4ae17bc48edc68eb0decf11d931c [file] [log] [blame]
Martin Josefssonf6180122006-11-29 02:35:01 +01001/* Event cache for netfilter. */
2
Patrick McHardyf229f6c2013-04-06 15:24:29 +02003/*
4 * (C) 2005 Harald Welte <laforge@gnumonks.org>
5 * (C) 2005 Patrick McHardy <kaber@trash.net>
6 * (C) 2005-2006 Netfilter Core Team <coreteam@netfilter.org>
7 * (C) 2005 USAGI/WIDE Project <http://www.linux-ipv6.org>
Martin Josefssonf6180122006-11-29 02:35:01 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/types.h>
15#include <linux/netfilter.h>
16#include <linux/skbuff.h>
17#include <linux/vmalloc.h>
18#include <linux/stddef.h>
19#include <linux/err.h>
20#include <linux/percpu.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010021#include <linux/kernel.h>
22#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010025
26#include <net/netfilter/nf_conntrack.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010027#include <net/netfilter/nf_conntrack_core.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020028#include <net/netfilter/nf_conntrack_extend.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010029
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020030static DEFINE_MUTEX(nf_ct_ecache_mutex);
Patrick McHardy13b18332006-12-02 22:11:25 -080031
Florian Westphal95005072014-06-10 23:12:56 +020032#define ECACHE_RETRY_WAIT (HZ/10)
33
34enum retry_state {
35 STATE_CONGESTED,
36 STATE_RESTART,
37 STATE_DONE,
38};
39
40static enum retry_state ecache_work_evict_list(struct ct_pcpu *pcpu)
41{
42 struct nf_conn *refs[16];
43 struct nf_conntrack_tuple_hash *h;
44 struct hlist_nulls_node *n;
45 unsigned int evicted = 0;
46 enum retry_state ret = STATE_DONE;
47
48 spin_lock(&pcpu->lock);
49
50 hlist_nulls_for_each_entry(h, n, &pcpu->dying, hnnode) {
51 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
Florian Westphal616b14b2016-08-25 15:33:30 +020052 struct nf_conntrack_ecache *e;
Florian Westphal95005072014-06-10 23:12:56 +020053
Florian Westphal616b14b2016-08-25 15:33:30 +020054 if (!nf_ct_is_confirmed(ct))
55 continue;
56
57 e = nf_ct_ecache_find(ct);
58 if (!e || e->state != NFCT_ECACHE_DESTROY_FAIL)
Florian Westphal95005072014-06-10 23:12:56 +020059 continue;
60
61 if (nf_conntrack_event(IPCT_DESTROY, ct)) {
62 ret = STATE_CONGESTED;
63 break;
64 }
65
Florian Westphal616b14b2016-08-25 15:33:30 +020066 e->state = NFCT_ECACHE_DESTROY_SENT;
Florian Westphal95005072014-06-10 23:12:56 +020067 refs[evicted] = ct;
68
69 if (++evicted >= ARRAY_SIZE(refs)) {
70 ret = STATE_RESTART;
71 break;
72 }
73 }
74
75 spin_unlock(&pcpu->lock);
76
77 /* can't _put while holding lock */
78 while (evicted)
79 nf_ct_put(refs[--evicted]);
80
81 return ret;
82}
83
84static void ecache_work(struct work_struct *work)
85{
86 struct netns_ct *ctnet =
87 container_of(work, struct netns_ct, ecache_dwork.work);
88 int cpu, delay = -1;
89 struct ct_pcpu *pcpu;
90
91 local_bh_disable();
92
93 for_each_possible_cpu(cpu) {
94 enum retry_state ret;
95
96 pcpu = per_cpu_ptr(ctnet->pcpu_lists, cpu);
97
98 ret = ecache_work_evict_list(pcpu);
99
100 switch (ret) {
101 case STATE_CONGESTED:
102 delay = ECACHE_RETRY_WAIT;
103 goto out;
104 case STATE_RESTART:
105 delay = 0;
106 break;
107 case STATE_DONE:
108 break;
109 }
110 }
111
112 out:
113 local_bh_enable();
114
115 ctnet->ecache_dwork_pending = delay > 0;
116 if (delay >= 0)
117 schedule_delayed_work(&ctnet->ecache_dwork, delay);
118}
119
Florian Westphal3c435e22016-04-11 21:52:35 +0200120int nf_conntrack_eventmask_report(unsigned int eventmask, struct nf_conn *ct,
121 u32 portid, int report)
122{
123 int ret = 0;
124 struct net *net = nf_ct_net(ct);
125 struct nf_ct_event_notifier *notify;
126 struct nf_conntrack_ecache *e;
127
128 rcu_read_lock();
129 notify = rcu_dereference(net->ct.nf_conntrack_event_cb);
130 if (!notify)
131 goto out_unlock;
132
133 e = nf_ct_ecache_find(ct);
134 if (!e)
135 goto out_unlock;
136
Florian Westphal616b14b2016-08-25 15:33:30 +0200137 if (nf_ct_is_confirmed(ct)) {
Florian Westphal3c435e22016-04-11 21:52:35 +0200138 struct nf_ct_event item = {
139 .ct = ct,
140 .portid = e->portid ? e->portid : portid,
141 .report = report
142 };
143 /* This is a resent of a destroy event? If so, skip missed */
144 unsigned long missed = e->portid ? 0 : e->missed;
145
146 if (!((eventmask | missed) & e->ctmask))
147 goto out_unlock;
148
149 ret = notify->fcn(eventmask | missed, &item);
150 if (unlikely(ret < 0 || missed)) {
151 spin_lock_bh(&ct->lock);
152 if (ret < 0) {
153 /* This is a destroy event that has been
154 * triggered by a process, we store the PORTID
155 * to include it in the retransmission.
156 */
Florian Westphal616b14b2016-08-25 15:33:30 +0200157 if (eventmask & (1 << IPCT_DESTROY)) {
158 if (e->portid == 0 && portid != 0)
159 e->portid = portid;
160 e->state = NFCT_ECACHE_DESTROY_FAIL;
161 } else {
Florian Westphal3c435e22016-04-11 21:52:35 +0200162 e->missed |= eventmask;
Florian Westphal616b14b2016-08-25 15:33:30 +0200163 }
Florian Westphal3c435e22016-04-11 21:52:35 +0200164 } else {
165 e->missed &= ~missed;
166 }
167 spin_unlock_bh(&ct->lock);
168 }
169 }
170out_unlock:
171 rcu_read_unlock();
172 return ret;
173}
174EXPORT_SYMBOL_GPL(nf_conntrack_eventmask_report);
175
Martin Josefssonf6180122006-11-29 02:35:01 +0100176/* deliver cached events and clear cache entry - must be called with locally
177 * disabled softirqs */
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200178void nf_ct_deliver_cached_events(struct nf_conn *ct)
Martin Josefssonf6180122006-11-29 02:35:01 +0100179{
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100180 struct net *net = nf_ct_net(ct);
Tony Zelenoff58020f72012-02-22 10:48:01 +0400181 unsigned long events, missed;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200182 struct nf_ct_event_notifier *notify;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200183 struct nf_conntrack_ecache *e;
Tony Zelenoff58020f72012-02-22 10:48:01 +0400184 struct nf_ct_event item;
185 int ret;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200186
187 rcu_read_lock();
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100188 notify = rcu_dereference(net->ct.nf_conntrack_event_cb);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200189 if (notify == NULL)
190 goto out_unlock;
191
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200192 e = nf_ct_ecache_find(ct);
193 if (e == NULL)
194 goto out_unlock;
195
196 events = xchg(&e->cache, 0);
197
Tony Zelenoff58020f72012-02-22 10:48:01 +0400198 if (!nf_ct_is_confirmed(ct) || nf_ct_is_dying(ct) || !events)
199 goto out_unlock;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +0100200
Tony Zelenoff58020f72012-02-22 10:48:01 +0400201 /* We make a copy of the missed event cache without taking
202 * the lock, thus we may send missed events twice. However,
203 * this does not harm and it happens very rarely. */
204 missed = e->missed;
Pablo Neira Ayuso3db7e932011-02-01 16:06:30 +0100205
Tony Zelenoff58020f72012-02-22 10:48:01 +0400206 if (!((events | missed) & e->ctmask))
207 goto out_unlock;
208
209 item.ct = ct;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000210 item.portid = 0;
Tony Zelenoff58020f72012-02-22 10:48:01 +0400211 item.report = 0;
212
213 ret = notify->fcn(events | missed, &item);
214
215 if (likely(ret >= 0 && !missed))
216 goto out_unlock;
217
218 spin_lock_bh(&ct->lock);
219 if (ret < 0)
220 e->missed |= events;
221 else
222 e->missed &= ~missed;
223 spin_unlock_bh(&ct->lock);
Martin Josefssonf6180122006-11-29 02:35:01 +0100224
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200225out_unlock:
226 rcu_read_unlock();
Martin Josefssonf6180122006-11-29 02:35:01 +0100227}
Patrick McHardy13b18332006-12-02 22:11:25 -0800228EXPORT_SYMBOL_GPL(nf_ct_deliver_cached_events);
Martin Josefssonf6180122006-11-29 02:35:01 +0100229
Florian Westphalecdfb482016-04-11 21:52:36 +0200230void nf_ct_expect_event_report(enum ip_conntrack_expect_events event,
231 struct nf_conntrack_expect *exp,
232 u32 portid, int report)
233
234{
235 struct net *net = nf_ct_exp_net(exp);
236 struct nf_exp_event_notifier *notify;
237 struct nf_conntrack_ecache *e;
238
239 rcu_read_lock();
240 notify = rcu_dereference(net->ct.nf_expect_event_cb);
241 if (!notify)
242 goto out_unlock;
243
244 e = nf_ct_ecache_find(exp->master);
245 if (!e)
246 goto out_unlock;
247
248 if (e->expmask & (1 << event)) {
249 struct nf_exp_event item = {
250 .exp = exp,
251 .portid = portid,
252 .report = report
253 };
254 notify->fcn(1 << event, &item);
255 }
256out_unlock:
257 rcu_read_unlock();
258}
259
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100260int nf_conntrack_register_notifier(struct net *net,
261 struct nf_ct_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700262{
Tony Zelenoff031d7702012-03-08 23:35:39 +0000263 int ret;
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200264 struct nf_ct_event_notifier *notify;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200265
266 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100267 notify = rcu_dereference_protected(net->ct.nf_conntrack_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200268 lockdep_is_held(&nf_ct_ecache_mutex));
269 if (notify != NULL) {
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200270 ret = -EBUSY;
271 goto out_unlock;
272 }
Eric Dumazetcf778b02012-01-12 04:41:32 +0000273 rcu_assign_pointer(net->ct.nf_conntrack_event_cb, new);
Tony Zelenoff031d7702012-03-08 23:35:39 +0000274 ret = 0;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200275
276out_unlock:
277 mutex_unlock(&nf_ct_ecache_mutex);
278 return ret;
Patrick McHardy010c7d62007-03-14 16:40:10 -0700279}
280EXPORT_SYMBOL_GPL(nf_conntrack_register_notifier);
281
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100282void nf_conntrack_unregister_notifier(struct net *net,
283 struct nf_ct_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700284{
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200285 struct nf_ct_event_notifier *notify;
286
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200287 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100288 notify = rcu_dereference_protected(net->ct.nf_conntrack_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200289 lockdep_is_held(&nf_ct_ecache_mutex));
290 BUG_ON(notify != new);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100291 RCU_INIT_POINTER(net->ct.nf_conntrack_event_cb, NULL);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200292 mutex_unlock(&nf_ct_ecache_mutex);
Liping Zhang146561a2017-03-25 08:53:12 +0800293 /* synchronize_rcu() is called from ctnetlink_exit. */
Patrick McHardy010c7d62007-03-14 16:40:10 -0700294}
295EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier);
296
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100297int nf_ct_expect_register_notifier(struct net *net,
298 struct nf_exp_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700299{
Tony Zelenoff031d7702012-03-08 23:35:39 +0000300 int ret;
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200301 struct nf_exp_event_notifier *notify;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200302
303 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100304 notify = rcu_dereference_protected(net->ct.nf_expect_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200305 lockdep_is_held(&nf_ct_ecache_mutex));
306 if (notify != NULL) {
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200307 ret = -EBUSY;
308 goto out_unlock;
309 }
Eric Dumazetcf778b02012-01-12 04:41:32 +0000310 rcu_assign_pointer(net->ct.nf_expect_event_cb, new);
Tony Zelenoff031d7702012-03-08 23:35:39 +0000311 ret = 0;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200312
313out_unlock:
314 mutex_unlock(&nf_ct_ecache_mutex);
315 return ret;
Patrick McHardy010c7d62007-03-14 16:40:10 -0700316}
Patrick McHardy68236452007-07-07 22:30:49 -0700317EXPORT_SYMBOL_GPL(nf_ct_expect_register_notifier);
Patrick McHardy010c7d62007-03-14 16:40:10 -0700318
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100319void nf_ct_expect_unregister_notifier(struct net *net,
320 struct nf_exp_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700321{
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200322 struct nf_exp_event_notifier *notify;
323
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200324 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100325 notify = rcu_dereference_protected(net->ct.nf_expect_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200326 lockdep_is_held(&nf_ct_ecache_mutex));
327 BUG_ON(notify != new);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100328 RCU_INIT_POINTER(net->ct.nf_expect_event_cb, NULL);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200329 mutex_unlock(&nf_ct_ecache_mutex);
Liping Zhang146561a2017-03-25 08:53:12 +0800330 /* synchronize_rcu() is called from ctnetlink_exit. */
Patrick McHardy010c7d62007-03-14 16:40:10 -0700331}
Patrick McHardy68236452007-07-07 22:30:49 -0700332EXPORT_SYMBOL_GPL(nf_ct_expect_unregister_notifier);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200333
334#define NF_CT_EVENTS_DEFAULT 1
335static int nf_ct_events __read_mostly = NF_CT_EVENTS_DEFAULT;
336
337#ifdef CONFIG_SYSCTL
338static struct ctl_table event_sysctl_table[] = {
339 {
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200340 .procname = "nf_conntrack_events",
341 .data = &init_net.ct.sysctl_events,
342 .maxlen = sizeof(unsigned int),
343 .mode = 0644,
344 .proc_handler = proc_dointvec,
345 },
346 {}
347};
348#endif /* CONFIG_SYSCTL */
349
350static struct nf_ct_ext_type event_extend __read_mostly = {
351 .len = sizeof(struct nf_conntrack_ecache),
352 .align = __alignof__(struct nf_conntrack_ecache),
353 .id = NF_CT_EXT_ECACHE,
354};
355
356#ifdef CONFIG_SYSCTL
357static int nf_conntrack_event_init_sysctl(struct net *net)
358{
359 struct ctl_table *table;
360
361 table = kmemdup(event_sysctl_table, sizeof(event_sysctl_table),
362 GFP_KERNEL);
363 if (!table)
364 goto out;
365
366 table[0].data = &net->ct.sysctl_events;
367
Eric W. Biederman464dc802012-11-16 03:02:59 +0000368 /* Don't export sysctls to unprivileged users */
369 if (net->user_ns != &init_user_ns)
370 table[0].procname = NULL;
371
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200372 net->ct.event_sysctl_header =
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000373 register_net_sysctl(net, "net/netfilter", table);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200374 if (!net->ct.event_sysctl_header) {
375 printk(KERN_ERR "nf_ct_event: can't register to sysctl.\n");
376 goto out_register;
377 }
378 return 0;
379
380out_register:
381 kfree(table);
382out:
383 return -ENOMEM;
384}
385
386static void nf_conntrack_event_fini_sysctl(struct net *net)
387{
388 struct ctl_table *table;
389
390 table = net->ct.event_sysctl_header->ctl_table_arg;
391 unregister_net_sysctl_table(net->ct.event_sysctl_header);
392 kfree(table);
393}
394#else
395static int nf_conntrack_event_init_sysctl(struct net *net)
396{
397 return 0;
398}
399
400static void nf_conntrack_event_fini_sysctl(struct net *net)
401{
402}
403#endif /* CONFIG_SYSCTL */
404
Gao feng3fe0f942013-01-21 22:10:28 +0000405int nf_conntrack_ecache_pernet_init(struct net *net)
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200406{
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200407 net->ct.sysctl_events = nf_ct_events;
Florian Westphal95005072014-06-10 23:12:56 +0200408 INIT_DELAYED_WORK(&net->ct.ecache_dwork, ecache_work);
Gao feng3fe0f942013-01-21 22:10:28 +0000409 return nf_conntrack_event_init_sysctl(net);
410}
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200411
Gao feng3fe0f942013-01-21 22:10:28 +0000412void nf_conntrack_ecache_pernet_fini(struct net *net)
413{
Florian Westphal95005072014-06-10 23:12:56 +0200414 cancel_delayed_work_sync(&net->ct.ecache_dwork);
Gao feng3fe0f942013-01-21 22:10:28 +0000415 nf_conntrack_event_fini_sysctl(net);
416}
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200417
Gao feng3fe0f942013-01-21 22:10:28 +0000418int nf_conntrack_ecache_init(void)
419{
420 int ret = nf_ct_extend_register(&event_extend);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200421 if (ret < 0)
Gao feng3fe0f942013-01-21 22:10:28 +0000422 pr_err("nf_ct_event: Unable to register event extension.\n");
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200423 return ret;
424}
425
Gao feng3fe0f942013-01-21 22:10:28 +0000426void nf_conntrack_ecache_fini(void)
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200427{
Gao feng3fe0f942013-01-21 22:10:28 +0000428 nf_ct_extend_unregister(&event_extend);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200429}