Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 18 | #include <linux/netfilter/x_tables.h> |
| 19 | #include <linux/netfilter/xt_CLASSIFY.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); |
| 22 | MODULE_LICENSE("GPL"); |
| 23 | MODULE_DESCRIPTION("iptables qdisc classification target module"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 24 | MODULE_ALIAS("ipt_CLASSIFY"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | static unsigned int |
| 27 | target(struct sk_buff **pskb, |
| 28 | const struct net_device *in, |
| 29 | const struct net_device *out, |
| 30 | unsigned int hooknum, |
Patrick McHardy | c498673 | 2006-03-20 18:02:56 -0800 | [diff] [blame] | 31 | const struct xt_target *target, |
Patrick McHardy | fe1cb10 | 2006-08-22 00:35:47 -0700 | [diff] [blame] | 32 | const void *targinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 34 | const struct xt_classify_target_info *clinfo = targinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 36 | if ((*pskb)->priority != clinfo->priority) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | (*pskb)->priority = clinfo->priority; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 39 | return XT_CONTINUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 42 | static 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) | |
| 51 | (1 << NF_IP_POST_ROUTING), |
| 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", |
| 60 | .hooks = (1 << NF_IP_LOCAL_OUT) | |
| 61 | (1 << NF_IP_FORWARD) | |
| 62 | (1 << NF_IP_POST_ROUTING), |
| 63 | .me = THIS_MODULE, |
| 64 | }, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 65 | }; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 66 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 67 | static int __init xt_classify_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 69 | return xt_register_targets(xt_classify_target, |
| 70 | ARRAY_SIZE(xt_classify_target)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 73 | static void __exit xt_classify_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 75 | xt_unregister_targets(xt_classify_target, |
| 76 | ARRAY_SIZE(xt_classify_target)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 79 | module_init(xt_classify_init); |
| 80 | module_exit(xt_classify_fini); |