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 | |
Patrick McHardy | 891350c | 2007-02-12 11:14:43 -0800 | [diff] [blame] | 18 | #include <linux/netfilter_ipv4.h> |
| 19 | #include <linux/netfilter_ipv6.h> |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 20 | #include <linux/netfilter/x_tables.h> |
| 21 | #include <linux/netfilter/xt_CLASSIFY.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); |
| 24 | MODULE_LICENSE("GPL"); |
Jan Engelhardt | 2ae15b6 | 2008-01-14 23:42:28 -0800 | [diff] [blame] | 25 | MODULE_DESCRIPTION("Xtables: Qdisc classification"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 26 | MODULE_ALIAS("ipt_CLASSIFY"); |
Jan Engelhardt | 73aaf93 | 2007-10-11 14:36:40 -0700 | [diff] [blame] | 27 | MODULE_ALIAS("ip6t_CLASSIFY"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | static unsigned int |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 30 | classify_tg(struct sk_buff *skb, const struct net_device *in, |
| 31 | const struct net_device *out, unsigned int hooknum, |
| 32 | const struct xt_target *target, 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 | |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 36 | skb->priority = clinfo->priority; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 37 | return XT_CONTINUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 40 | static struct xt_target classify_tg_reg[] __read_mostly = { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 41 | { |
| 42 | .family = AF_INET, |
| 43 | .name = "CLASSIFY", |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 44 | .target = classify_tg, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 45 | .targetsize = sizeof(struct xt_classify_target_info), |
| 46 | .table = "mangle", |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 47 | .hooks = (1 << NF_INET_LOCAL_OUT) | |
| 48 | (1 << NF_INET_FORWARD) | |
| 49 | (1 << NF_INET_POST_ROUTING), |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 50 | .me = THIS_MODULE, |
| 51 | }, |
| 52 | { |
| 53 | .name = "CLASSIFY", |
| 54 | .family = AF_INET6, |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 55 | .target = classify_tg, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 56 | .targetsize = sizeof(struct xt_classify_target_info), |
| 57 | .table = "mangle", |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 58 | .hooks = (1 << NF_INET_LOCAL_OUT) | |
| 59 | (1 << NF_INET_FORWARD) | |
| 60 | (1 << NF_INET_POST_ROUTING), |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 61 | .me = THIS_MODULE, |
| 62 | }, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 63 | }; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 64 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 65 | static int __init classify_tg_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 67 | return xt_register_targets(classify_tg_reg, |
| 68 | ARRAY_SIZE(classify_tg_reg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 71 | static void __exit classify_tg_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 73 | xt_unregister_targets(classify_tg_reg, ARRAY_SIZE(classify_tg_reg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 76 | module_init(classify_tg_init); |
| 77 | module_exit(classify_tg_exit); |