batman-adv: improve unicast packet (re)routing
authorAntonio Quartulli <ordex@autistici.org>
Fri, 16 Mar 2012 17:03:28 +0000 (18:03 +0100)
committerAntonio Quartulli <ordex@autistici.org>
Sun, 13 May 2012 17:06:38 +0000 (19:06 +0200)
In case of a client X roaming from a generic node A to another node B, it is
possible that a third node C gets A's OGM but not B's. At this point in time, if
C wants to send data to X it will send a unicast packet destined to A. The
packet header will contain A's last ttvn (C got A's OGM and so it knows it).

The packet will travel towards A without being intercepted because the ttvn
contained in its header is the newest for A.

Once A will receive the packet, A's state will not report to be in a "roaming
phase" (because, after a roaming, once A sends out its OGM, all the changes are
committed and the node is considered not to be in the roaming state anymore)
and it will match the ttvn carried by the packet. Therefore there is no reason
for A to try to alter the packet's route, thus dropping the packet because the
destination client is not there anymore.

However, C is well aware that it's routing information towards the client X is
outdated as it received an OGM from A saying that the client roamed away.
Thanks to this detail, this patch introduces a small change in behaviour: as
long as C is in the state of not knowing the new location of client X it will
forward the traffic to its last known location using ttvn-1 of the destination.
By using an older ttvn node A will be forced to re-route the packet.
Intermediate nodes are also allowed to update the packet's destination as long
as they have the information about the client's new location.

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
net/batman-adv/routing.c
net/batman-adv/translation-table.c
net/batman-adv/translation-table.h
net/batman-adv/unicast.c

index 4c6467db881cfe99e4aa5b1a359c48cf561de83f..b1824bba09b3778abc5fb1e7f907f8c8e74f41b8 100644 (file)
@@ -923,6 +923,13 @@ static int check_unicast_ttvn(struct bat_priv *bat_priv,
 
                ethhdr = (struct ethhdr *)(skb->data +
                        sizeof(struct unicast_packet));
+
+               /* we don't have an updated route for this client, so we should
+                * not try to reroute the packet!!
+                */
+               if (tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
+                       return 1;
+
                orig_node = transtable_search(bat_priv, NULL, ethhdr->h_dest);
 
                if (!orig_node) {
index 2cb46f0bb1631fae71dfe1fe6f1cb8905df1a2f4..b3fb597c79b50341ab6754c75002ee2a70cd9612 100644 (file)
@@ -2117,3 +2117,22 @@ request_table:
                }
        }
 }
+
+/* returns true whether we know that the client has moved from its old
+ * originator to another one. This entry is kept is still kept for consistency
+ * purposes
+ */
+bool tt_global_client_is_roaming(struct bat_priv *bat_priv, uint8_t *addr)
+{
+       struct tt_global_entry *tt_global_entry;
+       bool ret = false;
+
+       tt_global_entry = tt_global_hash_find(bat_priv, addr);
+       if (!tt_global_entry)
+               goto out;
+
+       ret = tt_global_entry->common.flags & TT_CLIENT_ROAM;
+       tt_global_entry_free_ref(tt_global_entry);
+out:
+       return ret;
+}
index 593d1b31217cd4445c52ba8a09f9b2b51df3eed4..c43374dc364d086cfcadc41dadca52ec8949ec81 100644 (file)
@@ -53,5 +53,7 @@ bool is_ap_isolated(struct bat_priv *bat_priv, uint8_t *src, uint8_t *dst);
 void tt_update_orig(struct bat_priv *bat_priv, struct orig_node *orig_node,
                    const unsigned char *tt_buff, uint8_t tt_num_changes,
                    uint8_t ttvn, uint16_t tt_crc);
+bool tt_global_client_is_roaming(struct bat_priv *bat_priv, uint8_t *addr);
+
 
 #endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */
index 676f6a626b2cd0f9eb49f3aa137202db461dafe8..74175c21085816da1dc0deb089f42c73bcb8884f 100644 (file)
@@ -331,6 +331,14 @@ find_router:
        unicast_packet->ttvn =
                (uint8_t)atomic_read(&orig_node->last_ttvn);
 
+       /* inform the destination node that we are still missing a correct route
+        * for this client. The destination will receive this packet and will
+        * try to reroute it because the ttvn contained in the header is less
+        * than the current one
+        */
+       if (tt_global_client_is_roaming(bat_priv, ethhdr->h_dest))
+               unicast_packet->ttvn = unicast_packet->ttvn - 1;
+
        if (atomic_read(&bat_priv->fragmentation) &&
            data_len + sizeof(*unicast_packet) >
                                neigh_node->if_incoming->net_dev->mtu) {