3 * Macros, types, and functions to handle 802.11 mgmt frames
5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6 * --------------------------------------------------------------------
10 * The contents of this file are subject to the Mozilla Public
11 * License Version 1.1 (the "License"); you may not use this file
12 * except in compliance with the License. You may obtain a copy of
13 * the License at http://www.mozilla.org/MPL/
15 * Software distributed under the License is distributed on an "AS
16 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17 * implied. See the License for the specific language governing
18 * rights and limitations under the License.
20 * Alternatively, the contents of this file may be used under the
21 * terms of the GNU Public License version 2 (the "GPL"), in which
22 * case the provisions of the GPL are applicable instead of the
23 * above. If you wish to allow the use of your version of this file
24 * only under the terms of the GPL and not to allow others to use
25 * your version of this file under the MPL, indicate your decision
26 * by deleting the provisions above and replace them with the notice
27 * and other provisions required by the GPL. If you do not delete
28 * the provisions above, a recipient may use your version of this
29 * file under either the MPL or the GPL.
31 * --------------------------------------------------------------------
33 * Inquiries regarding the linux-wlan Open Source project can be
36 * AbsoluteValue Systems Inc.
38 * http://www.linux-wlan.com
40 * --------------------------------------------------------------------
42 * Portions of the development of this software were funded by
43 * Intersil Corporation as part of PRISM(R) chipset product development.
45 * --------------------------------------------------------------------
47 * This file declares the constants and types used in the interface
48 * between a wlan driver and the user mode utilities.
51 * - Constant values are always in HOST byte order. To assign
52 * values to multi-byte fields they _must_ be converted to
53 * ieee byte order. To retrieve multi-byte values from incoming
54 * frames, they must be converted to host order.
56 * - The len member of the frame structure does NOT!!! include
57 * the MAC CRC. Therefore, the len field on rx'd frames should
58 * have 4 subtracted from it.
60 * All functions declared here are implemented in p80211.c
62 * The types, macros, and functions defined here are primarily
63 * used for encoding and decoding management frames. They are
64 * designed to follow these patterns of use:
67 * 1) a frame of length len is received into buffer b
68 * 2) using the hdr structure and macros, we determine the type
69 * 3) an appropriate mgmt frame structure, mf, is allocated and zeroed
73 * 5) call mgmt_decode( mf )
74 * 6) the frame field pointers in mf are now set. Note that any
75 * multi-byte frame field values accessed using the frame field
76 * pointers are in ieee byte order and will have to be converted
80 * 1) Library client allocates buffer space for maximum length
81 * frame of the desired type
82 * 2) Library client allocates a mgmt frame structure, called mf,
84 * 3) Set the following:
85 * mf.type = <desired type>
86 * mf.buf = <allocated buffer address>
87 * 4) call mgmt_encode( mf )
88 * 5) all of the fixed field pointers and fixed length information element
89 * pointers in mf are now set to their respective locations in the
90 * allocated space (fortunately, all variable length information elements
91 * fall at the end of their respective frames).
92 * 5a) The length field is set to include the last of the fixed and fixed
93 * length fields. It may have to be updated for optional or variable
94 * length information elements.
95 * 6) Optional and variable length information elements are special cases
96 * and must be handled individually by the client code.
97 * --------------------------------------------------------------------
100 #ifndef _P80211MGMT_H
101 #define _P80211MGMT_H
104 #include "p80211hdr.h"
107 /*-- Information Element IDs --------------------*/
108 #define WLAN_EID_SSID 0
109 #define WLAN_EID_SUPP_RATES 1
110 #define WLAN_EID_FH_PARMS 2
111 #define WLAN_EID_DS_PARMS 3
112 #define WLAN_EID_CF_PARMS 4
113 #define WLAN_EID_TIM 5
114 #define WLAN_EID_IBSS_PARMS 6
115 /*-- values 7-15 reserved --*/
116 #define WLAN_EID_CHALLENGE 16
117 /*-- values 17-31 reserved for challenge text extension --*/
118 /*-- values 32-255 reserved --*/
120 /*-- Reason Codes -------------------------------*/
121 #define WLAN_MGMT_REASON_RSVD 0
122 #define WLAN_MGMT_REASON_UNSPEC 1
123 #define WLAN_MGMT_REASON_PRIOR_AUTH_INVALID 2
124 #define WLAN_MGMT_REASON_DEAUTH_LEAVING 3
125 #define WLAN_MGMT_REASON_DISASSOC_INACTIVE 4
126 #define WLAN_MGMT_REASON_DISASSOC_AP_BUSY 5
127 #define WLAN_MGMT_REASON_CLASS2_NONAUTH 6
128 #define WLAN_MGMT_REASON_CLASS3_NONASSOC 7
129 #define WLAN_MGMT_REASON_DISASSOC_STA_HASLEFT 8
130 #define WLAN_MGMT_REASON_CANT_ASSOC_NONAUTH 9
132 /*-- Status Codes -------------------------------*/
133 #define WLAN_MGMT_STATUS_SUCCESS 0
134 #define WLAN_MGMT_STATUS_UNSPEC_FAILURE 1
135 #define WLAN_MGMT_STATUS_CAPS_UNSUPPORTED 10
136 #define WLAN_MGMT_STATUS_REASSOC_NO_ASSOC 11
137 #define WLAN_MGMT_STATUS_ASSOC_DENIED_UNSPEC 12
138 #define WLAN_MGMT_STATUS_UNSUPPORTED_AUTHALG 13
139 #define WLAN_MGMT_STATUS_RX_AUTH_NOSEQ 14
140 #define WLAN_MGMT_STATUS_CHALLENGE_FAIL 15
141 #define WLAN_MGMT_STATUS_AUTH_TIMEOUT 16
142 #define WLAN_MGMT_STATUS_ASSOC_DENIED_BUSY 17
143 #define WLAN_MGMT_STATUS_ASSOC_DENIED_RATES 18
144 /* p80211b additions */
145 #define WLAN_MGMT_STATUS_ASSOC_DENIED_NOSHORT 19
146 #define WLAN_MGMT_STATUS_ASSOC_DENIED_NOPBCC 20
147 #define WLAN_MGMT_STATUS_ASSOC_DENIED_NOAGILITY 21
149 /*-- Auth Algorithm Field ---------------------------*/
150 #define WLAN_AUTH_ALG_OPENSYSTEM 0
151 #define WLAN_AUTH_ALG_SHAREDKEY 1
153 /*-- Management Frame Field Offsets -------------*/
154 /* Note: Not all fields are listed because of variable lengths, */
155 /* see the code in p80211.c to see how we search for fields */
156 /* Note: These offsets are from the start of the frame data */
158 #define WLAN_BEACON_OFF_TS 0
159 #define WLAN_BEACON_OFF_BCN_int 8
160 #define WLAN_BEACON_OFF_CAPINFO 10
161 #define WLAN_BEACON_OFF_SSID 12
163 #define WLAN_DISASSOC_OFF_REASON 0
165 #define WLAN_ASSOCREQ_OFF_CAP_INFO 0
166 #define WLAN_ASSOCREQ_OFF_LISTEN_int 2
167 #define WLAN_ASSOCREQ_OFF_SSID 4
169 #define WLAN_ASSOCRESP_OFF_CAP_INFO 0
170 #define WLAN_ASSOCRESP_OFF_STATUS 2
171 #define WLAN_ASSOCRESP_OFF_AID 4
172 #define WLAN_ASSOCRESP_OFF_SUPP_RATES 6
174 #define WLAN_REASSOCREQ_OFF_CAP_INFO 0
175 #define WLAN_REASSOCREQ_OFF_LISTEN_int 2
176 #define WLAN_REASSOCREQ_OFF_CURR_AP 4
177 #define WLAN_REASSOCREQ_OFF_SSID 10
179 #define WLAN_REASSOCRESP_OFF_CAP_INFO 0
180 #define WLAN_REASSOCRESP_OFF_STATUS 2
181 #define WLAN_REASSOCRESP_OFF_AID 4
182 #define WLAN_REASSOCRESP_OFF_SUPP_RATES 6
184 #define WLAN_PROBEREQ_OFF_SSID 0
186 #define WLAN_PROBERESP_OFF_TS 0
187 #define WLAN_PROBERESP_OFF_BCN_int 8
188 #define WLAN_PROBERESP_OFF_CAP_INFO 10
189 #define WLAN_PROBERESP_OFF_SSID 12
191 #define WLAN_AUTHEN_OFF_AUTH_ALG 0
192 #define WLAN_AUTHEN_OFF_AUTH_SEQ 2
193 #define WLAN_AUTHEN_OFF_STATUS 4
194 #define WLAN_AUTHEN_OFF_CHALLENGE 6
196 #define WLAN_DEAUTHEN_OFF_REASON 0
198 /*-- Capability Field ---------------------------*/
199 #define WLAN_GET_MGMT_CAP_INFO_ESS(n) ((n) & BIT(0))
200 #define WLAN_GET_MGMT_CAP_INFO_IBSS(n) (((n) & BIT(1)) >> 1)
201 #define WLAN_GET_MGMT_CAP_INFO_CFPOLLABLE(n) (((n) & BIT(2)) >> 2)
202 #define WLAN_GET_MGMT_CAP_INFO_CFPOLLREQ(n) (((n) & BIT(3)) >> 3)
203 #define WLAN_GET_MGMT_CAP_INFO_PRIVACY(n) (((n) & BIT(4)) >> 4)
204 /* p80211b additions */
205 #define WLAN_GET_MGMT_CAP_INFO_SHORT(n) (((n) & BIT(5)) >> 5)
206 #define WLAN_GET_MGMT_CAP_INFO_PBCC(n) (((n) & BIT(6)) >> 6)
207 #define WLAN_GET_MGMT_CAP_INFO_AGILITY(n) (((n) & BIT(7)) >> 7)
209 #define WLAN_SET_MGMT_CAP_INFO_ESS(n) (n)
210 #define WLAN_SET_MGMT_CAP_INFO_IBSS(n) ((n) << 1)
211 #define WLAN_SET_MGMT_CAP_INFO_CFPOLLABLE(n) ((n) << 2)
212 #define WLAN_SET_MGMT_CAP_INFO_CFPOLLREQ(n) ((n) << 3)
213 #define WLAN_SET_MGMT_CAP_INFO_PRIVACY(n) ((n) << 4)
214 /* p80211b additions */
215 #define WLAN_SET_MGMT_CAP_INFO_SHORT(n) ((n) << 5)
216 #define WLAN_SET_MGMT_CAP_INFO_PBCC(n) ((n) << 6)
217 #define WLAN_SET_MGMT_CAP_INFO_AGILITY(n) ((n) << 7)
219 /*-- Information Element Types --------------------*/
220 /* prototype structure, all IEs start with these members */
222 typedef struct wlan_ie
{
225 } __packed wlan_ie_t
;
227 /*-- Service Set Identity (SSID) -----------------*/
228 typedef struct wlan_ie_ssid
{
231 u8 ssid
[1]; /* may be zero, ptrs may overlap */
232 } __packed wlan_ie_ssid_t
;
234 /*-- Supported Rates -----------------------------*/
235 typedef struct wlan_ie_supp_rates
{
238 u8 rates
[1]; /* had better be at LEAST one! */
239 } __packed wlan_ie_supp_rates_t
;
241 /*-- FH Parameter Set ----------------------------*/
242 typedef struct wlan_ie_fh_parms
{
249 } __packed wlan_ie_fh_parms_t
;
251 /*-- DS Parameter Set ----------------------------*/
252 typedef struct wlan_ie_ds_parms
{
256 } __packed wlan_ie_ds_parms_t
;
258 /*-- CF Parameter Set ----------------------------*/
260 typedef struct wlan_ie_cf_parms
{
266 u16 cfp_durremaining
;
267 } __packed wlan_ie_cf_parms_t
;
269 /*-- TIM ------------------------------------------*/
270 typedef struct wlan_ie_tim
{
277 } __packed wlan_ie_tim_t
;
279 /*-- IBSS Parameter Set ---------------------------*/
280 typedef struct wlan_ie_ibss_parms
{
284 } __packed wlan_ie_ibss_parms_t
;
286 /*-- Challenge Text ------------------------------*/
287 typedef struct wlan_ie_challenge
{
291 } __packed wlan_ie_challenge_t
;
293 /*-------------------------------------------------*/
296 /* prototype structure, all mgmt frame types will start with these members */
297 typedef struct wlan_fr_mgmt
{
299 u16 len
; /* DOES NOT include CRC !!!! */
301 union p80211_hdr
*hdr
;
302 /* used for target specific data, skb in Linux */
304 /*-- fixed fields -----------*/
305 /*-- info elements ----------*/
308 /*-- Beacon ---------------------------------------*/
309 typedef struct wlan_fr_beacon
{
313 union p80211_hdr
*hdr
;
314 /* used for target specific data, skb in Linux */
316 /*-- fixed fields -----------*/
320 /*-- info elements ----------*/
321 wlan_ie_ssid_t
*ssid
;
322 wlan_ie_supp_rates_t
*supp_rates
;
323 wlan_ie_fh_parms_t
*fh_parms
;
324 wlan_ie_ds_parms_t
*ds_parms
;
325 wlan_ie_cf_parms_t
*cf_parms
;
326 wlan_ie_ibss_parms_t
*ibss_parms
;
331 /*-- IBSS ATIM ------------------------------------*/
332 typedef struct wlan_fr_ibssatim
{
336 union p80211_hdr
*hdr
;
337 /* used for target specific data, skb in Linux */
340 /*-- fixed fields -----------*/
341 /*-- info elements ----------*/
343 /* this frame type has a null body */
345 } wlan_fr_ibssatim_t
;
347 /*-- Disassociation -------------------------------*/
348 typedef struct wlan_fr_disassoc
{
352 union p80211_hdr
*hdr
;
353 /* used for target specific data, skb in Linux */
355 /*-- fixed fields -----------*/
358 /*-- info elements ----------*/
360 } wlan_fr_disassoc_t
;
362 /*-- Association Request --------------------------*/
363 typedef struct wlan_fr_assocreq
{
367 union p80211_hdr
*hdr
;
368 /* used for target specific data, skb in Linux */
370 /*-- fixed fields -----------*/
373 /*-- info elements ----------*/
374 wlan_ie_ssid_t
*ssid
;
375 wlan_ie_supp_rates_t
*supp_rates
;
377 } wlan_fr_assocreq_t
;
379 /*-- Association Response -------------------------*/
380 typedef struct wlan_fr_assocresp
{
384 union p80211_hdr
*hdr
;
385 /* used for target specific data, skb in Linux */
387 /*-- fixed fields -----------*/
391 /*-- info elements ----------*/
392 wlan_ie_supp_rates_t
*supp_rates
;
394 } wlan_fr_assocresp_t
;
396 /*-- Reassociation Request ------------------------*/
397 typedef struct wlan_fr_reassocreq
{
401 union p80211_hdr
*hdr
;
402 /* used for target specific data, skb in Linux */
404 /*-- fixed fields -----------*/
408 /*-- info elements ----------*/
409 wlan_ie_ssid_t
*ssid
;
410 wlan_ie_supp_rates_t
*supp_rates
;
412 } wlan_fr_reassocreq_t
;
414 /*-- Reassociation Response -----------------------*/
415 typedef struct wlan_fr_reassocresp
{
419 union p80211_hdr
*hdr
;
420 /* used for target specific data, skb in Linux */
422 /*-- fixed fields -----------*/
426 /*-- info elements ----------*/
427 wlan_ie_supp_rates_t
*supp_rates
;
429 } wlan_fr_reassocresp_t
;
431 /*-- Probe Request --------------------------------*/
432 typedef struct wlan_fr_probereq
{
436 union p80211_hdr
*hdr
;
437 /* used for target specific data, skb in Linux */
439 /*-- fixed fields -----------*/
440 /*-- info elements ----------*/
441 wlan_ie_ssid_t
*ssid
;
442 wlan_ie_supp_rates_t
*supp_rates
;
444 } wlan_fr_probereq_t
;
446 /*-- Probe Response -------------------------------*/
447 typedef struct wlan_fr_proberesp
{
451 union p80211_hdr
*hdr
;
452 /* used for target specific data, skb in Linux */
454 /*-- fixed fields -----------*/
458 /*-- info elements ----------*/
459 wlan_ie_ssid_t
*ssid
;
460 wlan_ie_supp_rates_t
*supp_rates
;
461 wlan_ie_fh_parms_t
*fh_parms
;
462 wlan_ie_ds_parms_t
*ds_parms
;
463 wlan_ie_cf_parms_t
*cf_parms
;
464 wlan_ie_ibss_parms_t
*ibss_parms
;
465 } wlan_fr_proberesp_t
;
467 /*-- Authentication -------------------------------*/
468 typedef struct wlan_fr_authen
{
472 union p80211_hdr
*hdr
;
473 /* used for target specific data, skb in Linux */
475 /*-- fixed fields -----------*/
479 /*-- info elements ----------*/
480 wlan_ie_challenge_t
*challenge
;
484 /*-- Deauthenication -----------------------------*/
485 typedef struct wlan_fr_deauthen
{
489 union p80211_hdr
*hdr
;
490 /* used for target specific data, skb in Linux */
492 /*-- fixed fields -----------*/
495 /*-- info elements ----------*/
497 } wlan_fr_deauthen_t
;
499 void wlan_mgmt_encode_beacon(wlan_fr_beacon_t
*f
);
500 void wlan_mgmt_decode_beacon(wlan_fr_beacon_t
*f
);
501 void wlan_mgmt_encode_disassoc(wlan_fr_disassoc_t
*f
);
502 void wlan_mgmt_decode_disassoc(wlan_fr_disassoc_t
*f
);
503 void wlan_mgmt_encode_assocreq(wlan_fr_assocreq_t
*f
);
504 void wlan_mgmt_decode_assocreq(wlan_fr_assocreq_t
*f
);
505 void wlan_mgmt_encode_assocresp(wlan_fr_assocresp_t
*f
);
506 void wlan_mgmt_decode_assocresp(wlan_fr_assocresp_t
*f
);
507 void wlan_mgmt_encode_reassocreq(wlan_fr_reassocreq_t
*f
);
508 void wlan_mgmt_decode_reassocreq(wlan_fr_reassocreq_t
*f
);
509 void wlan_mgmt_encode_reassocresp(wlan_fr_reassocresp_t
*f
);
510 void wlan_mgmt_decode_reassocresp(wlan_fr_reassocresp_t
*f
);
511 void wlan_mgmt_encode_probereq(wlan_fr_probereq_t
*f
);
512 void wlan_mgmt_decode_probereq(wlan_fr_probereq_t
*f
);
513 void wlan_mgmt_encode_proberesp(wlan_fr_proberesp_t
*f
);
514 void wlan_mgmt_decode_proberesp(wlan_fr_proberesp_t
*f
);
515 void wlan_mgmt_encode_authen(wlan_fr_authen_t
*f
);
516 void wlan_mgmt_decode_authen(wlan_fr_authen_t
*f
);
517 void wlan_mgmt_encode_deauthen(wlan_fr_deauthen_t
*f
);
518 void wlan_mgmt_decode_deauthen(wlan_fr_deauthen_t
*f
);
520 #endif /* _P80211MGMT_H */