blob: 425fc21e31f54f95013382007075c12d35f8a709 [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>
17#include <linux/netfilter/xt_mac.h>
18#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20MODULE_LICENSE("GPL");
21MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
22MODULE_DESCRIPTION("iptables mac matching module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080023MODULE_ALIAS("ipt_mac");
24MODULE_ALIAS("ip6t_mac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static int
27match(const struct sk_buff *skb,
28 const struct net_device *in,
29 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080030 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 const void *matchinfo,
32 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080033 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 int *hotdrop)
35{
Harald Welte2e4e6a12006-01-12 13:30:04 -080036 const struct xt_mac_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 /* Is mac pointer valid? */
39 return (skb->mac.raw >= skb->head
40 && (skb->mac.raw + ETH_HLEN) <= skb->data
41 /* If so, compare... */
Kris Katterjohnd3f4a682006-01-09 16:01:43 -080042 && ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
43 ^ info->invert));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Patrick McHardy4470bbc2006-08-22 00:34:04 -070046static struct xt_match xt_mac_match[] = {
47 {
48 .name = "mac",
49 .family = AF_INET,
50 .match = match,
51 .matchsize = sizeof(struct xt_mac_info),
52 .hooks = (1 << NF_IP_PRE_ROUTING) |
53 (1 << NF_IP_LOCAL_IN) |
54 (1 << NF_IP_FORWARD),
55 .me = THIS_MODULE,
56 },
57 {
58 .name = "mac",
59 .family = AF_INET6,
60 .match = match,
61 .matchsize = sizeof(struct xt_mac_info),
62 .hooks = (1 << NF_IP_PRE_ROUTING) |
63 (1 << NF_IP_LOCAL_IN) |
64 (1 << NF_IP_FORWARD),
65 .me = THIS_MODULE,
66 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Andrew Morton65b4b4e2006-03-28 16:37:06 -080069static int __init xt_mac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070071 return xt_register_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Andrew Morton65b4b4e2006-03-28 16:37:06 -080074static void __exit xt_mac_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070076 xt_unregister_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Andrew Morton65b4b4e2006-03-28 16:37:06 -080079module_init(xt_mac_init);
80module_exit(xt_mac_fini);