blob: b3e96a0ec1765d3618e759492aec29702e4d47cc [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 Engelhardt1d93a9c2007-07-07 22:15:35 -070027static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080028mac_mt(const struct sk_buff *skb, const struct net_device *in,
29 const struct net_device *out, const struct xt_match *match,
30 const void *matchinfo, int offset, unsigned int protoff, bool *hotdrop)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Harald Welte2e4e6a12006-01-12 13:30:04 -080032 const struct xt_mac_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 /* Is mac pointer valid? */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070035 return skb_mac_header(skb) >= skb->head &&
36 skb_mac_header(skb) + ETH_HLEN <= skb->data
37 /* If so, compare... */
38 && ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
39 ^ info->invert);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080042static struct xt_match mac_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070043 {
44 .name = "mac",
45 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080046 .match = mac_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070047 .matchsize = sizeof(struct xt_mac_info),
Patrick McHardy6e23ae22007-11-19 18:53:30 -080048 .hooks = (1 << NF_INET_PRE_ROUTING) |
49 (1 << NF_INET_LOCAL_IN) |
50 (1 << NF_INET_FORWARD),
Patrick McHardy4470bbc2006-08-22 00:34:04 -070051 .me = THIS_MODULE,
52 },
53 {
54 .name = "mac",
55 .family = AF_INET6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080056 .match = mac_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070057 .matchsize = sizeof(struct xt_mac_info),
Patrick McHardy6e23ae22007-11-19 18:53:30 -080058 .hooks = (1 << NF_INET_PRE_ROUTING) |
59 (1 << NF_INET_LOCAL_IN) |
60 (1 << NF_INET_FORWARD),
Patrick McHardy4470bbc2006-08-22 00:34:04 -070061 .me = THIS_MODULE,
62 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080065static int __init mac_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080067 return xt_register_matches(mac_mt_reg, ARRAY_SIZE(mac_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080070static void __exit mac_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080072 xt_unregister_matches(mac_mt_reg, ARRAY_SIZE(mac_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080075module_init(mac_mt_init);
76module_exit(mac_mt_exit);