From: Johannes Berg It's not really valid to send off-channel in all cases, so pass whether it should be allowed or not and don't set it in the AP case. Also, to get the right ifindex for hostapd, pass a bss pointer instead of the drv pointer. Signed-hostap: Johannes Berg --- src/drivers/driver_nl80211.c | 26 ++++++++++++++------------ 1 files changed, 14 insertions(+), 12 deletions(-) diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 31fd147..35185aa 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -288,10 +288,10 @@ static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv, int local_state_change); static void nl80211_remove_monitor_interface( struct wpa_driver_nl80211_data *drv); -static int nl80211_send_frame_cmd(struct wpa_driver_nl80211_data *drv, +static int nl80211_send_frame_cmd(struct i802_bss *bss, unsigned int freq, unsigned int wait, const u8 *buf, size_t buf_len, u64 *cookie, - int no_cck); + int no_cck, int offchanok); static int wpa_driver_nl80211_probe_req_report(void *priv, int report); #ifdef HOSTAPD @@ -4350,13 +4350,13 @@ static int wpa_driver_nl80211_send_mlme(void *priv, const u8 *data, * but it works due to the single-threaded nature * of wpa_supplicant. */ - return nl80211_send_frame_cmd(drv, drv->last_mgmt_freq, 0, - data, data_len, NULL, 1); + return nl80211_send_frame_cmd(bss, drv->last_mgmt_freq, 0, + data, data_len, NULL, 1, 1); } if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) { - return nl80211_send_frame_cmd(drv, drv->ap_oper_freq, 0, - data, data_len, NULL, 0); + return nl80211_send_frame_cmd(bss, drv->ap_oper_freq, 0, + data, data_len, NULL, 0, 0); } if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT && @@ -6991,11 +6991,12 @@ static int cookie_handler(struct nl_msg *msg, void *arg) } -static int nl80211_send_frame_cmd(struct wpa_driver_nl80211_data *drv, +static int nl80211_send_frame_cmd(struct i802_bss *bss, unsigned int freq, unsigned int wait, const u8 *buf, size_t buf_len, - u64 *cookie_out, int no_cck) + u64 *cookie_out, int no_cck, int offchanok) { + struct wpa_driver_nl80211_data *drv = bss->drv; struct nl_msg *msg; u64 cookie; int ret = -1; @@ -7006,11 +7007,12 @@ static int nl80211_send_frame_cmd(struct wpa_driver_nl80211_data *drv, nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME); - NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex); + NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex); NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq); if (wait) NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait); - NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK); + if (offchanok) + NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK); if (no_cck) NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE); @@ -7067,10 +7069,10 @@ static int wpa_driver_nl80211_send_action(void *priv, unsigned int freq, if (is_ap_interface(drv->nlmode)) ret = wpa_driver_nl80211_send_mlme(priv, buf, 24 + data_len); else - ret = nl80211_send_frame_cmd(drv, freq, wait_time, buf, + ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf, 24 + data_len, &drv->send_action_cookie, - no_cck); + no_cck, 1); os_free(buf); return ret; -- 1.7.6.3