5 * Bart De Schuymer <bdschuym@pandora.be>
6 * Tim Gardner <timg@tpi.com>
12 #include <linux/netfilter_bridge/ebtables.h>
13 #include <linux/netfilter_bridge/ebt_arp.h>
14 #include <linux/if_arp.h>
15 #include <linux/if_ether.h>
16 #include <linux/module.h>
18 static int ebt_filter_arp(const struct sk_buff *skb, const struct net_device *in,
19 const struct net_device *out, const void *data, unsigned int datalen)
21 struct ebt_arp_info *info = (struct ebt_arp_info *)data;
22 struct arphdr _arph, *ah;
24 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
27 if (info->bitmask & EBT_ARP_OPCODE && FWINV(info->opcode !=
28 ah->ar_op, EBT_ARP_OPCODE))
30 if (info->bitmask & EBT_ARP_HTYPE && FWINV(info->htype !=
31 ah->ar_hrd, EBT_ARP_HTYPE))
33 if (info->bitmask & EBT_ARP_PTYPE && FWINV(info->ptype !=
34 ah->ar_pro, EBT_ARP_PTYPE))
37 if (info->bitmask & (EBT_ARP_SRC_IP | EBT_ARP_DST_IP)) {
40 /* IPv4 addresses are always 4 bytes */
41 if (ah->ar_pln != sizeof(uint32_t))
43 if (info->bitmask & EBT_ARP_SRC_IP) {
44 ap = skb_header_pointer(skb, sizeof(struct arphdr) +
45 ah->ar_hln, sizeof(_addr),
49 if (FWINV(info->saddr != (*ap & info->smsk),
54 if (info->bitmask & EBT_ARP_DST_IP) {
55 ap = skb_header_pointer(skb, sizeof(struct arphdr) +
56 2*ah->ar_hln+sizeof(uint32_t),
57 sizeof(_addr), &_addr);
60 if (FWINV(info->daddr != (*ap & info->dmsk),
66 if (info->bitmask & (EBT_ARP_SRC_MAC | EBT_ARP_DST_MAC)) {
67 unsigned char _mac[ETH_ALEN], *mp;
70 /* MAC addresses are 6 bytes */
71 if (ah->ar_hln != ETH_ALEN)
73 if (info->bitmask & EBT_ARP_SRC_MAC) {
74 mp = skb_header_pointer(skb, sizeof(struct arphdr),
79 for (i = 0; i < 6; i++)
80 verdict |= (mp[i] ^ info->smaddr[i]) &
82 if (FWINV(verdict != 0, EBT_ARP_SRC_MAC))
86 if (info->bitmask & EBT_ARP_DST_MAC) {
87 mp = skb_header_pointer(skb, sizeof(struct arphdr) +
88 ah->ar_hln + ah->ar_pln,
93 for (i = 0; i < 6; i++)
94 verdict |= (mp[i] ^ info->dmaddr[i]) &
96 if (FWINV(verdict != 0, EBT_ARP_DST_MAC))
104 static int ebt_arp_check(const char *tablename, unsigned int hookmask,
105 const struct ebt_entry *e, void *data, unsigned int datalen)
107 struct ebt_arp_info *info = (struct ebt_arp_info *)data;
109 if (datalen != EBT_ALIGN(sizeof(struct ebt_arp_info)))
111 if ((e->ethproto != htons(ETH_P_ARP) &&
112 e->ethproto != htons(ETH_P_RARP)) ||
113 e->invflags & EBT_IPROTO)
115 if (info->bitmask & ~EBT_ARP_MASK || info->invflags & ~EBT_ARP_MASK)
120 static struct ebt_match filter_arp =
122 .name = EBT_ARP_MATCH,
123 .match = ebt_filter_arp,
124 .check = ebt_arp_check,
128 static int __init init(void)
130 return ebt_register_match(&filter_arp);
133 static void __exit fini(void)
135 ebt_unregister_match(&filter_arp);
140 MODULE_LICENSE("GPL");