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

Commit 5870adc6 authored by Marek Lindner's avatar Marek Lindner Committed by Antonio Quartulli
Browse files

batman-adv: only drop packets of known wifi clients



bug introduced with 59b699cd

If the source or destination mac address of an ethernet packet
could not be found in the translation table the packet was
dropped if AP isolation was turned on. This behavior would
make it impossible to send broadcast packets over the mesh as
the broadcast address will never enter the translation table.

Signed-off-by: default avatarMarek Lindner <lindner_marek@yahoo.de>
Acked-by: default avatarAntonio Quartulli <ordex@autistici.org>
parent a18e08bd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2031,10 +2031,10 @@ bool is_ap_isolated(struct bat_priv *bat_priv, uint8_t *src, uint8_t *dst)
{
	struct tt_local_entry *tt_local_entry = NULL;
	struct tt_global_entry *tt_global_entry = NULL;
	bool ret = true;
	bool ret = false;

	if (!atomic_read(&bat_priv->ap_isolation))
		return false;
		goto out;

	tt_local_entry = tt_local_hash_find(bat_priv, dst);
	if (!tt_local_entry)
@@ -2044,10 +2044,10 @@ bool is_ap_isolated(struct bat_priv *bat_priv, uint8_t *src, uint8_t *dst)
	if (!tt_global_entry)
		goto out;

	if (_is_ap_isolated(tt_local_entry, tt_global_entry))
	if (!_is_ap_isolated(tt_local_entry, tt_global_entry))
		goto out;

	ret = false;
	ret = true;

out:
	if (tt_global_entry)