blob: 1db07d8125f81c71c13bf0bb587c6ca4f6e82854 [file] [log] [blame]
Jan Engelhardt17b0d7e2008-01-14 23:41:11 -08001/*
2 * xt_mark - Netfilter module to match NFMARK value
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Jan Engelhardt17b0d7e2008-01-14 23:41:11 -08004 * (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
Jan Engelhardt4725c722009-06-12 19:02:27 +02006 * Jan Engelhardt <jengelh@medozas.de>
Jan Engelhardt17b0d7e2008-01-14 23:41:11 -08007 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/module.h>
14#include <linux/skbuff.h>
15
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/netfilter/xt_mark.h>
17#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19MODULE_LICENSE("GPL");
20MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080021MODULE_DESCRIPTION("Xtables: packet mark match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080022MODULE_ALIAS("ipt_mark");
23MODULE_ALIAS("ip6t_mark");
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070025static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020026mark_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Jan Engelhardt17b0d7e2008-01-14 23:41:11 -080027{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020028 const struct xt_mark_mtinfo1 *info = par->matchinfo;
Jan Engelhardt17b0d7e2008-01-14 23:41:11 -080029
30 return ((skb->mark & info->mask) == info->mark) ^ info->invert;
31}
32
Jan Engelhardt4725c722009-06-12 19:02:27 +020033static struct xt_match mark_mt_reg __read_mostly = {
34 .name = "mark",
35 .revision = 1,
36 .family = NFPROTO_UNSPEC,
37 .match = mark_mt,
38 .matchsize = sizeof(struct xt_mark_mtinfo1),
39 .me = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080042static int __init mark_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Jan Engelhardt4725c722009-06-12 19:02:27 +020044 return xt_register_match(&mark_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080047static void __exit mark_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Jan Engelhardt4725c722009-06-12 19:02:27 +020049 xt_unregister_match(&mark_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080052module_init(mark_mt_init);
53module_exit(mark_mt_exit);