2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include <sys/cdefs.h>
30 * IEEE 802.11 power save support.
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/malloc.h>
39 #include <sys/socket.h>
42 #include <net/if_var.h>
43 #include <net/if_media.h>
44 #include <net/ethernet.h>
46 #include <net80211/ieee80211_var.h>
50 static void ieee80211_update_ps(struct ieee80211vap
*, int);
51 static int ieee80211_set_tim(struct ieee80211_node
*, int);
53 static MALLOC_DEFINE(M_80211_POWER
, "80211power", "802.11 power save state");
56 ieee80211_power_attach(struct ieee80211com
*ic
)
61 ieee80211_power_detach(struct ieee80211com
*ic
)
66 ieee80211_power_vattach(struct ieee80211vap
*vap
)
68 if (vap
->iv_opmode
== IEEE80211_M_HOSTAP
||
69 vap
->iv_opmode
== IEEE80211_M_IBSS
) {
70 /* NB: driver should override */
71 vap
->iv_update_ps
= ieee80211_update_ps
;
72 vap
->iv_set_tim
= ieee80211_set_tim
;
74 vap
->iv_node_ps
= ieee80211_node_pwrsave
;
75 vap
->iv_sta_ps
= ieee80211_sta_pwrsave
;
79 ieee80211_power_latevattach(struct ieee80211vap
*vap
)
82 * Allocate these only if needed. Beware that we
83 * know adhoc mode doesn't support ATIM yet...
85 if (vap
->iv_opmode
== IEEE80211_M_HOSTAP
) {
86 vap
->iv_tim_len
= howmany(vap
->iv_max_aid
,8) * sizeof(uint8_t);
87 vap
->iv_tim_bitmap
= (uint8_t *) IEEE80211_MALLOC(vap
->iv_tim_len
,
89 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
90 if (vap
->iv_tim_bitmap
== NULL
) {
91 printf("%s: no memory for TIM bitmap!\n", __func__
);
92 /* XXX good enough to keep from crashing? */
99 ieee80211_power_vdetach(struct ieee80211vap
*vap
)
101 if (vap
->iv_tim_bitmap
!= NULL
) {
102 IEEE80211_FREE(vap
->iv_tim_bitmap
, M_80211_POWER
);
103 vap
->iv_tim_bitmap
= NULL
;
108 ieee80211_psq_init(struct ieee80211_psq
*psq
, const char *name
)
110 memset(psq
, 0, sizeof(*psq
));
111 psq
->psq_maxlen
= IEEE80211_PS_MAX_QUEUE
;
112 IEEE80211_PSQ_INIT(psq
, name
); /* OS-dependent setup */
116 ieee80211_psq_cleanup(struct ieee80211_psq
*psq
)
119 psq_drain(psq
); /* XXX should not be needed? */
121 KASSERT(psq
->psq_len
== 0, ("%d frames on ps q", psq
->psq_len
));
123 IEEE80211_PSQ_DESTROY(psq
); /* OS-dependent cleanup */
127 * Return the highest priority frame in the ps queue.
130 ieee80211_node_psq_dequeue(struct ieee80211_node
*ni
, int *qlen
)
132 struct ieee80211_psq
*psq
= &ni
->ni_psq
;
133 struct ieee80211_psq_head
*qhead
;
136 IEEE80211_PSQ_LOCK(psq
);
137 qhead
= &psq
->psq_head
[0];
139 if ((m
= qhead
->head
) != NULL
) {
140 if ((qhead
->head
= m
->m_nextpkt
) == NULL
)
142 KASSERT(qhead
->len
> 0, ("qhead len %d", qhead
->len
));
144 KASSERT(psq
->psq_len
> 0, ("psq len %d", psq
->psq_len
));
148 if (m
== NULL
&& qhead
== &psq
->psq_head
[0]) {
149 /* Algol-68 style for loop */
150 qhead
= &psq
->psq_head
[1];
154 *qlen
= psq
->psq_len
;
155 IEEE80211_PSQ_UNLOCK(psq
);
160 * Reclaim an mbuf from the ps q. If marked with M_ENCAP
161 * we assume there is a node reference that must be relcaimed.
164 psq_mfree(struct mbuf
*m
)
166 if (m
->m_flags
& M_ENCAP
) {
167 struct ieee80211_node
*ni
= (void *) m
->m_pkthdr
.rcvif
;
168 ieee80211_free_node(ni
);
175 * Clear any frames queued in the power save queue.
176 * The number of frames that were present is returned.
179 psq_drain(struct ieee80211_psq
*psq
)
181 struct ieee80211_psq_head
*qhead
;
185 IEEE80211_PSQ_LOCK(psq
);
187 qhead
= &psq
->psq_head
[0];
189 while ((m
= qhead
->head
) != NULL
) {
190 qhead
->head
= m
->m_nextpkt
;
195 if (qhead
== &psq
->psq_head
[0]) { /* Algol-68 style for loop */
196 qhead
= &psq
->psq_head
[1];
200 IEEE80211_PSQ_UNLOCK(psq
);
206 * Clear any frames queued in the power save queue.
207 * The number of frames that were present is returned.
210 ieee80211_node_psq_drain(struct ieee80211_node
*ni
)
212 return psq_drain(&ni
->ni_psq
);
216 * Age frames on the power save queue. The aging interval is
217 * 4 times the listen interval specified by the station. This
218 * number is factored into the age calculations when the frame
219 * is placed on the queue. We store ages as time differences
220 * so we can check and/or adjust only the head of the list.
221 * If a frame's age exceeds the threshold then discard it.
222 * The number of frames discarded is returned so the caller
223 * can check if it needs to adjust the tim.
226 ieee80211_node_psq_age(struct ieee80211_node
*ni
)
228 struct ieee80211_psq
*psq
= &ni
->ni_psq
;
231 if (psq
->psq_len
!= 0) {
232 #ifdef IEEE80211_DEBUG
233 struct ieee80211vap
*vap
= ni
->ni_vap
;
235 struct ieee80211_psq_head
*qhead
;
238 IEEE80211_PSQ_LOCK(psq
);
239 qhead
= &psq
->psq_head
[0];
241 while ((m
= qhead
->head
) != NULL
&&
242 M_AGE_GET(m
) < IEEE80211_INACT_WAIT
) {
243 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
244 "discard frame, age %u", M_AGE_GET(m
));
245 if ((qhead
->head
= m
->m_nextpkt
) == NULL
)
247 KASSERT(qhead
->len
> 0, ("qhead len %d", qhead
->len
));
249 KASSERT(psq
->psq_len
> 0, ("psq len %d", psq
->psq_len
));
254 if (qhead
== &psq
->psq_head
[0]) { /* Algol-68 style for loop */
255 qhead
= &psq
->psq_head
[1];
259 M_AGE_SUB(m
, IEEE80211_INACT_WAIT
);
260 IEEE80211_PSQ_UNLOCK(psq
);
262 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
263 "discard %u frames for age", discard
);
264 IEEE80211_NODE_STAT_ADD(ni
, ps_discard
, discard
);
270 * Handle a change in the PS station occupancy.
273 ieee80211_update_ps(struct ieee80211vap
*vap
, int nsta
)
276 KASSERT(vap
->iv_opmode
== IEEE80211_M_HOSTAP
||
277 vap
->iv_opmode
== IEEE80211_M_IBSS
,
278 ("operating mode %u", vap
->iv_opmode
));
282 * Indicate whether there are frames queued for a station in power-save mode.
285 ieee80211_set_tim(struct ieee80211_node
*ni
, int set
)
287 struct ieee80211vap
*vap
= ni
->ni_vap
;
288 struct ieee80211com
*ic
= ni
->ni_ic
;
292 KASSERT(vap
->iv_opmode
== IEEE80211_M_HOSTAP
||
293 vap
->iv_opmode
== IEEE80211_M_IBSS
,
294 ("operating mode %u", vap
->iv_opmode
));
296 aid
= IEEE80211_AID(ni
->ni_associd
);
297 KASSERT(aid
< vap
->iv_max_aid
,
298 ("bogus aid %u, max %u", aid
, vap
->iv_max_aid
));
301 changed
= (set
!= (isset(vap
->iv_tim_bitmap
, aid
) != 0));
304 setbit(vap
->iv_tim_bitmap
, aid
);
305 vap
->iv_ps_pending
++;
307 clrbit(vap
->iv_tim_bitmap
, aid
);
308 vap
->iv_ps_pending
--;
310 /* NB: we know vap is in RUN state so no need to check */
311 vap
->iv_update_beacon(vap
, IEEE80211_BEACON_TIM
);
313 IEEE80211_UNLOCK(ic
);
319 * Save an outbound packet for a node in power-save sleep state.
320 * The new packet is placed on the node's saved queue, and the TIM
321 * is changed, if necessary.
324 ieee80211_pwrsave(struct ieee80211_node
*ni
, struct mbuf
*m
)
326 struct ieee80211_psq
*psq
= &ni
->ni_psq
;
327 struct ieee80211vap
*vap
= ni
->ni_vap
;
328 struct ieee80211com
*ic
= ni
->ni_ic
;
329 struct ieee80211_psq_head
*qhead
;
332 IEEE80211_PSQ_LOCK(psq
);
333 if (psq
->psq_len
>= psq
->psq_maxlen
) {
335 IEEE80211_PSQ_UNLOCK(psq
);
336 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
337 "pwr save q overflow, drops %d (size %d)",
338 psq
->psq_drops
, psq
->psq_len
);
339 #ifdef IEEE80211_DEBUG
340 if (ieee80211_msg_dumppkts(vap
))
341 ieee80211_dump_pkt(ni
->ni_ic
, mtod(m
, caddr_t
),
348 * Tag the frame with it's expiry time and insert it in
349 * the appropriate queue. The aging interval is 4 times
350 * the listen interval specified by the station. Frames
351 * that sit around too long are reclaimed using this
354 /* TU -> secs. XXX handle overflow? */
355 age
= IEEE80211_TU_TO_MS((ni
->ni_intval
* ic
->ic_bintval
) << 2) / 1000;
357 * Encapsulated frames go on the high priority queue,
358 * other stuff goes on the low priority queue. We use
359 * this to order frames returned out of the driver
360 * ahead of frames we collect in ieee80211_start.
362 if (m
->m_flags
& M_ENCAP
)
363 qhead
= &psq
->psq_head
[0];
365 qhead
= &psq
->psq_head
[1];
366 if (qhead
->tail
== NULL
) {
371 * Take care to adjust age when inserting the first
372 * frame of a queue and the other queue already has
373 * frames. We need to preserve the age difference
374 * relationship so ieee80211_node_psq_age works.
376 if (qhead
== &psq
->psq_head
[1]) {
377 mh
= psq
->psq_head
[0].head
;
381 mh
= psq
->psq_head
[1].head
;
383 int nage
= M_AGE_GET(mh
) - age
;
384 /* XXX is clamping to zero good 'nuf? */
385 M_AGE_SET(mh
, nage
< 0 ? 0 : nage
);
389 qhead
->tail
->m_nextpkt
= m
;
390 age
-= M_AGE_GET(qhead
->head
);
392 KASSERT(age
>= 0, ("age %d", age
));
397 qlen
= ++(psq
->psq_len
);
398 IEEE80211_PSQ_UNLOCK(psq
);
400 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
401 "save frame with age %d, %u now queued", age
, qlen
);
403 if (qlen
== 1 && vap
->iv_set_tim
!= NULL
)
404 vap
->iv_set_tim(ni
, 1);
410 * Move frames from the ps q to the vap's send queue
411 * and/or the driver's send queue; and kick the start
412 * method for each, as appropriate. Note we're careful
413 * to preserve packet ordering here.
416 pwrsave_flushq(struct ieee80211_node
*ni
)
418 struct ieee80211_psq
*psq
= &ni
->ni_psq
;
419 struct ieee80211com
*ic
= ni
->ni_ic
;
420 struct ieee80211vap
*vap
= ni
->ni_vap
;
421 struct ieee80211_psq_head
*qhead
;
422 struct mbuf
*parent_q
= NULL
, *ifp_q
= NULL
;
425 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
426 "flush ps queue, %u packets queued", psq
->psq_len
);
428 IEEE80211_PSQ_LOCK(psq
);
429 qhead
= &psq
->psq_head
[0]; /* 802.11 frames */
430 if (qhead
->head
!= NULL
) {
431 /* XXX could dispatch through vap and check M_ENCAP */
432 /* XXX need different driver interface */
433 /* XXX bypasses q max and OACTIVE */
434 parent_q
= qhead
->head
;
435 qhead
->head
= qhead
->tail
= NULL
;
439 qhead
= &psq
->psq_head
[1]; /* 802.3 frames */
440 if (qhead
->head
!= NULL
) {
441 /* XXX need different driver interface */
442 /* XXX bypasses q max and OACTIVE */
444 qhead
->head
= qhead
->tail
= NULL
;
448 IEEE80211_PSQ_UNLOCK(psq
);
450 /* NB: do this outside the psq lock */
451 /* XXX packets might get reordered if parent is OACTIVE */
452 /* parent frames, should be encapsulated */
453 while (parent_q
!= NULL
) {
455 parent_q
= m
->m_nextpkt
;
457 /* must be encapsulated */
458 KASSERT((m
->m_flags
& M_ENCAP
),
459 ("%s: parentq with non-M_ENCAP frame!\n",
461 (void) ieee80211_parent_xmitpkt(ic
, m
);
464 /* VAP frames, aren't encapsulated */
465 while (ifp_q
!= NULL
) {
467 ifp_q
= m
->m_nextpkt
;
469 KASSERT((!(m
->m_flags
& M_ENCAP
)),
470 ("%s: vapq with M_ENCAP frame!\n", __func__
));
471 (void) ieee80211_vap_xmitpkt(vap
, m
);
476 * Handle station power-save state change.
479 ieee80211_node_pwrsave(struct ieee80211_node
*ni
, int enable
)
481 struct ieee80211vap
*vap
= ni
->ni_vap
;
486 if ((ni
->ni_flags
& IEEE80211_NODE_PWR_MGT
) == 0) {
490 ni
->ni_flags
|= IEEE80211_NODE_PWR_MGT
;
491 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
492 "power save mode on, %u sta's in ps mode", vap
->iv_ps_sta
);
495 vap
->iv_update_ps(vap
, vap
->iv_ps_sta
);
497 if (ni
->ni_flags
& IEEE80211_NODE_PWR_MGT
) {
501 ni
->ni_flags
&= ~IEEE80211_NODE_PWR_MGT
;
502 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
503 "power save mode off, %u sta's in ps mode", vap
->iv_ps_sta
);
505 /* NB: order here is intentional so TIM is clear before flush */
506 if (vap
->iv_set_tim
!= NULL
)
507 vap
->iv_set_tim(ni
, 0);
509 /* NB if no sta's in ps, driver should flush mc q */
510 vap
->iv_update_ps(vap
, vap
->iv_ps_sta
);
512 if (ni
->ni_psq
.psq_len
!= 0)
518 * Handle power-save state change in station mode.
521 ieee80211_sta_pwrsave(struct ieee80211vap
*vap
, int enable
)
523 struct ieee80211_node
*ni
= vap
->iv_bss
;
525 if (!((enable
!= 0) ^ ((ni
->ni_flags
& IEEE80211_NODE_PWR_MGT
) != 0)))
528 IEEE80211_NOTE(vap
, IEEE80211_MSG_POWER
, ni
,
529 "sta power save mode %s", enable
? "on" : "off");
531 ni
->ni_flags
&= ~IEEE80211_NODE_PWR_MGT
;
532 ieee80211_send_nulldata(ieee80211_ref_node(ni
));
534 * Flush any queued frames; we can do this immediately
535 * because we know they'll be queued behind the null
536 * data frame we send the ap.
537 * XXX can we use a data frame to take us out of ps?
539 if (ni
->ni_psq
.psq_len
!= 0)
542 ni
->ni_flags
|= IEEE80211_NODE_PWR_MGT
;
543 ieee80211_send_nulldata(ieee80211_ref_node(ni
));
548 * Handle being notified that we have data available for us in a TIM/ATIM.
550 * This may schedule a transition from _SLEEP -> _RUN if it's appropriate.
552 * In STA mode, we may have put to sleep during scan and need to be dragged
553 * back out of powersave mode.
556 ieee80211_sta_tim_notify(struct ieee80211vap
*vap
, int set
)
558 struct ieee80211com
*ic
= vap
->iv_ic
;
561 * Schedule the driver state change. It'll happen at some point soon.
562 * Since the hardware shouldn't know that we're running just yet
563 * (and thus tell the peer that we're awake before we actually wake
564 * up said hardware), we leave the actual node state transition
565 * up to the transition to RUN.
567 * XXX TODO: verify that the transition to RUN will wake up the
570 IEEE80211_LOCK(vap
->iv_ic
);
571 if (set
== 1 && vap
->iv_state
== IEEE80211_S_SLEEP
) {
572 ieee80211_new_state_locked(vap
, IEEE80211_S_RUN
, 0);
573 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_POWER
,
574 "%s: TIM=%d; wakeup\n", __func__
, set
);
575 } else if ((set
== 1) && (ic
->ic_flags_ext
& IEEE80211_FEXT_BGSCAN
)) {
577 * XXX only do this if we're in RUN state?
579 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_POWER
,
580 "%s: wake up from bgscan vap sleep\n",
583 * We may be in BGSCAN mode - this means the VAP is in STA
584 * mode powersave. If it is, we need to wake it up so we
585 * can process outbound traffic.
587 vap
->iv_sta_ps(vap
, 0);
589 IEEE80211_UNLOCK(vap
->iv_ic
);
593 * Timer check on whether the VAP has had any transmit activity.
595 * This may schedule a transition from _RUN -> _SLEEP if it's appropriate.
598 ieee80211_sta_ps_timer_check(struct ieee80211vap
*vap
)
600 struct ieee80211com
*ic
= vap
->iv_ic
;
602 /* XXX lock assert */
604 /* For no, only do this in STA mode */
605 if (! (vap
->iv_caps
& IEEE80211_C_SWSLEEP
))
608 if (vap
->iv_opmode
!= IEEE80211_M_STA
)
611 /* If we're not at run state, bail */
612 if (vap
->iv_state
!= IEEE80211_S_RUN
)
615 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_POWER
,
616 "%s: lastdata=%llu, ticks=%llu\n",
617 __func__
, (unsigned long long) ic
->ic_lastdata
,
618 (unsigned long long) ticks
);
620 /* If powersave is disabled on the VAP, don't bother */
621 if (! (vap
->iv_flags
& IEEE80211_F_PMGTON
))
624 /* If we've done any data within our idle interval, bail */
625 /* XXX hard-coded to one second for now, ew! */
626 if (ieee80211_time_after(ic
->ic_lastdata
+ 500, ticks
))
630 * Signify we're going into power save and transition the
633 if ((vap
->iv_bss
->ni_flags
& IEEE80211_NODE_PWR_MGT
) == 0)
634 vap
->iv_sta_ps(vap
, 1);
637 * XXX The driver has to handle the fact that we're going
638 * to sleep but frames may still be transmitted;
639 * hopefully it and/or us will do the right thing and mark any
640 * transmitted frames with PWRMGT set to 1.
642 ieee80211_new_state_locked(vap
, IEEE80211_S_SLEEP
, 0);
644 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_POWER
,
645 "%s: time delta=%d msec\n", __func__
,
646 (int) ticks_to_msecs(ticks
- ic
->ic_lastdata
));