- Add ic_headroom through which drivers can inform 802.11 layer to reserve
[dragonfly/port-amd64.git] / sys / netproto / 802_11 / wlan / ieee80211_output.c
blobb5644e0587f3052f81a1395cce0ebed69b11452a
1 /*
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
17 * Alternatively, this software may be distributed under the terms of the
18 * GNU General Public License ("GPL") version 2 as published by the Free
19 * Software Foundation.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * $FreeBSD: src/sys/net80211/ieee80211_output.c,v 1.26.2.8 2006/09/02 15:06:04 sam Exp $
33 * $DragonFly: src/sys/netproto/802_11/wlan/ieee80211_output.c,v 1.22 2007/08/22 13:24:44 sephe Exp $
36 #include "opt_inet.h"
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/mbuf.h>
41 #include <sys/kernel.h>
42 #include <sys/endian.h>
44 #include <sys/socket.h>
46 #include <net/bpf.h>
47 #include <net/ethernet.h>
48 #include <net/if.h>
49 #include <net/if_arp.h>
50 #include <net/if_llc.h>
51 #include <net/if_media.h>
52 #include <net/vlan/if_vlan_var.h>
54 #include <netproto/802_11/ieee80211_var.h>
56 #ifdef INET
57 #include <netinet/in.h>
58 #include <netinet/if_ether.h>
59 #include <netinet/in_systm.h>
60 #include <netinet/ip.h>
61 #endif
63 #ifdef IEEE80211_DEBUG
65 * Decide if an outbound management frame should be
66 * printed when debugging is enabled. This filters some
67 * of the less interesting frames that come frequently
68 * (e.g. beacons).
70 static __inline int
71 doprint(struct ieee80211com *ic, int subtype)
73 switch (subtype) {
74 case IEEE80211_FC0_SUBTYPE_PROBE_RESP:
75 return (ic->ic_opmode == IEEE80211_M_IBSS);
77 return 1;
79 #endif
82 * Set the direction field and address fields of an outgoing
83 * non-QoS frame. Note this should be called early on in
84 * constructing a frame as it sets i_fc[1]; other bits can
85 * then be or'd in.
87 static void
88 ieee80211_send_setup(struct ieee80211com *ic,
89 struct ieee80211_node *ni,
90 struct ieee80211_frame *wh,
91 int type,
92 const uint8_t sa[IEEE80211_ADDR_LEN],
93 const uint8_t da[IEEE80211_ADDR_LEN],
94 const uint8_t bssid[IEEE80211_ADDR_LEN])
96 #define WH4(wh) ((struct ieee80211_frame_addr4 *)wh)
98 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | type;
99 if ((type & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_DATA) {
100 switch (ic->ic_opmode) {
101 case IEEE80211_M_STA:
102 wh->i_fc[1] = IEEE80211_FC1_DIR_TODS;
103 IEEE80211_ADDR_COPY(wh->i_addr1, bssid);
104 IEEE80211_ADDR_COPY(wh->i_addr2, sa);
105 IEEE80211_ADDR_COPY(wh->i_addr3, da);
106 break;
107 case IEEE80211_M_IBSS:
108 case IEEE80211_M_AHDEMO:
109 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
110 IEEE80211_ADDR_COPY(wh->i_addr1, da);
111 IEEE80211_ADDR_COPY(wh->i_addr2, sa);
112 IEEE80211_ADDR_COPY(wh->i_addr3, bssid);
113 break;
114 case IEEE80211_M_HOSTAP:
115 wh->i_fc[1] = IEEE80211_FC1_DIR_FROMDS;
116 IEEE80211_ADDR_COPY(wh->i_addr1, da);
117 IEEE80211_ADDR_COPY(wh->i_addr2, bssid);
118 IEEE80211_ADDR_COPY(wh->i_addr3, sa);
119 break;
120 case IEEE80211_M_MONITOR: /* NB: to quiet compiler */
121 break;
123 } else {
124 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
125 IEEE80211_ADDR_COPY(wh->i_addr1, da);
126 IEEE80211_ADDR_COPY(wh->i_addr2, sa);
127 IEEE80211_ADDR_COPY(wh->i_addr3, bssid);
129 *(uint16_t *)&wh->i_dur[0] = 0;
130 /* NB: use non-QoS tid */
131 *(uint16_t *)&wh->i_seq[0] =
132 htole16(ni->ni_txseqs[0] << IEEE80211_SEQ_SEQ_SHIFT);
133 ni->ni_txseqs[0]++;
134 #undef WH4
138 * Send a management frame to the specified node. The node pointer
139 * must have a reference as the pointer will be passed to the driver
140 * and potentially held for a long time. If the frame is successfully
141 * dispatched to the driver, then it is responsible for freeing the
142 * reference (and potentially free'ing up any associated storage).
144 static int
145 ieee80211_mgmt_output(struct ieee80211com *ic, struct ieee80211_node *ni,
146 struct mbuf *m, int type, int timer, int encrypt)
148 struct ifnet *ifp = ic->ic_ifp;
149 struct ieee80211_frame *wh;
151 KASSERT(ni != NULL, ("null node"));
154 * Yech, hack alert! We want to pass the node down to the
155 * driver's start routine. If we don't do so then the start
156 * routine must immediately look it up again and that can
157 * cause a lock order reversal if, for example, this frame
158 * is being sent because the station is being timedout and
159 * the frame being sent is a DEAUTH message. We could stick
160 * this in an m_tag and tack that on to the mbuf. However
161 * that's rather expensive to do for every frame so instead
162 * we stuff it in the rcvif field since outbound frames do
163 * not (presently) use this.
165 M_PREPEND(m, sizeof(struct ieee80211_frame), MB_DONTWAIT);
166 if (m == NULL)
167 return ENOMEM;
168 KASSERT(m->m_pkthdr.rcvif == NULL, ("rcvif not null"));
169 m->m_pkthdr.rcvif = (void *)ni;
171 wh = mtod(m, struct ieee80211_frame *);
172 ieee80211_send_setup(ic, ni, wh,
173 IEEE80211_FC0_TYPE_MGT | type,
174 ic->ic_myaddr, ni->ni_macaddr, ni->ni_bssid);
175 if (encrypt) {
176 IEEE80211_DPRINTF(ic, IEEE80211_MSG_AUTH,
177 "[%6D] encrypting frame (%s)\n",
178 wh->i_addr1, ":", __func__);
179 wh->i_fc[1] |= IEEE80211_FC1_WEP;
181 #ifdef IEEE80211_DEBUG
182 /* avoid printing too many frames */
183 if ((ieee80211_msg_debug(ic) && doprint(ic, type)) ||
184 ieee80211_msg_dumppkts(ic)) {
185 kprintf("[%6D] send %s on channel %u\n",
186 wh->i_addr1, ":",
187 ieee80211_mgt_subtype_name[
188 (type & IEEE80211_FC0_SUBTYPE_MASK) >>
189 IEEE80211_FC0_SUBTYPE_SHIFT],
190 ieee80211_chan2ieee(ic, ic->ic_curchan));
192 #endif
193 IEEE80211_NODE_STAT(ni, tx_mgmt);
194 IF_ENQUEUE(&ic->ic_mgtq, m);
195 if (timer) {
197 * Set the mgt frame timeout.
199 ic->ic_mgt_timer = timer;
200 ifp->if_timer = 1;
202 ifp->if_start(ifp);
203 return 0;
207 * Send a null data frame to the specified node.
209 * NB: the caller is assumed to have setup a node reference
210 * for use; this is necessary to deal with a race condition
211 * when probing for inactive stations.
214 ieee80211_send_nulldata(struct ieee80211_node *ni)
216 struct ieee80211com *ic = ni->ni_ic;
217 struct ifnet *ifp = ic->ic_ifp;
218 struct mbuf *m;
219 struct ieee80211_frame *wh;
221 MGETHDR(m, MB_DONTWAIT, MT_HEADER);
222 if (m == NULL) {
223 /* XXX debug msg */
224 ic->ic_stats.is_tx_nobuf++;
225 ieee80211_unref_node(&ni);
226 return ENOMEM;
228 m->m_pkthdr.rcvif = (void *) ni;
230 wh = mtod(m, struct ieee80211_frame *);
231 ieee80211_send_setup(ic, ni, wh,
232 IEEE80211_FC0_TYPE_DATA | IEEE80211_FC0_SUBTYPE_NODATA,
233 ic->ic_myaddr, ni->ni_macaddr, ni->ni_bssid);
234 /* NB: power management bit is never sent by an AP */
235 if ((ni->ni_flags & IEEE80211_NODE_PWR_MGT) &&
236 ic->ic_opmode != IEEE80211_M_HOSTAP)
237 wh->i_fc[1] |= IEEE80211_FC1_PWR_MGT;
238 m->m_len = m->m_pkthdr.len = sizeof(struct ieee80211_frame);
240 IEEE80211_NODE_STAT(ni, tx_data);
242 IEEE80211_DPRINTF(ic, IEEE80211_MSG_DEBUG | IEEE80211_MSG_DUMPPKTS,
243 "[%s] send null data frame on channel %u, pwr mgt %s\n",
244 ni->ni_macaddr, ":",
245 ieee80211_chan2ieee(ic, ic->ic_curchan),
246 wh->i_fc[1] & IEEE80211_FC1_PWR_MGT ? "ena" : "dis");
248 IF_ENQUEUE(&ic->ic_mgtq, m); /* cheat */
249 ifp->if_start(ifp);
250 return 0;
254 * Assign priority to a frame based on any vlan tag assigned
255 * to the station and/or any Diffserv setting in an IP header.
256 * Finally, if an ACM policy is setup (in station mode) it's
257 * applied.
260 ieee80211_classify(struct ieee80211com *ic, struct mbuf *m, struct ieee80211_node *ni)
262 int v_wme_ac = 0, d_wme_ac, ac;
263 #ifdef INET
264 struct ether_header *eh;
265 #endif
267 if ((ni->ni_flags & IEEE80211_NODE_QOS) == 0) {
268 ac = WME_AC_BE;
269 goto done;
272 #ifdef FREEBSD_VLAN
274 * If node has a vlan tag then all traffic
275 * to it must have a matching tag.
277 v_wme_ac = 0;
278 if (ni->ni_vlan != 0) {
279 struct m_tag *mtag = VLAN_OUTPUT_TAG(ic->ic_ifp, m);
280 if (mtag == NULL) {
281 IEEE80211_NODE_STAT(ni, tx_novlantag);
282 return 1;
284 if (EVL_VLANOFTAG(VLAN_TAG_VALUE(mtag)) !=
285 EVL_VLANOFTAG(ni->ni_vlan)) {
286 IEEE80211_NODE_STAT(ni, tx_vlanmismatch);
287 return 1;
289 /* map vlan priority to AC */
290 switch (EVL_PRIOFTAG(ni->ni_vlan)) {
291 case 1:
292 case 2:
293 v_wme_ac = WME_AC_BK;
294 break;
295 case 0:
296 case 3:
297 v_wme_ac = WME_AC_BE;
298 break;
299 case 4:
300 case 5:
301 v_wme_ac = WME_AC_VI;
302 break;
303 case 6:
304 case 7:
305 v_wme_ac = WME_AC_VO;
306 break;
309 #endif /* FREEBSD_VLAN */
311 #ifdef INET
312 eh = mtod(m, struct ether_header *);
313 if (eh->ether_type == htons(ETHERTYPE_IP)) {
314 const struct ip *ip = (struct ip *)
315 (mtod(m, uint8_t *) + sizeof (*eh));
317 * IP frame, map the TOS field.
319 switch (ip->ip_tos) {
320 case 0x08:
321 case 0x20:
322 d_wme_ac = WME_AC_BK; /* background */
323 break;
324 case 0x28:
325 case 0xa0:
326 d_wme_ac = WME_AC_VI; /* video */
327 break;
328 case 0x30: /* voice */
329 case 0xe0:
330 case 0x88: /* XXX UPSD */
331 case 0xb8:
332 d_wme_ac = WME_AC_VO;
333 break;
334 default:
335 d_wme_ac = WME_AC_BE;
336 break;
338 } else {
339 #endif /* INET */
340 d_wme_ac = WME_AC_BE;
341 #ifdef INET
343 #endif
345 * Use highest priority AC.
347 if (v_wme_ac > d_wme_ac)
348 ac = v_wme_ac;
349 else
350 ac = d_wme_ac;
353 * Apply ACM policy.
355 if (ic->ic_opmode == IEEE80211_M_STA) {
356 static const int acmap[4] = {
357 WME_AC_BK, /* WME_AC_BE */
358 WME_AC_BK, /* WME_AC_BK */
359 WME_AC_BE, /* WME_AC_VI */
360 WME_AC_VI, /* WME_AC_VO */
362 while (ac != WME_AC_BK &&
363 ic->ic_wme.wme_wmeBssChanParams.cap_wmeParams[ac].wmep_acm)
364 ac = acmap[ac];
366 done:
367 M_WME_SETAC(m, ac);
368 return 0;
372 * Insure there is sufficient contiguous space to encapsulate the
373 * 802.11 data frame. If room isn't already there, arrange for it.
374 * Drivers and cipher modules assume we have done the necessary work
375 * and fail rudely if they don't find the space they need.
377 static struct mbuf *
378 ieee80211_mbuf_adjust(struct ieee80211com *ic, int hdrsize,
379 struct ieee80211_key *key, struct mbuf *m)
381 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc))
382 int needed_space = hdrsize + ic->ic_headroom;
384 if (key != NULL) {
385 /* XXX belongs in crypto code? */
386 if ((key->wk_flags & IEEE80211_KEY_NOHDR) == 0)
387 needed_space += key->wk_cipher->ic_header;
388 /* XXX frags */
390 * When crypto is being done in the host we must insure
391 * the data are writable for the cipher routines; clone
392 * a writable mbuf chain.
393 * XXX handle SWMIC specially
395 if (key->wk_flags & (IEEE80211_KEY_SWCRYPT|IEEE80211_KEY_SWMIC)) {
396 m = ieee80211_mbuf_clone(m, MB_DONTWAIT);
397 if (m == NULL) {
398 IEEE80211_DPRINTF(ic, IEEE80211_MSG_OUTPUT,
399 "%s: cannot get writable mbuf\n", __func__);
400 ic->ic_stats.is_tx_nobuf++; /* XXX new stat */
401 return NULL;
406 * We know we are called just before stripping an Ethernet
407 * header and prepending an LLC header. This means we know
408 * there will be
409 * sizeof(struct ether_header) - sizeof(struct llc)
410 * bytes recovered to which we need additional space for the
411 * 802.11 header and any crypto header.
413 /* XXX check trailing space and copy instead? */
414 if (M_LEADINGSPACE(m) < needed_space - TO_BE_RECLAIMED) {
415 struct mbuf *n = m_gethdr(MB_DONTWAIT, m->m_type);
416 if (n == NULL) {
417 IEEE80211_DPRINTF(ic, IEEE80211_MSG_OUTPUT,
418 "%s: cannot expand storage\n", __func__);
419 ic->ic_stats.is_tx_nobuf++;
420 m_freem(m);
421 return NULL;
423 KASSERT(needed_space <= MHLEN,
424 ("not enough room, need %u got %zu\n", needed_space, MHLEN));
426 * Setup new mbuf to have leading space to prepend the
427 * 802.11 header and any crypto header bits that are
428 * required (the latter are added when the driver calls
429 * back to ieee80211_crypto_encap to do crypto encapsulation).
431 /* NB: must be first 'cuz it clobbers m_data */
432 m_move_pkthdr(n, m);
433 n->m_len = 0; /* NB: m_gethdr does not set */
434 n->m_data += needed_space;
436 * Pull up Ethernet header to create the expected layout.
437 * We could use m_pullup but that's overkill (i.e. we don't
438 * need the actual data) and it cannot fail so do it inline
439 * for speed.
441 /* NB: struct ether_header is known to be contiguous */
442 n->m_len += sizeof(struct ether_header);
443 m->m_len -= sizeof(struct ether_header);
444 m->m_data += sizeof(struct ether_header);
446 * Replace the head of the chain.
448 n->m_next = m;
449 m = n;
451 return m;
452 #undef TO_BE_RECLAIMED
455 #define KEY_UNDEFINED(k) ((k).wk_cipher == &ieee80211_cipher_none)
457 * Return the transmit key to use in sending a unicast frame.
458 * If a unicast key is set we use that. When no unicast key is set
459 * we fall back to the default transmit key.
461 static __inline struct ieee80211_key *
462 ieee80211_crypto_getucastkey(struct ieee80211com *ic, struct ieee80211_node *ni)
464 if (KEY_UNDEFINED(ni->ni_ucastkey)) {
465 if (ic->ic_def_txkey == IEEE80211_KEYIX_NONE ||
466 KEY_UNDEFINED(ic->ic_nw_keys[ic->ic_def_txkey]))
467 return NULL;
468 return &ic->ic_nw_keys[ic->ic_def_txkey];
469 } else {
470 return &ni->ni_ucastkey;
475 * Return the transmit key to use in sending a multicast frame.
476 * Multicast traffic always uses the group key which is installed as
477 * the default tx key.
479 static __inline struct ieee80211_key *
480 ieee80211_crypto_getmcastkey(struct ieee80211com *ic, struct ieee80211_node *ni)
482 if (ic->ic_def_txkey == IEEE80211_KEYIX_NONE ||
483 KEY_UNDEFINED(ic->ic_nw_keys[ic->ic_def_txkey]))
484 return NULL;
485 return &ic->ic_nw_keys[ic->ic_def_txkey];
489 * Encapsulate an outbound data frame. The mbuf chain is updated.
490 * If an error is encountered NULL is returned. The caller is required
491 * to provide a node reference and pullup the ethernet header in the
492 * first mbuf.
494 struct mbuf *
495 ieee80211_encap(struct ieee80211com *ic, struct mbuf *m,
496 struct ieee80211_node *ni)
498 struct ether_header eh;
499 struct ieee80211_frame *wh;
500 struct ieee80211_key *key;
501 struct llc *llc;
502 int hdrsize, datalen, addqos;
504 KASSERT(m->m_len >= sizeof(eh), ("no ethernet header!"));
505 memcpy(&eh, mtod(m, caddr_t), sizeof(struct ether_header));
508 * Insure space for additional headers. First identify
509 * transmit key to use in calculating any buffer adjustments
510 * required. This is also used below to do privacy
511 * encapsulation work. Then calculate the 802.11 header
512 * size and any padding required by the driver.
514 * Note key may be NULL if we fall back to the default
515 * transmit key and that is not set. In that case the
516 * buffer may not be expanded as needed by the cipher
517 * routines, but they will/should discard it.
519 if (ic->ic_flags & IEEE80211_F_PRIVACY) {
520 if (ic->ic_opmode == IEEE80211_M_STA ||
521 !IEEE80211_IS_MULTICAST(eh.ether_dhost))
522 key = ieee80211_crypto_getucastkey(ic, ni);
523 else
524 key = ieee80211_crypto_getmcastkey(ic, ni);
525 if (key == NULL && eh.ether_type != htons(ETHERTYPE_PAE)) {
526 IEEE80211_DPRINTF(ic, IEEE80211_MSG_CRYPTO,
527 "[%6D] no default transmit key (%s) deftxkey %u\n",
528 eh.ether_dhost, ":", __func__,
529 ic->ic_def_txkey);
530 ic->ic_stats.is_tx_nodefkey++;
532 } else
533 key = NULL;
534 /* XXX 4-address format */
536 * XXX Some ap's don't handle QoS-encapsulated EAPOL
537 * frames so suppress use. This may be an issue if other
538 * ap's require all data frames to be QoS-encapsulated
539 * once negotiated in which case we'll need to make this
540 * configurable.
542 addqos = (ni->ni_flags & IEEE80211_NODE_QOS) &&
543 eh.ether_type != htons(ETHERTYPE_PAE);
544 if (addqos)
545 hdrsize = sizeof(struct ieee80211_qosframe);
546 else
547 hdrsize = sizeof(struct ieee80211_frame);
548 if (ic->ic_flags & IEEE80211_F_DATAPAD)
549 hdrsize = roundup(hdrsize, sizeof(uint32_t));
550 m = ieee80211_mbuf_adjust(ic, hdrsize, key, m);
551 if (m == NULL) {
552 /* NB: ieee80211_mbuf_adjust handles msgs+statistics */
553 goto bad;
556 /* NB: this could be optimized because of ieee80211_mbuf_adjust */
557 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
558 llc = mtod(m, struct llc *);
559 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
560 llc->llc_control = LLC_UI;
561 llc->llc_snap.org_code[0] = 0;
562 llc->llc_snap.org_code[1] = 0;
563 llc->llc_snap.org_code[2] = 0;
564 llc->llc_snap.ether_type = eh.ether_type;
565 datalen = m->m_pkthdr.len; /* NB: w/o 802.11 header */
567 M_PREPEND(m, hdrsize, MB_DONTWAIT);
568 if (m == NULL) {
569 ic->ic_stats.is_tx_nobuf++;
570 goto bad;
572 wh = mtod(m, struct ieee80211_frame *);
573 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_DATA;
574 *(uint16_t *)wh->i_dur = 0;
575 switch (ic->ic_opmode) {
576 case IEEE80211_M_STA:
577 wh->i_fc[1] = IEEE80211_FC1_DIR_TODS;
578 IEEE80211_ADDR_COPY(wh->i_addr1, ni->ni_bssid);
579 IEEE80211_ADDR_COPY(wh->i_addr2, eh.ether_shost);
580 IEEE80211_ADDR_COPY(wh->i_addr3, eh.ether_dhost);
581 break;
582 case IEEE80211_M_IBSS:
583 case IEEE80211_M_AHDEMO:
584 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
585 IEEE80211_ADDR_COPY(wh->i_addr1, eh.ether_dhost);
586 IEEE80211_ADDR_COPY(wh->i_addr2, eh.ether_shost);
588 * NB: always use the bssid from ic_bss as the
589 * neighbor's may be stale after an ibss merge
591 IEEE80211_ADDR_COPY(wh->i_addr3, ic->ic_bss->ni_bssid);
592 break;
593 case IEEE80211_M_HOSTAP:
594 wh->i_fc[1] = IEEE80211_FC1_DIR_FROMDS;
595 IEEE80211_ADDR_COPY(wh->i_addr1, eh.ether_dhost);
596 IEEE80211_ADDR_COPY(wh->i_addr2, ni->ni_bssid);
597 IEEE80211_ADDR_COPY(wh->i_addr3, eh.ether_shost);
598 break;
599 case IEEE80211_M_MONITOR:
600 goto bad;
602 if (m->m_flags & M_MORE_DATA)
603 wh->i_fc[1] |= IEEE80211_FC1_MORE_DATA;
604 if (addqos) {
605 struct ieee80211_qosframe *qwh =
606 (struct ieee80211_qosframe *) wh;
607 int ac, tid;
609 ac = M_WME_GETAC(m);
610 /* map from access class/queue to 11e header priorty value */
611 tid = WME_AC_TO_TID(ac);
612 qwh->i_qos[0] = tid & IEEE80211_QOS_TID;
613 if (ic->ic_wme.wme_wmeChanParams.cap_wmeParams[ac].wmep_noackPolicy)
614 qwh->i_qos[0] |= 1 << IEEE80211_QOS_ACKPOLICY_S;
615 qwh->i_qos[1] = 0;
616 qwh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_QOS;
618 *(uint16_t *)wh->i_seq =
619 htole16(ni->ni_txseqs[tid] << IEEE80211_SEQ_SEQ_SHIFT);
620 ni->ni_txseqs[tid]++;
621 } else {
622 *(uint16_t *)wh->i_seq =
623 htole16(ni->ni_txseqs[0] << IEEE80211_SEQ_SEQ_SHIFT);
624 ni->ni_txseqs[0]++;
626 if (key != NULL) {
628 * IEEE 802.1X: send EAPOL frames always in the clear.
629 * WPA/WPA2: encrypt EAPOL keys when pairwise keys are set.
631 if (eh.ether_type != htons(ETHERTYPE_PAE) ||
632 ((ic->ic_flags & IEEE80211_F_WPA) &&
633 (ic->ic_opmode == IEEE80211_M_STA ?
634 !KEY_UNDEFINED(*key) : !KEY_UNDEFINED(ni->ni_ucastkey)))) {
635 wh->i_fc[1] |= IEEE80211_FC1_WEP;
636 /* XXX do fragmentation */
637 if (!ieee80211_crypto_enmic(ic, key, m, 0)) {
638 IEEE80211_DPRINTF(ic, IEEE80211_MSG_OUTPUT,
639 "[%6D] enmic failed, discard frame\n",
640 eh.ether_dhost, ":");
641 ic->ic_stats.is_crypto_enmicfail++;
642 goto bad;
647 IEEE80211_NODE_STAT(ni, tx_data);
648 if (IEEE80211_IS_MULTICAST(wh->i_addr1))
649 IEEE80211_NODE_STAT(ni, tx_mcast);
650 else
651 IEEE80211_NODE_STAT(ni, tx_ucast);
652 IEEE80211_NODE_STAT_ADD(ni, tx_bytes, datalen);
654 return m;
655 bad:
656 if (m != NULL)
657 m_freem(m);
658 return NULL;
662 * Add a supported rates element id to a frame.
664 uint8_t *
665 ieee80211_add_rates(uint8_t *frm, const struct ieee80211_rateset *rs)
667 int nrates;
669 *frm++ = IEEE80211_ELEMID_RATES;
670 nrates = rs->rs_nrates;
671 if (nrates > IEEE80211_RATE_SIZE)
672 nrates = IEEE80211_RATE_SIZE;
673 *frm++ = nrates;
674 memcpy(frm, rs->rs_rates, nrates);
675 return frm + nrates;
679 * Add an extended supported rates element id to a frame.
681 uint8_t *
682 ieee80211_add_xrates(uint8_t *frm, const struct ieee80211_rateset *rs)
685 * Add an extended supported rates element if operating in 11g mode.
687 if (rs->rs_nrates > IEEE80211_RATE_SIZE) {
688 int nrates = rs->rs_nrates - IEEE80211_RATE_SIZE;
689 *frm++ = IEEE80211_ELEMID_XRATES;
690 *frm++ = nrates;
691 memcpy(frm, rs->rs_rates + IEEE80211_RATE_SIZE, nrates);
692 frm += nrates;
694 return frm;
698 * Add an ssid elemet to a frame.
700 uint8_t *
701 ieee80211_add_ssid(uint8_t *frm, const uint8_t *ssid, u_int len)
703 *frm++ = IEEE80211_ELEMID_SSID;
704 *frm++ = len;
705 memcpy(frm, ssid, len);
706 return frm + len;
710 * Add an erp element to a frame.
712 static uint8_t *
713 ieee80211_add_erp(uint8_t *frm, struct ieee80211com *ic)
715 uint8_t erp;
717 *frm++ = IEEE80211_ELEMID_ERP;
718 *frm++ = 1;
719 erp = 0;
720 if (ic->ic_nonerpsta != 0)
721 erp |= IEEE80211_ERP_NON_ERP_PRESENT;
722 if (ic->ic_flags & IEEE80211_F_USEPROT)
723 erp |= IEEE80211_ERP_USE_PROTECTION;
724 if (ic->ic_flags & IEEE80211_F_USEBARKER)
725 erp |= IEEE80211_ERP_LONG_PREAMBLE;
726 *frm++ = erp;
727 return frm;
730 static uint8_t *
731 ieee80211_setup_wpa_ie(struct ieee80211com *ic, uint8_t *ie)
733 #define WPA_OUI_BYTES 0x00, 0x50, 0xf2
734 #define ADDSHORT(frm, v) do { \
735 frm[0] = (v) & 0xff; \
736 frm[1] = (v) >> 8; \
737 frm += 2; \
738 } while (0)
739 #define ADDSELECTOR(frm, sel) do { \
740 memcpy(frm, sel, 4); \
741 frm += 4; \
742 } while (0)
743 static const uint8_t oui[4] = { WPA_OUI_BYTES, WPA_OUI_TYPE };
744 static const uint8_t cipher_suite[][4] = {
745 { WPA_OUI_BYTES, WPA_CSE_WEP40 }, /* NB: 40-bit */
746 { WPA_OUI_BYTES, WPA_CSE_TKIP },
747 { 0x00, 0x00, 0x00, 0x00 }, /* XXX WRAP */
748 { WPA_OUI_BYTES, WPA_CSE_CCMP },
749 { 0x00, 0x00, 0x00, 0x00 }, /* XXX CKIP */
750 { WPA_OUI_BYTES, WPA_CSE_NULL },
752 static const uint8_t wep104_suite[4] =
753 { WPA_OUI_BYTES, WPA_CSE_WEP104 };
754 static const uint8_t key_mgt_unspec[4] =
755 { WPA_OUI_BYTES, WPA_ASE_8021X_UNSPEC };
756 static const uint8_t key_mgt_psk[4] =
757 { WPA_OUI_BYTES, WPA_ASE_8021X_PSK };
758 const struct ieee80211_rsnparms *rsn = &ic->ic_bss->ni_rsn;
759 uint8_t *frm = ie;
760 uint8_t *selcnt;
762 *frm++ = IEEE80211_ELEMID_VENDOR;
763 *frm++ = 0; /* length filled in below */
764 memcpy(frm, oui, sizeof(oui)); /* WPA OUI */
765 frm += sizeof(oui);
766 ADDSHORT(frm, WPA_VERSION);
768 /* XXX filter out CKIP */
770 /* multicast cipher */
771 if (rsn->rsn_mcastcipher == IEEE80211_CIPHER_WEP &&
772 rsn->rsn_mcastkeylen >= 13)
773 ADDSELECTOR(frm, wep104_suite);
774 else
775 ADDSELECTOR(frm, cipher_suite[rsn->rsn_mcastcipher]);
777 /* unicast cipher list */
778 selcnt = frm;
779 ADDSHORT(frm, 0); /* selector count */
780 if (rsn->rsn_ucastcipherset & (1<<IEEE80211_CIPHER_AES_CCM)) {
781 selcnt[0]++;
782 ADDSELECTOR(frm, cipher_suite[IEEE80211_CIPHER_AES_CCM]);
784 if (rsn->rsn_ucastcipherset & (1<<IEEE80211_CIPHER_TKIP)) {
785 selcnt[0]++;
786 ADDSELECTOR(frm, cipher_suite[IEEE80211_CIPHER_TKIP]);
789 /* authenticator selector list */
790 selcnt = frm;
791 ADDSHORT(frm, 0); /* selector count */
792 if (rsn->rsn_keymgmtset & WPA_ASE_8021X_UNSPEC) {
793 selcnt[0]++;
794 ADDSELECTOR(frm, key_mgt_unspec);
796 if (rsn->rsn_keymgmtset & WPA_ASE_8021X_PSK) {
797 selcnt[0]++;
798 ADDSELECTOR(frm, key_mgt_psk);
801 /* optional capabilities */
802 if (rsn->rsn_caps != 0 && rsn->rsn_caps != RSN_CAP_PREAUTH)
803 ADDSHORT(frm, rsn->rsn_caps);
805 /* calculate element length */
806 ie[1] = frm - ie - 2;
807 KASSERT(ie[1]+2 <= sizeof(struct ieee80211_ie_wpa),
808 ("WPA IE too big, %u > %zu",
809 ie[1]+2, sizeof(struct ieee80211_ie_wpa)));
810 return frm;
811 #undef ADDSHORT
812 #undef ADDSELECTOR
813 #undef WPA_OUI_BYTES
816 static uint8_t *
817 ieee80211_setup_rsn_ie(struct ieee80211com *ic, uint8_t *ie)
819 #define RSN_OUI_BYTES 0x00, 0x0f, 0xac
820 #define ADDSHORT(frm, v) do { \
821 frm[0] = (v) & 0xff; \
822 frm[1] = (v) >> 8; \
823 frm += 2; \
824 } while (0)
825 #define ADDSELECTOR(frm, sel) do { \
826 memcpy(frm, sel, 4); \
827 frm += 4; \
828 } while (0)
829 static const uint8_t cipher_suite[][4] = {
830 { RSN_OUI_BYTES, RSN_CSE_WEP40 }, /* NB: 40-bit */
831 { RSN_OUI_BYTES, RSN_CSE_TKIP },
832 { RSN_OUI_BYTES, RSN_CSE_WRAP },
833 { RSN_OUI_BYTES, RSN_CSE_CCMP },
834 { 0x00, 0x00, 0x00, 0x00 }, /* XXX CKIP */
835 { RSN_OUI_BYTES, RSN_CSE_NULL },
837 static const uint8_t wep104_suite[4] =
838 { RSN_OUI_BYTES, RSN_CSE_WEP104 };
839 static const uint8_t key_mgt_unspec[4] =
840 { RSN_OUI_BYTES, RSN_ASE_8021X_UNSPEC };
841 static const uint8_t key_mgt_psk[4] =
842 { RSN_OUI_BYTES, RSN_ASE_8021X_PSK };
843 const struct ieee80211_rsnparms *rsn = &ic->ic_bss->ni_rsn;
844 uint8_t *frm = ie;
845 uint8_t *selcnt;
847 *frm++ = IEEE80211_ELEMID_RSN;
848 *frm++ = 0; /* length filled in below */
849 ADDSHORT(frm, RSN_VERSION);
851 /* XXX filter out CKIP */
853 /* multicast cipher */
854 if (rsn->rsn_mcastcipher == IEEE80211_CIPHER_WEP &&
855 rsn->rsn_mcastkeylen >= 13)
856 ADDSELECTOR(frm, wep104_suite);
857 else
858 ADDSELECTOR(frm, cipher_suite[rsn->rsn_mcastcipher]);
860 /* unicast cipher list */
861 selcnt = frm;
862 ADDSHORT(frm, 0); /* selector count */
863 if (rsn->rsn_ucastcipherset & (1<<IEEE80211_CIPHER_AES_CCM)) {
864 selcnt[0]++;
865 ADDSELECTOR(frm, cipher_suite[IEEE80211_CIPHER_AES_CCM]);
867 if (rsn->rsn_ucastcipherset & (1<<IEEE80211_CIPHER_TKIP)) {
868 selcnt[0]++;
869 ADDSELECTOR(frm, cipher_suite[IEEE80211_CIPHER_TKIP]);
872 /* authenticator selector list */
873 selcnt = frm;
874 ADDSHORT(frm, 0); /* selector count */
875 if (rsn->rsn_keymgmtset & WPA_ASE_8021X_UNSPEC) {
876 selcnt[0]++;
877 ADDSELECTOR(frm, key_mgt_unspec);
879 if (rsn->rsn_keymgmtset & WPA_ASE_8021X_PSK) {
880 selcnt[0]++;
881 ADDSELECTOR(frm, key_mgt_psk);
884 /* optional capabilities */
885 ADDSHORT(frm, rsn->rsn_caps);
886 /* XXX PMKID */
888 /* calculate element length */
889 ie[1] = frm - ie - 2;
890 KASSERT(ie[1]+2 <= sizeof(struct ieee80211_ie_wpa),
891 ("RSN IE too big, %u > %zu",
892 ie[1]+2, sizeof(struct ieee80211_ie_wpa)));
893 return frm;
894 #undef ADDSELECTOR
895 #undef ADDSHORT
896 #undef RSN_OUI_BYTES
900 * Add a WPA/RSN element to a frame.
902 static uint8_t *
903 ieee80211_add_wpa(uint8_t *frm, struct ieee80211com *ic)
906 KASSERT(ic->ic_flags & IEEE80211_F_WPA, ("no WPA/RSN!"));
907 if (ic->ic_flags & IEEE80211_F_WPA2)
908 frm = ieee80211_setup_rsn_ie(ic, frm);
909 if (ic->ic_flags & IEEE80211_F_WPA1)
910 frm = ieee80211_setup_wpa_ie(ic, frm);
911 return frm;
914 #define WME_OUI_BYTES 0x00, 0x50, 0xf2
916 * Add a WME information element to a frame.
918 static uint8_t *
919 ieee80211_add_wme_info(uint8_t *frm, struct ieee80211_wme_state *wme)
921 static const struct ieee80211_wme_info info = {
922 .wme_id = IEEE80211_ELEMID_VENDOR,
923 .wme_len = sizeof(struct ieee80211_wme_info) - 2,
924 .wme_oui = { WME_OUI_BYTES },
925 .wme_type = WME_OUI_TYPE,
926 .wme_subtype = WME_INFO_OUI_SUBTYPE,
927 .wme_version = WME_VERSION,
928 .wme_info = 0,
930 memcpy(frm, &info, sizeof(info));
931 return frm + sizeof(info);
935 * Add a WME parameters element to a frame.
937 static uint8_t *
938 ieee80211_add_wme_param(uint8_t *frm, struct ieee80211_wme_state *wme)
940 #define SM(_v, _f) (((_v) << _f##_S) & _f)
941 #define ADDSHORT(frm, v) do { \
942 frm[0] = (v) & 0xff; \
943 frm[1] = (v) >> 8; \
944 frm += 2; \
945 } while (0)
946 /* NB: this works 'cuz a param has an info at the front */
947 static const struct ieee80211_wme_info param = {
948 .wme_id = IEEE80211_ELEMID_VENDOR,
949 .wme_len = sizeof(struct ieee80211_wme_param) - 2,
950 .wme_oui = { WME_OUI_BYTES },
951 .wme_type = WME_OUI_TYPE,
952 .wme_subtype = WME_PARAM_OUI_SUBTYPE,
953 .wme_version = WME_VERSION,
955 int i;
957 memcpy(frm, &param, sizeof(param));
958 frm += __offsetof(struct ieee80211_wme_info, wme_info);
959 *frm++ = wme->wme_bssChanParams.cap_info; /* AC info */
960 *frm++ = 0; /* reserved field */
961 for (i = 0; i < WME_NUM_AC; i++) {
962 const struct wmeParams *ac =
963 &wme->wme_bssChanParams.cap_wmeParams[i];
964 *frm++ = SM(i, WME_PARAM_ACI)
965 | SM(ac->wmep_acm, WME_PARAM_ACM)
966 | SM(ac->wmep_aifsn, WME_PARAM_AIFSN)
968 *frm++ = SM(ac->wmep_logcwmax, WME_PARAM_LOGCWMAX)
969 | SM(ac->wmep_logcwmin, WME_PARAM_LOGCWMIN)
971 ADDSHORT(frm, ac->wmep_txopLimit);
973 return frm;
974 #undef SM
975 #undef ADDSHORT
977 #undef WME_OUI_BYTES
980 * Send a probe request frame with the specified ssid
981 * and any optional information element data.
984 ieee80211_send_probereq(struct ieee80211_node *ni,
985 const uint8_t sa[IEEE80211_ADDR_LEN],
986 const uint8_t da[IEEE80211_ADDR_LEN],
987 const uint8_t bssid[IEEE80211_ADDR_LEN],
988 const uint8_t *ssid, size_t ssidlen,
989 const void *optie, size_t optielen)
991 struct ieee80211com *ic = ni->ni_ic;
992 struct ifnet *ifp = ic->ic_ifp;
993 enum ieee80211_phymode mode;
994 struct ieee80211_frame *wh;
995 struct ieee80211_rateset rs;
996 struct mbuf *m;
997 uint8_t *frm;
1000 * Hold a reference on the node so it doesn't go away until after
1001 * the xmit is complete all the way in the driver. On error we
1002 * will remove our reference.
1004 IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
1005 "ieee80211_ref_node (%s:%u) %p<%6D> refcnt %d\n",
1006 __func__, __LINE__,
1007 ni, ni->ni_macaddr, ":",
1008 ieee80211_node_refcnt(ni) + 1);
1009 ieee80211_ref_node(ni);
1012 * prreq frame format
1013 * [tlv] ssid
1014 * [tlv] supported rates
1015 * [tlv] extended supported rates
1016 * [tlv] user-specified ie's
1018 m = ieee80211_getmgtframe(&frm,
1019 ic->ic_headroom + sizeof(struct ieee80211_frame),
1020 2 + IEEE80211_NWID_LEN
1021 + 2 + IEEE80211_RATE_SIZE
1022 + 2 + (IEEE80211_RATE_MAXSIZE - IEEE80211_RATE_SIZE)
1023 + (optie != NULL ? optielen : 0)
1025 if (m == NULL) {
1026 ic->ic_stats.is_tx_nobuf++;
1027 ieee80211_free_node(ni);
1028 return ENOMEM;
1031 frm = ieee80211_add_ssid(frm, ssid, ssidlen);
1034 * XXX
1035 * Clear basic rates.
1037 * Though according to 802.11 standard: MSB of each supported rate
1038 * octet in (Extended) Supported Rates ie of probe requests should
1039 * be ignored, some HostAP implementations still check it ...
1041 mode = ieee80211_chan2mode(ic, ic->ic_curchan);
1042 rs = ic->ic_sup_rates[mode];
1043 ieee80211_set_basicrates(&rs, IEEE80211_MODE_AUTO, 0);
1044 frm = ieee80211_add_rates(frm, &rs);
1045 frm = ieee80211_add_xrates(frm, &rs);
1047 if (optie != NULL) {
1048 memcpy(frm, optie, optielen);
1049 frm += optielen;
1051 m->m_pkthdr.len = m->m_len = frm - mtod(m, uint8_t *);
1053 M_PREPEND(m, sizeof(struct ieee80211_frame), MB_DONTWAIT);
1054 if (m == NULL)
1055 return ENOMEM;
1056 KASSERT(m->m_pkthdr.rcvif == NULL, ("rcvif not null"));
1057 m->m_pkthdr.rcvif = (void *)ni;
1059 wh = mtod(m, struct ieee80211_frame *);
1060 ieee80211_send_setup(ic, ni, wh,
1061 IEEE80211_FC0_TYPE_MGT | IEEE80211_FC0_SUBTYPE_PROBE_REQ,
1062 sa, da, bssid);
1063 /* XXX power management? */
1065 IEEE80211_NODE_STAT(ni, tx_probereq);
1066 IEEE80211_NODE_STAT(ni, tx_mgmt);
1068 IEEE80211_DPRINTF(ic, IEEE80211_MSG_DEBUG | IEEE80211_MSG_DUMPPKTS,
1069 "[%6D] send probe req on channel %u\n",
1070 wh->i_addr1, ":",
1071 ieee80211_chan2ieee(ic, ic->ic_curchan));
1073 IF_ENQUEUE(&ic->ic_mgtq, m);
1074 ifp->if_start(ifp);
1075 return 0;
1079 * Calculate capability information for mgt frames.
1081 static uint16_t
1082 getcapinfo(struct ieee80211com *ic, struct ieee80211_channel *chan)
1084 uint16_t capinfo;
1086 KASSERT(ic->ic_opmode != IEEE80211_M_STA, ("station mode"));
1088 if (ic->ic_opmode == IEEE80211_M_HOSTAP)
1089 capinfo = IEEE80211_CAPINFO_ESS;
1090 else if (ic->ic_opmode == IEEE80211_M_IBSS)
1091 capinfo = IEEE80211_CAPINFO_IBSS;
1092 else
1093 capinfo = 0;
1094 if (ic->ic_flags & IEEE80211_F_PRIVACY)
1095 capinfo |= IEEE80211_CAPINFO_PRIVACY;
1096 if (IEEE80211_IS_CHAN_2GHZ(chan)) {
1097 if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
1098 capinfo |= IEEE80211_CAPINFO_SHORT_PREAMBLE;
1099 if (ic->ic_caps_ext & IEEE80211_CEXT_PBCC)
1100 capinfo |= IEEE80211_CAPINFO_PBCC;
1102 if (ic->ic_flags & IEEE80211_F_SHSLOT)
1103 capinfo |= IEEE80211_CAPINFO_SHORT_SLOTTIME;
1104 return capinfo;
1107 static struct mbuf *
1108 _ieee80211_probe_resp_alloc(struct ieee80211com *ic, struct ieee80211_node *ni)
1110 const struct ieee80211_rateset *rs;
1111 uint16_t capinfo;
1112 struct mbuf *m;
1113 uint8_t *frm;
1114 int pktlen;
1117 * probe response frame format
1118 * [8] time stamp
1119 * [2] beacon interval
1120 * [2] cabability information
1121 * [tlv] ssid
1122 * [tlv] supported rates
1123 * [tlv] parameter set (FH/DS)
1124 * [4] parameter set (IBSS)
1125 * [tlv] extended rate phy (ERP)
1126 * [tlv] extended supported rates
1127 * [tlv] WPA
1128 * [tlv] WME (optional)
1130 KKASSERT(ic->ic_curmode != IEEE80211_MODE_AUTO);
1131 rs = &ic->ic_sup_rates[ic->ic_curmode];
1132 pktlen = 8 /* time stamp */
1133 + sizeof(uint16_t) /* beacon interval */
1134 + sizeof(uint16_t) /* capabilities */
1135 + 2 + ni->ni_esslen /* ssid */
1136 + 2 + IEEE80211_RATE_SIZE /* supported rates */
1137 + 2 + 5 /* max(5,1) */ /* DS/FH parameters */
1138 + 2 + 2 /* IBSS parameters */
1139 + 2 + 1 /* ERP */
1140 + 2 + (IEEE80211_RATE_MAXSIZE - IEEE80211_RATE_SIZE)
1141 /* XXX !WPA1+WPA2 fits w/o a cluster */
1142 + (ic->ic_flags & IEEE80211_F_WPA ? /* WPA 1+2 */
1143 2*sizeof(struct ieee80211_ie_wpa) : 0)
1144 + sizeof(struct ieee80211_wme_param); /* WME */
1146 m = ieee80211_getmgtframe(&frm,
1147 ic->ic_headroom + sizeof(struct ieee80211_frame), pktlen);
1148 if (m == NULL) {
1149 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
1150 "%s: cannot get buf; size %u\n", __func__, pktlen);
1151 ic->ic_stats.is_tx_nobuf++;
1152 return NULL;
1155 memset(frm, 0, 8); /* timestamp should be filled later */
1156 frm += 8;
1157 *(uint16_t *)frm = htole16(ni->ni_intval);
1158 frm += 2;
1159 capinfo = getcapinfo(ic, ni->ni_chan);
1160 *(uint16_t *)frm = htole16(capinfo);
1161 frm += 2;
1163 frm = ieee80211_add_ssid(frm, ni->ni_essid, ni->ni_esslen);
1164 frm = ieee80211_add_rates(frm, rs);
1166 if (ic->ic_phytype == IEEE80211_T_FH) {
1167 *frm++ = IEEE80211_ELEMID_FHPARMS;
1168 *frm++ = 5;
1169 *frm++ = ni->ni_fhdwell & 0x00ff;
1170 *frm++ = (ni->ni_fhdwell >> 8) & 0x00ff;
1171 *frm++ = IEEE80211_FH_CHANSET(
1172 ieee80211_chan2ieee(ic, ni->ni_chan));
1173 *frm++ = IEEE80211_FH_CHANPAT(
1174 ieee80211_chan2ieee(ic, ni->ni_chan));
1175 *frm++ = ni->ni_fhindex;
1176 } else {
1177 *frm++ = IEEE80211_ELEMID_DSPARMS;
1178 *frm++ = 1;
1179 *frm++ = ieee80211_chan2ieee(ic, ni->ni_chan);
1182 if (ic->ic_opmode == IEEE80211_M_IBSS) {
1183 *frm++ = IEEE80211_ELEMID_IBSSPARMS;
1184 *frm++ = 2;
1185 *frm++ = 0; *frm++ = 0; /* TODO: ATIM window */
1187 if (ic->ic_flags & IEEE80211_F_WPA)
1188 frm = ieee80211_add_wpa(frm, ic);
1189 if (ic->ic_curmode == IEEE80211_MODE_11G)
1190 frm = ieee80211_add_erp(frm, ic);
1191 frm = ieee80211_add_xrates(frm, rs);
1192 if (ic->ic_flags & IEEE80211_F_WME)
1193 frm = ieee80211_add_wme_param(frm, &ic->ic_wme);
1194 m->m_pkthdr.len = m->m_len = frm - mtod(m, uint8_t *);
1195 KKASSERT(m->m_len <= pktlen);
1197 return m;
1201 * Send a management frame. The node is for the destination (or ic_bss
1202 * when in station mode). Nodes other than ic_bss have their reference
1203 * count bumped to reflect our use for an indeterminant time.
1206 ieee80211_send_mgmt(struct ieee80211com *ic, struct ieee80211_node *ni,
1207 int type, int arg)
1209 #define senderr(_x, _v) do { ic->ic_stats._v++; ret = _x; goto bad; } while (0)
1210 struct mbuf *m;
1211 uint8_t *frm;
1212 uint16_t capinfo;
1213 int has_challenge, is_shared_key, ret, timer, status, encrypt;
1214 const struct ieee80211_rateset *rs;
1216 KASSERT(ni != NULL, ("null node"));
1219 * Hold a reference on the node so it doesn't go away until after
1220 * the xmit is complete all the way in the driver. On error we
1221 * will remove our reference.
1223 IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
1224 "ieee80211_ref_node (%s:%u) %p<%6D> refcnt %d\n",
1225 __func__, __LINE__,
1226 ni, ni->ni_macaddr, ":",
1227 ieee80211_node_refcnt(ni) + 1);
1228 ieee80211_ref_node(ni);
1230 encrypt = 0;
1231 timer = 0;
1232 switch (type) {
1233 case IEEE80211_FC0_SUBTYPE_PROBE_RESP:
1234 m = _ieee80211_probe_resp_alloc(ic, ic->ic_bss);
1235 if (m == NULL) {
1236 /* NB: Statistics have been updated. */
1237 ret = ENOMEM;
1238 goto bad;
1240 break;
1242 case IEEE80211_FC0_SUBTYPE_AUTH:
1243 status = arg >> 16;
1244 arg &= 0xffff;
1245 has_challenge = ((arg == IEEE80211_AUTH_SHARED_CHALLENGE ||
1246 arg == IEEE80211_AUTH_SHARED_RESPONSE) &&
1247 ni->ni_challenge != NULL);
1250 * Deduce whether we're doing open authentication or
1251 * shared key authentication. We do the latter if
1252 * we're in the middle of a shared key authentication
1253 * handshake or if we're initiating an authentication
1254 * request and configured to use shared key.
1256 is_shared_key = has_challenge ||
1257 arg >= IEEE80211_AUTH_SHARED_RESPONSE ||
1258 (arg == IEEE80211_AUTH_SHARED_REQUEST &&
1259 ic->ic_bss->ni_authmode == IEEE80211_AUTH_SHARED);
1261 m = ieee80211_getmgtframe(&frm,
1262 ic->ic_headroom + sizeof(struct ieee80211_frame),
1263 3 * sizeof(uint16_t)
1264 + (has_challenge && status == IEEE80211_STATUS_SUCCESS ?
1265 sizeof(uint16_t)+IEEE80211_CHALLENGE_LEN : 0)
1267 if (m == NULL)
1268 senderr(ENOMEM, is_tx_nobuf);
1270 ((uint16_t *)frm)[0] =
1271 (is_shared_key) ? htole16(IEEE80211_AUTH_ALG_SHARED)
1272 : htole16(IEEE80211_AUTH_ALG_OPEN);
1273 ((uint16_t *)frm)[1] = htole16(arg); /* sequence number */
1274 ((uint16_t *)frm)[2] = htole16(status);/* status */
1276 if (has_challenge && status == IEEE80211_STATUS_SUCCESS) {
1277 ((uint16_t *)frm)[3] =
1278 htole16((IEEE80211_CHALLENGE_LEN << 8) |
1279 IEEE80211_ELEMID_CHALLENGE);
1280 memcpy(&((uint16_t *)frm)[4], ni->ni_challenge,
1281 IEEE80211_CHALLENGE_LEN);
1282 m->m_pkthdr.len = m->m_len =
1283 4 * sizeof(uint16_t) + IEEE80211_CHALLENGE_LEN;
1284 if (arg == IEEE80211_AUTH_SHARED_RESPONSE) {
1285 IEEE80211_DPRINTF(ic, IEEE80211_MSG_AUTH,
1286 "[%6D] request encrypt frame (%s)\n",
1287 ni->ni_macaddr, ":", __func__);
1288 encrypt = 1; /* WEP-encrypt, please */
1290 } else
1291 m->m_pkthdr.len = m->m_len = 3 * sizeof(uint16_t);
1293 /* XXX not right for shared key */
1294 if (status == IEEE80211_STATUS_SUCCESS)
1295 IEEE80211_NODE_STAT(ni, tx_auth);
1296 else
1297 IEEE80211_NODE_STAT(ni, tx_auth_fail);
1299 if (ic->ic_opmode == IEEE80211_M_STA)
1300 timer = IEEE80211_TRANS_WAIT;
1301 break;
1303 case IEEE80211_FC0_SUBTYPE_DEAUTH:
1304 IEEE80211_DPRINTF(ic, IEEE80211_MSG_AUTH,
1305 "[%6D] send station deauthenticate (reason %d)\n",
1306 ni->ni_macaddr, ":", arg);
1307 m = ieee80211_getmgtframe(&frm,
1308 ic->ic_headroom + sizeof(struct ieee80211_frame),
1309 sizeof(uint16_t));
1310 if (m == NULL)
1311 senderr(ENOMEM, is_tx_nobuf);
1312 *(uint16_t *)frm = htole16(arg); /* reason */
1313 m->m_pkthdr.len = m->m_len = sizeof(uint16_t);
1315 IEEE80211_NODE_STAT(ni, tx_deauth);
1316 IEEE80211_NODE_STAT_SET(ni, tx_deauth_code, arg);
1318 ieee80211_node_unauthorize(ni); /* port closed */
1319 break;
1321 case IEEE80211_FC0_SUBTYPE_ASSOC_REQ:
1322 case IEEE80211_FC0_SUBTYPE_REASSOC_REQ:
1324 * asreq frame format
1325 * [2] capability information
1326 * [2] listen interval
1327 * [6*] current AP address (reassoc only)
1328 * [tlv] ssid
1329 * [tlv] supported rates
1330 * [tlv] extended supported rates
1331 * [tlv] WME
1332 * [tlv] user-specified ie's
1334 m = ieee80211_getmgtframe(&frm,
1335 ic->ic_headroom + sizeof(struct ieee80211_frame),
1336 sizeof(uint16_t)
1337 + sizeof(uint16_t)
1338 + IEEE80211_ADDR_LEN
1339 + 2 + IEEE80211_NWID_LEN
1340 + 2 + IEEE80211_RATE_SIZE
1341 + 2 + (IEEE80211_RATE_MAXSIZE - IEEE80211_RATE_SIZE)
1342 + sizeof(struct ieee80211_wme_info)
1343 + (ic->ic_opt_ie != NULL ? ic->ic_opt_ie_len : 0)
1345 if (m == NULL)
1346 senderr(ENOMEM, is_tx_nobuf);
1348 KASSERT(ic->ic_opmode == IEEE80211_M_STA,
1349 ("wrong mode %u", ic->ic_opmode));
1350 capinfo = IEEE80211_CAPINFO_ESS;
1351 if (ic->ic_flags & IEEE80211_F_PRIVACY)
1352 capinfo |= IEEE80211_CAPINFO_PRIVACY;
1354 * NB: Some 11a AP's reject the request when
1355 * short premable or PBCC modulation is set.
1357 if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan)) {
1358 if (ic->ic_caps & IEEE80211_C_SHPREAMBLE)
1359 capinfo |= IEEE80211_CAPINFO_SHORT_PREAMBLE;
1360 if (ic->ic_caps_ext & IEEE80211_CEXT_PBCC)
1361 capinfo |= IEEE80211_CAPINFO_PBCC;
1363 if (IEEE80211_IS_CHAN_2GHZ(ni->ni_chan) &&
1364 (ic->ic_caps & IEEE80211_C_SHSLOT))
1365 capinfo |= IEEE80211_CAPINFO_SHORT_SLOTTIME;
1366 *(uint16_t *)frm = htole16(capinfo);
1367 frm += 2;
1369 KKASSERT(ic->ic_bss->ni_intval != 0);
1370 *(uint16_t *)frm = htole16(howmany(ic->ic_lintval,
1371 ic->ic_bss->ni_intval));
1372 frm += 2;
1374 if (type == IEEE80211_FC0_SUBTYPE_REASSOC_REQ) {
1375 IEEE80211_ADDR_COPY(frm, ic->ic_bss->ni_bssid);
1376 frm += IEEE80211_ADDR_LEN;
1379 frm = ieee80211_add_ssid(frm, ni->ni_essid, ni->ni_esslen);
1381 rs = &ic->ic_sup_rates[ieee80211_chan2mode(ic, ni->ni_chan)];
1382 frm = ieee80211_add_rates(frm, rs);
1383 frm = ieee80211_add_xrates(frm, rs);
1385 if ((ic->ic_flags & IEEE80211_F_WME) && ni->ni_wme_ie != NULL)
1386 frm = ieee80211_add_wme_info(frm, &ic->ic_wme);
1387 if (ic->ic_opt_ie != NULL) {
1388 memcpy(frm, ic->ic_opt_ie, ic->ic_opt_ie_len);
1389 frm += ic->ic_opt_ie_len;
1391 m->m_pkthdr.len = m->m_len = frm - mtod(m, uint8_t *);
1393 timer = IEEE80211_TRANS_WAIT;
1394 break;
1396 case IEEE80211_FC0_SUBTYPE_ASSOC_RESP:
1397 case IEEE80211_FC0_SUBTYPE_REASSOC_RESP:
1399 * asreq frame format
1400 * [2] capability information
1401 * [2] status
1402 * [2] association ID
1403 * [tlv] supported rates
1404 * [tlv] extended supported rates
1405 * [tlv] WME (if enabled and STA enabled)
1407 m = ieee80211_getmgtframe(&frm,
1408 ic->ic_headroom + sizeof(struct ieee80211_frame),
1409 sizeof(uint16_t)
1410 + sizeof(uint16_t)
1411 + sizeof(uint16_t)
1412 + 2 + IEEE80211_RATE_SIZE
1413 + 2 + (IEEE80211_RATE_MAXSIZE - IEEE80211_RATE_SIZE)
1414 + sizeof(struct ieee80211_wme_param)
1416 if (m == NULL)
1417 senderr(ENOMEM, is_tx_nobuf);
1419 capinfo = getcapinfo(ic, ic->ic_curchan);
1420 *(uint16_t *)frm = htole16(capinfo);
1421 frm += 2;
1423 *(uint16_t *)frm = htole16(arg); /* status */
1424 frm += 2;
1426 if (arg == IEEE80211_STATUS_SUCCESS) {
1427 *(uint16_t *)frm = htole16(ni->ni_associd);
1428 IEEE80211_NODE_STAT(ni, tx_assoc);
1429 } else
1430 IEEE80211_NODE_STAT(ni, tx_assoc_fail);
1431 frm += 2;
1433 KKASSERT(ic->ic_curmode != IEEE80211_MODE_AUTO);
1434 rs = &ic->ic_sup_rates[ic->ic_curmode];
1435 frm = ieee80211_add_rates(frm, rs);
1436 frm = ieee80211_add_xrates(frm, rs);
1437 if ((ic->ic_flags & IEEE80211_F_WME) && ni->ni_wme_ie != NULL)
1438 frm = ieee80211_add_wme_param(frm, &ic->ic_wme);
1439 m->m_pkthdr.len = m->m_len = frm - mtod(m, uint8_t *);
1440 break;
1442 case IEEE80211_FC0_SUBTYPE_DISASSOC:
1443 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ASSOC,
1444 "[%6D] send station disassociate (reason %d)\n",
1445 ni->ni_macaddr, ":", arg);
1446 m = ieee80211_getmgtframe(&frm,
1447 ic->ic_headroom + sizeof(struct ieee80211_frame),
1448 sizeof(uint16_t));
1449 if (m == NULL)
1450 senderr(ENOMEM, is_tx_nobuf);
1451 *(uint16_t *)frm = htole16(arg); /* reason */
1452 m->m_pkthdr.len = m->m_len = sizeof(uint16_t);
1454 IEEE80211_NODE_STAT(ni, tx_disassoc);
1455 IEEE80211_NODE_STAT_SET(ni, tx_disassoc_code, arg);
1456 break;
1458 default:
1459 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
1460 "[%6D] invalid mgmt frame type %u\n",
1461 ni->ni_macaddr, ":", type);
1462 senderr(EINVAL, is_tx_unknownmgt);
1463 /* NOTREACHED */
1465 ret = ieee80211_mgmt_output(ic, ni, m, type, timer, encrypt);
1466 if (ret != 0) {
1467 bad:
1468 ieee80211_free_node(ni);
1470 return ret;
1471 #undef senderr
1475 * Allocate a probe response frame and fillin the appropriate bits.
1477 struct mbuf *
1478 ieee80211_probe_resp_alloc(struct ieee80211com *ic, struct ieee80211_node *ni)
1480 struct ieee80211_frame *wh;
1481 struct mbuf *m;
1483 m = _ieee80211_probe_resp_alloc(ic, ni);
1484 if (m == NULL)
1485 return NULL;
1487 M_PREPEND(m, sizeof(struct ieee80211_frame), MB_DONTWAIT);
1488 KASSERT(m != NULL, ("no space for 802.11 header?"));
1490 wh = mtod(m, struct ieee80211_frame *);
1491 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_MGT |
1492 IEEE80211_FC0_SUBTYPE_PROBE_RESP;
1493 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
1494 *(uint16_t *)wh->i_dur = 0;
1495 bzero(wh->i_addr1, sizeof(wh->i_addr1));
1496 IEEE80211_ADDR_COPY(wh->i_addr2, ic->ic_myaddr);
1497 IEEE80211_ADDR_COPY(wh->i_addr3, ni->ni_bssid);
1498 *(uint16_t *)wh->i_seq = 0;
1500 return m;
1504 * Allocate a beacon frame and fillin the appropriate bits.
1506 struct mbuf *
1507 ieee80211_beacon_alloc(struct ieee80211com *ic, struct ieee80211_node *ni,
1508 struct ieee80211_beacon_offsets *bo)
1510 struct ifnet *ifp = ic->ic_ifp;
1511 struct ieee80211_frame *wh;
1512 struct mbuf *m;
1513 int pktlen;
1514 uint8_t *frm, *efrm;
1515 uint16_t capinfo;
1516 const struct ieee80211_rateset *rs;
1519 * beacon frame format
1520 * [8] time stamp
1521 * [2] beacon interval
1522 * [2] cabability information
1523 * [tlv] ssid
1524 * [tlv] supported rates
1525 * [3] parameter set (DS)
1526 * [tlv] parameter set (IBSS/TIM)
1527 * [tlv] extended rate phy (ERP)
1528 * [tlv] extended supported rates
1529 * [tlv] WME parameters
1530 * [tlv] WPA/RSN parameters
1531 * XXX Vendor-specific OIDs (e.g. Atheros)
1532 * NB: we allocate the max space required for the TIM bitmap.
1534 KKASSERT(ic->ic_curmode != IEEE80211_MODE_AUTO);
1535 rs = &ic->ic_sup_rates[ic->ic_curmode];
1536 pktlen = 8 /* time stamp */
1537 + sizeof(uint16_t) /* beacon interval */
1538 + sizeof(uint16_t) /* capabilities */
1539 + 2 + ni->ni_esslen /* ssid */
1540 + 2 + IEEE80211_RATE_SIZE /* supported rates */
1541 + 2 + 1 /* DS parameters */
1542 + 2 + 4 + ic->ic_tim_len /* DTIM/IBSSPARMS */
1543 + 2 + 1 /* ERP */
1544 + 2 + (IEEE80211_RATE_MAXSIZE - IEEE80211_RATE_SIZE)
1545 + (ic->ic_caps & IEEE80211_C_WME ? /* WME */
1546 sizeof(struct ieee80211_wme_param) : 0)
1547 + (ic->ic_caps & IEEE80211_C_WPA ? /* WPA 1+2 */
1548 2*sizeof(struct ieee80211_ie_wpa) : 0)
1550 m = ieee80211_getmgtframe(&frm,
1551 ic->ic_headroom + sizeof(struct ieee80211_frame), pktlen);
1552 if (m == NULL) {
1553 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
1554 "%s: cannot get buf; size %u\n", __func__, pktlen);
1555 ic->ic_stats.is_tx_nobuf++;
1556 return NULL;
1559 memset(frm, 0, 8); /* XXX timestamp is set by hardware/driver */
1560 frm += 8;
1561 *(uint16_t *)frm = htole16(ni->ni_intval);
1562 frm += 2;
1563 capinfo = getcapinfo(ic, ni->ni_chan);
1564 bo->bo_caps = (uint16_t *)frm;
1565 *(uint16_t *)frm = htole16(capinfo);
1566 frm += 2;
1567 *frm++ = IEEE80211_ELEMID_SSID;
1568 if ((ic->ic_flags & IEEE80211_F_HIDESSID) == 0) {
1569 *frm++ = ni->ni_esslen;
1570 memcpy(frm, ni->ni_essid, ni->ni_esslen);
1571 frm += ni->ni_esslen;
1572 } else
1573 *frm++ = 0;
1574 frm = ieee80211_add_rates(frm, rs);
1575 if (ic->ic_curmode != IEEE80211_MODE_FH) {
1576 *frm++ = IEEE80211_ELEMID_DSPARMS;
1577 *frm++ = 1;
1578 *frm++ = ieee80211_chan2ieee(ic, ni->ni_chan);
1580 bo->bo_tim = frm;
1581 if (ic->ic_opmode == IEEE80211_M_IBSS) {
1582 *frm++ = IEEE80211_ELEMID_IBSSPARMS;
1583 *frm++ = 2;
1584 *frm++ = 0; *frm++ = 0; /* TODO: ATIM window */
1585 bo->bo_tim_len = 0;
1586 } else if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
1587 struct ieee80211_tim_ie *tie = (struct ieee80211_tim_ie *) frm;
1589 tie->tim_ie = IEEE80211_ELEMID_TIM;
1590 tie->tim_len = 4; /* length */
1591 tie->tim_count = 0; /* DTIM count */
1592 tie->tim_period = ic->ic_dtim_period; /* DTIM period */
1593 tie->tim_bitctl = 0; /* bitmap control */
1594 tie->tim_bitmap[0] = 0; /* Partial Virtual Bitmap */
1595 frm += sizeof(struct ieee80211_tim_ie);
1596 bo->bo_tim_len = 1;
1598 bo->bo_trailer = frm;
1599 if (ic->ic_flags & IEEE80211_F_WME) {
1600 bo->bo_wme = frm;
1601 frm = ieee80211_add_wme_param(frm, &ic->ic_wme);
1602 ic->ic_flags &= ~IEEE80211_F_WMEUPDATE;
1604 if (ic->ic_flags & IEEE80211_F_WPA)
1605 frm = ieee80211_add_wpa(frm, ic);
1606 if (ic->ic_curmode == IEEE80211_MODE_11G) {
1607 bo->bo_erp = frm;
1608 frm = ieee80211_add_erp(frm, ic);
1610 efrm = ieee80211_add_xrates(frm, rs);
1611 bo->bo_trailer_len = efrm - bo->bo_trailer;
1612 m->m_pkthdr.len = m->m_len = efrm - mtod(m, uint8_t *);
1613 KKASSERT(m->m_len <= pktlen);
1615 M_PREPEND(m, sizeof(struct ieee80211_frame), MB_DONTWAIT);
1616 KASSERT(m != NULL, ("no space for 802.11 header?"));
1617 wh = mtod(m, struct ieee80211_frame *);
1618 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_MGT |
1619 IEEE80211_FC0_SUBTYPE_BEACON;
1620 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
1621 *(uint16_t *)wh->i_dur = 0;
1622 IEEE80211_ADDR_COPY(wh->i_addr1, ifp->if_broadcastaddr);
1623 IEEE80211_ADDR_COPY(wh->i_addr2, ic->ic_myaddr);
1624 IEEE80211_ADDR_COPY(wh->i_addr3, ni->ni_bssid);
1625 *(uint16_t *)wh->i_seq = 0;
1627 return m;
1631 * Update the dynamic parts of a beacon frame based on the current state.
1634 ieee80211_beacon_update(struct ieee80211com *ic, struct ieee80211_node *ni,
1635 struct ieee80211_beacon_offsets *bo, struct mbuf *m, int mcast)
1637 int len_changed = 0;
1638 uint16_t capinfo;
1640 ASSERT_SERIALIZED(ic->ic_ifp->if_serializer);
1642 /* XXX faster to recalculate entirely or just changes? */
1643 capinfo = getcapinfo(ic, ni->ni_chan);
1644 *bo->bo_caps = htole16(capinfo);
1646 if (ic->ic_flags & IEEE80211_F_WME) {
1647 struct ieee80211_wme_state *wme = &ic->ic_wme;
1650 * Check for agressive mode change. When there is
1651 * significant high priority traffic in the BSS
1652 * throttle back BE traffic by using conservative
1653 * parameters. Otherwise BE uses agressive params
1654 * to optimize performance of legacy/non-QoS traffic.
1656 if (wme->wme_flags & WME_F_AGGRMODE) {
1657 if (wme->wme_hipri_traffic >
1658 wme->wme_hipri_switch_thresh) {
1659 IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
1660 "%s: traffic %u, disable aggressive mode\n",
1661 __func__, wme->wme_hipri_traffic);
1662 wme->wme_flags &= ~WME_F_AGGRMODE;
1663 ieee80211_wme_updateparams(ic);
1664 wme->wme_hipri_traffic =
1665 wme->wme_hipri_switch_hysteresis;
1666 } else
1667 wme->wme_hipri_traffic = 0;
1668 } else {
1669 if (wme->wme_hipri_traffic <=
1670 wme->wme_hipri_switch_thresh) {
1671 IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
1672 "%s: traffic %u, enable aggressive mode\n",
1673 __func__, wme->wme_hipri_traffic);
1674 wme->wme_flags |= WME_F_AGGRMODE;
1675 ieee80211_wme_updateparams(ic);
1676 wme->wme_hipri_traffic = 0;
1677 } else
1678 wme->wme_hipri_traffic =
1679 wme->wme_hipri_switch_hysteresis;
1681 if (ic->ic_flags & IEEE80211_F_WMEUPDATE) {
1682 (void) ieee80211_add_wme_param(bo->bo_wme, wme);
1683 ic->ic_flags &= ~IEEE80211_F_WMEUPDATE;
1687 if (ic->ic_opmode == IEEE80211_M_HOSTAP) { /* NB: no IBSS support*/
1688 struct ieee80211_tim_ie *tie =
1689 (struct ieee80211_tim_ie *) bo->bo_tim;
1690 if (ic->ic_flags & IEEE80211_F_TIMUPDATE) {
1691 u_int timlen, timoff, i;
1693 * ATIM/DTIM needs updating. If it fits in the
1694 * current space allocated then just copy in the
1695 * new bits. Otherwise we need to move any trailing
1696 * data to make room. Note that we know there is
1697 * contiguous space because ieee80211_beacon_allocate
1698 * insures there is space in the mbuf to write a
1699 * maximal-size virtual bitmap (based on ic_max_aid).
1702 * Calculate the bitmap size and offset, copy any
1703 * trailer out of the way, and then copy in the
1704 * new bitmap and update the information element.
1705 * Note that the tim bitmap must contain at least
1706 * one byte and any offset must be even.
1708 if (ic->ic_ps_pending != 0) {
1709 timoff = 128; /* impossibly large */
1710 for (i = 0; i < ic->ic_tim_len; i++)
1711 if (ic->ic_tim_bitmap[i]) {
1712 timoff = i &~ 1;
1713 break;
1715 KASSERT(timoff != 128, ("tim bitmap empty!"));
1716 for (i = ic->ic_tim_len-1; i >= timoff; i--)
1717 if (ic->ic_tim_bitmap[i])
1718 break;
1719 timlen = 1 + (i - timoff);
1720 } else {
1721 timoff = 0;
1722 timlen = 1;
1724 if (timlen != bo->bo_tim_len) {
1725 /* copy up/down trailer */
1726 int adjust = tie->tim_bitmap+timlen
1727 - bo->bo_trailer;
1728 ovbcopy(bo->bo_trailer, bo->bo_trailer+adjust,
1729 bo->bo_trailer_len);
1730 bo->bo_trailer += adjust;
1731 bo->bo_wme += adjust;
1732 bo->bo_erp += adjust;
1733 bo->bo_tim_len = timlen;
1735 /* update information element */
1736 tie->tim_len = 3 + timlen;
1737 tie->tim_bitctl = timoff;
1738 len_changed = 1;
1740 memcpy(tie->tim_bitmap, ic->ic_tim_bitmap + timoff,
1741 bo->bo_tim_len);
1743 ic->ic_flags &= ~IEEE80211_F_TIMUPDATE;
1745 IEEE80211_DPRINTF(ic, IEEE80211_MSG_POWER,
1746 "%s: TIM updated, pending %u, off %u, len %u\n",
1747 __func__, ic->ic_ps_pending, timoff, timlen);
1749 /* count down DTIM period */
1750 if (tie->tim_count == 0)
1751 tie->tim_count = tie->tim_period - 1;
1752 else
1753 tie->tim_count--;
1754 /* update state for buffered multicast frames on DTIM */
1755 if (mcast && tie->tim_count == 0)
1756 tie->tim_bitctl |= 1;
1757 else
1758 tie->tim_bitctl &= ~1;
1759 if (ic->ic_flags_ext & IEEE80211_FEXT_ERPUPDATE) {
1761 * ERP element needs updating.
1763 (void) ieee80211_add_erp(bo->bo_erp, ic);
1764 ic->ic_flags_ext &= ~IEEE80211_FEXT_ERPUPDATE;
1768 return len_changed;
1772 * Save an outbound packet for a node in power-save sleep state.
1773 * The new packet is placed on the node's saved queue, and the TIM
1774 * is changed, if necessary.
1776 void
1777 ieee80211_pwrsave(struct ieee80211com *ic, struct ieee80211_node *ni,
1778 struct mbuf *m)
1780 int qlen, age;
1782 ASSERT_SERIALIZED(ic->ic_ifp->if_serializer);
1784 if (IF_QFULL(&ni->ni_savedq)) {
1785 IF_DROP(&ni->ni_savedq);
1786 IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
1787 "[%6D] pwr save q overflow, drops %d (size %d)\n",
1788 ni->ni_macaddr, ":",
1789 ni->ni_savedq.ifq_drops, IEEE80211_PS_MAX_QUEUE);
1790 #ifdef IEEE80211_DEBUG
1791 if (ieee80211_msg_dumppkts(ic))
1792 ieee80211_dump_pkt(mtod(m, caddr_t), m->m_len, -1, -1);
1793 #endif
1794 m_freem(m);
1795 return;
1798 * Tag the frame with it's expiry time and insert
1799 * it in the queue. The aging interval is 4 times
1800 * the listen interval specified by the station.
1801 * Frames that sit around too long are reclaimed
1802 * using this information.
1804 /* TU -> secs. XXX handle overflow? */
1805 age = IEEE80211_TU_TO_MS((ni->ni_intval * ic->ic_bintval) << 2) / 1000;
1806 _IEEE80211_NODE_SAVEQ_ENQUEUE(ni, m, qlen, age);
1808 IEEE80211_DPRINTF(ic, IEEE80211_MSG_POWER,
1809 "[%6D] save frame with age %d, %u now queued\n",
1810 ni->ni_macaddr, ":", age, qlen);
1812 if (qlen == 1)
1813 ic->ic_set_tim(ni, 1);
1816 uint8_t
1817 ieee80211_ack_rate(struct ieee80211_node *ni, uint8_t rate)
1819 const struct ieee80211_rateset *rs = &ni->ni_rates;
1820 uint8_t ack_rate = 0;
1821 enum ieee80211_modtype modtype;
1822 int i;
1824 rate &= IEEE80211_RATE_VAL;
1826 modtype = ieee80211_rate2modtype(rate);
1828 for (i = 0; i < rs->rs_nrates; ++i) {
1829 uint8_t rate1 = IEEE80211_RS_RATE(rs, i);
1831 if (rate1 > rate) {
1832 if (ack_rate != 0)
1833 return ack_rate;
1834 else
1835 break;
1838 if ((rs->rs_rates[i] & IEEE80211_RATE_BASIC) &&
1839 ieee80211_rate2modtype(rate1) == modtype)
1840 ack_rate = rate1;
1843 switch (rate) {
1844 /* CCK */
1845 case 2:
1846 case 4:
1847 case 11:
1848 case 22:
1849 ack_rate = rate;
1850 break;
1852 /* PBCC */
1853 case 44:
1854 ack_rate = 22;
1855 break;
1857 /* OFDM */
1858 case 12:
1859 case 18:
1860 ack_rate = 12;
1861 break;
1862 case 24:
1863 case 36:
1864 ack_rate = 24;
1865 break;
1866 case 48:
1867 case 72:
1868 case 96:
1869 case 108:
1870 ack_rate = 48;
1871 break;
1872 default:
1873 panic("unsupported rate %d\n", rate);
1875 return ack_rate;
1878 /* IEEE Std 802.11a-1999, page 9, table 79 */
1879 #define IEEE80211_OFDM_SYM_TIME 4
1880 #define IEEE80211_OFDM_PREAMBLE_TIME 16
1881 #define IEEE80211_OFDM_SIGNAL_TIME 4
1882 /* IEEE Std 802.11g-2003, page 44 */
1883 #define IEEE80211_OFDM_SIGNAL_EXT_TIME 6
1885 /* IEEE Std 802.11a-1999, page 7, figure 107 */
1886 #define IEEE80211_OFDM_PLCP_SERVICE_NBITS 16
1887 #define IEEE80211_OFDM_TAIL_NBITS 6
1889 #define IEEE80211_OFDM_NBITS(frmlen) \
1890 (IEEE80211_OFDM_PLCP_SERVICE_NBITS + \
1891 ((frmlen) * NBBY) + \
1892 IEEE80211_OFDM_TAIL_NBITS)
1894 #define IEEE80211_OFDM_NBITS_PER_SYM(kbps) \
1895 (((kbps) * IEEE80211_OFDM_SYM_TIME) / 1000)
1897 #define IEEE80211_OFDM_NSYMS(kbps, frmlen) \
1898 howmany(IEEE80211_OFDM_NBITS((frmlen)), \
1899 IEEE80211_OFDM_NBITS_PER_SYM((kbps)))
1901 #define IEEE80211_OFDM_TXTIME(kbps, frmlen) \
1902 (IEEE80211_OFDM_PREAMBLE_TIME + \
1903 IEEE80211_OFDM_SIGNAL_TIME + \
1904 (IEEE80211_OFDM_NSYMS((kbps), (frmlen)) * IEEE80211_OFDM_SYM_TIME))
1906 /* IEEE Std 802.11b-1999, page 28, subclause 18.3.4 */
1907 #define IEEE80211_CCK_PREAMBLE_LEN 144
1908 #define IEEE80211_CCK_PLCP_HDR_TIME 48
1909 #define IEEE80211_CCK_SHPREAMBLE_LEN 72
1910 #define IEEE80211_CCK_SHPLCP_HDR_TIME 24
1912 #define IEEE80211_CCK_NBITS(frmlen) ((frmlen) * NBBY)
1913 #define IEEE80211_CCK_TXTIME(kbps, frmlen) \
1914 (((IEEE80211_CCK_NBITS((frmlen)) * 1000) + (kbps) - 1) / (kbps))
1916 uint16_t
1917 ieee80211_txtime(struct ieee80211_node *ni, u_int len, uint8_t rs_rate,
1918 uint32_t flags)
1920 struct ieee80211com *ic = ni->ni_ic;
1921 enum ieee80211_modtype modtype;
1922 uint16_t txtime;
1923 int rate;
1925 rs_rate &= IEEE80211_RATE_VAL;
1927 rate = rs_rate * 500; /* ieee80211 rate -> kbps */
1929 modtype = ieee80211_rate2modtype(rs_rate);
1930 if (modtype == IEEE80211_MODTYPE_OFDM) {
1932 * IEEE Std 802.11a-1999, page 37, equation (29)
1933 * IEEE Std 802.11g-2003, page 44, equation (42)
1935 txtime = IEEE80211_OFDM_TXTIME(rate, len);
1936 if (ic->ic_curmode == IEEE80211_MODE_11G)
1937 txtime += IEEE80211_OFDM_SIGNAL_EXT_TIME;
1938 } else {
1940 * IEEE Std 802.11b-1999, page 28, subclause 18.3.4
1941 * IEEE Std 802.11g-2003, page 45, equation (43)
1943 if (modtype == IEEE80211_MODTYPE_PBCC)
1944 ++len;
1945 txtime = IEEE80211_CCK_TXTIME(rate, len);
1948 * Short preamble is not applicable for DS 1Mbits/s
1950 if (rs_rate != 2 && (flags & IEEE80211_F_SHPREAMBLE)) {
1951 txtime += IEEE80211_CCK_SHPREAMBLE_LEN +
1952 IEEE80211_CCK_SHPLCP_HDR_TIME;
1953 } else {
1954 txtime += IEEE80211_CCK_PREAMBLE_LEN +
1955 IEEE80211_CCK_PLCP_HDR_TIME;
1958 return txtime;