blob: d430d90d7b2609256f3587f3a1bfda34490f2016 [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>");
23MODULE_DESCRIPTION("iptables mac matching module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080024MODULE_ALIAS("ipt_mac");
25MODULE_ALIAS("ip6t_mac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27static int
28match(const struct sk_buff *skb,
29 const struct net_device *in,
30 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080031 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 const void *matchinfo,
33 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080034 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 int *hotdrop)
36{
Harald Welte2e4e6a12006-01-12 13:30:04 -080037 const struct xt_mac_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 /* Is mac pointer valid? */
40 return (skb->mac.raw >= skb->head
41 && (skb->mac.raw + ETH_HLEN) <= skb->data
42 /* If so, compare... */
Kris Katterjohnd3f4a682006-01-09 16:01:43 -080043 && ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
44 ^ info->invert));
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Patrick McHardy4470bbc2006-08-22 00:34:04 -070047static struct xt_match xt_mac_match[] = {
48 {
49 .name = "mac",
50 .family = AF_INET,
51 .match = match,
52 .matchsize = sizeof(struct xt_mac_info),
53 .hooks = (1 << NF_IP_PRE_ROUTING) |
54 (1 << NF_IP_LOCAL_IN) |
55 (1 << NF_IP_FORWARD),
56 .me = THIS_MODULE,
57 },
58 {
59 .name = "mac",
60 .family = AF_INET6,
61 .match = match,
62 .matchsize = sizeof(struct xt_mac_info),
Patrick McHardy891350c2007-02-12 11:14:43 -080063 .hooks = (1 << NF_IP6_PRE_ROUTING) |
64 (1 << NF_IP6_LOCAL_IN) |
65 (1 << NF_IP6_FORWARD),
Patrick McHardy4470bbc2006-08-22 00:34:04 -070066 .me = THIS_MODULE,
67 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Andrew Morton65b4b4e2006-03-28 16:37:06 -080070static int __init xt_mac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070072 return xt_register_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Andrew Morton65b4b4e2006-03-28 16:37:06 -080075static void __exit xt_mac_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Patrick McHardy4470bbc2006-08-22 00:34:04 -070077 xt_unregister_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Andrew Morton65b4b4e2006-03-28 16:37:06 -080080module_init(xt_mac_init);
81module_exit(xt_mac_fini);