blob: 442b0321acb94d34c390c08ddf0b6717aa505d9b [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
Ying Xue25cc4ae2013-02-03 20:32:57 +000073 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Mark Huangdcb7cd92006-08-13 18:57:54 -070075 if (!ub->skb)
76 return;
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /* last nlmsg needs NLMSG_DONE */
79 if (ub->qlen > 1)
80 ub->lastnlh->nlmsg_type = NLMSG_DONE;
81
Patrick McHardyac6d4392005-08-14 19:29:52 -070082 NETLINK_CB(ub->skb).dst_group = nlgroup + 1;
83 netlink_broadcast(ebtulognl, ub->skb, 0, nlgroup + 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 ub->qlen = 0;
86 ub->skb = NULL;
87}
88
89/* timer function to flush queue in flushtimeout time */
90static void ulog_timer(unsigned long data)
91{
92 spin_lock_bh(&ulog_buffers[data].lock);
93 if (ulog_buffers[data].skb)
94 ulog_send(data);
95 spin_unlock_bh(&ulog_buffers[data].lock);
96}
97
98static struct sk_buff *ulog_alloc_skb(unsigned int size)
99{
100 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800101 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800103 n = max(size, nlbufsiz);
Joe Perches0a9ee812011-08-29 14:17:25 -0700104 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800106 if (n > size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* try to allocate only as much as we need for
108 * current packet */
109 skb = alloc_skb(size, GFP_ATOMIC);
110 if (!skb)
Joe Perches0a9ee812011-08-29 14:17:25 -0700111 pr_debug("cannot even allocate buffer of size %ub\n",
112 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 }
115
116 return skb;
117}
118
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800119static void ebt_ulog_packet(unsigned int hooknr, const struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 const struct net_device *in, const struct net_device *out,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800121 const struct ebt_ulog_info *uloginfo, const char *prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 ebt_ulog_packet_msg_t *pm;
124 size_t size, copy_len;
125 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned int group = uloginfo->nlgroup;
127 ebt_ulog_buff_t *ub = &ulog_buffers[group];
128 spinlock_t *lock = &ub->lock;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700129 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 if ((uloginfo->cprange == 0) ||
132 (uloginfo->cprange > skb->len + ETH_HLEN))
133 copy_len = skb->len + ETH_HLEN;
134 else
135 copy_len = uloginfo->cprange;
136
137 size = NLMSG_SPACE(sizeof(*pm) + copy_len);
138 if (size > nlbufsiz) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100139 pr_debug("Size %Zd needed, but nlbufsiz=%d\n", size, nlbufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return;
141 }
142
143 spin_lock_bh(lock);
144
145 if (!ub->skb) {
146 if (!(ub->skb = ulog_alloc_skb(size)))
David S. Miller62566ca2012-06-26 21:23:42 -0700147 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 } else if (size > skb_tailroom(ub->skb)) {
149 ulog_send(group);
150
151 if (!(ub->skb = ulog_alloc_skb(size)))
David S. Miller62566ca2012-06-26 21:23:42 -0700152 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154
David S. Miller62566ca2012-06-26 21:23:42 -0700155 nlh = nlmsg_put(ub->skb, 0, ub->qlen, 0,
156 size - NLMSG_ALIGN(sizeof(*nlh)), 0);
157 if (!nlh) {
Dan Carpenterf7eadaf2012-06-30 01:48:53 +0000158 kfree_skb(ub->skb);
David S. Miller62566ca2012-06-26 21:23:42 -0700159 ub->skb = NULL;
160 goto unlock;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ub->qlen++;
163
David S. Miller62566ca2012-06-26 21:23:42 -0700164 pm = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* Fill in the ulog data */
167 pm->version = EBT_ULOG_VERSION;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700168 kt = ktime_get_real();
169 pm->stamp = ktime_to_timeval(kt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (ub->qlen == 1)
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700171 ub->skb->tstamp = kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 pm->data_len = copy_len;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800173 pm->mark = skb->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 pm->hook = hooknr;
175 if (uloginfo->prefix != NULL)
176 strcpy(pm->prefix, uloginfo->prefix);
177 else
178 *(pm->prefix) = '\0';
179
180 if (in) {
181 strcpy(pm->physindev, in->name);
182 /* If in isn't a bridge, then physindev==indev */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000183 if (br_port_exists(in))
184 /* rcu_read_lock()ed by nf_hook_slow */
185 strcpy(pm->indev, br_port_get_rcu(in)->br->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 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);
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000194 /* rcu_read_lock()ed by nf_hook_slow */
195 strcpy(pm->outdev, br_port_get_rcu(out)->br->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 } else
197 pm->outdev[0] = pm->physoutdev[0] = '\0';
198
199 if (skb_copy_bits(skb, -ETH_HLEN, pm->data, copy_len) < 0)
200 BUG();
201
202 if (ub->qlen > 1)
203 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
204
205 ub->lastnlh = nlh;
206
207 if (ub->qlen >= uloginfo->qthreshold)
208 ulog_send(group);
209 else if (!timer_pending(&ub->timer)) {
210 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
211 add_timer(&ub->timer);
212 }
213
214unlock:
215 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800218/* this function is registered with the netfilter core */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200219static void ebt_log_packet(u_int8_t pf, unsigned int hooknum,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800220 const struct sk_buff *skb, const struct net_device *in,
221 const struct net_device *out, const struct nf_loginfo *li,
222 const char *prefix)
223{
224 struct ebt_ulog_info loginfo;
225
226 if (!li || li->type != NF_LOG_TYPE_ULOG) {
227 loginfo.nlgroup = EBT_ULOG_DEFAULT_NLGROUP;
228 loginfo.cprange = 0;
229 loginfo.qthreshold = EBT_ULOG_DEFAULT_QTHRESHOLD;
230 loginfo.prefix[0] = '\0';
231 } else {
232 loginfo.nlgroup = li->u.ulog.group;
233 loginfo.cprange = li->u.ulog.copy_len;
234 loginfo.qthreshold = li->u.ulog.qthreshold;
235 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
236 }
237
238 ebt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix);
239}
240
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200241static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200242ebt_ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800243{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200244 ebt_ulog_packet(par->hooknum, skb, par->in, par->out,
245 par->targinfo, NULL);
Jan Engelhardt0ac6ab12008-10-08 11:35:13 +0200246 return EBT_CONTINUE;
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800247}
248
Jan Engelhardt135367b2010-03-19 17:16:42 +0100249static int ebt_ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200251 struct ebt_ulog_info *uloginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Jan Engelhardt18219d32008-10-08 11:35:13 +0200253 if (uloginfo->nlgroup > 31)
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100254 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 uloginfo->prefix[EBT_ULOG_PREFIX_LEN - 1] = '\0';
257
258 if (uloginfo->qthreshold > EBT_ULOG_MAX_QLEN)
259 uloginfo->qthreshold = EBT_ULOG_MAX_QLEN;
260
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Jan Engelhardt043ef462008-10-08 11:35:15 +0200264static struct xt_target ebt_ulog_tg_reg __read_mostly = {
265 .name = "ulog",
Jan Engelhardt001a18d2008-10-08 11:35:14 +0200266 .revision = 0,
267 .family = NFPROTO_BRIDGE,
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200268 .target = ebt_ulog_tg,
269 .checkentry = ebt_ulog_tg_check,
Florian Westphalfc0e3df2010-02-15 18:16:26 +0100270 .targetsize = sizeof(struct ebt_ulog_info),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .me = THIS_MODULE,
272};
273
Eric Leblond704b3ea2009-03-26 01:03:23 -0700274static struct nf_logger ebt_ulog_logger __read_mostly = {
Eric Leblond7249dee2009-03-26 01:04:28 -0700275 .name = "ebt_ulog",
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800276 .logfn = &ebt_log_packet,
277 .me = THIS_MODULE,
278};
279
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800280static int __init ebt_ulog_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Eric Leblond3b334d42009-03-26 01:04:02 -0700282 int ret;
Jan Engelhardt19eda872008-10-08 11:35:13 +0200283 int i;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000284 struct netlink_kernel_cfg cfg = {
285 .groups = EBT_ULOG_MAXNLGROUPS,
286 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (nlbufsiz >= 128*1024) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100289 pr_warning("Netlink buffer has to be <= 128kB,"
290 " please try a smaller nlbufsiz parameter.\n");
Eric Leblond3b334d42009-03-26 01:04:02 -0700291 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
294 /* initialize ulog_buffers */
295 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
Patrick McHardye6f689d2007-03-23 11:16:30 -0700296 setup_timer(&ulog_buffers[i].timer, ulog_timer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 spin_lock_init(&ulog_buffers[i].lock);
298 }
299
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000300 ebtulognl = netlink_kernel_create(&init_net, NETLINK_NFLOG, &cfg);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100301 if (!ebtulognl)
Eric Leblond3b334d42009-03-26 01:04:02 -0700302 ret = -ENOMEM;
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100303 else if ((ret = xt_register_target(&ebt_ulog_tg_reg)) != 0)
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800304 netlink_kernel_release(ebtulognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Eric Leblond3b334d42009-03-26 01:04:02 -0700306 if (ret == 0)
Jan Engelhardtee999d82008-10-08 11:35:01 +0200307 nf_log_register(NFPROTO_BRIDGE, &ebt_ulog_logger);
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return ret;
310}
311
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800312static void __exit ebt_ulog_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 ebt_ulog_buff_t *ub;
315 int i;
316
Patrick McHardye92ad992007-02-12 11:11:55 -0800317 nf_log_unregister(&ebt_ulog_logger);
Jan Engelhardt043ef462008-10-08 11:35:15 +0200318 xt_unregister_target(&ebt_ulog_tg_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
320 ub = &ulog_buffers[i];
Ying Xue25cc4ae2013-02-03 20:32:57 +0000321 del_timer(&ub->timer);
Gao fengfa900b92013-02-18 16:59:10 +0000322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (ub->skb) {
324 kfree_skb(ub->skb);
325 ub->skb = NULL;
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -0800328 netlink_kernel_release(ebtulognl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800331module_init(ebt_ulog_init);
332module_exit(ebt_ulog_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333MODULE_LICENSE("GPL");
334MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
Jan Engelhardtf776c4c2008-01-31 04:00:30 -0800335MODULE_DESCRIPTION("Ebtables: Packet logging to netlink using ULOG");