5 * Grzegorz Borowiak <grzes@gnu.univ.gda.pl>
11 #include <linux/if_arp.h>
12 #include <linux/module.h>
13 #include <linux/netfilter/x_tables.h>
14 #include <linux/netfilter_bridge/ebtables.h>
15 #include <linux/netfilter_bridge/ebt_among.h>
17 static bool 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)
41 for (i = start; i < limit; i++) {
43 if (cmp[1] == p->cmp[1] && cmp[0] == p->cmp[0])
51 static int ebt_mac_wormhash_check_integrity(const struct ebt_mac_wormhash
56 for (i = 0; i < 256; i++) {
57 if (wh->table[i] > wh->table[i + 1])
61 if (wh->table[i] > wh->poolsize)
64 if (wh->table[256] > wh->poolsize)
69 static int get_ip_dst(const struct sk_buff *skb, __be32 *addr)
71 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) {
72 const struct iphdr *ih;
75 ih = skb_header_pointer(skb, 0, sizeof(_iph), &_iph);
79 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) {
80 const struct arphdr *ah;
85 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
87 ah->ar_pln != sizeof(__be32) ||
88 ah->ar_hln != ETH_ALEN)
90 bp = skb_header_pointer(skb, sizeof(struct arphdr) +
91 2 * ETH_ALEN + sizeof(__be32),
92 sizeof(__be32), &buf);
100 static int get_ip_src(const struct sk_buff *skb, __be32 *addr)
102 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) {
103 const struct iphdr *ih;
106 ih = skb_header_pointer(skb, 0, sizeof(_iph), &_iph);
110 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) {
111 const struct arphdr *ah;
116 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
118 ah->ar_pln != sizeof(__be32) ||
119 ah->ar_hln != ETH_ALEN)
121 bp = skb_header_pointer(skb, sizeof(struct arphdr) +
122 ETH_ALEN, sizeof(__be32), &buf);
131 ebt_among_mt(const struct sk_buff *skb, const struct xt_match_param *par)
133 const struct ebt_among_info *info = par->matchinfo;
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 bool ebt_among_mt_check(const struct xt_mtchk_param *par)
176 const struct ebt_among_info *info = par->matchinfo;
177 const struct ebt_entry_match *em =
178 container_of(par->matchinfo, const struct ebt_entry_match, 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 (em->match_size != EBT_ALIGN(expected_length)) {
190 "ebtables: among: wrong size: %d "
191 "against expected %d, rounded to %Zd\n",
192 em->match_size, 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 xt_match ebt_among_mt_reg __read_mostly = {
212 .family = NFPROTO_BRIDGE,
213 .match = ebt_among_mt,
214 .checkentry = ebt_among_mt_check,
215 .matchsize = -1, /* special case */
219 static int __init ebt_among_init(void)
221 return xt_register_match(&ebt_among_mt_reg);
224 static void __exit ebt_among_fini(void)
226 xt_unregister_match(&ebt_among_mt_reg);
229 module_init(ebt_among_init);
230 module_exit(ebt_among_fini);
231 MODULE_DESCRIPTION("Ebtables: Combined MAC/IP address list matching");
232 MODULE_LICENSE("GPL");