HID: remove rdesc quirk support
[linux-2.6/mini2440.git] / net / netfilter / nf_log.c
blobfa8ae5d2659c6ad1fb13b7dbb20743d0cc1a8886
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>
9 #include <net/netfilter/nf_log.h>
11 #include "nf_internals.h"
13 /* Internal logging interface, which relies on the real
14 LOG target modules */
16 #define NF_LOG_PREFIXLEN 128
18 static const struct nf_logger *nf_loggers[NFPROTO_NUMPROTO] __read_mostly;
19 static DEFINE_MUTEX(nf_log_mutex);
21 /* return EBUSY if somebody else is registered, EEXIST if the same logger
22 * is registred, 0 on success. */
23 int nf_log_register(u_int8_t pf, const struct nf_logger *logger)
25 int ret;
27 if (pf >= ARRAY_SIZE(nf_loggers))
28 return -EINVAL;
30 /* Any setup of logging members must be done before
31 * substituting pointer. */
32 ret = mutex_lock_interruptible(&nf_log_mutex);
33 if (ret < 0)
34 return ret;
36 if (!nf_loggers[pf])
37 rcu_assign_pointer(nf_loggers[pf], logger);
38 else if (nf_loggers[pf] == logger)
39 ret = -EEXIST;
40 else
41 ret = -EBUSY;
43 mutex_unlock(&nf_log_mutex);
44 return ret;
46 EXPORT_SYMBOL(nf_log_register);
48 void nf_log_unregister_pf(u_int8_t pf)
50 if (pf >= ARRAY_SIZE(nf_loggers))
51 return;
52 mutex_lock(&nf_log_mutex);
53 rcu_assign_pointer(nf_loggers[pf], NULL);
54 mutex_unlock(&nf_log_mutex);
56 /* Give time to concurrent readers. */
57 synchronize_rcu();
59 EXPORT_SYMBOL(nf_log_unregister_pf);
61 void nf_log_unregister(const struct nf_logger *logger)
63 int i;
65 mutex_lock(&nf_log_mutex);
66 for (i = 0; i < ARRAY_SIZE(nf_loggers); i++) {
67 if (nf_loggers[i] == logger)
68 rcu_assign_pointer(nf_loggers[i], NULL);
70 mutex_unlock(&nf_log_mutex);
72 synchronize_rcu();
74 EXPORT_SYMBOL(nf_log_unregister);
76 void nf_log_packet(u_int8_t pf,
77 unsigned int hooknum,
78 const struct sk_buff *skb,
79 const struct net_device *in,
80 const struct net_device *out,
81 const struct nf_loginfo *loginfo,
82 const char *fmt, ...)
84 va_list args;
85 char prefix[NF_LOG_PREFIXLEN];
86 const struct nf_logger *logger;
88 rcu_read_lock();
89 logger = rcu_dereference(nf_loggers[pf]);
90 if (logger) {
91 va_start(args, fmt);
92 vsnprintf(prefix, sizeof(prefix), fmt, args);
93 va_end(args);
94 logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix);
96 rcu_read_unlock();
98 EXPORT_SYMBOL(nf_log_packet);
100 #ifdef CONFIG_PROC_FS
101 static void *seq_start(struct seq_file *seq, loff_t *pos)
102 __acquires(RCU)
104 rcu_read_lock();
106 if (*pos >= ARRAY_SIZE(nf_loggers))
107 return NULL;
109 return pos;
112 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
114 (*pos)++;
116 if (*pos >= ARRAY_SIZE(nf_loggers))
117 return NULL;
119 return pos;
122 static void seq_stop(struct seq_file *s, void *v)
123 __releases(RCU)
125 rcu_read_unlock();
128 static int seq_show(struct seq_file *s, void *v)
130 loff_t *pos = v;
131 const struct nf_logger *logger;
133 logger = rcu_dereference(nf_loggers[*pos]);
135 if (!logger)
136 return seq_printf(s, "%2lld NONE\n", *pos);
138 return seq_printf(s, "%2lld %s\n", *pos, logger->name);
141 static const struct seq_operations nflog_seq_ops = {
142 .start = seq_start,
143 .next = seq_next,
144 .stop = seq_stop,
145 .show = seq_show,
148 static int nflog_open(struct inode *inode, struct file *file)
150 return seq_open(file, &nflog_seq_ops);
153 static const struct file_operations nflog_file_ops = {
154 .owner = THIS_MODULE,
155 .open = nflog_open,
156 .read = seq_read,
157 .llseek = seq_lseek,
158 .release = seq_release,
161 #endif /* PROC_FS */
164 int __init netfilter_log_init(void)
166 #ifdef CONFIG_PROC_FS
167 if (!proc_create("nf_log", S_IRUGO,
168 proc_net_netfilter, &nflog_file_ops))
169 return -1;
170 #endif
171 return 0;