blob: 6a8178f4a67565e6accd67d05fcad66108ed1196 [file] [log] [blame]
Jouni Malinenb203ffc2009-12-23 13:15:40 +01001/*
2 * Off-channel operation helpers
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2004, Instant802 Networks, Inc.
6 * Copyright 2005, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040015#include <linux/export.h>
Jouni Malinenb203ffc2009-12-23 13:15:40 +010016#include <net/mac80211.h>
17#include "ieee80211_i.h"
Johannes Berg2eb278e2012-06-05 14:28:42 +020018#include "driver-ops.h"
Jouni Malinenb203ffc2009-12-23 13:15:40 +010019
20/*
Ben Greearb23b0252011-02-04 11:54:17 -080021 * Tell our hardware to disable PS.
22 * Optionally inform AP that we will go to sleep so that it will buffer
23 * the frames while we are doing off-channel work. This is optional
24 * because we *may* be doing work on-operating channel, and want our
25 * hardware unconditionally awake, but still let the AP send us normal frames.
Jouni Malinenb203ffc2009-12-23 13:15:40 +010026 */
Rajkumar Manoharan559cef92012-06-18 19:03:52 +053027static void ieee80211_offchannel_ps_enable(struct ieee80211_sub_if_data *sdata)
Jouni Malinenb203ffc2009-12-23 13:15:40 +010028{
29 struct ieee80211_local *local = sdata->local;
Luis R. Rodriguez4730d592010-09-16 15:12:31 -040030 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinenb203ffc2009-12-23 13:15:40 +010031
32 local->offchannel_ps_enabled = false;
33
34 /* FIXME: what to do when local->pspolling is true? */
35
36 del_timer_sync(&local->dynamic_ps_timer);
Luis R. Rodriguez3bc3c0d2010-09-16 15:12:33 -040037 del_timer_sync(&ifmgd->bcn_mon_timer);
Luis R. Rodriguez4730d592010-09-16 15:12:31 -040038 del_timer_sync(&ifmgd->conn_mon_timer);
39
Jouni Malinenb203ffc2009-12-23 13:15:40 +010040 cancel_work_sync(&local->dynamic_ps_enable_work);
41
42 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
43 local->offchannel_ps_enabled = true;
44 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
45 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
46 }
47
Rajkumar Manoharan559cef92012-06-18 19:03:52 +053048 if (!local->offchannel_ps_enabled ||
Johannes Berg30686bf2015-06-02 21:39:54 +020049 !ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
Jouni Malinenb203ffc2009-12-23 13:15:40 +010050 /*
51 * If power save was enabled, no need to send a nullfunc
52 * frame because AP knows that we are sleeping. But if the
53 * hardware is creating the nullfunc frame for power save
54 * status (ie. IEEE80211_HW_PS_NULLFUNC_STACK is not
55 * enabled) and power save was enabled, the firmware just
56 * sent a null frame with power save disabled. So we need
57 * to send a new nullfunc frame to inform the AP that we
58 * are again sleeping.
59 */
Johannes Berg076cdcb2015-09-24 16:14:55 +020060 ieee80211_send_nullfunc(local, sdata, true);
Jouni Malinenb203ffc2009-12-23 13:15:40 +010061}
62
63/* inform AP that we are awake again, unless power save is enabled */
64static void ieee80211_offchannel_ps_disable(struct ieee80211_sub_if_data *sdata)
65{
66 struct ieee80211_local *local = sdata->local;
67
68 if (!local->ps_sdata)
Johannes Berg076cdcb2015-09-24 16:14:55 +020069 ieee80211_send_nullfunc(local, sdata, false);
Jouni Malinenb203ffc2009-12-23 13:15:40 +010070 else if (local->offchannel_ps_enabled) {
71 /*
72 * In !IEEE80211_HW_PS_NULLFUNC_STACK case the hardware
73 * will send a nullfunc frame with the powersave bit set
74 * even though the AP already knows that we are sleeping.
75 * This could be avoided by sending a null frame with power
76 * save bit disabled before enabling the power save, but
77 * this doesn't gain anything.
78 *
79 * When IEEE80211_HW_PS_NULLFUNC_STACK is enabled, no need
80 * to send a nullfunc frame because AP already knows that
81 * we are sleeping, let's just enable power save mode in
82 * hardware.
83 */
Ben Greearb23b0252011-02-04 11:54:17 -080084 /* TODO: Only set hardware if CONF_PS changed?
85 * TODO: Should we set offchannel_ps_enabled to false?
86 */
Jouni Malinenb203ffc2009-12-23 13:15:40 +010087 local->hw.conf.flags |= IEEE80211_CONF_PS;
88 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
89 } else if (local->hw.conf.dynamic_ps_timeout > 0) {
90 /*
91 * If IEEE80211_CONF_PS was not set and the dynamic_ps_timer
92 * had been running before leaving the operating channel,
93 * restart the timer now and send a nullfunc frame to inform
94 * the AP that we are awake.
95 */
Johannes Berg076cdcb2015-09-24 16:14:55 +020096 ieee80211_send_nullfunc(local, sdata, false);
Jouni Malinenb203ffc2009-12-23 13:15:40 +010097 mod_timer(&local->dynamic_ps_timer, jiffies +
98 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
99 }
Luis R. Rodriguez4730d592010-09-16 15:12:31 -0400100
Luis R. Rodriguez3bc3c0d2010-09-16 15:12:33 -0400101 ieee80211_sta_reset_beacon_monitor(sdata);
Luis R. Rodriguez4730d592010-09-16 15:12:31 -0400102 ieee80211_sta_reset_conn_monitor(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100103}
104
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100105void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local)
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100106{
107 struct ieee80211_sub_if_data *sdata;
108
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200109 if (WARN_ON(local->use_chanctx))
110 return;
111
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100112 /*
Ben Greearb23b0252011-02-04 11:54:17 -0800113 * notify the AP about us leaving the channel and stop all
114 * STA interfaces.
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100115 */
Seth Forshee6c17b772013-02-11 11:21:07 -0600116
Seth Forshee9c35d7d2013-02-11 11:21:08 -0600117 /*
118 * Stop queues and transmit all frames queued by the driver
119 * before sending nullfunc to enable powersave at the AP.
120 */
Johannes Berg445ea4e2013-02-13 12:25:28 +0100121 ieee80211_stop_queues_by_reason(&local->hw, IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300122 IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL,
123 false);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200124 ieee80211_flush_queues(local, NULL, false);
Seth Forshee6c17b772013-02-11 11:21:07 -0600125
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100126 mutex_lock(&local->iflist_mtx);
127 list_for_each_entry(sdata, &local->interfaces, list) {
128 if (!ieee80211_sdata_running(sdata))
129 continue;
130
Johannes Bergf142c6b2012-06-18 20:07:15 +0200131 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
132 continue;
133
Ben Greearb23b0252011-02-04 11:54:17 -0800134 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Berg5b714c62010-08-27 13:45:28 +0200135 set_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
Ben Greearb23b0252011-02-04 11:54:17 -0800136
137 /* Check to see if we should disable beaconing. */
Johannes Bergd6a83222012-12-14 14:06:28 +0100138 if (sdata->vif.bss_conf.enable_beacon) {
139 set_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
140 &sdata->state);
141 sdata->vif.bss_conf.enable_beacon = false;
Ben Greearb23b0252011-02-04 11:54:17 -0800142 ieee80211_bss_info_change_notify(
143 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100144 }
Ben Greearb23b0252011-02-04 11:54:17 -0800145
Seth Forshee6c17b772013-02-11 11:21:07 -0600146 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
147 sdata->u.mgd.associated)
148 ieee80211_offchannel_ps_enable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100149 }
150 mutex_unlock(&local->iflist_mtx);
151}
152
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100153void ieee80211_offchannel_return(struct ieee80211_local *local)
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100154{
155 struct ieee80211_sub_if_data *sdata;
156
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200157 if (WARN_ON(local->use_chanctx))
158 return;
159
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100160 mutex_lock(&local->iflist_mtx);
161 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergf142c6b2012-06-18 20:07:15 +0200162 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
163 continue;
164
Eliad Pellerf6e8cb72011-12-23 01:48:06 +0200165 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
166 clear_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
167
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100168 if (!ieee80211_sdata_running(sdata))
169 continue;
170
171 /* Tell AP we're back */
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100172 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
173 sdata->u.mgd.associated)
174 ieee80211_offchannel_ps_disable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100175
Johannes Bergd6a83222012-12-14 14:06:28 +0100176 if (test_and_clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
177 &sdata->state)) {
178 sdata->vif.bss_conf.enable_beacon = true;
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100179 ieee80211_bss_info_change_notify(
180 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100181 }
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100182 }
183 mutex_unlock(&local->iflist_mtx);
Seth Forshee6c17b772013-02-11 11:21:07 -0600184
Johannes Berg445ea4e2013-02-13 12:25:28 +0100185 ieee80211_wake_queues_by_reason(&local->hw, IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300186 IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL,
187 false);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100188}
Johannes Berg21f83582010-12-18 17:20:47 +0100189
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100190static void ieee80211_handle_roc_started(struct ieee80211_roc_work *roc)
Johannes Berg2eb278e2012-06-05 14:28:42 +0200191{
192 if (roc->notified)
193 return;
194
195 if (roc->mgmt_tx_cookie) {
196 if (!WARN_ON(!roc->frame)) {
Johannes Berg55de9082012-07-26 17:24:39 +0200197 ieee80211_tx_skb_tid_band(roc->sdata, roc->frame, 7,
198 roc->chan->band);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200199 roc->frame = NULL;
200 }
201 } else {
Johannes Berg50febf62012-10-26 16:13:06 +0200202 cfg80211_ready_on_channel(&roc->sdata->wdev, roc->cookie,
Johannes Berg42d97a52012-11-08 18:31:02 +0100203 roc->chan, roc->req_duration,
204 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200205 }
206
207 roc->notified = true;
208}
209
Johannes Berg21f83582010-12-18 17:20:47 +0100210static void ieee80211_hw_roc_start(struct work_struct *work)
211{
212 struct ieee80211_local *local =
213 container_of(work, struct ieee80211_local, hw_roc_start);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200214 struct ieee80211_roc_work *roc, *dep, *tmp;
Johannes Berg21f83582010-12-18 17:20:47 +0100215
216 mutex_lock(&local->mtx);
217
Johannes Berg2eb278e2012-06-05 14:28:42 +0200218 if (list_empty(&local->roc_list))
219 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100220
Johannes Berg2eb278e2012-06-05 14:28:42 +0200221 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
222 list);
Johannes Berg90fc4b32010-12-18 17:20:48 +0100223
Johannes Berg2eb278e2012-06-05 14:28:42 +0200224 if (!roc->started)
225 goto out_unlock;
226
227 roc->hw_begun = true;
228 roc->hw_start_time = local->hw_roc_start_time;
229
230 ieee80211_handle_roc_started(roc);
231 list_for_each_entry_safe(dep, tmp, &roc->dependents, list) {
232 ieee80211_handle_roc_started(dep);
233
234 if (dep->duration > roc->duration) {
235 u32 dur = dep->duration;
236 dep->duration = dur - roc->duration;
237 roc->duration = dur;
Wei Yongjuna4ed5342012-09-06 13:20:53 +0800238 list_move(&dep->list, &roc->list);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200239 }
240 }
241 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100242 mutex_unlock(&local->mtx);
243}
244
245void ieee80211_ready_on_channel(struct ieee80211_hw *hw)
246{
247 struct ieee80211_local *local = hw_to_local(hw);
248
Johannes Berg2eb278e2012-06-05 14:28:42 +0200249 local->hw_roc_start_time = jiffies;
250
Johannes Berg21f83582010-12-18 17:20:47 +0100251 trace_api_ready_on_channel(local);
252
253 ieee80211_queue_work(hw, &local->hw_roc_start);
254}
255EXPORT_SYMBOL_GPL(ieee80211_ready_on_channel);
256
Johannes Berg2eb278e2012-06-05 14:28:42 +0200257void ieee80211_start_next_roc(struct ieee80211_local *local)
258{
259 struct ieee80211_roc_work *roc;
260
261 lockdep_assert_held(&local->mtx);
262
263 if (list_empty(&local->roc_list)) {
264 ieee80211_run_deferred_scan(local);
265 return;
266 }
267
268 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
269 list);
270
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200271 if (WARN_ON_ONCE(roc->started))
272 return;
273
Johannes Berg2eb278e2012-06-05 14:28:42 +0200274 if (local->ops->remain_on_channel) {
275 int ret, duration = roc->duration;
276
277 /* XXX: duplicated, see ieee80211_start_roc_work() */
278 if (!duration)
279 duration = 10;
280
Eliad Peller49884562012-11-19 17:05:09 +0200281 ret = drv_remain_on_channel(local, roc->sdata, roc->chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +0200282 duration, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200283
284 roc->started = true;
285
286 if (ret) {
287 wiphy_warn(local->hw.wiphy,
288 "failed to start next HW ROC (%d)\n", ret);
289 /*
290 * queue the work struct again to avoid recursion
291 * when multiple failures occur
292 */
293 ieee80211_remain_on_channel_expired(&local->hw);
294 }
295 } else {
296 /* delay it a bit */
297 ieee80211_queue_delayed_work(&local->hw, &roc->work,
298 round_jiffies_relative(HZ/2));
299 }
300}
301
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100302static void ieee80211_roc_notify_destroy(struct ieee80211_roc_work *roc,
303 bool free)
Johannes Berg2eb278e2012-06-05 14:28:42 +0200304{
305 struct ieee80211_roc_work *dep, *tmp;
306
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100307 if (WARN_ON(roc->to_be_freed))
308 return;
309
Johannes Berg2eb278e2012-06-05 14:28:42 +0200310 /* was never transmitted */
311 if (roc->frame) {
Johannes Berge673a652015-11-24 20:28:27 +0100312 cfg80211_mgmt_tx_status(&roc->sdata->wdev, roc->mgmt_tx_cookie,
Johannes Berg2eb278e2012-06-05 14:28:42 +0200313 roc->frame->data, roc->frame->len,
314 false, GFP_KERNEL);
Johannes Berge673a652015-11-24 20:28:27 +0100315 ieee80211_free_txskb(&roc->sdata->local->hw, roc->frame);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200316 }
317
318 if (!roc->mgmt_tx_cookie)
Johannes Berg71bbc992012-06-15 15:30:18 +0200319 cfg80211_remain_on_channel_expired(&roc->sdata->wdev,
Johannes Berg50febf62012-10-26 16:13:06 +0200320 roc->cookie, roc->chan,
Johannes Berg42d97a52012-11-08 18:31:02 +0100321 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200322
323 list_for_each_entry_safe(dep, tmp, &roc->dependents, list)
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100324 ieee80211_roc_notify_destroy(dep, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200325
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100326 if (free)
327 kfree(roc);
328 else
329 roc->to_be_freed = true;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200330}
331
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100332static void ieee80211_sw_roc_work(struct work_struct *work)
Johannes Berg2eb278e2012-06-05 14:28:42 +0200333{
334 struct ieee80211_roc_work *roc =
335 container_of(work, struct ieee80211_roc_work, work.work);
336 struct ieee80211_sub_if_data *sdata = roc->sdata;
337 struct ieee80211_local *local = sdata->local;
Johannes Bergb4b177a2014-05-14 15:34:41 +0200338 bool started, on_channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200339
340 mutex_lock(&local->mtx);
341
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100342 if (roc->to_be_freed)
343 goto out_unlock;
344
Johannes Berg2eb278e2012-06-05 14:28:42 +0200345 if (roc->abort)
346 goto finish;
347
348 if (WARN_ON(list_empty(&local->roc_list)))
349 goto out_unlock;
350
351 if (WARN_ON(roc != list_first_entry(&local->roc_list,
352 struct ieee80211_roc_work,
353 list)))
354 goto out_unlock;
355
356 if (!roc->started) {
357 struct ieee80211_roc_work *dep;
358
Johannes Bergb4b177a2014-05-14 15:34:41 +0200359 WARN_ON(local->use_chanctx);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200360
Johannes Bergb4b177a2014-05-14 15:34:41 +0200361 /* If actually operating on the desired channel (with at least
362 * 20 MHz channel width) don't stop all the operations but still
363 * treat it as though the ROC operation started properly, so
364 * other ROC operations won't interfere with this one.
365 */
366 roc->on_channel = roc->chan == local->_oper_chandef.chan &&
367 local->_oper_chandef.width != NL80211_CHAN_WIDTH_5 &&
368 local->_oper_chandef.width != NL80211_CHAN_WIDTH_10;
369
370 /* start this ROC */
Johannes Berg2eb278e2012-06-05 14:28:42 +0200371 ieee80211_recalc_idle(local);
372
Johannes Bergb4b177a2014-05-14 15:34:41 +0200373 if (!roc->on_channel) {
374 ieee80211_offchannel_stop_vifs(local);
375
376 local->tmp_channel = roc->chan;
377 ieee80211_hw_config(local, 0);
378 }
Johannes Berg2eb278e2012-06-05 14:28:42 +0200379
380 /* tell userspace or send frame */
381 ieee80211_handle_roc_started(roc);
382 list_for_each_entry(dep, &roc->dependents, list)
383 ieee80211_handle_roc_started(dep);
384
385 /* if it was pure TX, just finish right away */
386 if (!roc->duration)
387 goto finish;
388
389 roc->started = true;
390 ieee80211_queue_delayed_work(&local->hw, &roc->work,
391 msecs_to_jiffies(roc->duration));
392 } else {
393 /* finish this ROC */
394 finish:
395 list_del(&roc->list);
Alan Cox4b4b8222012-07-13 16:14:45 +0200396 started = roc->started;
Johannes Bergb4b177a2014-05-14 15:34:41 +0200397 on_channel = roc->on_channel;
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100398 ieee80211_roc_notify_destroy(roc, !roc->abort);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200399
Johannes Bergb4b177a2014-05-14 15:34:41 +0200400 if (started && !on_channel) {
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200401 ieee80211_flush_queues(local, NULL, false);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200402
403 local->tmp_channel = NULL;
404 ieee80211_hw_config(local, 0);
405
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100406 ieee80211_offchannel_return(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200407 }
408
409 ieee80211_recalc_idle(local);
410
Alan Cox4b4b8222012-07-13 16:14:45 +0200411 if (started)
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200412 ieee80211_start_next_roc(local);
Jouni Malinen22c4cee2013-09-30 12:36:05 +0300413 else if (list_empty(&local->roc_list))
414 ieee80211_run_deferred_scan(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200415 }
416
417 out_unlock:
418 mutex_unlock(&local->mtx);
419}
420
Johannes Berg21f83582010-12-18 17:20:47 +0100421static void ieee80211_hw_roc_done(struct work_struct *work)
422{
423 struct ieee80211_local *local =
424 container_of(work, struct ieee80211_local, hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200425 struct ieee80211_roc_work *roc;
Johannes Berg21f83582010-12-18 17:20:47 +0100426
427 mutex_lock(&local->mtx);
428
Johannes Berg2eb278e2012-06-05 14:28:42 +0200429 if (list_empty(&local->roc_list))
430 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100431
Johannes Berg2eb278e2012-06-05 14:28:42 +0200432 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
433 list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200434
Johannes Berg2eb278e2012-06-05 14:28:42 +0200435 if (!roc->started)
436 goto out_unlock;
Johannes Berg71ecfa12012-05-31 15:09:27 +0200437
Johannes Berg2eb278e2012-06-05 14:28:42 +0200438 list_del(&roc->list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200439
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100440 ieee80211_roc_notify_destroy(roc, true);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200441
Johannes Berg2eb278e2012-06-05 14:28:42 +0200442 /* if there's another roc, start it now */
443 ieee80211_start_next_roc(local);
Johannes Berg21f83582010-12-18 17:20:47 +0100444
Johannes Berg2eb278e2012-06-05 14:28:42 +0200445 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100446 mutex_unlock(&local->mtx);
447}
448
449void ieee80211_remain_on_channel_expired(struct ieee80211_hw *hw)
450{
451 struct ieee80211_local *local = hw_to_local(hw);
452
453 trace_api_remain_on_channel_expired(local);
454
455 ieee80211_queue_work(hw, &local->hw_roc_done);
456}
457EXPORT_SYMBOL_GPL(ieee80211_remain_on_channel_expired);
458
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100459static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
460 struct ieee80211_roc_work *new_roc,
461 struct ieee80211_roc_work *cur_roc)
462{
463 unsigned long now = jiffies;
464 unsigned long remaining = cur_roc->hw_start_time +
465 msecs_to_jiffies(cur_roc->duration) -
466 now;
467
468 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
469 return false;
470
471 /* if it doesn't fit entirely, schedule a new one */
472 if (new_roc->duration > jiffies_to_msecs(remaining))
473 return false;
474
475 ieee80211_handle_roc_started(new_roc);
476
477 /* add to dependents so we send the expired event properly */
478 list_add_tail(&new_roc->list, &cur_roc->dependents);
479 return true;
480}
481
482static int ieee80211_start_roc_work(struct ieee80211_local *local,
483 struct ieee80211_sub_if_data *sdata,
484 struct ieee80211_channel *channel,
485 unsigned int duration, u64 *cookie,
486 struct sk_buff *txskb,
487 enum ieee80211_roc_type type)
488{
489 struct ieee80211_roc_work *roc, *tmp;
490 bool queued = false;
491 int ret;
492
493 lockdep_assert_held(&local->mtx);
494
495 if (local->use_chanctx && !local->ops->remain_on_channel)
496 return -EOPNOTSUPP;
497
498 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
499 if (!roc)
500 return -ENOMEM;
501
502 /*
503 * If the duration is zero, then the driver
504 * wouldn't actually do anything. Set it to
505 * 10 for now.
506 *
507 * TODO: cancel the off-channel operation
508 * when we get the SKB's TX status and
509 * the wait time was zero before.
510 */
511 if (!duration)
512 duration = 10;
513
514 roc->chan = channel;
515 roc->duration = duration;
516 roc->req_duration = duration;
517 roc->frame = txskb;
518 roc->type = type;
519 roc->sdata = sdata;
520 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
521 INIT_LIST_HEAD(&roc->dependents);
522
523 /*
524 * cookie is either the roc cookie (for normal roc)
525 * or the SKB (for mgmt TX)
526 */
527 if (!txskb) {
528 roc->cookie = ieee80211_mgmt_tx_cookie(local);
529 *cookie = roc->cookie;
530 } else {
531 roc->mgmt_tx_cookie = *cookie;
532 }
533
534 /* if there's one pending or we're scanning, queue this one */
535 if (!list_empty(&local->roc_list) ||
536 local->scanning || ieee80211_is_radar_required(local))
537 goto out_check_combine;
538
539 /* if not HW assist, just queue & schedule work */
540 if (!local->ops->remain_on_channel) {
541 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
542 goto out_queue;
543 }
544
545 /* otherwise actually kick it off here (for error handling) */
546
547 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
548 if (ret) {
549 kfree(roc);
550 return ret;
551 }
552
553 roc->started = true;
554 goto out_queue;
555
556 out_check_combine:
557 list_for_each_entry(tmp, &local->roc_list, list) {
558 if (tmp->chan != channel || tmp->sdata != sdata)
559 continue;
560
561 /*
562 * Extend this ROC if possible:
563 *
564 * If it hasn't started yet, just increase the duration
565 * and add the new one to the list of dependents.
566 * If the type of the new ROC has higher priority, modify the
567 * type of the previous one to match that of the new one.
568 */
569 if (!tmp->started) {
570 list_add_tail(&roc->list, &tmp->dependents);
571 tmp->duration = max(tmp->duration, roc->duration);
572 tmp->type = max(tmp->type, roc->type);
573 queued = true;
574 break;
575 }
576
577 /* If it has already started, it's more difficult ... */
578 if (local->ops->remain_on_channel) {
579 /*
580 * In the offloaded ROC case, if it hasn't begun, add
581 * this new one to the dependent list to be handled
582 * when the master one begins. If it has begun,
583 * check if it fits entirely within the existing one,
584 * in which case it will just be dependent as well.
585 * Otherwise, schedule it by itself.
586 */
587 if (!tmp->hw_begun) {
588 list_add_tail(&roc->list, &tmp->dependents);
589 queued = true;
590 break;
591 }
592
593 if (ieee80211_coalesce_started_roc(local, roc, tmp))
594 queued = true;
595 } else if (del_timer_sync(&tmp->work.timer)) {
596 unsigned long new_end;
597
598 /*
599 * In the software ROC case, cancel the timer, if
600 * that fails then the finish work is already
601 * queued/pending and thus we queue the new ROC
602 * normally, if that succeeds then we can extend
603 * the timer duration and TX the frame (if any.)
604 */
605
606 list_add_tail(&roc->list, &tmp->dependents);
607 queued = true;
608
609 new_end = jiffies + msecs_to_jiffies(roc->duration);
610
611 /* ok, it was started & we canceled timer */
612 if (time_after(new_end, tmp->work.timer.expires))
613 mod_timer(&tmp->work.timer, new_end);
614 else
615 add_timer(&tmp->work.timer);
616
617 ieee80211_handle_roc_started(roc);
618 }
619 break;
620 }
621
622 out_queue:
623 if (!queued)
624 list_add_tail(&roc->list, &local->roc_list);
625
626 return 0;
627}
628
629int ieee80211_remain_on_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
630 struct ieee80211_channel *chan,
631 unsigned int duration, u64 *cookie)
632{
633 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
634 struct ieee80211_local *local = sdata->local;
635 int ret;
636
637 mutex_lock(&local->mtx);
638 ret = ieee80211_start_roc_work(local, sdata, chan,
639 duration, cookie, NULL,
640 IEEE80211_ROC_TYPE_NORMAL);
641 mutex_unlock(&local->mtx);
642
643 return ret;
644}
645
646static int ieee80211_cancel_roc(struct ieee80211_local *local,
647 u64 cookie, bool mgmt_tx)
648{
649 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
650 int ret;
651
652 mutex_lock(&local->mtx);
653 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
654 struct ieee80211_roc_work *dep, *tmp2;
655
656 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
657 if (!mgmt_tx && dep->cookie != cookie)
658 continue;
659 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
660 continue;
661 /* found dependent item -- just remove it */
662 list_del(&dep->list);
663 mutex_unlock(&local->mtx);
664
665 ieee80211_roc_notify_destroy(dep, true);
666 return 0;
667 }
668
669 if (!mgmt_tx && roc->cookie != cookie)
670 continue;
671 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
672 continue;
673
674 found = roc;
675 break;
676 }
677
678 if (!found) {
679 mutex_unlock(&local->mtx);
680 return -ENOENT;
681 }
682
683 /*
684 * We found the item to cancel, so do that. Note that it
685 * may have dependents, which we also cancel (and send
686 * the expired signal for.) Not doing so would be quite
687 * tricky here, but we may need to fix it later.
688 */
689
690 if (local->ops->remain_on_channel) {
691 if (found->started) {
692 ret = drv_cancel_remain_on_channel(local);
693 if (WARN_ON_ONCE(ret)) {
694 mutex_unlock(&local->mtx);
695 return ret;
696 }
697 }
698
699 list_del(&found->list);
700
701 if (found->started)
702 ieee80211_start_next_roc(local);
703 mutex_unlock(&local->mtx);
704
705 ieee80211_roc_notify_destroy(found, true);
706 } else {
707 /* work may be pending so use it all the time */
708 found->abort = true;
709 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
710
711 mutex_unlock(&local->mtx);
712
713 /* work will clean up etc */
714 flush_delayed_work(&found->work);
715 WARN_ON(!found->to_be_freed);
716 kfree(found);
717 }
718
719 return 0;
720}
721
722int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
723 struct wireless_dev *wdev, u64 cookie)
724{
725 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
726 struct ieee80211_local *local = sdata->local;
727
728 return ieee80211_cancel_roc(local, cookie, false);
729}
730
731int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
732 struct cfg80211_mgmt_tx_params *params, u64 *cookie)
733{
734 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
735 struct ieee80211_local *local = sdata->local;
Johannes Berg5ee00db2015-11-24 14:25:49 +0100736 struct sk_buff *skb;
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100737 struct sta_info *sta;
738 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
739 bool need_offchan = false;
740 u32 flags;
741 int ret;
742 u8 *data;
743
744 if (params->dont_wait_for_ack)
745 flags = IEEE80211_TX_CTL_NO_ACK;
746 else
747 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
748 IEEE80211_TX_CTL_REQ_TX_STATUS;
749
750 if (params->no_cck)
751 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
752
753 switch (sdata->vif.type) {
754 case NL80211_IFTYPE_ADHOC:
755 if (!sdata->vif.bss_conf.ibss_joined)
756 need_offchan = true;
757 /* fall through */
758#ifdef CONFIG_MAC80211_MESH
759 case NL80211_IFTYPE_MESH_POINT:
760 if (ieee80211_vif_is_mesh(&sdata->vif) &&
761 !sdata->u.mesh.mesh_id_len)
762 need_offchan = true;
763 /* fall through */
764#endif
765 case NL80211_IFTYPE_AP:
766 case NL80211_IFTYPE_AP_VLAN:
767 case NL80211_IFTYPE_P2P_GO:
768 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
769 !ieee80211_vif_is_mesh(&sdata->vif) &&
770 !rcu_access_pointer(sdata->bss->beacon))
771 need_offchan = true;
772 if (!ieee80211_is_action(mgmt->frame_control) ||
773 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
774 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
775 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
776 break;
777 rcu_read_lock();
778 sta = sta_info_get(sdata, mgmt->da);
779 rcu_read_unlock();
780 if (!sta)
781 return -ENOLINK;
782 break;
783 case NL80211_IFTYPE_STATION:
784 case NL80211_IFTYPE_P2P_CLIENT:
785 sdata_lock(sdata);
786 if (!sdata->u.mgd.associated ||
787 (params->offchan && params->wait &&
788 local->ops->remain_on_channel &&
789 memcmp(sdata->u.mgd.associated->bssid,
790 mgmt->bssid, ETH_ALEN)))
791 need_offchan = true;
792 sdata_unlock(sdata);
793 break;
794 case NL80211_IFTYPE_P2P_DEVICE:
795 need_offchan = true;
796 break;
797 default:
798 return -EOPNOTSUPP;
799 }
800
801 /* configurations requiring offchan cannot work if no channel has been
802 * specified
803 */
804 if (need_offchan && !params->chan)
805 return -EINVAL;
806
807 mutex_lock(&local->mtx);
808
809 /* Check if the operating channel is the requested channel */
810 if (!need_offchan) {
811 struct ieee80211_chanctx_conf *chanctx_conf;
812
813 rcu_read_lock();
814 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
815
816 if (chanctx_conf) {
817 need_offchan = params->chan &&
818 (params->chan !=
819 chanctx_conf->def.chan);
820 } else if (!params->chan) {
821 ret = -EINVAL;
822 rcu_read_unlock();
823 goto out_unlock;
824 } else {
825 need_offchan = true;
826 }
827 rcu_read_unlock();
828 }
829
830 if (need_offchan && !params->offchan) {
831 ret = -EBUSY;
832 goto out_unlock;
833 }
834
835 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
836 if (!skb) {
837 ret = -ENOMEM;
838 goto out_unlock;
839 }
840 skb_reserve(skb, local->hw.extra_tx_headroom);
841
842 data = skb_put(skb, params->len);
843 memcpy(data, params->buf, params->len);
844
845 /* Update CSA counters */
846 if (sdata->vif.csa_active &&
847 (sdata->vif.type == NL80211_IFTYPE_AP ||
848 sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
849 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
850 params->n_csa_offsets) {
851 int i;
852 struct beacon_data *beacon = NULL;
853
854 rcu_read_lock();
855
856 if (sdata->vif.type == NL80211_IFTYPE_AP)
857 beacon = rcu_dereference(sdata->u.ap.beacon);
858 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
859 beacon = rcu_dereference(sdata->u.ibss.presp);
860 else if (ieee80211_vif_is_mesh(&sdata->vif))
861 beacon = rcu_dereference(sdata->u.mesh.beacon);
862
863 if (beacon)
864 for (i = 0; i < params->n_csa_offsets; i++)
865 data[params->csa_offsets[i]] =
866 beacon->csa_current_counter;
867
868 rcu_read_unlock();
869 }
870
871 IEEE80211_SKB_CB(skb)->flags = flags;
872
873 skb->dev = sdata->dev;
874
875 if (!params->dont_wait_for_ack) {
876 /* make a copy to preserve the frame contents
877 * in case of encryption.
878 */
Johannes Berg5ee00db2015-11-24 14:25:49 +0100879 ret = ieee80211_attach_ack_skb(local, skb, cookie, GFP_KERNEL);
880 if (ret) {
Johannes Berga2fcfccb2015-11-23 17:18:35 +0100881 kfree_skb(skb);
882 goto out_unlock;
883 }
884 } else {
885 /* Assign a dummy non-zero cookie, it's not sent to
886 * userspace in this case but we rely on its value
887 * internally in the need_offchan case to distinguish
888 * mgmt-tx from remain-on-channel.
889 */
890 *cookie = 0xffffffff;
891 }
892
893 if (!need_offchan) {
894 ieee80211_tx_skb(sdata, skb);
895 ret = 0;
896 goto out_unlock;
897 }
898
899 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
900 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
901 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
902 IEEE80211_SKB_CB(skb)->hw_queue =
903 local->hw.offchannel_tx_hw_queue;
904
905 /* This will handle all kinds of coalescing and immediate TX */
906 ret = ieee80211_start_roc_work(local, sdata, params->chan,
907 params->wait, cookie, skb,
908 IEEE80211_ROC_TYPE_MGMT_TX);
909 if (ret)
910 ieee80211_free_txskb(&local->hw, skb);
911 out_unlock:
912 mutex_unlock(&local->mtx);
913 return ret;
914}
915
916int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
917 struct wireless_dev *wdev, u64 cookie)
918{
919 struct ieee80211_local *local = wiphy_priv(wiphy);
920
921 return ieee80211_cancel_roc(local, cookie, true);
922}
923
Johannes Berg2eb278e2012-06-05 14:28:42 +0200924void ieee80211_roc_setup(struct ieee80211_local *local)
Johannes Berg21f83582010-12-18 17:20:47 +0100925{
926 INIT_WORK(&local->hw_roc_start, ieee80211_hw_roc_start);
927 INIT_WORK(&local->hw_roc_done, ieee80211_hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200928 INIT_LIST_HEAD(&local->roc_list);
929}
930
Johannes Bergc8f994e2013-03-27 22:49:19 +0100931void ieee80211_roc_purge(struct ieee80211_local *local,
932 struct ieee80211_sub_if_data *sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +0200933{
Johannes Berg2eb278e2012-06-05 14:28:42 +0200934 struct ieee80211_roc_work *roc, *tmp;
935 LIST_HEAD(tmp_list);
936
937 mutex_lock(&local->mtx);
938 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Bergc8f994e2013-03-27 22:49:19 +0100939 if (sdata && roc->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +0200940 continue;
941
942 if (roc->started && local->ops->remain_on_channel) {
943 /* can race, so ignore return value */
944 drv_cancel_remain_on_channel(local);
945 }
946
947 list_move_tail(&roc->list, &tmp_list);
948 roc->abort = true;
949 }
Johannes Berg2eb278e2012-06-05 14:28:42 +0200950 mutex_unlock(&local->mtx);
951
952 list_for_each_entry_safe(roc, tmp, &tmp_list, list) {
953 if (local->ops->remain_on_channel) {
954 list_del(&roc->list);
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100955 ieee80211_roc_notify_destroy(roc, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200956 } else {
957 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
958
959 /* work will clean up etc */
960 flush_delayed_work(&roc->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +0100961 WARN_ON(!roc->to_be_freed);
962 kfree(roc);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200963 }
964 }
965
966 WARN_ON_ONCE(!list_empty(&tmp_list));
Johannes Berg21f83582010-12-18 17:20:47 +0100967}