GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / ipv4 / netfilter / ipt_ULOG.c
blob446e0f467a17eed968b7a9cba12b001b05de1154
1 /*
2 * netfilter module for userspace packet logging daemons
4 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
5 * (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This module accepts two parameters:
14 * nlbufsiz:
15 * The parameter specifies how big the buffer for each netlink multicast
16 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
17 * get accumulated in the kernel until they are sent to userspace. It is
18 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
19 * because atomically allocating 128kB inside the network rx softirq is not
20 * reliable. Please also keep in mind that this buffer size is allocated for
21 * each nlgroup you are using, so the total kernel memory usage increases
22 * by that factor.
24 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
25 * nlbufsiz is used with alloc_skb, which adds another
26 * sizeof(struct skb_shared_info). Use NLMSG_GOODSIZE instead.
28 * flushtimeout:
29 * Specify, after how many hundredths of a second the queue should be
30 * flushed even if it is not full yet.
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33 #include <linux/module.h>
34 #include <linux/spinlock.h>
35 #include <linux/socket.h>
36 #include <linux/slab.h>
37 #include <linux/skbuff.h>
38 #include <linux/kernel.h>
39 #include <linux/timer.h>
40 #include <linux/netlink.h>
41 #include <linux/netdevice.h>
42 #include <linux/mm.h>
43 #include <linux/moduleparam.h>
44 #include <linux/netfilter.h>
45 #include <linux/netfilter/x_tables.h>
46 #include <linux/netfilter_ipv4/ipt_ULOG.h>
47 #include <net/netfilter/nf_log.h>
48 #include <net/sock.h>
49 #include <linux/bitops.h>
50 #include <asm/unaligned.h>
52 MODULE_LICENSE("GPL");
53 MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
54 MODULE_DESCRIPTION("Xtables: packet logging to netlink using ULOG");
55 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NFLOG);
57 #define ULOG_NL_EVENT 111 /* Harald's favorite number */
58 #define ULOG_MAXNLGROUPS 32 /* numer of nlgroups */
60 static unsigned int nlbufsiz = NLMSG_GOODSIZE;
61 module_param(nlbufsiz, uint, 0400);
62 MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
64 static unsigned int flushtimeout = 10;
65 module_param(flushtimeout, uint, 0600);
66 MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths of a second)");
68 static int nflog = 1;
69 module_param(nflog, bool, 0400);
70 MODULE_PARM_DESC(nflog, "register as internal netfilter logging module");
72 /* global data structures */
74 typedef struct {
75 unsigned int qlen; /* number of nlmsgs' in the skb */
76 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
77 struct sk_buff *skb; /* the pre-allocated skb */
78 struct timer_list timer; /* the timer function */
79 } ulog_buff_t;
81 static ulog_buff_t ulog_buffers[ULOG_MAXNLGROUPS]; /* array of buffers */
83 static struct sock *nflognl; /* our socket */
84 static DEFINE_SPINLOCK(ulog_lock); /* spinlock */
86 /* send one ulog_buff_t to userspace */
87 static void ulog_send(unsigned int nlgroupnum)
89 ulog_buff_t *ub = &ulog_buffers[nlgroupnum];
91 if (timer_pending(&ub->timer)) {
92 pr_debug("ulog_send: timer was pending, deleting\n");
93 del_timer(&ub->timer);
96 if (!ub->skb) {
97 pr_debug("ulog_send: nothing to send\n");
98 return;
101 /* last nlmsg needs NLMSG_DONE */
102 if (ub->qlen > 1)
103 ub->lastnlh->nlmsg_type = NLMSG_DONE;
105 NETLINK_CB(ub->skb).dst_group = nlgroupnum + 1;
106 pr_debug("throwing %d packets to netlink group %u\n",
107 ub->qlen, nlgroupnum + 1);
108 netlink_broadcast(nflognl, ub->skb, 0, nlgroupnum + 1, GFP_ATOMIC);
110 ub->qlen = 0;
111 ub->skb = NULL;
112 ub->lastnlh = NULL;
116 /* timer function to flush queue in flushtimeout time */
117 static void ulog_timer(unsigned long data)
119 pr_debug("timer function called, calling ulog_send\n");
121 /* lock to protect against somebody modifying our structure
122 * from ipt_ulog_target at the same time */
123 spin_lock_bh(&ulog_lock);
124 ulog_send(data);
125 spin_unlock_bh(&ulog_lock);
128 static struct sk_buff *ulog_alloc_skb(unsigned int size)
130 struct sk_buff *skb;
131 unsigned int n;
133 /* alloc skb which should be big enough for a whole
134 * multipart message. WARNING: has to be <= 131000
135 * due to slab allocator restrictions */
137 n = max(size, nlbufsiz);
138 skb = alloc_skb(n, GFP_ATOMIC);
139 if (!skb) {
140 pr_debug("cannot alloc whole buffer %ub!\n", n);
142 if (n > size) {
143 /* try to allocate only as much as we need for
144 * current packet */
146 skb = alloc_skb(size, GFP_ATOMIC);
147 if (!skb)
148 pr_debug("cannot even allocate %ub\n", size);
152 return skb;
155 static void ipt_ulog_packet(unsigned int hooknum,
156 const struct sk_buff *skb,
157 const struct net_device *in,
158 const struct net_device *out,
159 const struct ipt_ulog_info *loginfo,
160 const char *prefix)
162 ulog_buff_t *ub;
163 ulog_packet_msg_t *pm;
164 size_t size, copy_len;
165 struct nlmsghdr *nlh;
166 struct timeval tv;
168 /* ffs == find first bit set, necessary because userspace
169 * is already shifting groupnumber, but we need unshifted.
170 * ffs() returns [1..32], we need [0..31] */
171 unsigned int groupnum = ffs(loginfo->nl_group) - 1;
173 /* calculate the size of the skb needed */
174 if (loginfo->copy_range == 0 || loginfo->copy_range > skb->len)
175 copy_len = skb->len;
176 else
177 copy_len = loginfo->copy_range;
179 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
181 ub = &ulog_buffers[groupnum];
183 spin_lock_bh(&ulog_lock);
185 if (!ub->skb) {
186 if (!(ub->skb = ulog_alloc_skb(size)))
187 goto alloc_failure;
188 } else if (ub->qlen >= loginfo->qthreshold ||
189 size > skb_tailroom(ub->skb)) {
190 /* either the queue len is too high or we don't have
191 * enough room in nlskb left. send it to userspace. */
193 ulog_send(groupnum);
195 if (!(ub->skb = ulog_alloc_skb(size)))
196 goto alloc_failure;
199 pr_debug("qlen %d, qthreshold %Zu\n", ub->qlen, loginfo->qthreshold);
201 /* NLMSG_PUT contains a hidden goto nlmsg_failure !!! */
202 nlh = NLMSG_PUT(ub->skb, 0, ub->qlen, ULOG_NL_EVENT,
203 sizeof(*pm)+copy_len);
204 ub->qlen++;
206 pm = NLMSG_DATA(nlh);
208 /* We might not have a timestamp, get one */
209 if (skb->tstamp.tv64 == 0)
210 __net_timestamp((struct sk_buff *)skb);
212 /* copy hook, prefix, timestamp, payload, etc. */
213 pm->data_len = copy_len;
214 tv = ktime_to_timeval(skb->tstamp);
215 put_unaligned(tv.tv_sec, &pm->timestamp_sec);
216 put_unaligned(tv.tv_usec, &pm->timestamp_usec);
217 put_unaligned(skb->mark, &pm->mark);
218 pm->hook = hooknum;
219 if (prefix != NULL)
220 strncpy(pm->prefix, prefix, sizeof(pm->prefix));
221 else if (loginfo->prefix[0] != '\0')
222 strncpy(pm->prefix, loginfo->prefix, sizeof(pm->prefix));
223 else
224 *(pm->prefix) = '\0';
226 if (in && in->hard_header_len > 0 &&
227 skb->mac_header != skb->network_header &&
228 in->hard_header_len <= ULOG_MAC_LEN) {
229 memcpy(pm->mac, skb_mac_header(skb), in->hard_header_len);
230 pm->mac_len = in->hard_header_len;
231 } else
232 pm->mac_len = 0;
234 if (in)
235 strncpy(pm->indev_name, in->name, sizeof(pm->indev_name));
236 else
237 pm->indev_name[0] = '\0';
239 if (out)
240 strncpy(pm->outdev_name, out->name, sizeof(pm->outdev_name));
241 else
242 pm->outdev_name[0] = '\0';
244 /* copy_len <= skb->len, so can't fail. */
245 if (skb_copy_bits(skb, 0, pm->payload, copy_len) < 0)
246 BUG();
248 /* check if we are building multi-part messages */
249 if (ub->qlen > 1)
250 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
252 ub->lastnlh = nlh;
254 /* if timer isn't already running, start it */
255 if (!timer_pending(&ub->timer)) {
256 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
257 add_timer(&ub->timer);
260 /* if threshold is reached, send message to userspace */
261 if (ub->qlen >= loginfo->qthreshold) {
262 if (loginfo->qthreshold > 1)
263 nlh->nlmsg_type = NLMSG_DONE;
264 ulog_send(groupnum);
267 spin_unlock_bh(&ulog_lock);
269 return;
271 nlmsg_failure:
272 pr_debug("error during NLMSG_PUT\n");
273 alloc_failure:
274 pr_debug("Error building netlink message\n");
275 spin_unlock_bh(&ulog_lock);
278 static unsigned int
279 ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
281 ipt_ulog_packet(par->hooknum, skb, par->in, par->out,
282 par->targinfo, NULL);
283 return XT_CONTINUE;
286 static void ipt_logfn(u_int8_t pf,
287 unsigned int hooknum,
288 const struct sk_buff *skb,
289 const struct net_device *in,
290 const struct net_device *out,
291 const struct nf_loginfo *li,
292 const char *prefix)
294 struct ipt_ulog_info loginfo;
296 if (!li || li->type != NF_LOG_TYPE_ULOG) {
297 loginfo.nl_group = ULOG_DEFAULT_NLGROUP;
298 loginfo.copy_range = 0;
299 loginfo.qthreshold = ULOG_DEFAULT_QTHRESHOLD;
300 loginfo.prefix[0] = '\0';
301 } else {
302 loginfo.nl_group = li->u.ulog.group;
303 loginfo.copy_range = li->u.ulog.copy_len;
304 loginfo.qthreshold = li->u.ulog.qthreshold;
305 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
308 ipt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
311 static int ulog_tg_check(const struct xt_tgchk_param *par)
313 const struct ipt_ulog_info *loginfo = par->targinfo;
315 if (loginfo->prefix[sizeof(loginfo->prefix) - 1] != '\0') {
316 pr_debug("prefix not null-terminated\n");
317 return -EINVAL;
319 if (loginfo->qthreshold > ULOG_MAX_QLEN) {
320 pr_debug("queue threshold %Zu > MAX_QLEN\n",
321 loginfo->qthreshold);
322 return -EINVAL;
324 return 0;
327 #ifdef CONFIG_COMPAT
328 struct compat_ipt_ulog_info {
329 compat_uint_t nl_group;
330 compat_size_t copy_range;
331 compat_size_t qthreshold;
332 char prefix[ULOG_PREFIX_LEN];
335 static void ulog_tg_compat_from_user(void *dst, const void *src)
337 const struct compat_ipt_ulog_info *cl = src;
338 struct ipt_ulog_info l = {
339 .nl_group = cl->nl_group,
340 .copy_range = cl->copy_range,
341 .qthreshold = cl->qthreshold,
344 memcpy(l.prefix, cl->prefix, sizeof(l.prefix));
345 memcpy(dst, &l, sizeof(l));
348 static int ulog_tg_compat_to_user(void __user *dst, const void *src)
350 const struct ipt_ulog_info *l = src;
351 struct compat_ipt_ulog_info cl = {
352 .nl_group = l->nl_group,
353 .copy_range = l->copy_range,
354 .qthreshold = l->qthreshold,
357 memcpy(cl.prefix, l->prefix, sizeof(cl.prefix));
358 return copy_to_user(dst, &cl, sizeof(cl)) ? -EFAULT : 0;
360 #endif /* CONFIG_COMPAT */
362 static struct xt_target ulog_tg_reg __read_mostly = {
363 .name = "ULOG",
364 .family = NFPROTO_IPV4,
365 .target = ulog_tg,
366 .targetsize = sizeof(struct ipt_ulog_info),
367 .checkentry = ulog_tg_check,
368 #ifdef CONFIG_COMPAT
369 .compatsize = sizeof(struct compat_ipt_ulog_info),
370 .compat_from_user = ulog_tg_compat_from_user,
371 .compat_to_user = ulog_tg_compat_to_user,
372 #endif
373 .me = THIS_MODULE,
376 static struct nf_logger ipt_ulog_logger __read_mostly = {
377 .name = "ipt_ULOG",
378 .logfn = ipt_logfn,
379 .me = THIS_MODULE,
382 static int __init ulog_tg_init(void)
384 int ret, i;
386 pr_debug("init module\n");
388 if (nlbufsiz > 128*1024) {
389 pr_warning("Netlink buffer has to be <= 128kB\n");
390 return -EINVAL;
393 /* initialize ulog_buffers */
394 for (i = 0; i < ULOG_MAXNLGROUPS; i++)
395 setup_timer(&ulog_buffers[i].timer, ulog_timer, i);
397 nflognl = netlink_kernel_create(&init_net,
398 NETLINK_NFLOG, ULOG_MAXNLGROUPS, NULL,
399 NULL, THIS_MODULE);
400 if (!nflognl)
401 return -ENOMEM;
403 ret = xt_register_target(&ulog_tg_reg);
404 if (ret < 0) {
405 netlink_kernel_release(nflognl);
406 return ret;
408 if (nflog)
409 nf_log_register(NFPROTO_IPV4, &ipt_ulog_logger);
411 return 0;
414 static void __exit ulog_tg_exit(void)
416 ulog_buff_t *ub;
417 int i;
419 pr_debug("cleanup_module\n");
421 if (nflog)
422 nf_log_unregister(&ipt_ulog_logger);
423 xt_unregister_target(&ulog_tg_reg);
424 netlink_kernel_release(nflognl);
426 /* remove pending timers and free allocated skb's */
427 for (i = 0; i < ULOG_MAXNLGROUPS; i++) {
428 ub = &ulog_buffers[i];
429 if (timer_pending(&ub->timer)) {
430 pr_debug("timer was pending, deleting\n");
431 del_timer(&ub->timer);
434 if (ub->skb) {
435 kfree_skb(ub->skb);
436 ub->skb = NULL;
441 module_init(ulog_tg_init);
442 module_exit(ulog_tg_exit);