blob: bd7aa57af4286e9ab5df9ef45bc1e09eac9daca8 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/*
2 * Implements a dummy match to allow attaching comments to rules
3 *
4 * 2003-05-13 Brad Fisher (brad@info-link.net)
5 */
6
7#include <linux/module.h>
8#include <linux/skbuff.h>
9#include <linux/netfilter/x_tables.h>
10#include <linux/netfilter/xt_comment.h>
11
12MODULE_AUTHOR("Brad Fisher <brad@info-link.net>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080013MODULE_DESCRIPTION("Xtables: No-op match which can be tagged with a comment");
Harald Welte2e4e6a12006-01-12 13:30:04 -080014MODULE_LICENSE("GPL");
15MODULE_ALIAS("ipt_comment");
16MODULE_ALIAS("ip6t_comment");
17
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070018static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020019comment_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Harald Welte2e4e6a12006-01-12 13:30:04 -080020{
21 /* We always match */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070022 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080023}
24
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080025static struct xt_match comment_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070026 {
27 .name = "comment",
Jan Engelhardtee999d82008-10-08 11:35:01 +020028 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080029 .match = comment_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070030 .matchsize = sizeof(struct xt_comment_info),
31 .me = THIS_MODULE
32 },
33 {
34 .name = "comment",
Jan Engelhardtee999d82008-10-08 11:35:01 +020035 .family = NFPROTO_IPV6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080036 .match = comment_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070037 .matchsize = sizeof(struct xt_comment_info),
38 .me = THIS_MODULE
39 },
Harald Welte2e4e6a12006-01-12 13:30:04 -080040};
41
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080042static int __init comment_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080043{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080044 return xt_register_matches(comment_mt_reg, ARRAY_SIZE(comment_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080045}
46
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080047static void __exit comment_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080048{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080049 xt_unregister_matches(comment_mt_reg, ARRAY_SIZE(comment_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -080050}
51
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080052module_init(comment_mt_init);
53module_exit(comment_mt_exit);