Home | History | Annotate | Line # | Download | only in net80211
ieee80211_node.c revision 1.23
      1  1.23  mycroft /*	$NetBSD: ieee80211_node.c,v 1.23 2004/07/23 10:15:13 mycroft Exp $	*/
      2   1.1   dyoung /*-
      3   1.1   dyoung  * Copyright (c) 2001 Atsushi Onoe
      4  1.22  mycroft  * Copyright (c) 2002-2004 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.11   dyoung __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_node.c,v 1.22 2004/04/05 04:15:55 sam Exp $");
     37   1.3   dyoung #else
     38  1.23  mycroft __KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.23 2004/07/23 10:15:13 mycroft 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.11   dyoung MALLOC_DEFINE(M_80211_NODE, "80211node", "802.11 node state");
    100   1.9   dyoung 
    101   1.1   dyoung void
    102  1.23  mycroft ieee80211_node_attach(struct ieee80211com *ic)
    103   1.1   dyoung {
    104   1.1   dyoung 
    105   1.1   dyoung 	/* XXX need unit */
    106  1.23  mycroft 	IEEE80211_NODE_LOCK_INIT(ic, ic->ic_ifp->if_xname);
    107   1.1   dyoung 	TAILQ_INIT(&ic->ic_node);
    108   1.1   dyoung 	ic->ic_node_alloc = ieee80211_node_alloc;
    109   1.1   dyoung 	ic->ic_node_free = ieee80211_node_free;
    110   1.1   dyoung 	ic->ic_node_copy = ieee80211_node_copy;
    111   1.9   dyoung 	ic->ic_node_getrssi = ieee80211_node_getrssi;
    112   1.9   dyoung 	ic->ic_scangen = 1;
    113  1.22  mycroft 
    114  1.22  mycroft 	if (ic->ic_max_aid == 0)
    115  1.22  mycroft 		ic->ic_max_aid = IEEE80211_AID_DEF;
    116  1.22  mycroft 	else if (ic->ic_max_aid > IEEE80211_AID_MAX)
    117  1.22  mycroft 		ic->ic_max_aid = IEEE80211_AID_MAX;
    118  1.22  mycroft 	MALLOC(ic->ic_aid_bitmap, u_int32_t *,
    119  1.22  mycroft 		howmany(ic->ic_max_aid, 32) * sizeof(u_int32_t),
    120  1.22  mycroft 		M_DEVBUF, M_NOWAIT | M_ZERO);
    121  1.22  mycroft 	if (ic->ic_aid_bitmap == NULL) {
    122  1.22  mycroft 		/* XXX no way to recover */
    123  1.22  mycroft 		printf("%s: no memory for AID bitmap!\n", __func__);
    124  1.22  mycroft 		ic->ic_max_aid = 0;
    125  1.22  mycroft 	}
    126   1.1   dyoung }
    127   1.1   dyoung 
    128   1.1   dyoung void
    129  1.23  mycroft ieee80211_node_lateattach(struct ieee80211com *ic)
    130   1.1   dyoung {
    131  1.11   dyoung 	struct ieee80211_node *ni;
    132   1.1   dyoung 
    133  1.11   dyoung 	ni = (*ic->ic_node_alloc)(ic);
    134  1.11   dyoung 	IASSERT(ni != NULL, ("unable to setup inital BSS node"));
    135  1.11   dyoung 	ni->ni_chan = IEEE80211_CHAN_ANYC;
    136  1.11   dyoung 	ic->ic_bss = ni;
    137  1.11   dyoung 	ic->ic_txpower = IEEE80211_TXPOWER_MAX;
    138   1.1   dyoung }
    139   1.1   dyoung 
    140   1.1   dyoung void
    141  1.23  mycroft ieee80211_node_detach(struct ieee80211com *ic)
    142   1.1   dyoung {
    143   1.1   dyoung 
    144  1.23  mycroft 	if (ic->ic_bss != NULL) {
    145   1.1   dyoung 		(*ic->ic_node_free)(ic, ic->ic_bss);
    146  1.23  mycroft 		ic->ic_bss = NULL;
    147  1.23  mycroft 	}
    148   1.1   dyoung 	ieee80211_free_allnodes(ic);
    149   1.9   dyoung 	IEEE80211_NODE_LOCK_DESTROY(ic);
    150  1.22  mycroft         if (ic->ic_aid_bitmap != NULL)
    151  1.22  mycroft                 FREE(ic->ic_aid_bitmap, M_DEVBUF);
    152   1.1   dyoung }
    153   1.1   dyoung 
    154   1.1   dyoung /*
    155   1.1   dyoung  * AP scanning support.
    156   1.1   dyoung  */
    157   1.1   dyoung 
    158   1.1   dyoung /*
    159   1.1   dyoung  * Initialize the active channel set based on the set
    160   1.1   dyoung  * of available channels and the current PHY mode.
    161   1.1   dyoung  */
    162   1.1   dyoung static void
    163  1.23  mycroft ieee80211_reset_scan(struct ieee80211com *ic)
    164   1.1   dyoung {
    165   1.1   dyoung 
    166   1.1   dyoung 	memcpy(ic->ic_chan_scan, ic->ic_chan_active,
    167   1.1   dyoung 		sizeof(ic->ic_chan_active));
    168   1.1   dyoung 	/* NB: hack, setup so next_scan starts with the first channel */
    169   1.1   dyoung 	if (ic->ic_bss->ni_chan == IEEE80211_CHAN_ANYC)
    170   1.1   dyoung 		ic->ic_bss->ni_chan = &ic->ic_channels[IEEE80211_CHAN_MAX];
    171   1.1   dyoung }
    172   1.1   dyoung 
    173   1.1   dyoung /*
    174   1.1   dyoung  * Begin an active scan.
    175   1.1   dyoung  */
    176   1.1   dyoung void
    177  1.23  mycroft ieee80211_begin_scan(struct ieee80211com *ic)
    178   1.1   dyoung {
    179   1.1   dyoung 
    180   1.1   dyoung 	/*
    181   1.1   dyoung 	 * In all but hostap mode scanning starts off in
    182   1.1   dyoung 	 * an active mode before switching to passive.
    183   1.1   dyoung 	 */
    184   1.9   dyoung 	if (ic->ic_opmode != IEEE80211_M_HOSTAP) {
    185   1.1   dyoung 		ic->ic_flags |= IEEE80211_F_ASCAN;
    186   1.9   dyoung 		ic->ic_stats.is_scan_active++;
    187   1.9   dyoung 	} else
    188   1.9   dyoung 		ic->ic_stats.is_scan_passive++;
    189  1.20  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN, ("begin %s scan\n",
    190  1.20  mycroft 		(ic->ic_flags & IEEE80211_F_ASCAN) ?  "active" : "passive"));
    191   1.1   dyoung 	/*
    192   1.1   dyoung 	 * Clear scan state and flush any previously seen
    193   1.1   dyoung 	 * AP's.  Note that the latter assumes we don't act
    194   1.1   dyoung 	 * as both an AP and a station, otherwise we'll
    195   1.1   dyoung 	 * potentially flush state of stations associated
    196   1.1   dyoung 	 * with us.
    197   1.1   dyoung 	 */
    198  1.23  mycroft 	ieee80211_reset_scan(ic);
    199   1.1   dyoung 	ieee80211_free_allnodes(ic);
    200   1.1   dyoung 
    201   1.1   dyoung 	/* Scan the next channel. */
    202  1.23  mycroft 	ieee80211_next_scan(ic);
    203   1.1   dyoung }
    204   1.1   dyoung 
    205   1.1   dyoung /*
    206   1.1   dyoung  * Switch to the next channel marked for scanning.
    207   1.1   dyoung  */
    208   1.1   dyoung void
    209  1.23  mycroft ieee80211_next_scan(struct ieee80211com *ic)
    210   1.1   dyoung {
    211   1.1   dyoung 	struct ieee80211_channel *chan;
    212   1.1   dyoung 
    213   1.1   dyoung 	chan = ic->ic_bss->ni_chan;
    214   1.1   dyoung 	for (;;) {
    215   1.1   dyoung 		if (++chan > &ic->ic_channels[IEEE80211_CHAN_MAX])
    216   1.1   dyoung 			chan = &ic->ic_channels[0];
    217   1.1   dyoung 		if (isset(ic->ic_chan_scan, ieee80211_chan2ieee(ic, chan))) {
    218   1.1   dyoung 			/*
    219   1.1   dyoung 			 * Honor channels marked passive-only
    220   1.1   dyoung 			 * during an active scan.
    221   1.1   dyoung 			 */
    222   1.1   dyoung 			if ((ic->ic_flags & IEEE80211_F_ASCAN) == 0 ||
    223   1.1   dyoung 			    (chan->ic_flags & IEEE80211_CHAN_PASSIVE) == 0)
    224   1.1   dyoung 				break;
    225   1.1   dyoung 		}
    226   1.1   dyoung 		if (chan == ic->ic_bss->ni_chan) {
    227  1.23  mycroft 			ieee80211_end_scan(ic);
    228   1.1   dyoung 			return;
    229   1.1   dyoung 		}
    230   1.1   dyoung 	}
    231   1.1   dyoung 	clrbit(ic->ic_chan_scan, ieee80211_chan2ieee(ic, chan));
    232  1.18  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN,
    233  1.18  mycroft 		("%s: chan %d->%d\n", __func__,
    234  1.18  mycroft 		ieee80211_chan2ieee(ic, ic->ic_bss->ni_chan),
    235  1.18  mycroft 		ieee80211_chan2ieee(ic, chan)));
    236   1.1   dyoung 	ic->ic_bss->ni_chan = chan;
    237   1.1   dyoung 	ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
    238   1.1   dyoung }
    239   1.1   dyoung 
    240   1.1   dyoung void
    241   1.1   dyoung ieee80211_create_ibss(struct ieee80211com* ic, struct ieee80211_channel *chan)
    242   1.1   dyoung {
    243   1.1   dyoung 	struct ieee80211_node *ni;
    244   1.1   dyoung 
    245   1.1   dyoung 	ni = ic->ic_bss;
    246  1.20  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN, ("creating ibss\n"));
    247   1.1   dyoung 	ic->ic_flags |= IEEE80211_F_SIBSS;
    248   1.1   dyoung 	ni->ni_chan = chan;
    249   1.1   dyoung 	ni->ni_rates = ic->ic_sup_rates[ieee80211_chan2mode(ic, ni->ni_chan)];
    250   1.1   dyoung 	IEEE80211_ADDR_COPY(ni->ni_macaddr, ic->ic_myaddr);
    251   1.1   dyoung 	IEEE80211_ADDR_COPY(ni->ni_bssid, ic->ic_myaddr);
    252  1.16   dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS) {
    253  1.16   dyoung 		if ((ic->ic_flags & IEEE80211_F_DESBSSID) != 0)
    254  1.16   dyoung 			IEEE80211_ADDR_COPY(ni->ni_bssid, ic->ic_des_bssid);
    255  1.16   dyoung 		else
    256  1.16   dyoung 			ni->ni_bssid[0] |= 0x02;	/* local bit for IBSS */
    257  1.16   dyoung 	}
    258   1.1   dyoung 	ni->ni_esslen = ic->ic_des_esslen;
    259   1.1   dyoung 	memcpy(ni->ni_essid, ic->ic_des_essid, ni->ni_esslen);
    260   1.1   dyoung 	ni->ni_rssi = 0;
    261   1.1   dyoung 	ni->ni_rstamp = 0;
    262   1.1   dyoung 	memset(ni->ni_tstamp, 0, sizeof(ni->ni_tstamp));
    263   1.1   dyoung 	ni->ni_intval = ic->ic_lintval;
    264   1.1   dyoung 	ni->ni_capinfo = IEEE80211_CAPINFO_IBSS;
    265  1.21  mycroft 	if (ic->ic_flags & IEEE80211_F_PRIVACY)
    266   1.1   dyoung 		ni->ni_capinfo |= IEEE80211_CAPINFO_PRIVACY;
    267   1.1   dyoung 	if (ic->ic_phytype == IEEE80211_T_FH) {
    268   1.1   dyoung 		ni->ni_fhdwell = 200;	/* XXX */
    269   1.1   dyoung 		ni->ni_fhindex = 1;
    270   1.1   dyoung 	}
    271   1.1   dyoung 	ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
    272   1.1   dyoung }
    273   1.1   dyoung 
    274   1.5   dyoung int
    275   1.5   dyoung ieee80211_match_bss(struct ieee80211com *ic, struct ieee80211_node *ni)
    276   1.5   dyoung {
    277   1.5   dyoung         u_int8_t rate;
    278   1.5   dyoung         int fail;
    279   1.5   dyoung 
    280   1.5   dyoung 	fail = 0;
    281   1.5   dyoung 	if (isclr(ic->ic_chan_active, ieee80211_chan2ieee(ic, ni->ni_chan)))
    282   1.5   dyoung 		fail |= 0x01;
    283   1.5   dyoung 	if (ic->ic_des_chan != IEEE80211_CHAN_ANYC &&
    284   1.5   dyoung 	    ni->ni_chan != ic->ic_des_chan)
    285   1.5   dyoung 		fail |= 0x01;
    286   1.5   dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS) {
    287   1.5   dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_IBSS) == 0)
    288   1.5   dyoung 			fail |= 0x02;
    289   1.5   dyoung 	} else {
    290   1.5   dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_ESS) == 0)
    291   1.5   dyoung 			fail |= 0x02;
    292   1.5   dyoung 	}
    293  1.21  mycroft 	if (ic->ic_flags & IEEE80211_F_PRIVACY) {
    294   1.5   dyoung 		if ((ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY) == 0)
    295   1.5   dyoung 			fail |= 0x04;
    296   1.5   dyoung 	} else {
    297  1.11   dyoung 		/* XXX does this mean privacy is supported or required? */
    298   1.5   dyoung 		if (ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY)
    299   1.5   dyoung 			fail |= 0x04;
    300   1.5   dyoung 	}
    301   1.5   dyoung 	rate = ieee80211_fix_rate(ic, ni, IEEE80211_F_DONEGO);
    302   1.5   dyoung 	if (rate & IEEE80211_RATE_BASIC)
    303   1.5   dyoung 		fail |= 0x08;
    304   1.5   dyoung 	if (ic->ic_des_esslen != 0 &&
    305   1.5   dyoung 	    (ni->ni_esslen != ic->ic_des_esslen ||
    306  1.11   dyoung 	     memcmp(ni->ni_essid, ic->ic_des_essid, ic->ic_des_esslen) != 0))
    307   1.5   dyoung 		fail |= 0x10;
    308   1.5   dyoung 	if ((ic->ic_flags & IEEE80211_F_DESBSSID) &&
    309   1.5   dyoung 	    !IEEE80211_ADDR_EQ(ic->ic_des_bssid, ni->ni_bssid))
    310   1.5   dyoung 		fail |= 0x20;
    311  1.11   dyoung #ifdef IEEE80211_DEBUG
    312  1.12   dyoung 	if (ic->ic_if.if_flags & IFF_DEBUG) {
    313   1.5   dyoung 		printf(" %c %s", fail ? '-' : '+',
    314   1.5   dyoung 		    ether_sprintf(ni->ni_macaddr));
    315   1.5   dyoung 		printf(" %s%c", ether_sprintf(ni->ni_bssid),
    316   1.5   dyoung 		    fail & 0x20 ? '!' : ' ');
    317   1.5   dyoung 		printf(" %3d%c", ieee80211_chan2ieee(ic, ni->ni_chan),
    318   1.5   dyoung 			fail & 0x01 ? '!' : ' ');
    319   1.5   dyoung 		printf(" %+4d", ni->ni_rssi);
    320   1.5   dyoung 		printf(" %2dM%c", (rate & IEEE80211_RATE_VAL) / 2,
    321   1.5   dyoung 		    fail & 0x08 ? '!' : ' ');
    322   1.5   dyoung 		printf(" %4s%c",
    323   1.5   dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_ESS) ? "ess" :
    324   1.5   dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_IBSS) ? "ibss" :
    325   1.5   dyoung 		    "????",
    326   1.5   dyoung 		    fail & 0x02 ? '!' : ' ');
    327   1.5   dyoung 		printf(" %3s%c ",
    328   1.5   dyoung 		    (ni->ni_capinfo & IEEE80211_CAPINFO_PRIVACY) ?
    329   1.5   dyoung 		    "wep" : "no",
    330   1.5   dyoung 		    fail & 0x04 ? '!' : ' ');
    331   1.5   dyoung 		ieee80211_print_essid(ni->ni_essid, ni->ni_esslen);
    332   1.5   dyoung 		printf("%s\n", fail & 0x10 ? "!" : "");
    333   1.5   dyoung 	}
    334  1.11   dyoung #endif
    335   1.5   dyoung 	return fail;
    336   1.5   dyoung }
    337   1.5   dyoung 
    338   1.1   dyoung /*
    339   1.1   dyoung  * Complete a scan of potential channels.
    340   1.1   dyoung  */
    341   1.1   dyoung void
    342  1.23  mycroft ieee80211_end_scan(struct ieee80211com *ic)
    343   1.1   dyoung {
    344   1.1   dyoung 	struct ieee80211_node *ni, *nextbs, *selbs;
    345   1.1   dyoung 	int i, fail;
    346   1.1   dyoung 
    347  1.23  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN, ("end %s scan\n",
    348  1.23  mycroft 		(ic->ic_flags & IEEE80211_F_ASCAN) ?  "active" : "passive"));
    349  1.23  mycroft 
    350   1.1   dyoung 	ic->ic_flags &= ~IEEE80211_F_ASCAN;
    351   1.1   dyoung 	ni = TAILQ_FIRST(&ic->ic_node);
    352   1.1   dyoung 
    353   1.1   dyoung 	if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
    354   1.1   dyoung 		/* XXX off stack? */
    355   1.1   dyoung 		u_char occupied[roundup(IEEE80211_CHAN_MAX, NBBY)];
    356   1.1   dyoung 		/*
    357   1.1   dyoung 		 * The passive scan to look for existing AP's completed,
    358   1.1   dyoung 		 * select a channel to camp on.  Identify the channels
    359   1.1   dyoung 		 * that already have one or more AP's and try to locate
    360   1.1   dyoung 		 * an unnoccupied one.  If that fails, pick a random
    361   1.1   dyoung 		 * channel from the active set.
    362   1.1   dyoung 		 */
    363   1.1   dyoung 		for (; ni != NULL; ni = nextbs) {
    364   1.1   dyoung 			ieee80211_ref_node(ni);
    365   1.1   dyoung 			nextbs = TAILQ_NEXT(ni, ni_list);
    366   1.1   dyoung 			setbit(occupied, ieee80211_chan2ieee(ic, ni->ni_chan));
    367   1.1   dyoung 			ieee80211_free_node(ic, ni);
    368   1.1   dyoung 		}
    369   1.1   dyoung 		for (i = 0; i < IEEE80211_CHAN_MAX; i++)
    370   1.1   dyoung 			if (isset(ic->ic_chan_active, i) && isclr(occupied, i))
    371   1.1   dyoung 				break;
    372   1.1   dyoung 		if (i == IEEE80211_CHAN_MAX) {
    373   1.1   dyoung 			fail = arc4random() & 3;	/* random 0-3 */
    374   1.1   dyoung 			for (i = 0; i < IEEE80211_CHAN_MAX; i++)
    375   1.1   dyoung 				if (isset(ic->ic_chan_active, i) && fail-- == 0)
    376   1.1   dyoung 					break;
    377   1.1   dyoung 		}
    378   1.1   dyoung 		ieee80211_create_ibss(ic, &ic->ic_channels[i]);
    379   1.1   dyoung 		return;
    380   1.1   dyoung 	}
    381   1.1   dyoung 	if (ni == NULL) {
    382  1.18  mycroft 		IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN,
    383  1.18  mycroft 			("%s: no scan candidate\n", __func__));
    384   1.1   dyoung   notfound:
    385   1.1   dyoung 		if (ic->ic_opmode == IEEE80211_M_IBSS &&
    386   1.1   dyoung 		    (ic->ic_flags & IEEE80211_F_IBSSON) &&
    387   1.1   dyoung 		    ic->ic_des_esslen != 0) {
    388   1.1   dyoung 			ieee80211_create_ibss(ic, ic->ic_ibss_chan);
    389   1.1   dyoung 			return;
    390   1.1   dyoung 		}
    391   1.1   dyoung 		/*
    392   1.1   dyoung 		 * Reset the list of channels to scan and start again.
    393   1.1   dyoung 		 */
    394  1.23  mycroft 		ieee80211_reset_scan(ic);
    395  1.23  mycroft 		ieee80211_next_scan(ic);
    396   1.1   dyoung 		return;
    397   1.1   dyoung 	}
    398   1.1   dyoung 	selbs = NULL;
    399  1.20  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_SCAN,
    400  1.20  mycroft 		("\tmacaddr          bssid         chan  rssi rate flag  wep  essid\n"));
    401   1.1   dyoung 	for (; ni != NULL; ni = nextbs) {
    402   1.1   dyoung 		ieee80211_ref_node(ni);
    403   1.1   dyoung 		nextbs = TAILQ_NEXT(ni, ni_list);
    404   1.1   dyoung 		if (ni->ni_fails) {
    405   1.1   dyoung 			/*
    406   1.1   dyoung 			 * The configuration of the access points may change
    407   1.1   dyoung 			 * during my scan.  So delete the entry for the AP
    408   1.1   dyoung 			 * and retry to associate if there is another beacon.
    409   1.1   dyoung 			 */
    410   1.1   dyoung 			if (ni->ni_fails++ > 2)
    411   1.1   dyoung 				ieee80211_free_node(ic, ni);
    412   1.1   dyoung 			continue;
    413   1.1   dyoung 		}
    414   1.5   dyoung 		if (ieee80211_match_bss(ic, ni) == 0) {
    415   1.1   dyoung 			if (selbs == NULL)
    416   1.1   dyoung 				selbs = ni;
    417   1.1   dyoung 			else if (ni->ni_rssi > selbs->ni_rssi) {
    418   1.1   dyoung 				ieee80211_unref_node(&selbs);
    419   1.1   dyoung 				selbs = ni;
    420   1.1   dyoung 			} else
    421   1.1   dyoung 				ieee80211_unref_node(&ni);
    422   1.1   dyoung 		} else {
    423   1.1   dyoung 			ieee80211_unref_node(&ni);
    424   1.1   dyoung 		}
    425   1.1   dyoung 	}
    426   1.1   dyoung 	if (selbs == NULL)
    427   1.1   dyoung 		goto notfound;
    428   1.1   dyoung 	(*ic->ic_node_copy)(ic, ic->ic_bss, selbs);
    429   1.1   dyoung 	if (ic->ic_opmode == IEEE80211_M_IBSS) {
    430   1.1   dyoung 		ieee80211_fix_rate(ic, ic->ic_bss, IEEE80211_F_DOFRATE |
    431   1.1   dyoung 		    IEEE80211_F_DONEGO | IEEE80211_F_DODEL);
    432   1.1   dyoung 		if (ic->ic_bss->ni_rates.rs_nrates == 0) {
    433   1.1   dyoung 			selbs->ni_fails++;
    434   1.1   dyoung 			ieee80211_unref_node(&selbs);
    435   1.1   dyoung 			goto notfound;
    436   1.1   dyoung 		}
    437   1.1   dyoung 		ieee80211_unref_node(&selbs);
    438  1.11   dyoung 		/*
    439  1.11   dyoung 		 * Discard scan set; the nodes have a refcnt of zero
    440  1.11   dyoung 		 * and have not asked the driver to setup private
    441  1.11   dyoung 		 * node state.  Let them be repopulated on demand either
    442  1.11   dyoung 		 * through transmission (ieee80211_find_txnode) or receipt
    443  1.11   dyoung 		 * of a probe response (to be added).
    444  1.11   dyoung 		 */
    445  1.11   dyoung 		ieee80211_free_allnodes(ic);
    446   1.1   dyoung 		ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
    447   1.1   dyoung 	} else {
    448   1.1   dyoung 		ieee80211_unref_node(&selbs);
    449   1.1   dyoung 		ieee80211_new_state(ic, IEEE80211_S_AUTH, -1);
    450   1.1   dyoung 	}
    451   1.1   dyoung }
    452   1.1   dyoung 
    453   1.5   dyoung int
    454   1.5   dyoung ieee80211_get_rate(struct ieee80211com *ic)
    455   1.5   dyoung {
    456   1.5   dyoung 	u_int8_t (*rates)[IEEE80211_RATE_MAXSIZE];
    457   1.5   dyoung 	int rate;
    458   1.5   dyoung 
    459   1.5   dyoung 	rates = &ic->ic_bss->ni_rates.rs_rates;
    460   1.5   dyoung 
    461   1.5   dyoung 	if (ic->ic_fixed_rate != -1)
    462   1.5   dyoung 		rate = (*rates)[ic->ic_fixed_rate];
    463   1.5   dyoung 	else if (ic->ic_state == IEEE80211_S_RUN)
    464   1.5   dyoung 		rate = (*rates)[ic->ic_bss->ni_txrate];
    465   1.5   dyoung 	else
    466   1.5   dyoung 		rate = 0;
    467   1.5   dyoung 
    468   1.5   dyoung 	return rate & IEEE80211_RATE_VAL;
    469   1.5   dyoung }
    470   1.5   dyoung 
    471   1.1   dyoung static struct ieee80211_node *
    472   1.1   dyoung ieee80211_node_alloc(struct ieee80211com *ic)
    473   1.1   dyoung {
    474  1.11   dyoung 	struct ieee80211_node *ni;
    475  1.11   dyoung 	MALLOC(ni, struct ieee80211_node *, sizeof(struct ieee80211_node),
    476  1.11   dyoung 		M_80211_NODE, M_NOWAIT | M_ZERO);
    477  1.11   dyoung 	return ni;
    478   1.1   dyoung }
    479   1.1   dyoung 
    480   1.1   dyoung static void
    481  1.22  mycroft node_cleanup(struct ieee80211com *ic, struct ieee80211_node *ni)
    482  1.22  mycroft {
    483  1.22  mycroft 
    484  1.22  mycroft         if (ni->ni_challenge != NULL) {
    485  1.22  mycroft                 FREE(ni->ni_challenge, M_DEVBUF);
    486  1.22  mycroft                 ni->ni_challenge = NULL;
    487  1.22  mycroft         }
    488  1.22  mycroft }
    489  1.22  mycroft 
    490  1.22  mycroft static void
    491   1.1   dyoung ieee80211_node_free(struct ieee80211com *ic, struct ieee80211_node *ni)
    492   1.1   dyoung {
    493  1.22  mycroft 	node_cleanup(ic, ni);
    494  1.11   dyoung 	FREE(ni, M_80211_NODE);
    495   1.1   dyoung }
    496   1.1   dyoung 
    497   1.1   dyoung static void
    498   1.1   dyoung ieee80211_node_copy(struct ieee80211com *ic,
    499   1.1   dyoung 	struct ieee80211_node *dst, const struct ieee80211_node *src)
    500   1.1   dyoung {
    501  1.22  mycroft 	node_cleanup(ic, dst);
    502   1.1   dyoung 	*dst = *src;
    503   1.6   dyoung 	dst->ni_challenge = NULL;
    504   1.1   dyoung }
    505   1.1   dyoung 
    506   1.9   dyoung static u_int8_t
    507   1.9   dyoung ieee80211_node_getrssi(struct ieee80211com *ic, struct ieee80211_node *ni)
    508   1.9   dyoung {
    509   1.9   dyoung 	return ni->ni_rssi;
    510   1.9   dyoung }
    511   1.9   dyoung 
    512   1.1   dyoung static void
    513   1.1   dyoung ieee80211_setup_node(struct ieee80211com *ic,
    514   1.1   dyoung 	struct ieee80211_node *ni, u_int8_t *macaddr)
    515   1.1   dyoung {
    516   1.1   dyoung 	int hash;
    517   1.1   dyoung 
    518  1.23  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
    519  1.23  mycroft 		("%s %s\n", __func__, ether_sprintf(macaddr)));
    520   1.1   dyoung 	IEEE80211_ADDR_COPY(ni->ni_macaddr, macaddr);
    521   1.1   dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    522   1.1   dyoung 	ni->ni_refcnt = 1;		/* mark referenced */
    523  1.23  mycroft 
    524  1.23  mycroft 	IEEE80211_NODE_LOCK_BH(ic);
    525   1.1   dyoung 	TAILQ_INSERT_TAIL(&ic->ic_node, ni, ni_list);
    526   1.1   dyoung 	LIST_INSERT_HEAD(&ic->ic_hash[hash], ni, ni_hash);
    527   1.1   dyoung 	/*
    528   1.1   dyoung 	 * Note we don't enable the inactive timer when acting
    529   1.1   dyoung 	 * as a station.  Nodes created in this mode represent
    530   1.1   dyoung 	 * AP's identified while scanning.  If we time them out
    531   1.1   dyoung 	 * then several things happen: we can't return the data
    532   1.1   dyoung 	 * to users to show the list of AP's we encountered, and
    533   1.1   dyoung 	 * more importantly, we'll incorrectly deauthenticate
    534   1.1   dyoung 	 * ourself because the inactivity timer will kick us off.
    535   1.1   dyoung 	 */
    536   1.1   dyoung 	if (ic->ic_opmode != IEEE80211_M_STA)
    537   1.1   dyoung 		ic->ic_inact_timer = IEEE80211_INACT_WAIT;
    538  1.23  mycroft 	IEEE80211_NODE_UNLOCK_BH(ic);
    539   1.1   dyoung }
    540   1.1   dyoung 
    541   1.1   dyoung struct ieee80211_node *
    542   1.1   dyoung ieee80211_alloc_node(struct ieee80211com *ic, u_int8_t *macaddr)
    543   1.1   dyoung {
    544   1.1   dyoung 	struct ieee80211_node *ni = (*ic->ic_node_alloc)(ic);
    545   1.1   dyoung 	if (ni != NULL)
    546   1.1   dyoung 		ieee80211_setup_node(ic, ni, macaddr);
    547  1.11   dyoung 	else
    548  1.11   dyoung 		ic->ic_stats.is_rx_nodealloc++;
    549   1.1   dyoung 	return ni;
    550   1.1   dyoung }
    551   1.1   dyoung 
    552   1.1   dyoung struct ieee80211_node *
    553   1.1   dyoung ieee80211_dup_bss(struct ieee80211com *ic, u_int8_t *macaddr)
    554   1.1   dyoung {
    555   1.1   dyoung 	struct ieee80211_node *ni = (*ic->ic_node_alloc)(ic);
    556   1.1   dyoung 	if (ni != NULL) {
    557   1.1   dyoung 		ieee80211_setup_node(ic, ni, macaddr);
    558  1.11   dyoung 		/*
    559  1.11   dyoung 		 * Inherit from ic_bss.
    560  1.11   dyoung 		 */
    561  1.11   dyoung 		IEEE80211_ADDR_COPY(ni->ni_bssid, ic->ic_bss->ni_bssid);
    562  1.11   dyoung 		ni->ni_chan = ic->ic_bss->ni_chan;
    563  1.11   dyoung 	} else
    564  1.11   dyoung 		ic->ic_stats.is_rx_nodealloc++;
    565   1.1   dyoung 	return ni;
    566   1.1   dyoung }
    567   1.1   dyoung 
    568  1.11   dyoung static struct ieee80211_node *
    569  1.11   dyoung _ieee80211_find_node(struct ieee80211com *ic, u_int8_t *macaddr)
    570   1.1   dyoung {
    571   1.1   dyoung 	struct ieee80211_node *ni;
    572   1.1   dyoung 	int hash;
    573  1.11   dyoung 
    574  1.11   dyoung 	IEEE80211_NODE_LOCK_ASSERT(ic);
    575   1.1   dyoung 
    576   1.1   dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    577   1.1   dyoung 	LIST_FOREACH(ni, &ic->ic_hash[hash], ni_hash) {
    578   1.1   dyoung 		if (IEEE80211_ADDR_EQ(ni->ni_macaddr, macaddr)) {
    579   1.2   dyoung 			ieee80211_node_incref(ni); /* mark referenced */
    580  1.11   dyoung 			return ni;
    581   1.1   dyoung 		}
    582   1.1   dyoung 	}
    583  1.11   dyoung 	return NULL;
    584  1.11   dyoung }
    585  1.11   dyoung 
    586  1.11   dyoung struct ieee80211_node *
    587  1.11   dyoung ieee80211_find_node(struct ieee80211com *ic, u_int8_t *macaddr)
    588  1.11   dyoung {
    589  1.11   dyoung 	struct ieee80211_node *ni;
    590  1.11   dyoung 
    591  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    592  1.11   dyoung 	ni = _ieee80211_find_node(ic, macaddr);
    593  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    594   1.7   dyoung 	return ni;
    595   1.7   dyoung }
    596   1.7   dyoung 
    597  1.11   dyoung /*
    598  1.11   dyoung  * Return a reference to the appropriate node for sending
    599  1.11   dyoung  * a data frame.  This handles node discovery in adhoc networks.
    600  1.11   dyoung  */
    601   1.7   dyoung struct ieee80211_node *
    602   1.7   dyoung ieee80211_find_txnode(struct ieee80211com *ic, u_int8_t *macaddr)
    603   1.7   dyoung {
    604   1.7   dyoung 	struct ieee80211_node *ni;
    605   1.7   dyoung 
    606   1.7   dyoung 	/*
    607   1.7   dyoung 	 * The destination address should be in the node table
    608  1.11   dyoung 	 * unless we are operating in station mode or this is a
    609  1.11   dyoung 	 * multicast/broadcast frame.
    610   1.7   dyoung 	 */
    611  1.11   dyoung 	if (ic->ic_opmode == IEEE80211_M_STA || IEEE80211_IS_MULTICAST(macaddr))
    612   1.8   dyoung 		return ic->ic_bss;
    613   1.8   dyoung 
    614  1.11   dyoung 	/* XXX can't hold lock across dup_bss 'cuz of recursive locking */
    615  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    616  1.11   dyoung 	ni = _ieee80211_find_node(ic, macaddr);
    617  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    618  1.11   dyoung 	if (ni == NULL &&
    619  1.11   dyoung 	    (ic->ic_opmode == IEEE80211_M_IBSS ||
    620  1.11   dyoung 	     ic->ic_opmode == IEEE80211_M_AHDEMO)) {
    621  1.11   dyoung 		/*
    622  1.11   dyoung 		 * Fake up a node; this handles node discovery in
    623  1.11   dyoung 		 * adhoc mode.  Note that for the driver's benefit
    624  1.11   dyoung 		 * we we treat this like an association so the driver
    625  1.11   dyoung 		 * has an opportunity to setup it's private state.
    626  1.11   dyoung 		 *
    627  1.11   dyoung 		 * XXX need better way to handle this; issue probe
    628  1.11   dyoung 		 *     request so we can deduce rate set, etc.
    629  1.11   dyoung 		 */
    630  1.11   dyoung 		ni = ieee80211_dup_bss(ic, macaddr);
    631  1.11   dyoung 		if (ni != NULL) {
    632  1.11   dyoung 			/* XXX no rate negotiation; just dup */
    633  1.11   dyoung 			ni->ni_rates = ic->ic_bss->ni_rates;
    634  1.11   dyoung 			if (ic->ic_newassoc)
    635  1.11   dyoung 				(*ic->ic_newassoc)(ic, ni, 1);
    636   1.7   dyoung 		}
    637   1.7   dyoung 	}
    638   1.7   dyoung 	return ni;
    639   1.7   dyoung }
    640   1.7   dyoung 
    641   1.7   dyoung /*
    642   1.7   dyoung  * For some types of packet and for some operating modes, it is
    643   1.7   dyoung  * desirable to process a Rx packet using its sender's node-record
    644   1.7   dyoung  * instead of the BSS record, when that is possible.
    645   1.7   dyoung  *
    646  1.17   dyoung  *  - AP mode: keep a node-record for every authenticated/associated
    647  1.17   dyoung  *    station *in the BSS*. For future use, we also track neighboring
    648  1.17   dyoung  *    APs, since they might belong to the same ESSID.
    649   1.7   dyoung  *
    650  1.17   dyoung  * - IBSS mode: keep a node-record for every station *in the BSS*.
    651   1.7   dyoung  *
    652  1.17   dyoung  * - monitor mode: keep a node-record for every sender, regardless
    653  1.17   dyoung  *   of BSS.
    654   1.7   dyoung  *
    655   1.7   dyoung  * - STA mode: the only available node-record is the BSS record,
    656   1.7   dyoung  *   ic->ic_bss.
    657   1.7   dyoung  *
    658   1.7   dyoung  * Of all the 802.11 Control packets, only the node-records for
    659   1.7   dyoung  * RTS packets node-record can be looked up.
    660   1.7   dyoung  *
    661   1.7   dyoung  * Return non-zero if the packet's node-record is kept, zero
    662   1.7   dyoung  * otherwise.
    663   1.7   dyoung  */
    664   1.7   dyoung static __inline int
    665   1.7   dyoung ieee80211_needs_rxnode(struct ieee80211com *ic, struct ieee80211_frame *wh,
    666   1.7   dyoung     u_int8_t **bssid)
    667   1.7   dyoung {
    668   1.7   dyoung 	struct ieee80211_node *bss = ic->ic_bss;
    669  1.19   dyoung 	int monitor, rc = 0;
    670   1.7   dyoung 
    671  1.19   dyoung 	monitor = (ic->ic_opmode == IEEE80211_M_MONITOR);
    672   1.7   dyoung 
    673   1.7   dyoung 	*bssid = NULL;
    674   1.7   dyoung 
    675   1.7   dyoung 	switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
    676   1.7   dyoung 	case IEEE80211_FC0_TYPE_CTL:
    677  1.19   dyoung 		if (!monitor)
    678  1.19   dyoung 			break;
    679   1.7   dyoung 		return (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) ==
    680   1.7   dyoung 		    IEEE80211_FC0_SUBTYPE_RTS;
    681   1.7   dyoung 	case IEEE80211_FC0_TYPE_MGT:
    682   1.7   dyoung 		*bssid = wh->i_addr3;
    683  1.19   dyoung 		switch (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
    684  1.19   dyoung 		case IEEE80211_FC0_SUBTYPE_BEACON:
    685  1.19   dyoung 		case IEEE80211_FC0_SUBTYPE_PROBE_RESP:
    686  1.19   dyoung 			rc = 1;
    687  1.19   dyoung 			break;
    688  1.19   dyoung 		default:
    689  1.19   dyoung 			break;
    690  1.19   dyoung 		}
    691   1.7   dyoung 		break;
    692   1.7   dyoung 	case IEEE80211_FC0_TYPE_DATA:
    693   1.7   dyoung 		switch (wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
    694   1.7   dyoung 		case IEEE80211_FC1_DIR_NODS:
    695   1.7   dyoung 			*bssid = wh->i_addr3;
    696   1.7   dyoung 			if (ic->ic_opmode == IEEE80211_M_IBSS ||
    697   1.7   dyoung 			    ic->ic_opmode == IEEE80211_M_AHDEMO)
    698   1.7   dyoung 				rc = IEEE80211_ADDR_EQ(*bssid, bss->ni_bssid);
    699   1.7   dyoung 			break;
    700   1.7   dyoung 		case IEEE80211_FC1_DIR_TODS:
    701   1.7   dyoung 			*bssid = wh->i_addr1;
    702   1.7   dyoung 			if (ic->ic_opmode == IEEE80211_M_HOSTAP)
    703   1.7   dyoung 				rc = IEEE80211_ADDR_EQ(*bssid, bss->ni_bssid);
    704   1.7   dyoung 			break;
    705   1.7   dyoung 		case IEEE80211_FC1_DIR_FROMDS:
    706   1.7   dyoung 		case IEEE80211_FC1_DIR_DSTODS:
    707   1.7   dyoung 			*bssid = wh->i_addr2;
    708   1.7   dyoung 			rc = (ic->ic_opmode == IEEE80211_M_HOSTAP);
    709   1.7   dyoung 			break;
    710   1.7   dyoung 		}
    711   1.7   dyoung 		break;
    712   1.7   dyoung 	}
    713  1.19   dyoung 	return monitor || rc;
    714   1.7   dyoung }
    715   1.7   dyoung 
    716   1.7   dyoung struct ieee80211_node *
    717   1.7   dyoung ieee80211_find_rxnode(struct ieee80211com *ic, struct ieee80211_frame *wh)
    718   1.7   dyoung {
    719   1.7   dyoung 	struct ieee80211_node *ni;
    720   1.7   dyoung 	const static u_int8_t zero[IEEE80211_ADDR_LEN];
    721   1.7   dyoung 	u_int8_t *bssid;
    722   1.7   dyoung 
    723   1.7   dyoung 	if (!ieee80211_needs_rxnode(ic, wh, &bssid))
    724   1.7   dyoung 	        return ieee80211_ref_node(ic->ic_bss);
    725   1.7   dyoung 
    726  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    727  1.11   dyoung 	ni = _ieee80211_find_node(ic, wh->i_addr2);
    728  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    729   1.7   dyoung 
    730  1.15   dyoung 	if (ni != NULL)
    731  1.15   dyoung 		return ni;
    732  1.15   dyoung 
    733  1.15   dyoung 	if (ic->ic_opmode == IEEE80211_M_HOSTAP)
    734  1.15   dyoung 		return ieee80211_ref_node(ic->ic_bss);
    735  1.15   dyoung 
    736  1.15   dyoung 	/* XXX see remarks in ieee80211_find_txnode */
    737  1.15   dyoung 	/* XXX no rate negotiation; just dup */
    738  1.15   dyoung 	if ((ni = ieee80211_dup_bss(ic, wh->i_addr2)) == NULL)
    739  1.15   dyoung 		return ieee80211_ref_node(ic->ic_bss);
    740  1.15   dyoung 
    741  1.15   dyoung 	IEEE80211_ADDR_COPY(ni->ni_bssid, (bssid != NULL) ? bssid : zero);
    742  1.15   dyoung 
    743  1.15   dyoung 	ni->ni_rates = ic->ic_bss->ni_rates;
    744  1.15   dyoung 	if (ic->ic_newassoc)
    745  1.15   dyoung 		(*ic->ic_newassoc)(ic, ni, 1);
    746  1.15   dyoung 
    747  1.18  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
    748  1.18  mycroft 		("%s: faked-up node %p for %s\n", __func__, ni,
    749  1.18  mycroft 		ether_sprintf(wh->i_addr2)));
    750  1.15   dyoung 
    751  1.15   dyoung 	return ieee80211_ref_node(ni);
    752   1.1   dyoung }
    753   1.1   dyoung 
    754   1.1   dyoung /*
    755   1.1   dyoung  * Like find but search based on the channel too.
    756   1.1   dyoung  */
    757   1.1   dyoung struct ieee80211_node *
    758  1.23  mycroft ieee80211_find_node_with_channel(struct ieee80211com *ic, u_int8_t *macaddr,
    759  1.23  mycroft 	struct ieee80211_channel *chan)
    760   1.1   dyoung {
    761   1.1   dyoung 	struct ieee80211_node *ni;
    762   1.1   dyoung 	int hash;
    763   1.1   dyoung 
    764   1.1   dyoung 	hash = IEEE80211_NODE_HASH(macaddr);
    765  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    766   1.1   dyoung 	LIST_FOREACH(ni, &ic->ic_hash[hash], ni_hash) {
    767  1.11   dyoung 		if (IEEE80211_ADDR_EQ(ni->ni_macaddr, macaddr) &&
    768  1.11   dyoung 		    ni->ni_chan == chan) {
    769   1.2   dyoung 			ieee80211_node_incref(ni);/* mark referenced */
    770   1.1   dyoung 			break;
    771   1.1   dyoung 		}
    772   1.1   dyoung 	}
    773  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    774   1.1   dyoung 	return ni;
    775   1.1   dyoung }
    776   1.1   dyoung 
    777   1.1   dyoung static void
    778   1.1   dyoung _ieee80211_free_node(struct ieee80211com *ic, struct ieee80211_node *ni)
    779   1.1   dyoung {
    780  1.10   dyoung 	IASSERT(ni != ic->ic_bss, ("freeing bss node"));
    781   1.1   dyoung 
    782  1.22  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
    783  1.22  mycroft 		("%s %s\n", __func__, ether_sprintf(ni->ni_macaddr)));
    784   1.5   dyoung 	IEEE80211_AID_CLR(ni->ni_associd, ic->ic_aid_bitmap);
    785   1.1   dyoung 	TAILQ_REMOVE(&ic->ic_node, ni, ni_list);
    786   1.1   dyoung 	LIST_REMOVE(ni, ni_hash);
    787   1.5   dyoung 	if (!IF_IS_EMPTY(&ni->ni_savedq)) {
    788   1.5   dyoung 		IF_PURGE(&ni->ni_savedq);
    789   1.5   dyoung 		if (ic->ic_set_tim)
    790  1.22  mycroft 			(*ic->ic_set_tim)(ic, ni->ni_associd, 0);
    791   1.5   dyoung 	}
    792   1.1   dyoung 	if (TAILQ_EMPTY(&ic->ic_node))
    793   1.1   dyoung 		ic->ic_inact_timer = 0;
    794   1.1   dyoung 	(*ic->ic_node_free)(ic, ni);
    795   1.1   dyoung }
    796   1.1   dyoung 
    797   1.1   dyoung void
    798   1.1   dyoung ieee80211_free_node(struct ieee80211com *ic, struct ieee80211_node *ni)
    799   1.1   dyoung {
    800  1.10   dyoung 	IASSERT(ni != ic->ic_bss, ("freeing ic_bss"));
    801   1.1   dyoung 
    802  1.23  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
    803  1.23  mycroft 		("%s %s refcnt %d\n", __func__,
    804  1.23  mycroft 		 ether_sprintf(ni->ni_macaddr), ieee80211_node_refcnt(ni)));
    805   1.2   dyoung 	if (ieee80211_node_decref(ni) == 0) {
    806  1.23  mycroft 		IEEE80211_NODE_LOCK_BH(ic);
    807   1.1   dyoung 		_ieee80211_free_node(ic, ni);
    808  1.23  mycroft 		IEEE80211_NODE_UNLOCK_BH(ic);
    809   1.1   dyoung 	}
    810   1.1   dyoung }
    811   1.1   dyoung 
    812   1.1   dyoung void
    813   1.1   dyoung ieee80211_free_allnodes(struct ieee80211com *ic)
    814   1.1   dyoung {
    815   1.1   dyoung 	struct ieee80211_node *ni;
    816   1.1   dyoung 
    817  1.22  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE, ("free all nodes\n"));
    818  1.23  mycroft 	IEEE80211_NODE_LOCK_BH(ic);
    819   1.1   dyoung 	while ((ni = TAILQ_FIRST(&ic->ic_node)) != NULL)
    820   1.1   dyoung 		_ieee80211_free_node(ic, ni);
    821  1.23  mycroft 	IEEE80211_NODE_UNLOCK_BH(ic);
    822  1.22  mycroft 
    823  1.22  mycroft 	if (ic->ic_bss != NULL)
    824  1.22  mycroft 		node_cleanup(ic, ic->ic_bss);	/* for station mode */
    825   1.1   dyoung }
    826   1.1   dyoung 
    827   1.9   dyoung /*
    828   1.9   dyoung  * Timeout inactive nodes.  Note that we cannot hold the node
    829   1.9   dyoung  * lock while sending a frame as this would lead to a LOR.
    830   1.9   dyoung  * Instead we use a generation number to mark nodes that we've
    831   1.9   dyoung  * scanned and drop the lock and restart a scan if we have to
    832   1.9   dyoung  * time out a node.  Since we are single-threaded by virtue of
    833   1.9   dyoung  * controlling the inactivity timer we can be sure this will
    834   1.9   dyoung  * process each node only once.
    835   1.9   dyoung  */
    836   1.1   dyoung void
    837   1.1   dyoung ieee80211_timeout_nodes(struct ieee80211com *ic)
    838   1.1   dyoung {
    839   1.9   dyoung 	struct ieee80211_node *ni;
    840   1.9   dyoung 	u_int gen = ic->ic_scangen++;		/* NB: ok 'cuz single-threaded*/
    841   1.1   dyoung 
    842   1.9   dyoung restart:
    843  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    844   1.9   dyoung 	TAILQ_FOREACH(ni, &ic->ic_node, ni_list) {
    845   1.9   dyoung 		if (ni->ni_scangen == gen)	/* previously handled */
    846   1.9   dyoung 			continue;
    847   1.9   dyoung 		ni->ni_scangen = gen;
    848  1.13   dyoung 		if (++ni->ni_inact > ieee80211_inact_max) {
    849  1.18  mycroft 			IEEE80211_DPRINTF(ic, IEEE80211_MSG_NODE,
    850  1.18  mycroft 			    ("station %s timed out due to inactivity (%u secs)\n",
    851   1.1   dyoung 			    ether_sprintf(ni->ni_macaddr),
    852   1.1   dyoung 			    ni->ni_inact));
    853   1.1   dyoung 			/*
    854   1.1   dyoung 			 * Send a deauthenticate frame.
    855   1.9   dyoung 			 *
    856   1.9   dyoung 			 * Drop the node lock before sending the
    857   1.9   dyoung 			 * deauthentication frame in case the driver takes
    858   1.9   dyoung 			 * a lock, as this will result in a LOR between the
    859   1.9   dyoung 			 * node lock and the driver lock.
    860   1.1   dyoung 			 */
    861  1.23  mycroft 			IEEE80211_NODE_UNLOCK(ic);
    862   1.1   dyoung 			IEEE80211_SEND_MGMT(ic, ni,
    863   1.1   dyoung 			    IEEE80211_FC0_SUBTYPE_DEAUTH,
    864   1.1   dyoung 			    IEEE80211_REASON_AUTH_EXPIRE);
    865  1.22  mycroft 			ieee80211_node_leave(ic, ni);
    866   1.9   dyoung 			ic->ic_stats.is_node_timeout++;
    867   1.9   dyoung 			goto restart;
    868   1.9   dyoung 		}
    869   1.1   dyoung 	}
    870   1.1   dyoung 	if (!TAILQ_EMPTY(&ic->ic_node))
    871   1.1   dyoung 		ic->ic_inact_timer = IEEE80211_INACT_WAIT;
    872  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    873   1.1   dyoung }
    874   1.1   dyoung 
    875   1.1   dyoung void
    876   1.1   dyoung ieee80211_iterate_nodes(struct ieee80211com *ic, ieee80211_iter_func *f, void *arg)
    877   1.1   dyoung {
    878   1.1   dyoung 	struct ieee80211_node *ni;
    879   1.1   dyoung 
    880  1.23  mycroft 	IEEE80211_NODE_LOCK(ic);
    881   1.1   dyoung 	TAILQ_FOREACH(ni, &ic->ic_node, ni_list)
    882   1.1   dyoung 		(*f)(arg, ni);
    883  1.23  mycroft 	IEEE80211_NODE_UNLOCK(ic);
    884   1.1   dyoung }
    885  1.22  mycroft 
    886  1.22  mycroft void
    887  1.22  mycroft ieee80211_node_join(struct ieee80211com *ic, struct ieee80211_node *ni, int resp)
    888  1.22  mycroft {
    889  1.22  mycroft 	int newassoc;
    890  1.22  mycroft 
    891  1.22  mycroft 	if (ni->ni_associd == 0) {
    892  1.22  mycroft 		u_int16_t aid;
    893  1.22  mycroft 
    894  1.22  mycroft 		/*
    895  1.22  mycroft 		 * It would be clever to search the bitmap
    896  1.22  mycroft 		 * more efficiently, but this will do for now.
    897  1.22  mycroft 		 */
    898  1.22  mycroft 		for (aid = 1; aid < ic->ic_max_aid; aid++) {
    899  1.22  mycroft 			if (!IEEE80211_AID_ISSET(aid,
    900  1.22  mycroft 			    ic->ic_aid_bitmap))
    901  1.22  mycroft 				break;
    902  1.22  mycroft 		}
    903  1.22  mycroft 		if (aid >= ic->ic_max_aid) {
    904  1.22  mycroft 			IEEE80211_SEND_MGMT(ic, ni, resp,
    905  1.22  mycroft 			    IEEE80211_REASON_ASSOC_TOOMANY);
    906  1.22  mycroft 			ieee80211_node_leave(ic, ni);
    907  1.22  mycroft 			return;
    908  1.22  mycroft 		}
    909  1.22  mycroft 		ni->ni_associd = aid | 0xc000;
    910  1.22  mycroft 		IEEE80211_AID_SET(ni->ni_associd, ic->ic_aid_bitmap);
    911  1.22  mycroft 		newassoc = 1;
    912  1.22  mycroft 		/* XXX for 11g must turn off short slot time if long
    913  1.22  mycroft 		   slot time sta associates */
    914  1.22  mycroft 	} else
    915  1.22  mycroft 		newassoc = 0;
    916  1.22  mycroft 
    917  1.22  mycroft 	IEEE80211_DPRINTF(ic, IEEE80211_MSG_ASSOC | IEEE80211_MSG_DEBUG,
    918  1.22  mycroft 		("station %s %s associated at aid %d\n",
    919  1.22  mycroft 		ether_sprintf(ni->ni_macaddr),
    920  1.22  mycroft 		(newassoc ? "newly" : "already"),
    921  1.22  mycroft 		ni->ni_associd & ~0xc000));
    922  1.22  mycroft 
    923  1.22  mycroft 	/* give driver a chance to setup state like ni_txrate */
    924  1.22  mycroft 	if (ic->ic_newassoc)
    925  1.22  mycroft 		(*ic->ic_newassoc)(ic, ni, newassoc);
    926  1.22  mycroft 	IEEE80211_SEND_MGMT(ic, ni, resp, IEEE80211_STATUS_SUCCESS);
    927  1.22  mycroft }
    928  1.22  mycroft 
    929  1.22  mycroft /*
    930  1.22  mycroft  * Handle bookkeeping for station deauthentication/disassociation
    931  1.22  mycroft  * when operating as an ap.
    932  1.22  mycroft  */
    933  1.22  mycroft void
    934  1.22  mycroft ieee80211_node_leave(struct ieee80211com *ic, struct ieee80211_node *ni)
    935  1.22  mycroft {
    936  1.22  mycroft 
    937  1.22  mycroft 	IASSERT(ic->ic_opmode == IEEE80211_M_HOSTAP,
    938  1.22  mycroft 		("not in ap mode, mode %u", ic->ic_opmode));
    939  1.22  mycroft 	/*
    940  1.22  mycroft 	 * If node wasn't previously associated all
    941  1.22  mycroft 	 * we need to do is reclaim the reference.
    942  1.22  mycroft 	 */
    943  1.22  mycroft 	if (ni->ni_associd == 0)
    944  1.22  mycroft 		goto done;
    945  1.22  mycroft 	IEEE80211_AID_CLR(ni->ni_associd, ic->ic_aid_bitmap);
    946  1.22  mycroft 	ni->ni_associd = 0;
    947  1.22  mycroft 
    948  1.22  mycroft done:
    949  1.22  mycroft 	ieee80211_free_node(ic, ni);
    950  1.22  mycroft }
    951