ieee80211_proto.h revision 139525
11539Srgrimes/*-
21539Srgrimes * Copyright (c) 2001 Atsushi Onoe
31539Srgrimes * Copyright (c) 2002-2004 Sam Leffler, Errno Consulting
41539Srgrimes * All rights reserved.
51539Srgrimes *
61539Srgrimes * Redistribution and use in source and binary forms, with or without
71539Srgrimes * modification, are permitted provided that the following conditions
81539Srgrimes * are met:
91539Srgrimes * 1. Redistributions of source code must retain the above copyright
101539Srgrimes *    notice, this list of conditions and the following disclaimer.
111539Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
121539Srgrimes *    notice, this list of conditions and the following disclaimer in the
13203964Simp *    documentation and/or other materials provided with the distribution.
141539Srgrimes * 3. The name of the author may not be used to endorse or promote products
151539Srgrimes *    derived from this software without specific prior written permission.
161539Srgrimes *
171539Srgrimes * Alternatively, this software may be distributed under the terms of the
181539Srgrimes * GNU General Public License ("GPL") version 2 as published by the Free
191539Srgrimes * Software Foundation.
201539Srgrimes *
211539Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
221539Srgrimes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
231539Srgrimes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
241539Srgrimes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
251539Srgrimes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
261539Srgrimes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
271539Srgrimes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
281539Srgrimes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
291539Srgrimes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3093032Simp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
311539Srgrimes *
321539Srgrimes * $FreeBSD: head/sys/net80211/ieee80211_proto.h 139525 2004-12-31 21:30:42Z sam $
331539Srgrimes */
341539Srgrimes#ifndef _NET80211_IEEE80211_PROTO_H_
351539Srgrimes#define _NET80211_IEEE80211_PROTO_H_
36123257Smarcel
37123257Smarcel/*
381539Srgrimes * 802.11 protocol implementation definitions.
391539Srgrimes */
401539Srgrimes
411539Srgrimesenum ieee80211_state {
421539Srgrimes	IEEE80211_S_INIT	= 0,	/* default state */
431539Srgrimes	IEEE80211_S_SCAN	= 1,	/* scanning */
441539Srgrimes	IEEE80211_S_AUTH	= 2,	/* try to authenticate */
451539Srgrimes	IEEE80211_S_ASSOC	= 3,	/* try to assoc */
461539Srgrimes	IEEE80211_S_RUN		= 4,	/* associated */
471539Srgrimes};
481539Srgrimes#define	IEEE80211_S_MAX		(IEEE80211_S_RUN+1)
491539Srgrimes
501539Srgrimes#define	IEEE80211_SEND_MGMT(_ic,_ni,_type,_arg) \
511539Srgrimes	((*(_ic)->ic_send_mgmt)(_ic, _ni, _type, _arg))
521539Srgrimes
531539Srgrimesextern	const char *ieee80211_mgt_subtype_name[];
541539Srgrimesextern	const char *ieee80211_phymode_name[];
551539Srgrimes
561539Srgrimesextern	void ieee80211_proto_attach(struct ieee80211com *);
57104711Stjrextern	void ieee80211_proto_detach(struct ieee80211com *);
58104711Stjr
59104711Stjrstruct ieee80211_node;
60104711Stjrextern	void ieee80211_input(struct ieee80211com *, struct mbuf *,
61104711Stjr		struct ieee80211_node *, int, u_int32_t);
62104711Stjrextern	void ieee80211_recv_mgmt(struct ieee80211com *, struct mbuf *,
631539Srgrimes		struct ieee80211_node *, int, int, u_int32_t);
641539Srgrimesextern	int ieee80211_send_nulldata(struct ieee80211com *,
651539Srgrimes		struct ieee80211_node *);
661539Srgrimesextern	int ieee80211_send_mgmt(struct ieee80211com *, struct ieee80211_node *,
671539Srgrimes		int, int);
681539Srgrimesextern	int ieee80211_classify(struct ieee80211com *, struct mbuf *,
691539Srgrimes		struct ieee80211_node *);
701539Srgrimesextern	struct mbuf *ieee80211_encap(struct ieee80211com *, struct mbuf *,
7135523Sache		struct ieee80211_node *);
721539Srgrimesextern	void ieee80211_pwrsave(struct ieee80211com *, struct ieee80211_node *,
7335523Sache		struct mbuf *);
741539Srgrimes
751539Srgrimesextern	void ieee80211_reset_erp(struct ieee80211com *);
761539Srgrimesextern	void ieee80211_set_shortslottime(struct ieee80211com *, int onoff);
771539Srgrimesextern	int ieee80211_iserp_rateset(struct ieee80211com *,
7893032Simp		struct ieee80211_rateset *);
7993032Simpextern	void ieee80211_set11gbasicrates(struct ieee80211_rateset *,
801539Srgrimes		enum ieee80211_phymode);
81227753Stheraven
82232498Stheraven/*
83232498Stheraven * Return the size of the 802.11 header for a management or data frame.
84227753Stheraven */
85227753Stheravenstatic __inline int
86227753Stheravenieee80211_hdrsize(const void *data)
871539Srgrimes{
88	const struct ieee80211_frame *wh = data;
89	int size = sizeof(struct ieee80211_frame);
90
91	/* NB: we don't handle control frames */
92	KASSERT((wh->i_fc[0]&IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_CTL,
93		("%s: control frame", __func__));
94	if ((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == IEEE80211_FC1_DIR_DSTODS)
95		size += IEEE80211_ADDR_LEN;
96	if (IEEE80211_QOS_HAS_SEQ(wh))
97		size += sizeof(u_int16_t);
98	return size;
99}
100
101/*
102 * Return the size of the 802.11 header; handles any type of frame.
103 */
104static __inline int
105ieee80211_anyhdrsize(const void *data)
106{
107	const struct ieee80211_frame *wh = data;
108
109	if ((wh->i_fc[0]&IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_CTL) {
110		switch (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
111		case IEEE80211_FC0_SUBTYPE_CTS:
112		case IEEE80211_FC0_SUBTYPE_ACK:
113			return sizeof(struct ieee80211_frame_ack);
114		}
115		return sizeof(struct ieee80211_frame_min);
116	} else
117		return ieee80211_hdrsize(data);
118}
119
120/*
121 * Template for an in-kernel authenticator.  Authenticators
122 * register with the protocol code and are typically loaded
123 * as separate modules as needed.
124 */
125struct ieee80211_authenticator {
126	const char *ia_name;		/* printable name */
127	int	(*ia_attach)(struct ieee80211com *);
128	void	(*ia_detach)(struct ieee80211com *);
129	void	(*ia_node_join)(struct ieee80211com *,
130				struct ieee80211_node *);
131	void	(*ia_node_leave)(struct ieee80211com *,
132				struct ieee80211_node *);
133};
134extern	void ieee80211_authenticator_register(int type,
135		const struct ieee80211_authenticator *);
136extern	void ieee80211_authenticator_unregister(int type);
137extern	const struct ieee80211_authenticator *
138		ieee80211_authenticator_get(int auth);
139
140/*
141 * Template for an MAC ACL policy module.  Such modules
142 * register with the protocol code and are passed the sender's
143 * address of each received frame for validation.
144 */
145struct ieee80211_aclator {
146	const char *iac_name;		/* printable name */
147	int	(*iac_attach)(struct ieee80211com *);
148	void	(*iac_detach)(struct ieee80211com *);
149	int	(*iac_check)(struct ieee80211com *,
150			const u_int8_t mac[IEEE80211_ADDR_LEN]);
151	int	(*iac_add)(struct ieee80211com *,
152			const u_int8_t mac[IEEE80211_ADDR_LEN]);
153	int	(*iac_remove)(struct ieee80211com *,
154			const u_int8_t mac[IEEE80211_ADDR_LEN]);
155	int	(*iac_flush)(struct ieee80211com *);
156	int	(*iac_setpolicy)(struct ieee80211com *, int);
157	int	(*iac_getpolicy)(struct ieee80211com *);
158};
159extern	void ieee80211_aclator_register(const struct ieee80211_aclator *);
160extern	void ieee80211_aclator_unregister(const struct ieee80211_aclator *);
161extern	const struct ieee80211_aclator *ieee80211_aclator_get(const char *name);
162
163/* flags for ieee80211_fix_rate() */
164#define	IEEE80211_F_DOSORT	0x00000001	/* sort rate list */
165#define	IEEE80211_F_DOFRATE	0x00000002	/* use fixed rate */
166#define	IEEE80211_F_DONEGO	0x00000004	/* calc negotiated rate */
167#define	IEEE80211_F_DODEL	0x00000008	/* delete ignore rate */
168extern	int ieee80211_fix_rate(struct ieee80211com *,
169		struct ieee80211_node *, int);
170
171/*
172 * WME/WMM support.
173 */
174struct wmeParams {
175	u_int8_t	wmep_acm;
176	u_int8_t	wmep_aifsn;
177	u_int8_t	wmep_logcwmin;		/* log2(cwmin) */
178	u_int8_t	wmep_logcwmax;		/* log2(cwmax) */
179	u_int8_t	wmep_txopLimit;
180	u_int8_t	wmep_noackPolicy;	/* 0 (ack), 1 (no ack) */
181};
182
183struct chanAccParams {
184	u_int8_t	cap_info;		/* version of the current set */
185	struct wmeParams cap_wmeParams[WME_NUM_AC];
186};
187
188struct ieee80211_wme_state {
189	u_int	wme_flags;
190#define	WME_F_AGGRMODE	0x00000001	/* STATUS: WME agressive mode */
191	u_int	wme_hipri_traffic;	/* VI/VO frames in beacon interval */
192	u_int	wme_hipri_switch_thresh;/* agressive mode switch thresh */
193	u_int	wme_hipri_switch_hysteresis;/* agressive mode switch hysteresis */
194
195	struct wmeParams wme_params[4];		/* from assoc resp for each AC*/
196	struct chanAccParams wme_wmeChanParams;	/* WME params applied to self */
197	struct chanAccParams wme_wmeBssChanParams;/* WME params bcast to stations */
198	struct chanAccParams wme_chanParams;	/* params applied to self */
199	struct chanAccParams wme_bssChanParams;	/* params bcast to stations */
200
201	int	(*wme_update)(struct ieee80211com *);
202};
203
204extern	void ieee80211_wme_initparams(struct ieee80211com *);
205extern	void ieee80211_wme_updateparams(struct ieee80211com *);
206extern	void ieee80211_wme_updateparams_locked(struct ieee80211com *);
207
208#define	ieee80211_new_state(_ic, _nstate, _arg) \
209	(((_ic)->ic_newstate)((_ic), (_nstate), (_arg)))
210extern	void ieee80211_print_essid(const u_int8_t *, int);
211extern	void ieee80211_dump_pkt(const u_int8_t *, int, int, int);
212
213extern	const char *ieee80211_state_name[IEEE80211_S_MAX];
214extern	const char *ieee80211_wme_acnames[];
215
216/*
217 * Beacon frames constructed by ieee80211_beacon_alloc
218 * have the following structure filled in so drivers
219 * can update the frame later w/ minimal overhead.
220 */
221struct ieee80211_beacon_offsets {
222	u_int16_t	*bo_caps;	/* capabilities */
223	u_int8_t	*bo_tim;	/* start of atim/dtim */
224	u_int8_t	*bo_wme;	/* start of WME parameters */
225	u_int8_t	*bo_trailer;	/* start of fixed-size trailer */
226	u_int16_t	bo_tim_len;	/* atim/dtim length in bytes */
227	u_int16_t	bo_trailer_len;	/* trailer length in bytes */
228};
229extern	struct mbuf *ieee80211_beacon_alloc(struct ieee80211com *,
230		struct ieee80211_node *, struct ieee80211_beacon_offsets *);
231extern	int ieee80211_beacon_update(struct ieee80211com *,
232		struct ieee80211_node *, struct ieee80211_beacon_offsets *,
233		struct mbuf *, int broadcast);
234
235/*
236 * Notification methods called from the 802.11 state machine.
237 * Note that while these are defined here, their implementation
238 * is OS-specific.
239 */
240extern	void ieee80211_notify_node_join(struct ieee80211com *,
241		struct ieee80211_node *, int newassoc);
242extern	void ieee80211_notify_node_leave(struct ieee80211com *,
243		struct ieee80211_node *);
244extern	void ieee80211_notify_scan_done(struct ieee80211com *);
245#endif /* _NET80211_IEEE80211_PROTO_H_ */
246