hostapd: Skip hostapd ACL check for drivers supporting ACL offload
authorSunil Dutt <usdutt@qti.qualcomm.com>
Thu, 14 Jan 2016 12:55:57 +0000 (18:25 +0530)
committerJouni Malinen <j@w1.fi>
Fri, 17 Jun 2016 17:45:35 +0000 (20:45 +0300)
Commit 0603bcb7fe8babf183362518238c142afe8e2036 ('hostapd: Process MAC
ACLs on a station association event (SME in driver)') processes MAC ACL
on a station association event for drivers which use AP SME offload but
does not consider the scenario where the drivers offload ACL. This can
result in station disconnection, though the driver accepts the
connection. Address this by avoiding the hostapd ACL check for the
drivers offloading MAC ACL.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
src/ap/drv_callbacks.c

index 02557ab..3552b3e 100644 (file)
@@ -116,8 +116,15 @@ int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
        }
        sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS | WLAN_STA_WPS2);
 
-       res = hostapd_check_acl(hapd, addr, NULL);
-       if (res != HOSTAPD_ACL_ACCEPT) {
+       /*
+        * ACL configurations to the drivers (implementing AP SME and ACL
+        * offload) without hostapd's knowledge, can result in a disconnection
+        * though the driver accepts the connection. Skip the hostapd check for
+        * ACL if the driver supports ACL offload to avoid potentially
+        * conflicting ACL rules.
+        */
+       if (hapd->iface->drv_max_acl_mac_addrs == 0 &&
+           hostapd_check_acl(hapd, addr, NULL) != HOSTAPD_ACL_ACCEPT) {
                wpa_printf(MSG_INFO, "STA " MACSTR " not allowed to connect",
                           MAC2STR(addr));
                reason = WLAN_REASON_UNSPECIFIED;