[NETFILTER]: x_tables: remove unused argument to target functions
[linux-2.6.22.y-op.git] / net / netfilter / xt_DSCP.c
blob9d23c9580d802743e59685c4cd66bb4e9b8f1530
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.
12 * xt_DSCP.c,v 1.8 2002/08/06 18:41:57 laforge Exp
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/ip.h>
18 #include <linux/ipv6.h>
19 #include <net/dsfield.h>
21 #include <linux/netfilter/x_tables.h>
22 #include <linux/netfilter/xt_DSCP.h>
24 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
25 MODULE_DESCRIPTION("x_tables DSCP modification module");
26 MODULE_LICENSE("GPL");
27 MODULE_ALIAS("ipt_DSCP");
28 MODULE_ALIAS("ip6t_DSCP");
30 static unsigned int target(struct sk_buff **pskb,
31 const struct net_device *in,
32 const struct net_device *out,
33 unsigned int hooknum,
34 const struct xt_target *target,
35 const void *targinfo)
37 const struct xt_DSCP_info *dinfo = targinfo;
38 u_int8_t dscp = ipv4_get_dsfield((*pskb)->nh.iph) >> XT_DSCP_SHIFT;
40 if (dscp != dinfo->dscp) {
41 if (!skb_make_writable(pskb, sizeof(struct iphdr)))
42 return NF_DROP;
44 ipv4_change_dsfield((*pskb)->nh.iph, (__u8)(~XT_DSCP_MASK),
45 dinfo->dscp << XT_DSCP_SHIFT);
48 return XT_CONTINUE;
51 static unsigned int target6(struct sk_buff **pskb,
52 const struct net_device *in,
53 const struct net_device *out,
54 unsigned int hooknum,
55 const struct xt_target *target,
56 const void *targinfo)
58 const struct xt_DSCP_info *dinfo = targinfo;
59 u_int8_t dscp = ipv6_get_dsfield((*pskb)->nh.ipv6h) >> XT_DSCP_SHIFT;
61 if (dscp != dinfo->dscp) {
62 if (!skb_make_writable(pskb, sizeof(struct ipv6hdr)))
63 return NF_DROP;
65 ipv6_change_dsfield((*pskb)->nh.ipv6h, (__u8)(~XT_DSCP_MASK),
66 dinfo->dscp << XT_DSCP_SHIFT);
68 return XT_CONTINUE;
71 static int checkentry(const char *tablename,
72 const void *e_void,
73 const struct xt_target *target,
74 void *targinfo,
75 unsigned int targinfosize,
76 unsigned int hook_mask)
78 const u_int8_t dscp = ((struct xt_DSCP_info *)targinfo)->dscp;
80 if ((dscp > XT_DSCP_MAX)) {
81 printk(KERN_WARNING "DSCP: dscp %x out of range\n", dscp);
82 return 0;
84 return 1;
87 static struct xt_target xt_dscp_target[] = {
89 .name = "DSCP",
90 .family = AF_INET,
91 .checkentry = checkentry,
92 .target = target,
93 .targetsize = sizeof(struct xt_DSCP_info),
94 .table = "mangle",
95 .me = THIS_MODULE,
98 .name = "DSCP",
99 .family = AF_INET6,
100 .checkentry = checkentry,
101 .target = target6,
102 .targetsize = sizeof(struct xt_DSCP_info),
103 .table = "mangle",
104 .me = THIS_MODULE,
108 static int __init xt_dscp_target_init(void)
110 return xt_register_targets(xt_dscp_target, ARRAY_SIZE(xt_dscp_target));
113 static void __exit xt_dscp_target_fini(void)
115 xt_unregister_targets(xt_dscp_target, ARRAY_SIZE(xt_dscp_target));
118 module_init(xt_dscp_target_init);
119 module_exit(xt_dscp_target_fini);