1 /* This is a module which is used for setting the TOS field of a packet. */
3 /* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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.
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
14 #include <net/checksum.h>
16 #include <linux/netfilter_ipv4/ip_tables.h>
17 #include <linux/netfilter_ipv4/ipt_TOS.h>
19 MODULE_LICENSE("GPL");
20 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
21 MODULE_DESCRIPTION("iptables TOS mangling module");
24 target(struct sk_buff **pskb,
25 const struct net_device *in,
26 const struct net_device *out,
31 const struct ipt_tos_target_info *tosinfo = targinfo;
33 if (((*pskb)->nh.iph->tos & IPTOS_TOS_MASK) != tosinfo->tos) {
36 if (!skb_make_writable(pskb, sizeof(struct iphdr)))
39 diffs[0] = htons((*pskb)->nh.iph->tos) ^ 0xFFFF;
41 = ((*pskb)->nh.iph->tos & IPTOS_PREC_MASK)
43 diffs[1] = htons((*pskb)->nh.iph->tos);
44 (*pskb)->nh.iph->check
45 = csum_fold(csum_partial((char *)diffs,
47 (*pskb)->nh.iph->check
54 checkentry(const char *tablename,
55 const struct ipt_entry *e,
57 unsigned int targinfosize,
58 unsigned int hook_mask)
60 const u_int8_t tos = ((struct ipt_tos_target_info *)targinfo)->tos;
62 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_tos_target_info))) {
63 printk(KERN_WARNING "TOS: targinfosize %u != %Zu\n",
65 IPT_ALIGN(sizeof(struct ipt_tos_target_info)));
69 if (strcmp(tablename, "mangle") != 0) {
70 printk(KERN_WARNING "TOS: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
74 if (tos != IPTOS_LOWDELAY
75 && tos != IPTOS_THROUGHPUT
76 && tos != IPTOS_RELIABILITY
77 && tos != IPTOS_MINCOST
78 && tos != IPTOS_NORMALSVC) {
79 printk(KERN_WARNING "TOS: bad tos value %#x\n", tos);
86 static struct ipt_target ipt_tos_reg = {
89 .checkentry = checkentry,
93 static int __init init(void)
95 return ipt_register_target(&ipt_tos_reg);
98 static void __exit fini(void)
100 ipt_unregister_target(&ipt_tos_reg);