Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / netfilter / xt_mark.c
blob9f78f6120fbd4c37ba0793e0cd1e3f78e944a085
1 /*
2 * xt_mark - Netfilter module to match NFMARK value
4 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
6 * Jan Engelhardt <jengelh@computergmbh.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <linux/netfilter/xt_mark.h>
17 #include <linux/netfilter/x_tables.h>
19 MODULE_LICENSE("GPL");
20 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
21 MODULE_DESCRIPTION("Xtables: packet mark match");
22 MODULE_ALIAS("ipt_mark");
23 MODULE_ALIAS("ip6t_mark");
25 static bool
26 mark_mt_v0(const struct sk_buff *skb, const struct net_device *in,
27 const struct net_device *out, const struct xt_match *match,
28 const void *matchinfo, int offset, unsigned int protoff,
29 bool *hotdrop)
31 const struct xt_mark_info *info = matchinfo;
33 return ((skb->mark & info->mask) == info->mark) ^ info->invert;
36 static bool
37 mark_mt(const struct sk_buff *skb, const struct net_device *in,
38 const struct net_device *out, const struct xt_match *match,
39 const void *matchinfo, int offset, unsigned int protoff, bool *hotdrop)
41 const struct xt_mark_mtinfo1 *info = matchinfo;
43 return ((skb->mark & info->mask) == info->mark) ^ info->invert;
46 static bool
47 mark_mt_check_v0(const char *tablename, const void *entry,
48 const struct xt_match *match, void *matchinfo,
49 unsigned int hook_mask)
51 const struct xt_mark_info *minfo = matchinfo;
53 if (minfo->mark > 0xffffffff || minfo->mask > 0xffffffff) {
54 printk(KERN_WARNING "mark: only supports 32bit mark\n");
55 return false;
57 return true;
60 #ifdef CONFIG_COMPAT
61 struct compat_xt_mark_info {
62 compat_ulong_t mark, mask;
63 u_int8_t invert;
64 u_int8_t __pad1;
65 u_int16_t __pad2;
68 static void mark_mt_compat_from_user_v0(void *dst, void *src)
70 const struct compat_xt_mark_info *cm = src;
71 struct xt_mark_info m = {
72 .mark = cm->mark,
73 .mask = cm->mask,
74 .invert = cm->invert,
76 memcpy(dst, &m, sizeof(m));
79 static int mark_mt_compat_to_user_v0(void __user *dst, void *src)
81 const struct xt_mark_info *m = src;
82 struct compat_xt_mark_info cm = {
83 .mark = m->mark,
84 .mask = m->mask,
85 .invert = m->invert,
87 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
89 #endif /* CONFIG_COMPAT */
91 static struct xt_match mark_mt_reg[] __read_mostly = {
93 .name = "mark",
94 .revision = 0,
95 .family = AF_INET,
96 .checkentry = mark_mt_check_v0,
97 .match = mark_mt_v0,
98 .matchsize = sizeof(struct xt_mark_info),
99 #ifdef CONFIG_COMPAT
100 .compatsize = sizeof(struct compat_xt_mark_info),
101 .compat_from_user = mark_mt_compat_from_user_v0,
102 .compat_to_user = mark_mt_compat_to_user_v0,
103 #endif
104 .me = THIS_MODULE,
107 .name = "mark",
108 .revision = 0,
109 .family = AF_INET6,
110 .checkentry = mark_mt_check_v0,
111 .match = mark_mt_v0,
112 .matchsize = sizeof(struct xt_mark_info),
113 #ifdef CONFIG_COMPAT
114 .compatsize = sizeof(struct compat_xt_mark_info),
115 .compat_from_user = mark_mt_compat_from_user_v0,
116 .compat_to_user = mark_mt_compat_to_user_v0,
117 #endif
118 .me = THIS_MODULE,
121 .name = "mark",
122 .revision = 1,
123 .family = AF_INET,
124 .match = mark_mt,
125 .matchsize = sizeof(struct xt_mark_mtinfo1),
126 .me = THIS_MODULE,
129 .name = "mark",
130 .revision = 1,
131 .family = AF_INET6,
132 .match = mark_mt,
133 .matchsize = sizeof(struct xt_mark_mtinfo1),
134 .me = THIS_MODULE,
138 static int __init mark_mt_init(void)
140 return xt_register_matches(mark_mt_reg, ARRAY_SIZE(mark_mt_reg));
143 static void __exit mark_mt_exit(void)
145 xt_unregister_matches(mark_mt_reg, ARRAY_SIZE(mark_mt_reg));
148 module_init(mark_mt_init);
149 module_exit(mark_mt_exit);