5 * Grzegorz Borowiak <grzes@gnu.univ.gda.pl>
11 #include <linux/netfilter_bridge/ebtables.h>
12 #include <linux/netfilter_bridge/ebt_among.h>
14 #include <linux/if_arp.h>
15 #include <linux/module.h>
17 static int ebt_mac_wormhash_contains(const struct ebt_mac_wormhash *wh,
18 const char *mac, __be32 ip)
20 /* You may be puzzled as to how this code works.
21 * Some tricks were used, refer to
22 * include/linux/netfilter_bridge/ebt_among.h
23 * as there you can find a solution of this mystery.
25 const struct ebt_mac_wormhash_tuple *p;
27 uint32_t cmp[2] = { 0, 0 };
28 int key = (const unsigned char) mac[5];
30 memcpy(((char *) cmp) + 2, mac, 6);
31 start = wh->table[key];
32 limit = wh->table[key + 1];
34 for (i = start; i < limit; i++) {
36 if (cmp[1] == p->cmp[1] && cmp[0] == p->cmp[0]) {
37 if (p->ip == 0 || p->ip == ip) {
43 for (i = start; i < limit; i++) {
45 if (cmp[1] == p->cmp[1] && cmp[0] == p->cmp[0]) {
55 static int ebt_mac_wormhash_check_integrity(const struct ebt_mac_wormhash
60 for (i = 0; i < 256; i++) {
61 if (wh->table[i] > wh->table[i + 1])
65 if (wh->table[i] > wh->poolsize)
68 if (wh->table[256] > wh->poolsize)
73 static int get_ip_dst(const struct sk_buff *skb, __be32 *addr)
75 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) {
76 struct iphdr _iph, *ih;
78 ih = skb_header_pointer(skb, 0, sizeof(_iph), &_iph);
82 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) {
83 struct arphdr _arph, *ah;
86 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
88 ah->ar_pln != sizeof(__be32) ||
89 ah->ar_hln != ETH_ALEN)
91 bp = skb_header_pointer(skb, sizeof(struct arphdr) +
92 2 * ETH_ALEN + sizeof(__be32),
93 sizeof(__be32), &buf);
101 static int get_ip_src(const struct sk_buff *skb, __be32 *addr)
103 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) {
104 struct iphdr _iph, *ih;
106 ih = skb_header_pointer(skb, 0, sizeof(_iph), &_iph);
110 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) {
111 struct arphdr _arph, *ah;
114 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
116 ah->ar_pln != sizeof(__be32) ||
117 ah->ar_hln != ETH_ALEN)
119 bp = skb_header_pointer(skb, sizeof(struct arphdr) +
120 ETH_ALEN, sizeof(__be32), &buf);
128 static int ebt_filter_among(const struct sk_buff *skb,
129 const struct net_device *in,
130 const struct net_device *out, const void *data,
131 unsigned int datalen)
133 struct ebt_among_info *info = (struct ebt_among_info *) data;
134 const char *dmac, *smac;
135 const struct ebt_mac_wormhash *wh_dst, *wh_src;
136 __be32 dip = 0, sip = 0;
138 wh_dst = ebt_among_wh_dst(info);
139 wh_src = ebt_among_wh_src(info);
142 smac = eth_hdr(skb)->h_source;
143 if (get_ip_src(skb, &sip))
145 if (!(info->bitmask & EBT_AMONG_SRC_NEG)) {
146 /* we match only if it contains */
147 if (!ebt_mac_wormhash_contains(wh_src, smac, sip))
150 /* we match only if it DOES NOT contain */
151 if (ebt_mac_wormhash_contains(wh_src, smac, sip))
157 dmac = eth_hdr(skb)->h_dest;
158 if (get_ip_dst(skb, &dip))
160 if (!(info->bitmask & EBT_AMONG_DST_NEG)) {
161 /* we match only if it contains */
162 if (!ebt_mac_wormhash_contains(wh_dst, dmac, dip))
165 /* we match only if it DOES NOT contain */
166 if (ebt_mac_wormhash_contains(wh_dst, dmac, dip))
174 static int ebt_among_check(const char *tablename, unsigned int hookmask,
175 const struct ebt_entry *e, void *data,
176 unsigned int datalen)
178 struct ebt_among_info *info = (struct ebt_among_info *) data;
179 int expected_length = sizeof(struct ebt_among_info);
180 const struct ebt_mac_wormhash *wh_dst, *wh_src;
183 wh_dst = ebt_among_wh_dst(info);
184 wh_src = ebt_among_wh_src(info);
185 expected_length += ebt_mac_wormhash_size(wh_dst);
186 expected_length += ebt_mac_wormhash_size(wh_src);
188 if (datalen != EBT_ALIGN(expected_length)) {
190 "ebtables: among: wrong size: %d"
191 "against expected %d, rounded to %Zd\n",
192 datalen, expected_length,
193 EBT_ALIGN(expected_length));
196 if (wh_dst && (err = ebt_mac_wormhash_check_integrity(wh_dst))) {
198 "ebtables: among: dst integrity fail: %x\n", -err);
201 if (wh_src && (err = ebt_mac_wormhash_check_integrity(wh_src))) {
203 "ebtables: among: src integrity fail: %x\n", -err);
209 static struct ebt_match filter_among = {
210 .name = EBT_AMONG_MATCH,
211 .match = ebt_filter_among,
212 .check = ebt_among_check,
216 static int __init ebt_among_init(void)
218 return ebt_register_match(&filter_among);
221 static void __exit ebt_among_fini(void)
223 ebt_unregister_match(&filter_among);
226 module_init(ebt_among_init);
227 module_exit(ebt_among_fini);
228 MODULE_LICENSE("GPL");