|
@@ -169,13 +169,6 @@
|
|
|
*/
|
|
|
#define MAX_REMAIN_ON_CHANNEL_DURATION (5000)
|
|
|
|
|
|
-/*
|
|
|
- * Refer @tCfgProtection structure for definition of the bit map.
|
|
|
- * below value is obtained by setting the following bit-fields.
|
|
|
- * enable obss, fromllb, overlapOBSS and overlapFromllb protection.
|
|
|
- */
|
|
|
-#define IBSS_CFG_PROTECTION_ENABLE_MASK 0x8282
|
|
|
-
|
|
|
#define HDD2GHZCHAN(freq, chan, flag) { \
|
|
|
.band = HDD_NL80211_BAND_2GHZ, \
|
|
|
.center_freq = (freq), \
|
|
@@ -543,19 +536,6 @@ static const struct ieee80211_iface_limit
|
|
|
},
|
|
|
};
|
|
|
|
|
|
-/* ADHOC (IBSS) limit */
|
|
|
-static const struct ieee80211_iface_limit
|
|
|
- wlan_hdd_adhoc_iface_limit[] = {
|
|
|
- {
|
|
|
- .max = 1,
|
|
|
- .types = BIT(NL80211_IFTYPE_STATION),
|
|
|
- },
|
|
|
- {
|
|
|
- .max = 1,
|
|
|
- .types = BIT(NL80211_IFTYPE_ADHOC),
|
|
|
- },
|
|
|
-};
|
|
|
-
|
|
|
/* AP ( + AP ) combination */
|
|
|
static const struct ieee80211_iface_limit
|
|
|
wlan_hdd_ap_iface_limit[] = {
|
|
@@ -684,13 +664,6 @@ static struct ieee80211_iface_combination
|
|
|
.max_interfaces = 3,
|
|
|
.n_limits = ARRAY_SIZE(wlan_hdd_sta_iface_limit),
|
|
|
},
|
|
|
- /* ADHOC */
|
|
|
- {
|
|
|
- .limits = wlan_hdd_adhoc_iface_limit,
|
|
|
- .num_different_channels = 2,
|
|
|
- .max_interfaces = 2,
|
|
|
- .n_limits = ARRAY_SIZE(wlan_hdd_adhoc_iface_limit),
|
|
|
- },
|
|
|
/* AP */
|
|
|
{
|
|
|
.limits = wlan_hdd_ap_iface_limit,
|
|
@@ -9964,11 +9937,6 @@ __wlan_hdd_cfg80211_set_ns_offload(struct wiphy *wiphy,
|
|
|
hdd_ctx->ns_offload_enable =
|
|
|
nla_get_u8(tb[QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_FLAG]);
|
|
|
|
|
|
- if (QDF_IBSS_MODE == adapter->device_mode) {
|
|
|
- hdd_debug("NS Offload is not supported in IBSS mode");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
/* update ns offload in case it is already enabled/disabled */
|
|
|
if (hdd_ctx->ns_offload_enable)
|
|
|
hdd_enable_ns_offload(adapter, pmo_ns_offload_dynamic_update);
|
|
@@ -14894,12 +14862,6 @@ int wlan_hdd_cfg80211_init(struct device *dev,
|
|
|
| WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
|
|
|
#endif
|
|
|
|
|
|
- wiphy->features |= NL80211_FEATURE_HT_IBSS;
|
|
|
-
|
|
|
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0))
|
|
|
- wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_VHT_IBSS);
|
|
|
-#endif
|
|
|
-
|
|
|
wlan_hdd_cfg80211_set_wiphy_scan_flags(wiphy);
|
|
|
|
|
|
wlan_scan_cfg80211_add_connected_pno_support(wiphy);
|
|
@@ -14911,7 +14873,6 @@ int wlan_hdd_cfg80211_init(struct device *dev,
|
|
|
wiphy->max_acl_mac_addrs = MAX_ACL_MAC_ADDRESS;
|
|
|
|
|
|
wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
|
|
|
- | BIT(NL80211_IFTYPE_ADHOC)
|
|
|
| BIT(NL80211_IFTYPE_P2P_CLIENT)
|
|
|
| BIT(NL80211_IFTYPE_P2P_GO)
|
|
|
| BIT(NL80211_IFTYPE_AP)
|
|
@@ -15409,10 +15370,13 @@ QDF_STATUS wlan_hdd_update_wiphy_supported_band(struct hdd_context *hdd_ctx)
|
|
|
/* In this function we are registering wiphy. */
|
|
|
int wlan_hdd_cfg80211_register(struct wiphy *wiphy)
|
|
|
{
|
|
|
+ int ret;
|
|
|
+
|
|
|
hdd_enter();
|
|
|
+ ret = wiphy_register(wiphy);
|
|
|
/* Register our wiphy dev with cfg80211 */
|
|
|
- if (0 > wiphy_register(wiphy)) {
|
|
|
- hdd_err("wiphy register failed");
|
|
|
+ if (ret < 0) {
|
|
|
+ hdd_err("wiphy register failed %d", ret);
|
|
|
return -EIO;
|
|
|
}
|
|
|
|
|
@@ -15729,7 +15693,6 @@ static int hdd_change_adapter_mode(struct hdd_adapter *adapter,
|
|
|
{
|
|
|
struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
struct net_device *netdev = adapter->dev;
|
|
|
- struct hdd_config *config = hdd_ctx->config;
|
|
|
struct csr_roam_profile *roam_profile;
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
|
|
@@ -15745,13 +15708,6 @@ static int hdd_change_adapter_mode(struct hdd_adapter *adapter,
|
|
|
roam_profile->pAddIEScan = adapter->scan_info.scan_add_ie.addIEdata;
|
|
|
roam_profile->nAddIEScanLength = adapter->scan_info.scan_add_ie.length;
|
|
|
|
|
|
- if (new_mode == QDF_IBSS_MODE) {
|
|
|
- status = hdd_start_station_adapter(adapter);
|
|
|
- roam_profile->BSSType = eCSR_BSS_TYPE_START_IBSS;
|
|
|
- roam_profile->phyMode =
|
|
|
- hdd_cfg_xlate_to_csr_phy_mode(config->dot11Mode);
|
|
|
- }
|
|
|
-
|
|
|
hdd_exit();
|
|
|
|
|
|
return qdf_status_to_os_return(status);
|
|
@@ -15781,7 +15737,6 @@ static bool hdd_is_client_mode(enum QDF_OPMODE mode)
|
|
|
case QDF_STA_MODE:
|
|
|
case QDF_P2P_CLIENT_MODE:
|
|
|
case QDF_P2P_DEVICE_MODE:
|
|
|
- case QDF_IBSS_MODE:
|
|
|
return true;
|
|
|
default:
|
|
|
return false;
|
|
@@ -15871,11 +15826,6 @@ static int __wlan_hdd_cfg80211_change_iface(struct wiphy *wiphy,
|
|
|
|
|
|
if (hdd_is_client_mode(adapter->device_mode)) {
|
|
|
if (hdd_is_client_mode(new_mode)) {
|
|
|
- if (new_mode == QDF_IBSS_MODE) {
|
|
|
- hdd_deregister_hl_netdev_fc_timer(adapter);
|
|
|
- hdd_deregister_tx_flow_control(adapter);
|
|
|
- }
|
|
|
-
|
|
|
errno = hdd_change_adapter_mode(adapter, new_mode);
|
|
|
if (errno) {
|
|
|
hdd_err("change intf mode fail %d", errno);
|
|
@@ -16246,81 +16196,6 @@ static bool hdd_is_btk_enc_type(uint32_t cipher_type)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-#ifdef QCA_IBSS_SUPPORT
|
|
|
-/**
|
|
|
- * wlan_hdd_add_key_ibss() - API to add IBSS key
|
|
|
- * @adapter: Pointer to adapter
|
|
|
- * @pairwise: need to add key pairwise
|
|
|
- * @key_index: key index
|
|
|
- * @mac_addr: Pointer to mac_addr
|
|
|
- * @params: Pointer to key params
|
|
|
- * @key_already_installed: pointer to key already installed state
|
|
|
- *
|
|
|
- * This API will add IBSS key for given mac address.
|
|
|
- *
|
|
|
- * Return: 0 for success, error number on failure.
|
|
|
- */
|
|
|
-static int wlan_hdd_add_key_ibss(struct hdd_adapter *adapter,
|
|
|
- bool pairwise, u8 key_index,
|
|
|
- const u8 *mac_addr, struct key_params *params,
|
|
|
- bool *key_already_installed)
|
|
|
-{
|
|
|
- struct wlan_objmgr_vdev *vdev;
|
|
|
- int errno;
|
|
|
-
|
|
|
- if (pairwise)
|
|
|
- return 0;
|
|
|
- /* if a key is already installed, block all subsequent ones */
|
|
|
- if (adapter->session.station.ibss_enc_key_installed) {
|
|
|
- hdd_debug("IBSS key installed already");
|
|
|
- *key_already_installed = true;
|
|
|
- return 0;
|
|
|
- }
|
|
|
- /*Set the group key */
|
|
|
- vdev = hdd_objmgr_get_vdev(adapter);
|
|
|
- if (!vdev)
|
|
|
- return -EINVAL;
|
|
|
- errno = wlan_cfg80211_crypto_add_key(vdev, WLAN_CRYPTO_KEY_TYPE_GROUP,
|
|
|
- key_index);
|
|
|
- if (errno) {
|
|
|
- hdd_err("add_ibss_key failed, errno: %d", errno);
|
|
|
- hdd_objmgr_put_vdev(vdev);
|
|
|
- return errno;
|
|
|
- }
|
|
|
- /* Save the keys here and call set_key for setting
|
|
|
- * the PTK after peer joins the IBSS network
|
|
|
- */
|
|
|
- wlan_cfg80211_store_key(vdev, key_index, WLAN_CRYPTO_KEY_TYPE_UNICAST,
|
|
|
- mac_addr, params);
|
|
|
- hdd_objmgr_put_vdev(vdev);
|
|
|
- adapter->session.station.ibss_enc_key_installed = 1;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-#else
|
|
|
-/**
|
|
|
- * wlan_hdd_add_key_ibss() - API to add IBSS key
|
|
|
- * @adapter: Pointer to adapter
|
|
|
- * @pairwise: need to add key pairwise
|
|
|
- * @key_index: key index
|
|
|
- * @mac_addr: Pointer to mac_addr
|
|
|
- * @params: Pointer to key params
|
|
|
- * @key_already_installed: pointer to key already installed state
|
|
|
- *
|
|
|
- * This function is dummy
|
|
|
- *
|
|
|
- * Return: 0
|
|
|
- */
|
|
|
-static inline int
|
|
|
-wlan_hdd_add_key_ibss(struct hdd_adapter *adapter,
|
|
|
- bool pairwise, u8 key_index,
|
|
|
- const u8 *mac_addr, struct key_params *params,
|
|
|
- bool *key_already_installed)
|
|
|
-{
|
|
|
- return 0;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
static int wlan_hdd_add_key_sap(struct hdd_adapter *adapter,
|
|
|
bool pairwise, u8 key_index,
|
|
|
enum wlan_crypto_cipher_type cipher)
|
|
@@ -16391,7 +16266,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
mac_handle_t mac_handle;
|
|
|
struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(ndev);
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
- bool key_already_installed = false, ft_mode = false;
|
|
|
+ bool ft_mode = false;
|
|
|
enum wlan_crypto_cipher_type cipher;
|
|
|
int errno;
|
|
|
struct qdf_mac_addr mac_address;
|
|
@@ -16453,13 +16328,6 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
wma_set_peer_ucast_cipher(mac_address.bytes, cipher);
|
|
|
|
|
|
switch (adapter->device_mode) {
|
|
|
- case QDF_IBSS_MODE:
|
|
|
- errno = wlan_hdd_add_key_ibss(adapter, pairwise, key_index,
|
|
|
- mac_addr, params,
|
|
|
- &key_already_installed);
|
|
|
- if (key_already_installed)
|
|
|
- return 0;
|
|
|
- break;
|
|
|
case QDF_SAP_MODE:
|
|
|
case QDF_P2P_GO_MODE:
|
|
|
errno = wlan_hdd_add_key_sap(adapter, pairwise,
|
|
@@ -17631,32 +17499,6 @@ static int wlan_hdd_cfg80211_connect_start(struct hdd_adapter *adapter,
|
|
|
roam_profile->ChannelInfo.freq_list = NULL;
|
|
|
roam_profile->ChannelInfo.numOfChannels = 0;
|
|
|
}
|
|
|
- if (QDF_IBSS_MODE == adapter->device_mode && oper_freq) {
|
|
|
- /*
|
|
|
- * Need to post the IBSS power save parameters
|
|
|
- * to WMA. WMA will configure this parameters
|
|
|
- * to firmware if power save is enabled by the
|
|
|
- * firmware.
|
|
|
- */
|
|
|
- qdf_status = hdd_set_ibss_power_save_params(adapter);
|
|
|
-
|
|
|
- if (QDF_STATUS_SUCCESS != qdf_status) {
|
|
|
- hdd_err("Set IBSS Power Save Params Failed");
|
|
|
- status = -EINVAL;
|
|
|
- goto conn_failure;
|
|
|
- }
|
|
|
- roam_profile->ch_params.ch_width =
|
|
|
- hdd_map_nl_chan_width(ch_width);
|
|
|
- /*
|
|
|
- * In IBSS mode while operating in 2.4 GHz,
|
|
|
- * the device supports only 20 MHz.
|
|
|
- */
|
|
|
- if (WLAN_REG_IS_24GHZ_CH_FREQ(oper_freq))
|
|
|
- roam_profile->ch_params.ch_width =
|
|
|
- CH_WIDTH_20MHZ;
|
|
|
- hdd_select_cbmode(adapter, oper_freq,
|
|
|
- &roam_profile->ch_params);
|
|
|
- }
|
|
|
|
|
|
if (wlan_hdd_cfg80211_check_pmf_valid(roam_profile)) {
|
|
|
status = -EINVAL;
|
|
@@ -18899,521 +18741,6 @@ static int wlan_hdd_cfg80211_set_ie(struct hdd_adapter *adapter,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifdef QCA_IBSS_SUPPORT
|
|
|
-/**
|
|
|
- * hdd_is_wpaie_present() - check for WPA ie
|
|
|
- * @ie: Pointer to ie
|
|
|
- * @ie_len: Ie length
|
|
|
- *
|
|
|
- * Parse the received IE to find the WPA IE
|
|
|
- *
|
|
|
- * Return: true if wpa ie is found else false
|
|
|
- */
|
|
|
-static bool hdd_is_wpaie_present(const uint8_t *ie, uint8_t ie_len)
|
|
|
-{
|
|
|
- uint8_t eLen = 0;
|
|
|
- uint16_t remLen = ie_len;
|
|
|
- uint8_t elementId = 0;
|
|
|
-
|
|
|
- while (remLen >= 2) {
|
|
|
- elementId = *ie++;
|
|
|
- eLen = *ie++;
|
|
|
- remLen -= 2;
|
|
|
- if (eLen > remLen) {
|
|
|
- hdd_err("Invalid IE length: %d", eLen);
|
|
|
- return false;
|
|
|
- }
|
|
|
- if ((elementId == DOT11F_EID_WPA) && (remLen > 5)) {
|
|
|
- /* OUI - 0x00 0X50 0XF2
|
|
|
- * WPA Information Element - 0x01
|
|
|
- * WPA version - 0x01
|
|
|
- */
|
|
|
- if (0 == memcmp(&ie[0], "\x00\x50\xf2\x01\x01", 5))
|
|
|
- return true;
|
|
|
- }
|
|
|
- ie += eLen;
|
|
|
- remLen -= eLen;
|
|
|
- }
|
|
|
- return false;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wlan_hdd_cfg80211_set_privacy_ibss() - set ibss privacy
|
|
|
- * @adapter: Pointer to adapter
|
|
|
- * @param: Pointer to IBSS parameters
|
|
|
- *
|
|
|
- * This function is used to initialize the security settings in IBSS mode
|
|
|
- *
|
|
|
- * Return: 0 for success, non-zero for failure
|
|
|
- */
|
|
|
-static int wlan_hdd_cfg80211_set_privacy_ibss(struct hdd_adapter *adapter,
|
|
|
- struct cfg80211_ibss_params
|
|
|
- *params)
|
|
|
-{
|
|
|
- uint32_t ret;
|
|
|
- int status = 0;
|
|
|
- eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
|
|
|
- struct hdd_station_ctx *sta_ctx =
|
|
|
- WLAN_HDD_GET_STATION_CTX_PTR(adapter);
|
|
|
- struct csr_roam_profile *roam_profile;
|
|
|
-
|
|
|
- hdd_enter();
|
|
|
-
|
|
|
- sta_ctx->wpa_versions = 0;
|
|
|
- qdf_mem_zero(&sta_ctx->ibss_enc_key, sizeof(tCsrRoamSetKey));
|
|
|
- sta_ctx->ibss_enc_key_installed = 0;
|
|
|
-
|
|
|
- if (params->ie_len && (params->ie)) {
|
|
|
- if (wlan_get_ie_ptr_from_eid(WLAN_EID_RSN, params->ie,
|
|
|
- params->ie_len)) {
|
|
|
- sta_ctx->wpa_versions = NL80211_WPA_VERSION_2;
|
|
|
- encryptionType = eCSR_ENCRYPT_TYPE_AES;
|
|
|
- } else if (hdd_is_wpaie_present(params->ie, params->ie_len)) {
|
|
|
- tDot11fIEWPA dot11_wpa_ie;
|
|
|
- mac_handle_t mac_handle =
|
|
|
- hdd_adapter_get_mac_handle(adapter);
|
|
|
- const u8 *ie;
|
|
|
-
|
|
|
- memset(&dot11_wpa_ie, 0, sizeof(dot11_wpa_ie));
|
|
|
- ie = wlan_get_ie_ptr_from_eid(DOT11F_EID_WPA,
|
|
|
- params->ie, params->ie_len);
|
|
|
- if (ie) {
|
|
|
- sta_ctx->wpa_versions = NL80211_WPA_VERSION_1;
|
|
|
- /* Unpack the WPA IE
|
|
|
- * Skip past the EID byte and length byte
|
|
|
- * and four byte WiFi OUI
|
|
|
- */
|
|
|
- if (ie[1] < DOT11F_IE_WPA_MIN_LEN ||
|
|
|
- ie[1] > DOT11F_IE_WPA_MAX_LEN) {
|
|
|
- hdd_err("invalid ie len:%d", ie[1]);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- ret = dot11f_unpack_ie_wpa(
|
|
|
- MAC_CONTEXT(mac_handle),
|
|
|
- (uint8_t *)&ie[2 + 4],
|
|
|
- ie[1] - 4, &dot11_wpa_ie, false);
|
|
|
- if (DOT11F_FAILED(ret)) {
|
|
|
- hdd_err("unpack failed ret: 0x%x", ret);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- /*
|
|
|
- * Extract the multicast cipher, the
|
|
|
- * encType for unicast cipher for
|
|
|
- * wpa-none is none
|
|
|
- */
|
|
|
- encryptionType =
|
|
|
- hdd_translate_wpa_to_csr_encryption_type
|
|
|
- (dot11_wpa_ie.multicast_cipher);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- status =
|
|
|
- wlan_hdd_cfg80211_set_ie(adapter, params->ie,
|
|
|
- params->ie_len);
|
|
|
-
|
|
|
- if (0 > status) {
|
|
|
- hdd_err("Failed to parse WPA/RSN IE");
|
|
|
- return status;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- roam_profile = hdd_roam_profile(adapter);
|
|
|
- roam_profile->AuthType.authType[0] =
|
|
|
- sta_ctx->conn_info.auth_type = eCSR_AUTH_TYPE_OPEN_SYSTEM;
|
|
|
-
|
|
|
- if (params->privacy) {
|
|
|
- /* Security enabled IBSS, At this time there is no information
|
|
|
- * available about the security parameters, so initialise the
|
|
|
- * encryption type to eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
|
|
|
- * The correct security parameters will be updated later in
|
|
|
- * wlan_hdd_cfg80211_add_key Hal expects encryption type to be
|
|
|
- * set inorder enable privacy bit in beacons
|
|
|
- */
|
|
|
-
|
|
|
- encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
|
|
|
- }
|
|
|
- hdd_debug("encryptionType=%d", encryptionType);
|
|
|
- sta_ctx->conn_info.uc_encrypt_type = encryptionType;
|
|
|
- roam_profile->EncryptionType.numEntries = 1;
|
|
|
- roam_profile->EncryptionType.encryptionType[0] =
|
|
|
- encryptionType;
|
|
|
- return status;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * __wlan_hdd_cfg80211_join_ibss() - join ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- * @param: Pointer to IBSS join parameters
|
|
|
- *
|
|
|
- * This function is used to create/join an IBSS network
|
|
|
- *
|
|
|
- * Return: 0 for success, non-zero for failure
|
|
|
- */
|
|
|
-static int __wlan_hdd_cfg80211_join_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev,
|
|
|
- struct cfg80211_ibss_params *params)
|
|
|
-{
|
|
|
- struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
- struct csr_roam_profile *roam_profile;
|
|
|
- int status;
|
|
|
- struct hdd_station_ctx *sta_ctx =
|
|
|
- WLAN_HDD_GET_STATION_CTX_PTR(adapter);
|
|
|
- struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
- struct qdf_mac_addr bssid;
|
|
|
- uint8_t channelNum = 0;
|
|
|
- mac_handle_t mac_handle;
|
|
|
- struct wlan_mlme_ibss_cfg ibss_cfg = {0};
|
|
|
- uint8_t conn_info_channel;
|
|
|
-
|
|
|
- hdd_enter();
|
|
|
-
|
|
|
- if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
- hdd_err("Command not allowed in FTM mode");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- if (wlan_hdd_validate_vdev_id(adapter->vdev_id))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- qdf_mtrace(QDF_MODULE_ID_HDD, QDF_MODULE_ID_HDD,
|
|
|
- TRACE_CODE_HDD_CFG80211_JOIN_IBSS,
|
|
|
- adapter->vdev_id, adapter->device_mode);
|
|
|
-
|
|
|
- hdd_debug("Device_mode %s(%d)",
|
|
|
- qdf_opmode_str(adapter->device_mode), adapter->device_mode);
|
|
|
-
|
|
|
- status = wlan_hdd_validate_context(hdd_ctx);
|
|
|
-
|
|
|
- if (0 != status)
|
|
|
- return status;
|
|
|
-
|
|
|
- if (QDF_IS_STATUS_ERROR(ucfg_mlme_get_ibss_cfg(hdd_ctx->psoc,
|
|
|
- &ibss_cfg))) {
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- mac_handle = hdd_ctx->mac_handle;
|
|
|
- if (NULL !=
|
|
|
- params->chandef.chan) {
|
|
|
- uint32_t numChans = CFG_VALID_CHANNEL_LIST_LEN;
|
|
|
- uint32_t validChan[CFG_VALID_CHANNEL_LIST_LEN];
|
|
|
- int indx;
|
|
|
-
|
|
|
- /* Get channel number */
|
|
|
- channelNum = ieee80211_frequency_to_channel(
|
|
|
- params->
|
|
|
- chandef.
|
|
|
- chan->
|
|
|
- center_freq);
|
|
|
- ucfg_mlme_get_valid_channel_freq_list(hdd_ctx->psoc, validChan,
|
|
|
- &numChans);
|
|
|
-
|
|
|
- for (indx = 0; indx < numChans; indx++) {
|
|
|
- if (channelNum ==
|
|
|
- wlan_reg_freq_to_chan(hdd_ctx->pdev, validChan[indx]))
|
|
|
- break;
|
|
|
- }
|
|
|
- if (indx >= numChans) {
|
|
|
- hdd_err("Not valid Channel: %d", channelNum);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /* Disable NAN Discovery if enabled */
|
|
|
- ucfg_nan_disable_concurrency(hdd_ctx->psoc);
|
|
|
-
|
|
|
- if (!policy_mgr_allow_concurrency(
|
|
|
- hdd_ctx->psoc, PM_IBSS_MODE,
|
|
|
- wlan_reg_chan_to_freq(hdd_ctx->pdev, channelNum),
|
|
|
- HW_MODE_20_MHZ)) {
|
|
|
- hdd_err("This concurrency combination is not allowed");
|
|
|
- return -ECONNREFUSED;
|
|
|
- }
|
|
|
-
|
|
|
- status = policy_mgr_reset_connection_update(hdd_ctx->psoc);
|
|
|
- if (!QDF_IS_STATUS_SUCCESS(status))
|
|
|
- hdd_err("qdf_reset_connection_update failed status: %d", status);
|
|
|
-
|
|
|
- status = policy_mgr_current_connections_update(
|
|
|
- hdd_ctx->psoc, adapter->vdev_id,
|
|
|
- wlan_reg_chan_to_freq(hdd_ctx->pdev, channelNum),
|
|
|
- POLICY_MGR_UPDATE_REASON_JOIN_IBSS);
|
|
|
- if (QDF_STATUS_E_FAILURE == status) {
|
|
|
- hdd_err("connections update failed!!");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- if (QDF_STATUS_SUCCESS == status) {
|
|
|
- status = policy_mgr_wait_for_connection_update(
|
|
|
- hdd_ctx->psoc);
|
|
|
- if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
- hdd_err("qdf wait for event failed!!");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /*Try disconnecting if already in connected state */
|
|
|
- status = wlan_hdd_try_disconnect(adapter,
|
|
|
- eSIR_MAC_UNSPEC_FAILURE_REASON);
|
|
|
- if (0 > status) {
|
|
|
- hdd_err("Failed to disconnect the existing IBSS connection");
|
|
|
- return -EALREADY;
|
|
|
- }
|
|
|
-
|
|
|
- roam_profile = hdd_roam_profile(adapter);
|
|
|
-
|
|
|
- if (eCSR_BSS_TYPE_START_IBSS != roam_profile->BSSType) {
|
|
|
- hdd_err("Interface type is not set to IBSS");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- /* enable selected protection checks in IBSS mode */
|
|
|
- roam_profile->cfg_protection = IBSS_CFG_PROTECTION_ENABLE_MASK;
|
|
|
-
|
|
|
- /* BSSID is provided by upper layers hence no need to AUTO generate */
|
|
|
- if (params->bssid) {
|
|
|
- if (ucfg_mlme_set_ibss_auto_bssid(hdd_ctx->psoc, 0)
|
|
|
- == QDF_STATUS_E_FAILURE) {
|
|
|
- hdd_err("Unable to update MLME IBSS Auto BSSID config");
|
|
|
- return -EIO;
|
|
|
- }
|
|
|
- qdf_mem_copy(bssid.bytes, params->bssid, QDF_MAC_ADDR_SIZE);
|
|
|
- } else if (ibss_cfg.coalesing_enable == 0) {
|
|
|
- if (ucfg_mlme_set_ibss_auto_bssid(hdd_ctx->psoc, 0)
|
|
|
- == QDF_STATUS_E_FAILURE) {
|
|
|
- hdd_err("Unable to update MLME IBSS Auto BSSID config");
|
|
|
- return -EIO;
|
|
|
- }
|
|
|
- qdf_copy_macaddr(&bssid, &ibss_cfg.bssid);
|
|
|
- }
|
|
|
-
|
|
|
- if (cfg_in_range(CFG_BEACON_INTERVAL, params->beacon_interval))
|
|
|
- roam_profile->beaconInterval = params->beacon_interval;
|
|
|
- else
|
|
|
- roam_profile->beaconInterval = cfg_get(hdd_ctx->psoc,
|
|
|
- CFG_BEACON_INTERVAL);
|
|
|
-
|
|
|
- /* Set Channel */
|
|
|
- if (channelNum) {
|
|
|
- /* Set the Operational Channel */
|
|
|
- hdd_debug("set channel %d", channelNum);
|
|
|
- roam_profile->ChannelInfo.numOfChannels = 1;
|
|
|
- sta_ctx->conn_info.chan_freq =
|
|
|
- wlan_reg_chan_to_freq(hdd_ctx->pdev,
|
|
|
- channelNum);
|
|
|
- roam_profile->ChannelInfo.freq_list =
|
|
|
- &sta_ctx->conn_info.chan_freq;
|
|
|
- }
|
|
|
-
|
|
|
- /* Initialize security parameters */
|
|
|
- status = wlan_hdd_cfg80211_set_privacy_ibss(adapter, params);
|
|
|
- if (status < 0) {
|
|
|
- hdd_err("failed to set security parameters");
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- conn_info_channel =
|
|
|
- wlan_reg_freq_to_chan(
|
|
|
- hdd_ctx->pdev,
|
|
|
- sta_ctx->conn_info.chan_freq);
|
|
|
- /* Issue connect start */
|
|
|
- status = wlan_hdd_cfg80211_connect_start(adapter, params->ssid,
|
|
|
- params->ssid_len,
|
|
|
- bssid.bytes, NULL,
|
|
|
- conn_info_channel,
|
|
|
- params->chandef.width);
|
|
|
-
|
|
|
- if (0 > status) {
|
|
|
- hdd_err("connect failed");
|
|
|
- return status;
|
|
|
- }
|
|
|
- hdd_exit();
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wlan_hdd_cfg80211_join_ibss() - join ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- * @param: Pointer to IBSS join parameters
|
|
|
- *
|
|
|
- * This function is used to create/join an IBSS network
|
|
|
- *
|
|
|
- * Return: 0 for success, non-zero for failure
|
|
|
- */
|
|
|
-static int wlan_hdd_cfg80211_join_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev,
|
|
|
- struct cfg80211_ibss_params *params)
|
|
|
-{
|
|
|
- int errno;
|
|
|
- struct osif_vdev_sync *vdev_sync;
|
|
|
-
|
|
|
- errno = osif_vdev_sync_op_start(dev, &vdev_sync);
|
|
|
- if (errno)
|
|
|
- return errno;
|
|
|
-
|
|
|
- errno = __wlan_hdd_cfg80211_join_ibss(wiphy, dev, params);
|
|
|
-
|
|
|
- osif_vdev_sync_op_stop(vdev_sync);
|
|
|
-
|
|
|
- return errno;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * __wlan_hdd_cfg80211_leave_ibss() - leave ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- *
|
|
|
- * This function is used to leave an IBSS network
|
|
|
- *
|
|
|
- * Return: 0 for success, non-zero for failure
|
|
|
- */
|
|
|
-static int __wlan_hdd_cfg80211_leave_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev)
|
|
|
-{
|
|
|
- struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
|
|
- struct csr_roam_profile *roam_profile;
|
|
|
- struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
- int status;
|
|
|
- mac_handle_t mac_handle;
|
|
|
- unsigned long rc;
|
|
|
- tSirUpdateIE update_ie;
|
|
|
-
|
|
|
- hdd_enter();
|
|
|
-
|
|
|
- if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
- hdd_err("Command not allowed in FTM mode");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- if (wlan_hdd_validate_vdev_id(adapter->vdev_id))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- qdf_mtrace(QDF_MODULE_ID_HDD, QDF_MODULE_ID_HDD,
|
|
|
- TRACE_CODE_HDD_CFG80211_LEAVE_IBSS,
|
|
|
- adapter->vdev_id, eCSR_DISCONNECT_REASON_IBSS_LEAVE);
|
|
|
-
|
|
|
- status = wlan_hdd_validate_context(hdd_ctx);
|
|
|
- if (0 != status)
|
|
|
- return status;
|
|
|
-
|
|
|
- hdd_debug("Device_mode %s(%d)",
|
|
|
- qdf_opmode_str(adapter->device_mode), adapter->device_mode);
|
|
|
-
|
|
|
- roam_profile = hdd_roam_profile(adapter);
|
|
|
-
|
|
|
- /* Issue disconnect only if interface type is set to IBSS */
|
|
|
- if (eCSR_BSS_TYPE_START_IBSS != roam_profile->BSSType) {
|
|
|
- hdd_err("BSS Type is not set to IBSS");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- /* Clearing add IE of beacon */
|
|
|
- qdf_mem_copy(update_ie.bssid.bytes, adapter->mac_addr.bytes,
|
|
|
- sizeof(tSirMacAddr));
|
|
|
- update_ie.vdev_id = adapter->vdev_id;
|
|
|
- update_ie.ieBufferlength = 0;
|
|
|
- update_ie.pAdditionIEBuffer = NULL;
|
|
|
- update_ie.append = true;
|
|
|
- update_ie.notify = true;
|
|
|
- mac_handle = hdd_ctx->mac_handle;
|
|
|
- if (sme_update_add_ie(mac_handle,
|
|
|
- &update_ie,
|
|
|
- eUPDATE_IE_PROBE_BCN) == QDF_STATUS_E_FAILURE) {
|
|
|
- hdd_err("Could not pass on PROBE_RSP_BCN data to PE");
|
|
|
- }
|
|
|
-
|
|
|
- /* Reset WNI_CFG_PROBE_RSP Flags */
|
|
|
- wlan_hdd_reset_prob_rspies(adapter);
|
|
|
-
|
|
|
- /* Issue Disconnect request */
|
|
|
- INIT_COMPLETION(adapter->disconnect_comp_var);
|
|
|
- status = sme_roam_disconnect(mac_handle,
|
|
|
- adapter->vdev_id,
|
|
|
- eCSR_DISCONNECT_REASON_IBSS_LEAVE,
|
|
|
- eSIR_MAC_UNSPEC_FAILURE_REASON);
|
|
|
- if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
- hdd_err("sme_roam_disconnect failed status: %d",
|
|
|
- status);
|
|
|
- return -EAGAIN;
|
|
|
- }
|
|
|
-
|
|
|
- /* wait for mc thread to cleanup and then return to upper stack
|
|
|
- * so by the time upper layer calls the change interface, we are
|
|
|
- * all set to proceed further
|
|
|
- */
|
|
|
- rc = wait_for_completion_timeout(&adapter->disconnect_comp_var,
|
|
|
- msecs_to_jiffies(SME_DISCONNECT_TIMEOUT));
|
|
|
- if (!rc) {
|
|
|
- hdd_err("Failed to disconnect, timed out");
|
|
|
- return -ETIMEDOUT;
|
|
|
- }
|
|
|
-
|
|
|
- hdd_exit();
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wlan_hdd_cfg80211_leave_ibss() - leave ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- *
|
|
|
- * This function is used to leave an IBSS network
|
|
|
- *
|
|
|
- * Return: 0 for success, non-zero for failure
|
|
|
- */
|
|
|
-static int wlan_hdd_cfg80211_leave_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev)
|
|
|
-{
|
|
|
- int errno;
|
|
|
- struct osif_vdev_sync *vdev_sync;
|
|
|
-
|
|
|
- errno = osif_vdev_sync_op_start(dev, &vdev_sync);
|
|
|
- if (errno)
|
|
|
- return errno;
|
|
|
-
|
|
|
- errno = __wlan_hdd_cfg80211_leave_ibss(wiphy, dev);
|
|
|
-
|
|
|
- osif_vdev_sync_op_stop(vdev_sync);
|
|
|
-
|
|
|
- return errno;
|
|
|
-}
|
|
|
-#else
|
|
|
-/**
|
|
|
- * wlan_hdd_cfg80211_join_ibss() - join ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- * @param: Pointer to IBSS join parameters
|
|
|
- *
|
|
|
- * This function is dummy
|
|
|
- *
|
|
|
- * Return: 0
|
|
|
- */
|
|
|
-static inline int
|
|
|
-wlan_hdd_cfg80211_join_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev,
|
|
|
- struct cfg80211_ibss_params *params)
|
|
|
-{
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wlan_hdd_cfg80211_leave_ibss() - leave ibss
|
|
|
- * @wiphy: Pointer to wiphy
|
|
|
- * @dev: Pointer to network device
|
|
|
- *
|
|
|
- * This function is dummy
|
|
|
- *
|
|
|
- * Return: 0
|
|
|
- */
|
|
|
-static inline int
|
|
|
-wlan_hdd_cfg80211_leave_ibss(struct wiphy *wiphy,
|
|
|
- struct net_device *dev)
|
|
|
-{
|
|
|
- return 0;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
static void wlan_hdd_cfg80211_store_wep_key(struct hdd_adapter *adapter,
|
|
|
struct wlan_objmgr_vdev *vdev,
|
|
|
struct cfg80211_connect_params *req)
|
|
@@ -19612,8 +18939,7 @@ static int wlan_hdd_wait_for_disconnect(mac_handle_t mac_handle,
|
|
|
uint32_t wait_time = SME_DISCONNECT_TIMEOUT;
|
|
|
|
|
|
/* Return if already disconnected */
|
|
|
- if (sta_ctx->conn_info.conn_state == eConnectionState_NotConnected ||
|
|
|
- sta_ctx->conn_info.conn_state == eConnectionState_IbssDisconnected)
|
|
|
+ if (sta_ctx->conn_info.conn_state == eConnectionState_NotConnected)
|
|
|
return 0;
|
|
|
|
|
|
/* If already in disconnecting state just wait for its completion */
|
|
@@ -23297,8 +22623,6 @@ void hdd_send_update_owe_info_event(struct hdd_adapter *adapter,
|
|
|
* @scan: Scan
|
|
|
* @connect: Connect
|
|
|
* @disconnect: Disconnect
|
|
|
- * @join_ibss = Join ibss
|
|
|
- * @leave_ibss = Leave ibss
|
|
|
* @set_wiphy_params = Set wiphy params
|
|
|
* @set_tx_power = Set tx power
|
|
|
* @get_tx_power = get tx power
|
|
@@ -23346,8 +22670,6 @@ static struct cfg80211_ops wlan_hdd_cfg80211_ops = {
|
|
|
.scan = wlan_hdd_cfg80211_scan,
|
|
|
.connect = wlan_hdd_cfg80211_connect,
|
|
|
.disconnect = wlan_hdd_cfg80211_disconnect,
|
|
|
- .join_ibss = wlan_hdd_cfg80211_join_ibss,
|
|
|
- .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
|
|
|
.set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
|
|
|
.set_tx_power = wlan_hdd_cfg80211_set_txpower,
|
|
|
.get_tx_power = wlan_hdd_cfg80211_get_txpower,
|