2 * Copyright 2012-2013, Marco Porsch <marco.porsch@s2005.tu-chemnitz.de>
3 * Copyright 2012-2013, cozybit Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
14 /* mesh PS management */
17 * mps_qos_null_get - create pre-addressed QoS Null frame for mesh powersave
19 static struct sk_buff
*mps_qos_null_get(struct sta_info
*sta
)
21 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
22 struct ieee80211_local
*local
= sdata
->local
;
23 struct ieee80211_hdr
*nullfunc
; /* use 4addr header */
25 int size
= sizeof(*nullfunc
);
28 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ size
+ 2);
31 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
33 nullfunc
= (struct ieee80211_hdr
*) skb_put(skb
, size
);
34 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
| IEEE80211_STYPE_QOS_NULLFUNC
);
35 ieee80211_fill_mesh_addresses(nullfunc
, &fc
, sta
->sta
.addr
,
37 nullfunc
->frame_control
= fc
;
38 nullfunc
->duration_id
= 0;
39 /* no address resolution for this frame -> set addr 1 immediately */
40 memcpy(nullfunc
->addr1
, sta
->sta
.addr
, ETH_ALEN
);
41 memset(skb_put(skb
, 2), 0, 2); /* append QoS control field */
42 ieee80211_mps_set_frame_flags(sdata
, sta
, nullfunc
);
48 * mps_qos_null_tx - send a QoS Null to indicate link-specific power mode
50 static void mps_qos_null_tx(struct sta_info
*sta
)
54 skb
= mps_qos_null_get(sta
);
58 mps_dbg(sta
->sdata
, "announcing peer-specific power mode to %pM\n",
61 /* don't unintentionally start a MPSP */
62 if (!test_sta_flag(sta
, WLAN_STA_PS_STA
)) {
63 u8
*qc
= ieee80211_get_qos_ctl((void *) skb
->data
);
65 qc
[0] |= IEEE80211_QOS_CTL_EOSP
;
68 ieee80211_tx_skb(sta
->sdata
, skb
);
72 * ieee80211_mps_local_status_update - track status of local link-specific PMs
74 * @sdata: local mesh subif
76 * sets the non-peer power mode and triggers the driver PS (re-)configuration
77 * Return BSS_CHANGED_BEACON if a beacon update is necessary.
79 u32
ieee80211_mps_local_status_update(struct ieee80211_sub_if_data
*sdata
)
81 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
84 int light_sleep_cnt
= 0;
85 int deep_sleep_cnt
= 0;
87 enum nl80211_mesh_power_mode nonpeer_pm
;
90 list_for_each_entry_rcu(sta
, &sdata
->local
->sta_list
, list
) {
91 if (sdata
!= sta
->sdata
)
94 switch (sta
->plink_state
) {
95 case NL80211_PLINK_OPN_SNT
:
96 case NL80211_PLINK_OPN_RCVD
:
97 case NL80211_PLINK_CNF_RCVD
:
100 case NL80211_PLINK_ESTAB
:
101 if (sta
->local_pm
== NL80211_MESH_POWER_LIGHT_SLEEP
)
103 else if (sta
->local_pm
== NL80211_MESH_POWER_DEEP_SLEEP
)
113 * Set non-peer mode to active during peering/scanning/authentication
114 * (see IEEE802.11-2012 13.14.8.3). The non-peer mesh power mode is
115 * deep sleep if the local STA is in light or deep sleep towards at
116 * least one mesh peer (see 13.14.3.1). Otherwise, set it to the
117 * user-configured default value.
120 mps_dbg(sdata
, "setting non-peer PM to active for peering\n");
121 nonpeer_pm
= NL80211_MESH_POWER_ACTIVE
;
122 } else if (light_sleep_cnt
|| deep_sleep_cnt
) {
123 mps_dbg(sdata
, "setting non-peer PM to deep sleep\n");
124 nonpeer_pm
= NL80211_MESH_POWER_DEEP_SLEEP
;
126 mps_dbg(sdata
, "setting non-peer PM to user value\n");
127 nonpeer_pm
= ifmsh
->mshcfg
.power_mode
;
130 /* need update if sleep counts move between 0 and non-zero */
131 if (ifmsh
->nonpeer_pm
!= nonpeer_pm
||
132 !ifmsh
->ps_peers_light_sleep
!= !light_sleep_cnt
||
133 !ifmsh
->ps_peers_deep_sleep
!= !deep_sleep_cnt
)
134 changed
= BSS_CHANGED_BEACON
;
136 ifmsh
->nonpeer_pm
= nonpeer_pm
;
137 ifmsh
->ps_peers_light_sleep
= light_sleep_cnt
;
138 ifmsh
->ps_peers_deep_sleep
= deep_sleep_cnt
;
144 * ieee80211_mps_set_sta_local_pm - set local PM towards a mesh STA
147 * @pm: the power mode to set
148 * Return BSS_CHANGED_BEACON if a beacon update is in order.
150 u32
ieee80211_mps_set_sta_local_pm(struct sta_info
*sta
,
151 enum nl80211_mesh_power_mode pm
)
153 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
155 if (sta
->local_pm
== pm
)
158 mps_dbg(sdata
, "local STA operates in mode %d with %pM\n",
164 * announce peer-specific power mode transition
165 * (see IEEE802.11-2012 13.14.3.2 and 13.14.3.3)
167 if (sta
->plink_state
== NL80211_PLINK_ESTAB
)
168 mps_qos_null_tx(sta
);
170 return ieee80211_mps_local_status_update(sdata
);
174 * ieee80211_mps_set_frame_flags - set mesh PS flags in FC (and QoS Control)
176 * @sdata: local mesh subif
178 * @hdr: 802.11 frame header
180 * see IEEE802.11-2012 8.2.4.1.7 and 8.2.4.5.11
182 * NOTE: sta must be given when an individually-addressed QoS frame header
183 * is handled, for group-addressed and management frames it is not used
185 void ieee80211_mps_set_frame_flags(struct ieee80211_sub_if_data
*sdata
,
186 struct sta_info
*sta
,
187 struct ieee80211_hdr
*hdr
)
189 enum nl80211_mesh_power_mode pm
;
192 if (WARN_ON(is_unicast_ether_addr(hdr
->addr1
) &&
193 ieee80211_is_data_qos(hdr
->frame_control
) &&
197 if (is_unicast_ether_addr(hdr
->addr1
) &&
198 ieee80211_is_data_qos(hdr
->frame_control
) &&
199 sta
->plink_state
== NL80211_PLINK_ESTAB
)
202 pm
= sdata
->u
.mesh
.nonpeer_pm
;
204 if (pm
== NL80211_MESH_POWER_ACTIVE
)
205 hdr
->frame_control
&= cpu_to_le16(~IEEE80211_FCTL_PM
);
207 hdr
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PM
);
209 if (!ieee80211_is_data_qos(hdr
->frame_control
))
212 qc
= ieee80211_get_qos_ctl(hdr
);
214 if ((is_unicast_ether_addr(hdr
->addr1
) &&
215 pm
== NL80211_MESH_POWER_DEEP_SLEEP
) ||
216 (is_multicast_ether_addr(hdr
->addr1
) &&
217 sdata
->u
.mesh
.ps_peers_deep_sleep
> 0))
218 qc
[1] |= (IEEE80211_QOS_CTL_MESH_PS_LEVEL
>> 8);
220 qc
[1] &= ~(IEEE80211_QOS_CTL_MESH_PS_LEVEL
>> 8);
224 * ieee80211_mps_sta_status_update - update buffering status of neighbor STA
228 * called after change of peering status or non-peer/peer-specific power mode
230 void ieee80211_mps_sta_status_update(struct sta_info
*sta
)
232 enum nl80211_mesh_power_mode pm
;
235 /* For non-assoc STA, prevent buffering or frame transmission */
236 if (sta
->sta_state
< IEEE80211_STA_ASSOC
)
240 * use peer-specific power mode if peering is established and the
241 * peer's power mode is known
243 if (sta
->plink_state
== NL80211_PLINK_ESTAB
&&
244 sta
->peer_pm
!= NL80211_MESH_POWER_UNKNOWN
)
247 pm
= sta
->nonpeer_pm
;
249 do_buffer
= (pm
!= NL80211_MESH_POWER_ACTIVE
);
251 /* clear the MPSP flags for non-peers or active STA */
252 if (sta
->plink_state
!= NL80211_PLINK_ESTAB
) {
253 clear_sta_flag(sta
, WLAN_STA_MPSP_OWNER
);
254 clear_sta_flag(sta
, WLAN_STA_MPSP_RECIPIENT
);
255 } else if (!do_buffer
) {
256 clear_sta_flag(sta
, WLAN_STA_MPSP_OWNER
);
259 /* Don't let the same PS state be set twice */
260 if (test_sta_flag(sta
, WLAN_STA_PS_STA
) == do_buffer
)
264 set_sta_flag(sta
, WLAN_STA_PS_STA
);
265 atomic_inc(&sta
->sdata
->u
.mesh
.ps
.num_sta_ps
);
266 mps_dbg(sta
->sdata
, "start PS buffering frames towards %pM\n",
269 ieee80211_sta_ps_deliver_wakeup(sta
);
273 static void mps_set_sta_peer_pm(struct sta_info
*sta
,
274 struct ieee80211_hdr
*hdr
)
276 enum nl80211_mesh_power_mode pm
;
277 u8
*qc
= ieee80211_get_qos_ctl(hdr
);
280 * Test Power Management field of frame control (PW) and
281 * mesh power save level subfield of QoS control field (PSL)
283 * | PM | PSL| Mesh PM |
284 * +----+----+---------+
285 * | 0 |Rsrv| Active |
289 if (ieee80211_has_pm(hdr
->frame_control
)) {
290 if (qc
[1] & (IEEE80211_QOS_CTL_MESH_PS_LEVEL
>> 8))
291 pm
= NL80211_MESH_POWER_DEEP_SLEEP
;
293 pm
= NL80211_MESH_POWER_LIGHT_SLEEP
;
295 pm
= NL80211_MESH_POWER_ACTIVE
;
298 if (sta
->peer_pm
== pm
)
301 mps_dbg(sta
->sdata
, "STA %pM enters mode %d\n",
306 ieee80211_mps_sta_status_update(sta
);
309 static void mps_set_sta_nonpeer_pm(struct sta_info
*sta
,
310 struct ieee80211_hdr
*hdr
)
312 enum nl80211_mesh_power_mode pm
;
314 if (ieee80211_has_pm(hdr
->frame_control
))
315 pm
= NL80211_MESH_POWER_DEEP_SLEEP
;
317 pm
= NL80211_MESH_POWER_ACTIVE
;
319 if (sta
->nonpeer_pm
== pm
)
322 mps_dbg(sta
->sdata
, "STA %pM sets non-peer mode to %d\n",
325 sta
->nonpeer_pm
= pm
;
327 ieee80211_mps_sta_status_update(sta
);
331 * ieee80211_mps_rx_h_sta_process - frame receive handler for mesh powersave
333 * @sta: STA info that transmitted the frame
334 * @hdr: IEEE 802.11 (QoS) Header
336 void ieee80211_mps_rx_h_sta_process(struct sta_info
*sta
,
337 struct ieee80211_hdr
*hdr
)
339 if (is_unicast_ether_addr(hdr
->addr1
) &&
340 ieee80211_is_data_qos(hdr
->frame_control
)) {
342 * individually addressed QoS Data/Null frames contain
343 * peer link-specific PS mode towards the local STA
345 mps_set_sta_peer_pm(sta
, hdr
);
347 /* check for mesh Peer Service Period trigger frames */
348 ieee80211_mpsp_trigger_process(ieee80211_get_qos_ctl(hdr
),
352 * can only determine non-peer PS mode
353 * (see IEEE802.11-2012 8.2.4.1.7)
355 mps_set_sta_nonpeer_pm(sta
, hdr
);
360 /* mesh PS frame release */
362 static void mpsp_trigger_send(struct sta_info
*sta
, bool rspi
, bool eosp
)
364 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
366 struct ieee80211_hdr
*nullfunc
;
367 struct ieee80211_tx_info
*info
;
370 skb
= mps_qos_null_get(sta
);
374 nullfunc
= (struct ieee80211_hdr
*) skb
->data
;
376 nullfunc
->frame_control
|=
377 cpu_to_le16(IEEE80211_FCTL_MOREDATA
);
379 * | RSPI | EOSP | MPSP triggering |
380 * +------+------+--------------------+
381 * | 0 | 0 | local STA is owner |
382 * | 0 | 1 | no MPSP (MPSP end) |
383 * | 1 | 0 | both STA are owner |
384 * | 1 | 1 | peer STA is owner | see IEEE802.11-2012 13.14.9.2
386 qc
= ieee80211_get_qos_ctl(nullfunc
);
388 qc
[1] |= (IEEE80211_QOS_CTL_RSPI
>> 8);
390 qc
[0] |= IEEE80211_QOS_CTL_EOSP
;
392 info
= IEEE80211_SKB_CB(skb
);
394 info
->flags
|= IEEE80211_TX_CTL_NO_PS_BUFFER
|
395 IEEE80211_TX_CTL_REQ_TX_STATUS
;
397 mps_dbg(sdata
, "sending MPSP trigger%s%s to %pM\n",
398 rspi
? " RSPI" : "", eosp
? " EOSP" : "", sta
->sta
.addr
);
400 ieee80211_tx_skb(sdata
, skb
);
404 * mpsp_qos_null_append - append QoS Null frame to MPSP skb queue if needed
406 * To properly end a mesh MPSP the last transmitted frame has to set the EOSP
407 * flag in the QoS Control field. In case the current tailing frame is not a
408 * QoS Data frame, append a QoS Null to carry the flag.
410 static void mpsp_qos_null_append(struct sta_info
*sta
,
411 struct sk_buff_head
*frames
)
413 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
414 struct sk_buff
*new_skb
, *skb
= skb_peek_tail(frames
);
415 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
416 struct ieee80211_tx_info
*info
;
418 if (ieee80211_is_data_qos(hdr
->frame_control
))
421 new_skb
= mps_qos_null_get(sta
);
425 mps_dbg(sdata
, "appending QoS Null in MPSP towards %pM\n",
428 * This frame has to be transmitted last. Assign lowest priority to
429 * make sure it cannot pass other frames when releasing multiple ACs.
431 new_skb
->priority
= 1;
432 skb_set_queue_mapping(new_skb
, IEEE80211_AC_BK
);
433 ieee80211_set_qos_hdr(sdata
, new_skb
);
435 info
= IEEE80211_SKB_CB(new_skb
);
436 info
->control
.vif
= &sdata
->vif
;
437 info
->flags
|= IEEE80211_TX_INTFL_NEED_TXPROCESSING
;
439 __skb_queue_tail(frames
, new_skb
);
443 * mps_frame_deliver - transmit frames during mesh powersave
445 * @sta: STA info to transmit to
446 * @n_frames: number of frames to transmit. -1 for all
448 static void mps_frame_deliver(struct sta_info
*sta
, int n_frames
)
450 struct ieee80211_local
*local
= sta
->sdata
->local
;
452 struct sk_buff_head frames
;
454 bool more_data
= false;
456 skb_queue_head_init(&frames
);
458 /* collect frame(s) from buffers */
459 for (ac
= 0; ac
< IEEE80211_NUM_ACS
; ac
++) {
460 while (n_frames
!= 0) {
461 skb
= skb_dequeue(&sta
->tx_filtered
[ac
]);
464 &sta
->ps_tx_buf
[ac
]);
466 local
->total_ps_buffered
--;
471 __skb_queue_tail(&frames
, skb
);
474 if (!skb_queue_empty(&sta
->tx_filtered
[ac
]) ||
475 !skb_queue_empty(&sta
->ps_tx_buf
[ac
]))
479 /* nothing to send? -> EOSP */
480 if (skb_queue_empty(&frames
)) {
481 mpsp_trigger_send(sta
, false, true);
485 /* in a MPSP make sure the last skb is a QoS Data frame */
486 if (test_sta_flag(sta
, WLAN_STA_MPSP_OWNER
))
487 mpsp_qos_null_append(sta
, &frames
);
489 mps_dbg(sta
->sdata
, "sending %d frames to PS STA %pM\n",
490 skb_queue_len(&frames
), sta
->sta
.addr
);
492 /* prepare collected frames for transmission */
493 skb_queue_walk(&frames
, skb
) {
494 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
495 struct ieee80211_hdr
*hdr
= (void *) skb
->data
;
498 * Tell TX path to send this frame even though the
499 * STA may still remain is PS mode after this frame
502 info
->flags
|= IEEE80211_TX_CTL_NO_PS_BUFFER
;
504 if (more_data
|| !skb_queue_is_last(&frames
, skb
))
505 hdr
->frame_control
|=
506 cpu_to_le16(IEEE80211_FCTL_MOREDATA
);
508 hdr
->frame_control
&=
509 cpu_to_le16(~IEEE80211_FCTL_MOREDATA
);
511 if (skb_queue_is_last(&frames
, skb
) &&
512 ieee80211_is_data_qos(hdr
->frame_control
)) {
513 u8
*qoshdr
= ieee80211_get_qos_ctl(hdr
);
515 /* MPSP trigger frame ends service period */
516 *qoshdr
|= IEEE80211_QOS_CTL_EOSP
;
517 info
->flags
|= IEEE80211_TX_CTL_REQ_TX_STATUS
;
521 ieee80211_add_pending_skbs(local
, &frames
);
522 sta_info_recalc_tim(sta
);
526 * ieee80211_mpsp_trigger_process - track status of mesh Peer Service Periods
528 * @qc: QoS Control field
529 * @sta: peer to start a MPSP with
530 * @tx: frame was transmitted by the local STA
531 * @acked: frame has been transmitted successfully
533 * NOTE: active mode STA may only serve as MPSP owner
535 void ieee80211_mpsp_trigger_process(u8
*qc
, struct sta_info
*sta
,
538 u8 rspi
= qc
[1] & (IEEE80211_QOS_CTL_RSPI
>> 8);
539 u8 eosp
= qc
[0] & IEEE80211_QOS_CTL_EOSP
;
543 set_sta_flag(sta
, WLAN_STA_MPSP_RECIPIENT
);
546 clear_sta_flag(sta
, WLAN_STA_MPSP_OWNER
);
548 test_sta_flag(sta
, WLAN_STA_PS_STA
) &&
549 !test_and_set_sta_flag(sta
, WLAN_STA_MPSP_OWNER
))
550 mps_frame_deliver(sta
, -1);
553 clear_sta_flag(sta
, WLAN_STA_MPSP_RECIPIENT
);
554 else if (sta
->local_pm
!= NL80211_MESH_POWER_ACTIVE
)
555 set_sta_flag(sta
, WLAN_STA_MPSP_RECIPIENT
);
557 if (rspi
&& !test_and_set_sta_flag(sta
, WLAN_STA_MPSP_OWNER
))
558 mps_frame_deliver(sta
, -1);
563 * ieee80211_mps_frame_release - release frames buffered due to mesh power save
566 * @elems: IEs of beacon or probe response
568 * For peers if we have individually-addressed frames buffered or the peer
569 * indicates buffered frames, send a corresponding MPSP trigger frame. Since
570 * we do not evaluate the awake window duration, QoS Nulls are used as MPSP
571 * trigger frames. If the neighbour STA is not a peer, only send single frames.
573 void ieee80211_mps_frame_release(struct sta_info
*sta
,
574 struct ieee802_11_elems
*elems
)
576 int ac
, buffer_local
= 0;
577 bool has_buffered
= false;
579 if (sta
->plink_state
== NL80211_PLINK_ESTAB
)
580 has_buffered
= ieee80211_check_tim(elems
->tim
, elems
->tim_len
,
584 mps_dbg(sta
->sdata
, "%pM indicates buffered frames\n",
587 /* only transmit to PS STA with announced, non-zero awake window */
588 if (test_sta_flag(sta
, WLAN_STA_PS_STA
) &&
589 (!elems
->awake_window
|| !le16_to_cpu(*elems
->awake_window
)))
592 if (!test_sta_flag(sta
, WLAN_STA_MPSP_OWNER
))
593 for (ac
= 0; ac
< IEEE80211_NUM_ACS
; ac
++)
594 buffer_local
+= skb_queue_len(&sta
->ps_tx_buf
[ac
]) +
595 skb_queue_len(&sta
->tx_filtered
[ac
]);
597 if (!has_buffered
&& !buffer_local
)
600 if (sta
->plink_state
== NL80211_PLINK_ESTAB
)
601 mpsp_trigger_send(sta
, has_buffered
, !buffer_local
);
603 mps_frame_deliver(sta
, 1);