From 176c133e911c74ef300c0776fb3a1bcfcd834732 Mon Sep 17 00:00:00 2001 From: Srinivas Dasari Date: Tue, 4 Jun 2019 12:50:17 +0530 Subject: [PATCH] Add a vendor attribute to configure disconnect IEs Add a new vendor attribute QCA_WLAN_VENDOR_ATTR_DISCONNECT_IES to configure disconnect IEs to the driver. Driver shall fill these IEs in disassoc/deauth frame. These IEs are expected to be considered only for the next immediate disconnection (disassoc/deauth frame) originated by the DUT, irrespective of the entity (user space/driver/firmware) triggering the disconnection. The host drivers are not expected to use the IEs set through this interface for further disconnections after the first immediate disconnection initiated post the configuration. If the IEs are also updated through cfg80211 interface (after the enhancement to cfg80211_disconnect), host driver is expected to take the union of IEs from both of these interfaces and send in further disassoc/deauth frames. Signed-off-by: Jouni Malinen --- src/common/qca-vendor.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index f02dd73bc..d496640a7 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -1855,6 +1855,25 @@ enum qca_wlan_vendor_attr_config { */ QCA_WLAN_VENDOR_ATTR_CONFIG_GTX = 57, + /* Attribute to configure disconnect IEs to the driver. + * This carries an array of unsigned 8-bit characters. + * + * If this is configured, driver shall fill the IEs in disassoc/deauth + * frame. + * These IEs are expected to be considered only for the next + * immediate disconnection (disassoc/deauth frame) originated by + * the DUT, irrespective of the entity (user space/driver/firmware) + * triggering the disconnection. + * The host drivers are not expected to use the IEs set through + * this interface for further disconnections after the first immediate + * disconnection initiated post the configuration. + * If the IEs are also updated through cfg80211 interface (after the + * enhancement to cfg80211_disconnect), host driver is expected to + * take the union of IEs from both of these interfaces and send in + * further disassoc/deauth frames. + */ + QCA_WLAN_VENDOR_ATTR_DISCONNECT_IES = 58, + /* keep last */ QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST, QCA_WLAN_VENDOR_ATTR_CONFIG_MAX = -- 2.39.2