]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/bridge/netfilter/ebt_nflog.c
netfilter: xtables: change xt_target.checkentry return type
[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 22static unsigned int
7eb35586 23ebt_nflog_tg(struct sk_buff *skb, const struct xt_target_param *par)
e7bfd0a1 24{
7eb35586 25 const struct ebt_nflog_info *info = par->targinfo;
e7bfd0a1
PW
26 struct nf_loginfo li;
27
28 li.type = NF_LOG_TYPE_ULOG;
29 li.u.ulog.copy_len = info->len;
30 li.u.ulog.group = info->group;
31 li.u.ulog.qthreshold = info->threshold;
32
7eb35586
JE
33 nf_log_packet(PF_BRIDGE, par->hooknum, skb, par->in, par->out,
34 &li, "%s", info->prefix);
0ac6ab1f 35 return EBT_CONTINUE;
e7bfd0a1
PW
36}
37
135367b8 38static int ebt_nflog_tg_check(const struct xt_tgchk_param *par)
e7bfd0a1 39{
af5d6dc2 40 struct ebt_nflog_info *info = par->targinfo;
e7bfd0a1 41
e7bfd0a1 42 if (info->flags & ~EBT_NFLOG_MASK)
19eda879 43 return false;
e7bfd0a1 44 info->prefix[EBT_NFLOG_PREFIX_SIZE - 1] = '\0';
19eda879 45 return true;
e7bfd0a1
PW
46}
47
043ef46c
JE
48static struct xt_target ebt_nflog_tg_reg __read_mostly = {
49 .name = "nflog",
50 .revision = 0,
51 .family = NFPROTO_BRIDGE,
52 .target = ebt_nflog_tg,
2d06d4a5 53 .checkentry = ebt_nflog_tg_check,
fc0e3df4 54 .targetsize = sizeof(struct ebt_nflog_info),
043ef46c 55 .me = THIS_MODULE,
e7bfd0a1
PW
56};
57
58static int __init ebt_nflog_init(void)
59{
043ef46c 60 return xt_register_target(&ebt_nflog_tg_reg);
e7bfd0a1
PW
61}
62
63static void __exit ebt_nflog_fini(void)
64{
043ef46c 65 xt_unregister_target(&ebt_nflog_tg_reg);
e7bfd0a1
PW
66}
67
68module_init(ebt_nflog_init);
69module_exit(ebt_nflog_fini);
70MODULE_LICENSE("GPL");
71MODULE_AUTHOR("Peter Warasin <peter@endian.com>");
72MODULE_DESCRIPTION("ebtables NFLOG netfilter logging module");