[NETFILTER]: nf_log: use rcu_assign_pointer for RCU protected pointer
[linux-2.6.22.y-op.git] / net / netfilter / nf_log.c
bloba3ff88dcc2acebefb9b48c352f690119e0759e0a
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>
7 #include <linux/seq_file.h>
8 #include <net/protocol.h>
10 #include "nf_internals.h"
12 /* Internal logging interface, which relies on the real
13 LOG target modules */
15 #define NF_LOG_PREFIXLEN 128
17 static struct nf_logger *nf_logging[NPROTO]; /* = NULL */
18 static DEFINE_SPINLOCK(nf_log_lock);
20 /* return EBUSY if somebody else is registered, EEXIST if the same logger
21 * is registred, 0 on success. */
22 int nf_log_register(int pf, struct nf_logger *logger)
24 int ret = -EBUSY;
26 if (pf >= NPROTO)
27 return -EINVAL;
29 /* Any setup of logging members must be done before
30 * substituting pointer. */
31 spin_lock(&nf_log_lock);
32 if (!nf_logging[pf]) {
33 rcu_assign_pointer(nf_logging[pf], logger);
34 ret = 0;
35 } else if (nf_logging[pf] == logger)
36 ret = -EEXIST;
38 spin_unlock(&nf_log_lock);
39 return ret;
41 EXPORT_SYMBOL(nf_log_register);
43 int nf_log_unregister_pf(int pf)
45 if (pf >= NPROTO)
46 return -EINVAL;
48 spin_lock(&nf_log_lock);
49 rcu_assign_pointer(nf_logging[pf], NULL);
50 spin_unlock(&nf_log_lock);
52 /* Give time to concurrent readers. */
53 synchronize_rcu();
55 return 0;
57 EXPORT_SYMBOL(nf_log_unregister_pf);
59 void nf_log_unregister_logger(struct nf_logger *logger)
61 int i;
63 spin_lock(&nf_log_lock);
64 for (i = 0; i < NPROTO; i++) {
65 if (nf_logging[i] == logger)
66 rcu_assign_pointer(nf_logging[i], NULL);
68 spin_unlock(&nf_log_lock);
70 synchronize_rcu();
72 EXPORT_SYMBOL(nf_log_unregister_logger);
74 void nf_log_packet(int pf,
75 unsigned int hooknum,
76 const struct sk_buff *skb,
77 const struct net_device *in,
78 const struct net_device *out,
79 struct nf_loginfo *loginfo,
80 const char *fmt, ...)
82 va_list args;
83 char prefix[NF_LOG_PREFIXLEN];
84 struct nf_logger *logger;
86 rcu_read_lock();
87 logger = rcu_dereference(nf_logging[pf]);
88 if (logger) {
89 va_start(args, fmt);
90 vsnprintf(prefix, sizeof(prefix), fmt, args);
91 va_end(args);
92 /* We must read logging before nf_logfn[pf] */
93 logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix);
94 } else if (net_ratelimit()) {
95 printk(KERN_WARNING "nf_log_packet: can\'t log since "
96 "no backend logging module loaded in! Please either "
97 "load one, or disable logging explicitly\n");
99 rcu_read_unlock();
101 EXPORT_SYMBOL(nf_log_packet);
103 #ifdef CONFIG_PROC_FS
104 static void *seq_start(struct seq_file *seq, loff_t *pos)
106 rcu_read_lock();
108 if (*pos >= NPROTO)
109 return NULL;
111 return pos;
114 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
116 (*pos)++;
118 if (*pos >= NPROTO)
119 return NULL;
121 return pos;
124 static void seq_stop(struct seq_file *s, void *v)
126 rcu_read_unlock();
129 static int seq_show(struct seq_file *s, void *v)
131 loff_t *pos = v;
132 const struct nf_logger *logger;
134 logger = rcu_dereference(nf_logging[*pos]);
136 if (!logger)
137 return seq_printf(s, "%2lld NONE\n", *pos);
139 return seq_printf(s, "%2lld %s\n", *pos, logger->name);
142 static struct seq_operations nflog_seq_ops = {
143 .start = seq_start,
144 .next = seq_next,
145 .stop = seq_stop,
146 .show = seq_show,
149 static int nflog_open(struct inode *inode, struct file *file)
151 return seq_open(file, &nflog_seq_ops);
154 static const struct file_operations nflog_file_ops = {
155 .owner = THIS_MODULE,
156 .open = nflog_open,
157 .read = seq_read,
158 .llseek = seq_lseek,
159 .release = seq_release,
162 #endif /* PROC_FS */
165 int __init netfilter_log_init(void)
167 #ifdef CONFIG_PROC_FS
168 struct proc_dir_entry *pde;
170 pde = create_proc_entry("nf_log", S_IRUGO, proc_net_netfilter);
171 if (!pde)
172 return -1;
174 pde->proc_fops = &nflog_file_ops;
175 #endif
176 return 0;