libertas: convert CMD_802_11_DEAUTHENTICATE to a direct command
and remove DISASSOCIATE because it's not in any of the specs and has never been used. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
87c8c72d53
commit
191bb40e72
@@ -1029,7 +1029,9 @@ void lbs_association_worker(struct work_struct *work)
|
|||||||
*/
|
*/
|
||||||
if (priv->mode == IW_MODE_INFRA) {
|
if (priv->mode == IW_MODE_INFRA) {
|
||||||
if (should_deauth_infrastructure(priv, assoc_req)) {
|
if (should_deauth_infrastructure(priv, assoc_req)) {
|
||||||
ret = lbs_send_deauthentication(priv);
|
ret = lbs_cmd_80211_deauthenticate(priv,
|
||||||
|
priv->curbssparams.bssid,
|
||||||
|
WLAN_REASON_DEAUTH_LEAVING);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
lbs_deb_assoc("Deauthentication due to new "
|
lbs_deb_assoc("Deauthentication due to new "
|
||||||
"configuration request failed: %d\n",
|
"configuration request failed: %d\n",
|
||||||
@@ -1289,18 +1291,6 @@ static void lbs_set_basic_rate_flags(u8 *rates, size_t len)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Send Deauthentication Request
|
|
||||||
*
|
|
||||||
* @param priv A pointer to struct lbs_private structure
|
|
||||||
* @return 0--success, -1--fail
|
|
||||||
*/
|
|
||||||
int lbs_send_deauthentication(struct lbs_private *priv)
|
|
||||||
{
|
|
||||||
return lbs_prepare_and_send_command(priv, CMD_802_11_DEAUTHENTICATE,
|
|
||||||
0, CMD_OPTION_WAITFORRSP, 0, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This function prepares command of authenticate.
|
* @brief This function prepares command of authenticate.
|
||||||
*
|
*
|
||||||
@@ -1353,26 +1343,37 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lbs_cmd_80211_deauthenticate(struct lbs_private *priv,
|
/**
|
||||||
struct cmd_ds_command *cmd)
|
* @brief Deauthenticate from a specific BSS
|
||||||
|
*
|
||||||
|
* @param priv A pointer to struct lbs_private structure
|
||||||
|
* @param bssid The specific BSS to deauthenticate from
|
||||||
|
* @param reason The 802.11 sec. 7.3.1.7 Reason Code for deauthenticating
|
||||||
|
*
|
||||||
|
* @return 0 on success, error on failure
|
||||||
|
*/
|
||||||
|
int lbs_cmd_80211_deauthenticate(struct lbs_private *priv, u8 bssid[ETH_ALEN],
|
||||||
|
u16 reason)
|
||||||
{
|
{
|
||||||
struct cmd_ds_802_11_deauthenticate *dauth = &cmd->params.deauth;
|
struct cmd_ds_802_11_deauthenticate cmd;
|
||||||
|
int ret;
|
||||||
|
|
||||||
lbs_deb_enter(LBS_DEB_JOIN);
|
lbs_deb_enter(LBS_DEB_JOIN);
|
||||||
|
|
||||||
cmd->command = cpu_to_le16(CMD_802_11_DEAUTHENTICATE);
|
memset(&cmd, 0, sizeof(cmd));
|
||||||
cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_deauthenticate) +
|
cmd.hdr.size = cpu_to_le16(sizeof(cmd));
|
||||||
S_DS_GEN);
|
memcpy(cmd.macaddr, &bssid[0], ETH_ALEN);
|
||||||
|
cmd.reasoncode = cpu_to_le16(reason);
|
||||||
|
|
||||||
/* set AP MAC address */
|
ret = lbs_cmd_with_response(priv, CMD_802_11_DEAUTHENTICATE, &cmd);
|
||||||
memmove(dauth->macaddr, priv->curbssparams.bssid, ETH_ALEN);
|
|
||||||
|
|
||||||
/* Reason code 3 = Station is leaving */
|
/* Clean up everything even if there was an error; can't assume that
|
||||||
#define REASON_CODE_STA_LEAVING 3
|
* we're still authenticated to the AP after trying to deauth.
|
||||||
dauth->reasoncode = cpu_to_le16(REASON_CODE_STA_LEAVING);
|
*/
|
||||||
|
lbs_mac_event_disconnected(priv);
|
||||||
|
|
||||||
lbs_deb_leave(LBS_DEB_JOIN);
|
lbs_deb_leave(LBS_DEB_JOIN);
|
||||||
return 0;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lbs_cmd_80211_associate(struct lbs_private *priv,
|
int lbs_cmd_80211_associate(struct lbs_private *priv,
|
||||||
@@ -1815,16 +1816,6 @@ done:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lbs_ret_80211_disassociate(struct lbs_private *priv)
|
|
||||||
{
|
|
||||||
lbs_deb_enter(LBS_DEB_JOIN);
|
|
||||||
|
|
||||||
lbs_mac_event_disconnected(priv);
|
|
||||||
|
|
||||||
lbs_deb_leave(LBS_DEB_JOIN);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
|
int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *resp)
|
struct cmd_ds_command *resp)
|
||||||
{
|
{
|
||||||
|
@@ -20,7 +20,7 @@ int lbs_cmd_80211_ad_hoc_start(struct lbs_private *priv,
|
|||||||
struct cmd_ds_command *cmd,
|
struct cmd_ds_command *cmd,
|
||||||
void *pdata_buf);
|
void *pdata_buf);
|
||||||
int lbs_cmd_80211_deauthenticate(struct lbs_private *priv,
|
int lbs_cmd_80211_deauthenticate(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *cmd);
|
u8 bssid[ETH_ALEN], u16 reason);
|
||||||
int lbs_cmd_80211_associate(struct lbs_private *priv,
|
int lbs_cmd_80211_associate(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *cmd,
|
struct cmd_ds_command *cmd,
|
||||||
void *pdata_buf);
|
void *pdata_buf);
|
||||||
@@ -28,12 +28,9 @@ int lbs_cmd_80211_associate(struct lbs_private *priv,
|
|||||||
int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
|
int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *resp);
|
struct cmd_ds_command *resp);
|
||||||
int lbs_ret_80211_ad_hoc_stop(struct lbs_private *priv);
|
int lbs_ret_80211_ad_hoc_stop(struct lbs_private *priv);
|
||||||
int lbs_ret_80211_disassociate(struct lbs_private *priv);
|
|
||||||
int lbs_ret_80211_associate(struct lbs_private *priv,
|
int lbs_ret_80211_associate(struct lbs_private *priv,
|
||||||
struct cmd_ds_command *resp);
|
struct cmd_ds_command *resp);
|
||||||
|
|
||||||
int lbs_stop_adhoc_network(struct lbs_private *priv);
|
int lbs_stop_adhoc_network(struct lbs_private *priv);
|
||||||
|
|
||||||
int lbs_send_deauthentication(struct lbs_private *priv);
|
|
||||||
|
|
||||||
#endif /* _LBS_ASSOC_H */
|
#endif /* _LBS_ASSOC_H */
|
||||||
|
@@ -1413,10 +1413,6 @@ int lbs_prepare_and_send_command(struct lbs_private *priv,
|
|||||||
ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
|
ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CMD_802_11_DEAUTHENTICATE:
|
|
||||||
ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case CMD_802_11_AD_HOC_START:
|
case CMD_802_11_AD_HOC_START:
|
||||||
ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
|
ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
|
||||||
break;
|
break;
|
||||||
|
@@ -258,11 +258,6 @@ static inline int handle_cmd_response(struct lbs_private *priv,
|
|||||||
ret = lbs_ret_80211_associate(priv, resp);
|
ret = lbs_ret_80211_associate(priv, resp);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CMD_RET(CMD_802_11_DISASSOCIATE):
|
|
||||||
case CMD_RET(CMD_802_11_DEAUTHENTICATE):
|
|
||||||
ret = lbs_ret_80211_disassociate(priv);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case CMD_RET(CMD_802_11_AD_HOC_START):
|
case CMD_RET(CMD_802_11_AD_HOC_START):
|
||||||
case CMD_RET(CMD_802_11_AD_HOC_JOIN):
|
case CMD_RET(CMD_802_11_AD_HOC_JOIN):
|
||||||
ret = lbs_ret_80211_ad_hoc_start(priv, resp);
|
ret = lbs_ret_80211_ad_hoc_start(priv, resp);
|
||||||
|
@@ -61,7 +61,6 @@
|
|||||||
#define CMD_RF_REG_MAP 0x0023
|
#define CMD_RF_REG_MAP 0x0023
|
||||||
#define CMD_802_11_DEAUTHENTICATE 0x0024
|
#define CMD_802_11_DEAUTHENTICATE 0x0024
|
||||||
#define CMD_802_11_REASSOCIATE 0x0025
|
#define CMD_802_11_REASSOCIATE 0x0025
|
||||||
#define CMD_802_11_DISASSOCIATE 0x0026
|
|
||||||
#define CMD_MAC_CONTROL 0x0028
|
#define CMD_MAC_CONTROL 0x0028
|
||||||
#define CMD_802_11_AD_HOC_START 0x002b
|
#define CMD_802_11_AD_HOC_START 0x002b
|
||||||
#define CMD_802_11_AD_HOC_JOIN 0x002c
|
#define CMD_802_11_AD_HOC_JOIN 0x002c
|
||||||
|
@@ -232,7 +232,9 @@ struct cmd_ds_802_11_authenticate {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct cmd_ds_802_11_deauthenticate {
|
struct cmd_ds_802_11_deauthenticate {
|
||||||
u8 macaddr[6];
|
struct cmd_header hdr;
|
||||||
|
|
||||||
|
u8 macaddr[ETH_ALEN];
|
||||||
__le16 reasoncode;
|
__le16 reasoncode;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -251,11 +253,6 @@ struct cmd_ds_802_11_associate {
|
|||||||
#endif
|
#endif
|
||||||
} __attribute__ ((packed));
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
struct cmd_ds_802_11_disassociate {
|
|
||||||
u8 destmacaddr[6];
|
|
||||||
__le16 reasoncode;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct cmd_ds_802_11_associate_rsp {
|
struct cmd_ds_802_11_associate_rsp {
|
||||||
struct ieeetypes_assocrsp assocRsp;
|
struct ieeetypes_assocrsp assocRsp;
|
||||||
};
|
};
|
||||||
@@ -697,7 +694,6 @@ struct cmd_ds_command {
|
|||||||
union {
|
union {
|
||||||
struct cmd_ds_802_11_ps_mode psmode;
|
struct cmd_ds_802_11_ps_mode psmode;
|
||||||
struct cmd_ds_802_11_associate associate;
|
struct cmd_ds_802_11_associate associate;
|
||||||
struct cmd_ds_802_11_deauthenticate deauth;
|
|
||||||
struct cmd_ds_802_11_ad_hoc_start ads;
|
struct cmd_ds_802_11_ad_hoc_start ads;
|
||||||
struct cmd_ds_802_11_reset reset;
|
struct cmd_ds_802_11_reset reset;
|
||||||
struct cmd_ds_802_11_ad_hoc_result result;
|
struct cmd_ds_802_11_ad_hoc_result result;
|
||||||
@@ -710,7 +706,6 @@ struct cmd_ds_command {
|
|||||||
struct cmd_ds_802_11_ad_hoc_join adj;
|
struct cmd_ds_802_11_ad_hoc_join adj;
|
||||||
struct cmd_ds_802_11_rssi rssi;
|
struct cmd_ds_802_11_rssi rssi;
|
||||||
struct cmd_ds_802_11_rssi_rsp rssirsp;
|
struct cmd_ds_802_11_rssi_rsp rssirsp;
|
||||||
struct cmd_ds_802_11_disassociate dassociate;
|
|
||||||
struct cmd_ds_mac_reg_access macreg;
|
struct cmd_ds_mac_reg_access macreg;
|
||||||
struct cmd_ds_bbp_reg_access bbpreg;
|
struct cmd_ds_bbp_reg_access bbpreg;
|
||||||
struct cmd_ds_rf_reg_access rfreg;
|
struct cmd_ds_rf_reg_access rfreg;
|
||||||
|
@@ -291,7 +291,9 @@ static ssize_t lbs_rtap_set(struct device *dev,
|
|||||||
if (priv->infra_open || priv->mesh_open)
|
if (priv->infra_open || priv->mesh_open)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
if (priv->mode == IW_MODE_INFRA)
|
if (priv->mode == IW_MODE_INFRA)
|
||||||
lbs_send_deauthentication(priv);
|
lbs_cmd_80211_deauthenticate(priv,
|
||||||
|
priv->curbssparams.bssid,
|
||||||
|
WLAN_REASON_DEAUTH_LEAVING);
|
||||||
else if (priv->mode == IW_MODE_ADHOC)
|
else if (priv->mode == IW_MODE_ADHOC)
|
||||||
lbs_stop_adhoc_network(priv);
|
lbs_stop_adhoc_network(priv);
|
||||||
lbs_add_rtap(priv);
|
lbs_add_rtap(priv);
|
||||||
|
@@ -986,7 +986,9 @@ static int lbs_mesh_set_freq(struct net_device *dev,
|
|||||||
if (fwrq->m != priv->curbssparams.channel) {
|
if (fwrq->m != priv->curbssparams.channel) {
|
||||||
lbs_deb_wext("mesh channel change forces eth disconnect\n");
|
lbs_deb_wext("mesh channel change forces eth disconnect\n");
|
||||||
if (priv->mode == IW_MODE_INFRA)
|
if (priv->mode == IW_MODE_INFRA)
|
||||||
lbs_send_deauthentication(priv);
|
lbs_cmd_80211_deauthenticate(priv,
|
||||||
|
priv->curbssparams.bssid,
|
||||||
|
WLAN_REASON_DEAUTH_LEAVING);
|
||||||
else if (priv->mode == IW_MODE_ADHOC)
|
else if (priv->mode == IW_MODE_ADHOC)
|
||||||
lbs_stop_adhoc_network(priv);
|
lbs_stop_adhoc_network(priv);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user