blob: 97efd74c04fef2c91899c3d773b184bf96d2dfdc [file] [log] [blame]
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -07001/* x_tables module for setting the IPv4/IPv6 DSCP field, Version 1.8
2 *
3 * (C) 2002 by Harald Welte <laforge@netfilter.org>
4 * based on ipt_FTOS.c (C) 2000 by Matthew G. Marsh <mgm@paktronix.com>
5 *
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.
9 *
10 * See RFC2474 for a description of the DSCP field within the IP Header.
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070011*/
12
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/ip.h>
16#include <linux/ipv6.h>
17#include <net/dsfield.h>
18
19#include <linux/netfilter/x_tables.h>
20#include <linux/netfilter/xt_DSCP.h>
Jan Engelhardtc9fd4962007-12-04 23:38:13 -080021#include <linux/netfilter_ipv4/ipt_TOS.h>
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070022
23MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080024MODULE_DESCRIPTION("Xtables: DSCP/TOS field modification");
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070025MODULE_LICENSE("GPL");
26MODULE_ALIAS("ipt_DSCP");
27MODULE_ALIAS("ip6t_DSCP");
Jan Engelhardtc9fd4962007-12-04 23:38:13 -080028MODULE_ALIAS("ipt_TOS");
Jan Engelhardt5c350e52007-12-04 23:39:09 -080029MODULE_ALIAS("ip6t_TOS");
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070030
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080031static unsigned int
32dscp_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)
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070035{
36 const struct xt_DSCP_info *dinfo = targinfo;
Herbert Xu3db05fe2007-10-15 00:53:15 -070037 u_int8_t dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070038
39 if (dscp != dinfo->dscp) {
Herbert Xu3db05fe2007-10-15 00:53:15 -070040 if (!skb_make_writable(skb, sizeof(struct iphdr)))
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070041 return NF_DROP;
42
Herbert Xu3db05fe2007-10-15 00:53:15 -070043 ipv4_change_dsfield(ip_hdr(skb), (__u8)(~XT_DSCP_MASK),
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070044 dinfo->dscp << XT_DSCP_SHIFT);
45
46 }
47 return XT_CONTINUE;
48}
49
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080050static unsigned int
51dscp_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)
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070054{
55 const struct xt_DSCP_info *dinfo = targinfo;
Herbert Xu3db05fe2007-10-15 00:53:15 -070056 u_int8_t dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070057
58 if (dscp != dinfo->dscp) {
Herbert Xu3db05fe2007-10-15 00:53:15 -070059 if (!skb_make_writable(skb, sizeof(struct ipv6hdr)))
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070060 return NF_DROP;
61
Herbert Xu3db05fe2007-10-15 00:53:15 -070062 ipv6_change_dsfield(ipv6_hdr(skb), (__u8)(~XT_DSCP_MASK),
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070063 dinfo->dscp << XT_DSCP_SHIFT);
64 }
65 return XT_CONTINUE;
66}
67
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080068static bool
69dscp_tg_check(const char *tablename, const void *e_void,
70 const struct xt_target *target, void *targinfo,
71 unsigned int hook_mask)
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070072{
73 const u_int8_t dscp = ((struct xt_DSCP_info *)targinfo)->dscp;
74
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070075 if (dscp > XT_DSCP_MAX) {
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070076 printk(KERN_WARNING "DSCP: dscp %x out of range\n", dscp);
Jan Engelhardte1931b72007-07-07 22:16:26 -070077 return false;
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070078 }
Jan Engelhardte1931b72007-07-07 22:16:26 -070079 return true;
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -070080}
81
Jan Engelhardtc9fd4962007-12-04 23:38:13 -080082static unsigned int
83tos_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)
86{
87 const struct ipt_tos_target_info *info = targinfo;
88 struct iphdr *iph = ip_hdr(skb);
89 u_int8_t oldtos;
90
91 if ((iph->tos & IPTOS_TOS_MASK) != info->tos) {
92 if (!skb_make_writable(skb, sizeof(struct iphdr)))
93 return NF_DROP;
94
95 iph = ip_hdr(skb);
96 oldtos = iph->tos;
97 iph->tos = (iph->tos & IPTOS_PREC_MASK) | info->tos;
98 csum_replace2(&iph->check, htons(oldtos), htons(iph->tos));
99 }
100
101 return XT_CONTINUE;
102}
103
104static bool
105tos_tg_check_v0(const char *tablename, const void *e_void,
106 const struct xt_target *target, void *targinfo,
107 unsigned int hook_mask)
108{
109 const u_int8_t tos = ((struct ipt_tos_target_info *)targinfo)->tos;
110
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);
115 return false;
116 }
117
118 return true;
119}
120
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800121static unsigned int
122tos_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)
125{
126 const struct xt_tos_target_info *info = targinfo;
127 struct iphdr *iph = ip_hdr(skb);
128 u_int8_t orig, nv;
129
130 orig = ipv4_get_dsfield(iph);
Jan Engelhardt9bb268e2008-01-14 23:32:37 -0800131 nv = (orig & ~info->tos_mask) ^ info->tos_value;
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800132
133 if (orig != nv) {
134 if (!skb_make_writable(skb, sizeof(struct iphdr)))
135 return NF_DROP;
136 iph = ip_hdr(skb);
Jan Engelhardtcdfe8b92008-01-14 23:32:54 -0800137 ipv4_change_dsfield(iph, 0, nv);
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800138 }
139
140 return XT_CONTINUE;
141}
142
143static unsigned int
144tos_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)
147{
148 const struct xt_tos_target_info *info = targinfo;
149 struct ipv6hdr *iph = ipv6_hdr(skb);
150 u_int8_t orig, nv;
151
152 orig = ipv6_get_dsfield(iph);
153 nv = (orig & info->tos_mask) ^ info->tos_value;
154
155 if (orig != nv) {
156 if (!skb_make_writable(skb, sizeof(struct iphdr)))
157 return NF_DROP;
158 iph = ipv6_hdr(skb);
Jan Engelhardtcdfe8b92008-01-14 23:32:54 -0800159 ipv6_change_dsfield(iph, 0, nv);
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800160 }
161
162 return XT_CONTINUE;
163}
164
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800165static struct xt_target dscp_tg_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700166 {
167 .name = "DSCP",
168 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800169 .checkentry = dscp_tg_check,
170 .target = dscp_tg,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700171 .targetsize = sizeof(struct xt_DSCP_info),
172 .table = "mangle",
173 .me = THIS_MODULE,
174 },
175 {
176 .name = "DSCP",
177 .family = AF_INET6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800178 .checkentry = dscp_tg_check,
179 .target = dscp_tg6,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700180 .targetsize = sizeof(struct xt_DSCP_info),
181 .table = "mangle",
182 .me = THIS_MODULE,
183 },
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800184 {
185 .name = "TOS",
186 .revision = 0,
187 .family = AF_INET,
188 .table = "mangle",
189 .target = tos_tg_v0,
190 .targetsize = sizeof(struct ipt_tos_target_info),
191 .checkentry = tos_tg_check_v0,
192 .me = THIS_MODULE,
193 },
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800194 {
195 .name = "TOS",
196 .revision = 1,
197 .family = AF_INET,
198 .table = "mangle",
199 .target = tos_tg,
200 .targetsize = sizeof(struct xt_tos_target_info),
201 .me = THIS_MODULE,
202 },
203 {
204 .name = "TOS",
205 .revision = 1,
206 .family = AF_INET6,
207 .table = "mangle",
208 .target = tos_tg6,
209 .targetsize = sizeof(struct xt_tos_target_info),
210 .me = THIS_MODULE,
211 },
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700212};
213
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800214static int __init dscp_tg_init(void)
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700215{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800216 return xt_register_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700217}
218
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800219static void __exit dscp_tg_exit(void)
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700220{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800221 xt_unregister_targets(dscp_tg_reg, ARRAY_SIZE(dscp_tg_reg));
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700222}
223
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800224module_init(dscp_tg_init);
225module_exit(dscp_tg_exit);