]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/xt_CLASSIFY.c
scm: lower SCM_MAX_FD
[net-next-2.6.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");
2ae15b64 25MODULE_DESCRIPTION("Xtables: Qdisc classification");
2e4e6a17 26MODULE_ALIAS("ipt_CLASSIFY");
73aaf935 27MODULE_ALIAS("ip6t_CLASSIFY");
1da177e4
LT
28
29static unsigned int
4b560b44 30classify_tg(struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 31{
7eb35586 32 const struct xt_classify_target_info *clinfo = par->targinfo;
1da177e4 33
3db05fea 34 skb->priority = clinfo->priority;
2e4e6a17 35 return XT_CONTINUE;
1da177e4
LT
36}
37
55b69e91
JE
38static struct xt_target classify_tg_reg __read_mostly = {
39 .name = "CLASSIFY",
40 .revision = 0,
41 .family = NFPROTO_UNSPEC,
42 .table = "mangle",
43 .hooks = (1 << NF_INET_LOCAL_OUT) | (1 << NF_INET_FORWARD) |
44 (1 << NF_INET_POST_ROUTING),
45 .target = classify_tg,
46 .targetsize = sizeof(struct xt_classify_target_info),
47 .me = THIS_MODULE,
2e4e6a17 48};
2e4e6a17 49
d3c5ee6d 50static int __init classify_tg_init(void)
1da177e4 51{
55b69e91 52 return xt_register_target(&classify_tg_reg);
1da177e4
LT
53}
54
d3c5ee6d 55static void __exit classify_tg_exit(void)
1da177e4 56{
55b69e91 57 xt_unregister_target(&classify_tg_reg);
1da177e4
LT
58}
59
d3c5ee6d
JE
60module_init(classify_tg_init);
61module_exit(classify_tg_exit);