ieee80211_node.h revision 182831
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/net80211/ieee80211_node.h 182831 2008-09-06 17:42:51Z sam $
27 */
28#ifndef _NET80211_IEEE80211_NODE_H_
29#define _NET80211_IEEE80211_NODE_H_
30
31#include <net80211/ieee80211_ioctl.h>		/* for ieee80211_nodestats */
32#include <net80211/ieee80211_ht.h>		/* for aggregation state */
33
34/*
35 * Each ieee80211com instance has a single timer that fires every
36 * IEEE80211_INACT_WAIT seconds to handle "inactivity processing".
37 * This is used to do node inactivity processing when operating
38 * as an AP or in adhoc mode.  For inactivity processing each node
39 * has a timeout set in it's ni_inact field that is decremented
40 * on each timeout and the node is reclaimed when the counter goes
41 * to zero.  We use different inactivity timeout values depending
42 * on whether the node is associated and authorized (either by
43 * 802.1x or open/shared key authentication) or associated but yet
44 * to be authorized.  The latter timeout is shorter to more aggressively
45 * reclaim nodes that leave part way through the 802.1x exchange.
46 */
47#define	IEEE80211_INACT_WAIT	15		/* inactivity interval (secs) */
48#define	IEEE80211_INACT_INIT	(30/IEEE80211_INACT_WAIT)	/* initial */
49#define	IEEE80211_INACT_AUTH	(180/IEEE80211_INACT_WAIT)	/* associated but not authorized */
50#define	IEEE80211_INACT_RUN	(300/IEEE80211_INACT_WAIT)	/* authorized */
51#define	IEEE80211_INACT_PROBE	(30/IEEE80211_INACT_WAIT)	/* probe */
52#define	IEEE80211_INACT_SCAN	(300/IEEE80211_INACT_WAIT)	/* scanned */
53
54#define	IEEE80211_TRANS_WAIT 	2		/* mgt frame tx timer (secs) */
55
56/* threshold for aging overlapping non-ERP bss */
57#define	IEEE80211_NONERP_PRESENT_AGE	msecs_to_ticks(60*1000)
58
59#define	IEEE80211_NODE_HASHSIZE	32
60/* simple hash is enough for variation of macaddr */
61#define	IEEE80211_NODE_HASH(addr)	\
62	(((const uint8_t *)(addr))[IEEE80211_ADDR_LEN - 1] % \
63		IEEE80211_NODE_HASHSIZE)
64
65struct ieee80211_node_table;
66struct ieee80211com;
67struct ieee80211vap;
68
69/*
70 * Information element ``blob''.  We use this structure
71 * to capture management frame payloads that need to be
72 * retained.  Information elemnts within the payload that
73 * we need to consult have references recorded.
74 */
75struct ieee80211_ies {
76	/* the following are either NULL or point within data */
77	uint8_t	*wpa_ie;	/* captured WPA ie */
78	uint8_t	*rsn_ie;	/* captured RSN ie */
79	uint8_t	*wme_ie;	/* captured WME ie */
80	uint8_t	*ath_ie;	/* captured Atheros ie */
81	uint8_t	*htcap_ie;	/* captured HTCAP ie */
82	uint8_t	*htinfo_ie;	/* captured HTINFO ie */
83	/* NB: these must be the last members of this structure */
84	uint8_t	*data;		/* frame data > 802.11 header */
85	int	len;		/* data size in bytes */
86};
87
88/*
89 * Node specific information.  Note that drivers are expected
90 * to derive from this structure to add device-specific per-node
91 * state.  This is done by overriding the ic_node_* methods in
92 * the ieee80211com structure.
93 */
94struct ieee80211_node {
95	struct ieee80211vap	*ni_vap;	/* associated vap */
96	struct ieee80211com	*ni_ic;		/* copy from vap to save deref*/
97	struct ieee80211_node_table *ni_table;	/* NB: may be NULL */
98	TAILQ_ENTRY(ieee80211_node) ni_list;	/* list of all nodes */
99	LIST_ENTRY(ieee80211_node) ni_hash;	/* hash collision list */
100	u_int			ni_refcnt;	/* count of held references */
101	u_int			ni_scangen;	/* gen# for timeout scan */
102	uint8_t			ni_authmode;	/* authentication algorithm */
103	uint8_t			ni_ath_flags;	/* Atheros feature flags */
104	/* NB: These must have the same values as IEEE80211_ATHC_* */
105#define IEEE80211_NODE_TURBOP	0x0001		/* Turbo prime enable */
106#define IEEE80211_NODE_COMP	0x0002		/* Compresssion enable */
107#define IEEE80211_NODE_FF	0x0004          /* Fast Frame capable */
108#define IEEE80211_NODE_XR	0x0008		/* Atheros WME enable */
109#define IEEE80211_NODE_AR	0x0010		/* AR capable */
110#define IEEE80211_NODE_BOOST	0x0080
111	uint16_t		ni_flags;	/* special-purpose state */
112#define	IEEE80211_NODE_AUTH	0x0001		/* authorized for data */
113#define	IEEE80211_NODE_QOS	0x0002		/* QoS enabled */
114#define	IEEE80211_NODE_ERP	0x0004		/* ERP enabled */
115/* NB: this must have the same value as IEEE80211_FC1_PWR_MGT */
116#define	IEEE80211_NODE_PWR_MGT	0x0010		/* power save mode enabled */
117#define	IEEE80211_NODE_AREF	0x0020		/* authentication ref held */
118#define	IEEE80211_NODE_HT	0x0040		/* HT enabled */
119#define	IEEE80211_NODE_HTCOMPAT	0x0080		/* HT setup w/ vendor OUI's */
120#define	IEEE80211_NODE_WPS	0x0100		/* WPS association */
121#define	IEEE80211_NODE_TSN	0x0200		/* TSN association */
122#define	IEEE80211_NODE_AMPDU_RX	0x0400		/* AMPDU rx enabled */
123#define	IEEE80211_NODE_AMPDU_TX	0x0800		/* AMPDU tx enabled */
124	uint16_t		ni_ath_defkeyix;/* Atheros def key index */
125	uint16_t		ni_associd;	/* assoc response */
126	uint16_t		ni_txpower;	/* current transmit power */
127	uint16_t		ni_vlan;	/* vlan tag */
128	uint32_t		ni_jointime;	/* time of join (secs) */
129	uint32_t		*ni_challenge;	/* shared-key challenge */
130	struct ieee80211_ies	ni_ies;		/* captured ie's */
131						/* tx seq per-tid */
132	uint16_t		ni_txseqs[IEEE80211_TID_SIZE];
133						/* rx seq previous per-tid*/
134	uint16_t		ni_rxseqs[IEEE80211_TID_SIZE];
135	uint32_t		ni_rxfragstamp;	/* time stamp of last rx frag */
136	struct mbuf		*ni_rxfrag[3];	/* rx frag reassembly */
137	struct ieee80211_key	ni_ucastkey;	/* unicast key */
138
139	/* hardware */
140	uint32_t		ni_rstamp;	/* recv timestamp */
141	uint32_t		ni_avgrssi;	/* recv ssi state */
142	int8_t			ni_noise;	/* noise floor */
143
144	/* header */
145	uint8_t			ni_macaddr[IEEE80211_ADDR_LEN];
146	uint8_t			ni_bssid[IEEE80211_ADDR_LEN];
147
148	/* beacon, probe response */
149	union {
150		uint8_t		data[8];
151		u_int64_t	tsf;
152	} ni_tstamp;				/* from last rcv'd beacon */
153	uint16_t		ni_intval;	/* beacon interval */
154	uint16_t		ni_capinfo;	/* capabilities */
155	uint8_t			ni_esslen;
156	uint8_t			ni_essid[IEEE80211_NWID_LEN];
157	struct ieee80211_rateset ni_rates;	/* negotiated rate set */
158	struct ieee80211_channel *ni_chan;
159	uint16_t		ni_fhdwell;	/* FH only */
160	uint8_t			ni_fhindex;	/* FH only */
161	uint16_t		ni_erp;		/* ERP from beacon/probe resp */
162	uint16_t		ni_timoff;	/* byte offset to TIM ie */
163	uint8_t			ni_dtim_period;	/* DTIM period */
164	uint8_t			ni_dtim_count;	/* DTIM count for last bcn */
165
166	/* 11n state */
167	uint16_t		ni_htcap;	/* HT capabilities */
168	uint8_t			ni_htparam;	/* HT params */
169	uint8_t			ni_htctlchan;	/* HT control channel */
170	uint8_t			ni_ht2ndchan;	/* HT 2nd channel */
171	uint8_t			ni_htopmode;	/* HT operating mode */
172	uint8_t			ni_htstbc;	/* HT */
173	uint8_t			ni_chw;		/* negotiated channel width */
174	struct ieee80211_htrateset ni_htrates;	/* negotiated ht rate set */
175	struct ieee80211_tx_ampdu ni_tx_ampdu[WME_NUM_AC];
176	struct ieee80211_rx_ampdu ni_rx_ampdu[WME_NUM_TID];
177
178	/* others */
179	short			ni_inact;	/* inactivity mark count */
180	short			ni_inact_reload;/* inactivity reload value */
181	int			ni_txrate;	/* legacy rate/MCS */
182	struct ifqueue		ni_savedq;	/* ps-poll queue */
183	struct ieee80211_nodestats ni_stats;	/* per-node statistics */
184
185	struct ieee80211vap	*ni_wdsvap;	/* associated WDS vap */
186	/* XXX move to vap? */
187	struct ifqueue		ni_wdsq;	/* wds pending queue */
188};
189MALLOC_DECLARE(M_80211_NODE);
190MALLOC_DECLARE(M_80211_NODE_IE);
191
192#define	IEEE80211_NODE_ATH	(IEEE80211_NODE_FF | IEEE80211_NODE_TURBOP)
193#define	IEEE80211_NODE_AMPDU \
194	(IEEE80211_NODE_AMPDU_RX | IEEE80211_NODE_AMPDU_TX)
195#define	IEEE80211_NODE_HT_ALL \
196	(IEEE80211_NODE_HT | IEEE80211_NODE_HTCOMPAT | \
197	 IEEE80211_NODE_AMPDU)
198
199#define	IEEE80211_NODE_AID(ni)	IEEE80211_AID(ni->ni_associd)
200
201#define	IEEE80211_NODE_STAT(ni,stat)	(ni->ni_stats.ns_##stat++)
202#define	IEEE80211_NODE_STAT_ADD(ni,stat,v)	(ni->ni_stats.ns_##stat += v)
203#define	IEEE80211_NODE_STAT_SET(ni,stat,v)	(ni->ni_stats.ns_##stat = v)
204
205/*
206 * Filtered rssi calculation support.  The receive rssi is maintained
207 * as an average over the last 10 frames received using a low pass filter
208 * (all frames for now, possibly need to be more selective).  Calculations
209 * are designed such that a good compiler can optimize them.  The avg
210 * rssi state should be initialized to IEEE80211_RSSI_DUMMY_MARKER and
211 * each sample incorporated with IEEE80211_RSSI_LPF.  Use IEEE80211_RSSI_GET
212 * to extract the current value.
213 *
214 * Note that we assume rssi data are in the range [-127..127] and we
215 * discard values <-20.  This is consistent with assumptions throughout
216 * net80211 that signal strength data are in .5 dBm units relative to
217 * the current noise floor (linear, not log).
218 */
219#define IEEE80211_RSSI_LPF_LEN		10
220#define	IEEE80211_RSSI_DUMMY_MARKER	127
221/* NB: pow2 to optimize out * and / */
222#define	IEEE80211_RSSI_EP_MULTIPLIER	(1<<7)
223#define IEEE80211_RSSI_IN(x)		((x) * IEEE80211_RSSI_EP_MULTIPLIER)
224#define _IEEE80211_RSSI_LPF(x, y, len) \
225    (((x) != IEEE80211_RSSI_DUMMY_MARKER) ? (((x) * ((len) - 1) + (y)) / (len)) : (y))
226#define IEEE80211_RSSI_LPF(x, y) do {					\
227    if ((y) >= -20) {							\
228    	x = _IEEE80211_RSSI_LPF((x), IEEE80211_RSSI_IN((y)), 		\
229		IEEE80211_RSSI_LPF_LEN);				\
230    }									\
231} while (0)
232#define	IEEE80211_RSSI_EP_RND(x, mul) \
233	((((x) % (mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
234#define	IEEE80211_RSSI_GET(x) \
235	IEEE80211_RSSI_EP_RND(x, IEEE80211_RSSI_EP_MULTIPLIER)
236
237static __inline struct ieee80211_node *
238ieee80211_ref_node(struct ieee80211_node *ni)
239{
240	ieee80211_node_incref(ni);
241	return ni;
242}
243
244static __inline void
245ieee80211_unref_node(struct ieee80211_node **ni)
246{
247	ieee80211_node_decref(*ni);
248	*ni = NULL;			/* guard against use */
249}
250
251struct ieee80211com;
252
253void	ieee80211_node_attach(struct ieee80211com *);
254void	ieee80211_node_lateattach(struct ieee80211com *);
255void	ieee80211_node_detach(struct ieee80211com *);
256void	ieee80211_node_vattach(struct ieee80211vap *);
257void	ieee80211_node_latevattach(struct ieee80211vap *);
258void	ieee80211_node_vdetach(struct ieee80211vap *);
259
260static __inline int
261ieee80211_node_is_authorized(const struct ieee80211_node *ni)
262{
263	return (ni->ni_flags & IEEE80211_NODE_AUTH);
264}
265
266void	ieee80211_node_authorize(struct ieee80211_node *);
267void	ieee80211_node_unauthorize(struct ieee80211_node *);
268
269void	ieee80211_node_set_chan(struct ieee80211_node *,
270		struct ieee80211_channel *);
271void	ieee80211_create_ibss(struct ieee80211vap*, struct ieee80211_channel *);
272void	ieee80211_reset_bss(struct ieee80211vap *);
273void	ieee80211_sync_curchan(struct ieee80211com *);
274void	ieee80211_setcurchan(struct ieee80211com *, struct ieee80211_channel *);
275int	ieee80211_ibss_merge(struct ieee80211_node *);
276struct ieee80211_scan_entry;
277int	ieee80211_sta_join(struct ieee80211vap *,
278		const struct ieee80211_scan_entry *);
279void	ieee80211_sta_leave(struct ieee80211_node *);
280void	ieee80211_node_deauth(struct ieee80211_node *, int);
281
282int	ieee80211_ies_init(struct ieee80211_ies *, const uint8_t *, int);
283void	ieee80211_ies_cleanup(struct ieee80211_ies *);
284void	ieee80211_ies_expand(struct ieee80211_ies *);
285#define	ieee80211_ies_setie(_ies, _ie, _off) do {		\
286	(_ies)._ie = (_ies).data + (_off);			\
287} while (0)
288
289/*
290 * Table of ieee80211_node instances.  Each ieee80211com
291 * has one that holds association stations (when operating
292 * as an ap) or neighbors (in ibss mode).
293 *
294 * XXX embed this in ieee80211com instead of indirect?
295 */
296struct ieee80211_node_table {
297	struct ieee80211com	*nt_ic;		/* back reference */
298	ieee80211_node_lock_t	nt_nodelock;	/* on node table */
299	TAILQ_HEAD(, ieee80211_node) nt_node;	/* information of all nodes */
300	LIST_HEAD(, ieee80211_node) nt_hash[IEEE80211_NODE_HASHSIZE];
301	struct ieee80211_node	**nt_keyixmap;	/* key ix -> node map */
302	int			nt_keyixmax;	/* keyixmap size */
303	const char		*nt_name;	/* table name for debug msgs */
304	ieee80211_scan_lock_t	nt_scanlock;	/* on nt_scangen */
305	u_int			nt_scangen;	/* gen# for iterators */
306	int			nt_inact_init;	/* initial node inact setting */
307};
308
309struct ieee80211_node *ieee80211_alloc_node(struct ieee80211_node_table *,
310		struct ieee80211vap *,
311		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
312struct ieee80211_node *ieee80211_tmp_node(struct ieee80211vap *,
313		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
314struct ieee80211_node *ieee80211_dup_bss(struct ieee80211vap *,
315		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
316struct ieee80211_node *ieee80211_node_create_wds(struct ieee80211vap *,
317		const uint8_t bssid[IEEE80211_ADDR_LEN],
318		struct ieee80211_channel *);
319#ifdef IEEE80211_DEBUG_REFCNT
320void	ieee80211_free_node_debug(struct ieee80211_node *,
321		const char *func, int line);
322struct ieee80211_node *ieee80211_find_node_locked_debug(
323		struct ieee80211_node_table *,
324		const uint8_t macaddr[IEEE80211_ADDR_LEN],
325		const char *func, int line);
326struct ieee80211_node *ieee80211_find_node_debug(struct ieee80211_node_table *,
327		const uint8_t macaddr[IEEE80211_ADDR_LEN],
328		const char *func, int line);
329struct ieee80211_node *ieee80211_find_vap_node_locked_debug(
330		struct ieee80211_node_table *,
331		const struct ieee80211vap *vap,
332		const uint8_t macaddr[IEEE80211_ADDR_LEN],
333		const char *func, int line);
334struct ieee80211_node *ieee80211_find_vap_node_debug(
335		struct ieee80211_node_table *,
336		const struct ieee80211vap *vap,
337		const uint8_t macaddr[IEEE80211_ADDR_LEN],
338		const char *func, int line);
339struct ieee80211_node * ieee80211_find_rxnode_debug(struct ieee80211com *,
340		const struct ieee80211_frame_min *,
341		const char *func, int line);
342struct ieee80211_node * ieee80211_find_rxnode_withkey_debug(
343		struct ieee80211com *,
344		const struct ieee80211_frame_min *, uint16_t keyix,
345		const char *func, int line);
346struct ieee80211_node *ieee80211_find_txnode_debug(struct ieee80211vap *,
347		const uint8_t *,
348		const char *func, int line);
349#define	ieee80211_free_node(ni) \
350	ieee80211_free_node_debug(ni, __func__, __LINE__)
351#define	ieee80211_find_node_locked(nt, mac) \
352	ieee80211_find_node_locked_debug(nt, mac, __func__, __LINE__)
353#define	ieee80211_find_node(nt, mac) \
354	ieee80211_find_node_debug(nt, mac, __func__, __LINE__)
355#define	ieee80211_find_vap_node_locked(nt, vap, mac) \
356	ieee80211_find_vap_node_locked_debug(nt, vap, mac, __func__, __LINE__)
357#define	ieee80211_find_vap_node(nt, vap, mac) \
358	ieee80211_find_vap_node_debug(nt, vap, mac, __func__, __LINE__)
359#define	ieee80211_find_rxnode(ic, wh) \
360	ieee80211_find_rxnode_debug(ic, wh, __func__, __LINE__)
361#define	ieee80211_find_rxnode_withkey(ic, wh, keyix) \
362	ieee80211_find_rxnode_withkey_debug(ic, wh, keyix, __func__, __LINE__)
363#define	ieee80211_find_txnode(vap, mac) \
364	ieee80211_find_txnode_debug(vap, mac, __func__, __LINE__)
365#else
366void	ieee80211_free_node(struct ieee80211_node *);
367struct ieee80211_node *ieee80211_find_node_locked(struct ieee80211_node_table *,
368		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
369struct ieee80211_node *ieee80211_find_node(struct ieee80211_node_table *,
370		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
371struct ieee80211_node *ieee80211_find_vap_node_locked(
372		struct ieee80211_node_table *, const struct ieee80211vap *,
373		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
374struct ieee80211_node *ieee80211_find_vap_node(
375		struct ieee80211_node_table *, const struct ieee80211vap *,
376		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
377struct ieee80211_node * ieee80211_find_rxnode(struct ieee80211com *,
378		const struct ieee80211_frame_min *);
379struct ieee80211_node * ieee80211_find_rxnode_withkey(struct ieee80211com *,
380		const struct ieee80211_frame_min *, uint16_t keyix);
381struct ieee80211_node *ieee80211_find_txnode(struct ieee80211vap *,
382		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
383#endif
384int	ieee80211_node_delucastkey(struct ieee80211_node *);
385void	ieee80211_node_timeout(void *arg);
386
387typedef void ieee80211_iter_func(void *, struct ieee80211_node *);
388void	ieee80211_iterate_nodes(struct ieee80211_node_table *,
389		ieee80211_iter_func *, void *);
390
391void	ieee80211_notify_erp(struct ieee80211com *);
392void	ieee80211_dump_node(struct ieee80211_node_table *,
393		struct ieee80211_node *);
394void	ieee80211_dump_nodes(struct ieee80211_node_table *);
395
396struct ieee80211_node *ieee80211_fakeup_adhoc_node(struct ieee80211vap *,
397		const uint8_t macaddr[IEEE80211_ADDR_LEN]);
398struct ieee80211_scanparams;
399void	ieee80211_init_neighbor(struct ieee80211_node *,
400		const struct ieee80211_frame *,
401		const struct ieee80211_scanparams *);
402struct ieee80211_node *ieee80211_add_neighbor(struct ieee80211vap *,
403		const struct ieee80211_frame *,
404		const struct ieee80211_scanparams *);
405void	ieee80211_node_join(struct ieee80211_node *,int);
406void	ieee80211_node_leave(struct ieee80211_node *);
407int8_t	ieee80211_getrssi(struct ieee80211vap *);
408void	ieee80211_getsignal(struct ieee80211vap *, int8_t *, int8_t *);
409#endif /* _NET80211_IEEE80211_NODE_H_ */
410