|
@@ -5450,6 +5450,9 @@ wlan_hdd_wifi_config_policy[QCA_WLAN_VENDOR_ATTR_CONFIG_MAX + 1] = {
|
|
|
[QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE_LIST] = {
|
|
|
.type = NLA_BINARY,
|
|
|
.len = WLAN_MAX_IE_LEN + 2},
|
|
|
+ [QCA_WLAN_VENDOR_ATTR_DISCONNECT_IES] = {
|
|
|
+ .type = NLA_BINARY,
|
|
|
+ .len = SIR_MAC_MAX_ADD_IE_LENGTH + 2},
|
|
|
|
|
|
};
|
|
|
|
|
@@ -6612,6 +6615,38 @@ static int hdd_config_gtx(struct hdd_adapter *adapter,
|
|
|
return errno;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_config_disconnect_ies() - Configure disconnect IEs
|
|
|
+ * @adapter: Pointer to HDD adapter
|
|
|
+ * @attr: array of pointer to struct nlattr
|
|
|
+ *
|
|
|
+ * Return: 0 on success; error number otherwise
|
|
|
+ */
|
|
|
+static int hdd_config_disconnect_ies(struct hdd_adapter *adapter,
|
|
|
+ const struct nlattr *attr)
|
|
|
+{
|
|
|
+ struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ hdd_debug("IE len %u session %u device mode %u",
|
|
|
+ nla_len(attr), adapter->vdev_id, adapter->device_mode);
|
|
|
+ if (!nla_len(attr) ||
|
|
|
+ nla_len(attr) > SIR_MAC_MAX_ADD_IE_LENGTH + 2 ||
|
|
|
+ !wlan_is_ie_valid(nla_data(attr), nla_len(attr))) {
|
|
|
+ hdd_err("Invalid disconnect IEs");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = sme_set_disconnect_ies(hdd_ctx->mac_handle,
|
|
|
+ adapter->vdev_id,
|
|
|
+ nla_data(attr),
|
|
|
+ nla_len(attr));
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ hdd_err("Failed to set disconnect_ies");
|
|
|
+
|
|
|
+ return qdf_status_to_os_return(status);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* typedef independent_setter_fn - independent attribute handler
|
|
|
* @adapter: The adapter being configured
|
|
@@ -6696,6 +6731,8 @@ static const struct independent_setters independent_setters[] = {
|
|
|
hdd_config_rsn_ie},
|
|
|
{QCA_WLAN_VENDOR_ATTR_CONFIG_GTX,
|
|
|
hdd_config_gtx},
|
|
|
+ {QCA_WLAN_VENDOR_ATTR_DISCONNECT_IES,
|
|
|
+ hdd_config_disconnect_ies},
|
|
|
};
|
|
|
|
|
|
/**
|