blob: 6b36e84756577fca069ad63ca777771386b63a77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This is a module which is used for setting the skb->priority field
3 * of an skb for qdisc classification.
4 */
5
6/* (C) 2001-2002 Patrick McHardy <kaber@trash.net>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/ip.h>
16#include <net/checksum.h>
17
Harald Welte2e4e6a12006-01-12 13:30:04 -080018#include <linux/netfilter/x_tables.h>
19#include <linux/netfilter/xt_CLASSIFY.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
22MODULE_LICENSE("GPL");
23MODULE_DESCRIPTION("iptables qdisc classification target module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080024MODULE_ALIAS("ipt_CLASSIFY");
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static unsigned int
27target(struct sk_buff **pskb,
28 const struct net_device *in,
29 const struct net_device *out,
30 unsigned int hooknum,
31 const void *targinfo,
32 void *userinfo)
33{
Harald Welte2e4e6a12006-01-12 13:30:04 -080034 const struct xt_classify_target_info *clinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Harald Welte2e4e6a12006-01-12 13:30:04 -080036 if ((*pskb)->priority != clinfo->priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 (*pskb)->priority = clinfo->priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Harald Welte2e4e6a12006-01-12 13:30:04 -080039 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Harald Welte2e4e6a12006-01-12 13:30:04 -080042static struct xt_target classify_reg = {
43 .name = "CLASSIFY",
44 .target = target,
Patrick McHardy5d04bff2006-03-20 18:01:58 -080045 .targetsize = sizeof(struct xt_classify_target_info),
46 .table = "mangle",
47 .hooks = (1 << NF_IP_LOCAL_OUT) | (1 << NF_IP_FORWARD) |
48 (1 << NF_IP_POST_ROUTING),
Harald Welte2e4e6a12006-01-12 13:30:04 -080049 .me = THIS_MODULE,
50};
51static struct xt_target classify6_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .name = "CLASSIFY",
53 .target = target,
Patrick McHardy5d04bff2006-03-20 18:01:58 -080054 .targetsize = sizeof(struct xt_classify_target_info),
55 .table = "mangle",
56 .hooks = (1 << NF_IP_LOCAL_OUT) | (1 << NF_IP_FORWARD) |
57 (1 << NF_IP_POST_ROUTING),
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .me = THIS_MODULE,
59};
60
Harald Welte2e4e6a12006-01-12 13:30:04 -080061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int __init init(void)
63{
Harald Welte2e4e6a12006-01-12 13:30:04 -080064 int ret;
65
66 ret = xt_register_target(AF_INET, &classify_reg);
67 if (ret)
68 return ret;
69
70 ret = xt_register_target(AF_INET6, &classify6_reg);
71 if (ret)
72 xt_unregister_target(AF_INET, &classify_reg);
73
74 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static void __exit fini(void)
78{
Harald Welte2e4e6a12006-01-12 13:30:04 -080079 xt_unregister_target(AF_INET, &classify_reg);
80 xt_unregister_target(AF_INET6, &classify6_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83module_init(init);
84module_exit(fini);