4 * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
6 * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
7 * Copyright (c) 2005, Devicescape Software, Inc.
8 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
18 #include <linux/types.h>
19 #include <asm/byteorder.h>
23 #define IEEE80211_FCTL_VERS 0x0003
24 #define IEEE80211_FCTL_FTYPE 0x000c
25 #define IEEE80211_FCTL_STYPE 0x00f0
26 #define IEEE80211_FCTL_TODS 0x0100
27 #define IEEE80211_FCTL_FROMDS 0x0200
28 #define IEEE80211_FCTL_MOREFRAGS 0x0400
29 #define IEEE80211_FCTL_RETRY 0x0800
30 #define IEEE80211_FCTL_PM 0x1000
31 #define IEEE80211_FCTL_MOREDATA 0x2000
32 #define IEEE80211_FCTL_PROTECTED 0x4000
33 #define IEEE80211_FCTL_ORDER 0x8000
35 #define IEEE80211_SCTL_FRAG 0x000F
36 #define IEEE80211_SCTL_SEQ 0xFFF0
38 #define IEEE80211_FTYPE_MGMT 0x0000
39 #define IEEE80211_FTYPE_CTL 0x0004
40 #define IEEE80211_FTYPE_DATA 0x0008
43 #define IEEE80211_STYPE_ASSOC_REQ 0x0000
44 #define IEEE80211_STYPE_ASSOC_RESP 0x0010
45 #define IEEE80211_STYPE_REASSOC_REQ 0x0020
46 #define IEEE80211_STYPE_REASSOC_RESP 0x0030
47 #define IEEE80211_STYPE_PROBE_REQ 0x0040
48 #define IEEE80211_STYPE_PROBE_RESP 0x0050
49 #define IEEE80211_STYPE_BEACON 0x0080
50 #define IEEE80211_STYPE_ATIM 0x0090
51 #define IEEE80211_STYPE_DISASSOC 0x00A0
52 #define IEEE80211_STYPE_AUTH 0x00B0
53 #define IEEE80211_STYPE_DEAUTH 0x00C0
54 #define IEEE80211_STYPE_ACTION 0x00D0
57 #define IEEE80211_STYPE_BACK_REQ 0x0080
58 #define IEEE80211_STYPE_BACK 0x0090
59 #define IEEE80211_STYPE_PSPOLL 0x00A0
60 #define IEEE80211_STYPE_RTS 0x00B0
61 #define IEEE80211_STYPE_CTS 0x00C0
62 #define IEEE80211_STYPE_ACK 0x00D0
63 #define IEEE80211_STYPE_CFEND 0x00E0
64 #define IEEE80211_STYPE_CFENDACK 0x00F0
67 #define IEEE80211_STYPE_DATA 0x0000
68 #define IEEE80211_STYPE_DATA_CFACK 0x0010
69 #define IEEE80211_STYPE_DATA_CFPOLL 0x0020
70 #define IEEE80211_STYPE_DATA_CFACKPOLL 0x0030
71 #define IEEE80211_STYPE_NULLFUNC 0x0040
72 #define IEEE80211_STYPE_CFACK 0x0050
73 #define IEEE80211_STYPE_CFPOLL 0x0060
74 #define IEEE80211_STYPE_CFACKPOLL 0x0070
75 #define IEEE80211_STYPE_QOS_DATA 0x0080
76 #define IEEE80211_STYPE_QOS_DATA_CFACK 0x0090
77 #define IEEE80211_STYPE_QOS_DATA_CFPOLL 0x00A0
78 #define IEEE80211_STYPE_QOS_DATA_CFACKPOLL 0x00B0
79 #define IEEE80211_STYPE_QOS_NULLFUNC 0x00C0
80 #define IEEE80211_STYPE_QOS_CFACK 0x00D0
81 #define IEEE80211_STYPE_QOS_CFPOLL 0x00E0
82 #define IEEE80211_STYPE_QOS_CFACKPOLL 0x00F0
85 /* miscellaneous IEEE 802.11 constants */
86 #define IEEE80211_MAX_FRAG_THRESHOLD 2352
87 #define IEEE80211_MAX_RTS_THRESHOLD 2353
88 #define IEEE80211_MAX_AID 2007
89 #define IEEE80211_MAX_TIM_LEN 251
90 /* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
93 802.11e clarifies the figure in section 7.1.2. The frame body is
94 up to 2304 octets long (maximum MSDU size) plus any crypt overhead. */
95 #define IEEE80211_MAX_DATA_LEN 2304
96 /* 30 byte 4 addr hdr, 2 byte QoS, 2304 byte MSDU, 12 byte crypt, 4 byte FCS */
97 #define IEEE80211_MAX_FRAME_LEN 2352
99 #define IEEE80211_MAX_SSID_LEN 32
100 #define IEEE80211_MAX_MESH_ID_LEN 32
101 #define IEEE80211_QOS_CTL_LEN 2
103 struct ieee80211_hdr {
104 __le16 frame_control;
111 } __attribute__ ((packed));
114 * ieee80211_has_tods - check if IEEE80211_FCTL_TODS is set
115 * @fc: frame control bytes in little-endian byteorder
117 static inline int ieee80211_has_tods(__le16 fc)
119 return (fc & cpu_to_le16(IEEE80211_FCTL_TODS)) != 0;
123 * ieee80211_has_fromds - check if IEEE80211_FCTL_FROMDS is set
124 * @fc: frame control bytes in little-endian byteorder
126 static inline int ieee80211_has_fromds(__le16 fc)
128 return (fc & cpu_to_le16(IEEE80211_FCTL_FROMDS)) != 0;
132 * ieee80211_has_a4 - check if IEEE80211_FCTL_TODS and IEEE80211_FCTL_FROMDS are set
133 * @fc: frame control bytes in little-endian byteorder
135 static inline int ieee80211_has_a4(__le16 fc)
137 __le16 tmp = cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS);
138 return (fc & tmp) == tmp;
142 * ieee80211_has_morefrags - check if IEEE80211_FCTL_MOREFRAGS is set
143 * @fc: frame control bytes in little-endian byteorder
145 static inline int ieee80211_has_morefrags(__le16 fc)
147 return (fc & cpu_to_le16(IEEE80211_FCTL_MOREFRAGS)) != 0;
151 * ieee80211_has_retry - check if IEEE80211_FCTL_RETRY is set
152 * @fc: frame control bytes in little-endian byteorder
154 static inline int ieee80211_has_retry(__le16 fc)
156 return (fc & cpu_to_le16(IEEE80211_FCTL_RETRY)) != 0;
160 * ieee80211_has_pm - check if IEEE80211_FCTL_PM is set
161 * @fc: frame control bytes in little-endian byteorder
163 static inline int ieee80211_has_pm(__le16 fc)
165 return (fc & cpu_to_le16(IEEE80211_FCTL_PM)) != 0;
169 * ieee80211_has_moredata - check if IEEE80211_FCTL_MOREDATA is set
170 * @fc: frame control bytes in little-endian byteorder
172 static inline int ieee80211_has_moredata(__le16 fc)
174 return (fc & cpu_to_le16(IEEE80211_FCTL_MOREDATA)) != 0;
178 * ieee80211_has_protected - check if IEEE80211_FCTL_PROTECTED is set
179 * @fc: frame control bytes in little-endian byteorder
181 static inline int ieee80211_has_protected(__le16 fc)
183 return (fc & cpu_to_le16(IEEE80211_FCTL_PROTECTED)) != 0;
187 * ieee80211_has_order - check if IEEE80211_FCTL_ORDER is set
188 * @fc: frame control bytes in little-endian byteorder
190 static inline int ieee80211_has_order(__le16 fc)
192 return (fc & cpu_to_le16(IEEE80211_FCTL_ORDER)) != 0;
196 * ieee80211_is_mgmt - check if type is IEEE80211_FTYPE_MGMT
197 * @fc: frame control bytes in little-endian byteorder
199 static inline int ieee80211_is_mgmt(__le16 fc)
201 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE)) ==
202 cpu_to_le16(IEEE80211_FTYPE_MGMT);
206 * ieee80211_is_ctl - check if type is IEEE80211_FTYPE_CTL
207 * @fc: frame control bytes in little-endian byteorder
209 static inline int ieee80211_is_ctl(__le16 fc)
211 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE)) ==
212 cpu_to_le16(IEEE80211_FTYPE_CTL);
216 * ieee80211_is_data - check if type is IEEE80211_FTYPE_DATA
217 * @fc: frame control bytes in little-endian byteorder
219 static inline int ieee80211_is_data(__le16 fc)
221 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE)) ==
222 cpu_to_le16(IEEE80211_FTYPE_DATA);
226 * ieee80211_is_data_qos - check if type is IEEE80211_FTYPE_DATA and IEEE80211_STYPE_QOS_DATA is set
227 * @fc: frame control bytes in little-endian byteorder
229 static inline int ieee80211_is_data_qos(__le16 fc)
232 * mask with QOS_DATA rather than IEEE80211_FCTL_STYPE as we just need
233 * to check the one bit
235 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_STYPE_QOS_DATA)) ==
236 cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_QOS_DATA);
240 * ieee80211_is_data_present - check if type is IEEE80211_FTYPE_DATA and has data
241 * @fc: frame control bytes in little-endian byteorder
243 static inline int ieee80211_is_data_present(__le16 fc)
246 * mask with 0x40 and test that that bit is clear to only return true
247 * for the data-containing substypes.
249 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | 0x40)) ==
250 cpu_to_le16(IEEE80211_FTYPE_DATA);
254 * ieee80211_is_assoc_req - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_ASSOC_REQ
255 * @fc: frame control bytes in little-endian byteorder
257 static inline int ieee80211_is_assoc_req(__le16 fc)
259 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
260 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ASSOC_REQ);
264 * ieee80211_is_assoc_resp - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_ASSOC_RESP
265 * @fc: frame control bytes in little-endian byteorder
267 static inline int ieee80211_is_assoc_resp(__le16 fc)
269 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
270 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ASSOC_RESP);
274 * ieee80211_is_reassoc_req - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_REASSOC_REQ
275 * @fc: frame control bytes in little-endian byteorder
277 static inline int ieee80211_is_reassoc_req(__le16 fc)
279 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
280 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_REASSOC_REQ);
284 * ieee80211_is_reassoc_resp - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_REASSOC_RESP
285 * @fc: frame control bytes in little-endian byteorder
287 static inline int ieee80211_is_reassoc_resp(__le16 fc)
289 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
290 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_REASSOC_RESP);
294 * ieee80211_is_probe_req - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_PROBE_REQ
295 * @fc: frame control bytes in little-endian byteorder
297 static inline int ieee80211_is_probe_req(__le16 fc)
299 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
300 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ);
304 * ieee80211_is_probe_resp - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_PROBE_RESP
305 * @fc: frame control bytes in little-endian byteorder
307 static inline int ieee80211_is_probe_resp(__le16 fc)
309 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
310 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP);
314 * ieee80211_is_beacon - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_BEACON
315 * @fc: frame control bytes in little-endian byteorder
317 static inline int ieee80211_is_beacon(__le16 fc)
319 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
320 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
324 * ieee80211_is_atim - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_ATIM
325 * @fc: frame control bytes in little-endian byteorder
327 static inline int ieee80211_is_atim(__le16 fc)
329 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
330 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ATIM);
334 * ieee80211_is_disassoc - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_DISASSOC
335 * @fc: frame control bytes in little-endian byteorder
337 static inline int ieee80211_is_disassoc(__le16 fc)
339 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
340 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_DISASSOC);
344 * ieee80211_is_auth - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_AUTH
345 * @fc: frame control bytes in little-endian byteorder
347 static inline int ieee80211_is_auth(__le16 fc)
349 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
350 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_AUTH);
354 * ieee80211_is_deauth - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_DEAUTH
355 * @fc: frame control bytes in little-endian byteorder
357 static inline int ieee80211_is_deauth(__le16 fc)
359 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
360 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_DEAUTH);
364 * ieee80211_is_action - check if IEEE80211_FTYPE_MGMT && IEEE80211_STYPE_ACTION
365 * @fc: frame control bytes in little-endian byteorder
367 static inline int ieee80211_is_action(__le16 fc)
369 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
370 cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION);
374 * ieee80211_is_back_req - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_BACK_REQ
375 * @fc: frame control bytes in little-endian byteorder
377 static inline int ieee80211_is_back_req(__le16 fc)
379 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
380 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_BACK_REQ);
384 * ieee80211_is_back - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_BACK
385 * @fc: frame control bytes in little-endian byteorder
387 static inline int ieee80211_is_back(__le16 fc)
389 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
390 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_BACK);
394 * ieee80211_is_pspoll - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_PSPOLL
395 * @fc: frame control bytes in little-endian byteorder
397 static inline int ieee80211_is_pspoll(__le16 fc)
399 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
400 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL);
404 * ieee80211_is_rts - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_RTS
405 * @fc: frame control bytes in little-endian byteorder
407 static inline int ieee80211_is_rts(__le16 fc)
409 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
410 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
414 * ieee80211_is_cts - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_CTS
415 * @fc: frame control bytes in little-endian byteorder
417 static inline int ieee80211_is_cts(__le16 fc)
419 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
420 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
424 * ieee80211_is_ack - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_ACK
425 * @fc: frame control bytes in little-endian byteorder
427 static inline int ieee80211_is_ack(__le16 fc)
429 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
430 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_ACK);
434 * ieee80211_is_cfend - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_CFEND
435 * @fc: frame control bytes in little-endian byteorder
437 static inline int ieee80211_is_cfend(__le16 fc)
439 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
440 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CFEND);
444 * ieee80211_is_cfendack - check if IEEE80211_FTYPE_CTL && IEEE80211_STYPE_CFENDACK
445 * @fc: frame control bytes in little-endian byteorder
447 static inline int ieee80211_is_cfendack(__le16 fc)
449 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
450 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CFENDACK);
454 * ieee80211_is_nullfunc - check if FTYPE=IEEE80211_FTYPE_DATA and STYPE=IEEE80211_STYPE_NULLFUNC
455 * @fc: frame control bytes in little-endian byteorder
457 static inline int ieee80211_is_nullfunc(__le16 fc)
459 return (fc & cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)) ==
460 cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC);
463 struct ieee80211s_hdr {
470 } __attribute__ ((packed));
473 struct ieee80211_mgmt {
474 __le16 frame_control;
483 __le16 auth_transaction;
485 /* possibly followed by Challenge text */
487 } __attribute__ ((packed)) auth;
490 } __attribute__ ((packed)) deauth;
493 __le16 listen_interval;
494 /* followed by SSID and Supported rates */
496 } __attribute__ ((packed)) assoc_req;
501 /* followed by Supported rates */
503 } __attribute__ ((packed)) assoc_resp, reassoc_resp;
506 __le16 listen_interval;
508 /* followed by SSID and Supported rates */
510 } __attribute__ ((packed)) reassoc_req;
513 } __attribute__ ((packed)) disassoc;
518 /* followed by some of SSID, Supported rates,
519 * FH Params, DS Params, CF Params, IBSS Params, TIM */
521 } __attribute__ ((packed)) beacon;
523 /* only variable items: SSID, Supported rates */
525 } __attribute__ ((packed)) probe_req;
530 /* followed by some of SSID, Supported rates,
531 * FH Params, DS Params, CF Params, IBSS Params */
533 } __attribute__ ((packed)) probe_resp;
542 } __attribute__ ((packed)) wme_action;
550 } __attribute__((packed)) chan_switch;
556 __le16 start_seq_num;
557 } __attribute__((packed)) addba_req;
564 } __attribute__((packed)) addba_resp;
569 } __attribute__((packed)) delba;
572 /* capab_info for open and confirm,
576 /* Followed in plink_confirm by status
577 * code, AID and supported rates,
578 * and directly by supported rates in
579 * plink_open and plink_close
582 } __attribute__((packed)) plink_action;
586 } __attribute__((packed)) mesh_action;
588 } __attribute__ ((packed)) action;
590 } __attribute__ ((packed));
594 struct ieee80211_rts {
595 __le16 frame_control;
599 } __attribute__ ((packed));
601 struct ieee80211_cts {
602 __le16 frame_control;
605 } __attribute__ ((packed));
608 * struct ieee80211_bar - HT Block Ack Request
610 * This structure refers to "HT BlockAckReq" as
611 * described in 802.11n draft section 7.2.1.7.1
613 struct ieee80211_bar {
614 __le16 frame_control;
619 __le16 start_seq_num;
620 } __attribute__((packed));
623 * struct ieee80211_ht_cap - HT capabilities
625 * This structure refers to "HT capabilities element" as
626 * described in 802.11n draft section 7.3.2.52
628 struct ieee80211_ht_cap {
630 u8 ampdu_params_info;
632 __le16 extended_ht_cap_info;
633 __le32 tx_BF_cap_info;
634 u8 antenna_selection_info;
635 } __attribute__ ((packed));
638 * struct ieee80211_ht_cap - HT additional information
640 * This structure refers to "HT information element" as
641 * described in 802.11n draft section 7.3.2.53
643 struct ieee80211_ht_addt_info {
646 __le16 operation_mode;
649 } __attribute__ ((packed));
651 /* 802.11n HT capabilities masks */
652 #define IEEE80211_HT_CAP_SUP_WIDTH 0x0002
653 #define IEEE80211_HT_CAP_MIMO_PS 0x000C
654 #define IEEE80211_HT_CAP_GRN_FLD 0x0010
655 #define IEEE80211_HT_CAP_SGI_20 0x0020
656 #define IEEE80211_HT_CAP_SGI_40 0x0040
657 #define IEEE80211_HT_CAP_DELAY_BA 0x0400
658 #define IEEE80211_HT_CAP_MAX_AMSDU 0x0800
659 /* 802.11n HT capability AMPDU settings */
660 #define IEEE80211_HT_CAP_AMPDU_FACTOR 0x03
661 #define IEEE80211_HT_CAP_AMPDU_DENSITY 0x1C
662 /* 802.11n HT capability MSC set */
663 #define IEEE80211_SUPP_MCS_SET_UEQM 4
664 #define IEEE80211_HT_CAP_MAX_STREAMS 4
665 #define IEEE80211_SUPP_MCS_SET_LEN 10
666 /* maximum streams the spec allows */
667 #define IEEE80211_HT_CAP_MCS_TX_DEFINED 0x01
668 #define IEEE80211_HT_CAP_MCS_TX_RX_DIFF 0x02
669 #define IEEE80211_HT_CAP_MCS_TX_STREAMS 0x0C
670 #define IEEE80211_HT_CAP_MCS_TX_UEQM 0x10
671 /* 802.11n HT IE masks */
672 #define IEEE80211_HT_IE_CHA_SEC_OFFSET 0x03
673 #define IEEE80211_HT_IE_CHA_SEC_NONE 0x00
674 #define IEEE80211_HT_IE_CHA_SEC_ABOVE 0x01
675 #define IEEE80211_HT_IE_CHA_SEC_BELOW 0x03
676 #define IEEE80211_HT_IE_CHA_WIDTH 0x04
677 #define IEEE80211_HT_IE_HT_PROTECTION 0x0003
678 #define IEEE80211_HT_IE_NON_GF_STA_PRSNT 0x0004
679 #define IEEE80211_HT_IE_NON_HT_STA_PRSNT 0x0010
681 /* MIMO Power Save Modes */
682 #define WLAN_HT_CAP_MIMO_PS_STATIC 0
683 #define WLAN_HT_CAP_MIMO_PS_DYNAMIC 1
684 #define WLAN_HT_CAP_MIMO_PS_INVALID 2
685 #define WLAN_HT_CAP_MIMO_PS_DISABLED 3
687 /* Authentication algorithms */
688 #define WLAN_AUTH_OPEN 0
689 #define WLAN_AUTH_SHARED_KEY 1
690 #define WLAN_AUTH_FAST_BSS_TRANSITION 2
691 #define WLAN_AUTH_LEAP 128
693 #define WLAN_AUTH_CHALLENGE_LEN 128
695 #define WLAN_CAPABILITY_ESS (1<<0)
696 #define WLAN_CAPABILITY_IBSS (1<<1)
697 #define WLAN_CAPABILITY_CF_POLLABLE (1<<2)
698 #define WLAN_CAPABILITY_CF_POLL_REQUEST (1<<3)
699 #define WLAN_CAPABILITY_PRIVACY (1<<4)
700 #define WLAN_CAPABILITY_SHORT_PREAMBLE (1<<5)
701 #define WLAN_CAPABILITY_PBCC (1<<6)
702 #define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
704 #define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8)
705 #define WLAN_CAPABILITY_QOS (1<<9)
706 #define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10)
707 #define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
709 /* 802.11g ERP information element */
710 #define WLAN_ERP_NON_ERP_PRESENT (1<<0)
711 #define WLAN_ERP_USE_PROTECTION (1<<1)
712 #define WLAN_ERP_BARKER_PREAMBLE (1<<2)
714 /* WLAN_ERP_BARKER_PREAMBLE values */
716 WLAN_ERP_PREAMBLE_SHORT = 0,
717 WLAN_ERP_PREAMBLE_LONG = 1,
721 enum ieee80211_statuscode {
722 WLAN_STATUS_SUCCESS = 0,
723 WLAN_STATUS_UNSPECIFIED_FAILURE = 1,
724 WLAN_STATUS_CAPS_UNSUPPORTED = 10,
725 WLAN_STATUS_REASSOC_NO_ASSOC = 11,
726 WLAN_STATUS_ASSOC_DENIED_UNSPEC = 12,
727 WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG = 13,
728 WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION = 14,
729 WLAN_STATUS_CHALLENGE_FAIL = 15,
730 WLAN_STATUS_AUTH_TIMEOUT = 16,
731 WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA = 17,
732 WLAN_STATUS_ASSOC_DENIED_RATES = 18,
734 WLAN_STATUS_ASSOC_DENIED_NOSHORTPREAMBLE = 19,
735 WLAN_STATUS_ASSOC_DENIED_NOPBCC = 20,
736 WLAN_STATUS_ASSOC_DENIED_NOAGILITY = 21,
738 WLAN_STATUS_ASSOC_DENIED_NOSPECTRUM = 22,
739 WLAN_STATUS_ASSOC_REJECTED_BAD_POWER = 23,
740 WLAN_STATUS_ASSOC_REJECTED_BAD_SUPP_CHAN = 24,
742 WLAN_STATUS_ASSOC_DENIED_NOSHORTTIME = 25,
743 WLAN_STATUS_ASSOC_DENIED_NODSSSOFDM = 26,
745 WLAN_STATUS_INVALID_IE = 40,
746 WLAN_STATUS_INVALID_GROUP_CIPHER = 41,
747 WLAN_STATUS_INVALID_PAIRWISE_CIPHER = 42,
748 WLAN_STATUS_INVALID_AKMP = 43,
749 WLAN_STATUS_UNSUPP_RSN_VERSION = 44,
750 WLAN_STATUS_INVALID_RSN_IE_CAP = 45,
751 WLAN_STATUS_CIPHER_SUITE_REJECTED = 46,
753 WLAN_STATUS_UNSPECIFIED_QOS = 32,
754 WLAN_STATUS_ASSOC_DENIED_NOBANDWIDTH = 33,
755 WLAN_STATUS_ASSOC_DENIED_LOWACK = 34,
756 WLAN_STATUS_ASSOC_DENIED_UNSUPP_QOS = 35,
757 WLAN_STATUS_REQUEST_DECLINED = 37,
758 WLAN_STATUS_INVALID_QOS_PARAM = 38,
759 WLAN_STATUS_CHANGE_TSPEC = 39,
760 WLAN_STATUS_WAIT_TS_DELAY = 47,
761 WLAN_STATUS_NO_DIRECT_LINK = 48,
762 WLAN_STATUS_STA_NOT_PRESENT = 49,
763 WLAN_STATUS_STA_NOT_QSTA = 50,
768 enum ieee80211_reasoncode {
769 WLAN_REASON_UNSPECIFIED = 1,
770 WLAN_REASON_PREV_AUTH_NOT_VALID = 2,
771 WLAN_REASON_DEAUTH_LEAVING = 3,
772 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY = 4,
773 WLAN_REASON_DISASSOC_AP_BUSY = 5,
774 WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA = 6,
775 WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA = 7,
776 WLAN_REASON_DISASSOC_STA_HAS_LEFT = 8,
777 WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH = 9,
779 WLAN_REASON_DISASSOC_BAD_POWER = 10,
780 WLAN_REASON_DISASSOC_BAD_SUPP_CHAN = 11,
782 WLAN_REASON_INVALID_IE = 13,
783 WLAN_REASON_MIC_FAILURE = 14,
784 WLAN_REASON_4WAY_HANDSHAKE_TIMEOUT = 15,
785 WLAN_REASON_GROUP_KEY_HANDSHAKE_TIMEOUT = 16,
786 WLAN_REASON_IE_DIFFERENT = 17,
787 WLAN_REASON_INVALID_GROUP_CIPHER = 18,
788 WLAN_REASON_INVALID_PAIRWISE_CIPHER = 19,
789 WLAN_REASON_INVALID_AKMP = 20,
790 WLAN_REASON_UNSUPP_RSN_VERSION = 21,
791 WLAN_REASON_INVALID_RSN_IE_CAP = 22,
792 WLAN_REASON_IEEE8021X_FAILED = 23,
793 WLAN_REASON_CIPHER_SUITE_REJECTED = 24,
795 WLAN_REASON_DISASSOC_UNSPECIFIED_QOS = 32,
796 WLAN_REASON_DISASSOC_QAP_NO_BANDWIDTH = 33,
797 WLAN_REASON_DISASSOC_LOW_ACK = 34,
798 WLAN_REASON_DISASSOC_QAP_EXCEED_TXOP = 35,
799 WLAN_REASON_QSTA_LEAVE_QBSS = 36,
800 WLAN_REASON_QSTA_NOT_USE = 37,
801 WLAN_REASON_QSTA_REQUIRE_SETUP = 38,
802 WLAN_REASON_QSTA_TIMEOUT = 39,
803 WLAN_REASON_QSTA_CIPHER_NOT_SUPP = 45,
807 /* Information Element IDs */
810 WLAN_EID_SUPP_RATES = 1,
811 WLAN_EID_FH_PARAMS = 2,
812 WLAN_EID_DS_PARAMS = 3,
813 WLAN_EID_CF_PARAMS = 4,
815 WLAN_EID_IBSS_PARAMS = 6,
816 WLAN_EID_CHALLENGE = 16,
818 WLAN_EID_COUNTRY = 7,
819 WLAN_EID_HP_PARAMS = 8,
820 WLAN_EID_HP_TABLE = 9,
821 WLAN_EID_REQUEST = 10,
823 WLAN_EID_QBSS_LOAD = 11,
824 WLAN_EID_EDCA_PARAM_SET = 12,
827 WLAN_EID_SCHEDULE = 15,
828 WLAN_EID_TS_DELAY = 43,
829 WLAN_EID_TCLAS_PROCESSING = 44,
830 WLAN_EID_QOS_CAPA = 46,
833 * All mesh EID numbers are pending IEEE 802.11 ANA approval.
834 * The numbers have been incremented from those suggested in
835 * 802.11s/D2.0 so that MESH_CONFIG does not conflict with
838 WLAN_EID_MESH_CONFIG = 51,
839 WLAN_EID_MESH_ID = 52,
840 WLAN_EID_PEER_LINK = 55,
845 WLAN_EID_PWR_CONSTRAINT = 32,
846 WLAN_EID_PWR_CAPABILITY = 33,
847 WLAN_EID_TPC_REQUEST = 34,
848 WLAN_EID_TPC_REPORT = 35,
849 WLAN_EID_SUPPORTED_CHANNELS = 36,
850 WLAN_EID_CHANNEL_SWITCH = 37,
851 WLAN_EID_MEASURE_REQUEST = 38,
852 WLAN_EID_MEASURE_REPORT = 39,
854 WLAN_EID_IBSS_DFS = 41,
856 WLAN_EID_ERP_INFO = 42,
857 WLAN_EID_EXT_SUPP_RATES = 50,
859 WLAN_EID_HT_CAPABILITY = 45,
860 WLAN_EID_HT_EXTRA_INFO = 61,
864 WLAN_EID_GENERIC = 221,
865 WLAN_EID_VENDOR_SPECIFIC = 221,
866 WLAN_EID_QOS_PARAMETER = 222
869 /* Action category code */
870 enum ieee80211_category {
871 WLAN_CATEGORY_SPECTRUM_MGMT = 0,
872 WLAN_CATEGORY_QOS = 1,
873 WLAN_CATEGORY_DLS = 2,
874 WLAN_CATEGORY_BACK = 3,
875 WLAN_CATEGORY_WMM = 17,
878 /* BACK action code */
879 enum ieee80211_back_actioncode {
880 WLAN_ACTION_ADDBA_REQ = 0,
881 WLAN_ACTION_ADDBA_RESP = 1,
882 WLAN_ACTION_DELBA = 2,
885 /* BACK (block-ack) parties */
886 enum ieee80211_back_parties {
887 WLAN_BACK_RECIPIENT = 0,
888 WLAN_BACK_INITIATOR = 1,
893 #define IEEE80211_QOS_CONTROL_A_MSDU_PRESENT 0x0080
895 /* cipher suite selectors */
896 #define WLAN_CIPHER_SUITE_USE_GROUP 0x000FAC00
897 #define WLAN_CIPHER_SUITE_WEP40 0x000FAC01
898 #define WLAN_CIPHER_SUITE_TKIP 0x000FAC02
899 /* reserved: 0x000FAC03 */
900 #define WLAN_CIPHER_SUITE_CCMP 0x000FAC04
901 #define WLAN_CIPHER_SUITE_WEP104 0x000FAC05
903 #define WLAN_MAX_KEY_LEN 32
906 * ieee80211_get_qos_ctl - get pointer to qos control bytes
909 * The qos ctrl bytes come after the frame_control, duration, seq_num
910 * and 3 or 4 addresses of length ETH_ALEN.
911 * 3 addr: 2 + 2 + 2 + 3*6 = 24
912 * 4 addr: 2 + 2 + 2 + 4*6 = 30
914 static inline u8 *ieee80211_get_qos_ctl(struct ieee80211_hdr *hdr)
916 if (ieee80211_has_a4(hdr->frame_control))
917 return (u8 *)hdr + 30;
919 return (u8 *)hdr + 24;
923 * ieee80211_get_SA - get pointer to SA
926 * Given an 802.11 frame, this function returns the offset
927 * to the source address (SA). It does not verify that the
928 * header is long enough to contain the address, and the
929 * header must be long enough to contain the frame control
932 static inline u8 *ieee80211_get_SA(struct ieee80211_hdr *hdr)
934 if (ieee80211_has_a4(hdr->frame_control))
936 if (ieee80211_has_fromds(hdr->frame_control))
942 * ieee80211_get_DA - get pointer to DA
945 * Given an 802.11 frame, this function returns the offset
946 * to the destination address (DA). It does not verify that
947 * the header is long enough to contain the address, and the
948 * header must be long enough to contain the frame control
951 static inline u8 *ieee80211_get_DA(struct ieee80211_hdr *hdr)
953 if (ieee80211_has_tods(hdr->frame_control))
959 #endif /* IEEE80211_H */