Revert "staging: batman-adv: Use linux/etherdevice.h address helper functions"
authorGreg Kroah-Hartman <gregkh@suse.de>
Thu, 11 Nov 2010 01:08:26 +0000 (17:08 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 11 Nov 2010 01:08:26 +0000 (17:08 -0800)
This reverts commit 5712dc7fc812d1bdbc5e634d389bc759d4e7550c.

Turns out the batman maintainers didn't like the implementation of it,
and the original author was going to rework it to meet their approval,
and I applied it without fully realizing all of this.

My fault.

Cc: Marek Lindner <lindner_marek@yahoo.de>
Cc: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/batman-adv/main.c
drivers/staging/batman-adv/main.h
drivers/staging/batman-adv/routing.c
drivers/staging/batman-adv/soft-interface.c
drivers/staging/batman-adv/vis.c

index 6ea64200ad1669cc39d5a9f22e01ec9d7327bf4d..0587940d27238146a67ed765482877557f445206 100644 (file)
@@ -149,7 +149,7 @@ void dec_module_count(void)
 
 int compare_orig(void *data1, void *data2)
 {
-       return (compare_ether_addr(data1, data2) == 0 ? 1 : 0);
+       return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
 }
 
 /* hashfunction to choose an entry in a hash table of given size */
@@ -192,6 +192,16 @@ int is_my_mac(uint8_t *addr)
 
 }
 
+int is_bcast(uint8_t *addr)
+{
+       return (addr[0] == (uint8_t)0xff) && (addr[1] == (uint8_t)0xff);
+}
+
+int is_mcast(uint8_t *addr)
+{
+       return *addr & 0x01;
+}
+
 module_init(batman_init);
 module_exit(batman_exit);
 
index 14d567d4911a961e4788245b5a9f0268baee2dab..5e3f51681f5e7ac5e8356d9269f6f9ffbb346892 100644 (file)
 #include <linux/mutex.h>       /* mutex */
 #include <linux/module.h>      /* needed by all modules */
 #include <linux/netdevice.h>   /* netdevice */
-#include <linux/etherdevice.h>
 #include <linux/if_ether.h>    /* ethernet header */
 #include <linux/poll.h>                /* poll_table */
 #include <linux/kthread.h>     /* kernel threads */
@@ -139,6 +138,8 @@ void dec_module_count(void);
 int compare_orig(void *data1, void *data2);
 int choose_orig(void *data, int32_t size);
 int is_my_mac(uint8_t *addr);
+int is_bcast(uint8_t *addr);
+int is_mcast(uint8_t *addr);
 
 #ifdef CONFIG_BATMAN_ADV_DEBUG
 int debug_log(struct bat_priv *bat_priv, char *fmt, ...);
index d42c16559dff88a9cc7f2dd2b76a520e1c6852a5..90102631330b883ad1f3df3bc45f3494b7f06d91 100644 (file)
@@ -756,11 +756,11 @@ int recv_bat_packet(struct sk_buff *skb, struct batman_if *batman_if)
        ethhdr = (struct ethhdr *)skb_mac_header(skb);
 
        /* packet with broadcast indication but unicast recipient */
-       if (!is_broadcast_ether_addr(ethhdr->h_dest))
+       if (!is_bcast(ethhdr->h_dest))
                return NET_RX_DROP;
 
        /* packet with broadcast sender address */
-       if (is_broadcast_ether_addr(ethhdr->h_source))
+       if (is_bcast(ethhdr->h_source))
                return NET_RX_DROP;
 
        /* create a copy of the skb, if needed, to modify it. */
@@ -933,11 +933,11 @@ int recv_icmp_packet(struct sk_buff *skb, struct batman_if *recv_if)
        ethhdr = (struct ethhdr *)skb_mac_header(skb);
 
        /* packet with unicast indication but broadcast recipient */
-       if (is_broadcast_ether_addr(ethhdr->h_dest))
+       if (is_bcast(ethhdr->h_dest))
                return NET_RX_DROP;
 
        /* packet with broadcast sender address */
-       if (is_broadcast_ether_addr(ethhdr->h_source))
+       if (is_bcast(ethhdr->h_source))
                return NET_RX_DROP;
 
        /* not for me */
@@ -1107,11 +1107,11 @@ static int check_unicast_packet(struct sk_buff *skb, int hdr_size)
        ethhdr = (struct ethhdr *)skb_mac_header(skb);
 
        /* packet with unicast indication but broadcast recipient */
-       if (is_broadcast_ether_addr(ethhdr->h_dest))
+       if (is_bcast(ethhdr->h_dest))
                return -1;
 
        /* packet with broadcast sender address */
-       if (is_broadcast_ether_addr(ethhdr->h_source))
+       if (is_bcast(ethhdr->h_source))
                return -1;
 
        /* not for me */
@@ -1283,11 +1283,11 @@ int recv_bcast_packet(struct sk_buff *skb, struct batman_if *recv_if)
        ethhdr = (struct ethhdr *)skb_mac_header(skb);
 
        /* packet with broadcast indication but unicast recipient */
-       if (!is_broadcast_ether_addr(ethhdr->h_dest))
+       if (!is_bcast(ethhdr->h_dest))
                return NET_RX_DROP;
 
        /* packet with broadcast sender address */
-       if (is_broadcast_ether_addr(ethhdr->h_source))
+       if (is_bcast(ethhdr->h_source))
                return NET_RX_DROP;
 
        /* ignore broadcasts sent by myself */
index 820e14159dd3a40c287fc953b58036819c3e3b2e..3904db9ce7b1f00909ecf2f07df7b561da28ec56 100644 (file)
@@ -140,7 +140,7 @@ int interface_tx(struct sk_buff *skb, struct net_device *soft_iface)
        hna_local_add(soft_iface, ethhdr->h_source);
 
        /* ethernet packet should be broadcasted */
-       if (is_multicast_ether_addr(ethhdr->h_dest)) {
+       if (is_bcast(ethhdr->h_dest) || is_mcast(ethhdr->h_dest)) {
                if (!bat_priv->primary_if)
                        goto dropped;
 
index 395f1109d606d7089091005ab168062a8b84eb93..4473cc8ed6b07c49e69d70c5aecacd38e49d67b9 100644 (file)
@@ -469,7 +469,7 @@ void receive_client_update_packet(struct bat_priv *bat_priv,
        int are_target = 0;
 
        /* clients shall not broadcast. */
-       if (is_broadcast_ether_addr(vis_packet->target_orig))
+       if (is_bcast(vis_packet->target_orig))
                return;
 
        /* Are we the target for this VIS packet? */
@@ -746,7 +746,7 @@ static void send_vis_packet(struct bat_priv *bat_priv, struct vis_info *info)
               ETH_ALEN);
        packet->ttl--;
 
-       if (is_broadcast_ether_addr(packet->target_orig))
+       if (is_bcast(packet->target_orig))
                broadcast_vis_packet(bat_priv, info);
        else
                unicast_vis_packet(bat_priv, info);