blob: 7c470c371e14f82a9734d3da4d0bb0a177169251 [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>
Hong zhi guo573ce262013-03-27 06:47:04 +000038#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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>
Gao feng5b175b72013-03-24 23:50:43 +000044#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/sock.h>
46#include "../br_private.h"
47
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080048static unsigned int nlbufsiz = NLMSG_GOODSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049module_param(nlbufsiz, uint, 0600);
50MODULE_PARM_DESC(nlbufsiz, "netlink buffer size (number of bytes) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090051 "(defaults to 4096)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53static unsigned int flushtimeout = 10;
54module_param(flushtimeout, uint, 0600);
55MODULE_PARM_DESC(flushtimeout, "buffer flush timeout (hundredths ofa second) "
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090056 "(defaults to 10)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58typedef struct {
59 unsigned int qlen; /* number of nlmsgs' in the skb */
60 struct nlmsghdr *lastnlh; /* netlink header of last msg in skb */
61 struct sk_buff *skb; /* the pre-allocated skb */
62 struct timer_list timer; /* the timer function */
63 spinlock_t lock; /* the per-queue lock */
64} ebt_ulog_buff_t;
65
Gao feng5b175b72013-03-24 23:50:43 +000066static int ebt_ulog_net_id __read_mostly;
67struct ebt_ulog_net {
68 unsigned int nlgroup[EBT_ULOG_MAXNLGROUPS];
69 ebt_ulog_buff_t ulog_buffers[EBT_ULOG_MAXNLGROUPS];
70 struct sock *ebtulognl;
71};
72
73static struct ebt_ulog_net *ebt_ulog_pernet(struct net *net)
74{
75 return net_generic(net, ebt_ulog_net_id);
76}
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* send one ulog_buff_t to userspace */
Gao feng5b175b72013-03-24 23:50:43 +000079static void ulog_send(struct ebt_ulog_net *ebt, unsigned int nlgroup)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Gao feng5b175b72013-03-24 23:50:43 +000081 ebt_ulog_buff_t *ub = &ebt->ulog_buffers[nlgroup];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Ying Xue25cc4ae2013-02-03 20:32:57 +000083 del_timer(&ub->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Mark Huangdcb7cd92006-08-13 18:57:54 -070085 if (!ub->skb)
86 return;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* last nlmsg needs NLMSG_DONE */
89 if (ub->qlen > 1)
90 ub->lastnlh->nlmsg_type = NLMSG_DONE;
91
Patrick McHardyac6d4392005-08-14 19:29:52 -070092 NETLINK_CB(ub->skb).dst_group = nlgroup + 1;
Gao feng5b175b72013-03-24 23:50:43 +000093 netlink_broadcast(ebt->ebtulognl, ub->skb, 0, nlgroup + 1, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 ub->qlen = 0;
96 ub->skb = NULL;
97}
98
99/* timer function to flush queue in flushtimeout time */
100static void ulog_timer(unsigned long data)
101{
Gao feng5b175b72013-03-24 23:50:43 +0000102 struct ebt_ulog_net *ebt = container_of((void *)data,
103 struct ebt_ulog_net,
104 nlgroup[*(unsigned int *)data]);
105
106 ebt_ulog_buff_t *ub = &ebt->ulog_buffers[*(unsigned int *)data];
107 spin_lock_bh(&ub->lock);
108 if (ub->skb)
109 ulog_send(ebt, *(unsigned int *)data);
110 spin_unlock_bh(&ub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static struct sk_buff *ulog_alloc_skb(unsigned int size)
114{
115 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800116 unsigned int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800118 n = max(size, nlbufsiz);
Joe Perches0a9ee812011-08-29 14:17:25 -0700119 skb = alloc_skb(n, GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800121 if (n > size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 /* try to allocate only as much as we need for
123 * current packet */
124 skb = alloc_skb(size, GFP_ATOMIC);
125 if (!skb)
Joe Perches0a9ee812011-08-29 14:17:25 -0700126 pr_debug("cannot even allocate buffer of size %ub\n",
127 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129 }
130
131 return skb;
132}
133
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000134static void ebt_ulog_packet(struct net *net, unsigned int hooknr,
135 const struct sk_buff *skb,
136 const struct net_device *in,
137 const struct net_device *out,
138 const struct ebt_ulog_info *uloginfo,
139 const char *prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 ebt_ulog_packet_msg_t *pm;
142 size_t size, copy_len;
143 struct nlmsghdr *nlh;
Gao feng5b175b72013-03-24 23:50:43 +0000144 struct ebt_ulog_net *ebt = ebt_ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 unsigned int group = uloginfo->nlgroup;
Gao feng5b175b72013-03-24 23:50:43 +0000146 ebt_ulog_buff_t *ub = &ebt->ulog_buffers[group];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 spinlock_t *lock = &ub->lock;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700148 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if ((uloginfo->cprange == 0) ||
151 (uloginfo->cprange > skb->len + ETH_HLEN))
152 copy_len = skb->len + ETH_HLEN;
153 else
154 copy_len = uloginfo->cprange;
155
Hong zhi guo573ce262013-03-27 06:47:04 +0000156 size = nlmsg_total_size(sizeof(*pm) + copy_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (size > nlbufsiz) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100158 pr_debug("Size %Zd needed, but nlbufsiz=%d\n", size, nlbufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return;
160 }
161
162 spin_lock_bh(lock);
163
164 if (!ub->skb) {
165 if (!(ub->skb = ulog_alloc_skb(size)))
David S. Miller62566ca2012-06-26 21:23:42 -0700166 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 } else if (size > skb_tailroom(ub->skb)) {
Gao feng5b175b72013-03-24 23:50:43 +0000168 ulog_send(ebt, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (!(ub->skb = ulog_alloc_skb(size)))
David S. Miller62566ca2012-06-26 21:23:42 -0700171 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
David S. Miller62566ca2012-06-26 21:23:42 -0700174 nlh = nlmsg_put(ub->skb, 0, ub->qlen, 0,
175 size - NLMSG_ALIGN(sizeof(*nlh)), 0);
176 if (!nlh) {
Dan Carpenterf7eadaf2012-06-30 01:48:53 +0000177 kfree_skb(ub->skb);
David S. Miller62566ca2012-06-26 21:23:42 -0700178 ub->skb = NULL;
179 goto unlock;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ub->qlen++;
182
David S. Miller62566ca2012-06-26 21:23:42 -0700183 pm = nlmsg_data(nlh);
Mathias Krauseca0a1062013-09-30 22:05:07 +0200184 memset(pm, 0, sizeof(*pm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* Fill in the ulog data */
187 pm->version = EBT_ULOG_VERSION;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700188 kt = ktime_get_real();
189 pm->stamp = ktime_to_timeval(kt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (ub->qlen == 1)
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700191 ub->skb->tstamp = kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 pm->data_len = copy_len;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800193 pm->mark = skb->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 pm->hook = hooknr;
195 if (uloginfo->prefix != NULL)
196 strcpy(pm->prefix, uloginfo->prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 if (in) {
199 strcpy(pm->physindev, in->name);
200 /* If in isn't a bridge, then physindev==indev */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000201 if (br_port_exists(in))
202 /* rcu_read_lock()ed by nf_hook_slow */
203 strcpy(pm->indev, br_port_get_rcu(in)->br->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 else
205 strcpy(pm->indev, in->name);
Mathias Krauseca0a1062013-09-30 22:05:07 +0200206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 if (out) {
209 /* If out exists, then out is a bridge port */
210 strcpy(pm->physoutdev, out->name);
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000211 /* rcu_read_lock()ed by nf_hook_slow */
212 strcpy(pm->outdev, br_port_get_rcu(out)->br->dev->name);
Mathias Krauseca0a1062013-09-30 22:05:07 +0200213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (skb_copy_bits(skb, -ETH_HLEN, pm->data, copy_len) < 0)
216 BUG();
217
218 if (ub->qlen > 1)
219 ub->lastnlh->nlmsg_flags |= NLM_F_MULTI;
220
221 ub->lastnlh = nlh;
222
223 if (ub->qlen >= uloginfo->qthreshold)
Gao feng5b175b72013-03-24 23:50:43 +0000224 ulog_send(ebt, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 else if (!timer_pending(&ub->timer)) {
226 ub->timer.expires = jiffies + flushtimeout * HZ / 100;
227 add_timer(&ub->timer);
228 }
229
230unlock:
231 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800234/* this function is registered with the netfilter core */
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000235static void ebt_log_packet(struct net *net, u_int8_t pf, unsigned int hooknum,
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800236 const struct sk_buff *skb, const struct net_device *in,
237 const struct net_device *out, const struct nf_loginfo *li,
238 const char *prefix)
239{
240 struct ebt_ulog_info loginfo;
241
242 if (!li || li->type != NF_LOG_TYPE_ULOG) {
243 loginfo.nlgroup = EBT_ULOG_DEFAULT_NLGROUP;
244 loginfo.cprange = 0;
245 loginfo.qthreshold = EBT_ULOG_DEFAULT_QTHRESHOLD;
246 loginfo.prefix[0] = '\0';
247 } else {
248 loginfo.nlgroup = li->u.ulog.group;
249 loginfo.cprange = li->u.ulog.copy_len;
250 loginfo.qthreshold = li->u.ulog.qthreshold;
251 strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix));
252 }
253
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000254 ebt_ulog_packet(net, hooknum, skb, in, out, &loginfo, prefix);
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800255}
256
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200257static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200258ebt_ulog_tg(struct sk_buff *skb, const struct xt_action_param *par)
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800259{
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000260 struct net *net = dev_net(par->in ? par->in : par->out);
261
262 ebt_ulog_packet(net, par->hooknum, skb, par->in, par->out,
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200263 par->targinfo, NULL);
Jan Engelhardt0ac6ab12008-10-08 11:35:13 +0200264 return EBT_CONTINUE;
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800265}
266
Jan Engelhardt135367b2010-03-19 17:16:42 +0100267static int ebt_ulog_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200269 struct ebt_ulog_info *uloginfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Pablo Neira Ayusode94c452013-05-22 22:42:37 +0000271 if (!par->net->xt.ebt_ulog_warn_deprecated) {
272 pr_info("ebt_ulog is deprecated and it will be removed soon, "
273 "use ebt_nflog instead\n");
274 par->net->xt.ebt_ulog_warn_deprecated = true;
275 }
276
Jan Engelhardt18219d32008-10-08 11:35:13 +0200277 if (uloginfo->nlgroup > 31)
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100278 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 uloginfo->prefix[EBT_ULOG_PREFIX_LEN - 1] = '\0';
281
282 if (uloginfo->qthreshold > EBT_ULOG_MAX_QLEN)
283 uloginfo->qthreshold = EBT_ULOG_MAX_QLEN;
284
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Jan Engelhardt043ef462008-10-08 11:35:15 +0200288static struct xt_target ebt_ulog_tg_reg __read_mostly = {
289 .name = "ulog",
Jan Engelhardt001a18d2008-10-08 11:35:14 +0200290 .revision = 0,
291 .family = NFPROTO_BRIDGE,
Jan Engelhardt2d06d4a2008-10-08 11:35:15 +0200292 .target = ebt_ulog_tg,
293 .checkentry = ebt_ulog_tg_check,
Florian Westphalfc0e3df2010-02-15 18:16:26 +0100294 .targetsize = sizeof(struct ebt_ulog_info),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 .me = THIS_MODULE,
296};
297
Eric Leblond704b3ea2009-03-26 01:03:23 -0700298static struct nf_logger ebt_ulog_logger __read_mostly = {
Eric Leblond7249dee2009-03-26 01:04:28 -0700299 .name = "ebt_ulog",
Bart De Schuymerd5228a42005-12-13 23:14:08 -0800300 .logfn = &ebt_log_packet,
301 .me = THIS_MODULE,
302};
303
Gao feng5b175b72013-03-24 23:50:43 +0000304static int __net_init ebt_ulog_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Jan Engelhardt19eda872008-10-08 11:35:13 +0200306 int i;
Gao feng5b175b72013-03-24 23:50:43 +0000307 struct ebt_ulog_net *ebt = ebt_ulog_pernet(net);
308
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000309 struct netlink_kernel_cfg cfg = {
310 .groups = EBT_ULOG_MAXNLGROUPS,
311 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* initialize ulog_buffers */
314 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
Gao feng5b175b72013-03-24 23:50:43 +0000315 ebt->nlgroup[i] = i;
316 setup_timer(&ebt->ulog_buffers[i].timer, ulog_timer,
317 (unsigned long)&ebt->nlgroup[i]);
318 spin_lock_init(&ebt->ulog_buffers[i].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
Gao feng5b175b72013-03-24 23:50:43 +0000321 ebt->ebtulognl = netlink_kernel_create(net, NETLINK_NFLOG, &cfg);
322 if (!ebt->ebtulognl)
323 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Gao feng5b175b72013-03-24 23:50:43 +0000325 nf_log_set(net, NFPROTO_BRIDGE, &ebt_ulog_logger);
326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Gao feng5b175b72013-03-24 23:50:43 +0000329static void __net_exit ebt_ulog_net_fini(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int i;
Gao feng5b175b72013-03-24 23:50:43 +0000332 struct ebt_ulog_net *ebt = ebt_ulog_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Gao feng5b175b72013-03-24 23:50:43 +0000334 nf_log_unset(net, &ebt_ulog_logger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 for (i = 0; i < EBT_ULOG_MAXNLGROUPS; i++) {
Gao feng5b175b72013-03-24 23:50:43 +0000336 ebt_ulog_buff_t *ub = &ebt->ulog_buffers[i];
Ying Xue25cc4ae2013-02-03 20:32:57 +0000337 del_timer(&ub->timer);
Gao fengfa900b92013-02-18 16:59:10 +0000338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (ub->skb) {
340 kfree_skb(ub->skb);
341 ub->skb = NULL;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Gao feng5b175b72013-03-24 23:50:43 +0000344 netlink_kernel_release(ebt->ebtulognl);
345}
346
347static struct pernet_operations ebt_ulog_net_ops = {
348 .init = ebt_ulog_net_init,
349 .exit = ebt_ulog_net_fini,
350 .id = &ebt_ulog_net_id,
351 .size = sizeof(struct ebt_ulog_net),
352};
353
354static int __init ebt_ulog_init(void)
355{
356 int ret;
357
358 if (nlbufsiz >= 128*1024) {
359 pr_warn("Netlink buffer has to be <= 128kB,"
360 "please try a smaller nlbufsiz parameter.\n");
361 return -EINVAL;
362 }
363
364 ret = register_pernet_subsys(&ebt_ulog_net_ops);
365 if (ret)
366 goto out_pernet;
367
368 ret = xt_register_target(&ebt_ulog_tg_reg);
369 if (ret)
370 goto out_target;
371
372 nf_log_register(NFPROTO_BRIDGE, &ebt_ulog_logger);
373
374 return 0;
375
376out_target:
377 unregister_pernet_subsys(&ebt_ulog_net_ops);
378out_pernet:
379 return ret;
380}
381
382static void __exit ebt_ulog_fini(void)
383{
384 nf_log_unregister(&ebt_ulog_logger);
385 xt_unregister_target(&ebt_ulog_tg_reg);
386 unregister_pernet_subsys(&ebt_ulog_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800389module_init(ebt_ulog_init);
390module_exit(ebt_ulog_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391MODULE_LICENSE("GPL");
392MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
Jan Engelhardtf776c4c2008-01-31 04:00:30 -0800393MODULE_DESCRIPTION("Ebtables: Packet logging to netlink using ULOG");