]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/nf_log.c
netfilter: ctnetlink: fix rcu context imbalance
[net-next-2.6.git] / net / netfilter / nf_log.c
CommitLineData
f6ebe77f
HW
1#include <linux/kernel.h>
2#include <linux/init.h>
3#include <linux/module.h>
4#include <linux/proc_fs.h>
5#include <linux/skbuff.h>
6#include <linux/netfilter.h>
bbd86b9f 7#include <linux/seq_file.h>
f6ebe77f 8#include <net/protocol.h>
f01ffbd6 9#include <net/netfilter/nf_log.h>
f6ebe77f
HW
10
11#include "nf_internals.h"
12
a5d29264 13/* Internal logging interface, which relies on the real
f6ebe77f
HW
14 LOG target modules */
15
16#define NF_LOG_PREFIXLEN 128
17
7e9c6eeb 18static const struct nf_logger *nf_loggers[NFPROTO_NUMPROTO] __read_mostly;
ca735b3a 19static struct list_head nf_loggers_l[NFPROTO_NUMPROTO] __read_mostly;
9b73534d 20static DEFINE_MUTEX(nf_log_mutex);
f6ebe77f 21
ca735b3a 22static struct nf_logger *__find_logger(int pf, const char *str_logger)
f6ebe77f 23{
ca735b3a 24 struct nf_logger *t;
f6ebe77f 25
ca735b3a
EL
26 list_for_each_entry(t, &nf_loggers_l[pf], list[pf]) {
27 if (!strnicmp(str_logger, t->name, strlen(t->name)))
28 return t;
29 }
d72367b6 30
ca735b3a 31 return NULL;
601e68e1 32}
f6ebe77f 33
ca735b3a
EL
34/* return EEXIST if the same logger is registred, 0 on success. */
35int nf_log_register(u_int8_t pf, struct nf_logger *logger)
f6ebe77f 36{
ca735b3a
EL
37 const struct nf_logger *llog;
38
7e9c6eeb 39 if (pf >= ARRAY_SIZE(nf_loggers))
ca735b3a
EL
40 return -EINVAL;
41
9b73534d 42 mutex_lock(&nf_log_mutex);
ca735b3a
EL
43
44 if (pf == NFPROTO_UNSPEC) {
45 int i;
46 for (i = NFPROTO_UNSPEC; i < NFPROTO_NUMPROTO; i++)
47 list_add_tail(&(logger->list[i]), &(nf_loggers_l[i]));
48 } else {
49 /* register at end of list to honor first register win */
50 list_add_tail(&logger->list[pf], &nf_loggers_l[pf]);
51 llog = rcu_dereference(nf_loggers[pf]);
52 if (llog == NULL)
53 rcu_assign_pointer(nf_loggers[pf], logger);
54 }
55
9b73534d 56 mutex_unlock(&nf_log_mutex);
f6ebe77f 57
ca735b3a 58 return 0;
f6ebe77f 59}
ca735b3a 60EXPORT_SYMBOL(nf_log_register);
f6ebe77f 61
ca735b3a 62void nf_log_unregister(struct nf_logger *logger)
f6ebe77f 63{
ca735b3a 64 const struct nf_logger *c_logger;
f6ebe77f
HW
65 int i;
66
9b73534d 67 mutex_lock(&nf_log_mutex);
7e9c6eeb 68 for (i = 0; i < ARRAY_SIZE(nf_loggers); i++) {
ca735b3a
EL
69 c_logger = rcu_dereference(nf_loggers[i]);
70 if (c_logger == logger)
e92ad99c 71 rcu_assign_pointer(nf_loggers[i], NULL);
ca735b3a 72 list_del(&logger->list[i]);
f6ebe77f 73 }
9b73534d 74 mutex_unlock(&nf_log_mutex);
f6ebe77f 75
a5ea6169 76 synchronize_rcu();
f6ebe77f 77}
e92ad99c 78EXPORT_SYMBOL(nf_log_unregister);
f6ebe77f 79
ca735b3a
EL
80int nf_log_bind_pf(u_int8_t pf, const struct nf_logger *logger)
81{
82 mutex_lock(&nf_log_mutex);
83 if (__find_logger(pf, logger->name) == NULL) {
84 mutex_unlock(&nf_log_mutex);
85 return -ENOENT;
86 }
87 rcu_assign_pointer(nf_loggers[pf], logger);
88 mutex_unlock(&nf_log_mutex);
89 return 0;
90}
91EXPORT_SYMBOL(nf_log_bind_pf);
92
93void nf_log_unbind_pf(u_int8_t pf)
94{
95 mutex_lock(&nf_log_mutex);
96 rcu_assign_pointer(nf_loggers[pf], NULL);
97 mutex_unlock(&nf_log_mutex);
98}
99EXPORT_SYMBOL(nf_log_unbind_pf);
100
76108cea 101void nf_log_packet(u_int8_t pf,
f6ebe77f
HW
102 unsigned int hooknum,
103 const struct sk_buff *skb,
104 const struct net_device *in,
105 const struct net_device *out,
7b2f9631 106 const struct nf_loginfo *loginfo,
f6ebe77f
HW
107 const char *fmt, ...)
108{
109 va_list args;
110 char prefix[NF_LOG_PREFIXLEN];
7b2f9631 111 const struct nf_logger *logger;
601e68e1 112
f6ebe77f 113 rcu_read_lock();
e92ad99c 114 logger = rcu_dereference(nf_loggers[pf]);
f6ebe77f
HW
115 if (logger) {
116 va_start(args, fmt);
117 vsnprintf(prefix, sizeof(prefix), fmt, args);
118 va_end(args);
f6ebe77f 119 logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix);
f6ebe77f
HW
120 }
121 rcu_read_unlock();
122}
123EXPORT_SYMBOL(nf_log_packet);
124
125#ifdef CONFIG_PROC_FS
126static void *seq_start(struct seq_file *seq, loff_t *pos)
ca7c48ca 127 __acquires(RCU)
f6ebe77f
HW
128{
129 rcu_read_lock();
130
7e9c6eeb 131 if (*pos >= ARRAY_SIZE(nf_loggers))
f6ebe77f
HW
132 return NULL;
133
134 return pos;
135}
136
137static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
138{
139 (*pos)++;
140
7e9c6eeb 141 if (*pos >= ARRAY_SIZE(nf_loggers))
f6ebe77f
HW
142 return NULL;
143
144 return pos;
145}
146
147static void seq_stop(struct seq_file *s, void *v)
ca7c48ca 148 __releases(RCU)
f6ebe77f
HW
149{
150 rcu_read_unlock();
151}
152
153static int seq_show(struct seq_file *s, void *v)
154{
155 loff_t *pos = v;
156 const struct nf_logger *logger;
c7a913cd
EL
157 struct nf_logger *t;
158 int ret;
f6ebe77f 159
e92ad99c 160 logger = rcu_dereference(nf_loggers[*pos]);
f6ebe77f
HW
161
162 if (!logger)
c7a913cd
EL
163 ret = seq_printf(s, "%2lld NONE (", *pos);
164 else
165 ret = seq_printf(s, "%2lld %s (", *pos, logger->name);
166
167 if (ret < 0)
168 return ret;
169
170 mutex_lock(&nf_log_mutex);
171 list_for_each_entry(t, &nf_loggers_l[*pos], list[*pos]) {
172 ret = seq_printf(s, "%s", t->name);
173 if (ret < 0) {
174 mutex_unlock(&nf_log_mutex);
175 return ret;
176 }
177 if (&t->list[*pos] != nf_loggers_l[*pos].prev) {
178 ret = seq_printf(s, ",");
179 if (ret < 0) {
180 mutex_unlock(&nf_log_mutex);
181 return ret;
182 }
183 }
184 }
185 mutex_unlock(&nf_log_mutex);
601e68e1 186
c7a913cd 187 return seq_printf(s, ")\n");
f6ebe77f
HW
188}
189
56b3d975 190static const struct seq_operations nflog_seq_ops = {
f6ebe77f
HW
191 .start = seq_start,
192 .next = seq_next,
193 .stop = seq_stop,
194 .show = seq_show,
195};
196
197static int nflog_open(struct inode *inode, struct file *file)
198{
199 return seq_open(file, &nflog_seq_ops);
200}
201
da7071d7 202static const struct file_operations nflog_file_ops = {
f6ebe77f
HW
203 .owner = THIS_MODULE,
204 .open = nflog_open,
205 .read = seq_read,
206 .llseek = seq_lseek,
207 .release = seq_release,
208};
209
210#endif /* PROC_FS */
211
212
213int __init netfilter_log_init(void)
214{
ca735b3a 215 int i;
f6ebe77f 216#ifdef CONFIG_PROC_FS
8eeee8b1
DL
217 if (!proc_create("nf_log", S_IRUGO,
218 proc_net_netfilter, &nflog_file_ops))
f6ebe77f 219 return -1;
62243927 220#endif
ca735b3a
EL
221
222 for (i = NFPROTO_UNSPEC; i < NFPROTO_NUMPROTO; i++)
223 INIT_LIST_HEAD(&(nf_loggers_l[i]));
224
f6ebe77f
HW
225 return 0;
226}