]> Git Repo - linux.git/blame - net/netfilter/nf_conntrack_ecache.c
netfilter: possible unaligned packet header in ip_route_me_harder
[linux.git] / net / netfilter / nf_conntrack_ecache.c
CommitLineData
f6180121
MJ
1/* Event cache for netfilter. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <[email protected]>
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>
f6180121
MJ
19#include <linux/kernel.h>
20#include <linux/netdevice.h>
5a0e3ad6 21#include <linux/slab.h>
bc3b2d7f 22#include <linux/export.h>
f6180121
MJ
23
24#include <net/netfilter/nf_conntrack.h>
f6180121 25#include <net/netfilter/nf_conntrack_core.h>
a0891aa6 26#include <net/netfilter/nf_conntrack_extend.h>
f6180121 27
e34d5c1a 28static DEFINE_MUTEX(nf_ct_ecache_mutex);
13b18339 29
0906a372 30struct nf_ct_event_notifier __rcu *nf_conntrack_event_cb __read_mostly;
e34d5c1a
PNA
31EXPORT_SYMBOL_GPL(nf_conntrack_event_cb);
32
0906a372 33struct nf_exp_event_notifier __rcu *nf_expect_event_cb __read_mostly;
e34d5c1a 34EXPORT_SYMBOL_GPL(nf_expect_event_cb);
f6180121 35
f6180121
MJ
36/* deliver cached events and clear cache entry - must be called with locally
37 * disabled softirqs */
a0891aa6 38void nf_ct_deliver_cached_events(struct nf_conn *ct)
f6180121 39{
a0891aa6 40 unsigned long events;
e34d5c1a 41 struct nf_ct_event_notifier *notify;
a0891aa6 42 struct nf_conntrack_ecache *e;
e34d5c1a
PNA
43
44 rcu_read_lock();
45 notify = rcu_dereference(nf_conntrack_event_cb);
46 if (notify == NULL)
47 goto out_unlock;
48
a0891aa6
PNA
49 e = nf_ct_ecache_find(ct);
50 if (e == NULL)
51 goto out_unlock;
52
53 events = xchg(&e->cache, 0);
54
55 if (nf_ct_is_confirmed(ct) && !nf_ct_is_dying(ct) && events) {
19abb7b0 56 struct nf_ct_event item = {
a0891aa6 57 .ct = ct,
19abb7b0
PNA
58 .pid = 0,
59 .report = 0
60 };
dd7669a9
PNA
61 int ret;
62 /* We make a copy of the missed event cache without taking
63 * the lock, thus we may send missed events twice. However,
64 * this does not harm and it happens very rarely. */
65 unsigned long missed = e->missed;
66
3db7e93d
PNA
67 if (!((events | missed) & e->ctmask))
68 goto out_unlock;
69
dd7669a9
PNA
70 ret = notify->fcn(events | missed, &item);
71 if (unlikely(ret < 0 || missed)) {
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);
78 }
19abb7b0 79 }
f6180121 80
e34d5c1a
PNA
81out_unlock:
82 rcu_read_unlock();
f6180121 83}
13b18339 84EXPORT_SYMBOL_GPL(nf_ct_deliver_cached_events);
f6180121 85
e34d5c1a 86int nf_conntrack_register_notifier(struct nf_ct_event_notifier *new)
010c7d6f 87{
e34d5c1a 88 int ret = 0;
b56f2d55 89 struct nf_ct_event_notifier *notify;
e34d5c1a
PNA
90
91 mutex_lock(&nf_ct_ecache_mutex);
b56f2d55
PM
92 notify = rcu_dereference_protected(nf_conntrack_event_cb,
93 lockdep_is_held(&nf_ct_ecache_mutex));
94 if (notify != NULL) {
e34d5c1a
PNA
95 ret = -EBUSY;
96 goto out_unlock;
97 }
a9b3cd7f 98 RCU_INIT_POINTER(nf_conntrack_event_cb, new);
e34d5c1a
PNA
99 mutex_unlock(&nf_ct_ecache_mutex);
100 return ret;
101
102out_unlock:
103 mutex_unlock(&nf_ct_ecache_mutex);
104 return ret;
010c7d6f
PM
105}
106EXPORT_SYMBOL_GPL(nf_conntrack_register_notifier);
107
e34d5c1a 108void nf_conntrack_unregister_notifier(struct nf_ct_event_notifier *new)
010c7d6f 109{
b56f2d55
PM
110 struct nf_ct_event_notifier *notify;
111
e34d5c1a 112 mutex_lock(&nf_ct_ecache_mutex);
b56f2d55
PM
113 notify = rcu_dereference_protected(nf_conntrack_event_cb,
114 lockdep_is_held(&nf_ct_ecache_mutex));
115 BUG_ON(notify != new);
a9b3cd7f 116 RCU_INIT_POINTER(nf_conntrack_event_cb, NULL);
e34d5c1a 117 mutex_unlock(&nf_ct_ecache_mutex);
010c7d6f
PM
118}
119EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier);
120
e34d5c1a 121int nf_ct_expect_register_notifier(struct nf_exp_event_notifier *new)
010c7d6f 122{
e34d5c1a 123 int ret = 0;
b56f2d55 124 struct nf_exp_event_notifier *notify;
e34d5c1a
PNA
125
126 mutex_lock(&nf_ct_ecache_mutex);
b56f2d55
PM
127 notify = rcu_dereference_protected(nf_expect_event_cb,
128 lockdep_is_held(&nf_ct_ecache_mutex));
129 if (notify != NULL) {
e34d5c1a
PNA
130 ret = -EBUSY;
131 goto out_unlock;
132 }
a9b3cd7f 133 RCU_INIT_POINTER(nf_expect_event_cb, new);
e34d5c1a
PNA
134 mutex_unlock(&nf_ct_ecache_mutex);
135 return ret;
136
137out_unlock:
138 mutex_unlock(&nf_ct_ecache_mutex);
139 return ret;
010c7d6f 140}
6823645d 141EXPORT_SYMBOL_GPL(nf_ct_expect_register_notifier);
010c7d6f 142
e34d5c1a 143void nf_ct_expect_unregister_notifier(struct nf_exp_event_notifier *new)
010c7d6f 144{
b56f2d55
PM
145 struct nf_exp_event_notifier *notify;
146
e34d5c1a 147 mutex_lock(&nf_ct_ecache_mutex);
b56f2d55
PM
148 notify = rcu_dereference_protected(nf_expect_event_cb,
149 lockdep_is_held(&nf_ct_ecache_mutex));
150 BUG_ON(notify != new);
a9b3cd7f 151 RCU_INIT_POINTER(nf_expect_event_cb, NULL);
e34d5c1a 152 mutex_unlock(&nf_ct_ecache_mutex);
010c7d6f 153}
6823645d 154EXPORT_SYMBOL_GPL(nf_ct_expect_unregister_notifier);
a0891aa6
PNA
155
156#define NF_CT_EVENTS_DEFAULT 1
157static int nf_ct_events __read_mostly = NF_CT_EVENTS_DEFAULT;
dd7669a9 158static int nf_ct_events_retry_timeout __read_mostly = 15*HZ;
a0891aa6
PNA
159
160#ifdef CONFIG_SYSCTL
161static struct ctl_table event_sysctl_table[] = {
162 {
a0891aa6
PNA
163 .procname = "nf_conntrack_events",
164 .data = &init_net.ct.sysctl_events,
165 .maxlen = sizeof(unsigned int),
166 .mode = 0644,
167 .proc_handler = proc_dointvec,
168 },
dd7669a9 169 {
dd7669a9
PNA
170 .procname = "nf_conntrack_events_retry_timeout",
171 .data = &init_net.ct.sysctl_events_retry_timeout,
172 .maxlen = sizeof(unsigned int),
173 .mode = 0644,
174 .proc_handler = proc_dointvec_jiffies,
175 },
a0891aa6
PNA
176 {}
177};
178#endif /* CONFIG_SYSCTL */
179
180static struct nf_ct_ext_type event_extend __read_mostly = {
181 .len = sizeof(struct nf_conntrack_ecache),
182 .align = __alignof__(struct nf_conntrack_ecache),
183 .id = NF_CT_EXT_ECACHE,
184};
185
186#ifdef CONFIG_SYSCTL
187static int nf_conntrack_event_init_sysctl(struct net *net)
188{
189 struct ctl_table *table;
190
191 table = kmemdup(event_sysctl_table, sizeof(event_sysctl_table),
192 GFP_KERNEL);
193 if (!table)
194 goto out;
195
196 table[0].data = &net->ct.sysctl_events;
dd7669a9 197 table[1].data = &net->ct.sysctl_events_retry_timeout;
a0891aa6
PNA
198
199 net->ct.event_sysctl_header =
200 register_net_sysctl_table(net,
201 nf_net_netfilter_sysctl_path, table);
202 if (!net->ct.event_sysctl_header) {
203 printk(KERN_ERR "nf_ct_event: can't register to sysctl.\n");
204 goto out_register;
205 }
206 return 0;
207
208out_register:
209 kfree(table);
210out:
211 return -ENOMEM;
212}
213
214static void nf_conntrack_event_fini_sysctl(struct net *net)
215{
216 struct ctl_table *table;
217
218 table = net->ct.event_sysctl_header->ctl_table_arg;
219 unregister_net_sysctl_table(net->ct.event_sysctl_header);
220 kfree(table);
221}
222#else
223static int nf_conntrack_event_init_sysctl(struct net *net)
224{
225 return 0;
226}
227
228static void nf_conntrack_event_fini_sysctl(struct net *net)
229{
230}
231#endif /* CONFIG_SYSCTL */
232
233int nf_conntrack_ecache_init(struct net *net)
234{
235 int ret;
236
237 net->ct.sysctl_events = nf_ct_events;
dd7669a9 238 net->ct.sysctl_events_retry_timeout = nf_ct_events_retry_timeout;
a0891aa6
PNA
239
240 if (net_eq(net, &init_net)) {
241 ret = nf_ct_extend_register(&event_extend);
242 if (ret < 0) {
243 printk(KERN_ERR "nf_ct_event: Unable to register "
244 "event extension.\n");
245 goto out_extend_register;
246 }
247 }
248
249 ret = nf_conntrack_event_init_sysctl(net);
250 if (ret < 0)
251 goto out_sysctl;
252
253 return 0;
254
255out_sysctl:
256 if (net_eq(net, &init_net))
257 nf_ct_extend_unregister(&event_extend);
258out_extend_register:
259 return ret;
260}
261
262void nf_conntrack_ecache_fini(struct net *net)
263{
264 nf_conntrack_event_fini_sysctl(net);
265 if (net_eq(net, &init_net))
266 nf_ct_extend_unregister(&event_extend);
267}
This page took 0.455442 seconds and 4 git commands to generate.