blob: 78ee266a12ee3fa05d51c690f7885f14b95f9bd6 [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
42static int
43checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080044 const void *e,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 void *targinfo,
46 unsigned int targinfosize,
47 unsigned int hook_mask)
48{
Harald Welte2e4e6a12006-01-12 13:30:04 -080049 if (targinfosize != XT_ALIGN(sizeof(struct xt_classify_target_info))){
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 printk(KERN_ERR "CLASSIFY: invalid size (%u != %Zu).\n",
51 targinfosize,
Harald Welte2e4e6a12006-01-12 13:30:04 -080052 XT_ALIGN(sizeof(struct xt_classify_target_info)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 return 0;
54 }
55
56 if (hook_mask & ~((1 << NF_IP_LOCAL_OUT) | (1 << NF_IP_FORWARD) |
57 (1 << NF_IP_POST_ROUTING))) {
58 printk(KERN_ERR "CLASSIFY: only valid in LOCAL_OUT, FORWARD "
59 "and POST_ROUTING.\n");
60 return 0;
61 }
62
63 if (strcmp(tablename, "mangle") != 0) {
64 printk(KERN_ERR "CLASSIFY: can only be called from "
65 "\"mangle\" table, not \"%s\".\n",
66 tablename);
67 return 0;
68 }
69
70 return 1;
71}
72
Harald Welte2e4e6a12006-01-12 13:30:04 -080073static struct xt_target classify_reg = {
74 .name = "CLASSIFY",
75 .target = target,
76 .checkentry = checkentry,
77 .me = THIS_MODULE,
78};
79static struct xt_target classify6_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .name = "CLASSIFY",
81 .target = target,
82 .checkentry = checkentry,
83 .me = THIS_MODULE,
84};
85
Harald Welte2e4e6a12006-01-12 13:30:04 -080086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int __init init(void)
88{
Harald Welte2e4e6a12006-01-12 13:30:04 -080089 int ret;
90
91 ret = xt_register_target(AF_INET, &classify_reg);
92 if (ret)
93 return ret;
94
95 ret = xt_register_target(AF_INET6, &classify6_reg);
96 if (ret)
97 xt_unregister_target(AF_INET, &classify_reg);
98
99 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static void __exit fini(void)
103{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800104 xt_unregister_target(AF_INET, &classify_reg);
105 xt_unregister_target(AF_INET6, &classify6_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108module_init(init);
109module_exit(fini);