blob: b4559a46dce8308df295a1cb29b20226b9b42cc9 [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
Harald Welte2e4e6a12006-01-12 13:30:04 -080046static struct xt_match mac_match = {
47 .name = "mac",
Patrick McHardy5d04bff2006-03-20 18:01:58 -080048 .match = match,
49 .matchsize = sizeof(struct xt_mac_info),
50 .hooks = (1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_IN) |
51 (1 << NF_IP_FORWARD),
Harald Welte2e4e6a12006-01-12 13:30:04 -080052 .me = THIS_MODULE,
53};
54static struct xt_match mac6_match = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .name = "mac",
Patrick McHardy5d04bff2006-03-20 18:01:58 -080056 .match = match,
57 .matchsize = sizeof(struct xt_mac_info),
58 .hooks = (1 << NF_IP_PRE_ROUTING) | (1 << NF_IP_LOCAL_IN) |
59 (1 << NF_IP_FORWARD),
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .me = THIS_MODULE,
61};
62
63static int __init init(void)
64{
Harald Welte2e4e6a12006-01-12 13:30:04 -080065 int ret;
66 ret = xt_register_match(AF_INET, &mac_match);
67 if (ret)
68 return ret;
69
70 ret = xt_register_match(AF_INET6, &mac6_match);
71 if (ret)
72 xt_unregister_match(AF_INET, &mac_match);
73
74 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static void __exit fini(void)
78{
Harald Welte2e4e6a12006-01-12 13:30:04 -080079 xt_unregister_match(AF_INET, &mac_match);
80 xt_unregister_match(AF_INET6, &mac6_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83module_init(init);
84module_exit(fini);