blob: 4c3ee3e8285c139dc7b7348e322de77a6139ad8a [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 ||
49 !(local->hw.flags & IEEE80211_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 */
60 ieee80211_send_nullfunc(local, sdata, 1);
61}
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)
69 ieee80211_send_nullfunc(local, sdata, 0);
70 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 */
96 ieee80211_send_nullfunc(local, sdata, 0);
97 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
117 ieee80211_stop_queues_by_reason(&local->hw,
118 IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL);
119
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100120 mutex_lock(&local->iflist_mtx);
121 list_for_each_entry(sdata, &local->interfaces, list) {
122 if (!ieee80211_sdata_running(sdata))
123 continue;
124
Johannes Bergf142c6b2012-06-18 20:07:15 +0200125 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
126 continue;
127
Ben Greearb23b0252011-02-04 11:54:17 -0800128 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Berg5b714c62010-08-27 13:45:28 +0200129 set_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
Ben Greearb23b0252011-02-04 11:54:17 -0800130
131 /* Check to see if we should disable beaconing. */
Johannes Bergd6a83222012-12-14 14:06:28 +0100132 if (sdata->vif.bss_conf.enable_beacon) {
133 set_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
134 &sdata->state);
135 sdata->vif.bss_conf.enable_beacon = false;
Ben Greearb23b0252011-02-04 11:54:17 -0800136 ieee80211_bss_info_change_notify(
137 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100138 }
Ben Greearb23b0252011-02-04 11:54:17 -0800139
Seth Forshee6c17b772013-02-11 11:21:07 -0600140 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
141 sdata->u.mgd.associated)
142 ieee80211_offchannel_ps_enable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100143 }
144 mutex_unlock(&local->iflist_mtx);
145}
146
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100147void ieee80211_offchannel_return(struct ieee80211_local *local)
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100148{
149 struct ieee80211_sub_if_data *sdata;
150
Johannes Bergfe57d9f2012-07-26 14:55:08 +0200151 if (WARN_ON(local->use_chanctx))
152 return;
153
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100154 mutex_lock(&local->iflist_mtx);
155 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergf142c6b2012-06-18 20:07:15 +0200156 if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE)
157 continue;
158
Eliad Pellerf6e8cb72011-12-23 01:48:06 +0200159 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
160 clear_bit(SDATA_STATE_OFFCHANNEL, &sdata->state);
161
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100162 if (!ieee80211_sdata_running(sdata))
163 continue;
164
165 /* Tell AP we're back */
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100166 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
167 sdata->u.mgd.associated)
168 ieee80211_offchannel_ps_disable(sdata);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100169
Johannes Bergd6a83222012-12-14 14:06:28 +0100170 if (test_and_clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED,
171 &sdata->state)) {
172 sdata->vif.bss_conf.enable_beacon = true;
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100173 ieee80211_bss_info_change_notify(
174 sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Bergd6a83222012-12-14 14:06:28 +0100175 }
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100176 }
177 mutex_unlock(&local->iflist_mtx);
Seth Forshee6c17b772013-02-11 11:21:07 -0600178
179 ieee80211_wake_queues_by_reason(&local->hw,
180 IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL);
Jouni Malinenb203ffc2009-12-23 13:15:40 +0100181}
Johannes Berg21f83582010-12-18 17:20:47 +0100182
Johannes Berg2eb278e2012-06-05 14:28:42 +0200183void ieee80211_handle_roc_started(struct ieee80211_roc_work *roc)
184{
185 if (roc->notified)
186 return;
187
188 if (roc->mgmt_tx_cookie) {
189 if (!WARN_ON(!roc->frame)) {
Johannes Berg55de9082012-07-26 17:24:39 +0200190 ieee80211_tx_skb_tid_band(roc->sdata, roc->frame, 7,
191 roc->chan->band);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200192 roc->frame = NULL;
193 }
194 } else {
Johannes Berg50febf62012-10-26 16:13:06 +0200195 cfg80211_ready_on_channel(&roc->sdata->wdev, roc->cookie,
Johannes Berg42d97a52012-11-08 18:31:02 +0100196 roc->chan, roc->req_duration,
197 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200198 }
199
200 roc->notified = true;
201}
202
Johannes Berg21f83582010-12-18 17:20:47 +0100203static void ieee80211_hw_roc_start(struct work_struct *work)
204{
205 struct ieee80211_local *local =
206 container_of(work, struct ieee80211_local, hw_roc_start);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200207 struct ieee80211_roc_work *roc, *dep, *tmp;
Johannes Berg21f83582010-12-18 17:20:47 +0100208
209 mutex_lock(&local->mtx);
210
Johannes Berg2eb278e2012-06-05 14:28:42 +0200211 if (list_empty(&local->roc_list))
212 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100213
Johannes Berg2eb278e2012-06-05 14:28:42 +0200214 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
215 list);
Johannes Berg90fc4b32010-12-18 17:20:48 +0100216
Johannes Berg2eb278e2012-06-05 14:28:42 +0200217 if (!roc->started)
218 goto out_unlock;
219
220 roc->hw_begun = true;
221 roc->hw_start_time = local->hw_roc_start_time;
222
223 ieee80211_handle_roc_started(roc);
224 list_for_each_entry_safe(dep, tmp, &roc->dependents, list) {
225 ieee80211_handle_roc_started(dep);
226
227 if (dep->duration > roc->duration) {
228 u32 dur = dep->duration;
229 dep->duration = dur - roc->duration;
230 roc->duration = dur;
Wei Yongjuna4ed5342012-09-06 13:20:53 +0800231 list_move(&dep->list, &roc->list);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200232 }
233 }
234 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100235 mutex_unlock(&local->mtx);
236}
237
238void ieee80211_ready_on_channel(struct ieee80211_hw *hw)
239{
240 struct ieee80211_local *local = hw_to_local(hw);
241
Johannes Berg2eb278e2012-06-05 14:28:42 +0200242 local->hw_roc_start_time = jiffies;
243
Johannes Berg21f83582010-12-18 17:20:47 +0100244 trace_api_ready_on_channel(local);
245
246 ieee80211_queue_work(hw, &local->hw_roc_start);
247}
248EXPORT_SYMBOL_GPL(ieee80211_ready_on_channel);
249
Johannes Berg2eb278e2012-06-05 14:28:42 +0200250void ieee80211_start_next_roc(struct ieee80211_local *local)
251{
252 struct ieee80211_roc_work *roc;
253
254 lockdep_assert_held(&local->mtx);
255
256 if (list_empty(&local->roc_list)) {
257 ieee80211_run_deferred_scan(local);
258 return;
259 }
260
261 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
262 list);
263
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200264 if (WARN_ON_ONCE(roc->started))
265 return;
266
Johannes Berg2eb278e2012-06-05 14:28:42 +0200267 if (local->ops->remain_on_channel) {
268 int ret, duration = roc->duration;
269
270 /* XXX: duplicated, see ieee80211_start_roc_work() */
271 if (!duration)
272 duration = 10;
273
Eliad Peller49884562012-11-19 17:05:09 +0200274 ret = drv_remain_on_channel(local, roc->sdata, roc->chan,
Johannes Berg2eb278e2012-06-05 14:28:42 +0200275 duration);
276
277 roc->started = true;
278
279 if (ret) {
280 wiphy_warn(local->hw.wiphy,
281 "failed to start next HW ROC (%d)\n", ret);
282 /*
283 * queue the work struct again to avoid recursion
284 * when multiple failures occur
285 */
286 ieee80211_remain_on_channel_expired(&local->hw);
287 }
288 } else {
289 /* delay it a bit */
290 ieee80211_queue_delayed_work(&local->hw, &roc->work,
291 round_jiffies_relative(HZ/2));
292 }
293}
294
295void ieee80211_roc_notify_destroy(struct ieee80211_roc_work *roc)
296{
297 struct ieee80211_roc_work *dep, *tmp;
298
299 /* was never transmitted */
300 if (roc->frame) {
Johannes Berg71bbc992012-06-15 15:30:18 +0200301 cfg80211_mgmt_tx_status(&roc->sdata->wdev,
Johannes Berg2eb278e2012-06-05 14:28:42 +0200302 (unsigned long)roc->frame,
303 roc->frame->data, roc->frame->len,
304 false, GFP_KERNEL);
305 kfree_skb(roc->frame);
306 }
307
308 if (!roc->mgmt_tx_cookie)
Johannes Berg71bbc992012-06-15 15:30:18 +0200309 cfg80211_remain_on_channel_expired(&roc->sdata->wdev,
Johannes Berg50febf62012-10-26 16:13:06 +0200310 roc->cookie, roc->chan,
Johannes Berg42d97a52012-11-08 18:31:02 +0100311 GFP_KERNEL);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200312
313 list_for_each_entry_safe(dep, tmp, &roc->dependents, list)
314 ieee80211_roc_notify_destroy(dep);
315
316 kfree(roc);
317}
318
319void ieee80211_sw_roc_work(struct work_struct *work)
320{
321 struct ieee80211_roc_work *roc =
322 container_of(work, struct ieee80211_roc_work, work.work);
323 struct ieee80211_sub_if_data *sdata = roc->sdata;
324 struct ieee80211_local *local = sdata->local;
Alan Cox4b4b8222012-07-13 16:14:45 +0200325 bool started;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200326
327 mutex_lock(&local->mtx);
328
329 if (roc->abort)
330 goto finish;
331
332 if (WARN_ON(list_empty(&local->roc_list)))
333 goto out_unlock;
334
335 if (WARN_ON(roc != list_first_entry(&local->roc_list,
336 struct ieee80211_roc_work,
337 list)))
338 goto out_unlock;
339
340 if (!roc->started) {
341 struct ieee80211_roc_work *dep;
342
343 /* start this ROC */
344
345 /* switch channel etc */
346 ieee80211_recalc_idle(local);
347
348 local->tmp_channel = roc->chan;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200349 ieee80211_hw_config(local, 0);
350
351 /* tell userspace or send frame */
352 ieee80211_handle_roc_started(roc);
353 list_for_each_entry(dep, &roc->dependents, list)
354 ieee80211_handle_roc_started(dep);
355
356 /* if it was pure TX, just finish right away */
357 if (!roc->duration)
358 goto finish;
359
360 roc->started = true;
361 ieee80211_queue_delayed_work(&local->hw, &roc->work,
362 msecs_to_jiffies(roc->duration));
363 } else {
364 /* finish this ROC */
365 finish:
366 list_del(&roc->list);
Alan Cox4b4b8222012-07-13 16:14:45 +0200367 started = roc->started;
Johannes Berg2eb278e2012-06-05 14:28:42 +0200368 ieee80211_roc_notify_destroy(roc);
369
Alan Cox4b4b8222012-07-13 16:14:45 +0200370 if (started) {
Johannes Berg2eb278e2012-06-05 14:28:42 +0200371 drv_flush(local, false);
372
373 local->tmp_channel = NULL;
374 ieee80211_hw_config(local, 0);
375
Stanislaw Gruszkaaacde9e2012-12-20 14:41:18 +0100376 ieee80211_offchannel_return(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200377 }
378
379 ieee80211_recalc_idle(local);
380
Alan Cox4b4b8222012-07-13 16:14:45 +0200381 if (started)
Johannes Berg0f6b3f52012-06-20 20:11:33 +0200382 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200383 }
384
385 out_unlock:
386 mutex_unlock(&local->mtx);
387}
388
Johannes Berg21f83582010-12-18 17:20:47 +0100389static void ieee80211_hw_roc_done(struct work_struct *work)
390{
391 struct ieee80211_local *local =
392 container_of(work, struct ieee80211_local, hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200393 struct ieee80211_roc_work *roc;
Johannes Berg21f83582010-12-18 17:20:47 +0100394
395 mutex_lock(&local->mtx);
396
Johannes Berg2eb278e2012-06-05 14:28:42 +0200397 if (list_empty(&local->roc_list))
398 goto out_unlock;
Johannes Berg21f83582010-12-18 17:20:47 +0100399
Johannes Berg2eb278e2012-06-05 14:28:42 +0200400 roc = list_first_entry(&local->roc_list, struct ieee80211_roc_work,
401 list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200402
Johannes Berg2eb278e2012-06-05 14:28:42 +0200403 if (!roc->started)
404 goto out_unlock;
Johannes Berg71ecfa12012-05-31 15:09:27 +0200405
Johannes Berg2eb278e2012-06-05 14:28:42 +0200406 list_del(&roc->list);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200407
Johannes Berg2eb278e2012-06-05 14:28:42 +0200408 ieee80211_roc_notify_destroy(roc);
Johannes Berg71ecfa12012-05-31 15:09:27 +0200409
Johannes Berg2eb278e2012-06-05 14:28:42 +0200410 /* if there's another roc, start it now */
411 ieee80211_start_next_roc(local);
Johannes Berg21f83582010-12-18 17:20:47 +0100412
Johannes Berg2eb278e2012-06-05 14:28:42 +0200413 out_unlock:
Johannes Berg21f83582010-12-18 17:20:47 +0100414 mutex_unlock(&local->mtx);
415}
416
417void ieee80211_remain_on_channel_expired(struct ieee80211_hw *hw)
418{
419 struct ieee80211_local *local = hw_to_local(hw);
420
421 trace_api_remain_on_channel_expired(local);
422
423 ieee80211_queue_work(hw, &local->hw_roc_done);
424}
425EXPORT_SYMBOL_GPL(ieee80211_remain_on_channel_expired);
426
Johannes Berg2eb278e2012-06-05 14:28:42 +0200427void ieee80211_roc_setup(struct ieee80211_local *local)
Johannes Berg21f83582010-12-18 17:20:47 +0100428{
429 INIT_WORK(&local->hw_roc_start, ieee80211_hw_roc_start);
430 INIT_WORK(&local->hw_roc_done, ieee80211_hw_roc_done);
Johannes Berg2eb278e2012-06-05 14:28:42 +0200431 INIT_LIST_HEAD(&local->roc_list);
432}
433
434void ieee80211_roc_purge(struct ieee80211_sub_if_data *sdata)
435{
436 struct ieee80211_local *local = sdata->local;
437 struct ieee80211_roc_work *roc, *tmp;
438 LIST_HEAD(tmp_list);
439
440 mutex_lock(&local->mtx);
441 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
442 if (roc->sdata != sdata)
443 continue;
444
445 if (roc->started && local->ops->remain_on_channel) {
446 /* can race, so ignore return value */
447 drv_cancel_remain_on_channel(local);
448 }
449
450 list_move_tail(&roc->list, &tmp_list);
451 roc->abort = true;
452 }
Johannes Berg2eb278e2012-06-05 14:28:42 +0200453 mutex_unlock(&local->mtx);
454
455 list_for_each_entry_safe(roc, tmp, &tmp_list, list) {
456 if (local->ops->remain_on_channel) {
457 list_del(&roc->list);
458 ieee80211_roc_notify_destroy(roc);
459 } else {
460 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
461
462 /* work will clean up etc */
463 flush_delayed_work(&roc->work);
464 }
465 }
466
467 WARN_ON_ONCE(!list_empty(&tmp_list));
Johannes Berg21f83582010-12-18 17:20:47 +0100468}