Home | History | Annotate | Line # | Download | only in net80211
ieee80211_node.c revision 1.10.2.1
      1  1.10.2.1     jmc /*	$NetBSD: ieee80211_node.c,v 1.10.2.1 2004/08/03 16:54:45 jmc Exp $	*/
      2       1.1  dyoung /*-
      3       1.1  dyoung  * Copyright (c) 2001 Atsushi Onoe
      4       1.1  dyoung  * Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
      5       1.1  dyoung  * All rights reserved.
      6       1.1  dyoung  *
      7       1.1  dyoung  * Redistribution and use in source and binary forms, with or without
      8       1.1  dyoung  * modification, are permitted provided that the following conditions
      9       1.1  dyoung  * are met:
     10       1.1  dyoung  * 1. Redistributions of source code must retain the above copyright
     11       1.1  dyoung  *    notice, this list of conditions and the following disclaimer.
     12       1.1  dyoung  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1  dyoung  *    notice, this list of conditions and the following disclaimer in the
     14       1.1  dyoung  *    documentation and/or other materials provided with the distribution.
     15       1.1  dyoung  * 3. The name of the author may not be used to endorse or promote products
     16       1.1  dyoung  *    derived from this software without specific prior written permission.
     17       1.1  dyoung  *
     18       1.1  dyoung  * Alternatively, this software may be distributed under the terms of the
     19       1.1  dyoung  * GNU General Public License ("GPL") version 2 as published by the Free
     20       1.1  dyoung  * Software Foundation.
     21       1.1  dyoung  *
     22       1.1  dyoung  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23       1.1  dyoung  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24       1.1  dyoung  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25       1.1  dyoung  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26       1.1  dyoung  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27       1.1  dyoung  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28       1.1  dyoung  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29       1.1  dyoung  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30       1.1  dyoung  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31       1.1  dyoung  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32       1.1  dyoung  */
     33       1.1  dyoung 
     34       1.1  dyoung #include <sys/cdefs.h>
     35       1.3  dyoung #ifdef __FreeBSD__
     36       1.9  dyoung __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_node.c,v 1.13 2003/11/09 23:36:46 sam Exp $");
     37       1.3  dyoung #else
     38  1.10.2.1     jmc __KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.10.2.1 2004/08/03 16:54:45 jmc Exp $");
     39       1.3  dyoung #endif
     40       1.1  dyoung 
     41       1.1  dyoung #include "opt_inet.h"
     42       1.1  dyoung 
     43       1.1  dyoung #include <sys/param.h>
     44       1.1  dyoung #include <sys/systm.h>
     45       1.1  dyoung #include <sys/mbuf.h>
     46       1.1  dyoung #include <sys/malloc.h>
     47       1.1  dyoung #include <sys/kernel.h>
     48       1.1  dyoung #include <sys/socket.h>
     49       1.1  dyoung #include <sys/sockio.h>
     50       1.1  dyoung #include <sys/endian.h>
     51       1.1  dyoung #include <sys/errno.h>
     52       1.4  dyoung #ifdef __FreeBSD__
     53       1.1  dyoung #include <sys/bus.h>
     54       1.4  dyoung #endif
     55       1.1  dyoung #include <sys/proc.h>
     56       1.1  dyoung #include <sys/sysctl.h>
     57       1.1  dyoung 
     58       1.2  dyoung #ifdef __FreeBSD__
     59       1.1  dyoung #include <machine/atomic.h>
     60       1.2  dyoung #endif
     61       1.1  dyoung 
     62       1.1  dyoung #include <net/if.h>
     63       1.1  dyoung #include <net/if_dl.h>
     64       1.1  dyoung #include <net/if_media.h>
     65       1.1  dyoung #include <net/if_arp.h>
     66       1.2  dyoung #ifdef __FreeBSD__
     67       1.1  dyoung #include <net/ethernet.h>
     68       1.4  dyoung #else
     69       1.4  dyoung #include <net/if_ether.h>
     70       1.2  dyoung #endif
     71       1.1  dyoung #include <net/if_llc.h>
     72       1.1  dyoung 
     73       1.1  dyoung #include <net80211/ieee80211_var.h>
     74       1.4  dyoung #include <net80211/ieee80211_compat.h>
     75       1.1  dyoung 
     76       1.1  dyoung #include <net/bpf.h>
     77       1.1  dyoung 
     78       1.1  dyoung #ifdef INET
     79       1.1  dyoung #include <netinet/in.h>
     80       1.4  dyoung #ifdef __FreeBSD__
     81       1.1  dyoung #include <netinet/if_ether.h>
     82       1.4  dyoung #else
     83       1.4  dyoung #include <net/if_ether.h>
     84       1.4  dyoung #endif
     85       1.1  dyoung #endif
     86       1.1  dyoung 
     87       1.1  dyoung static struct ieee80211_node *ieee80211_node_alloc(struct ieee80211com *);
     88       1.1  dyoung static void ieee80211_node_free(struct ieee80211com *, struct ieee80211_node *);
     89       1.1  dyoung static void ieee80211_node_copy(struct ieee80211com *,
     90       1.1  dyoung 		struct ieee80211_node *, const struct ieee80211_node *);
     91       1.9  dyoung static u_int8_t ieee80211_node_getrssi(struct ieee80211com *,
     92       1.9  dyoung 		struct ieee80211_node *);
     93       1.9  dyoung 
     94       1.1  dyoung static void ieee80211_setup_node(struct ieee80211com *ic,
     95       1.1  dyoung 		struct ieee80211_node *ni, u_int8_t *macaddr);
     96       1.1  dyoung static void _ieee80211_free_node(struct ieee80211com *,
     97       1.1  dyoung 		struct ieee80211_node *);
     98       1.1  dyoung 
     99       1.9  dyoung MALLOC_DEFINE(M_80211_NODE, "node", "802.11 node state");
    100       1.9  dyoung 
    101       1.1  dyoung void
    102       1.1  dyoung ieee80211_node_attach(struct ifnet *ifp)
    103       1.1  dyoung {
    104       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    105       1.1  dyoung 
    106       1.2  dyoung #ifdef __FreeBSD__
    107       1.1  dyoung 	/* XXX need unit */
    108       1.9  dyoung 	IEEE80211_NODE_LOCK_INIT(ic, ifp->if_xname);
    109       1.2  dyoung #endif
    110       1.1  dyoung 	TAILQ_INIT(&ic->ic_node);
    111       1.1  dyoung 	ic->ic_node_alloc = ieee80211_node_alloc;
    112       1.1  dyoung 	ic->ic_node_free = ieee80211_node_free;
    113       1.1  dyoung 	ic->ic_node_copy = ieee80211_node_copy;
    114       1.9  dyoung 	ic->ic_node_getrssi = ieee80211_node_getrssi;
    115       1.9  dyoung 	ic->ic_scangen = 1;
    116       1.1  dyoung }
    117       1.1  dyoung 
    118       1.1  dyoung void
    119       1.1  dyoung ieee80211_node_lateattach(struct ifnet *ifp)
    120       1.1  dyoung {
    121       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    122       1.1  dyoung 
    123       1.1  dyoung 	ic->ic_bss = (*ic->ic_node_alloc)(ic);
    124      1.10  dyoung 	IASSERT(ic->ic_bss != NULL, ("unable to setup inital BSS node"));
    125       1.1  dyoung 	ic->ic_bss->ni_chan = IEEE80211_CHAN_ANYC;
    126       1.1  dyoung }
    127       1.1  dyoung 
    128       1.1  dyoung void
    129       1.1  dyoung ieee80211_node_detach(struct ifnet *ifp)
    130       1.1  dyoung {
    131       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    132       1.1  dyoung 
    133       1.1  dyoung 	if (ic->ic_bss != NULL)
    134       1.1  dyoung 		(*ic->ic_node_free)(ic, ic->ic_bss);
    135       1.1  dyoung 	ieee80211_free_allnodes(ic);
    136       1.2  dyoung #ifdef __FreeBSD__
    137       1.9  dyoung 	IEEE80211_NODE_LOCK_DESTROY(ic);
    138       1.2  dyoung #endif
    139       1.1  dyoung }
    140       1.1  dyoung 
    141       1.1  dyoung /*
    142       1.1  dyoung  * AP scanning support.
    143       1.1  dyoung  */
    144       1.1  dyoung 
    145       1.1  dyoung /*
    146       1.1  dyoung  * Initialize the active channel set based on the set
    147       1.1  dyoung  * of available channels and the current PHY mode.
    148       1.1  dyoung  */
    149       1.1  dyoung static void
    150       1.1  dyoung ieee80211_reset_scan(struct ifnet *ifp)
    151       1.1  dyoung {
    152       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    153       1.1  dyoung 
    154       1.1  dyoung 	memcpy(ic->ic_chan_scan, ic->ic_chan_active,
    155       1.1  dyoung 		sizeof(ic->ic_chan_active));
    156       1.1  dyoung 	/* NB: hack, setup so next_scan starts with the first channel */
    157       1.1  dyoung 	if (ic->ic_bss->ni_chan == IEEE80211_CHAN_ANYC)
    158       1.1  dyoung 		ic->ic_bss->ni_chan = &ic->ic_channels[IEEE80211_CHAN_MAX];
    159       1.1  dyoung }
    160       1.1  dyoung 
    161       1.1  dyoung /*
    162       1.1  dyoung  * Begin an active scan.
    163       1.1  dyoung  */
    164       1.1  dyoung void
    165       1.1  dyoung ieee80211_begin_scan(struct ifnet *ifp)
    166       1.1  dyoung {
    167       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    168       1.1  dyoung 
    169       1.1  dyoung 	/*
    170       1.1  dyoung 	 * In all but hostap mode scanning starts off in
    171       1.1  dyoung 	 * an active mode before switching to passive.
    172       1.1  dyoung 	 */
    173       1.9  dyoung 	if (ic->ic_opmode != IEEE80211_M_HOSTAP) {
    174       1.1  dyoung 		ic->ic_flags |= IEEE80211_F_ASCAN;
    175       1.9  dyoung 		ic->ic_stats.is_scan_active++;
    176       1.9  dyoung 	} else
    177       1.9  dyoung 		ic->ic_stats.is_scan_passive++;
    178       1.1  dyoung 	if (ifp->if_flags & IFF_DEBUG)
    179       1.1  dyoung 		if_printf(ifp, "begin %s scan\n",
    180       1.1  dyoung 			(ic->ic_flags & IEEE80211_F_ASCAN) ?
    181       1.1  dyoung 				"active" : "passive");
    182       1.1  dyoung 	/*
    183       1.1  dyoung 	 * Clear scan state and flush any previously seen
    184       1.1  dyoung 	 * AP's.  Note that the latter assumes we don't act
    185       1.1  dyoung 	 * as both an AP and a station, otherwise we'll
    186       1.1  dyoung 	 * potentially flush state of stations associated
    187       1.1  dyoung 	 * with us.
    188       1.1  dyoung 	 */
    189       1.1  dyoung 	ieee80211_reset_scan(ifp);
    190       1.1  dyoung 	ieee80211_free_allnodes(ic);
    191       1.1  dyoung 
    192       1.1  dyoung 	/* Scan the next channel. */
    193       1.1  dyoung 	ieee80211_next_scan(ifp);
    194       1.1  dyoung }
    195       1.1  dyoung 
    196       1.1  dyoung /*
    197       1.1  dyoung  * Switch to the next channel marked for scanning.
    198       1.1  dyoung  */
    199       1.1  dyoung void
    200       1.1  dyoung ieee80211_next_scan(struct ifnet *ifp)
    201       1.1  dyoung {
    202       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    203       1.1  dyoung 	struct ieee80211_channel *chan;
    204       1.1  dyoung 
    205       1.1  dyoung 	chan = ic->ic_bss->ni_chan;
    206       1.1  dyoung 	for (;;) {
    207       1.1  dyoung 		if (++chan > &ic->ic_channels[IEEE80211_CHAN_MAX])
    208       1.1  dyoung 			chan = &ic->ic_channels[0];
    209       1.1  dyoung 		if (isset(ic->ic_chan_scan, ieee80211_chan2ieee(ic, chan))) {
    210       1.1  dyoung 			/*
    211       1.1  dyoung 			 * Honor channels marked passive-only
    212       1.1  dyoung 			 * during an active scan.
    213       1.1  dyoung 			 */
    214       1.1  dyoung 			if ((ic->ic_flags & IEEE80211_F_ASCAN) == 0 ||
    215       1.1  dyoung 			    (chan->ic_flags & IEEE80211_CHAN_PASSIVE) == 0)
    216       1.1  dyoung 				break;
    217       1.1  dyoung 		}
    218       1.1  dyoung 		if (chan == ic->ic_bss->ni_chan) {
    219       1.1  dyoung 			ieee80211_end_scan(ifp);
    220       1.1  dyoung 			return;
    221       1.1  dyoung 		}
    222       1.1  dyoung 	}
    223       1.1  dyoung 	clrbit(ic->ic_chan_scan, ieee80211_chan2ieee(ic, chan));
    224       1.1  dyoung 	IEEE80211_DPRINTF(("ieee80211_next_scan: chan %d->%d\n",
    225       1.1  dyoung 	    ieee80211_chan2ieee(ic, ic->ic_bss->ni_chan),
    226       1.1  dyoung 	    ieee80211_chan2ieee(ic, chan)));
    227       1.1  dyoung 	ic->ic_bss->ni_chan = chan;
    228       1.1  dyoung 	ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
    229       1.1  dyoung }
    230       1.1  dyoung 
    231       1.1  dyoung void
    232       1.1  dyoung ieee80211_create_ibss(struct ieee80211com* ic, struct ieee80211_channel *chan)
    233       1.1  dyoung {
    234       1.1  dyoung 	struct ieee80211_node *ni;
    235       1.1  dyoung 	struct ifnet *ifp = &ic->ic_if;
    236       1.1  dyoung 
    237       1.1  dyoung 	ni = ic->ic_bss;
    238       1.1  dyoung 	if (ifp->if_flags & IFF_DEBUG)
    239       1.1  dyoung 		if_printf(ifp, "creating ibss\n");
    240       1.1  dyoung 	ic->ic_flags |= IEEE80211_F_SIBSS;
    241       1.1  dyoung 	ni->ni_chan = chan;
    242       1.1  dyoung 	ni->ni_rates = ic->ic_sup_rates[ieee80211_chan2mode(ic, ni->ni_chan)];
    243       1.1  dyoung 	IEEE80211_ADDR_COPY(ni->ni_macaddr, ic->ic_myaddr);
    244       1.1  dyoung 	IEEE80211_ADDR_COPY(ni->ni_bssid, ic->ic_myaddr);
    245       1.1  dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS)
    246       1.1  dyoung 		ni->ni_bssid[0] |= 0x02;	/* local bit for IBSS */
    247       1.1  dyoung 	ni->ni_esslen = ic->ic_des_esslen;
    248       1.1  dyoung 	memcpy(ni->ni_essid, ic->ic_des_essid, ni->ni_esslen);
    249       1.1  dyoung 	ni->ni_rssi = 0;
    250       1.1  dyoung 	ni->ni_rstamp = 0;
    251       1.1  dyoung 	memset(ni->ni_tstamp, 0, sizeof(ni->ni_tstamp));
    252       1.1  dyoung 	ni->ni_intval = ic->ic_lintval;
    253       1.1  dyoung 	ni->ni_capinfo = IEEE80211_CAPINFO_IBSS;
    254       1.1  dyoung 	if (ic->ic_flags & IEEE80211_F_WEPON)
    255       1.1  dyoung 		ni->ni_capinfo |= IEEE80211_CAPINFO_PRIVACY;
    256       1.1  dyoung 	if (ic->ic_phytype == IEEE80211_T_FH) {
    257       1.1  dyoung 		ni->ni_fhdwell = 200;	/* XXX */
    258       1.1  dyoung 		ni->ni_fhindex = 1;
    259       1.1  dyoung 	}
    260       1.1  dyoung 	ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
    261       1.1  dyoung }
    262       1.1  dyoung 
    263       1.5  dyoung int
    264       1.5  dyoung ieee80211_match_bss(struct ieee80211com *ic, struct ieee80211_node *ni)
    265       1.5  dyoung {
    266       1.5  dyoung         struct ifnet *ifp = &ic->ic_if;
    267       1.5  dyoung         u_int8_t rate;
    268       1.5  dyoung         int fail;
    269       1.5  dyoung 
    270       1.5  dyoung 	fail = 0;
    271       1.5  dyoung 	if (isclr(ic->ic_chan_active, ieee80211_chan2ieee(ic, ni->ni_chan)))
    272       1.5  dyoung 		fail |= 0x01;
    273       1.5  dyoung 	if (ic->ic_des_chan != IEEE80211_CHAN_ANYC &&
    274       1.5  dyoung 	    ni->ni_chan != ic->ic_des_chan)
    275       1.5  dyoung 		fail |= 0x01;
    276       1.5  dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS) {
    277       1.5  dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_IBSS) == 0)
    278       1.5  dyoung 			fail |= 0x02;
    279       1.5  dyoung 	} else {
    280       1.5  dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_ESS) == 0)
    281       1.5  dyoung 			fail |= 0x02;
    282       1.5  dyoung 	}
    283       1.5  dyoung 	if (ic->ic_flags & IEEE80211_F_WEPON) {
    284       1.5  dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY) == 0)
    285       1.5  dyoung 			fail |= 0x04;
    286       1.5  dyoung 	} else {
    287       1.5  dyoung 		if (ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY)
    288       1.5  dyoung 			fail |= 0x04;
    289       1.5  dyoung 	}
    290       1.5  dyoung 	rate = ieee80211_fix_rate(ic, ni, IEEE80211_F_DONEGO);
    291       1.5  dyoung 	if (rate & IEEE80211_RATE_BASIC)
    292       1.5  dyoung 		fail |= 0x08;
    293       1.5  dyoung 	if (ic->ic_des_esslen != 0 &&
    294       1.5  dyoung 	    (ni->ni_esslen != ic->ic_des_esslen ||
    295       1.5  dyoung 	     memcmp(ni->ni_essid, ic->ic_des_essid,
    296       1.5  dyoung 	     ic->ic_des_esslen != 0)))
    297       1.5  dyoung 		fail |= 0x10;
    298       1.5  dyoung 	if ((ic->ic_flags & IEEE80211_F_DESBSSID) &&
    299       1.5  dyoung 	    !IEEE80211_ADDR_EQ(ic->ic_des_bssid, ni->ni_bssid))
    300       1.5  dyoung 		fail |= 0x20;
    301       1.5  dyoung 	if (ifp->if_flags & IFF_DEBUG) {
    302       1.5  dyoung 		printf(" %c %s", fail ? '-' : '+',
    303       1.5  dyoung 		    ether_sprintf(ni->ni_macaddr));
    304       1.5  dyoung 		printf(" %s%c", ether_sprintf(ni->ni_bssid),
    305       1.5  dyoung 		    fail & 0x20 ? '!' : ' ');
    306       1.5  dyoung 		printf(" %3d%c", ieee80211_chan2ieee(ic, ni->ni_chan),
    307       1.5  dyoung 			fail & 0x01 ? '!' : ' ');
    308       1.5  dyoung 		printf(" %+4d", ni->ni_rssi);
    309       1.5  dyoung 		printf(" %2dM%c", (rate & IEEE80211_RATE_VAL) / 2,
    310       1.5  dyoung 		    fail & 0x08 ? '!' : ' ');
    311       1.5  dyoung 		printf(" %4s%c",
    312       1.5  dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_ESS) ? "ess" :
    313       1.5  dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_IBSS) ? "ibss" :
    314       1.5  dyoung 		    "????",
    315       1.5  dyoung 		    fail & 0x02 ? '!' : ' ');
    316       1.5  dyoung 		printf(" %3s%c ",
    317       1.5  dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY) ?
    318       1.5  dyoung 		    "wep" : "no",
    319       1.5  dyoung 		    fail & 0x04 ? '!' : ' ');
    320       1.5  dyoung 		ieee80211_print_essid(ni->ni_essid, ni->ni_esslen);
    321       1.5  dyoung 		printf("%s\n", fail & 0x10 ? "!" : "");
    322       1.5  dyoung 	}
    323       1.5  dyoung 	return fail;
    324       1.5  dyoung }
    325       1.5  dyoung 
    326       1.1  dyoung /*
    327       1.1  dyoung  * Complete a scan of potential channels.
    328       1.1  dyoung  */
    329       1.1  dyoung void
    330       1.1  dyoung ieee80211_end_scan(struct ifnet *ifp)
    331       1.1  dyoung {
    332       1.1  dyoung 	struct ieee80211com *ic = (void *)ifp;
    333       1.1  dyoung 	struct ieee80211_node *ni, *nextbs, *selbs;
    334       1.1  dyoung 	int i, fail;
    335       1.1  dyoung 
    336       1.1  dyoung 	ic->ic_flags &= ~IEEE80211_F_ASCAN;
    337       1.1  dyoung 	ni = TAILQ_FIRST(&ic->ic_node);
    338       1.1  dyoung 
    339       1.1  dyoung 	if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
    340       1.1  dyoung 		/* XXX off stack? */
    341       1.1  dyoung 		u_char occupied[roundup(IEEE80211_CHAN_MAX, NBBY)];
    342       1.1  dyoung 		/*
    343       1.1  dyoung 		 * The passive scan to look for existing AP's completed,
    344       1.1  dyoung 		 * select a channel to camp on.  Identify the channels
    345       1.1  dyoung 		 * that already have one or more AP's and try to locate
    346       1.1  dyoung 		 * an unnoccupied one.  If that fails, pick a random
    347       1.1  dyoung 		 * channel from the active set.
    348       1.1  dyoung 		 */
    349       1.1  dyoung 		for (; ni != NULL; ni = nextbs) {
    350       1.1  dyoung 			ieee80211_ref_node(ni);
    351       1.1  dyoung 			nextbs = TAILQ_NEXT(ni, ni_list);
    352       1.1  dyoung 			setbit(occupied, ieee80211_chan2ieee(ic, ni->ni_chan));
    353       1.1  dyoung 			ieee80211_free_node(ic, ni);
    354       1.1  dyoung 		}
    355       1.1  dyoung 		for (i = 0; i < IEEE80211_CHAN_MAX; i++)
    356       1.1  dyoung 			if (isset(ic->ic_chan_active, i) && isclr(occupied, i))
    357       1.1  dyoung 				break;
    358       1.1  dyoung 		if (i == IEEE80211_CHAN_MAX) {
    359       1.1  dyoung 			fail = arc4random() & 3;	/* random 0-3 */
    360       1.1  dyoung 			for (i = 0; i < IEEE80211_CHAN_MAX; i++)
    361       1.1  dyoung 				if (isset(ic->ic_chan_active, i) && fail-- == 0)
    362       1.1  dyoung 					break;
    363       1.1  dyoung 		}
    364       1.1  dyoung 		ieee80211_create_ibss(ic, &ic->ic_channels[i]);
    365       1.1  dyoung 		return;
    366       1.1  dyoung 	}
    367       1.1  dyoung 	if (ni == NULL) {
    368       1.1  dyoung 		IEEE80211_DPRINTF(("%s: no scan candidate\n", __func__));
    369       1.1  dyoung   notfound:
    370       1.1  dyoung 		if (ic->ic_opmode == IEEE80211_M_IBSS &&
    371       1.1  dyoung 		    (ic->ic_flags & IEEE80211_F_IBSSON) &&
    372       1.1  dyoung 		    ic->ic_des_esslen != 0) {
    373       1.1  dyoung 			ieee80211_create_ibss(ic, ic->ic_ibss_chan);
    374       1.1  dyoung 			return;
    375       1.1  dyoung 		}
    376       1.1  dyoung 		/*
    377       1.1  dyoung 		 * Reset the list of channels to scan and start again.
    378       1.1  dyoung 		 */
    379       1.1  dyoung 		ieee80211_reset_scan(ifp);
    380       1.1  dyoung 		ieee80211_next_scan(ifp);
    381       1.1  dyoung 		return;
    382       1.1  dyoung 	}
    383       1.1  dyoung 	selbs = NULL;
    384       1.1  dyoung 	if (ifp->if_flags & IFF_DEBUG)
    385       1.1  dyoung 		if_printf(ifp, "\tmacaddr          bssid         chan  rssi rate flag  wep  essid\n");
    386       1.1  dyoung 	for (; ni != NULL; ni = nextbs) {
    387       1.1  dyoung 		ieee80211_ref_node(ni);
    388       1.1  dyoung 		nextbs = TAILQ_NEXT(ni, ni_list);
    389       1.1  dyoung 		if (ni->ni_fails) {
    390       1.1  dyoung 			/*
    391       1.1  dyoung 			 * The configuration of the access points may change
    392       1.1  dyoung 			 * during my scan.  So delete the entry for the AP
    393       1.1  dyoung 			 * and retry to associate if there is another beacon.
    394       1.1  dyoung 			 */
    395       1.1  dyoung 			if (ni->ni_fails++ > 2)
    396       1.1  dyoung 				ieee80211_free_node(ic, ni);
    397       1.1  dyoung 			continue;
    398       1.1  dyoung 		}
    399       1.5  dyoung 		if (ieee80211_match_bss(ic, ni) == 0) {
    400       1.1  dyoung 			if (selbs == NULL)
    401       1.1  dyoung 				selbs = ni;
    402       1.1  dyoung 			else if (ni->ni_rssi > selbs->ni_rssi) {
    403       1.1  dyoung 				ieee80211_unref_node(&selbs);
    404       1.1  dyoung 				selbs = ni;
    405       1.1  dyoung 			} else
    406       1.1  dyoung 				ieee80211_unref_node(&ni);
    407       1.1  dyoung 		} else {
    408       1.1  dyoung 			ieee80211_unref_node(&ni);
    409       1.1  dyoung 		}
    410       1.1  dyoung 	}
    411       1.1  dyoung 	if (selbs == NULL)
    412       1.1  dyoung 		goto notfound;
    413       1.1  dyoung 	(*ic->ic_node_copy)(ic, ic->ic_bss, selbs);
    414       1.1  dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS) {
    415       1.1  dyoung 		ieee80211_fix_rate(ic, ic->ic_bss, IEEE80211_F_DOFRATE |
    416       1.1  dyoung 		    IEEE80211_F_DONEGO | IEEE80211_F_DODEL);
    417       1.1  dyoung 		if (ic->ic_bss->ni_rates.rs_nrates == 0) {
    418       1.1  dyoung 			selbs->ni_fails++;
    419       1.1  dyoung 			ieee80211_unref_node(&selbs);
    420       1.1  dyoung 			goto notfound;
    421       1.1  dyoung 		}
    422       1.1  dyoung 		ieee80211_unref_node(&selbs);
    423       1.1  dyoung 		ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
    424       1.1  dyoung 	} else {
    425       1.1  dyoung 		ieee80211_unref_node(&selbs);
    426       1.1  dyoung 		ieee80211_new_state(ic, IEEE80211_S_AUTH, -1);
    427       1.1  dyoung 	}
    428       1.1  dyoung }
    429       1.1  dyoung 
    430       1.5  dyoung int
    431       1.5  dyoung ieee80211_get_rate(struct ieee80211com *ic)
    432       1.5  dyoung {
    433       1.5  dyoung 	u_int8_t (*rates)[IEEE80211_RATE_MAXSIZE];
    434       1.5  dyoung 	int rate;
    435       1.5  dyoung 
    436       1.5  dyoung 	rates = &ic->ic_bss->ni_rates.rs_rates;
    437       1.5  dyoung 
    438       1.5  dyoung 	if (ic->ic_fixed_rate != -1)
    439       1.5  dyoung 		rate = (*rates)[ic->ic_fixed_rate];
    440       1.5  dyoung 	else if (ic->ic_state == IEEE80211_S_RUN)
    441       1.5  dyoung 		rate = (*rates)[ic->ic_bss->ni_txrate];
    442       1.5  dyoung 	else
    443       1.5  dyoung 		rate = 0;
    444       1.5  dyoung 
    445       1.5  dyoung 	return rate & IEEE80211_RATE_VAL;
    446       1.5  dyoung }
    447       1.5  dyoung 
    448       1.1  dyoung static struct ieee80211_node *
    449       1.1  dyoung ieee80211_node_alloc(struct ieee80211com *ic)
    450       1.1  dyoung {
    451       1.9  dyoung 	return malloc(sizeof(struct ieee80211_node), M_80211_NODE,
    452       1.1  dyoung 		M_NOWAIT | M_ZERO);
    453       1.1  dyoung }
    454       1.1  dyoung 
    455       1.1  dyoung static void
    456       1.1  dyoung ieee80211_node_free(struct ieee80211com *ic, struct ieee80211_node *ni)
    457       1.1  dyoung {
    458       1.6  dyoung 	if (ni->ni_challenge != NULL) {
    459       1.6  dyoung 		free(ni->ni_challenge, M_DEVBUF);
    460       1.6  dyoung 		ni->ni_challenge = NULL;
    461       1.6  dyoung 	}
    462       1.9  dyoung 	free(ni, M_80211_NODE);
    463       1.1  dyoung }
    464       1.1  dyoung 
    465       1.1  dyoung static void
    466       1.1  dyoung ieee80211_node_copy(struct ieee80211com *ic,
    467       1.1  dyoung 	struct ieee80211_node *dst, const struct ieee80211_node *src)
    468       1.1  dyoung {
    469       1.1  dyoung 	*dst = *src;
    470       1.6  dyoung 	dst->ni_challenge = NULL;
    471       1.1  dyoung }
    472       1.1  dyoung 
    473       1.9  dyoung static u_int8_t
    474       1.9  dyoung ieee80211_node_getrssi(struct ieee80211com *ic, struct ieee80211_node *ni)
    475       1.9  dyoung {
    476       1.9  dyoung 	return ni->ni_rssi;
    477       1.9  dyoung }
    478       1.9  dyoung 
    479       1.1  dyoung static void
    480       1.1  dyoung ieee80211_setup_node(struct ieee80211com *ic,
    481       1.1  dyoung 	struct ieee80211_node *ni, u_int8_t *macaddr)
    482       1.1  dyoung {
    483       1.1  dyoung 	int hash;
    484       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    485       1.1  dyoung 
    486       1.1  dyoung 	IEEE80211_ADDR_COPY(ni->ni_macaddr, macaddr);
    487       1.1  dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    488       1.1  dyoung 	ni->ni_refcnt = 1;		/* mark referenced */
    489       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    490       1.1  dyoung 	TAILQ_INSERT_TAIL(&ic->ic_node, ni, ni_list);
    491       1.1  dyoung 	LIST_INSERT_HEAD(&ic->ic_hash[hash], ni, ni_hash);
    492       1.1  dyoung 	/*
    493       1.1  dyoung 	 * Note we don't enable the inactive timer when acting
    494       1.1  dyoung 	 * as a station.  Nodes created in this mode represent
    495       1.1  dyoung 	 * AP's identified while scanning.  If we time them out
    496       1.1  dyoung 	 * then several things happen: we can't return the data
    497       1.1  dyoung 	 * to users to show the list of AP's we encountered, and
    498       1.1  dyoung 	 * more importantly, we'll incorrectly deauthenticate
    499       1.1  dyoung 	 * ourself because the inactivity timer will kick us off.
    500       1.1  dyoung 	 */
    501       1.1  dyoung 	if (ic->ic_opmode != IEEE80211_M_STA)
    502       1.1  dyoung 		ic->ic_inact_timer = IEEE80211_INACT_WAIT;
    503       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    504       1.1  dyoung }
    505       1.1  dyoung 
    506       1.1  dyoung struct ieee80211_node *
    507       1.1  dyoung ieee80211_alloc_node(struct ieee80211com *ic, u_int8_t *macaddr)
    508       1.1  dyoung {
    509       1.1  dyoung 	struct ieee80211_node *ni = (*ic->ic_node_alloc)(ic);
    510       1.1  dyoung 	if (ni != NULL)
    511       1.1  dyoung 		ieee80211_setup_node(ic, ni, macaddr);
    512       1.1  dyoung 	return ni;
    513       1.1  dyoung }
    514       1.1  dyoung 
    515       1.1  dyoung struct ieee80211_node *
    516       1.1  dyoung ieee80211_dup_bss(struct ieee80211com *ic, u_int8_t *macaddr)
    517       1.1  dyoung {
    518       1.1  dyoung 	struct ieee80211_node *ni = (*ic->ic_node_alloc)(ic);
    519       1.1  dyoung 	if (ni != NULL) {
    520       1.1  dyoung 		memcpy(ni, ic->ic_bss, sizeof(struct ieee80211_node));
    521       1.1  dyoung 		ieee80211_setup_node(ic, ni, macaddr);
    522       1.1  dyoung 	}
    523       1.1  dyoung 	return ni;
    524       1.1  dyoung }
    525       1.1  dyoung 
    526       1.1  dyoung struct ieee80211_node *
    527       1.1  dyoung ieee80211_find_node(struct ieee80211com *ic, u_int8_t *macaddr)
    528       1.1  dyoung {
    529       1.1  dyoung 	struct ieee80211_node *ni;
    530       1.1  dyoung 	int hash;
    531       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    532       1.1  dyoung 
    533       1.1  dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    534       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    535       1.1  dyoung 	LIST_FOREACH(ni, &ic->ic_hash[hash], ni_hash) {
    536       1.1  dyoung 		if (IEEE80211_ADDR_EQ(ni->ni_macaddr, macaddr)) {
    537       1.2  dyoung 			ieee80211_node_incref(ni); /* mark referenced */
    538       1.1  dyoung 			break;
    539       1.1  dyoung 		}
    540       1.1  dyoung 	}
    541       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    542       1.7  dyoung 	return ni;
    543       1.7  dyoung }
    544       1.7  dyoung 
    545       1.7  dyoung struct ieee80211_node *
    546       1.7  dyoung ieee80211_find_txnode(struct ieee80211com *ic, u_int8_t *macaddr)
    547       1.7  dyoung {
    548       1.7  dyoung 	struct ieee80211_node *ni;
    549       1.7  dyoung 	ieee80211_node_critsec_decl(s);
    550       1.7  dyoung 
    551       1.7  dyoung 	/*
    552       1.7  dyoung 	 * The destination address should be in the node table
    553       1.7  dyoung 	 * unless this is a multicast/broadcast frames or we are
    554       1.7  dyoung 	 * in station mode.
    555       1.7  dyoung 	 */
    556       1.8  dyoung 	if (IEEE80211_IS_MULTICAST(macaddr) || ic->ic_opmode == IEEE80211_M_STA)
    557       1.8  dyoung 		return ic->ic_bss;
    558       1.8  dyoung 
    559       1.8  dyoung 	ieee80211_node_critsec_begin(ic, s);
    560       1.8  dyoung 	ni = ieee80211_find_node(ic, macaddr);
    561       1.8  dyoung 	if (ni == NULL) {
    562       1.8  dyoung 		if (ic->ic_opmode != IEEE80211_M_MONITOR)
    563       1.8  dyoung 			ni = ieee80211_dup_bss(ic, macaddr);
    564       1.8  dyoung 		IEEE80211_DPRINTF(("%s: faked-up node %p for %s\n",
    565       1.8  dyoung 		    __func__, ni, ether_sprintf(macaddr)));
    566       1.7  dyoung 		if (ni == NULL) {
    567       1.8  dyoung 			ieee80211_node_critsec_end(ic, s);
    568       1.8  dyoung 			/* ic->ic_stats.st_tx_nonode++; XXX statistic */
    569       1.8  dyoung 			return NULL;
    570       1.7  dyoung 		}
    571       1.8  dyoung 		(void)ieee80211_ref_node(ni);
    572       1.7  dyoung 	}
    573       1.8  dyoung 	ieee80211_node_critsec_end(ic, s);
    574       1.7  dyoung 	return ni;
    575       1.7  dyoung }
    576       1.7  dyoung 
    577       1.7  dyoung /*
    578       1.7  dyoung  * For some types of packet and for some operating modes, it is
    579       1.7  dyoung  * desirable to process a Rx packet using its sender's node-record
    580       1.7  dyoung  * instead of the BSS record, when that is possible.
    581       1.7  dyoung  *
    582       1.7  dyoung  * - AP mode: it is desirable to keep a node-record for every
    583       1.7  dyoung  *   authenticated/associated station *in the BSS*. For future use,
    584       1.7  dyoung  *   we also track neighboring APs, since they might belong to the
    585       1.7  dyoung  *   same ESSID.
    586       1.7  dyoung  *
    587       1.7  dyoung  * - IBSS mode: it is desirable to keep a node-record for every
    588       1.7  dyoung  *   station *in the BSS*.
    589       1.7  dyoung  *
    590       1.7  dyoung  * - monitor mode: it is desirable to keep a node-record for every
    591       1.7  dyoung  *   sender, regardless of BSS.
    592       1.7  dyoung  *
    593       1.7  dyoung  * - STA mode: the only available node-record is the BSS record,
    594       1.7  dyoung  *   ic->ic_bss.
    595       1.7  dyoung  *
    596       1.7  dyoung  * Of all the 802.11 Control packets, only the node-records for
    597       1.7  dyoung  * RTS packets node-record can be looked up.
    598       1.7  dyoung  *
    599       1.7  dyoung  * Return non-zero if the packet's node-record is kept, zero
    600       1.7  dyoung  * otherwise.
    601       1.7  dyoung  */
    602       1.7  dyoung static __inline int
    603       1.7  dyoung ieee80211_needs_rxnode(struct ieee80211com *ic, struct ieee80211_frame *wh,
    604       1.7  dyoung     u_int8_t **bssid)
    605       1.7  dyoung {
    606       1.7  dyoung 	struct ieee80211_node *bss = ic->ic_bss;
    607       1.7  dyoung 	int needsnode, rc = 0;
    608       1.7  dyoung 
    609       1.7  dyoung 	if (ic->ic_opmode == IEEE80211_M_STA)
    610       1.7  dyoung 		return 0;
    611       1.7  dyoung 
    612       1.7  dyoung 	needsnode = (ic->ic_opmode == IEEE80211_M_MONITOR);
    613       1.7  dyoung 
    614       1.7  dyoung 	*bssid = NULL;
    615       1.7  dyoung 
    616       1.7  dyoung 	switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
    617       1.7  dyoung 	case IEEE80211_FC0_TYPE_CTL:
    618       1.7  dyoung 		return (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) ==
    619       1.7  dyoung 		    IEEE80211_FC0_SUBTYPE_RTS;
    620       1.7  dyoung 
    621       1.7  dyoung 	case IEEE80211_FC0_TYPE_MGT:
    622       1.7  dyoung 		*bssid = wh->i_addr3;
    623       1.7  dyoung 		rc = IEEE80211_ADDR_EQ(*bssid, bss->ni_bssid);
    624       1.7  dyoung 		break;
    625       1.7  dyoung 	case IEEE80211_FC0_TYPE_DATA:
    626       1.7  dyoung 		switch (wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
    627       1.7  dyoung 		case IEEE80211_FC1_DIR_NODS:
    628       1.7  dyoung 			*bssid = wh->i_addr3;
    629       1.7  dyoung 			if (ic->ic_opmode == IEEE80211_M_IBSS ||
    630       1.7  dyoung 			    ic->ic_opmode == IEEE80211_M_AHDEMO)
    631       1.7  dyoung 				rc = IEEE80211_ADDR_EQ(*bssid, bss->ni_bssid);
    632       1.7  dyoung 			break;
    633       1.7  dyoung 		case IEEE80211_FC1_DIR_TODS:
    634       1.7  dyoung 			*bssid = wh->i_addr1;
    635       1.7  dyoung 			if (ic->ic_opmode == IEEE80211_M_HOSTAP)
    636       1.7  dyoung 				rc = IEEE80211_ADDR_EQ(*bssid, bss->ni_bssid);
    637       1.7  dyoung 			break;
    638       1.7  dyoung 		case IEEE80211_FC1_DIR_FROMDS:
    639       1.7  dyoung 		case IEEE80211_FC1_DIR_DSTODS:
    640       1.7  dyoung 			*bssid = wh->i_addr2;
    641       1.7  dyoung 			rc = (ic->ic_opmode == IEEE80211_M_HOSTAP);
    642       1.7  dyoung 			break;
    643       1.7  dyoung 		}
    644       1.7  dyoung 		break;
    645       1.7  dyoung 	}
    646       1.7  dyoung 	return needsnode || rc;
    647       1.7  dyoung }
    648       1.7  dyoung 
    649       1.7  dyoung struct ieee80211_node *
    650       1.7  dyoung ieee80211_find_rxnode(struct ieee80211com *ic, struct ieee80211_frame *wh)
    651       1.7  dyoung {
    652       1.7  dyoung 	struct ieee80211_node *ni;
    653       1.7  dyoung 	const static u_int8_t zero[IEEE80211_ADDR_LEN];
    654       1.7  dyoung 	u_int8_t *bssid;
    655       1.7  dyoung 	ieee80211_node_critsec_decl(s);
    656       1.7  dyoung 
    657       1.7  dyoung 	ieee80211_node_critsec_begin(ic, s);
    658       1.7  dyoung 
    659       1.7  dyoung 	if (!ieee80211_needs_rxnode(ic, wh, &bssid))
    660       1.7  dyoung 	        return ieee80211_ref_node(ic->ic_bss);
    661       1.7  dyoung 
    662       1.7  dyoung 	ni = ieee80211_find_node(ic, wh->i_addr2);
    663       1.7  dyoung 
    664       1.7  dyoung 	if (ni == NULL) {
    665       1.7  dyoung 		if (ic->ic_opmode != IEEE80211_M_HOSTAP) {
    666       1.7  dyoung 			if ((ni = ieee80211_dup_bss(ic, wh->i_addr2)) != NULL)
    667       1.7  dyoung 				IEEE80211_ADDR_COPY(ni->ni_bssid,
    668       1.7  dyoung 				    (bssid != NULL) ? bssid : zero);
    669       1.7  dyoung 
    670       1.7  dyoung 			IEEE80211_DPRINTF(("%s: faked-up node %p for %s\n",
    671       1.7  dyoung 			    __func__, ni, ether_sprintf(wh->i_addr2)));
    672       1.7  dyoung 		}
    673       1.7  dyoung 		ni = ieee80211_ref_node((ni == NULL) ? ic->ic_bss : ni);
    674       1.7  dyoung 	}
    675       1.7  dyoung 	ieee80211_node_critsec_end(ic, s);
    676      1.10  dyoung 	IASSERT(ni != NULL, ("%s: null node", __func__));
    677       1.1  dyoung 	return ni;
    678       1.1  dyoung }
    679       1.1  dyoung 
    680       1.1  dyoung /*
    681       1.1  dyoung  * Like find but search based on the channel too.
    682       1.1  dyoung  */
    683       1.1  dyoung struct ieee80211_node *
    684       1.1  dyoung ieee80211_lookup_node(struct ieee80211com *ic,
    685       1.1  dyoung 	u_int8_t *macaddr, struct ieee80211_channel *chan)
    686       1.1  dyoung {
    687       1.1  dyoung 	struct ieee80211_node *ni;
    688       1.1  dyoung 	int hash;
    689       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    690       1.1  dyoung 
    691       1.1  dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    692       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    693       1.1  dyoung 	LIST_FOREACH(ni, &ic->ic_hash[hash], ni_hash) {
    694  1.10.2.1     jmc 		if (IEEE80211_ADDR_EQ(ni->ni_macaddr, macaddr) &&
    695  1.10.2.1     jmc 		    ni->ni_chan == chan) {
    696  1.10.2.1     jmc 			ieee80211_node_incref(ni);/* mark referenced */
    697  1.10.2.1     jmc 			break;
    698  1.10.2.1     jmc 		}
    699  1.10.2.1     jmc 	}
    700  1.10.2.1     jmc 	ieee80211_node_critsec_end(ic, s);
    701  1.10.2.1     jmc 	return ni;
    702  1.10.2.1     jmc }
    703  1.10.2.1     jmc 
    704  1.10.2.1     jmc /*
    705  1.10.2.1     jmc  * Like find but search based on the channel and ssid too.
    706  1.10.2.1     jmc  */
    707  1.10.2.1     jmc struct ieee80211_node *
    708  1.10.2.1     jmc ieee80211_lookup_node_for_beacon(struct ieee80211com *ic,
    709  1.10.2.1     jmc 	u_int8_t *macaddr, struct ieee80211_channel *chan, char *ssid)
    710  1.10.2.1     jmc {
    711  1.10.2.1     jmc 	struct ieee80211_node *ni;
    712  1.10.2.1     jmc 	int hash;
    713  1.10.2.1     jmc 	ieee80211_node_critsec_decl(s);
    714  1.10.2.1     jmc 
    715  1.10.2.1     jmc 	hash = IEEE80211_NODE_HASH(macaddr);
    716  1.10.2.1     jmc 	ieee80211_node_critsec_begin(ic, s);
    717  1.10.2.1     jmc 	LIST_FOREACH(ni, &ic->ic_hash[hash], ni_hash) {
    718  1.10.2.1     jmc 		if (IEEE80211_ADDR_EQ(ni->ni_macaddr, macaddr) &&
    719  1.10.2.1     jmc 		    ni->ni_chan == chan &&
    720  1.10.2.1     jmc 		    (ssid[1] == 0 || (ssid[1] == ni->ni_esslen &&
    721  1.10.2.1     jmc 		     !memcmp(ssid + 2, ni->ni_essid, ssid[1])))) {
    722       1.2  dyoung 			ieee80211_node_incref(ni);/* mark referenced */
    723       1.1  dyoung 			break;
    724       1.1  dyoung 		}
    725       1.1  dyoung 	}
    726       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    727       1.1  dyoung 	return ni;
    728       1.1  dyoung }
    729       1.1  dyoung 
    730       1.1  dyoung static void
    731       1.1  dyoung _ieee80211_free_node(struct ieee80211com *ic, struct ieee80211_node *ni)
    732       1.1  dyoung {
    733      1.10  dyoung 	IASSERT(ni != ic->ic_bss, ("freeing bss node"));
    734       1.1  dyoung 
    735       1.5  dyoung 	IEEE80211_AID_CLR(ni->ni_associd, ic->ic_aid_bitmap);
    736       1.1  dyoung 	TAILQ_REMOVE(&ic->ic_node, ni, ni_list);
    737       1.1  dyoung 	LIST_REMOVE(ni, ni_hash);
    738       1.5  dyoung 	if (!IF_IS_EMPTY(&ni->ni_savedq)) {
    739       1.5  dyoung 		IF_PURGE(&ni->ni_savedq);
    740       1.5  dyoung 		if (ic->ic_set_tim)
    741       1.5  dyoung 			ic->ic_set_tim(ic, ni->ni_associd, 0);
    742       1.5  dyoung 	}
    743       1.1  dyoung 	if (TAILQ_EMPTY(&ic->ic_node))
    744       1.1  dyoung 		ic->ic_inact_timer = 0;
    745       1.1  dyoung 	(*ic->ic_node_free)(ic, ni);
    746       1.1  dyoung }
    747       1.1  dyoung 
    748       1.1  dyoung void
    749       1.1  dyoung ieee80211_free_node(struct ieee80211com *ic, struct ieee80211_node *ni)
    750       1.1  dyoung {
    751       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    752       1.2  dyoung 
    753      1.10  dyoung 	IASSERT(ni != ic->ic_bss, ("freeing ic_bss"));
    754       1.1  dyoung 
    755       1.2  dyoung 	if (ieee80211_node_decref(ni) == 0) {
    756       1.2  dyoung 		ieee80211_node_critsec_begin(ic, s);
    757       1.1  dyoung 		_ieee80211_free_node(ic, ni);
    758       1.2  dyoung 		ieee80211_node_critsec_end(ic, s);
    759       1.1  dyoung 	}
    760       1.1  dyoung }
    761       1.1  dyoung 
    762       1.1  dyoung void
    763       1.1  dyoung ieee80211_free_allnodes(struct ieee80211com *ic)
    764       1.1  dyoung {
    765       1.1  dyoung 	struct ieee80211_node *ni;
    766       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    767       1.1  dyoung 
    768       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    769       1.1  dyoung 	while ((ni = TAILQ_FIRST(&ic->ic_node)) != NULL)
    770       1.1  dyoung 		_ieee80211_free_node(ic, ni);
    771       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    772       1.1  dyoung }
    773       1.1  dyoung 
    774       1.9  dyoung /*
    775       1.9  dyoung  * Timeout inactive nodes.  Note that we cannot hold the node
    776       1.9  dyoung  * lock while sending a frame as this would lead to a LOR.
    777       1.9  dyoung  * Instead we use a generation number to mark nodes that we've
    778       1.9  dyoung  * scanned and drop the lock and restart a scan if we have to
    779       1.9  dyoung  * time out a node.  Since we are single-threaded by virtue of
    780       1.9  dyoung  * controlling the inactivity timer we can be sure this will
    781       1.9  dyoung  * process each node only once.
    782       1.9  dyoung  */
    783       1.1  dyoung void
    784       1.1  dyoung ieee80211_timeout_nodes(struct ieee80211com *ic)
    785       1.1  dyoung {
    786       1.9  dyoung 	struct ieee80211_node *ni;
    787       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    788       1.9  dyoung 	u_int gen = ic->ic_scangen++;		/* NB: ok 'cuz single-threaded*/
    789       1.1  dyoung 
    790       1.9  dyoung restart:
    791       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    792       1.9  dyoung 	TAILQ_FOREACH(ni, &ic->ic_node, ni_list) {
    793       1.9  dyoung 		if (ni->ni_scangen == gen)	/* previously handled */
    794       1.9  dyoung 			continue;
    795       1.9  dyoung 		ni->ni_scangen = gen;
    796       1.1  dyoung 		if (++ni->ni_inact > IEEE80211_INACT_MAX) {
    797       1.1  dyoung 			IEEE80211_DPRINTF(("station %s timed out "
    798       1.1  dyoung 			    "due to inactivity (%u secs)\n",
    799       1.1  dyoung 			    ether_sprintf(ni->ni_macaddr),
    800       1.1  dyoung 			    ni->ni_inact));
    801       1.1  dyoung 			/*
    802       1.1  dyoung 			 * Send a deauthenticate frame.
    803       1.9  dyoung 			 *
    804       1.9  dyoung 			 * Drop the node lock before sending the
    805       1.9  dyoung 			 * deauthentication frame in case the driver takes
    806       1.9  dyoung 			 * a lock, as this will result in a LOR between the
    807       1.9  dyoung 			 * node lock and the driver lock.
    808       1.1  dyoung 			 */
    809       1.9  dyoung 			ieee80211_node_critsec_end(ic, s);
    810       1.1  dyoung 			IEEE80211_SEND_MGMT(ic, ni,
    811       1.1  dyoung 			    IEEE80211_FC0_SUBTYPE_DEAUTH,
    812       1.1  dyoung 			    IEEE80211_REASON_AUTH_EXPIRE);
    813       1.1  dyoung 			ieee80211_free_node(ic, ni);
    814       1.9  dyoung 			ic->ic_stats.is_node_timeout++;
    815       1.9  dyoung 			goto restart;
    816       1.9  dyoung 		}
    817       1.1  dyoung 	}
    818       1.1  dyoung 	if (!TAILQ_EMPTY(&ic->ic_node))
    819       1.1  dyoung 		ic->ic_inact_timer = IEEE80211_INACT_WAIT;
    820       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    821       1.1  dyoung }
    822       1.1  dyoung 
    823       1.1  dyoung void
    824       1.1  dyoung ieee80211_iterate_nodes(struct ieee80211com *ic, ieee80211_iter_func *f, void *arg)
    825       1.1  dyoung {
    826       1.1  dyoung 	struct ieee80211_node *ni;
    827       1.2  dyoung 	ieee80211_node_critsec_decl(s);
    828       1.1  dyoung 
    829       1.2  dyoung 	ieee80211_node_critsec_begin(ic, s);
    830       1.1  dyoung 	TAILQ_FOREACH(ni, &ic->ic_node, ni_list)
    831       1.1  dyoung 		(*f)(arg, ni);
    832       1.2  dyoung 	ieee80211_node_critsec_end(ic, s);
    833       1.1  dyoung }
    834