blob: 77ff9c46b26829310eccf7ebf7be8ac8c2a459cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * netfilter module for userspace bridged Ethernet frames logging daemons
3 *
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
Bart De Schuymerd5228a42005-12-13 23:14:08 -08006 * Harald Welte <laforge@netfilter.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * November, 2004
9 *
10 * Based on ipt_ULOG.c, which is
11 * (C) 2000-2002 by Harald Welte <laforge@netfilter.org>
12 *
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090013 * This module accepts two parameters:
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * nlbufsiz:
16 * The parameter specifies how big the buffer for each netlink multicast
17 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
18 * get accumulated in the kernel until they are sent to userspace. It is
19 * NOT possible to allocate more than 128kB, and it is strongly discouraged,
20 * because atomically allocating 128kB inside the network rx softirq is not
21 * reliable. Please also keep in mind that this buffer size is allocated for
22 * each nlgroup you are using, so the total kernel memory usage increases
23 * by that factor.
24 *
25 * flushtimeout:
26 * Specify, after how many hundredths of a second the queue should be
27 * flushed even if it is not full yet.
28 *
29 */
30
31#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/spinlock.h>
33#include <linux/socket.h>
34#include <linux/skbuff.h>
35#include <linux/kernel.h>
36#include <linux/timer.h>
37#include <linux/netlink.h>
38#include <linux/netdevice.h>
Jan Engelhardt18219d32008-10-08 11:35:13 +020039#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/netfilter_bridge/ebtables.h>
41#include <linux/netfilter_bridge/ebt_ulog.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080042#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <net/sock.h>
44#include "../br_private.h"
45
46#define PRINTR(format, args...) do { if (net_ratelimit()) \
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090047 printk(format , ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080049static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050module_param(nlbufsiz, uint, 0600);
51MODULE_PARM_DESC(nlbufsiz, "netlink buffer size (number of bytes) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090052 "(defaults to 4096)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static unsigned int flushtimeout = 10;
55module_param(flushtimeout, uint, 0600);
56MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths ofa second) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090057 "(defaults to 10)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59typedef struct {
60 unsigned int qlen; /* number of nlmsgs' in the skb */
61 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
62 struct sk_buff *skb; /* the pre-allocated skb */
63 struct timer_list timer; /* the timer function */
64 spinlock_t lock; /* the per-queue lock */
65} ebt_ulog_buff_t;
66
67static ebt_ulog_buff_t ulog_buffers[EBT_ULOG_MAXNLGROUPS];
68static struct sock *ebtulognl;
69
70/* send one ulog_buff_t to userspace */
71static void ulog_send(unsigned int nlgroup)
72{
73 ebt_ulog_buff_t *ub = &ulog_buffers[nlgroup];
74
75 if (timer_pending(&ub->timer))
76 del_timer(&ub->timer);
77
Mark Huangdcb7cd92006-08-13 18:57:54 -070078 if (!ub->skb)
79 return;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* last nlmsg needs NLMSG_DONE */
82 if (ub->qlen > 1)
83 ub->lastnlh->nlmsg_type = NLMSG_DONE;
84
Patrick McHardyac6d4392005-08-14 19:29:52 -070085 NETLINK_CB(ub->skb).dst_group = nlgroup + 1;
86 netlink_broadcast(ebtulognl, ub->skb, 0, nlgroup + 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 ub->qlen = 0;
89 ub->skb = NULL;
90}
91
92/* timer function to flush queue in flushtimeout time */
93static void ulog_timer(unsigned long data)
94{
95 spin_lock_bh(&ulog_buffers[data].lock);
96 if (ulog_buffers[data].skb)
97 ulog_send(data);
98 spin_unlock_bh(&ulog_buffers[data].lock);
99}
100
101static struct sk_buff *ulog_alloc_skb(unsigned int size)
102{
103 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800104 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800106 n = max(size, nlbufsiz);
107 skb = alloc_skb(n, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (!skb) {
109 PRINTR(KERN_ERR "ebt_ulog: can't alloc whole buffer "
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800110 "of size %ub!\n", n);
111 if (n > size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /* try to allocate only as much as we need for
113 * current packet */
114 skb = alloc_skb(size, GFP_ATOMIC);
115 if (!skb)
116 PRINTR(KERN_ERR "ebt_ulog: can't even allocate "
117 "buffer of size %ub\n", size);
118 }
119 }
120
121 return skb;
122}
123
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800124static void ebt_ulog_packet(unsigned int hooknr, const struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 const struct net_device *in, const struct net_device *out,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800126 const struct ebt_ulog_info *uloginfo, const char *prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 ebt_ulog_packet_msg_t *pm;
129 size_t size, copy_len;
130 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 unsigned int group = uloginfo->nlgroup;
132 ebt_ulog_buff_t *ub = &ulog_buffers[group];
133 spinlock_t *lock = &ub->lock;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700134 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 if ((uloginfo->cprange == 0) ||
137 (uloginfo->cprange > skb->len + ETH_HLEN))
138 copy_len = skb->len + ETH_HLEN;
139 else
140 copy_len = uloginfo->cprange;
141
142 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
143 if (size > nlbufsiz) {
144 PRINTR("ebt_ulog: Size %Zd needed, but nlbufsiz=%d\n",
145 size, nlbufsiz);
146 return;
147 }
148
149 spin_lock_bh(lock);
150
151 if (!ub->skb) {
152 if (!(ub->skb = ulog_alloc_skb(size)))
153 goto alloc_failure;
154 } else if (size > skb_tailroom(ub->skb)) {
155 ulog_send(group);
156
157 if (!(ub->skb = ulog_alloc_skb(size)))
158 goto alloc_failure;
159 }
160
161 nlh = NLMSG_PUT(ub->skb, 0, ub->qlen, 0,
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900162 size - NLMSG_ALIGN(sizeof(*nlh)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 ub->qlen++;
164
165 pm = NLMSG_DATA(nlh);
166
167 /* Fill in the ulog data */
168 pm->version = EBT_ULOG_VERSION;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700169 kt = ktime_get_real();
170 pm->stamp = ktime_to_timeval(kt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (ub->qlen == 1)
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700172 ub->skb->tstamp = kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 pm->data_len = copy_len;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800174 pm->mark = skb->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 pm->hook = hooknr;
176 if (uloginfo->prefix != NULL)
177 strcpy(pm->prefix, uloginfo->prefix);
178 else
179 *(pm->prefix) = '\0';
180
181 if (in) {
182 strcpy(pm->physindev, in->name);
183 /* If in isn't a bridge, then physindev==indev */
184 if (in->br_port)
185 strcpy(pm->indev, in->br_port->br->dev->name);
186 else
187 strcpy(pm->indev, in->name);
188 } else
189 pm->indev[0] = pm->physindev[0] = '\0';
190
191 if (out) {
192 /* If out exists, then out is a bridge port */
193 strcpy(pm->physoutdev, out->name);
194 strcpy(pm->outdev, out->br_port->br->dev->name);
195 } else
196 pm->outdev[0] = pm->physoutdev[0] = '\0';
197
198 if (skb_copy_bits(skb, -ETH_HLEN, pm->data, copy_len) < 0)
199 BUG();
200
201 if (ub->qlen > 1)
202 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
203
204 ub->lastnlh = nlh;
205
206 if (ub->qlen >= uloginfo->qthreshold)
207 ulog_send(group);
208 else if (!timer_pending(&ub->timer)) {
209 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
210 add_timer(&ub->timer);
211 }
212
213unlock:
214 spin_unlock_bh(lock);
215
216 return;
217
218nlmsg_failure:
219 printk(KERN_CRIT "ebt_ulog: error during NLMSG_PUT. This should "
220 "not happen, please report to author.\n");
221 goto unlock;
222alloc_failure:
223 goto unlock;
224}
225
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800226/* this function is registered with the netfilter core */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200227static void ebt_log_packet(u_int8_t pf, unsigned int hooknum,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800228 const struct sk_buff *skb, const struct net_device *in,
229 const struct net_device *out, const struct nf_loginfo *li,
230 const char *prefix)
231{
232 struct ebt_ulog_info loginfo;
233
234 if (!li || li->type != NF_LOG_TYPE_ULOG) {
235 loginfo.nlgroup = EBT_ULOG_DEFAULT_NLGROUP;
236 loginfo.cprange = 0;
237 loginfo.qthreshold = EBT_ULOG_DEFAULT_QTHRESHOLD;
238 loginfo.prefix[0] = '\0';
239 } else {
240 loginfo.nlgroup = li->u.ulog.group;
241 loginfo.cprange = li->u.ulog.copy_len;
242 loginfo.qthreshold = li->u.ulog.qthreshold;
243 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
244 }
245
246 ebt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
247}
248
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200249static unsigned int
250ebt_ulog_tg(struct sk_buff *skb, const struct net_device *in,
251 const struct net_device *out, unsigned int hooknr,
252 const struct xt_target *target, const void *data)
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800253{
Jan Engelhardtabfdf1c2008-01-31 03:59:24 -0800254 const struct ebt_ulog_info *uloginfo = data;
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800255
256 ebt_ulog_packet(hooknr, skb, in, out, uloginfo, NULL);
Jan Engelhardt0ac6ab12008-10-08 11:35:13 +0200257 return EBT_CONTINUE;
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800258}
259
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200260static bool
261ebt_ulog_tg_check(const char *table, const void *entry,
262 const struct xt_target *target, void *data,
263 unsigned int hookmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Jan Engelhardtabfdf1c2008-01-31 03:59:24 -0800265 struct ebt_ulog_info *uloginfo = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Jan Engelhardt18219d32008-10-08 11:35:13 +0200267 if (uloginfo->nlgroup > 31)
Jan Engelhardt19eda872008-10-08 11:35:13 +0200268 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 uloginfo->prefix[EBT_ULOG_PREFIX_LEN - 1] = '\0';
271
272 if (uloginfo->qthreshold > EBT_ULOG_MAX_QLEN)
273 uloginfo->qthreshold = EBT_ULOG_MAX_QLEN;
274
275 return 0;
276}
277
Jan Engelhardt30083c92008-01-31 04:00:59 -0800278static struct ebt_watcher ulog __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .name = EBT_ULOG_WATCHER,
Jan Engelhardt001a18d2008-10-08 11:35:14 +0200280 .revision = 0,
281 .family = NFPROTO_BRIDGE,
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200282 .target = ebt_ulog_tg,
283 .checkentry = ebt_ulog_tg_check,
Jan Engelhardt18219d32008-10-08 11:35:13 +0200284 .targetsize = XT_ALIGN(sizeof(struct ebt_ulog_info)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .me = THIS_MODULE,
286};
287
Patrick McHardy7b2f9632007-12-17 22:39:08 -0800288static const struct nf_logger ebt_ulog_logger = {
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800289 .name = EBT_ULOG_WATCHER,
290 .logfn = &ebt_log_packet,
291 .me = THIS_MODULE,
292};
293
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800294static int __init ebt_ulog_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Jan Engelhardt19eda872008-10-08 11:35:13 +0200296 bool ret = true;
297 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (nlbufsiz >= 128*1024) {
300 printk(KERN_NOTICE "ebt_ulog: Netlink buffer has to be <= 128kB,"
301 " please try a smaller nlbufsiz parameter.\n");
Jan Engelhardt19eda872008-10-08 11:35:13 +0200302 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
305 /* initialize ulog_buffers */
306 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
Patrick McHardye6f689d2007-03-23 11:16:30 -0700307 setup_timer(&ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 spin_lock_init(&ulog_buffers[i].lock);
309 }
310
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200311 ebtulognl = netlink_kernel_create(&init_net, NETLINK_NFLOG,
312 EBT_ULOG_MAXNLGROUPS, NULL, NULL,
313 THIS_MODULE);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200314 if (!ebtulognl) {
315 printk(KERN_WARNING KBUILD_MODNAME ": out of memory trying to "
316 "call netlink_kernel_create\n");
317 ret = false;
318 } else if (ebt_register_watcher(&ulog) != 0) {
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800319 netlink_kernel_release(ebtulognl);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Jan Engelhardt19eda872008-10-08 11:35:13 +0200322 if (ret)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200323 nf_log_register(NFPROTO_BRIDGE, &ebt_ulog_logger);
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return ret;
326}
327
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800328static void __exit ebt_ulog_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 ebt_ulog_buff_t *ub;
331 int i;
332
Patrick McHardye92ad992007-02-12 11:11:55 -0800333 nf_log_unregister(&ebt_ulog_logger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 ebt_unregister_watcher(&ulog);
335 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
336 ub = &ulog_buffers[i];
337 if (timer_pending(&ub->timer))
338 del_timer(&ub->timer);
339 spin_lock_bh(&ub->lock);
340 if (ub->skb) {
341 kfree_skb(ub->skb);
342 ub->skb = NULL;
343 }
344 spin_unlock_bh(&ub->lock);
345 }
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800346 netlink_kernel_release(ebtulognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800349module_init(ebt_ulog_init);
350module_exit(ebt_ulog_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351MODULE_LICENSE("GPL");
352MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
Jan Engelhardtf776c4c2008-01-31 04:00:30 -0800353MODULE_DESCRIPTION("Ebtables: Packet logging to netlink using ULOG");