blob: c2007116ce5bb66db44ae43590e8ba94330d03ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Kernel module to match MAC address parameters. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/skbuff.h>
13#include <linux/if_ether.h>
Kris Katterjohnd3f4a682006-01-09 16:01:43 -080014#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Harald Welte2e4e6a12006-01-12 13:30:04 -080016#include <linux/netfilter_ipv4.h>
Patrick McHardy891350c2007-02-12 11:14:43 -080017#include <linux/netfilter_ipv6.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080018#include <linux/netfilter/xt_mac.h>
19#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21MODULE_LICENSE("GPL");
22MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080023MODULE_DESCRIPTION("Xtables: MAC address match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080024MODULE_ALIAS("ipt_mac");
25MODULE_ALIAS("ip6t_mac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jan Engelhardtf7108a22008-10-08 11:35:18 +020027static bool mac_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020029 const struct xt_mac_info *info = par->matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31 /* Is mac pointer valid? */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070032 return skb_mac_header(skb) >= skb->head &&
33 skb_mac_header(skb) + ETH_HLEN <= skb->data
34 /* If so, compare... */
35 && ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
36 ^ info->invert);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Jan Engelhardtab4f21e2008-10-08 11:35:20 +020039static struct xt_match mac_mt_reg __read_mostly = {
40 .name = "mac",
41 .revision = 0,
42 .family = NFPROTO_UNSPEC,
43 .match = mac_mt,
44 .matchsize = sizeof(struct xt_mac_info),
45 .hooks = (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_IN) |
46 (1 << NF_INET_FORWARD),
47 .me = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080050static int __init mac_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Jan Engelhardtab4f21e2008-10-08 11:35:20 +020052 return xt_register_match(&mac_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080055static void __exit mac_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Jan Engelhardtab4f21e2008-10-08 11:35:20 +020057 xt_unregister_match(&mac_mt_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080060module_init(mac_mt_init);
61module_exit(mac_mt_exit);