blob: 94985792b79ac65a9e3eb5ac8b04704cd2004b3b [file] [log] [blame]
Harald Weltef6ebe772005-08-09 20:21:49 -07001#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>
Harald Weltebbd86b9f2005-08-09 20:23:11 -07007#include <linux/seq_file.h>
Harald Weltef6ebe772005-08-09 20:21:49 -07008#include <net/protocol.h>
9
10#include "nf_internals.h"
11
12/* Internal logging interface, which relies on the real
13 LOG target modules */
14
15#define NF_LOG_PREFIXLEN 128
16
Patrick McHardye92ad992007-02-12 11:11:55 -080017static struct nf_logger *nf_loggers[NPROTO];
Patrick McHardy9b735342007-02-12 11:11:39 -080018static DEFINE_MUTEX(nf_log_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070019
Harald Welted72367b2005-08-09 20:23:36 -070020/* return EBUSY if somebody else is registered, EEXIST if the same logger
21 * is registred, 0 on success. */
Harald Weltef6ebe772005-08-09 20:21:49 -070022int nf_log_register(int pf, struct nf_logger *logger)
23{
Patrick McHardy9b735342007-02-12 11:11:39 -080024 int ret;
Harald Weltef6ebe772005-08-09 20:21:49 -070025
Harald Welte8a61fad2005-08-09 20:23:53 -070026 if (pf >= NPROTO)
27 return -EINVAL;
28
Harald Weltef6ebe772005-08-09 20:21:49 -070029 /* Any setup of logging members must be done before
30 * substituting pointer. */
Patrick McHardy9b735342007-02-12 11:11:39 -080031 ret = mutex_lock_interruptible(&nf_log_mutex);
32 if (ret < 0)
33 return ret;
Harald Welted72367b2005-08-09 20:23:36 -070034
Patrick McHardye92ad992007-02-12 11:11:55 -080035 if (!nf_loggers[pf])
36 rcu_assign_pointer(nf_loggers[pf], logger);
37 else if (nf_loggers[pf] == logger)
Patrick McHardy9b735342007-02-12 11:11:39 -080038 ret = -EEXIST;
39 else
40 ret = -EBUSY;
41
42 mutex_unlock(&nf_log_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070043 return ret;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080044}
Harald Weltef6ebe772005-08-09 20:21:49 -070045EXPORT_SYMBOL(nf_log_register);
46
Patrick McHardy9dc6aa52007-02-12 11:11:24 -080047void nf_log_unregister_pf(int pf)
Harald Weltef6ebe772005-08-09 20:21:49 -070048{
Harald Welte8a61fad2005-08-09 20:23:53 -070049 if (pf >= NPROTO)
Patrick McHardy9dc6aa52007-02-12 11:11:24 -080050 return;
Patrick McHardy9b735342007-02-12 11:11:39 -080051 mutex_lock(&nf_log_mutex);
Patrick McHardye92ad992007-02-12 11:11:55 -080052 rcu_assign_pointer(nf_loggers[pf], NULL);
Patrick McHardy9b735342007-02-12 11:11:39 -080053 mutex_unlock(&nf_log_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070054
55 /* Give time to concurrent readers. */
Patrick McHardya5ea6162007-02-12 11:11:06 -080056 synchronize_rcu();
Harald Weltef6ebe772005-08-09 20:21:49 -070057}
58EXPORT_SYMBOL(nf_log_unregister_pf);
59
Patrick McHardye92ad992007-02-12 11:11:55 -080060void nf_log_unregister(struct nf_logger *logger)
Harald Weltef6ebe772005-08-09 20:21:49 -070061{
62 int i;
63
Patrick McHardy9b735342007-02-12 11:11:39 -080064 mutex_lock(&nf_log_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070065 for (i = 0; i < NPROTO; i++) {
Patrick McHardye92ad992007-02-12 11:11:55 -080066 if (nf_loggers[i] == logger)
67 rcu_assign_pointer(nf_loggers[i], NULL);
Harald Weltef6ebe772005-08-09 20:21:49 -070068 }
Patrick McHardy9b735342007-02-12 11:11:39 -080069 mutex_unlock(&nf_log_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070070
Patrick McHardya5ea6162007-02-12 11:11:06 -080071 synchronize_rcu();
Harald Weltef6ebe772005-08-09 20:21:49 -070072}
Patrick McHardye92ad992007-02-12 11:11:55 -080073EXPORT_SYMBOL(nf_log_unregister);
Harald Weltef6ebe772005-08-09 20:21:49 -070074
75void nf_log_packet(int pf,
76 unsigned int hooknum,
77 const struct sk_buff *skb,
78 const struct net_device *in,
79 const struct net_device *out,
80 struct nf_loginfo *loginfo,
81 const char *fmt, ...)
82{
83 va_list args;
84 char prefix[NF_LOG_PREFIXLEN];
85 struct nf_logger *logger;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080086
Harald Weltef6ebe772005-08-09 20:21:49 -070087 rcu_read_lock();
Patrick McHardye92ad992007-02-12 11:11:55 -080088 logger = rcu_dereference(nf_loggers[pf]);
Harald Weltef6ebe772005-08-09 20:21:49 -070089 if (logger) {
90 va_start(args, fmt);
91 vsnprintf(prefix, sizeof(prefix), fmt, args);
92 va_end(args);
93 /* We must read logging before nf_logfn[pf] */
94 logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix);
95 } else if (net_ratelimit()) {
96 printk(KERN_WARNING "nf_log_packet: can\'t log since "
97 "no backend logging module loaded in! Please either "
98 "load one, or disable logging explicitly\n");
99 }
100 rcu_read_unlock();
101}
102EXPORT_SYMBOL(nf_log_packet);
103
104#ifdef CONFIG_PROC_FS
105static void *seq_start(struct seq_file *seq, loff_t *pos)
106{
107 rcu_read_lock();
108
109 if (*pos >= NPROTO)
110 return NULL;
111
112 return pos;
113}
114
115static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
116{
117 (*pos)++;
118
119 if (*pos >= NPROTO)
120 return NULL;
121
122 return pos;
123}
124
125static void seq_stop(struct seq_file *s, void *v)
126{
127 rcu_read_unlock();
128}
129
130static int seq_show(struct seq_file *s, void *v)
131{
132 loff_t *pos = v;
133 const struct nf_logger *logger;
134
Patrick McHardye92ad992007-02-12 11:11:55 -0800135 logger = rcu_dereference(nf_loggers[*pos]);
Harald Weltef6ebe772005-08-09 20:21:49 -0700136
137 if (!logger)
138 return seq_printf(s, "%2lld NONE\n", *pos);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800139
Harald Weltef6ebe772005-08-09 20:21:49 -0700140 return seq_printf(s, "%2lld %s\n", *pos, logger->name);
141}
142
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700143static const struct seq_operations nflog_seq_ops = {
Harald Weltef6ebe772005-08-09 20:21:49 -0700144 .start = seq_start,
145 .next = seq_next,
146 .stop = seq_stop,
147 .show = seq_show,
148};
149
150static int nflog_open(struct inode *inode, struct file *file)
151{
152 return seq_open(file, &nflog_seq_ops);
153}
154
Arjan van de Venda7071d2007-02-12 00:55:36 -0800155static const struct file_operations nflog_file_ops = {
Harald Weltef6ebe772005-08-09 20:21:49 -0700156 .owner = THIS_MODULE,
157 .open = nflog_open,
158 .read = seq_read,
159 .llseek = seq_lseek,
160 .release = seq_release,
161};
162
163#endif /* PROC_FS */
164
165
166int __init netfilter_log_init(void)
167{
168#ifdef CONFIG_PROC_FS
169 struct proc_dir_entry *pde;
Harald Welte62243922005-08-11 15:30:45 -0700170
Harald Weltef6ebe772005-08-09 20:21:49 -0700171 pde = create_proc_entry("nf_log", S_IRUGO, proc_net_netfilter);
Harald Weltef6ebe772005-08-09 20:21:49 -0700172 if (!pde)
173 return -1;
174
175 pde->proc_fops = &nflog_file_ops;
Harald Welte62243922005-08-11 15:30:45 -0700176#endif
Harald Weltef6ebe772005-08-09 20:21:49 -0700177 return 0;
178}