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