blob: 30884833e665b6d7cb721dcb1b4c6015418d84ec [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
Patrick McHardy891350c2007-02-12 11:14:43 -080018#include <linux/netfilter_ipv4.h>
19#include <linux/netfilter_ipv6.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080020#include <linux/netfilter/x_tables.h>
21#include <linux/netfilter/xt_CLASSIFY.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
24MODULE_LICENSE("GPL");
25MODULE_DESCRIPTION("iptables qdisc classification target module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080026MODULE_ALIAS("ipt_CLASSIFY");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28static unsigned int
29target(struct sk_buff **pskb,
30 const struct net_device *in,
31 const struct net_device *out,
32 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -080033 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -070034 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Harald Welte2e4e6a12006-01-12 13:30:04 -080036 const struct xt_classify_target_info *clinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Jan Engelhardt2822b0d2007-02-07 15:06:43 -080038 (*pskb)->priority = clinfo->priority;
Harald Welte2e4e6a12006-01-12 13:30:04 -080039 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Patrick McHardy4470bbc2006-08-22 00:34:04 -070042static struct xt_target xt_classify_target[] = {
43 {
44 .family = AF_INET,
45 .name = "CLASSIFY",
46 .target = target,
47 .targetsize = sizeof(struct xt_classify_target_info),
48 .table = "mangle",
49 .hooks = (1 << NF_IP_LOCAL_OUT) |
50 (1 << NF_IP_FORWARD) |
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080051 (1 << NF_IP_POST_ROUTING),
Patrick McHardy4470bbc2006-08-22 00:34:04 -070052 .me = THIS_MODULE,
53 },
54 {
55 .name = "CLASSIFY",
56 .family = AF_INET6,
57 .target = target,
58 .targetsize = sizeof(struct xt_classify_target_info),
59 .table = "mangle",
Patrick McHardy891350c2007-02-12 11:14:43 -080060 .hooks = (1 << NF_IP6_LOCAL_OUT) |
61 (1 << NF_IP6_FORWARD) |
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080062 (1 << NF_IP6_POST_ROUTING),
Patrick McHardy4470bbc2006-08-22 00:34:04 -070063 .me = THIS_MODULE,
64 },
Harald Welte2e4e6a12006-01-12 13:30:04 -080065};
Harald Welte2e4e6a12006-01-12 13:30:04 -080066
Andrew Morton65b4b4e2006-03-28 16:37:06 -080067static int __init xt_classify_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070069 return xt_register_targets(xt_classify_target,
70 ARRAY_SIZE(xt_classify_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Andrew Morton65b4b4e2006-03-28 16:37:06 -080073static void __exit xt_classify_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070075 xt_unregister_targets(xt_classify_target,
76 ARRAY_SIZE(xt_classify_target));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Andrew Morton65b4b4e2006-03-28 16:37:06 -080079module_init(xt_classify_init);
80module_exit(xt_classify_fini);