1 /* IP tables module for matching the value of the IPv4/IPv6 DSCP field
3 * (C) 2002 by Harald Welte <laforge@netfilter.org>
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.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
13 #include <linux/ipv6.h>
14 #include <net/dsfield.h>
16 #include <linux/netfilter/x_tables.h>
17 #include <linux/netfilter/xt_dscp.h>
18 #include <linux/netfilter_ipv4/ipt_tos.h>
20 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
21 MODULE_DESCRIPTION("Xtables: DSCP/TOS field match");
22 MODULE_LICENSE("GPL");
23 MODULE_ALIAS("ipt_dscp");
24 MODULE_ALIAS("ip6t_dscp");
25 MODULE_ALIAS("ipt_tos");
26 MODULE_ALIAS("ip6t_tos");
29 dscp_mt(const struct sk_buff *skb, const struct net_device *in,
30 const struct net_device *out, const struct xt_match *match,
31 const void *matchinfo, int offset, unsigned int protoff, bool *hotdrop)
33 const struct xt_dscp_info *info = matchinfo;
34 u_int8_t dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
36 return (dscp == info->dscp) ^ !!info->invert;
40 dscp_mt6(const struct sk_buff *skb, const struct net_device *in,
41 const struct net_device *out, const struct xt_match *match,
42 const void *matchinfo, int offset, unsigned int protoff,
45 const struct xt_dscp_info *info = matchinfo;
46 u_int8_t dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
48 return (dscp == info->dscp) ^ !!info->invert;
52 dscp_mt_check(const char *tablename, const void *info,
53 const struct xt_match *match, void *matchinfo,
54 unsigned int hook_mask)
56 const u_int8_t dscp = ((struct xt_dscp_info *)matchinfo)->dscp;
58 if (dscp > XT_DSCP_MAX) {
59 printk(KERN_ERR "xt_dscp: dscp %x out of range\n", dscp);
66 static bool tos_mt_v0(const struct sk_buff *skb, const struct net_device *in,
67 const struct net_device *out,
68 const struct xt_match *match, const void *matchinfo,
69 int offset, unsigned int protoff, bool *hotdrop)
71 const struct ipt_tos_info *info = matchinfo;
73 return (ip_hdr(skb)->tos == info->tos) ^ info->invert;
76 static bool tos_mt(const struct sk_buff *skb, const struct net_device *in,
77 const struct net_device *out, const struct xt_match *match,
78 const void *matchinfo, int offset, unsigned int protoff,
81 const struct xt_tos_match_info *info = matchinfo;
83 if (match->family == AF_INET)
84 return ((ip_hdr(skb)->tos & info->tos_mask) ==
85 info->tos_value) ^ !!info->invert;
87 return ((ipv6_get_dsfield(ipv6_hdr(skb)) & info->tos_mask) ==
88 info->tos_value) ^ !!info->invert;
91 static struct xt_match dscp_mt_reg[] __read_mostly = {
95 .checkentry = dscp_mt_check,
97 .matchsize = sizeof(struct xt_dscp_info),
103 .checkentry = dscp_mt_check,
105 .matchsize = sizeof(struct xt_dscp_info),
113 .matchsize = sizeof(struct ipt_tos_info),
121 .matchsize = sizeof(struct xt_tos_match_info),
129 .matchsize = sizeof(struct xt_tos_match_info),
134 static int __init dscp_mt_init(void)
136 return xt_register_matches(dscp_mt_reg, ARRAY_SIZE(dscp_mt_reg));
139 static void __exit dscp_mt_exit(void)
141 xt_unregister_matches(dscp_mt_reg, ARRAY_SIZE(dscp_mt_reg));
144 module_init(dscp_mt_init);
145 module_exit(dscp_mt_exit);