]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/bridge/netfilter/ebt_nflog.c
netfilter: change Ebtables function signatures to match Xtables's
[net-next-2.6.git] / net / bridge / netfilter / ebt_nflog.c
CommitLineData
e7bfd0a1
PW
1/*
2 * ebt_nflog
3 *
4 * Author:
5 * Peter Warasin <peter@endian.com>
6 *
7 * February, 2008
8 *
9 * Based on:
10 * xt_NFLOG.c, (C) 2006 by Patrick McHardy <kaber@trash.net>
11 * ebt_ulog.c, (C) 2004 by Bart De Schuymer <bdschuym@pandora.be>
12 *
13 */
14
15#include <linux/module.h>
16#include <linux/spinlock.h>
18219d3f 17#include <linux/netfilter/x_tables.h>
e7bfd0a1
PW
18#include <linux/netfilter_bridge/ebtables.h>
19#include <linux/netfilter_bridge/ebt_nflog.h>
20#include <net/netfilter/nf_log.h>
21
2d06d4a5
JE
22static unsigned int
23ebt_nflog_tg(struct sk_buff *skb, const struct net_device *in,
24 const struct net_device *out, unsigned int hooknr,
25 const struct xt_target *target, const void *data)
e7bfd0a1
PW
26{
27 struct ebt_nflog_info *info = (struct ebt_nflog_info *)data;
28 struct nf_loginfo li;
29
30 li.type = NF_LOG_TYPE_ULOG;
31 li.u.ulog.copy_len = info->len;
32 li.u.ulog.group = info->group;
33 li.u.ulog.qthreshold = info->threshold;
34
35 nf_log_packet(PF_BRIDGE, hooknr, skb, in, out, &li, "%s", info->prefix);
0ac6ab1f 36 return EBT_CONTINUE;
e7bfd0a1
PW
37}
38
2d06d4a5
JE
39static bool
40ebt_nflog_tg_check(const char *table, const void *e,
41 const struct xt_target *target, void *data,
42 unsigned int hookmask)
e7bfd0a1
PW
43{
44 struct ebt_nflog_info *info = (struct ebt_nflog_info *)data;
45
e7bfd0a1 46 if (info->flags & ~EBT_NFLOG_MASK)
19eda879 47 return false;
e7bfd0a1 48 info->prefix[EBT_NFLOG_PREFIX_SIZE - 1] = '\0';
19eda879 49 return true;
e7bfd0a1
PW
50}
51
52static struct ebt_watcher nflog __read_mostly = {
53 .name = EBT_NFLOG_WATCHER,
001a18d3
JE
54 .revision = 0,
55 .family = NFPROTO_BRIDGE,
2d06d4a5
JE
56 .target = ebt_nflog_tg,
57 .checkentry = ebt_nflog_tg_check,
18219d3f 58 .targetsize = XT_ALIGN(sizeof(struct ebt_nflog_info)),
e7bfd0a1
PW
59 .me = THIS_MODULE,
60};
61
62static int __init ebt_nflog_init(void)
63{
64 return ebt_register_watcher(&nflog);
65}
66
67static void __exit ebt_nflog_fini(void)
68{
69 ebt_unregister_watcher(&nflog);
70}
71
72module_init(ebt_nflog_init);
73module_exit(ebt_nflog_fini);
74MODULE_LICENSE("GPL");
75MODULE_AUTHOR("Peter Warasin <peter@endian.com>");
76MODULE_DESCRIPTION("ebtables NFLOG netfilter logging module");