1 /* x_tables module for setting the IPv4/IPv6 DSCP field, Version 1.8
3 * (C) 2002 by Harald Welte <laforge@netfilter.org>
4 * based on ipt_FTOS.c (C) 2000 by Matthew G. Marsh <mgm@paktronix.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * See RFC2474 for a description of the DSCP field within the IP Header.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <linux/ipv6.h>
17 #include <net/dsfield.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter/xt_DSCP.h>
21 #include <linux/netfilter_ipv4/ipt_TOS.h>
23 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
24 MODULE_DESCRIPTION("Xtables: DSCP/TOS field modification");
25 MODULE_LICENSE("GPL");
26 MODULE_ALIAS("ipt_DSCP");
27 MODULE_ALIAS("ip6t_DSCP");
28 MODULE_ALIAS("ipt_TOS");
29 MODULE_ALIAS("ip6t_TOS");
32 dscp_tg(struct sk_buff *skb, const struct net_device *in,
33 const struct net_device *out, unsigned int hooknum,
34 const struct xt_target *target, const void *targinfo)
36 const struct xt_DSCP_info *dinfo = targinfo;
37 u_int8_t dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
39 if (dscp != dinfo->dscp) {
40 if (!skb_make_writable(skb, sizeof(struct iphdr)))
43 ipv4_change_dsfield(ip_hdr(skb), (__u8)(~XT_DSCP_MASK),
44 dinfo->dscp << XT_DSCP_SHIFT);
51 dscp_tg6(struct sk_buff *skb, const struct net_device *in,
52 const struct net_device *out, unsigned int hooknum,
53 const struct xt_target *target, const void *targinfo)
55 const struct xt_DSCP_info *dinfo = targinfo;
56 u_int8_t dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
58 if (dscp != dinfo->dscp) {
59 if (!skb_make_writable(skb, sizeof(struct ipv6hdr)))
62 ipv6_change_dsfield(ipv6_hdr(skb), (__u8)(~XT_DSCP_MASK),
63 dinfo->dscp << XT_DSCP_SHIFT);
69 dscp_tg_check(const char *tablename, const void *e_void,
70 const struct xt_target *target, void *targinfo,
71 unsigned int hook_mask)
73 const u_int8_t dscp = ((struct xt_DSCP_info *)targinfo)->dscp;
75 if (dscp > XT_DSCP_MAX) {
76 printk(KERN_WARNING "DSCP: dscp %x out of range\n", dscp);
83 tos_tg_v0(struct sk_buff *skb, const struct net_device *in,
84 const struct net_device *out, unsigned int hooknum,
85 const struct xt_target *target, const void *targinfo)
87 const struct ipt_tos_target_info *info = targinfo;
88 struct iphdr *iph = ip_hdr(skb);
91 if ((iph->tos & IPTOS_TOS_MASK) != info->tos) {
92 if (!skb_make_writable(skb, sizeof(struct iphdr)))
97 iph->tos = (iph->tos & IPTOS_PREC_MASK) | info->tos;
98 csum_replace2(&iph->check, htons(oldtos), htons(iph->tos));
105 tos_tg_check_v0(const char *tablename, const void *e_void,
106 const struct xt_target *target, void *targinfo,
107 unsigned int hook_mask)
109 const u_int8_t tos = ((struct ipt_tos_target_info *)targinfo)->tos;
111 if (tos != IPTOS_LOWDELAY && tos != IPTOS_THROUGHPUT &&
112 tos != IPTOS_RELIABILITY && tos != IPTOS_MINCOST &&
113 tos != IPTOS_NORMALSVC) {
114 printk(KERN_WARNING "TOS: bad tos value %#x\n", tos);
122 tos_tg(struct sk_buff *skb, const struct net_device *in,
123 const struct net_device *out, unsigned int hooknum,
124 const struct xt_target *target, const void *targinfo)
126 const struct xt_tos_target_info *info = targinfo;
127 struct iphdr *iph = ip_hdr(skb);
130 orig = ipv4_get_dsfield(iph);
131 nv = (orig & ~info->tos_mask) ^ info->tos_value;
134 if (!skb_make_writable(skb, sizeof(struct iphdr)))
137 ipv4_change_dsfield(iph, 0, nv);
144 tos_tg6(struct sk_buff *skb, const struct net_device *in,
145 const struct net_device *out, unsigned int hooknum,
146 const struct xt_target *target, const void *targinfo)
148 const struct xt_tos_target_info *info = targinfo;
149 struct ipv6hdr *iph = ipv6_hdr(skb);
152 orig = ipv6_get_dsfield(iph);
153 nv = (orig & info->tos_mask) ^ info->tos_value;
156 if (!skb_make_writable(skb, sizeof(struct iphdr)))
159 ipv6_change_dsfield(iph, 0, nv);
165 static struct xt_target dscp_tg_reg[] __read_mostly = {
169 .checkentry = dscp_tg_check,
171 .targetsize = sizeof(struct xt_DSCP_info),
178 .checkentry = dscp_tg_check,
180 .targetsize = sizeof(struct xt_DSCP_info),
190 .targetsize = sizeof(struct ipt_tos_target_info),
191 .checkentry = tos_tg_check_v0,
200 .targetsize = sizeof(struct xt_tos_target_info),
209 .targetsize = sizeof(struct xt_tos_target_info),
214 static int __init dscp_tg_init(void)
216 return xt_register_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
219 static void __exit dscp_tg_exit(void)
221 xt_unregister_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
224 module_init(dscp_tg_init);
225 module_exit(dscp_tg_exit);