blob: 5bd3047ddeec5cf38b160931777fb6c63e6c59b4 [file] [log] [blame]
Martin Josefssonf6180122006-11-29 02:35:01 +01001/* Event cache for netfilter. */
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/vmalloc.h>
16#include <linux/stddef.h>
17#include <linux/err.h>
18#include <linux/percpu.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010019#include <linux/kernel.h>
20#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040022#include <linux/export.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010023
24#include <net/netfilter/nf_conntrack.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010025#include <net/netfilter/nf_conntrack_core.h>
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020026#include <net/netfilter/nf_conntrack_extend.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010027
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020028static DEFINE_MUTEX(nf_ct_ecache_mutex);
Patrick McHardy13b18332006-12-02 22:11:25 -080029
Martin Josefssonf6180122006-11-29 02:35:01 +010030/* deliver cached events and clear cache entry - must be called with locally
31 * disabled softirqs */
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020032void nf_ct_deliver_cached_events(struct nf_conn *ct)
Martin Josefssonf6180122006-11-29 02:35:01 +010033{
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +010034 struct net *net = nf_ct_net(ct);
Tony Zelenoff58020f72012-02-22 10:48:01 +040035 unsigned long events, missed;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020036 struct nf_ct_event_notifier *notify;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020037 struct nf_conntrack_ecache *e;
Tony Zelenoff58020f72012-02-22 10:48:01 +040038 struct nf_ct_event item;
39 int ret;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020040
41 rcu_read_lock();
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +010042 notify = rcu_dereference(net->ct.nf_conntrack_event_cb);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020043 if (notify == NULL)
44 goto out_unlock;
45
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020046 e = nf_ct_ecache_find(ct);
47 if (e == NULL)
48 goto out_unlock;
49
50 events = xchg(&e->cache, 0);
51
Tony Zelenoff58020f72012-02-22 10:48:01 +040052 if (!nf_ct_is_confirmed(ct) || nf_ct_is_dying(ct) || !events)
53 goto out_unlock;
Pablo Neira Ayuso19abb7b2008-11-18 11:56:20 +010054
Tony Zelenoff58020f72012-02-22 10:48:01 +040055 /* We make a copy of the missed event cache without taking
56 * the lock, thus we may send missed events twice. However,
57 * this does not harm and it happens very rarely. */
58 missed = e->missed;
Pablo Neira Ayuso3db7e932011-02-01 16:06:30 +010059
Tony Zelenoff58020f72012-02-22 10:48:01 +040060 if (!((events | missed) & e->ctmask))
61 goto out_unlock;
62
63 item.ct = ct;
64 item.pid = 0;
65 item.report = 0;
66
67 ret = notify->fcn(events | missed, &item);
68
69 if (likely(ret >= 0 && !missed))
70 goto out_unlock;
71
72 spin_lock_bh(&ct->lock);
73 if (ret < 0)
74 e->missed |= events;
75 else
76 e->missed &= ~missed;
77 spin_unlock_bh(&ct->lock);
Martin Josefssonf6180122006-11-29 02:35:01 +010078
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020079out_unlock:
80 rcu_read_unlock();
Martin Josefssonf6180122006-11-29 02:35:01 +010081}
Patrick McHardy13b18332006-12-02 22:11:25 -080082EXPORT_SYMBOL_GPL(nf_ct_deliver_cached_events);
Martin Josefssonf6180122006-11-29 02:35:01 +010083
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +010084int nf_conntrack_register_notifier(struct net *net,
85 struct nf_ct_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -070086{
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020087 int ret = 0;
Patrick McHardyb56f2d52010-05-10 18:47:57 +020088 struct nf_ct_event_notifier *notify;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020089
90 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +010091 notify = rcu_dereference_protected(net->ct.nf_conntrack_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +020092 lockdep_is_held(&nf_ct_ecache_mutex));
93 if (notify != NULL) {
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020094 ret = -EBUSY;
95 goto out_unlock;
96 }
Eric Dumazetcf778b02012-01-12 04:41:32 +000097 rcu_assign_pointer(net->ct.nf_conntrack_event_cb, new);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +020098 mutex_unlock(&nf_ct_ecache_mutex);
99 return ret;
100
101out_unlock:
102 mutex_unlock(&nf_ct_ecache_mutex);
103 return ret;
Patrick McHardy010c7d62007-03-14 16:40:10 -0700104}
105EXPORT_SYMBOL_GPL(nf_conntrack_register_notifier);
106
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100107void nf_conntrack_unregister_notifier(struct net *net,
108 struct nf_ct_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700109{
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200110 struct nf_ct_event_notifier *notify;
111
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200112 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100113 notify = rcu_dereference_protected(net->ct.nf_conntrack_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200114 lockdep_is_held(&nf_ct_ecache_mutex));
115 BUG_ON(notify != new);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100116 RCU_INIT_POINTER(net->ct.nf_conntrack_event_cb, NULL);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200117 mutex_unlock(&nf_ct_ecache_mutex);
Patrick McHardy010c7d62007-03-14 16:40:10 -0700118}
119EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier);
120
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100121int nf_ct_expect_register_notifier(struct net *net,
122 struct nf_exp_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700123{
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200124 int ret = 0;
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200125 struct nf_exp_event_notifier *notify;
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200126
127 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100128 notify = rcu_dereference_protected(net->ct.nf_expect_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200129 lockdep_is_held(&nf_ct_ecache_mutex));
130 if (notify != NULL) {
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200131 ret = -EBUSY;
132 goto out_unlock;
133 }
Eric Dumazetcf778b02012-01-12 04:41:32 +0000134 rcu_assign_pointer(net->ct.nf_expect_event_cb, new);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200135 mutex_unlock(&nf_ct_ecache_mutex);
136 return ret;
137
138out_unlock:
139 mutex_unlock(&nf_ct_ecache_mutex);
140 return ret;
Patrick McHardy010c7d62007-03-14 16:40:10 -0700141}
Patrick McHardy68236452007-07-07 22:30:49 -0700142EXPORT_SYMBOL_GPL(nf_ct_expect_register_notifier);
Patrick McHardy010c7d62007-03-14 16:40:10 -0700143
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100144void nf_ct_expect_unregister_notifier(struct net *net,
145 struct nf_exp_event_notifier *new)
Patrick McHardy010c7d62007-03-14 16:40:10 -0700146{
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200147 struct nf_exp_event_notifier *notify;
148
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200149 mutex_lock(&nf_ct_ecache_mutex);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100150 notify = rcu_dereference_protected(net->ct.nf_expect_event_cb,
Patrick McHardyb56f2d52010-05-10 18:47:57 +0200151 lockdep_is_held(&nf_ct_ecache_mutex));
152 BUG_ON(notify != new);
Pablo Neira Ayuso70e99422011-11-22 00:16:51 +0100153 RCU_INIT_POINTER(net->ct.nf_expect_event_cb, NULL);
Pablo Neira Ayusoe34d5c12009-06-03 10:32:06 +0200154 mutex_unlock(&nf_ct_ecache_mutex);
Patrick McHardy010c7d62007-03-14 16:40:10 -0700155}
Patrick McHardy68236452007-07-07 22:30:49 -0700156EXPORT_SYMBOL_GPL(nf_ct_expect_unregister_notifier);
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200157
158#define NF_CT_EVENTS_DEFAULT 1
159static int nf_ct_events __read_mostly = NF_CT_EVENTS_DEFAULT;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200160static int nf_ct_events_retry_timeout __read_mostly = 15*HZ;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200161
162#ifdef CONFIG_SYSCTL
163static struct ctl_table event_sysctl_table[] = {
164 {
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200165 .procname = "nf_conntrack_events",
166 .data = &init_net.ct.sysctl_events,
167 .maxlen = sizeof(unsigned int),
168 .mode = 0644,
169 .proc_handler = proc_dointvec,
170 },
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200171 {
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200172 .procname = "nf_conntrack_events_retry_timeout",
173 .data = &init_net.ct.sysctl_events_retry_timeout,
174 .maxlen = sizeof(unsigned int),
175 .mode = 0644,
176 .proc_handler = proc_dointvec_jiffies,
177 },
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200178 {}
179};
180#endif /* CONFIG_SYSCTL */
181
182static struct nf_ct_ext_type event_extend __read_mostly = {
183 .len = sizeof(struct nf_conntrack_ecache),
184 .align = __alignof__(struct nf_conntrack_ecache),
185 .id = NF_CT_EXT_ECACHE,
186};
187
188#ifdef CONFIG_SYSCTL
189static int nf_conntrack_event_init_sysctl(struct net *net)
190{
191 struct ctl_table *table;
192
193 table = kmemdup(event_sysctl_table, sizeof(event_sysctl_table),
194 GFP_KERNEL);
195 if (!table)
196 goto out;
197
198 table[0].data = &net->ct.sysctl_events;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200199 table[1].data = &net->ct.sysctl_events_retry_timeout;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200200
201 net->ct.event_sysctl_header =
202 register_net_sysctl_table(net,
203 nf_net_netfilter_sysctl_path, table);
204 if (!net->ct.event_sysctl_header) {
205 printk(KERN_ERR "nf_ct_event: can't register to sysctl.\n");
206 goto out_register;
207 }
208 return 0;
209
210out_register:
211 kfree(table);
212out:
213 return -ENOMEM;
214}
215
216static void nf_conntrack_event_fini_sysctl(struct net *net)
217{
218 struct ctl_table *table;
219
220 table = net->ct.event_sysctl_header->ctl_table_arg;
221 unregister_net_sysctl_table(net->ct.event_sysctl_header);
222 kfree(table);
223}
224#else
225static int nf_conntrack_event_init_sysctl(struct net *net)
226{
227 return 0;
228}
229
230static void nf_conntrack_event_fini_sysctl(struct net *net)
231{
232}
233#endif /* CONFIG_SYSCTL */
234
235int nf_conntrack_ecache_init(struct net *net)
236{
237 int ret;
238
239 net->ct.sysctl_events = nf_ct_events;
Pablo Neira Ayusodd7669a2009-06-13 12:30:52 +0200240 net->ct.sysctl_events_retry_timeout = nf_ct_events_retry_timeout;
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +0200241
242 if (net_eq(net, &init_net)) {
243 ret = nf_ct_extend_register(&event_extend);
244 if (ret < 0) {
245 printk(KERN_ERR "nf_ct_event: Unable to register "
246 "event extension.\n");
247 goto out_extend_register;
248 }
249 }
250
251 ret = nf_conntrack_event_init_sysctl(net);
252 if (ret < 0)
253 goto out_sysctl;
254
255 return 0;
256
257out_sysctl:
258 if (net_eq(net, &init_net))
259 nf_ct_extend_unregister(&event_extend);
260out_extend_register:
261 return ret;
262}
263
264void nf_conntrack_ecache_fini(struct net *net)
265{
266 nf_conntrack_event_fini_sysctl(net);
267 if (net_eq(net, &init_net))
268 nf_ct_extend_unregister(&event_extend);
269}