]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - net/netfilter/xt_mark.c
[NETFILTER]: Rename init functions.
[mirror_ubuntu-hirsute-kernel.git] / net / netfilter / xt_mark.c
CommitLineData
1da177e4
LT
1/* Kernel module to match NFMARK values. */
2
3/* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/skbuff.h>
12
2e4e6a17
HW
13#include <linux/netfilter/xt_mark.h>
14#include <linux/netfilter/x_tables.h>
1da177e4
LT
15
16MODULE_LICENSE("GPL");
17MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
18MODULE_DESCRIPTION("iptables mark matching module");
2e4e6a17
HW
19MODULE_ALIAS("ipt_mark");
20MODULE_ALIAS("ip6t_mark");
1da177e4
LT
21
22static int
23match(const struct sk_buff *skb,
24 const struct net_device *in,
25 const struct net_device *out,
c4986734 26 const struct xt_match *match,
1da177e4
LT
27 const void *matchinfo,
28 int offset,
2e4e6a17 29 unsigned int protoff,
1da177e4
LT
30 int *hotdrop)
31{
2e4e6a17 32 const struct xt_mark_info *info = matchinfo;
1da177e4
LT
33
34 return ((skb->nfmark & info->mask) == info->mark) ^ info->invert;
35}
36
37static int
38checkentry(const char *tablename,
2e4e6a17 39 const void *entry,
c4986734 40 const struct xt_match *match,
1da177e4
LT
41 void *matchinfo,
42 unsigned int matchsize,
43 unsigned int hook_mask)
44{
2e4e6a17 45 struct xt_mark_info *minfo = (struct xt_mark_info *) matchinfo;
bf3a46aa 46
bf3a46aa
HW
47 if (minfo->mark > 0xffffffff || minfo->mask > 0xffffffff) {
48 printk(KERN_WARNING "mark: only supports 32bit mark\n");
49 return 0;
50 }
1da177e4
LT
51 return 1;
52}
53
2e4e6a17
HW
54static struct xt_match mark_match = {
55 .name = "mark",
5d04bff0
PM
56 .match = match,
57 .matchsize = sizeof(struct xt_mark_info),
58 .checkentry = checkentry,
a45049c5 59 .family = AF_INET,
2e4e6a17
HW
60 .me = THIS_MODULE,
61};
62
63static struct xt_match mark6_match = {
1da177e4 64 .name = "mark",
5d04bff0
PM
65 .match = match,
66 .matchsize = sizeof(struct xt_mark_info),
67 .checkentry = checkentry,
a45049c5 68 .family = AF_INET6,
1da177e4
LT
69 .me = THIS_MODULE,
70};
71
65b4b4e8 72static int __init xt_mark_init(void)
1da177e4 73{
2e4e6a17 74 int ret;
a45049c5 75 ret = xt_register_match(&mark_match);
2e4e6a17
HW
76 if (ret)
77 return ret;
78
a45049c5 79 ret = xt_register_match(&mark6_match);
2e4e6a17 80 if (ret)
a45049c5 81 xt_unregister_match(&mark_match);
2e4e6a17
HW
82
83 return ret;
1da177e4
LT
84}
85
65b4b4e8 86static void __exit xt_mark_fini(void)
1da177e4 87{
a45049c5
PNA
88 xt_unregister_match(&mark_match);
89 xt_unregister_match(&mark6_match);
1da177e4
LT
90}
91
65b4b4e8
AM
92module_init(xt_mark_init);
93module_exit(xt_mark_fini);