1 // SPDX-License-Identifier: GPL-2.0-only
2 /* x_tables module for setting the IPv4/IPv6 DSCP field, Version 1.8
4 * (C) 2002 by Harald Welte <laforge@netfilter.org>
5 * based on ipt_FTOS.c (C) 2000 by Matthew G. Marsh <mgm@paktronix.com>
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>
19 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
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");
28 dscp_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
30 const struct xt_DSCP_info
*dinfo
= par
->targinfo
;
31 u_int8_t dscp
= ipv4_get_dsfield(ip_hdr(skb
)) >> XT_DSCP_SHIFT
;
33 if (dscp
!= dinfo
->dscp
) {
34 if (skb_ensure_writable(skb
, sizeof(struct iphdr
)))
37 ipv4_change_dsfield(ip_hdr(skb
),
38 (__force __u8
)(~XT_DSCP_MASK
),
39 dinfo
->dscp
<< XT_DSCP_SHIFT
);
46 dscp_tg6(struct sk_buff
*skb
, const struct xt_action_param
*par
)
48 const struct xt_DSCP_info
*dinfo
= par
->targinfo
;
49 u_int8_t dscp
= ipv6_get_dsfield(ipv6_hdr(skb
)) >> XT_DSCP_SHIFT
;
51 if (dscp
!= dinfo
->dscp
) {
52 if (skb_ensure_writable(skb
, sizeof(struct ipv6hdr
)))
55 ipv6_change_dsfield(ipv6_hdr(skb
),
56 (__force __u8
)(~XT_DSCP_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
);