blob: 830452b1cda3b41a67fe74d1bcf03fa59c3a6c05 [file] [log] [blame]
Ali Baharcf3e6882011-09-04 03:14:04 +08001/******************************************************************************
2 *
3 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
Michael Hornungda209582015-11-18 20:59:15 +010015 * this program; if not, see <http://www.gnu.org/licenses/>.
Ali Baharcf3e6882011-09-04 03:14:04 +080016 *
17 * Modifications for inclusion into the Linux staging tree are
18 * Copyright(c) 2010 Larry Finger. All rights reserved.
19 *
20 * Contact information:
21 * WLAN FAE <wlanfae@realtek.com>
22 * Larry Finger <Larry.Finger@lwfinger.net>
23 *
24 ******************************************************************************/
Larry Finger2865d422010-08-20 10:15:30 -050025#ifndef __IEEE80211_H
26#define __IEEE80211_H
27
28#include "osdep_service.h"
29#include "drv_types.h"
30#include "wifi.h"
Michael Fiedler40878362011-06-20 16:34:27 +020031#include <linux/compiler.h>
Larry Finger2865d422010-08-20 10:15:30 -050032#include <linux/wireless.h>
33
34#define MGMT_QUEUE_NUM 5
35#define ETH_ALEN 6
36#define IEEE_CMD_SET_WPA_PARAM 1
37#define IEEE_CMD_SET_WPA_IE 2
38#define IEEE_CMD_SET_ENCRYPTION 3
39#define IEEE_CMD_MLME 4
40
41#define IEEE_PARAM_WPA_ENABLED 1
42#define IEEE_PARAM_TKIP_COUNTERMEASURES 2
43#define IEEE_PARAM_DROP_UNENCRYPTED 3
44#define IEEE_PARAM_PRIVACY_INVOKED 4
45#define IEEE_PARAM_AUTH_ALGS 5
46#define IEEE_PARAM_IEEE_802_1X 6
47#define IEEE_PARAM_WPAX_SELECT 7
48
49#define AUTH_ALG_OPEN_SYSTEM 0x1
50#define AUTH_ALG_SHARED_KEY 0x2
51#define AUTH_ALG_LEAP 0x00000004
52
53#define IEEE_MLME_STA_DEAUTH 1
54#define IEEE_MLME_STA_DISASSOC 2
55
56#define IEEE_CRYPT_ERR_UNKNOWN_ALG 2
57#define IEEE_CRYPT_ERR_UNKNOWN_ADDR 3
58#define IEEE_CRYPT_ERR_CRYPT_INIT_FAILED 4
59#define IEEE_CRYPT_ERR_KEY_SET_FAILED 5
60#define IEEE_CRYPT_ERR_TX_KEY_SET_FAILED 6
61#define IEEE_CRYPT_ERR_CARD_CONF_FAILED 7
62
Larry Finger2865d422010-08-20 10:15:30 -050063#define IEEE_CRYPT_ALG_NAME_LEN 16
64
65#define WPA_CIPHER_NONE BIT(0)
66#define WPA_CIPHER_WEP40 BIT(1)
67#define WPA_CIPHER_WEP104 BIT(2)
68#define WPA_CIPHER_TKIP BIT(3)
69#define WPA_CIPHER_CCMP BIT(4)
70
Larry Finger2865d422010-08-20 10:15:30 -050071#define WPA_SELECTOR_LEN 4
72#define RSN_HEADER_LEN 4
73
74#define RSN_SELECTOR_LEN 4
75
76enum NETWORK_TYPE {
77 WIRELESS_INVALID = 0,
78 WIRELESS_11B = 1,
79 WIRELESS_11G = 2,
80 WIRELESS_11BG = (WIRELESS_11B | WIRELESS_11G),
81 WIRELESS_11A = 4,
82 WIRELESS_11N = 8,
83 WIRELESS_11GN = (WIRELESS_11G | WIRELESS_11N),
84 WIRELESS_11BGN = (WIRELESS_11B | WIRELESS_11G | WIRELESS_11N),
85};
86
Larry Finger2865d422010-08-20 10:15:30 -050087struct ieee_param {
88 u32 cmd;
89 u8 sta_addr[ETH_ALEN];
90 union {
91 struct {
92 u8 name;
93 u32 value;
94 } wpa_param;
95 struct {
96 u32 len;
97 u8 reserved[32];
98 u8 data[0];
99 } wpa_ie;
Javier M. Mellid05937582011-04-02 03:01:49 +0200100 struct {
Larry Finger2865d422010-08-20 10:15:30 -0500101 int command;
102 int reason_code;
103 } mlme;
104 struct {
105 u8 alg[IEEE_CRYPT_ALG_NAME_LEN];
106 u8 set_tx;
107 u32 err;
108 u8 idx;
109 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
110 u16 key_len;
111 u8 key[0];
112 } crypt;
113 } u;
114};
115
116#define IEEE80211_DATA_LEN 2304
117/* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
Punit Vara652199c2015-10-08 01:25:16 +0530118 * 6.2.1.1.2.
119 *
120 * The figure in section 7.1.2 suggests a body size of up to 2312
121 * bytes is allowed, which is a bit confusing, I suspect this
122 * represents the 2304 bytes of real data, plus a possible 8 bytes of
123 * WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro)
124 */
Larry Finger2865d422010-08-20 10:15:30 -0500125
126#define IEEE80211_HLEN 30
127#define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
128
129/* this is stolen from ipw2200 driver */
130#define IEEE_IBSS_MAC_HASH_SIZE 31
131
132struct ieee_ibss_seq {
133 u8 mac[ETH_ALEN];
134 u16 seq_num;
135 u16 frag_num;
Ali Baharee5b1aa2011-09-04 03:14:21 +0800136 unsigned long packet_time;
Larry Finger2865d422010-08-20 10:15:30 -0500137 struct list_head list;
138};
139
140struct ieee80211_hdr {
141 u16 frame_ctl;
142 u16 duration_id;
143 u8 addr1[ETH_ALEN];
144 u8 addr2[ETH_ALEN];
145 u8 addr3[ETH_ALEN];
146 u16 seq_ctl;
147 u8 addr4[ETH_ALEN];
Michael Fiedler40878362011-06-20 16:34:27 +0200148} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500149
150struct ieee80211_hdr_3addr {
151 u16 frame_ctl;
152 u16 duration_id;
153 u8 addr1[ETH_ALEN];
154 u8 addr2[ETH_ALEN];
155 u8 addr3[ETH_ALEN];
156 u16 seq_ctl;
Michael Fiedler40878362011-06-20 16:34:27 +0200157} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500158
Larry Finger2865d422010-08-20 10:15:30 -0500159struct ieee80211_hdr_qos {
160 u16 frame_ctl;
161 u16 duration_id;
162 u8 addr1[ETH_ALEN];
163 u8 addr2[ETH_ALEN];
164 u8 addr3[ETH_ALEN];
165 u16 seq_ctl;
166 u8 addr4[ETH_ALEN];
167 u16 qc;
Michael Fiedler40878362011-06-20 16:34:27 +0200168} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500169
170struct ieee80211_hdr_3addr_qos {
171 u16 frame_ctl;
172 u16 duration_id;
Javier M. Mellid05937582011-04-02 03:01:49 +0200173 u8 addr1[ETH_ALEN];
174 u8 addr2[ETH_ALEN];
175 u8 addr3[ETH_ALEN];
Larry Finger2865d422010-08-20 10:15:30 -0500176 u16 seq_ctl;
Javier M. Mellid05937582011-04-02 03:01:49 +0200177 u16 qc;
Michael Fiedler40878362011-06-20 16:34:27 +0200178} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500179
180struct eapol {
181 u8 snap[6];
182 u16 ethertype;
183 u8 version;
184 u8 type;
185 u16 length;
Michael Fiedler40878362011-06-20 16:34:27 +0200186} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500187
Larry Finger2865d422010-08-20 10:15:30 -0500188enum eap_type {
189 EAP_PACKET = 0,
190 EAPOL_START,
191 EAPOL_LOGOFF,
192 EAPOL_KEY,
193 EAPOL_ENCAP_ASF_ALERT
194};
195
196#define IEEE80211_3ADDR_LEN 24
197#define IEEE80211_4ADDR_LEN 30
198#define IEEE80211_FCS_LEN 4
199
200#define MIN_FRAG_THRESHOLD 256U
201#define MAX_FRAG_THRESHOLD 2346U
202
203/* Frame control field constants */
204#define IEEE80211_FCTL_VERS 0x0002
205#define IEEE80211_FCTL_FTYPE 0x000c
206#define IEEE80211_FCTL_STYPE 0x00f0
207#define IEEE80211_FCTL_TODS 0x0100
208#define IEEE80211_FCTL_FROMDS 0x0200
209#define IEEE80211_FCTL_MOREFRAGS 0x0400
210#define IEEE80211_FCTL_RETRY 0x0800
211#define IEEE80211_FCTL_PM 0x1000
212#define IEEE80211_FCTL_MOREDATA 0x2000
213#define IEEE80211_FCTL_WEP 0x4000
214#define IEEE80211_FCTL_ORDER 0x8000
215
216#define IEEE80211_FTYPE_MGMT 0x0000
217#define IEEE80211_FTYPE_CTL 0x0004
218#define IEEE80211_FTYPE_DATA 0x0008
219
220/* management */
221#define IEEE80211_STYPE_ASSOC_REQ 0x0000
222#define IEEE80211_STYPE_ASSOC_RESP 0x0010
223#define IEEE80211_STYPE_REASSOC_REQ 0x0020
224#define IEEE80211_STYPE_REASSOC_RESP 0x0030
225#define IEEE80211_STYPE_PROBE_REQ 0x0040
226#define IEEE80211_STYPE_PROBE_RESP 0x0050
227#define IEEE80211_STYPE_BEACON 0x0080
228#define IEEE80211_STYPE_ATIM 0x0090
229#define IEEE80211_STYPE_DISASSOC 0x00A0
230#define IEEE80211_STYPE_AUTH 0x00B0
231#define IEEE80211_STYPE_DEAUTH 0x00C0
232
233/* control */
234#define IEEE80211_STYPE_PSPOLL 0x00A0
235#define IEEE80211_STYPE_RTS 0x00B0
236#define IEEE80211_STYPE_CTS 0x00C0
237#define IEEE80211_STYPE_ACK 0x00D0
238#define IEEE80211_STYPE_CFEND 0x00E0
239#define IEEE80211_STYPE_CFENDACK 0x00F0
240
241/* data */
242#define IEEE80211_STYPE_DATA 0x0000
243#define IEEE80211_STYPE_DATA_CFACK 0x0010
244#define IEEE80211_STYPE_DATA_CFPOLL 0x0020
245#define IEEE80211_STYPE_DATA_CFACKPOLL 0x0030
246#define IEEE80211_STYPE_NULLFUNC 0x0040
247#define IEEE80211_STYPE_CFACK 0x0050
248#define IEEE80211_STYPE_CFPOLL 0x0060
249#define IEEE80211_STYPE_CFACKPOLL 0x0070
250#define IEEE80211_QOS_DATAGRP 0x0080
251#define IEEE80211_QoS_DATAGRP IEEE80211_QOS_DATAGRP
252
253#define IEEE80211_SCTL_FRAG 0x000F
254#define IEEE80211_SCTL_SEQ 0xFFF0
255
256/* QoS,QOS */
257#define NORMAL_ACK 0
258#define NO_ACK 1
259#define NON_EXPLICIT_ACK 2
260#define BLOCK_ACK 3
261
262#ifndef ETH_P_PAE
263#define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
264#endif /* ETH_P_PAE */
265
266#define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
267
268#define ETH_P_ECONET 0x0018
269
270#ifndef ETH_P_80211_RAW
271#define ETH_P_80211_RAW (ETH_P_ECONET + 1)
272#endif
273
274/* IEEE 802.11 defines */
275
276#define P80211_OUI_LEN 3
277
278struct ieee80211_snap_hdr {
279 u8 dsap; /* always 0xAA */
280 u8 ssap; /* always 0xAA */
281 u8 ctrl; /* always 0x03 */
282 u8 oui[P80211_OUI_LEN]; /* organizational universal id */
Michael Fiedler40878362011-06-20 16:34:27 +0200283} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500284
285#define SNAP_SIZE sizeof(struct ieee80211_snap_hdr)
286
287#define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
288#define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
289
290#define WLAN_QC_GET_TID(qc) ((qc) & 0x0f)
291
292#define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
293#define WLAN_GET_SEQ_SEQ(seq) ((seq) & IEEE80211_SCTL_SEQ)
294
295/* Authentication algorithms */
296#define WLAN_AUTH_OPEN 0
297#define WLAN_AUTH_SHARED_KEY 1
298
299#define WLAN_AUTH_CHALLENGE_LEN 128
300
Michael Hornung364cdb32015-11-18 20:59:13 +0100301#define WLAN_CAPABILITY_BSS BIT(0)
302#define WLAN_CAPABILITY_IBSS BIT(1)
303#define WLAN_CAPABILITY_CF_POLLABLE BIT(2)
304#define WLAN_CAPABILITY_CF_POLL_REQUEST BIT(3)
305#define WLAN_CAPABILITY_PRIVACY BIT(4)
306#define WLAN_CAPABILITY_SHORT_PREAMBLE BIT(5)
307#define WLAN_CAPABILITY_PBCC BIT(6)
308#define WLAN_CAPABILITY_CHANNEL_AGILITY BIT(7)
309#define WLAN_CAPABILITY_SHORT_SLOT BIT(10)
Larry Finger2865d422010-08-20 10:15:30 -0500310
Larry Finger2865d422010-08-20 10:15:30 -0500311/* Information Element IDs */
312#define WLAN_EID_SSID 0
313#define WLAN_EID_SUPP_RATES 1
314#define WLAN_EID_FH_PARAMS 2
315#define WLAN_EID_DS_PARAMS 3
316#define WLAN_EID_CF_PARAMS 4
317#define WLAN_EID_TIM 5
318#define WLAN_EID_IBSS_PARAMS 6
319#define WLAN_EID_CHALLENGE 16
320#define WLAN_EID_RSN 48
321#define WLAN_EID_GENERIC 221
322
323#define IEEE80211_MGMT_HDR_LEN 24
324#define IEEE80211_DATA_HDR3_LEN 24
325#define IEEE80211_DATA_HDR4_LEN 30
326
Michael Hornung364cdb32015-11-18 20:59:13 +0100327#define IEEE80211_STATMASK_SIGNAL BIT(0)
328#define IEEE80211_STATMASK_RSSI BIT(1)
329#define IEEE80211_STATMASK_NOISE BIT(2)
330#define IEEE80211_STATMASK_RATE BIT(3)
Larry Finger2865d422010-08-20 10:15:30 -0500331#define IEEE80211_STATMASK_WEMASK 0x7
332
Michael Hornung364cdb32015-11-18 20:59:13 +0100333#define IEEE80211_CCK_MODULATION BIT(0)
334#define IEEE80211_OFDM_MODULATION BIT(1)
Larry Finger2865d422010-08-20 10:15:30 -0500335
Michael Hornung364cdb32015-11-18 20:59:13 +0100336#define IEEE80211_24GHZ_BAND BIT(0)
337#define IEEE80211_52GHZ_BAND BIT(1)
Larry Finger2865d422010-08-20 10:15:30 -0500338
339#define IEEE80211_CCK_RATE_LEN 4
340#define IEEE80211_NUM_OFDM_RATESLEN 8
341
Larry Finger2865d422010-08-20 10:15:30 -0500342#define IEEE80211_CCK_RATE_1MB 0x02
343#define IEEE80211_CCK_RATE_2MB 0x04
344#define IEEE80211_CCK_RATE_5MB 0x0B
345#define IEEE80211_CCK_RATE_11MB 0x16
346#define IEEE80211_OFDM_RATE_LEN 8
347#define IEEE80211_OFDM_RATE_6MB 0x0C
348#define IEEE80211_OFDM_RATE_9MB 0x12
349#define IEEE80211_OFDM_RATE_12MB 0x18
350#define IEEE80211_OFDM_RATE_18MB 0x24
351#define IEEE80211_OFDM_RATE_24MB 0x30
352#define IEEE80211_OFDM_RATE_36MB 0x48
353#define IEEE80211_OFDM_RATE_48MB 0x60
354#define IEEE80211_OFDM_RATE_54MB 0x6C
355#define IEEE80211_BASIC_RATE_MASK 0x80
356
Michael Hornung364cdb32015-11-18 20:59:13 +0100357#define IEEE80211_CCK_RATE_1MB_MASK BIT(0)
358#define IEEE80211_CCK_RATE_2MB_MASK BIT(1)
359#define IEEE80211_CCK_RATE_5MB_MASK BIT(2)
360#define IEEE80211_CCK_RATE_11MB_MASK BIT(3)
361#define IEEE80211_OFDM_RATE_6MB_MASK BIT(4)
362#define IEEE80211_OFDM_RATE_9MB_MASK BIT(5)
363#define IEEE80211_OFDM_RATE_12MB_MASK BIT(6)
364#define IEEE80211_OFDM_RATE_18MB_MASK BIT(7)
365#define IEEE80211_OFDM_RATE_24MB_MASK BIT(8)
366#define IEEE80211_OFDM_RATE_36MB_MASK BIT(9)
367#define IEEE80211_OFDM_RATE_48MB_MASK BIT(10)
368#define IEEE80211_OFDM_RATE_54MB_MASK BIT(11)
Larry Finger2865d422010-08-20 10:15:30 -0500369
370#define IEEE80211_CCK_RATES_MASK 0x0000000F
371#define IEEE80211_CCK_BASIC_RATES_MASK (IEEE80211_CCK_RATE_1MB_MASK | \
372 IEEE80211_CCK_RATE_2MB_MASK)
373#define IEEE80211_CCK_DEFAULT_RATES_MASK (IEEE80211_CCK_BASIC_RATES_MASK | \
374 IEEE80211_CCK_RATE_5MB_MASK | \
375 IEEE80211_CCK_RATE_11MB_MASK)
376
377#define IEEE80211_OFDM_RATES_MASK 0x00000FF0
378#define IEEE80211_OFDM_BASIC_RATES_MASK (IEEE80211_OFDM_RATE_6MB_MASK | \
379 IEEE80211_OFDM_RATE_12MB_MASK | \
380 IEEE80211_OFDM_RATE_24MB_MASK)
381#define IEEE80211_OFDM_DEFAULT_RATES_MASK (IEEE80211_OFDM_BASIC_RATES_MASK | \
382 IEEE80211_OFDM_RATE_9MB_MASK | \
383 IEEE80211_OFDM_RATE_18MB_MASK | \
384 IEEE80211_OFDM_RATE_36MB_MASK | \
385 IEEE80211_OFDM_RATE_48MB_MASK | \
386 IEEE80211_OFDM_RATE_54MB_MASK)
387#define IEEE80211_DEFAULT_RATES_MASK (IEEE80211_OFDM_DEFAULT_RATES_MASK | \
388 IEEE80211_CCK_DEFAULT_RATES_MASK)
389
390#define IEEE80211_NUM_OFDM_RATES 8
391#define IEEE80211_NUM_CCK_RATES 4
392#define IEEE80211_OFDM_SHIFT_MASK_A 4
393
Larry Finger2865d422010-08-20 10:15:30 -0500394/* NOTE: This data is for statistical purposes; not all hardware provides this
395 * information for frames received. Not setting these will not cause
Punit Vara652199c2015-10-08 01:25:16 +0530396 * any adverse affects.
397 */
Larry Finger2865d422010-08-20 10:15:30 -0500398struct ieee80211_rx_stats {
399 s8 rssi;
400 u8 signal;
401 u8 noise;
402 u8 received_channel;
403 u16 rate; /* in 100 kbps */
404 u8 mask;
405 u8 freq;
406 u16 len;
407};
408
409/* IEEE 802.11 requires that STA supports concurrent reception of at least
410 * three fragmented frames. This define can be increased to support more
411 * concurrent frames, but it should be noted that each entry can consume about
Punit Vara652199c2015-10-08 01:25:16 +0530412 * 2 kB of RAM and increasing cache size will slow down frame reassembly.
413 */
Larry Finger2865d422010-08-20 10:15:30 -0500414#define IEEE80211_FRAG_CACHE_LEN 4
415
416struct ieee80211_frag_entry {
417 u32 first_frag_time;
418 uint seq;
419 uint last_frag;
420 uint qos; /*jackson*/
421 uint tid; /*jackson*/
422 struct sk_buff *skb;
423 u8 src_addr[ETH_ALEN];
424 u8 dst_addr[ETH_ALEN];
425};
426
427struct ieee80211_stats {
428 uint tx_unicast_frames;
429 uint tx_multicast_frames;
430 uint tx_fragments;
431 uint tx_unicast_octets;
432 uint tx_multicast_octets;
433 uint tx_deferred_transmissions;
434 uint tx_single_retry_frames;
435 uint tx_multiple_retry_frames;
436 uint tx_retry_limit_exceeded;
437 uint tx_discards;
438 uint rx_unicast_frames;
439 uint rx_multicast_frames;
440 uint rx_fragments;
441 uint rx_unicast_octets;
442 uint rx_multicast_octets;
443 uint rx_fcs_errors;
444 uint rx_discards_no_buffer;
445 uint tx_discards_wrong_sa;
446 uint rx_discards_undecryptable;
447 uint rx_message_in_msg_fragments;
448 uint rx_message_in_bad_msg_fragments;
449};
450
Javier M. Mellid05937582011-04-02 03:01:49 +0200451struct ieee80211_softmac_stats {
Larry Finger2865d422010-08-20 10:15:30 -0500452 uint rx_ass_ok;
453 uint rx_ass_err;
454 uint rx_probe_rq;
455 uint tx_probe_rs;
456 uint tx_beacons;
457 uint rx_auth_rq;
458 uint rx_auth_rs_ok;
459 uint rx_auth_rs_err;
460 uint tx_auth_rq;
461 uint no_auth_rs;
462 uint no_ass_rs;
463 uint tx_ass_rq;
464 uint rx_ass_rq;
465 uint tx_probe_rq;
466 uint reassoc;
467 uint swtxstop;
468 uint swtxawake;
469};
470
Michael Hornung364cdb32015-11-18 20:59:13 +0100471#define SEC_KEY_1 BIT(0)
472#define SEC_KEY_2 BIT(1)
473#define SEC_KEY_3 BIT(2)
474#define SEC_KEY_4 BIT(3)
475#define SEC_ACTIVE_KEY BIT(4)
476#define SEC_AUTH_MODE BIT(5)
477#define SEC_UNICAST_GROUP BIT(6)
478#define SEC_LEVEL BIT(7)
479#define SEC_ENABLED BIT(8)
Larry Finger2865d422010-08-20 10:15:30 -0500480
481#define SEC_LEVEL_0 0 /* None */
482#define SEC_LEVEL_1 1 /* WEP 40 and 104 bit */
483#define SEC_LEVEL_2 2 /* Level 1 + TKIP */
484#define SEC_LEVEL_2_CKIP 3 /* Level 1 + CKIP */
485#define SEC_LEVEL_3 4 /* Level 2 + CCMP */
486
487#define WEP_KEYS 4
488#define WEP_KEY_LEN 13
489
490struct ieee80211_security {
491 u16 active_key:2,
492 enabled:1,
493 auth_mode:2,
494 auth_algo:4,
495 unicast_uses_group:1;
496 u8 key_sizes[WEP_KEYS];
497 u8 keys[WEP_KEYS][WEP_KEY_LEN];
498 u8 level;
499 u16 flags;
Michael Fiedler40878362011-06-20 16:34:27 +0200500} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500501
502/*
Punit Vara652199c2015-10-08 01:25:16 +0530503 *
504 * 802.11 data frame from AP
505 *
506 * ,-------------------------------------------------------------------.
507 * Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
508 * |------|------|---------|---------|---------|------|---------|------|
509 * Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | frame | fcs |
510 * | | tion | (BSSID) | | | ence | data | |
511 * `-------------------------------------------------------------------'
512 *
513 * Total: 28-2340 bytes
514 *
515 */
Larry Finger2865d422010-08-20 10:15:30 -0500516
517struct ieee80211_header_data {
518 u16 frame_ctl;
519 u16 duration_id;
520 u8 addr1[6];
521 u8 addr2[6];
522 u8 addr3[6];
523 u16 seq_ctrl;
524};
525
526#define BEACON_PROBE_SSID_ID_POSITION 12
527
528/* Management Frame Information Element Types */
529#define MFIE_TYPE_SSID 0
530#define MFIE_TYPE_RATES 1
531#define MFIE_TYPE_FH_SET 2
532#define MFIE_TYPE_DS_SET 3
533#define MFIE_TYPE_CF_SET 4
534#define MFIE_TYPE_TIM 5
535#define MFIE_TYPE_IBSS_SET 6
536#define MFIE_TYPE_CHALLENGE 16
537#define MFIE_TYPE_ERP 42
538#define MFIE_TYPE_RSN 48
539#define MFIE_TYPE_RATES_EX 50
540#define MFIE_TYPE_GENERIC 221
541
542struct ieee80211_info_element_hdr {
543 u8 id;
544 u8 len;
Michael Fiedler40878362011-06-20 16:34:27 +0200545} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500546
547struct ieee80211_info_element {
548 u8 id;
549 u8 len;
550 u8 data[0];
Michael Fiedler40878362011-06-20 16:34:27 +0200551} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500552
553/*
554 * These are the data types that can make up management packets
555 *
556 u16 auth_algorithm;
557 u16 auth_sequence;
558 u16 beacon_interval;
559 u16 capability;
560 u8 current_ap[ETH_ALEN];
561 u16 listen_interval;
562 struct {
563 u16 association_id:14, reserved:2;
Michael Fiedler40878362011-06-20 16:34:27 +0200564 } __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500565 u32 time_stamp[2];
566 u16 reason;
567 u16 status;
568*/
569
570#define IEEE80211_DEFAULT_TX_ESSID "Penguin"
571#define IEEE80211_DEFAULT_BASIC_RATE 10
572
573struct ieee80211_authentication {
574 struct ieee80211_header_data header;
575 u16 algorithm;
576 u16 transaction;
577 u16 status;
Michael Fiedler40878362011-06-20 16:34:27 +0200578} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500579
580struct ieee80211_probe_response {
581 struct ieee80211_header_data header;
582 u32 time_stamp[2];
583 u16 beacon_interval;
584 u16 capability;
585 struct ieee80211_info_element info_element;
Michael Fiedler40878362011-06-20 16:34:27 +0200586} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500587
588struct ieee80211_probe_request {
589 struct ieee80211_header_data header;
Michael Fiedler40878362011-06-20 16:34:27 +0200590} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500591
592struct ieee80211_assoc_request_frame {
593 struct ieee80211_hdr_3addr header;
594 u16 capability;
595 u16 listen_interval;
596 struct ieee80211_info_element_hdr info_element;
Michael Fiedler40878362011-06-20 16:34:27 +0200597} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500598
599struct ieee80211_assoc_response_frame {
600 struct ieee80211_hdr_3addr header;
601 u16 capability;
602 u16 status;
603 u16 aid;
Michael Fiedler40878362011-06-20 16:34:27 +0200604} __packed;
Larry Finger2865d422010-08-20 10:15:30 -0500605
606struct ieee80211_txb {
607 u8 nr_frags;
608 u8 encrypted;
609 u16 reserved;
610 u16 frag_size;
611 u16 payload_size;
612 struct sk_buff *fragments[0];
613};
614
615/* SWEEP TABLE ENTRIES NUMBER*/
616#define MAX_SWEEP_TAB_ENTRIES 42
617#define MAX_SWEEP_TAB_ENTRIES_PER_PACKET 7
618/* MAX_RATES_LENGTH needs to be 12. The spec says 8, and many APs
619 * only use 8, and then use extended rates for the remaining supported
620 * rates. Other APs, however, stick all of their supported rates on the
Punit Vara652199c2015-10-08 01:25:16 +0530621 * main rates information element...
622 */
Larry Finger2865d422010-08-20 10:15:30 -0500623#define MAX_RATES_LENGTH ((u8)12)
624#define MAX_RATES_EX_LENGTH ((u8)16)
625#define MAX_NETWORK_COUNT 128
626#define MAX_CHANNEL_NUMBER 161
627#define IEEE80211_SOFTMAC_SCAN_TIME 400
628/*(HZ / 2)*/
629#define IEEE80211_SOFTMAC_ASSOC_RETRY_TIME (HZ * 2)
630
631#define CRC_LENGTH 4U
632
633#define MAX_WPA_IE_LEN 128
Larry Finger2865d422010-08-20 10:15:30 -0500634
Michael Hornung364cdb32015-11-18 20:59:13 +0100635#define NETWORK_EMPTY_ESSID BIT(0)
636#define NETWORK_HAS_OFDM BIT(1)
637#define NETWORK_HAS_CCK BIT(2)
Larry Finger2865d422010-08-20 10:15:30 -0500638
639#define IEEE80211_DTIM_MBCAST 4
640#define IEEE80211_DTIM_UCAST 2
641#define IEEE80211_DTIM_VALID 1
642#define IEEE80211_DTIM_INVALID 0
643
644#define IEEE80211_PS_DISABLED 0
645#define IEEE80211_PS_UNICAST IEEE80211_DTIM_UCAST
646#define IEEE80211_PS_MBCAST IEEE80211_DTIM_MBCAST
647#define IW_ESSID_MAX_SIZE 32
648/*
649 * join_res:
650 * -1: authentication fail
651 * -2: association fail
652 * > 0: TID
653 */
654
655enum ieee80211_state {
656 /* the card is not linked at all */
657 IEEE80211_NOLINK = 0,
658 /* IEEE80211_ASSOCIATING* are for BSS client mode
659 * the driver shall not perform RX filtering unless
660 * the state is LINKED.
661 * The driver shall just check for the state LINKED and
662 * defaults to NOLINK for ALL the other states (including
663 * LINKED_SCANNING)
664 */
665 /* the association procedure will start (wq scheduling)*/
666 IEEE80211_ASSOCIATING,
667 IEEE80211_ASSOCIATING_RETRY,
668 /* the association procedure is sending AUTH request*/
669 IEEE80211_ASSOCIATING_AUTHENTICATING,
Justin P. Mattockbe10ac22012-05-07 07:38:22 -0700670 /* the association procedure has successfully authenticated
Larry Finger2865d422010-08-20 10:15:30 -0500671 * and is sending association request
672 */
673 IEEE80211_ASSOCIATING_AUTHENTICATED,
674 /* the link is ok. the card associated to a BSS or linked
675 * to a ibss cell or acting as an AP and creating the bss
676 */
677 IEEE80211_LINKED,
678 /* same as LINKED, but the driver shall apply RX filter
679 * rules as we are in NO_LINK mode. As the card is still
680 * logically linked, but it is doing a syncro site survey
681 * then it will be back to LINKED state.
682 */
683 IEEE80211_LINKED_SCANNING,
684};
685
686#define DEFAULT_MAX_SCAN_AGE (15 * HZ)
687#define DEFAULT_FTS 2346
688
Michael Hornung364cdb32015-11-18 20:59:13 +0100689#define CFG_IEEE80211_RESERVE_FCS BIT(0)
690#define CFG_IEEE80211_COMPUTE_FCS BIT(1)
Larry Finger2865d422010-08-20 10:15:30 -0500691
692#define MAXTID 16
693
Michael Hornung364cdb32015-11-18 20:59:13 +0100694#define IEEE_A BIT(0)
695#define IEEE_B BIT(1)
696#define IEEE_G BIT(2)
Michael Hornung7e68f502015-11-18 20:59:14 +0100697#define IEEE_MODE_MASK (IEEE_A | IEEE_B | IEEE_G)
Larry Finger2865d422010-08-20 10:15:30 -0500698
Arnd Bergmann0c9f3a62014-06-05 22:48:15 +0200699static inline int ieee80211_is_empty_essid(const char *essid, int essid_len)
Larry Finger2865d422010-08-20 10:15:30 -0500700{
701 /* Single white space is for Linksys APs */
702 if (essid_len == 1 && essid[0] == ' ')
703 return 1;
704 /* Otherwise, if the entire essid is 0, we assume it is hidden */
705 while (essid_len) {
706 essid_len--;
707 if (essid[essid_len] != '\0')
708 return 0;
709 }
710 return 1;
711}
712
Arnd Bergmann0c9f3a62014-06-05 22:48:15 +0200713static inline int ieee80211_get_hdrlen(u16 fc)
Larry Finger2865d422010-08-20 10:15:30 -0500714{
715 int hdrlen = 24;
716
717 switch (WLAN_FC_GET_TYPE(fc)) {
718 case IEEE80211_FTYPE_DATA:
719 if (fc & IEEE80211_QOS_DATAGRP)
720 hdrlen += 2;
721 if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
722 hdrlen += 6; /* Addr4 */
723 break;
724 case IEEE80211_FTYPE_CTL:
725 switch (WLAN_FC_GET_STYPE(fc)) {
726 case IEEE80211_STYPE_CTS:
727 case IEEE80211_STYPE_ACK:
728 hdrlen = 10;
729 break;
730 default:
731 hdrlen = 16;
732 break;
733 }
734 break;
735 }
736 return hdrlen;
737}
738
739struct registry_priv;
740
741u8 *r8712_set_ie(u8 *pbuf, sint index, uint len, u8 *source, uint *frlen);
Przemo Firsztc07f9722012-12-10 23:21:19 +0000742u8 *r8712_get_ie(u8 *pbuf, sint index, sint *len, sint limit);
Larry Finger2865d422010-08-20 10:15:30 -0500743unsigned char *r8712_get_wpa_ie(unsigned char *pie, int *rsn_ie_len, int limit);
Javier M. Mellid05937582011-04-02 03:01:49 +0200744unsigned char *r8712_get_wpa2_ie(unsigned char *pie, int *rsn_ie_len,
745 int limit);
Larry Finger2865d422010-08-20 10:15:30 -0500746int r8712_parse_wpa_ie(u8 *wpa_ie, int wpa_ie_len, int *group_cipher,
Javier M. Mellid05937582011-04-02 03:01:49 +0200747 int *pairwise_cipher);
Larry Finger2865d422010-08-20 10:15:30 -0500748int r8712_parse_wpa2_ie(u8 *wpa_ie, int wpa_ie_len, int *group_cipher,
Javier M. Mellid05937582011-04-02 03:01:49 +0200749 int *pairwise_cipher);
750int r8712_get_sec_ie(u8 *in_ie, uint in_len, u8 *rsn_ie, u16 *rsn_len,
751 u8 *wpa_ie, u16 *wpa_len);
Larry Finger2865d422010-08-20 10:15:30 -0500752int r8712_get_wps_ie(u8 *in_ie, uint in_len, u8 *wps_ie, uint *wps_ielen);
Ali Baharee5b1aa2011-09-04 03:14:21 +0800753int r8712_generate_ie(struct registry_priv *pregistrypriv);
Larry Finger2865d422010-08-20 10:15:30 -0500754uint r8712_is_cckrates_included(u8 *rate);
755uint r8712_is_cckratesonly_included(u8 *rate);
756
757#endif /* IEEE80211_H */
758