]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/netfilter/ip6t_eui64.c
netfilter: xtables: substitute temporary defines by final name
[net-next-2.6.git] / net / ipv6 / netfilter / ip6t_eui64.c
CommitLineData
1da177e4
LT
1/* Kernel module to match EUI64 address parameters. */
2
3/* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/skbuff.h>
12#include <linux/ipv6.h>
13#include <linux/if_ether.h>
14
6709dbbb 15#include <linux/netfilter/x_tables.h>
1da177e4
LT
16#include <linux/netfilter_ipv6/ip6_tables.h>
17
2ae15b64 18MODULE_DESCRIPTION("Xtables: IPv6 EUI64 address match");
1da177e4
LT
19MODULE_LICENSE("GPL");
20MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
21
1d93a9cb 22static bool
4b560b44 23eui64_mt6(const struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 24{
f0daaa65 25 unsigned char eui64[8];
1da177e4 26
98e399f8 27 if (!(skb_mac_header(skb) >= skb->head &&
7c4e36bc 28 skb_mac_header(skb) + ETH_HLEN <= skb->data) &&
f7108a20
JE
29 par->fragoff != 0) {
30 *par->hotdrop = true;
1d93a9cb 31 return false;
f0daaa65
YK
32 }
33
34 memset(eui64, 0, sizeof(eui64));
35
d8fd0a73 36 if (eth_hdr(skb)->h_proto == htons(ETH_P_IPV6)) {
0660e03f 37 if (ipv6_hdr(skb)->version == 0x6) {
f0daaa65
YK
38 memcpy(eui64, eth_hdr(skb)->h_source, 3);
39 memcpy(eui64 + 5, eth_hdr(skb)->h_source + 3, 3);
40 eui64[3] = 0xff;
41 eui64[4] = 0xfe;
8f41f017 42 eui64[0] ^= 0x02;
f0daaa65 43
48890869
PM
44 if (!memcmp(ipv6_hdr(skb)->saddr.s6_addr + 8, eui64,
45 sizeof(eui64)))
1d93a9cb 46 return true;
f0daaa65
YK
47 }
48 }
49
1d93a9cb 50 return false;
1da177e4
LT
51}
52
d3c5ee6d 53static struct xt_match eui64_mt6_reg __read_mostly = {
1da177e4 54 .name = "eui64",
ee999d8b 55 .family = NFPROTO_IPV6,
d3c5ee6d 56 .match = eui64_mt6,
7f939713 57 .matchsize = sizeof(int),
6e23ae2a
PM
58 .hooks = (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_IN) |
59 (1 << NF_INET_FORWARD),
1da177e4
LT
60 .me = THIS_MODULE,
61};
62
d3c5ee6d 63static int __init eui64_mt6_init(void)
1da177e4 64{
d3c5ee6d 65 return xt_register_match(&eui64_mt6_reg);
1da177e4
LT
66}
67
d3c5ee6d 68static void __exit eui64_mt6_exit(void)
1da177e4 69{
d3c5ee6d 70 xt_unregister_match(&eui64_mt6_reg);
1da177e4
LT
71}
72
d3c5ee6d
JE
73module_init(eui64_mt6_init);
74module_exit(eui64_mt6_exit);