RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / netfilter / nf_conntrack_ecache.c
blob6bd421df2dbc7a4c6ade02875d88a97597583606
1 /* Event cache for netfilter. */
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>
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.
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>
19 #include <linux/notifier.h>
20 #include <linux/kernel.h>
21 #include <linux/netdevice.h>
23 #include <net/netfilter/nf_conntrack.h>
24 #include <net/netfilter/nf_conntrack_core.h>
26 ATOMIC_NOTIFIER_HEAD(nf_conntrack_chain);
27 EXPORT_SYMBOL_GPL(nf_conntrack_chain);
29 ATOMIC_NOTIFIER_HEAD(nf_conntrack_expect_chain);
30 EXPORT_SYMBOL_GPL(nf_conntrack_expect_chain);
32 DEFINE_PER_CPU(struct nf_conntrack_ecache, nf_conntrack_ecache);
33 EXPORT_PER_CPU_SYMBOL_GPL(nf_conntrack_ecache);
35 /* deliver cached events and clear cache entry - must be called with locally
36 * disabled softirqs */
37 static inline void
38 __nf_ct_deliver_cached_events(struct nf_conntrack_ecache *ecache)
40 if (nf_ct_is_confirmed(ecache->ct) && !nf_ct_is_dying(ecache->ct)
41 && ecache->events)
42 atomic_notifier_call_chain(&nf_conntrack_chain, ecache->events,
43 ecache->ct);
45 ecache->events = 0;
46 nf_ct_put(ecache->ct);
47 ecache->ct = NULL;
50 /* Deliver all cached events for a particular conntrack. This is called
51 * by code prior to async packet handling for freeing the skb */
52 void nf_ct_deliver_cached_events(const struct nf_conn *ct)
54 struct nf_conntrack_ecache *ecache;
56 local_bh_disable();
57 ecache = &__get_cpu_var(nf_conntrack_ecache);
58 if (ecache->ct == ct)
59 __nf_ct_deliver_cached_events(ecache);
60 local_bh_enable();
62 EXPORT_SYMBOL_GPL(nf_ct_deliver_cached_events);
64 /* Deliver cached events for old pending events, if current conntrack != old */
65 void __nf_ct_event_cache_init(struct nf_conn *ct)
67 struct nf_conntrack_ecache *ecache;
69 /* take care of delivering potentially old events */
70 ecache = &__get_cpu_var(nf_conntrack_ecache);
71 BUG_ON(ecache->ct == ct);
72 if (ecache->ct)
73 __nf_ct_deliver_cached_events(ecache);
74 /* initialize for this conntrack/packet */
75 ecache->ct = ct;
76 nf_conntrack_get(&ct->ct_general);
78 EXPORT_SYMBOL_GPL(__nf_ct_event_cache_init);
80 /* flush the event cache - touches other CPU's data and must not be called
81 * while packets are still passing through the code */
82 void nf_ct_event_cache_flush(void)
84 struct nf_conntrack_ecache *ecache;
85 int cpu;
87 for_each_possible_cpu(cpu) {
88 ecache = &per_cpu(nf_conntrack_ecache, cpu);
89 if (ecache->ct)
90 nf_ct_put(ecache->ct);
94 int nf_conntrack_register_notifier(struct notifier_block *nb)
96 return atomic_notifier_chain_register(&nf_conntrack_chain, nb);
98 EXPORT_SYMBOL_GPL(nf_conntrack_register_notifier);
100 int nf_conntrack_unregister_notifier(struct notifier_block *nb)
102 return atomic_notifier_chain_unregister(&nf_conntrack_chain, nb);
104 EXPORT_SYMBOL_GPL(nf_conntrack_unregister_notifier);
106 int nf_conntrack_expect_register_notifier(struct notifier_block *nb)
108 return atomic_notifier_chain_register(&nf_conntrack_expect_chain, nb);
110 EXPORT_SYMBOL_GPL(nf_conntrack_expect_register_notifier);
112 int nf_conntrack_expect_unregister_notifier(struct notifier_block *nb)
114 return atomic_notifier_chain_unregister(&nf_conntrack_expect_chain, nb);
116 EXPORT_SYMBOL_GPL(nf_conntrack_expect_unregister_notifier);