Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1fe176c authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Simon Wunderlich
Browse files

batman-adv: Fix speedy join in gateway client mode



Speedy join only works when the received packet is either broadcast or an
4addr unicast packet. Thus packets converted from broadcast to unicast via
the gateway handling code have to be converted to 4addr packets to allow
the receiving gateway server to add the sender address as temporary entry
to the translation table.

Not doing it will make the batman-adv gateway server drop the DHCP response
in many situations because it doesn't yet have the TT entry for the
destination of the DHCP response.

Fixes: 37135173 ("batman-adv: change interface_rx to get orig node")
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
Acked-by: default avatarAntonio Quartulli <a@unstable.cc>
Signed-off-by: default avatarMarek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: default avatarSimon Wunderlich <sw@simonwunderlich.de>
parent cbef1e10
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -424,8 +424,8 @@ int batadv_send_skb_via_gw(struct batadv_priv *bat_priv, struct sk_buff *skb,
	struct batadv_orig_node *orig_node;
	struct batadv_orig_node *orig_node;


	orig_node = batadv_gw_get_selected_orig(bat_priv);
	orig_node = batadv_gw_get_selected_orig(bat_priv);
	return batadv_send_skb_unicast(bat_priv, skb, BATADV_UNICAST, 0,
	return batadv_send_skb_unicast(bat_priv, skb, BATADV_UNICAST_4ADDR,
				       orig_node, vid);
				       BATADV_P_DATA, orig_node, vid);
}
}


void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface)
void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface)