1 // SPDX-License-Identifier: GPL-2.0-only
2 /* x_tables module for setting the IPv4/IPv6 DSCP field, Version 1.8
7 * See RFC2474 for a description of the DSCP field within the IP Header.
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
20 MODULE_DESCRIPTION("Xtables: DSCP/TOS field modification");
21 MODULE_LICENSE("GPL");
22 MODULE_ALIAS("ipt_DSCP");
23 MODULE_ALIAS("ip6t_DSCP");
24 MODULE_ALIAS("ipt_TOS");
25 MODULE_ALIAS("ip6t_TOS");
27 #define XT_DSCP_ECN_MASK 3u
30 dscp_tg(struct sk_buff *skb, const struct xt_action_param *par)
32 const struct xt_DSCP_info *dinfo = par->targinfo;
33 u_int8_t dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
35 if (dscp != dinfo->dscp) {
36 if (skb_ensure_writable(skb, sizeof(struct iphdr)))
39 ipv4_change_dsfield(ip_hdr(skb), XT_DSCP_ECN_MASK,
40 dinfo->dscp << XT_DSCP_SHIFT);
47 dscp_tg6(struct sk_buff *skb, const struct xt_action_param *par)
49 const struct xt_DSCP_info *dinfo = par->targinfo;
50 u_int8_t dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
52 if (dscp != dinfo->dscp) {
53 if (skb_ensure_writable(skb, sizeof(struct ipv6hdr)))
56 ipv6_change_dsfield(ipv6_hdr(skb), XT_DSCP_ECN_MASK,
57 dinfo->dscp << XT_DSCP_SHIFT);
62 static int dscp_tg_check(const struct xt_tgchk_param *par)
64 const struct xt_DSCP_info *info = par->targinfo;
66 if (info->dscp > XT_DSCP_MAX)
72 tos_tg(struct sk_buff *skb, const struct xt_action_param *par)
74 const struct xt_tos_target_info *info = par->targinfo;
75 struct iphdr *iph = ip_hdr(skb);
78 orig = ipv4_get_dsfield(iph);
79 nv = (orig & ~info->tos_mask) ^ info->tos_value;
82 if (skb_ensure_writable(skb, sizeof(struct iphdr)))
85 ipv4_change_dsfield(iph, 0, nv);
92 tos_tg6(struct sk_buff *skb, const struct xt_action_param *par)
94 const struct xt_tos_target_info *info = par->targinfo;
95 struct ipv6hdr *iph = ipv6_hdr(skb);
98 orig = ipv6_get_dsfield(iph);
99 nv = (orig & ~info->tos_mask) ^ info->tos_value;
102 if (skb_ensure_writable(skb, sizeof(struct iphdr)))
105 ipv6_change_dsfield(iph, 0, nv);
111 static struct xt_target dscp_tg_reg[] __read_mostly = {
114 .family = NFPROTO_IPV4,
115 .checkentry = dscp_tg_check,
117 .targetsize = sizeof(struct xt_DSCP_info),
123 .family = NFPROTO_IPV6,
124 .checkentry = dscp_tg_check,
126 .targetsize = sizeof(struct xt_DSCP_info),
133 .family = NFPROTO_IPV4,
136 .targetsize = sizeof(struct xt_tos_target_info),
142 .family = NFPROTO_IPV6,
145 .targetsize = sizeof(struct xt_tos_target_info),
150 static int __init dscp_tg_init(void)
152 return xt_register_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
155 static void __exit dscp_tg_exit(void)
157 xt_unregister_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
160 module_init(dscp_tg_init);
161 module_exit(dscp_tg_exit);