[PATCH v2] P2P: Ignore the DEAUTH event from cfg80211 incase of locally generated disconnect

jithu Jance jithu at broadcom.com
Wed May 29 08:58:24 EDT 2013


Hi Jouni,
 
> > Is it safe to ignore this DEAUTH event since the
> > wpa_supplicant_deathenticate function already generated a local DEAUTH
> > event?
> 
> Yes and that is already done with some drivers.

>  Actually even better would be to just handle this
> automatically within driver_nl80211.c. It should be clear there that
> cfg80211 will send a disconnection event after disconnection request.

Would the below patch be sufficient enough?

[PATCH] Ignore the Disconnect event that is generated as a result of
 local disconnect 
hostap: Jithu Jance <jithu at broadcom.com>

---
 src/drivers/driver_nl80211.c |   13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c
index f403189..0dee35a 100644
--- a/src/drivers/driver_nl80211.c
+++ b/src/drivers/driver_nl80211.c
@@ -4892,12 +4892,15 @@ nla_put_failure:
 static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data
*drv,
 					 int reason_code)
 {
+	int ret = 0;
 	wpa_printf(MSG_DEBUG, "%s(reason_code=%d)", __func__, reason_code);
 	nl80211_mark_disconnected(drv);
-	drv->ignore_next_local_disconnect = 0;
 	/* Disconnect command doesn't need BSSID - it uses cached value */
-	return wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
-				       reason_code, 0);
+	if ((ret = wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
+				       reason_code, 0)) < 0)
+		drv->ignore_next_local_disconnect = 0;
+
+	return ret;
 }
 
 
@@ -4905,8 +4908,10 @@ static int
wpa_driver_nl80211_deauthenticate(struct i802_bss *bss,
 					     const u8 *addr, int reason_code)
 {
 	struct wpa_driver_nl80211_data *drv = bss->drv;
-	if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
+	if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
+		drv->ignore_next_local_disconnect = 1;
 		return wpa_driver_nl80211_disconnect(drv, reason_code);
+	}
 	wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
 		   __func__, MAC2STR(addr), reason_code);
 	nl80211_mark_disconnected(drv);
-- 
1.7.9.5


Thanks,


-- 

Jithu Jance




More information about the HostAP mailing list