]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/xt_mac.c
netfilter: xtables: cut down on static data for family-independent extensions
[net-next-2.6.git] / net / netfilter / xt_mac.c
CommitLineData
1da177e4
LT
1/* 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>
d3f4a687 14#include <linux/etherdevice.h>
1da177e4 15
2e4e6a17 16#include <linux/netfilter_ipv4.h>
891350c9 17#include <linux/netfilter_ipv6.h>
2e4e6a17
HW
18#include <linux/netfilter/xt_mac.h>
19#include <linux/netfilter/x_tables.h>
1da177e4
LT
20
21MODULE_LICENSE("GPL");
22MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
2ae15b64 23MODULE_DESCRIPTION("Xtables: MAC address match");
2e4e6a17
HW
24MODULE_ALIAS("ipt_mac");
25MODULE_ALIAS("ip6t_mac");
1da177e4 26
f7108a20 27static bool mac_mt(const struct sk_buff *skb, const struct xt_match_param *par)
1da177e4 28{
f7108a20 29 const struct xt_mac_info *info = par->matchinfo;
1da177e4
LT
30
31 /* Is mac pointer valid? */
7c4e36bc
JE
32 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);
1da177e4
LT
37}
38
d3c5ee6d 39static struct xt_match mac_mt_reg[] __read_mostly = {
4470bbc7
PM
40 {
41 .name = "mac",
ee999d8b 42 .family = NFPROTO_IPV4,
d3c5ee6d 43 .match = mac_mt,
4470bbc7 44 .matchsize = sizeof(struct xt_mac_info),
6e23ae2a
PM
45 .hooks = (1 << NF_INET_PRE_ROUTING) |
46 (1 << NF_INET_LOCAL_IN) |
47 (1 << NF_INET_FORWARD),
4470bbc7
PM
48 .me = THIS_MODULE,
49 },
50 {
51 .name = "mac",
ee999d8b 52 .family = NFPROTO_IPV6,
d3c5ee6d 53 .match = mac_mt,
4470bbc7 54 .matchsize = sizeof(struct xt_mac_info),
6e23ae2a
PM
55 .hooks = (1 << NF_INET_PRE_ROUTING) |
56 (1 << NF_INET_LOCAL_IN) |
57 (1 << NF_INET_FORWARD),
4470bbc7
PM
58 .me = THIS_MODULE,
59 },
1da177e4
LT
60};
61
d3c5ee6d 62static int __init mac_mt_init(void)
1da177e4 63{
d3c5ee6d 64 return xt_register_matches(mac_mt_reg, ARRAY_SIZE(mac_mt_reg));
1da177e4
LT
65}
66
d3c5ee6d 67static void __exit mac_mt_exit(void)
1da177e4 68{
d3c5ee6d 69 xt_unregister_matches(mac_mt_reg, ARRAY_SIZE(mac_mt_reg));
1da177e4
LT
70}
71
d3c5ee6d
JE
72module_init(mac_mt_init);
73module_exit(mac_mt_exit);