1 1.32 mrg /* $NetBSD: ieee80211_node.h,v 1.32 2023/08/01 07:04:16 mrg Exp $ */ 2 1.1 dyoung /*- 3 1.1 dyoung * Copyright (c) 2001 Atsushi Onoe 4 1.16 dyoung * Copyright (c) 2002-2005 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.19 skrll * $FreeBSD: src/sys/net80211/ieee80211_node.h,v 1.22 2005/08/10 16:22:29 sam Exp $ 34 1.1 dyoung */ 35 1.1 dyoung #ifndef _NET80211_IEEE80211_NODE_H_ 36 1.1 dyoung #define _NET80211_IEEE80211_NODE_H_ 37 1.1 dyoung 38 1.24 dyoung #include <sys/atomic.h> 39 1.16 dyoung #include <net80211/ieee80211_netbsd.h> 40 1.16 dyoung #include <net80211/ieee80211_ioctl.h> /* for ieee80211_nodestats */ 41 1.16 dyoung 42 1.23 dyoung #ifdef _KERNEL 43 1.16 dyoung /* 44 1.16 dyoung * Each ieee80211com instance has a single timer that fires once a 45 1.16 dyoung * second. This is used to initiate various work depending on the 46 1.16 dyoung * state of the instance: scanning (passive or active), ``transition'' 47 1.16 dyoung * (waiting for a response to a management frame when operating 48 1.16 dyoung * as a station), and node inactivity processing (when operating 49 1.16 dyoung * as an AP). For inactivity processing each node has a timeout 50 1.25 snj * set in its ni_inact field that is decremented on each timeout 51 1.16 dyoung * and the node is reclaimed when the counter goes to zero. We 52 1.16 dyoung * use different inactivity timeout values depending on whether 53 1.16 dyoung * the node is associated and authorized (either by 802.1x or 54 1.16 dyoung * open/shared key authentication) or associated but yet to be 55 1.16 dyoung * authorized. The latter timeout is shorter to more aggressively 56 1.16 dyoung * reclaim nodes that leave part way through the 802.1x exchange. 57 1.16 dyoung */ 58 1.16 dyoung #define IEEE80211_INACT_WAIT 15 /* inactivity interval (secs) */ 59 1.16 dyoung #define IEEE80211_INACT_INIT (30/IEEE80211_INACT_WAIT) /* initial */ 60 1.16 dyoung #define IEEE80211_INACT_AUTH (180/IEEE80211_INACT_WAIT) /* associated but not authorized */ 61 1.16 dyoung #define IEEE80211_INACT_RUN (300/IEEE80211_INACT_WAIT) /* authorized */ 62 1.16 dyoung #define IEEE80211_INACT_PROBE (30/IEEE80211_INACT_WAIT) /* probe */ 63 1.16 dyoung #define IEEE80211_INACT_SCAN (300/IEEE80211_INACT_WAIT) /* scanned */ 64 1.16 dyoung 65 1.16 dyoung #define IEEE80211_TRANS_WAIT 5 /* mgt frame tx timer (secs) */ 66 1.1 dyoung 67 1.1 dyoung #define IEEE80211_NODE_HASHSIZE 32 68 1.1 dyoung /* simple hash is enough for variation of macaddr */ 69 1.1 dyoung #define IEEE80211_NODE_HASH(addr) \ 70 1.16 dyoung (((const u_int8_t *)(addr))[IEEE80211_ADDR_LEN - 1] % \ 71 1.16 dyoung IEEE80211_NODE_HASHSIZE) 72 1.1 dyoung 73 1.16 dyoung struct ieee80211_rsnparms { 74 1.16 dyoung u_int8_t rsn_mcastcipher; /* mcast/group cipher */ 75 1.16 dyoung u_int8_t rsn_mcastkeylen; /* mcast key length */ 76 1.16 dyoung u_int8_t rsn_ucastcipherset; /* unicast cipher set */ 77 1.16 dyoung u_int8_t rsn_ucastcipher; /* selected unicast cipher */ 78 1.16 dyoung u_int8_t rsn_ucastkeylen; /* unicast key length */ 79 1.31 andvar u_int8_t rsn_keymgmtset; /* key management algorithms */ 80 1.16 dyoung u_int8_t rsn_keymgmt; /* selected key mgmt algo */ 81 1.16 dyoung u_int16_t rsn_caps; /* capabilities */ 82 1.1 dyoung }; 83 1.1 dyoung 84 1.16 dyoung struct ieee80211_node_table; 85 1.16 dyoung struct ieee80211com; 86 1.14 dyoung 87 1.1 dyoung /* 88 1.1 dyoung * Node specific information. Note that drivers are expected 89 1.1 dyoung * to derive from this structure to add device-specific per-node 90 1.1 dyoung * state. This is done by overriding the ic_node_* methods in 91 1.1 dyoung * the ieee80211com structure. 92 1.1 dyoung */ 93 1.1 dyoung struct ieee80211_node { 94 1.16 dyoung struct ieee80211com *ni_ic; 95 1.16 dyoung struct ieee80211_node_table *ni_table; 96 1.1 dyoung TAILQ_ENTRY(ieee80211_node) ni_list; 97 1.1 dyoung LIST_ENTRY(ieee80211_node) ni_hash; 98 1.1 dyoung u_int ni_refcnt; 99 1.8 dyoung u_int ni_scangen; /* gen# for timeout scan */ 100 1.16 dyoung u_int8_t ni_authmode; /* authentication algorithm */ 101 1.16 dyoung u_int16_t ni_flags; /* special-purpose state */ 102 1.16 dyoung #define IEEE80211_NODE_AUTH 0x0001 /* authorized for data */ 103 1.16 dyoung #define IEEE80211_NODE_QOS 0x0002 /* QoS enabled */ 104 1.16 dyoung #define IEEE80211_NODE_ERP 0x0004 /* ERP enabled */ 105 1.16 dyoung /* NB: this must have the same value as IEEE80211_FC1_PWR_MGT */ 106 1.16 dyoung #define IEEE80211_NODE_PWR_MGT 0x0010 /* power save mode enabled */ 107 1.18 dyoung #define IEEE80211_NODE_AREF 0x0020 /* authentication ref held */ 108 1.16 dyoung u_int16_t ni_associd; /* assoc response */ 109 1.16 dyoung u_int16_t ni_txpower; /* current transmit power */ 110 1.16 dyoung u_int16_t ni_vlan; /* vlan tag */ 111 1.16 dyoung u_int32_t *ni_challenge; /* shared-key challenge */ 112 1.16 dyoung u_int8_t *ni_wpa_ie; /* captured WPA/RSN ie */ 113 1.16 dyoung u_int8_t *ni_wme_ie; /* captured WME ie */ 114 1.16 dyoung u_int16_t ni_txseqs[17]; /* tx seq per-tid */ 115 1.16 dyoung u_int16_t ni_rxseqs[17]; /* rx seq previous per-tid*/ 116 1.16 dyoung u_int32_t ni_rxfragstamp; /* time stamp of last rx frag */ 117 1.16 dyoung struct mbuf *ni_rxfrag[3]; /* rx frag reassembly */ 118 1.16 dyoung struct ieee80211_rsnparms ni_rsn; /* RSN/WPA parameters */ 119 1.16 dyoung struct ieee80211_key ni_ucastkey; /* unicast key */ 120 1.1 dyoung 121 1.1 dyoung /* hardware */ 122 1.1 dyoung u_int32_t ni_rstamp; /* recv timestamp */ 123 1.27 roy u_int8_t ni_rssi; /* recv ssi */ 124 1.1 dyoung 125 1.1 dyoung /* header */ 126 1.1 dyoung u_int8_t ni_macaddr[IEEE80211_ADDR_LEN]; 127 1.1 dyoung u_int8_t ni_bssid[IEEE80211_ADDR_LEN]; 128 1.1 dyoung 129 1.1 dyoung /* beacon, probe response */ 130 1.15 dyoung union { 131 1.16 dyoung u_int8_t data[8]; 132 1.16 dyoung u_int64_t tsf; 133 1.16 dyoung } ni_tstamp; /* from last rcv'd beacon */ 134 1.1 dyoung u_int16_t ni_intval; /* beacon interval */ 135 1.1 dyoung u_int16_t ni_capinfo; /* capabilities */ 136 1.1 dyoung u_int8_t ni_esslen; 137 1.1 dyoung u_int8_t ni_essid[IEEE80211_NWID_LEN]; 138 1.1 dyoung struct ieee80211_rateset ni_rates; /* negotiated rate set */ 139 1.19 skrll struct ieee80211_channel *ni_chan; /* XXX multiple uses */ 140 1.1 dyoung u_int16_t ni_fhdwell; /* FH only */ 141 1.1 dyoung u_int8_t ni_fhindex; /* FH only */ 142 1.16 dyoung u_int8_t ni_erp; /* ERP from beacon/probe resp */ 143 1.16 dyoung u_int16_t ni_timoff; /* byte offset to TIM ie */ 144 1.18 dyoung u_int8_t ni_dtim_period; /* DTIM period */ 145 1.18 dyoung u_int8_t ni_dtim_count; /* DTIM count for last bcn */ 146 1.5 dyoung 147 1.1 dyoung /* others */ 148 1.1 dyoung int ni_fails; /* failure count to associate */ 149 1.16 dyoung short ni_inact; /* inactivity mark count */ 150 1.16 dyoung short ni_inact_reload;/* inactivity reload value */ 151 1.1 dyoung int ni_txrate; /* index to ni_rates[] */ 152 1.16 dyoung struct ifqueue ni_savedq; /* ps-poll queue */ 153 1.16 dyoung struct ieee80211_nodestats ni_stats; /* per-node statistics */ 154 1.1 dyoung }; 155 1.16 dyoung MALLOC_DECLARE(M_80211_NODE); 156 1.1 dyoung 157 1.16 dyoung #define IEEE80211_NODE_AID(ni) IEEE80211_AID(ni->ni_associd) 158 1.4 dyoung 159 1.16 dyoung #define IEEE80211_NODE_STAT(ni,stat) (ni->ni_stats.ns_##stat++) 160 1.16 dyoung #define IEEE80211_NODE_STAT_ADD(ni,stat,v) (ni->ni_stats.ns_##stat += v) 161 1.16 dyoung #define IEEE80211_NODE_STAT_SET(ni,stat,v) (ni->ni_stats.ns_##stat = v) 162 1.4 dyoung 163 1.1 dyoung struct ieee80211com; 164 1.1 dyoung 165 1.16 dyoung void ieee80211_node_attach(struct ieee80211com *); 166 1.16 dyoung void ieee80211_node_lateattach(struct ieee80211com *); 167 1.16 dyoung void ieee80211_node_detach(struct ieee80211com *); 168 1.16 dyoung 169 1.16 dyoung static __inline int 170 1.16 dyoung ieee80211_node_is_authorized(const struct ieee80211_node *ni) 171 1.16 dyoung { 172 1.16 dyoung return (ni->ni_flags & IEEE80211_NODE_AUTH); 173 1.16 dyoung } 174 1.16 dyoung 175 1.19 skrll void ieee80211_node_authorize(struct ieee80211_node *); 176 1.19 skrll void ieee80211_node_unauthorize(struct ieee80211_node *); 177 1.16 dyoung 178 1.16 dyoung void ieee80211_begin_scan(struct ieee80211com *, int); 179 1.16 dyoung int ieee80211_next_scan(struct ieee80211com *); 180 1.22 tacha void ieee80211_probe_curchan(struct ieee80211com *, int); 181 1.16 dyoung void ieee80211_create_ibss(struct ieee80211com*, struct ieee80211_channel *); 182 1.16 dyoung void ieee80211_reset_bss(struct ieee80211com *); 183 1.16 dyoung void ieee80211_cancel_scan(struct ieee80211com *); 184 1.16 dyoung void ieee80211_end_scan(struct ieee80211com *); 185 1.19 skrll int ieee80211_ibss_merge(struct ieee80211_node *); 186 1.16 dyoung int ieee80211_sta_join(struct ieee80211com *, struct ieee80211_node *); 187 1.16 dyoung void ieee80211_sta_leave(struct ieee80211com *, struct ieee80211_node *); 188 1.16 dyoung 189 1.16 dyoung /* 190 1.16 dyoung * Table of ieee80211_node instances. Each ieee80211com 191 1.16 dyoung * has at least one for holding the scan candidates. 192 1.16 dyoung * When operating as an access point or in ibss mode there 193 1.16 dyoung * is a second table for associated stations or neighbors. 194 1.16 dyoung */ 195 1.16 dyoung struct ieee80211_node_table { 196 1.16 dyoung struct ieee80211com *nt_ic; /* back reference */ 197 1.16 dyoung ieee80211_node_lock_t nt_nodelock; /* on node table */ 198 1.16 dyoung TAILQ_HEAD(, ieee80211_node) nt_node; /* information of all nodes */ 199 1.16 dyoung LIST_HEAD(, ieee80211_node) nt_hash[IEEE80211_NODE_HASHSIZE]; 200 1.16 dyoung const char *nt_name; /* for debugging */ 201 1.16 dyoung ieee80211_scan_lock_t nt_scanlock; /* on nt_scangen */ 202 1.16 dyoung u_int nt_scangen; /* gen# for timeout scan */ 203 1.16 dyoung int nt_inact_timer; /* inactivity timer */ 204 1.16 dyoung int nt_inact_init; /* initial node inact setting */ 205 1.19 skrll struct ieee80211_node **nt_keyixmap; /* key ix -> node map */ 206 1.19 skrll int nt_keyixmax; /* keyixmap size */ 207 1.16 dyoung 208 1.16 dyoung void (*nt_timeout)(struct ieee80211_node_table *); 209 1.16 dyoung }; 210 1.16 dyoung void ieee80211_node_table_reset(struct ieee80211_node_table *); 211 1.9 dyoung 212 1.16 dyoung struct ieee80211_node *ieee80211_alloc_node( 213 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *); 214 1.19 skrll struct ieee80211_node *ieee80211_tmp_node(struct ieee80211com *, 215 1.19 skrll const u_int8_t *macaddr); 216 1.16 dyoung struct ieee80211_node *ieee80211_dup_bss(struct ieee80211_node_table *, 217 1.16 dyoung const u_int8_t *); 218 1.16 dyoung #ifdef IEEE80211_DEBUG_REFCNT 219 1.16 dyoung void ieee80211_free_node_debug(struct ieee80211_node *, 220 1.16 dyoung const char *func, int line); 221 1.16 dyoung struct ieee80211_node *ieee80211_find_node_debug( 222 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *, 223 1.16 dyoung const char *func, int line); 224 1.16 dyoung struct ieee80211_node * ieee80211_find_rxnode_debug( 225 1.16 dyoung struct ieee80211com *, const struct ieee80211_frame_min *, 226 1.16 dyoung const char *func, int line); 227 1.19 skrll struct ieee80211_node * ieee80211_find_rxnode_withkey_debug( 228 1.19 skrll struct ieee80211com *, 229 1.19 skrll const struct ieee80211_frame_min *, u_int16_t keyix, 230 1.19 skrll const char *func, int line); 231 1.16 dyoung struct ieee80211_node *ieee80211_find_txnode_debug( 232 1.16 dyoung struct ieee80211com *, const u_int8_t *, 233 1.16 dyoung const char *func, int line); 234 1.16 dyoung struct ieee80211_node *ieee80211_find_node_with_channel_debug( 235 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *macaddr, 236 1.16 dyoung struct ieee80211_channel *, const char *func, int line); 237 1.16 dyoung struct ieee80211_node *ieee80211_find_node_with_ssid_debug( 238 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *macaddr, 239 1.16 dyoung u_int ssidlen, const u_int8_t *ssid, 240 1.16 dyoung const char *func, int line); 241 1.16 dyoung #define ieee80211_free_node(ni) \ 242 1.16 dyoung ieee80211_free_node_debug(ni, __func__, __LINE__) 243 1.16 dyoung #define ieee80211_find_node(nt, mac) \ 244 1.16 dyoung ieee80211_find_node_debug(nt, mac, __func__, __LINE__) 245 1.16 dyoung #define ieee80211_find_rxnode(nt, wh) \ 246 1.16 dyoung ieee80211_find_rxnode_debug(nt, wh, __func__, __LINE__) 247 1.19 skrll #define ieee80211_find_rxnode_withkey(nt, wh, keyix) \ 248 1.19 skrll ieee80211_find_rxnode_withkey_debug(nt, wh, keyix, __func__, __LINE__) 249 1.16 dyoung #define ieee80211_find_txnode(nt, mac) \ 250 1.16 dyoung ieee80211_find_txnode_debug(nt, mac, __func__, __LINE__) 251 1.16 dyoung #define ieee80211_find_node_with_channel(nt, mac, c) \ 252 1.16 dyoung ieee80211_find_node_with_channel_debug(nt, mac, c, __func__, __LINE__) 253 1.16 dyoung #define ieee80211_find_node_with_ssid(nt, mac, sl, ss) \ 254 1.16 dyoung ieee80211_find_node_with_ssid_debug(nt, mac, sl, ss, __func__, __LINE__) 255 1.16 dyoung #else 256 1.16 dyoung void ieee80211_free_node(struct ieee80211_node *); 257 1.16 dyoung struct ieee80211_node *ieee80211_find_node( 258 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *); 259 1.16 dyoung struct ieee80211_node * ieee80211_find_rxnode( 260 1.16 dyoung struct ieee80211com *, const struct ieee80211_frame_min *); 261 1.19 skrll struct ieee80211_node * ieee80211_find_rxnode_withkey(struct ieee80211com *, 262 1.19 skrll const struct ieee80211_frame_min *, u_int16_t keyix); 263 1.16 dyoung struct ieee80211_node *ieee80211_find_txnode( 264 1.16 dyoung struct ieee80211com *, const u_int8_t *); 265 1.16 dyoung struct ieee80211_node *ieee80211_find_node_with_channel( 266 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *macaddr, 267 1.11 mycroft struct ieee80211_channel *); 268 1.16 dyoung struct ieee80211_node *ieee80211_find_node_with_ssid( 269 1.16 dyoung struct ieee80211_node_table *, const u_int8_t *macaddr, 270 1.16 dyoung u_int ssidlen, const u_int8_t *ssid); 271 1.16 dyoung #endif 272 1.19 skrll int ieee80211_node_delucastkey(struct ieee80211_node *); 273 1.11 mycroft 274 1.16 dyoung struct ieee80211_node *ieee80211_refine_node_for_beacon( 275 1.16 dyoung struct ieee80211com *, struct ieee80211_node *, 276 1.16 dyoung struct ieee80211_channel *, const u_int8_t *ssid); 277 1.1 dyoung typedef void ieee80211_iter_func(void *, struct ieee80211_node *); 278 1.16 dyoung void ieee80211_iterate_nodes(struct ieee80211_node_table *, 279 1.1 dyoung ieee80211_iter_func *, void *); 280 1.1 dyoung 281 1.16 dyoung void ieee80211_dump_node(struct ieee80211_node_table *, 282 1.5 dyoung struct ieee80211_node *); 283 1.16 dyoung void ieee80211_dump_nodes(struct ieee80211_node_table *); 284 1.11 mycroft 285 1.16 dyoung struct ieee80211_node *ieee80211_fakeup_adhoc_node( 286 1.32 mrg struct ieee80211_node_table *, 287 1.32 mrg const u_int8_t macaddr[IEEE80211_ADDR_LEN]); 288 1.16 dyoung void ieee80211_node_join(struct ieee80211com *, struct ieee80211_node *,int); 289 1.16 dyoung void ieee80211_node_leave(struct ieee80211com *, struct ieee80211_node *); 290 1.27 roy u_int8_t ieee80211_getrssi(struct ieee80211com *ic); 291 1.19 skrll 292 1.19 skrll /* 293 1.19 skrll * Parameters supplied when adding/updating an entry in a 294 1.19 skrll * scan cache. Pointer variables should be set to NULL 295 1.19 skrll * if no data is available. Pointer references can be to 296 1.19 skrll * local data; any information that is saved will be copied. 297 1.19 skrll * All multi-byte values must be in host byte order. 298 1.19 skrll */ 299 1.19 skrll struct ieee80211_scanparams { 300 1.28 maxv u_int16_t sp_capinfo; /* 802.11 capabilities */ 301 1.28 maxv u_int16_t sp_fhdwell; /* FHSS dwell interval */ 302 1.28 maxv u_int8_t sp_chan; /* */ 303 1.28 maxv u_int8_t sp_bchan; 304 1.28 maxv u_int8_t sp_fhindex; 305 1.28 maxv u_int8_t sp_erp; 306 1.28 maxv u_int16_t sp_bintval; 307 1.29 maxv u_int16_t sp_timoff; 308 1.28 maxv u_int8_t *sp_tim; 309 1.28 maxv u_int8_t *sp_tstamp; 310 1.28 maxv u_int8_t *sp_country; 311 1.28 maxv u_int8_t *sp_ssid; 312 1.28 maxv u_int8_t *sp_rates; 313 1.28 maxv u_int8_t *sp_xrates; 314 1.28 maxv u_int8_t *sp_wpa; 315 1.28 maxv u_int8_t *sp_wme; 316 1.19 skrll }; 317 1.19 skrll 318 1.24 dyoung /* 319 1.24 dyoung * Node reference counting definitions. 320 1.24 dyoung * 321 1.24 dyoung * ieee80211_node_initref initialize the reference count to 1 322 1.24 dyoung * ieee80211_node_incref add a reference 323 1.24 dyoung * ieee80211_node_decref remove a reference 324 1.24 dyoung * ieee80211_node_dectestref remove a reference and return 1 if this 325 1.24 dyoung * is the last reference, otherwise 0 326 1.24 dyoung * ieee80211_node_refcnt reference count for printing (only) 327 1.24 dyoung */ 328 1.24 dyoung 329 1.30 christos static __inline void 330 1.24 dyoung ieee80211_node_initref(struct ieee80211_node *ni) 331 1.24 dyoung { 332 1.24 dyoung ni->ni_refcnt = 1; 333 1.24 dyoung } 334 1.24 dyoung 335 1.30 christos static __inline void 336 1.24 dyoung ieee80211_node_incref(struct ieee80211_node *ni) 337 1.24 dyoung { 338 1.24 dyoung atomic_inc_uint(&ni->ni_refcnt); 339 1.24 dyoung } 340 1.24 dyoung 341 1.30 christos static __inline void 342 1.24 dyoung ieee80211_node_decref(struct ieee80211_node *ni) 343 1.24 dyoung { 344 1.24 dyoung atomic_dec_uint(&ni->ni_refcnt); 345 1.24 dyoung } 346 1.24 dyoung 347 1.24 dyoung int ieee80211_node_dectestref(struct ieee80211_node *ni); 348 1.24 dyoung 349 1.30 christos static __inline unsigned int 350 1.24 dyoung ieee80211_node_refcnt(const struct ieee80211_node *ni) 351 1.24 dyoung { 352 1.24 dyoung return ni->ni_refcnt; 353 1.24 dyoung } 354 1.24 dyoung 355 1.24 dyoung static __inline struct ieee80211_node * 356 1.24 dyoung ieee80211_ref_node(struct ieee80211_node *ni) 357 1.24 dyoung { 358 1.24 dyoung ieee80211_node_incref(ni); 359 1.24 dyoung return ni; 360 1.24 dyoung } 361 1.24 dyoung 362 1.24 dyoung static __inline void 363 1.24 dyoung ieee80211_unref_node(struct ieee80211_node **ni) 364 1.24 dyoung { 365 1.24 dyoung ieee80211_node_decref(*ni); 366 1.24 dyoung *ni = NULL; /* guard against use */ 367 1.24 dyoung } 368 1.24 dyoung 369 1.19 skrll void ieee80211_add_scan(struct ieee80211com *, 370 1.19 skrll const struct ieee80211_scanparams *, 371 1.19 skrll const struct ieee80211_frame *, 372 1.19 skrll int subtype, int rssi, int rstamp); 373 1.20 dyoung void ieee80211_init_neighbor(struct ieee80211com *, struct ieee80211_node *, 374 1.20 dyoung const struct ieee80211_frame *, 375 1.20 dyoung const struct ieee80211_scanparams *, int); 376 1.19 skrll struct ieee80211_node *ieee80211_add_neighbor(struct ieee80211com *, 377 1.19 skrll const struct ieee80211_frame *, 378 1.19 skrll const struct ieee80211_scanparams *); 379 1.23 dyoung #endif /* _KERNEL */ 380 1.21 elad #endif /* !_NET80211_IEEE80211_NODE_H_ */ 381