allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / netfilter / xt_mac.c
blob9051eb41bc63407b316a963e873d8f97b4afedfa
1 /* Kernel module to match MAC address parameters. */
3 /* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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 */
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/if_ether.h>
14 #include <linux/etherdevice.h>
16 #include <linux/netfilter_ipv4.h>
17 #include <linux/netfilter_ipv6.h>
18 #include <linux/netfilter/xt_mac.h>
19 #include <linux/netfilter/x_tables.h>
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
23 MODULE_DESCRIPTION("iptables mac matching module");
24 MODULE_ALIAS("ipt_mac");
25 MODULE_ALIAS("ip6t_mac");
27 static int
28 match(const struct sk_buff *skb,
29 const struct net_device *in,
30 const struct net_device *out,
31 const struct xt_match *match,
32 const void *matchinfo,
33 int offset,
34 unsigned int protoff,
35 int *hotdrop)
37 const struct xt_mac_info *info = matchinfo;
39 /* Is mac pointer valid? */
40 return (in != NULL && // added for OUTPUT experiment -- zzz
41 skb_mac_header(skb) >= skb->head &&
42 (skb_mac_header(skb) + ETH_HLEN) <= skb->data
43 /* If so, compare... */
44 && ((!compare_ether_addr(eth_hdr(skb)->h_source, info->srcaddr))
45 ^ info->invert));
48 static struct xt_match xt_mac_match[] = {
50 .name = "mac",
51 .family = AF_INET,
52 .match = match,
53 .matchsize = sizeof(struct xt_mac_info),
54 #if 0 // removed for OUTPUT experiment --jz
55 .hooks = (1 << NF_IP_PRE_ROUTING) |
56 (1 << NF_IP_LOCAL_IN) |
57 (1 << NF_IP_FORWARD),
58 #endif
59 .me = THIS_MODULE,
62 .name = "mac",
63 .family = AF_INET6,
64 .match = match,
65 .matchsize = sizeof(struct xt_mac_info),
66 #if 0 // removed for OUTPUT experiment --jz
67 .hooks = (1 << NF_IP6_PRE_ROUTING) |
68 (1 << NF_IP6_LOCAL_IN) |
69 (1 << NF_IP6_FORWARD),
70 #endif
71 .me = THIS_MODULE,
75 static int __init xt_mac_init(void)
77 return xt_register_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
80 static void __exit xt_mac_fini(void)
82 xt_unregister_matches(xt_mac_match, ARRAY_SIZE(xt_mac_match));
85 module_init(xt_mac_init);
86 module_exit(xt_mac_fini);