|
@@ -38,7 +38,10 @@
|
|
|
|
|
|
#include "bat_algo.h"
|
|
|
#include "hard-interface.h"
|
|
|
+#include "hash.h"
|
|
|
+#include "originator.h"
|
|
|
#include "packet.h"
|
|
|
+#include "routing.h"
|
|
|
#include "send.h"
|
|
|
|
|
|
/**
|
|
@@ -191,3 +194,152 @@ void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface)
|
|
|
}
|
|
|
rcu_read_unlock();
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * batadv_v_ogm_orig_get - retrieve and possibly create an originator node
|
|
|
+ * @bat_priv: the bat priv with all the soft interface information
|
|
|
+ * @addr: the address of the originator
|
|
|
+ *
|
|
|
+ * Return: the orig_node corresponding to the specified address. If such object
|
|
|
+ * does not exist it is allocated here. In case of allocation failure returns
|
|
|
+ * NULL.
|
|
|
+ */
|
|
|
+static struct batadv_orig_node *
|
|
|
+batadv_v_ogm_orig_get(struct batadv_priv *bat_priv,
|
|
|
+ const u8 *addr)
|
|
|
+{
|
|
|
+ struct batadv_orig_node *orig_node;
|
|
|
+ int hash_added;
|
|
|
+
|
|
|
+ orig_node = batadv_orig_hash_find(bat_priv, addr);
|
|
|
+ if (orig_node)
|
|
|
+ return orig_node;
|
|
|
+
|
|
|
+ orig_node = batadv_orig_node_new(bat_priv, addr);
|
|
|
+ if (!orig_node)
|
|
|
+ return NULL;
|
|
|
+
|
|
|
+ hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
|
|
|
+ batadv_choose_orig, orig_node,
|
|
|
+ &orig_node->hash_entry);
|
|
|
+ if (hash_added != 0) {
|
|
|
+ /* orig_node->refcounter is initialised to 2 by
|
|
|
+ * batadv_orig_node_new()
|
|
|
+ */
|
|
|
+ batadv_orig_node_put(orig_node);
|
|
|
+ batadv_orig_node_put(orig_node);
|
|
|
+ orig_node = NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ return orig_node;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * batadv_v_elp_neigh_update - update an ELP neighbour node
|
|
|
+ * @bat_priv: the bat priv with all the soft interface information
|
|
|
+ * @neigh_addr: the neighbour interface address
|
|
|
+ * @if_incoming: the interface the packet was received through
|
|
|
+ * @elp_packet: the received ELP packet
|
|
|
+ *
|
|
|
+ * Updates the ELP neighbour node state with the data received within the new
|
|
|
+ * ELP packet.
|
|
|
+ */
|
|
|
+static void batadv_v_elp_neigh_update(struct batadv_priv *bat_priv,
|
|
|
+ u8 *neigh_addr,
|
|
|
+ struct batadv_hard_iface *if_incoming,
|
|
|
+ struct batadv_elp_packet *elp_packet)
|
|
|
+
|
|
|
+{
|
|
|
+ struct batadv_neigh_node *neigh;
|
|
|
+ struct batadv_orig_node *orig_neigh;
|
|
|
+ struct batadv_hardif_neigh_node *hardif_neigh;
|
|
|
+ s32 seqno_diff;
|
|
|
+ s32 elp_latest_seqno;
|
|
|
+
|
|
|
+ orig_neigh = batadv_v_ogm_orig_get(bat_priv, elp_packet->orig);
|
|
|
+ if (!orig_neigh)
|
|
|
+ return;
|
|
|
+
|
|
|
+ neigh = batadv_neigh_node_new(orig_neigh, if_incoming, neigh_addr);
|
|
|
+ if (!neigh)
|
|
|
+ goto orig_free;
|
|
|
+
|
|
|
+ hardif_neigh = batadv_hardif_neigh_get(if_incoming, neigh_addr);
|
|
|
+ if (!hardif_neigh)
|
|
|
+ goto neigh_free;
|
|
|
+
|
|
|
+ elp_latest_seqno = hardif_neigh->bat_v.elp_latest_seqno;
|
|
|
+ seqno_diff = ntohl(elp_packet->seqno) - elp_latest_seqno;
|
|
|
+
|
|
|
+ /* known or older sequence numbers are ignored. However always adopt
|
|
|
+ * if the router seems to have been restarted.
|
|
|
+ */
|
|
|
+ if (seqno_diff < 1 && seqno_diff > -BATADV_ELP_MAX_AGE)
|
|
|
+ goto hardif_free;
|
|
|
+
|
|
|
+ neigh->last_seen = jiffies;
|
|
|
+ hardif_neigh->last_seen = jiffies;
|
|
|
+ hardif_neigh->bat_v.elp_latest_seqno = ntohl(elp_packet->seqno);
|
|
|
+ hardif_neigh->bat_v.elp_interval = ntohl(elp_packet->elp_interval);
|
|
|
+
|
|
|
+hardif_free:
|
|
|
+ if (hardif_neigh)
|
|
|
+ batadv_hardif_neigh_put(hardif_neigh);
|
|
|
+neigh_free:
|
|
|
+ if (neigh)
|
|
|
+ batadv_neigh_node_put(neigh);
|
|
|
+orig_free:
|
|
|
+ if (orig_neigh)
|
|
|
+ batadv_orig_node_put(orig_neigh);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * batadv_v_elp_packet_recv - main ELP packet handler
|
|
|
+ * @skb: the received packet
|
|
|
+ * @if_incoming: the interface this packet was received through
|
|
|
+ *
|
|
|
+ * Return: NET_RX_SUCCESS and consumes the skb if the packet was peoperly
|
|
|
+ * processed or NET_RX_DROP in case of failure.
|
|
|
+ */
|
|
|
+int batadv_v_elp_packet_recv(struct sk_buff *skb,
|
|
|
+ struct batadv_hard_iface *if_incoming)
|
|
|
+{
|
|
|
+ struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
|
|
|
+ struct batadv_elp_packet *elp_packet;
|
|
|
+ struct batadv_hard_iface *primary_if;
|
|
|
+ struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
|
|
|
+ bool ret;
|
|
|
+
|
|
|
+ ret = batadv_check_management_packet(skb, if_incoming, BATADV_ELP_HLEN);
|
|
|
+ if (!ret)
|
|
|
+ return NET_RX_DROP;
|
|
|
+
|
|
|
+ if (batadv_is_my_mac(bat_priv, ethhdr->h_source))
|
|
|
+ return NET_RX_DROP;
|
|
|
+
|
|
|
+ /* did we receive a B.A.T.M.A.N. V ELP packet on an interface
|
|
|
+ * that does not have B.A.T.M.A.N. V ELP enabled ?
|
|
|
+ */
|
|
|
+ if (strcmp(bat_priv->bat_algo_ops->name, "BATMAN_V") != 0)
|
|
|
+ return NET_RX_DROP;
|
|
|
+
|
|
|
+ elp_packet = (struct batadv_elp_packet *)skb->data;
|
|
|
+
|
|
|
+ batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
|
|
|
+ "Received ELP packet from %pM seqno %u ORIG: %pM\n",
|
|
|
+ ethhdr->h_source, ntohl(elp_packet->seqno),
|
|
|
+ elp_packet->orig);
|
|
|
+
|
|
|
+ primary_if = batadv_primary_if_get_selected(bat_priv);
|
|
|
+ if (!primary_if)
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ batadv_v_elp_neigh_update(bat_priv, ethhdr->h_source, if_incoming,
|
|
|
+ elp_packet);
|
|
|
+
|
|
|
+out:
|
|
|
+ if (primary_if)
|
|
|
+ batadv_hardif_put(primary_if);
|
|
|
+ consume_skb(skb);
|
|
|
+ return NET_RX_SUCCESS;
|
|
|
+}
|