1 /* iptables module for setting the IPv4 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.
12 * ipt_DSCP.c,v 1.8 2002/08/06 18:41:57 laforge Exp
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
18 #include <net/checksum.h>
20 #include <linux/netfilter_ipv4/ip_tables.h>
21 #include <linux/netfilter_ipv4/ipt_DSCP.h>
23 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
24 MODULE_DESCRIPTION("iptables DSCP modification module");
25 MODULE_LICENSE("GPL");
28 target(struct sk_buff **pskb,
29 const struct net_device *in,
30 const struct net_device *out,
35 const struct ipt_DSCP_info *dinfo = targinfo;
36 u_int8_t sh_dscp = ((dinfo->dscp << IPT_DSCP_SHIFT) & IPT_DSCP_MASK);
39 if (((*pskb)->nh.iph->tos & IPT_DSCP_MASK) != sh_dscp) {
42 if (!skb_make_writable(pskb, sizeof(struct iphdr)))
45 diffs[0] = htons((*pskb)->nh.iph->tos) ^ 0xFFFF;
46 (*pskb)->nh.iph->tos = ((*pskb)->nh.iph->tos & ~IPT_DSCP_MASK)
48 diffs[1] = htons((*pskb)->nh.iph->tos);
49 (*pskb)->nh.iph->check
50 = csum_fold(csum_partial((char *)diffs,
52 (*pskb)->nh.iph->check
59 checkentry(const char *tablename,
60 const struct ipt_entry *e,
62 unsigned int targinfosize,
63 unsigned int hook_mask)
65 const u_int8_t dscp = ((struct ipt_DSCP_info *)targinfo)->dscp;
67 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_DSCP_info))) {
68 printk(KERN_WARNING "DSCP: targinfosize %u != %Zu\n",
70 IPT_ALIGN(sizeof(struct ipt_DSCP_info)));
74 if (strcmp(tablename, "mangle") != 0) {
75 printk(KERN_WARNING "DSCP: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
79 if ((dscp > IPT_DSCP_MAX)) {
80 printk(KERN_WARNING "DSCP: dscp %x out of range\n", dscp);
87 static struct ipt_target ipt_dscp_reg = {
90 .checkentry = checkentry,
94 static int __init init(void)
96 return ipt_register_target(&ipt_dscp_reg);
99 static void __exit fini(void)
101 ipt_unregister_target(&ipt_dscp_reg);