Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[deliverable/linux.git] / net / netfilter / xt_CLASSIFY.c
CommitLineData
1da177e4
LT
1/*
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
891350c9
PM
18#include <linux/netfilter_ipv4.h>
19#include <linux/netfilter_ipv6.h>
2e4e6a17
HW
20#include <linux/netfilter/x_tables.h>
21#include <linux/netfilter/xt_CLASSIFY.h>
1da177e4
LT
22
23MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
24MODULE_LICENSE("GPL");
25MODULE_DESCRIPTION("iptables qdisc classification target module");
2e4e6a17 26MODULE_ALIAS("ipt_CLASSIFY");
1da177e4
LT
27
28static unsigned int
29target(struct sk_buff **pskb,
30 const struct net_device *in,
31 const struct net_device *out,
32 unsigned int hooknum,
c4986734 33 const struct xt_target *target,
fe1cb108 34 const void *targinfo)
1da177e4 35{
2e4e6a17 36 const struct xt_classify_target_info *clinfo = targinfo;
1da177e4 37
2822b0d9 38 (*pskb)->priority = clinfo->priority;
2e4e6a17 39 return XT_CONTINUE;
1da177e4
LT
40}
41
9f15c530 42static struct xt_target xt_classify_target[] __read_mostly = {
4470bbc7
PM
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) |
601e68e1 51 (1 << NF_IP_POST_ROUTING),
4470bbc7
PM
52 .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",
891350c9
PM
60 .hooks = (1 << NF_IP6_LOCAL_OUT) |
61 (1 << NF_IP6_FORWARD) |
601e68e1 62 (1 << NF_IP6_POST_ROUTING),
4470bbc7
PM
63 .me = THIS_MODULE,
64 },
2e4e6a17 65};
2e4e6a17 66
65b4b4e8 67static int __init xt_classify_init(void)
1da177e4 68{
4470bbc7
PM
69 return xt_register_targets(xt_classify_target,
70 ARRAY_SIZE(xt_classify_target));
1da177e4
LT
71}
72
65b4b4e8 73static void __exit xt_classify_fini(void)
1da177e4 74{
4470bbc7
PM
75 xt_unregister_targets(xt_classify_target,
76 ARRAY_SIZE(xt_classify_target));
1da177e4
LT
77}
78
65b4b4e8
AM
79module_init(xt_classify_init);
80module_exit(xt_classify_fini);
This page took 0.229722 seconds and 5 git commands to generate.