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_ip_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
54 (*pskb
)->nfcache
|= NFC_ALTERED
;
60 checkentry(const char *tablename
,
61 const struct ipt_entry
*e
,
63 unsigned int targinfosize
,
64 unsigned int hook_mask
)
66 const u_int8_t dscp
= ((struct ipt_DSCP_info
*)targinfo
)->dscp
;
68 if (targinfosize
!= IPT_ALIGN(sizeof(struct ipt_DSCP_info
))) {
69 printk(KERN_WARNING
"DSCP: targinfosize %u != %Zu\n",
71 IPT_ALIGN(sizeof(struct ipt_DSCP_info
)));
75 if (strcmp(tablename
, "mangle") != 0) {
76 printk(KERN_WARNING
"DSCP: can only be called from \"mangle\" table, not \"%s\"\n", tablename
);
80 if ((dscp
> IPT_DSCP_MAX
)) {
81 printk(KERN_WARNING
"DSCP: dscp %x out of range\n", dscp
);
88 static struct ipt_target ipt_dscp_reg
= {
91 .checkentry
= checkentry
,
95 static int __init
init(void)
97 return ipt_register_target(&ipt_dscp_reg
);
100 static void __exit
fini(void)
102 ipt_unregister_target(&ipt_dscp_reg
);