blob: ae3c7cef1484ff16c0a5ff187e23ea4c799de775 [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 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/spinlock.h>
34#include <linux/socket.h>
35#include <linux/skbuff.h>
36#include <linux/kernel.h>
37#include <linux/timer.h>
38#include <linux/netlink.h>
39#include <linux/netdevice.h>
Jan Engelhardt18219d32008-10-08 11:35:13 +020040#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/netfilter_bridge/ebtables.h>
42#include <linux/netfilter_bridge/ebt_ulog.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080043#include <net/netfilter/nf_log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <net/sock.h>
45#include "../br_private.h"
46
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080047static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048module_param(nlbufsiz, uint, 0600);
49MODULE_PARM_DESC(nlbufsiz, "netlink buffer size (number of bytes) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090050 "(defaults to 4096)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static unsigned int flushtimeout = 10;
53module_param(flushtimeout, uint, 0600);
54MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths ofa second) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090055 "(defaults to 10)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57typedef struct {
58 unsigned int qlen; /* number of nlmsgs' in the skb */
59 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
60 struct sk_buff *skb; /* the pre-allocated skb */
61 struct timer_list timer; /* the timer function */
62 spinlock_t lock; /* the per-queue lock */
63} ebt_ulog_buff_t;
64
65static ebt_ulog_buff_t ulog_buffers[EBT_ULOG_MAXNLGROUPS];
66static struct sock *ebtulognl;
67
68/* send one ulog_buff_t to userspace */
69static void ulog_send(unsigned int nlgroup)
70{
71 ebt_ulog_buff_t *ub = &ulog_buffers[nlgroup];
72
73 if (timer_pending(&ub->timer))
74 del_timer(&ub->timer);
75
Mark Huangdcb7cd92006-08-13 18:57:54 -070076 if (!ub->skb)
77 return;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /* last nlmsg needs NLMSG_DONE */
80 if (ub->qlen > 1)
81 ub->lastnlh->nlmsg_type = NLMSG_DONE;
82
Patrick McHardyac6d4392005-08-14 19:29:52 -070083 NETLINK_CB(ub->skb).dst_group = nlgroup + 1;
84 netlink_broadcast(ebtulognl, ub->skb, 0, nlgroup + 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 ub->qlen = 0;
87 ub->skb = NULL;
88}
89
90/* timer function to flush queue in flushtimeout time */
91static void ulog_timer(unsigned long data)
92{
93 spin_lock_bh(&ulog_buffers[data].lock);
94 if (ulog_buffers[data].skb)
95 ulog_send(data);
96 spin_unlock_bh(&ulog_buffers[data].lock);
97}
98
99static struct sk_buff *ulog_alloc_skb(unsigned int size)
100{
101 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800102 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800104 n = max(size, nlbufsiz);
105 skb = alloc_skb(n, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (!skb) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100107 pr_debug("cannot alloc whole buffer of size %ub!\n", n);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800108 if (n > size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* try to allocate only as much as we need for
110 * current packet */
111 skb = alloc_skb(size, GFP_ATOMIC);
112 if (!skb)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100113 pr_debug("cannot even allocate "
114 "buffer of size %ub\n", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116 }
117
118 return skb;
119}
120
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800121static void ebt_ulog_packet(unsigned int hooknr, const struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 const struct net_device *in, const struct net_device *out,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800123 const struct ebt_ulog_info *uloginfo, const char *prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 ebt_ulog_packet_msg_t *pm;
126 size_t size, copy_len;
127 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 unsigned int group = uloginfo->nlgroup;
129 ebt_ulog_buff_t *ub = &ulog_buffers[group];
130 spinlock_t *lock = &ub->lock;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700131 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if ((uloginfo->cprange == 0) ||
134 (uloginfo->cprange > skb->len + ETH_HLEN))
135 copy_len = skb->len + ETH_HLEN;
136 else
137 copy_len = uloginfo->cprange;
138
139 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
140 if (size > nlbufsiz) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100141 pr_debug("Size %Zd needed, but nlbufsiz=%d\n", size, nlbufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return;
143 }
144
145 spin_lock_bh(lock);
146
147 if (!ub->skb) {
148 if (!(ub->skb = ulog_alloc_skb(size)))
149 goto alloc_failure;
150 } else if (size > skb_tailroom(ub->skb)) {
151 ulog_send(group);
152
153 if (!(ub->skb = ulog_alloc_skb(size)))
154 goto alloc_failure;
155 }
156
157 nlh = NLMSG_PUT(ub->skb, 0, ub->qlen, 0,
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900158 size - NLMSG_ALIGN(sizeof(*nlh)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ub->qlen++;
160
161 pm = NLMSG_DATA(nlh);
162
163 /* Fill in the ulog data */
164 pm->version = EBT_ULOG_VERSION;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700165 kt = ktime_get_real();
166 pm->stamp = ktime_to_timeval(kt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (ub->qlen == 1)
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700168 ub->skb->tstamp = kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 pm->data_len = copy_len;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800170 pm->mark = skb->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 pm->hook = hooknr;
172 if (uloginfo->prefix != NULL)
173 strcpy(pm->prefix, uloginfo->prefix);
174 else
175 *(pm->prefix) = '\0';
176
177 if (in) {
178 strcpy(pm->physindev, in->name);
179 /* If in isn't a bridge, then physindev==indev */
180 if (in->br_port)
181 strcpy(pm->indev, in->br_port->br->dev->name);
182 else
183 strcpy(pm->indev, in->name);
184 } else
185 pm->indev[0] = pm->physindev[0] = '\0';
186
187 if (out) {
188 /* If out exists, then out is a bridge port */
189 strcpy(pm->physoutdev, out->name);
190 strcpy(pm->outdev, out->br_port->br->dev->name);
191 } else
192 pm->outdev[0] = pm->physoutdev[0] = '\0';
193
194 if (skb_copy_bits(skb, -ETH_HLEN, pm->data, copy_len) < 0)
195 BUG();
196
197 if (ub->qlen > 1)
198 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
199
200 ub->lastnlh = nlh;
201
202 if (ub->qlen >= uloginfo->qthreshold)
203 ulog_send(group);
204 else if (!timer_pending(&ub->timer)) {
205 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
206 add_timer(&ub->timer);
207 }
208
209unlock:
210 spin_unlock_bh(lock);
211
212 return;
213
214nlmsg_failure:
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100215 pr_debug("error during NLMSG_PUT. This should "
216 "not happen, please report to author.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto unlock;
218alloc_failure:
219 goto unlock;
220}
221
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800222/* this function is registered with the netfilter core */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200223static void ebt_log_packet(u_int8_t pf, unsigned int hooknum,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800224 const struct sk_buff *skb, const struct net_device *in,
225 const struct net_device *out, const struct nf_loginfo *li,
226 const char *prefix)
227{
228 struct ebt_ulog_info loginfo;
229
230 if (!li || li->type != NF_LOG_TYPE_ULOG) {
231 loginfo.nlgroup = EBT_ULOG_DEFAULT_NLGROUP;
232 loginfo.cprange = 0;
233 loginfo.qthreshold = EBT_ULOG_DEFAULT_QTHRESHOLD;
234 loginfo.prefix[0] = '\0';
235 } else {
236 loginfo.nlgroup = li->u.ulog.group;
237 loginfo.cprange = li->u.ulog.copy_len;
238 loginfo.qthreshold = li->u.ulog.qthreshold;
239 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
240 }
241
242 ebt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
243}
244
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200245static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200246ebt_ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800247{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200248 ebt_ulog_packet(par->hooknum, skb, par->in, par->out,
249 par->targinfo, NULL);
Jan Engelhardt0ac6ab12008-10-08 11:35:13 +0200250 return EBT_CONTINUE;
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800251}
252
Jan Engelhardt135367b2010-03-19 17:16:42 +0100253static int ebt_ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200255 struct ebt_ulog_info *uloginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jan Engelhardt18219d32008-10-08 11:35:13 +0200257 if (uloginfo->nlgroup > 31)
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 uloginfo->prefix[EBT_ULOG_PREFIX_LEN - 1] = '\0';
261
262 if (uloginfo->qthreshold > EBT_ULOG_MAX_QLEN)
263 uloginfo->qthreshold = EBT_ULOG_MAX_QLEN;
264
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Jan Engelhardt043ef462008-10-08 11:35:15 +0200268static struct xt_target ebt_ulog_tg_reg __read_mostly = {
269 .name = "ulog",
Jan Engelhardt001a18d2008-10-08 11:35:14 +0200270 .revision = 0,
271 .family = NFPROTO_BRIDGE,
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200272 .target = ebt_ulog_tg,
273 .checkentry = ebt_ulog_tg_check,
Florian Westphalfc0e3df2010-02-15 18:16:26 +0100274 .targetsize = sizeof(struct ebt_ulog_info),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 .me = THIS_MODULE,
276};
277
Eric Leblond704b3ea2009-03-26 01:03:23 -0700278static struct nf_logger ebt_ulog_logger __read_mostly = {
Eric Leblond7249dee2009-03-26 01:04:28 -0700279 .name = "ebt_ulog",
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800280 .logfn = &ebt_log_packet,
281 .me = THIS_MODULE,
282};
283
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800284static int __init ebt_ulog_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Eric Leblond3b334d42009-03-26 01:04:02 -0700286 int ret;
Jan Engelhardt19eda872008-10-08 11:35:13 +0200287 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 if (nlbufsiz >= 128*1024) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100290 pr_warning("Netlink buffer has to be <= 128kB,"
291 " please try a smaller nlbufsiz parameter.\n");
Eric Leblond3b334d42009-03-26 01:04:02 -0700292 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
295 /* initialize ulog_buffers */
296 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
Patrick McHardye6f689d2007-03-23 11:16:30 -0700297 setup_timer(&ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 spin_lock_init(&ulog_buffers[i].lock);
299 }
300
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200301 ebtulognl = netlink_kernel_create(&init_net, NETLINK_NFLOG,
302 EBT_ULOG_MAXNLGROUPS, NULL, NULL,
303 THIS_MODULE);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100304 if (!ebtulognl)
Eric Leblond3b334d42009-03-26 01:04:02 -0700305 ret = -ENOMEM;
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100306 else if ((ret = xt_register_target(&ebt_ulog_tg_reg)) != 0)
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800307 netlink_kernel_release(ebtulognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Eric Leblond3b334d42009-03-26 01:04:02 -0700309 if (ret == 0)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200310 nf_log_register(NFPROTO_BRIDGE, &ebt_ulog_logger);
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return ret;
313}
314
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800315static void __exit ebt_ulog_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 ebt_ulog_buff_t *ub;
318 int i;
319
Patrick McHardye92ad992007-02-12 11:11:55 -0800320 nf_log_unregister(&ebt_ulog_logger);
Jan Engelhardt043ef462008-10-08 11:35:15 +0200321 xt_unregister_target(&ebt_ulog_tg_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
323 ub = &ulog_buffers[i];
324 if (timer_pending(&ub->timer))
325 del_timer(&ub->timer);
326 spin_lock_bh(&ub->lock);
327 if (ub->skb) {
328 kfree_skb(ub->skb);
329 ub->skb = NULL;
330 }
331 spin_unlock_bh(&ub->lock);
332 }
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800333 netlink_kernel_release(ebtulognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800336module_init(ebt_ulog_init);
337module_exit(ebt_ulog_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338MODULE_LICENSE("GPL");
339MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
Jan Engelhardtf776c4c2008-01-31 04:00:30 -0800340MODULE_DESCRIPTION("Ebtables: Packet logging to netlink using ULOG");