Home | History | Annotate | Line # | Download | only in net80211
ieee80211_proto.c revision 1.19
      1 /*	$NetBSD: ieee80211_proto.c,v 1.19 2005/06/22 06:16:02 dyoung Exp $	*/
      2 /*-
      3  * Copyright (c) 2001 Atsushi Onoe
      4  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     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.
     15  * 3. The name of the author may not be used to endorse or promote products
     16  *    derived from this software without specific prior written permission.
     17  *
     18  * Alternatively, this software may be distributed under the terms of the
     19  * GNU General Public License ("GPL") version 2 as published by the Free
     20  * Software Foundation.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 #ifdef __FreeBSD__
     36 __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_proto.c,v 1.15 2005/01/24 20:39:29 sam Exp $");
     37 #endif
     38 #ifdef __NetBSD__
     39 __KERNEL_RCSID(0, "$NetBSD: ieee80211_proto.c,v 1.19 2005/06/22 06:16:02 dyoung Exp $");
     40 #endif
     41 
     42 /*
     43  * IEEE 802.11 protocol support.
     44  */
     45 
     46 #include "opt_inet.h"
     47 
     48 #include <sys/param.h>
     49 #include <sys/kernel.h>
     50 #include <sys/systm.h>
     51 
     52 #include <sys/socket.h>
     53 #include <sys/sockio.h>
     54 #include <sys/endian.h>
     55 #include <sys/errno.h>
     56 #include <sys/proc.h>
     57 #include <sys/sysctl.h>
     58 
     59 #include <net/if.h>
     60 #include <net/if_media.h>
     61 #include <net/if_arp.h>
     62 #include <net/if_ether.h>
     63 #include <net/if_llc.h>
     64 
     65 #include <net80211/ieee80211_netbsd.h>
     66 #include <net80211/ieee80211_var.h>
     67 
     68 #include <net/bpf.h>
     69 
     70 #ifdef INET
     71 #include <netinet/in.h>
     72 #include <net/if_ether.h>
     73 #endif
     74 
     75 #include <net/route.h>
     76 /* XXX tunables */
     77 #define	AGGRESSIVE_MODE_SWITCH_HYSTERESIS	3	/* pkts / 100ms */
     78 #define	HIGH_PRI_SWITCH_THRESH			10	/* pkts / 100ms */
     79 
     80 #define	IEEE80211_RATE2MBS(r)	(((r) & IEEE80211_RATE_VAL) / 2)
     81 
     82 const char *ieee80211_mgt_subtype_name[] = {
     83 	"assoc_req",	"assoc_resp",	"reassoc_req",	"reassoc_resp",
     84 	"probe_req",	"probe_resp",	"reserved#6",	"reserved#7",
     85 	"beacon",	"atim",		"disassoc",	"auth",
     86 	"deauth",	"reserved#13",	"reserved#14",	"reserved#15"
     87 };
     88 const char *ieee80211_ctl_subtype_name[] = {
     89 	"reserved#0",	"reserved#1",	"reserved#2",	"reserved#3",
     90 	"reserved#3",	"reserved#5",	"reserved#6",	"reserved#7",
     91 	"reserved#8",	"reserved#9",	"ps_poll",	"rts",
     92 	"cts",		"ack",		"cf_end",	"cf_end_ack"
     93 };
     94 const char *ieee80211_state_name[IEEE80211_S_MAX] = {
     95 	"INIT",		/* IEEE80211_S_INIT */
     96 	"SCAN",		/* IEEE80211_S_SCAN */
     97 	"AUTH",		/* IEEE80211_S_AUTH */
     98 	"ASSOC",	/* IEEE80211_S_ASSOC */
     99 	"RUN"		/* IEEE80211_S_RUN */
    100 };
    101 const char *ieee80211_wme_acnames[] = {
    102 	"WME_AC_BE",
    103 	"WME_AC_BK",
    104 	"WME_AC_VI",
    105 	"WME_AC_VO",
    106 	"WME_UPSD",
    107 };
    108 
    109 static int ieee80211_newstate(struct ieee80211com *, enum ieee80211_state, int);
    110 
    111 void
    112 ieee80211_proto_attach(struct ieee80211com *ic)
    113 {
    114 	struct ifnet *ifp = ic->ic_ifp;
    115 
    116 	/* XXX room for crypto  */
    117 	ifp->if_hdrlen = sizeof(struct ieee80211_qosframe_addr4);
    118 
    119 #ifdef notdef
    120 	ic->ic_rtsthreshold = IEEE80211_RTS_DEFAULT;
    121 #else
    122 	ic->ic_rtsthreshold = IEEE80211_RTS_MAX;
    123 #endif
    124 	ic->ic_fragthreshold = 2346;		/* XXX not used yet */
    125 	ic->ic_fixed_rate = -1;			/* no fixed rate */
    126 	ic->ic_protmode = IEEE80211_PROT_CTSONLY;
    127 	ic->ic_roaming = IEEE80211_ROAMING_AUTO;
    128 
    129 	ic->ic_wme.wme_hipri_switch_hysteresis =
    130 		AGGRESSIVE_MODE_SWITCH_HYSTERESIS;
    131 
    132 	/* protocol state change handler */
    133 	ic->ic_newstate = ieee80211_newstate;
    134 
    135 	/* initialize management frame handlers */
    136 	ic->ic_recv_mgmt = ieee80211_recv_mgmt;
    137 	ic->ic_send_mgmt = ieee80211_send_mgmt;
    138 }
    139 
    140 void
    141 ieee80211_proto_detach(struct ieee80211com *ic)
    142 {
    143 
    144 	/*
    145 	 * This should not be needed as we detach when reseting
    146 	 * the state but be conservative here since the
    147 	 * authenticator may do things like spawn kernel threads.
    148 	 */
    149 	if (ic->ic_auth->ia_detach)
    150 		ic->ic_auth->ia_detach(ic);
    151 
    152 	IF_PURGE(&ic->ic_mgtq);
    153 
    154 	/*
    155 	 * Detach any ACL'ator.
    156 	 */
    157 	if (ic->ic_acl != NULL)
    158 		ic->ic_acl->iac_detach(ic);
    159 }
    160 
    161 /*
    162  * Simple-minded authenticator module support.
    163  */
    164 
    165 #define	IEEE80211_AUTH_MAX	(IEEE80211_AUTH_WPA+1)
    166 /* XXX well-known names */
    167 static const char *auth_modnames[IEEE80211_AUTH_MAX] = {
    168 	"wlan_internal",	/* IEEE80211_AUTH_NONE */
    169 	"wlan_internal",	/* IEEE80211_AUTH_OPEN */
    170 	"wlan_internal",	/* IEEE80211_AUTH_SHARED */
    171 	"wlan_xauth",		/* IEEE80211_AUTH_8021X	 */
    172 	"wlan_internal",	/* IEEE80211_AUTH_AUTO */
    173 	"wlan_xauth",		/* IEEE80211_AUTH_WPA */
    174 };
    175 static const struct ieee80211_authenticator *authenticators[IEEE80211_AUTH_MAX];
    176 
    177 static const struct ieee80211_authenticator auth_internal = {
    178 	.ia_name		= "wlan_internal",
    179 	.ia_attach		= NULL,
    180 	.ia_detach		= NULL,
    181 	.ia_node_join		= NULL,
    182 	.ia_node_leave		= NULL,
    183 };
    184 
    185 /*
    186  * Setup internal authenticators once; they are never unregistered.
    187  */
    188 static void
    189 ieee80211_auth_setup(void)
    190 {
    191 	ieee80211_authenticator_register(IEEE80211_AUTH_OPEN, &auth_internal);
    192 	ieee80211_authenticator_register(IEEE80211_AUTH_SHARED, &auth_internal);
    193 	ieee80211_authenticator_register(IEEE80211_AUTH_AUTO, &auth_internal);
    194 }
    195 
    196 const struct ieee80211_authenticator *
    197 ieee80211_authenticator_get(int auth)
    198 {
    199 	static int initialized = 0;
    200 	if (!initialized) {
    201 		ieee80211_auth_setup();
    202 		initialized = 1;
    203 	}
    204 	if (auth >= IEEE80211_AUTH_MAX)
    205 		return NULL;
    206 	if (authenticators[auth] == NULL)
    207 		ieee80211_load_module(auth_modnames[auth]);
    208 	return authenticators[auth];
    209 }
    210 
    211 void
    212 ieee80211_authenticator_register(int type,
    213 	const struct ieee80211_authenticator *auth)
    214 {
    215 	if (type >= IEEE80211_AUTH_MAX)
    216 		return;
    217 	authenticators[type] = auth;
    218 }
    219 
    220 void
    221 ieee80211_authenticator_unregister(int type)
    222 {
    223 
    224 	if (type >= IEEE80211_AUTH_MAX)
    225 		return;
    226 	authenticators[type] = NULL;
    227 }
    228 
    229 /*
    230  * Very simple-minded ACL module support.
    231  */
    232 /* XXX just one for now */
    233 static	const struct ieee80211_aclator *acl = NULL;
    234 
    235 void
    236 ieee80211_aclator_register(const struct ieee80211_aclator *iac)
    237 {
    238 	printf("wlan: %s acl policy registered\n", iac->iac_name);
    239 	acl = iac;
    240 }
    241 
    242 void
    243 ieee80211_aclator_unregister(const struct ieee80211_aclator *iac)
    244 {
    245 	if (acl == iac)
    246 		acl = NULL;
    247 	printf("wlan: %s acl policy unregistered\n", iac->iac_name);
    248 }
    249 
    250 const struct ieee80211_aclator *
    251 ieee80211_aclator_get(const char *name)
    252 {
    253 	if (acl == NULL)
    254 		ieee80211_load_module("wlan_acl");
    255 	return acl != NULL && strcmp(acl->iac_name, name) == 0 ? acl : NULL;
    256 }
    257 
    258 void
    259 ieee80211_print_essid(const u_int8_t *essid, int len)
    260 {
    261 	const u_int8_t *p;
    262 	int i;
    263 
    264 	if (len > IEEE80211_NWID_LEN)
    265 		len = IEEE80211_NWID_LEN;
    266 	/* determine printable or not */
    267 	for (i = 0, p = essid; i < len; i++, p++) {
    268 		if (*p < ' ' || *p > 0x7e)
    269 			break;
    270 	}
    271 	if (i == len) {
    272 		printf("\"");
    273 		for (i = 0, p = essid; i < len; i++, p++)
    274 			printf("%c", *p);
    275 		printf("\"");
    276 	} else {
    277 		printf("0x");
    278 		for (i = 0, p = essid; i < len; i++, p++)
    279 			printf("%02x", *p);
    280 	}
    281 }
    282 
    283 void
    284 ieee80211_dump_pkt(const u_int8_t *buf, int len, int rate, int rssi)
    285 {
    286 	const struct ieee80211_frame *wh;
    287 	int i;
    288 
    289 	wh = (const struct ieee80211_frame *)buf;
    290 	switch (wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
    291 	case IEEE80211_FC1_DIR_NODS:
    292 		printf("NODS %s", ether_sprintf(wh->i_addr2));
    293 		printf("->%s", ether_sprintf(wh->i_addr1));
    294 		printf("(%s)", ether_sprintf(wh->i_addr3));
    295 		break;
    296 	case IEEE80211_FC1_DIR_TODS:
    297 		printf("TODS %s", ether_sprintf(wh->i_addr2));
    298 		printf("->%s", ether_sprintf(wh->i_addr3));
    299 		printf("(%s)", ether_sprintf(wh->i_addr1));
    300 		break;
    301 	case IEEE80211_FC1_DIR_FROMDS:
    302 		printf("FRDS %s", ether_sprintf(wh->i_addr3));
    303 		printf("->%s", ether_sprintf(wh->i_addr1));
    304 		printf("(%s)", ether_sprintf(wh->i_addr2));
    305 		break;
    306 	case IEEE80211_FC1_DIR_DSTODS:
    307 		printf("DSDS %s", ether_sprintf((const u_int8_t *)&wh[1]));
    308 		printf("->%s", ether_sprintf(wh->i_addr3));
    309 		printf("(%s", ether_sprintf(wh->i_addr2));
    310 		printf("->%s)", ether_sprintf(wh->i_addr1));
    311 		break;
    312 	}
    313 	switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
    314 	case IEEE80211_FC0_TYPE_DATA:
    315 		printf(" data");
    316 		break;
    317 	case IEEE80211_FC0_TYPE_MGT:
    318 		printf(" %s", ieee80211_mgt_subtype_name[
    319 		    (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK)
    320 		    >> IEEE80211_FC0_SUBTYPE_SHIFT]);
    321 		break;
    322 	default:
    323 		printf(" type#%d", wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK);
    324 		break;
    325 	}
    326 	if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
    327 		printf(" WEP [IV");
    328 		for (i = 0; i < IEEE80211_WEP_IVLEN; i++)
    329 			printf(" %.02x", buf[sizeof(*wh)+i]);
    330 		printf(" KID %u]", buf[sizeof(*wh)+i] >> 6);
    331 	}
    332 	if (rate >= 0)
    333 		printf(" %dM", rate / 2);
    334 	if (rssi >= 0)
    335 		printf(" +%d", rssi);
    336 	printf("\n");
    337 	if (len > 0) {
    338 		for (i = 0; i < len; i++) {
    339 			if ((i & 1) == 0)
    340 				printf(" ");
    341 			printf("%02x", buf[i]);
    342 		}
    343 		printf("\n");
    344 	}
    345 }
    346 
    347 int
    348 ieee80211_fix_rate(struct ieee80211com *ic, struct ieee80211_node *ni, int flags)
    349 {
    350 #define	RV(v)	((v) & IEEE80211_RATE_VAL)
    351 	int i, j, ignore, error;
    352 	int okrate, badrate, fixedrate;
    353 	struct ieee80211_rateset *srs, *nrs;
    354 	u_int8_t r;
    355 
    356 	/*
    357 	 * If the fixed rate check was requested but no
    358 	 * fixed has been defined then just remove it.
    359 	 */
    360 	if ((flags & IEEE80211_F_DOFRATE) && ic->ic_fixed_rate < 0)
    361 		flags &= ~IEEE80211_F_DOFRATE;
    362 	error = 0;
    363 	okrate = badrate = fixedrate = 0;
    364 	srs = &ic->ic_sup_rates[ieee80211_chan2mode(ic, ni->ni_chan)];
    365 	nrs = &ni->ni_rates;
    366 	for (i = 0; i < nrs->rs_nrates; ) {
    367 		ignore = 0;
    368 		if (flags & IEEE80211_F_DOSORT) {
    369 			/*
    370 			 * Sort rates.
    371 			 */
    372 			for (j = i + 1; j < nrs->rs_nrates; j++) {
    373 				if (RV(nrs->rs_rates[i]) > RV(nrs->rs_rates[j])) {
    374 					r = nrs->rs_rates[i];
    375 					nrs->rs_rates[i] = nrs->rs_rates[j];
    376 					nrs->rs_rates[j] = r;
    377 				}
    378 			}
    379 		}
    380 		r = nrs->rs_rates[i] & IEEE80211_RATE_VAL;
    381 		badrate = r;
    382 		if (flags & IEEE80211_F_DOFRATE) {
    383 			/*
    384 			 * Check any fixed rate is included.
    385 			 */
    386 			if (r == RV(srs->rs_rates[ic->ic_fixed_rate]))
    387 				fixedrate = r;
    388 		}
    389 		if (flags & IEEE80211_F_DONEGO) {
    390 			/*
    391 			 * Check against supported rates.
    392 			 */
    393 			for (j = 0; j < srs->rs_nrates; j++) {
    394 				if (r == RV(srs->rs_rates[j])) {
    395 					/*
    396 					 * Overwrite with the supported rate
    397 					 * value so any basic rate bit is set.
    398 					 * This insures that response we send
    399 					 * to stations have the necessary basic
    400 					 * rate bit set.
    401 					 */
    402 					nrs->rs_rates[i] = srs->rs_rates[j];
    403 					break;
    404 				}
    405 			}
    406 			if (j == srs->rs_nrates) {
    407 				/*
    408 				 * A rate in the node's rate set is not
    409 				 * supported.  If this is a basic rate and we
    410 				 * are operating as an AP then this is an error.
    411 				 * Otherwise we just discard/ignore the rate.
    412 				 * Note that this is important for 11b stations
    413 				 * when they want to associate with an 11g AP.
    414 				 */
    415 				if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
    416 				    (nrs->rs_rates[i] & IEEE80211_RATE_BASIC))
    417 					error++;
    418 				ignore++;
    419 			}
    420 		}
    421 		if (flags & IEEE80211_F_DODEL) {
    422 			/*
    423 			 * Delete unacceptable rates.
    424 			 */
    425 			if (ignore) {
    426 				nrs->rs_nrates--;
    427 				for (j = i; j < nrs->rs_nrates; j++)
    428 					nrs->rs_rates[j] = nrs->rs_rates[j + 1];
    429 				nrs->rs_rates[j] = 0;
    430 				continue;
    431 			}
    432 		}
    433 		if (!ignore) {
    434 			okrate = nrs->rs_rates[i];
    435 			ni->ni_txrate = i;
    436 		}
    437 		i++;
    438 	}
    439 	if (okrate == 0 || error != 0 ||
    440 	    ((flags & IEEE80211_F_DOFRATE) && fixedrate == 0))
    441 		return badrate | IEEE80211_RATE_BASIC;
    442 	else
    443 		return RV(okrate);
    444 #undef RV
    445 }
    446 
    447 /*
    448  * Reset 11g-related state.
    449  */
    450 void
    451 ieee80211_reset_erp(struct ieee80211com *ic)
    452 {
    453 	ic->ic_flags &= ~IEEE80211_F_USEPROT;
    454 	ic->ic_nonerpsta = 0;
    455 	ic->ic_longslotsta = 0;
    456 	/*
    457 	 * Short slot time is enabled only when operating in 11g
    458 	 * and not in an IBSS.  We must also honor whether or not
    459 	 * the driver is capable of doing it.
    460 	 */
    461 	ieee80211_set_shortslottime(ic,
    462 		ic->ic_curmode == IEEE80211_MODE_11A ||
    463 		(ic->ic_curmode == IEEE80211_MODE_11G &&
    464 		ic->ic_opmode == IEEE80211_M_HOSTAP &&
    465 		(ic->ic_caps & IEEE80211_C_SHSLOT)));
    466 	/*
    467 	 * Set short preamble and ERP barker-preamble flags.
    468 	 */
    469 	if (ic->ic_curmode == IEEE80211_MODE_11A ||
    470 	    (ic->ic_caps & IEEE80211_C_SHPREAMBLE)) {
    471 		ic->ic_flags |= IEEE80211_F_SHPREAMBLE;
    472 		ic->ic_flags &= ~IEEE80211_F_USEBARKER;
    473 	} else {
    474 		ic->ic_flags &= ~IEEE80211_F_SHPREAMBLE;
    475 		ic->ic_flags |= IEEE80211_F_USEBARKER;
    476 	}
    477 }
    478 
    479 /*
    480  * Set the short slot time state and notify the driver.
    481  */
    482 void
    483 ieee80211_set_shortslottime(struct ieee80211com *ic, int onoff)
    484 {
    485 	if (onoff)
    486 		ic->ic_flags |= IEEE80211_F_SHSLOT;
    487 	else
    488 		ic->ic_flags &= ~IEEE80211_F_SHSLOT;
    489 	/* notify driver */
    490 	if (ic->ic_updateslot != NULL)
    491 		ic->ic_updateslot(ic->ic_ifp);
    492 }
    493 
    494 /*
    495  * Check if the specified rate set supports ERP.
    496  * NB: the rate set is assumed to be sorted.
    497  */
    498 int
    499 ieee80211_iserp_rateset(struct ieee80211com *ic, struct ieee80211_rateset *rs)
    500 {
    501 #define N(a)	(sizeof(a) / sizeof(a[0]))
    502 	static const int rates[] = { 2, 4, 11, 22, 12, 24, 48 };
    503 	int i, j;
    504 
    505 	if (rs->rs_nrates < N(rates))
    506 		return 0;
    507 	for (i = 0; i < N(rates); i++) {
    508 		for (j = 0; j < rs->rs_nrates; j++) {
    509 			int r = rs->rs_rates[j] & IEEE80211_RATE_VAL;
    510 			if (rates[i] == r)
    511 				goto next;
    512 			if (r > rates[i])
    513 				return 0;
    514 		}
    515 		return 0;
    516 	next:
    517 		;
    518 	}
    519 	return 1;
    520 #undef N
    521 }
    522 
    523 /*
    524  * Mark the basic rates for the 11g rate table based on the
    525  * operating mode.  For real 11g we mark all the 11b rates
    526  * and 6, 12, and 24 OFDM.  For 11b compatibility we mark only
    527  * 11b rates.  There's also a pseudo 11a-mode used to mark only
    528  * the basic OFDM rates.
    529  */
    530 void
    531 ieee80211_set11gbasicrates(struct ieee80211_rateset *rs, enum ieee80211_phymode mode)
    532 {
    533 	static const struct ieee80211_rateset basic[] = {
    534 	    { 0 },			/* IEEE80211_MODE_AUTO */
    535 	    { 3, { 12, 24, 48 } },	/* IEEE80211_MODE_11A */
    536 	    { 2, { 2, 4 } },		/* IEEE80211_MODE_11B */
    537 	    { 4, { 2, 4, 11, 22 } },	/* IEEE80211_MODE_11G (mixed b/g) */
    538 	    { 0 },			/* IEEE80211_MODE_FH */
    539 					/* IEEE80211_MODE_PUREG (not yet) */
    540 	    { 7, { 2, 4, 11, 22, 12, 24, 48 } },
    541 	};
    542 	int i, j;
    543 
    544 	for (i = 0; i < rs->rs_nrates; i++) {
    545 		rs->rs_rates[i] &= IEEE80211_RATE_VAL;
    546 		for (j = 0; j < basic[mode].rs_nrates; j++)
    547 			if (basic[mode].rs_rates[j] == rs->rs_rates[i]) {
    548 				rs->rs_rates[i] |= IEEE80211_RATE_BASIC;
    549 				break;
    550 			}
    551 	}
    552 }
    553 
    554 /*
    555  * WME protocol support.  The following parameters come from the spec.
    556  */
    557 typedef struct phyParamType {
    558 	u_int8_t aifsn;
    559 	u_int8_t logcwmin;
    560 	u_int8_t logcwmax;
    561 	u_int16_t txopLimit;
    562 	u_int8_t acm;
    563 } paramType;
    564 
    565 static const struct phyParamType phyParamForAC_BE[IEEE80211_MODE_MAX] = {
    566 	{ 3, 4, 6 },		/* IEEE80211_MODE_AUTO */
    567 	{ 3, 4, 6 },		/* IEEE80211_MODE_11A */
    568 	{ 3, 5, 7 },		/* IEEE80211_MODE_11B */
    569 	{ 3, 4, 6 },		/* IEEE80211_MODE_11G */
    570 	{ 3, 5, 7 },		/* IEEE80211_MODE_FH */
    571 	{ 2, 3, 5 },		/* IEEE80211_MODE_TURBO_A */
    572 	{ 2, 3, 5 },		/* IEEE80211_MODE_TURBO_G */
    573 };
    574 static const struct phyParamType phyParamForAC_BK[IEEE80211_MODE_MAX] = {
    575 	{ 7, 4, 10 },		/* IEEE80211_MODE_AUTO */
    576 	{ 7, 4, 10 },		/* IEEE80211_MODE_11A */
    577 	{ 7, 5, 10 },		/* IEEE80211_MODE_11B */
    578 	{ 7, 4, 10 },		/* IEEE80211_MODE_11G */
    579 	{ 7, 5, 10 },		/* IEEE80211_MODE_FH */
    580 	{ 7, 3, 10 },		/* IEEE80211_MODE_TURBO_A */
    581 	{ 7, 3, 10 },		/* IEEE80211_MODE_TURBO_G */
    582 };
    583 static const struct phyParamType phyParamForAC_VI[IEEE80211_MODE_MAX] = {
    584 	{ 1, 3, 4,  94 },	/* IEEE80211_MODE_AUTO */
    585 	{ 1, 3, 4,  94 },	/* IEEE80211_MODE_11A */
    586 	{ 1, 4, 5, 188 },	/* IEEE80211_MODE_11B */
    587 	{ 1, 3, 4,  94 },	/* IEEE80211_MODE_11G */
    588 	{ 1, 4, 5, 188 },	/* IEEE80211_MODE_FH */
    589 	{ 1, 2, 3,  94 },	/* IEEE80211_MODE_TURBO_A */
    590 	{ 1, 2, 3,  94 },	/* IEEE80211_MODE_TURBO_G */
    591 };
    592 static const struct phyParamType phyParamForAC_VO[IEEE80211_MODE_MAX] = {
    593 	{ 1, 2, 3,  47 },	/* IEEE80211_MODE_AUTO */
    594 	{ 1, 2, 3,  47 },	/* IEEE80211_MODE_11A */
    595 	{ 1, 3, 4, 102 },	/* IEEE80211_MODE_11B */
    596 	{ 1, 2, 3,  47 },	/* IEEE80211_MODE_11G */
    597 	{ 1, 3, 4, 102 },	/* IEEE80211_MODE_FH */
    598 	{ 1, 2, 2,  47 },	/* IEEE80211_MODE_TURBO_A */
    599 	{ 1, 2, 2,  47 },	/* IEEE80211_MODE_TURBO_G */
    600 };
    601 
    602 static const struct phyParamType bssPhyParamForAC_BE[IEEE80211_MODE_MAX] = {
    603 	{ 3, 4, 10 },		/* IEEE80211_MODE_AUTO */
    604 	{ 3, 4, 10 },		/* IEEE80211_MODE_11A */
    605 	{ 3, 5, 10 },		/* IEEE80211_MODE_11B */
    606 	{ 3, 4, 10 },		/* IEEE80211_MODE_11G */
    607 	{ 3, 5, 10 },		/* IEEE80211_MODE_FH */
    608 	{ 2, 3, 10 },		/* IEEE80211_MODE_TURBO_A */
    609 	{ 2, 3, 10 },		/* IEEE80211_MODE_TURBO_G */
    610 };
    611 static const struct phyParamType bssPhyParamForAC_VI[IEEE80211_MODE_MAX] = {
    612 	{ 2, 3, 4,  94 },	/* IEEE80211_MODE_AUTO */
    613 	{ 2, 3, 4,  94 },	/* IEEE80211_MODE_11A */
    614 	{ 2, 4, 5, 188 },	/* IEEE80211_MODE_11B */
    615 	{ 2, 3, 4,  94 },	/* IEEE80211_MODE_11G */
    616 	{ 2, 4, 5, 188 },	/* IEEE80211_MODE_FH */
    617 	{ 2, 2, 3,  94 },	/* IEEE80211_MODE_TURBO_A */
    618 	{ 2, 2, 3,  94 },	/* IEEE80211_MODE_TURBO_G */
    619 };
    620 static const struct phyParamType bssPhyParamForAC_VO[IEEE80211_MODE_MAX] = {
    621 	{ 2, 2, 3,  47 },	/* IEEE80211_MODE_AUTO */
    622 	{ 2, 2, 3,  47 },	/* IEEE80211_MODE_11A */
    623 	{ 2, 3, 4, 102 },	/* IEEE80211_MODE_11B */
    624 	{ 2, 2, 3,  47 },	/* IEEE80211_MODE_11G */
    625 	{ 2, 3, 4, 102 },	/* IEEE80211_MODE_FH */
    626 	{ 1, 2, 2,  47 },	/* IEEE80211_MODE_TURBO_A */
    627 	{ 1, 2, 2,  47 },	/* IEEE80211_MODE_TURBO_G */
    628 };
    629 
    630 void
    631 ieee80211_wme_initparams(struct ieee80211com *ic)
    632 {
    633 	struct ieee80211_wme_state *wme = &ic->ic_wme;
    634 	const paramType *pPhyParam, *pBssPhyParam;
    635 	struct wmeParams *wmep;
    636 	int i;
    637 
    638 	if ((ic->ic_caps & IEEE80211_C_WME) == 0)
    639 		return;
    640 
    641 	for (i = 0; i < WME_NUM_AC; i++) {
    642 		switch (i) {
    643 		case WME_AC_BK:
    644 			pPhyParam = &phyParamForAC_BK[ic->ic_curmode];
    645 			pBssPhyParam = &phyParamForAC_BK[ic->ic_curmode];
    646 			break;
    647 		case WME_AC_VI:
    648 			pPhyParam = &phyParamForAC_VI[ic->ic_curmode];
    649 			pBssPhyParam = &bssPhyParamForAC_VI[ic->ic_curmode];
    650 			break;
    651 		case WME_AC_VO:
    652 			pPhyParam = &phyParamForAC_VO[ic->ic_curmode];
    653 			pBssPhyParam = &bssPhyParamForAC_VO[ic->ic_curmode];
    654 			break;
    655 		case WME_AC_BE:
    656 		default:
    657 			pPhyParam = &phyParamForAC_BE[ic->ic_curmode];
    658 			pBssPhyParam = &bssPhyParamForAC_BE[ic->ic_curmode];
    659 			break;
    660 		}
    661 
    662 		wmep = &wme->wme_wmeChanParams.cap_wmeParams[i];
    663 		if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
    664 			wmep->wmep_acm = pPhyParam->acm;
    665 			wmep->wmep_aifsn = pPhyParam->aifsn;
    666 			wmep->wmep_logcwmin = pPhyParam->logcwmin;
    667 			wmep->wmep_logcwmax = pPhyParam->logcwmax;
    668 			wmep->wmep_txopLimit = pPhyParam->txopLimit;
    669 		} else {
    670 			wmep->wmep_acm = pBssPhyParam->acm;
    671 			wmep->wmep_aifsn = pBssPhyParam->aifsn;
    672 			wmep->wmep_logcwmin = pBssPhyParam->logcwmin;
    673 			wmep->wmep_logcwmax = pBssPhyParam->logcwmax;
    674 			wmep->wmep_txopLimit = pBssPhyParam->txopLimit;
    675 
    676 		}
    677 		IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
    678 			"%s: %s chan [acm %u aifsn %u log2(cwmin) %u "
    679 			"log2(cwmax) %u txpoLimit %u]\n", __func__
    680 			, ieee80211_wme_acnames[i]
    681 			, wmep->wmep_acm
    682 			, wmep->wmep_aifsn
    683 			, wmep->wmep_logcwmin
    684 			, wmep->wmep_logcwmax
    685 			, wmep->wmep_txopLimit
    686 		);
    687 
    688 		wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[i];
    689 		wmep->wmep_acm = pBssPhyParam->acm;
    690 		wmep->wmep_aifsn = pBssPhyParam->aifsn;
    691 		wmep->wmep_logcwmin = pBssPhyParam->logcwmin;
    692 		wmep->wmep_logcwmax = pBssPhyParam->logcwmax;
    693 		wmep->wmep_txopLimit = pBssPhyParam->txopLimit;
    694 		IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
    695 			"%s: %s  bss [acm %u aifsn %u log2(cwmin) %u "
    696 			"log2(cwmax) %u txpoLimit %u]\n", __func__
    697 			, ieee80211_wme_acnames[i]
    698 			, wmep->wmep_acm
    699 			, wmep->wmep_aifsn
    700 			, wmep->wmep_logcwmin
    701 			, wmep->wmep_logcwmax
    702 			, wmep->wmep_txopLimit
    703 		);
    704 	}
    705 	/* NB: check ic_bss to avoid NULL deref on initial attach */
    706 	if (ic->ic_bss != NULL) {
    707 		/*
    708 		 * Calculate agressive mode switching threshold based
    709 		 * on beacon interval.  This doesn't need locking since
    710 		 * we're only called before entering the RUN state at
    711 		 * which point we start sending beacon frames.
    712 		 */
    713 		wme->wme_hipri_switch_thresh =
    714 			(HIGH_PRI_SWITCH_THRESH * ic->ic_bss->ni_intval) / 100;
    715 		ieee80211_wme_updateparams(ic);
    716 	}
    717 }
    718 
    719 /*
    720  * Update WME parameters for ourself and the BSS.
    721  */
    722 void
    723 ieee80211_wme_updateparams_locked(struct ieee80211com *ic)
    724 {
    725 	static const paramType phyParam[IEEE80211_MODE_MAX] = {
    726 		{ 2, 4, 10, 64 },	/* IEEE80211_MODE_AUTO */
    727 		{ 2, 4, 10, 64 },	/* IEEE80211_MODE_11A */
    728 		{ 2, 5, 10, 64 },	/* IEEE80211_MODE_11B */
    729 		{ 2, 4, 10, 64 },	/* IEEE80211_MODE_11G */
    730 		{ 2, 5, 10, 64 },	/* IEEE80211_MODE_FH */
    731 		{ 1, 3, 10, 64 },	/* IEEE80211_MODE_TURBO_A */
    732 		{ 1, 3, 10, 64 },	/* IEEE80211_MODE_TURBO_G */
    733 	};
    734 	struct ieee80211_wme_state *wme = &ic->ic_wme;
    735 	const struct wmeParams *wmep;
    736 	struct wmeParams *chanp, *bssp;
    737 	int i;
    738 
    739        	/* set up the channel access parameters for the physical device */
    740 	for (i = 0; i < WME_NUM_AC; i++) {
    741 		chanp = &wme->wme_chanParams.cap_wmeParams[i];
    742 		wmep = &wme->wme_wmeChanParams.cap_wmeParams[i];
    743 		chanp->wmep_aifsn = wmep->wmep_aifsn;
    744 		chanp->wmep_logcwmin = wmep->wmep_logcwmin;
    745 		chanp->wmep_logcwmax = wmep->wmep_logcwmax;
    746 		chanp->wmep_txopLimit = wmep->wmep_txopLimit;
    747 
    748 		chanp = &wme->wme_bssChanParams.cap_wmeParams[i];
    749 		wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[i];
    750 		chanp->wmep_aifsn = wmep->wmep_aifsn;
    751 		chanp->wmep_logcwmin = wmep->wmep_logcwmin;
    752 		chanp->wmep_logcwmax = wmep->wmep_logcwmax;
    753 		chanp->wmep_txopLimit = wmep->wmep_txopLimit;
    754 	}
    755 
    756 	/*
    757 	 * This implements agressive mode as found in certain
    758 	 * vendors' AP's.  When there is significant high
    759 	 * priority (VI/VO) traffic in the BSS throttle back BE
    760 	 * traffic by using conservative parameters.  Otherwise
    761 	 * BE uses agressive params to optimize performance of
    762 	 * legacy/non-QoS traffic.
    763 	 */
    764         if ((ic->ic_opmode == IEEE80211_M_HOSTAP &&
    765 	     (wme->wme_flags & WME_F_AGGRMODE) == 0) ||
    766 	    (ic->ic_opmode != IEEE80211_M_HOSTAP &&
    767 	     (ic->ic_bss->ni_flags & IEEE80211_NODE_QOS) == 0) ||
    768 	    (ic->ic_flags & IEEE80211_F_WME) == 0) {
    769 		chanp = &wme->wme_chanParams.cap_wmeParams[WME_AC_BE];
    770 		bssp = &wme->wme_bssChanParams.cap_wmeParams[WME_AC_BE];
    771 
    772 		chanp->wmep_aifsn = bssp->wmep_aifsn =
    773 			phyParam[ic->ic_curmode].aifsn;
    774 		chanp->wmep_logcwmin = bssp->wmep_logcwmin =
    775 			phyParam[ic->ic_curmode].logcwmin;
    776 		chanp->wmep_logcwmax = bssp->wmep_logcwmax =
    777 			phyParam[ic->ic_curmode].logcwmax;
    778 		chanp->wmep_txopLimit = bssp->wmep_txopLimit =
    779 			(ic->ic_caps & IEEE80211_C_BURST) ?
    780 				phyParam[ic->ic_curmode].txopLimit : 0;
    781 		IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
    782 			"%s: %s [acm %u aifsn %u log2(cwmin) %u "
    783 			"log2(cwmax) %u txpoLimit %u]\n", __func__
    784 			, ieee80211_wme_acnames[WME_AC_BE]
    785 			, chanp->wmep_acm
    786 			, chanp->wmep_aifsn
    787 			, chanp->wmep_logcwmin
    788 			, chanp->wmep_logcwmax
    789 			, chanp->wmep_txopLimit
    790 		);
    791 	}
    792 
    793 	if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
    794 	    ic->ic_sta_assoc < 2 && (wme->wme_flags & WME_F_AGGRMODE) == 0) {
    795         	static const u_int8_t logCwMin[IEEE80211_MODE_MAX] = {
    796               		3,	/* IEEE80211_MODE_AUTO */
    797               		3,	/* IEEE80211_MODE_11A */
    798               		4,	/* IEEE80211_MODE_11B */
    799               		3,	/* IEEE80211_MODE_11G */
    800               		4,	/* IEEE80211_MODE_FH */
    801               		3,	/* IEEE80211_MODE_TURBO_A */
    802               		3,	/* IEEE80211_MODE_TURBO_G */
    803 		};
    804 		chanp = &wme->wme_chanParams.cap_wmeParams[WME_AC_BE];
    805 		bssp = &wme->wme_bssChanParams.cap_wmeParams[WME_AC_BE];
    806 
    807 		chanp->wmep_logcwmin = bssp->wmep_logcwmin =
    808 			logCwMin[ic->ic_curmode];
    809 		IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
    810 			"%s: %s log2(cwmin) %u\n", __func__
    811 			, ieee80211_wme_acnames[WME_AC_BE]
    812 			, chanp->wmep_logcwmin
    813 		);
    814     	}
    815 	if (ic->ic_opmode == IEEE80211_M_HOSTAP) {	/* XXX ibss? */
    816 		/*
    817 		 * Arrange for a beacon update and bump the parameter
    818 		 * set number so associated stations load the new values.
    819 		 */
    820 		wme->wme_bssChanParams.cap_info =
    821 			(wme->wme_bssChanParams.cap_info+1) & WME_QOSINFO_COUNT;
    822 		ic->ic_flags |= IEEE80211_F_WMEUPDATE;
    823 	}
    824 
    825 	wme->wme_update(ic);
    826 
    827 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_WME,
    828 		"%s: WME params updated, cap_info 0x%x\n", __func__,
    829 		ic->ic_opmode == IEEE80211_M_STA ?
    830 			wme->wme_wmeChanParams.cap_info :
    831 			wme->wme_bssChanParams.cap_info);
    832 }
    833 
    834 void
    835 ieee80211_wme_updateparams(struct ieee80211com *ic)
    836 {
    837 
    838 	if (ic->ic_caps & IEEE80211_C_WME) {
    839 		IEEE80211_BEACON_LOCK(ic);
    840 		ieee80211_wme_updateparams_locked(ic);
    841 		IEEE80211_BEACON_UNLOCK(ic);
    842 	}
    843 }
    844 
    845 static int
    846 ieee80211_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
    847 {
    848 	struct ifnet *ifp = ic->ic_ifp;
    849 	struct ieee80211_node_table *nt;
    850 	struct ieee80211_node *ni;
    851 	enum ieee80211_state ostate;
    852 
    853 	ostate = ic->ic_state;
    854 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_STATE, "%s: %s -> %s\n", __func__,
    855 		ieee80211_state_name[ostate], ieee80211_state_name[nstate]);
    856 	ic->ic_state = nstate;			/* state transition */
    857 	ni = ic->ic_bss;			/* NB: no reference held */
    858 	switch (nstate) {
    859 	case IEEE80211_S_INIT:
    860 		switch (ostate) {
    861 		case IEEE80211_S_INIT:
    862 			break;
    863 		case IEEE80211_S_RUN:
    864 			switch (ic->ic_opmode) {
    865 			case IEEE80211_M_STA:
    866 				IEEE80211_SEND_MGMT(ic, ni,
    867 				    IEEE80211_FC0_SUBTYPE_DISASSOC,
    868 				    IEEE80211_REASON_ASSOC_LEAVE);
    869 				ieee80211_sta_leave(ic, ni);
    870 				break;
    871 			case IEEE80211_M_HOSTAP:
    872 				nt = &ic->ic_sta;
    873 				IEEE80211_NODE_LOCK(nt);
    874 				TAILQ_FOREACH(ni, &nt->nt_node, ni_list) {
    875 					if (ni->ni_associd == 0)
    876 						continue;
    877 					IEEE80211_SEND_MGMT(ic, ni,
    878 					    IEEE80211_FC0_SUBTYPE_DISASSOC,
    879 					    IEEE80211_REASON_ASSOC_LEAVE);
    880 				}
    881 				IEEE80211_NODE_UNLOCK(nt);
    882 				break;
    883 			default:
    884 				break;
    885 			}
    886 			goto reset;
    887 		case IEEE80211_S_ASSOC:
    888 			switch (ic->ic_opmode) {
    889 			case IEEE80211_M_STA:
    890 				IEEE80211_SEND_MGMT(ic, ni,
    891 				    IEEE80211_FC0_SUBTYPE_DEAUTH,
    892 				    IEEE80211_REASON_AUTH_LEAVE);
    893 				break;
    894 			case IEEE80211_M_HOSTAP:
    895 				nt = &ic->ic_sta;
    896 				IEEE80211_NODE_LOCK(nt);
    897 				TAILQ_FOREACH(ni, &nt->nt_node, ni_list) {
    898 					IEEE80211_SEND_MGMT(ic, ni,
    899 					    IEEE80211_FC0_SUBTYPE_DEAUTH,
    900 					    IEEE80211_REASON_AUTH_LEAVE);
    901 				}
    902 				IEEE80211_NODE_UNLOCK(nt);
    903 				break;
    904 			default:
    905 				break;
    906 			}
    907 			goto reset;
    908 		case IEEE80211_S_SCAN:
    909 			ieee80211_cancel_scan(ic);
    910 			goto reset;
    911 		case IEEE80211_S_AUTH:
    912 		reset:
    913 			ic->ic_mgt_timer = 0;
    914 			IF_PURGE(&ic->ic_mgtq);
    915 			ieee80211_reset_bss(ic);
    916 			break;
    917 		}
    918 		if (ic->ic_auth->ia_detach != NULL)
    919 			ic->ic_auth->ia_detach(ic);
    920 		break;
    921 	case IEEE80211_S_SCAN:
    922 		switch (ostate) {
    923 		case IEEE80211_S_INIT:
    924 			if ((ic->ic_opmode == IEEE80211_M_HOSTAP ||
    925 			     ic->ic_opmode == IEEE80211_M_IBSS ||
    926 			     ic->ic_opmode == IEEE80211_M_AHDEMO) &&
    927 			    ic->ic_des_chan != IEEE80211_CHAN_ANYC) {
    928 				/*
    929 				 * AP operation and we already have a channel;
    930 				 * bypass the scan and startup immediately.
    931 				 */
    932 				ieee80211_create_ibss(ic, ic->ic_des_chan);
    933 			} else {
    934 				ieee80211_begin_scan(ic, arg);
    935 			}
    936 			break;
    937 		case IEEE80211_S_SCAN:
    938 			/*
    939 			 * Scan next. If doing an active scan and the
    940 			 * channel is not marked passive-only then send
    941 			 * a probe request.  Otherwise just listen for
    942 			 * beacons on the channel.
    943 			 */
    944 			if ((ic->ic_flags & IEEE80211_F_ASCAN) &&
    945 			    (ni->ni_chan->ic_flags & IEEE80211_CHAN_PASSIVE) == 0) {
    946 				IEEE80211_SEND_MGMT(ic, ni,
    947 				    IEEE80211_FC0_SUBTYPE_PROBE_REQ, 0);
    948 			}
    949 			break;
    950 		case IEEE80211_S_RUN:
    951 			/* beacon miss */
    952 			IEEE80211_DPRINTF(ic, IEEE80211_MSG_STATE,
    953 				"no recent beacons from %s; rescanning\n",
    954 				ether_sprintf(ic->ic_bss->ni_bssid));
    955 			ieee80211_sta_leave(ic, ni);
    956 			ic->ic_flags &= ~IEEE80211_F_SIBSS;	/* XXX */
    957 			/* FALLTHRU */
    958 		case IEEE80211_S_AUTH:
    959 		case IEEE80211_S_ASSOC:
    960 			/* timeout restart scan */
    961 			ni = ieee80211_find_node(&ic->ic_scan,
    962 				ic->ic_bss->ni_macaddr);
    963 			if (ni != NULL) {
    964 				ni->ni_fails++;
    965 				ieee80211_unref_node(&ni);
    966 			}
    967 			ieee80211_begin_scan(ic, arg);
    968 			break;
    969 		}
    970 		break;
    971 	case IEEE80211_S_AUTH:
    972 		switch (ostate) {
    973 		case IEEE80211_S_INIT:
    974 		case IEEE80211_S_SCAN:
    975 			IEEE80211_SEND_MGMT(ic, ni,
    976 			    IEEE80211_FC0_SUBTYPE_AUTH, 1);
    977 			break;
    978 		case IEEE80211_S_AUTH:
    979 		case IEEE80211_S_ASSOC:
    980 			switch (arg) {
    981 			case IEEE80211_FC0_SUBTYPE_AUTH:
    982 				/* ??? */
    983 				IEEE80211_SEND_MGMT(ic, ni,
    984 				    IEEE80211_FC0_SUBTYPE_AUTH, 2);
    985 				break;
    986 			case IEEE80211_FC0_SUBTYPE_DEAUTH:
    987 				/* ignore and retry scan on timeout */
    988 				break;
    989 			}
    990 			break;
    991 		case IEEE80211_S_RUN:
    992 			switch (arg) {
    993 			case IEEE80211_FC0_SUBTYPE_AUTH:
    994 				IEEE80211_SEND_MGMT(ic, ni,
    995 				    IEEE80211_FC0_SUBTYPE_AUTH, 2);
    996 				ic->ic_state = ostate;	/* stay RUN */
    997 				break;
    998 			case IEEE80211_FC0_SUBTYPE_DEAUTH:
    999 				/* try to reauth */
   1000 				IEEE80211_SEND_MGMT(ic, ni,
   1001 				    IEEE80211_FC0_SUBTYPE_AUTH, 1);
   1002 				ieee80211_sta_leave(ic, ni);
   1003 				break;
   1004 			}
   1005 			break;
   1006 		}
   1007 		break;
   1008 	case IEEE80211_S_ASSOC:
   1009 		switch (ostate) {
   1010 		case IEEE80211_S_INIT:
   1011 		case IEEE80211_S_SCAN:
   1012 		case IEEE80211_S_ASSOC:
   1013 			IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
   1014 				"%s: invalid transition\n", __func__);
   1015 			break;
   1016 		case IEEE80211_S_AUTH:
   1017 			IEEE80211_SEND_MGMT(ic, ni,
   1018 			    IEEE80211_FC0_SUBTYPE_ASSOC_REQ, 0);
   1019 			break;
   1020 		case IEEE80211_S_RUN:
   1021 			IEEE80211_SEND_MGMT(ic, ni,
   1022 			    IEEE80211_FC0_SUBTYPE_ASSOC_REQ, 1);
   1023 			ieee80211_sta_leave(ic, ni);
   1024 			break;
   1025 		}
   1026 		break;
   1027 	case IEEE80211_S_RUN:
   1028 		if (ic->ic_flags & IEEE80211_F_WPA) {
   1029 			/* XXX validate prerequisites */
   1030 		}
   1031 		switch (ostate) {
   1032 		case IEEE80211_S_INIT:
   1033 			if (ic->ic_opmode == IEEE80211_M_MONITOR)
   1034 				break;
   1035 			/* fall thru... */
   1036 		case IEEE80211_S_AUTH:
   1037 			IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY,
   1038 				"%s: invalid transition\n", __func__);
   1039 			/* fall thru... */
   1040 		case IEEE80211_S_RUN:
   1041 			break;
   1042 		case IEEE80211_S_SCAN:		/* adhoc/hostap mode */
   1043 		case IEEE80211_S_ASSOC:		/* infra mode */
   1044 			IASSERT(ni->ni_txrate < ni->ni_rates.rs_nrates,
   1045 				("%s: bogus xmit rate %u setup\n", __func__,
   1046 					ni->ni_txrate));
   1047 #ifdef IEEE80211_DEBUG
   1048 			if (ieee80211_msg_debug(ic)) {
   1049 				if (ic->ic_opmode == IEEE80211_M_STA)
   1050 					if_printf(ifp, "associated ");
   1051 				else
   1052 					if_printf(ifp, "synchronized ");
   1053 				printf("with %s ssid ",
   1054 				    ether_sprintf(ni->ni_bssid));
   1055 				ieee80211_print_essid(ic->ic_bss->ni_essid,
   1056 				    ni->ni_esslen);
   1057 				printf(" channel %d start %uMb\n",
   1058 					ieee80211_chan2ieee(ic, ni->ni_chan),
   1059 					IEEE80211_RATE2MBS(ni->ni_rates.rs_rates[ni->ni_txrate]));
   1060 			}
   1061 #endif
   1062 			ic->ic_mgt_timer = 0;
   1063 			if (ic->ic_opmode == IEEE80211_M_STA)
   1064 				ieee80211_notify_node_join(ic, ni,
   1065 					arg == IEEE80211_FC0_SUBTYPE_ASSOC_RESP);
   1066 			(*ifp->if_start)(ifp);	/* XXX not authorized yet */
   1067 			break;
   1068 		}
   1069 		/*
   1070 		 * Start/stop the authenticator when operating as an
   1071 		 * AP.  We delay until here to allow configuration to
   1072 		 * happen out of order.
   1073 		 */
   1074 		if (ic->ic_opmode == IEEE80211_M_HOSTAP && /* XXX IBSS/AHDEMO */
   1075 		    ic->ic_auth->ia_attach != NULL) {
   1076 			/* XXX check failure */
   1077 			ic->ic_auth->ia_attach(ic);
   1078 		} else if (ic->ic_auth->ia_detach != NULL) {
   1079 			ic->ic_auth->ia_detach(ic);
   1080 		}
   1081 		/*
   1082 		 * When 802.1x is not in use mark the port authorized
   1083 		 * at this point so traffic can flow.
   1084 		 */
   1085 		if (ni->ni_authmode != IEEE80211_AUTH_8021X)
   1086 			ieee80211_node_authorize(ic, ni);
   1087 		/*
   1088 		 * Enable inactivity processing.
   1089 		 * XXX
   1090 		 */
   1091 		ic->ic_scan.nt_inact_timer = IEEE80211_INACT_WAIT;
   1092 		ic->ic_sta.nt_inact_timer = IEEE80211_INACT_WAIT;
   1093 		break;
   1094 	}
   1095 	return 0;
   1096 }
   1097