ieee80211.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  1. /*
  2. * Merged with mainline ieee80211.h in Aug 2004. Original ieee802_11
  3. * remains copyright by the original authors
  4. *
  5. * Portions of the merged code are based on Host AP (software wireless
  6. * LAN access point) driver for Intersil Prism2/2.5/3.
  7. *
  8. * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
  9. * <jkmaline@cc.hut.fi>
  10. * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
  11. *
  12. * Adaption to a generic IEEE 802.11 stack by James Ketrenos
  13. * <jketreno@linux.intel.com>
  14. * Copyright (c) 2004, Intel Corporation
  15. *
  16. * This program is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License version 2 as
  18. * published by the Free Software Foundation. See README and COPYING for
  19. * more details.
  20. */
  21. #ifndef IEEE80211_H
  22. #define IEEE80211_H
  23. #include <linux/if_ether.h> /* ETH_ALEN */
  24. #include <linux/kernel.h> /* ARRAY_SIZE */
  25. #if WIRELESS_EXT < 17
  26. #define IW_QUAL_QUAL_INVALID 0x10
  27. #define IW_QUAL_LEVEL_INVALID 0x20
  28. #define IW_QUAL_NOISE_INVALID 0x40
  29. #define IW_QUAL_QUAL_UPDATED 0x1
  30. #define IW_QUAL_LEVEL_UPDATED 0x2
  31. #define IW_QUAL_NOISE_UPDATED 0x4
  32. #endif
  33. #define IEEE80211_DATA_LEN 2304
  34. /* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
  35. 6.2.1.1.2.
  36. The figure in section 7.1.2 suggests a body size of up to 2312
  37. bytes is allowed, which is a bit confusing, I suspect this
  38. represents the 2304 bytes of real data, plus a possible 8 bytes of
  39. WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro) */
  40. #define IEEE80211_HLEN 30
  41. #define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
  42. struct ieee80211_hdr {
  43. u16 frame_ctl;
  44. u16 duration_id;
  45. u8 addr1[ETH_ALEN];
  46. u8 addr2[ETH_ALEN];
  47. u8 addr3[ETH_ALEN];
  48. u16 seq_ctl;
  49. u8 addr4[ETH_ALEN];
  50. } __attribute__ ((packed));
  51. struct ieee80211_hdr_3addr {
  52. u16 frame_ctl;
  53. u16 duration_id;
  54. u8 addr1[ETH_ALEN];
  55. u8 addr2[ETH_ALEN];
  56. u8 addr3[ETH_ALEN];
  57. u16 seq_ctl;
  58. } __attribute__ ((packed));
  59. enum eap_type {
  60. EAP_PACKET = 0,
  61. EAPOL_START,
  62. EAPOL_LOGOFF,
  63. EAPOL_KEY,
  64. EAPOL_ENCAP_ASF_ALERT
  65. };
  66. static const char *eap_types[] = {
  67. [EAP_PACKET] = "EAP-Packet",
  68. [EAPOL_START] = "EAPOL-Start",
  69. [EAPOL_LOGOFF] = "EAPOL-Logoff",
  70. [EAPOL_KEY] = "EAPOL-Key",
  71. [EAPOL_ENCAP_ASF_ALERT] = "EAPOL-Encap-ASF-Alert"
  72. };
  73. static inline const char *eap_get_type(int type)
  74. {
  75. return (type >= ARRAY_SIZE(eap_types)) ? "Unknown" : eap_types[type];
  76. }
  77. struct eapol {
  78. u8 snap[6];
  79. u16 ethertype;
  80. u8 version;
  81. u8 type;
  82. u16 length;
  83. } __attribute__ ((packed));
  84. #define IEEE80211_1ADDR_LEN 10
  85. #define IEEE80211_2ADDR_LEN 16
  86. #define IEEE80211_3ADDR_LEN 24
  87. #define IEEE80211_4ADDR_LEN 30
  88. #define IEEE80211_FCS_LEN 4
  89. #define MIN_FRAG_THRESHOLD 256U
  90. #define MAX_FRAG_THRESHOLD 2346U
  91. /* Frame control field constants */
  92. #define IEEE80211_FCTL_VERS 0x0002
  93. #define IEEE80211_FCTL_FTYPE 0x000c
  94. #define IEEE80211_FCTL_STYPE 0x00f0
  95. #define IEEE80211_FCTL_TODS 0x0100
  96. #define IEEE80211_FCTL_FROMDS 0x0200
  97. #define IEEE80211_FCTL_MOREFRAGS 0x0400
  98. #define IEEE80211_FCTL_RETRY 0x0800
  99. #define IEEE80211_FCTL_PM 0x1000
  100. #define IEEE80211_FCTL_MOREDATA 0x2000
  101. #define IEEE80211_FCTL_WEP 0x4000
  102. #define IEEE80211_FCTL_ORDER 0x8000
  103. #define IEEE80211_FTYPE_MGMT 0x0000
  104. #define IEEE80211_FTYPE_CTL 0x0004
  105. #define IEEE80211_FTYPE_DATA 0x0008
  106. /* management */
  107. #define IEEE80211_STYPE_ASSOC_REQ 0x0000
  108. #define IEEE80211_STYPE_ASSOC_RESP 0x0010
  109. #define IEEE80211_STYPE_REASSOC_REQ 0x0020
  110. #define IEEE80211_STYPE_REASSOC_RESP 0x0030
  111. #define IEEE80211_STYPE_PROBE_REQ 0x0040
  112. #define IEEE80211_STYPE_PROBE_RESP 0x0050
  113. #define IEEE80211_STYPE_BEACON 0x0080
  114. #define IEEE80211_STYPE_ATIM 0x0090
  115. #define IEEE80211_STYPE_DISASSOC 0x00A0
  116. #define IEEE80211_STYPE_AUTH 0x00B0
  117. #define IEEE80211_STYPE_DEAUTH 0x00C0
  118. /* control */
  119. #define IEEE80211_STYPE_PSPOLL 0x00A0
  120. #define IEEE80211_STYPE_RTS 0x00B0
  121. #define IEEE80211_STYPE_CTS 0x00C0
  122. #define IEEE80211_STYPE_ACK 0x00D0
  123. #define IEEE80211_STYPE_CFEND 0x00E0
  124. #define IEEE80211_STYPE_CFENDACK 0x00F0
  125. /* data */
  126. #define IEEE80211_STYPE_DATA 0x0000
  127. #define IEEE80211_STYPE_DATA_CFACK 0x0010
  128. #define IEEE80211_STYPE_DATA_CFPOLL 0x0020
  129. #define IEEE80211_STYPE_DATA_CFACKPOLL 0x0030
  130. #define IEEE80211_STYPE_NULLFUNC 0x0040
  131. #define IEEE80211_STYPE_CFACK 0x0050
  132. #define IEEE80211_STYPE_CFPOLL 0x0060
  133. #define IEEE80211_STYPE_CFACKPOLL 0x0070
  134. #define IEEE80211_SCTL_FRAG 0x000F
  135. #define IEEE80211_SCTL_SEQ 0xFFF0
  136. /* debug macros */
  137. #ifdef CONFIG_IEEE80211_DEBUG
  138. extern u32 ieee80211_debug_level;
  139. #define IEEE80211_DEBUG(level, fmt, args...) \
  140. do { if (ieee80211_debug_level & (level)) \
  141. printk(KERN_DEBUG "ieee80211: %c %s " fmt, \
  142. in_interrupt() ? 'I' : 'U', __FUNCTION__ , ## args); } while (0)
  143. #else
  144. #define IEEE80211_DEBUG(level, fmt, args...) do {} while (0)
  145. #endif /* CONFIG_IEEE80211_DEBUG */
  146. /*
  147. * To use the debug system;
  148. *
  149. * If you are defining a new debug classification, simply add it to the #define
  150. * list here in the form of:
  151. *
  152. * #define IEEE80211_DL_xxxx VALUE
  153. *
  154. * shifting value to the left one bit from the previous entry. xxxx should be
  155. * the name of the classification (for example, WEP)
  156. *
  157. * You then need to either add a IEEE80211_xxxx_DEBUG() macro definition for your
  158. * classification, or use IEEE80211_DEBUG(IEEE80211_DL_xxxx, ...) whenever you want
  159. * to send output to that classification.
  160. *
  161. * To add your debug level to the list of levels seen when you perform
  162. *
  163. * % cat /proc/net/ipw/debug_level
  164. *
  165. * you simply need to add your entry to the ipw_debug_levels array.
  166. *
  167. * If you do not see debug_level in /proc/net/ipw then you do not have
  168. * CONFIG_IEEE80211_DEBUG defined in your kernel configuration
  169. *
  170. */
  171. #define IEEE80211_DL_INFO (1<<0)
  172. #define IEEE80211_DL_WX (1<<1)
  173. #define IEEE80211_DL_SCAN (1<<2)
  174. #define IEEE80211_DL_STATE (1<<3)
  175. #define IEEE80211_DL_MGMT (1<<4)
  176. #define IEEE80211_DL_FRAG (1<<5)
  177. #define IEEE80211_DL_EAP (1<<6)
  178. #define IEEE80211_DL_DROP (1<<7)
  179. #define IEEE80211_DL_TX (1<<8)
  180. #define IEEE80211_DL_RX (1<<9)
  181. #define IEEE80211_ERROR(f, a...) printk(KERN_ERR "ieee80211: " f, ## a)
  182. #define IEEE80211_WARNING(f, a...) printk(KERN_WARNING "ieee80211: " f, ## a)
  183. #define IEEE80211_DEBUG_INFO(f, a...) IEEE80211_DEBUG(IEEE80211_DL_INFO, f, ## a)
  184. #define IEEE80211_DEBUG_WX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_WX, f, ## a)
  185. #define IEEE80211_DEBUG_SCAN(f, a...) IEEE80211_DEBUG(IEEE80211_DL_SCAN, f, ## a)
  186. #define IEEE80211_DEBUG_STATE(f, a...) IEEE80211_DEBUG(IEEE80211_DL_STATE, f, ## a)
  187. #define IEEE80211_DEBUG_MGMT(f, a...) IEEE80211_DEBUG(IEEE80211_DL_MGMT, f, ## a)
  188. #define IEEE80211_DEBUG_FRAG(f, a...) IEEE80211_DEBUG(IEEE80211_DL_FRAG, f, ## a)
  189. #define IEEE80211_DEBUG_EAP(f, a...) IEEE80211_DEBUG(IEEE80211_DL_EAP, f, ## a)
  190. #define IEEE80211_DEBUG_DROP(f, a...) IEEE80211_DEBUG(IEEE80211_DL_DROP, f, ## a)
  191. #define IEEE80211_DEBUG_TX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_TX, f, ## a)
  192. #define IEEE80211_DEBUG_RX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_RX, f, ## a)
  193. #include <linux/netdevice.h>
  194. #include <linux/wireless.h>
  195. #include <linux/if_arp.h> /* ARPHRD_ETHER */
  196. #ifndef WIRELESS_SPY
  197. #define WIRELESS_SPY // enable iwspy support
  198. #endif
  199. #include <net/iw_handler.h> // new driver API
  200. #ifndef ETH_P_PAE
  201. #define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
  202. #endif /* ETH_P_PAE */
  203. #define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
  204. #ifndef ETH_P_80211_RAW
  205. #define ETH_P_80211_RAW (ETH_P_ECONET + 1)
  206. #endif
  207. /* IEEE 802.11 defines */
  208. #define P80211_OUI_LEN 3
  209. struct ieee80211_snap_hdr {
  210. u8 dsap; /* always 0xAA */
  211. u8 ssap; /* always 0xAA */
  212. u8 ctrl; /* always 0x03 */
  213. u8 oui[P80211_OUI_LEN]; /* organizational universal id */
  214. } __attribute__ ((packed));
  215. #define SNAP_SIZE sizeof(struct ieee80211_snap_hdr)
  216. #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
  217. #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
  218. #define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
  219. #define WLAN_GET_SEQ_SEQ(seq) ((seq) & IEEE80211_SCTL_SEQ)
  220. /* Authentication algorithms */
  221. #define WLAN_AUTH_OPEN 0
  222. #define WLAN_AUTH_SHARED_KEY 1
  223. #define WLAN_AUTH_CHALLENGE_LEN 128
  224. #define WLAN_CAPABILITY_BSS (1<<0)
  225. #define WLAN_CAPABILITY_IBSS (1<<1)
  226. #define WLAN_CAPABILITY_CF_POLLABLE (1<<2)
  227. #define WLAN_CAPABILITY_CF_POLL_REQUEST (1<<3)
  228. #define WLAN_CAPABILITY_PRIVACY (1<<4)
  229. #define WLAN_CAPABILITY_SHORT_PREAMBLE (1<<5)
  230. #define WLAN_CAPABILITY_PBCC (1<<6)
  231. #define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
  232. /* Status codes */
  233. #define WLAN_STATUS_SUCCESS 0
  234. #define WLAN_STATUS_UNSPECIFIED_FAILURE 1
  235. #define WLAN_STATUS_CAPS_UNSUPPORTED 10
  236. #define WLAN_STATUS_REASSOC_NO_ASSOC 11
  237. #define WLAN_STATUS_ASSOC_DENIED_UNSPEC 12
  238. #define WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG 13
  239. #define WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION 14
  240. #define WLAN_STATUS_CHALLENGE_FAIL 15
  241. #define WLAN_STATUS_AUTH_TIMEOUT 16
  242. #define WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA 17
  243. #define WLAN_STATUS_ASSOC_DENIED_RATES 18
  244. /* 802.11b */
  245. #define WLAN_STATUS_ASSOC_DENIED_NOSHORT 19
  246. #define WLAN_STATUS_ASSOC_DENIED_NOPBCC 20
  247. #define WLAN_STATUS_ASSOC_DENIED_NOAGILITY 21
  248. /* Reason codes */
  249. #define WLAN_REASON_UNSPECIFIED 1
  250. #define WLAN_REASON_PREV_AUTH_NOT_VALID 2
  251. #define WLAN_REASON_DEAUTH_LEAVING 3
  252. #define WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY 4
  253. #define WLAN_REASON_DISASSOC_AP_BUSY 5
  254. #define WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA 6
  255. #define WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA 7
  256. #define WLAN_REASON_DISASSOC_STA_HAS_LEFT 8
  257. #define WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH 9
  258. #define IEEE80211_STATMASK_SIGNAL (1<<0)
  259. #define IEEE80211_STATMASK_RSSI (1<<1)
  260. #define IEEE80211_STATMASK_NOISE (1<<2)
  261. #define IEEE80211_STATMASK_RATE (1<<3)
  262. #define IEEE80211_STATMASK_WEMASK 0x7
  263. #define IEEE80211_CCK_MODULATION (1<<0)
  264. #define IEEE80211_OFDM_MODULATION (1<<1)
  265. #define IEEE80211_24GHZ_BAND (1<<0)
  266. #define IEEE80211_52GHZ_BAND (1<<1)
  267. #define IEEE80211_CCK_RATE_1MB 0x02
  268. #define IEEE80211_CCK_RATE_2MB 0x04
  269. #define IEEE80211_CCK_RATE_5MB 0x0B
  270. #define IEEE80211_CCK_RATE_11MB 0x16
  271. #define IEEE80211_OFDM_RATE_6MB 0x0C
  272. #define IEEE80211_OFDM_RATE_9MB 0x12
  273. #define IEEE80211_OFDM_RATE_12MB 0x18
  274. #define IEEE80211_OFDM_RATE_18MB 0x24
  275. #define IEEE80211_OFDM_RATE_24MB 0x30
  276. #define IEEE80211_OFDM_RATE_36MB 0x48
  277. #define IEEE80211_OFDM_RATE_48MB 0x60
  278. #define IEEE80211_OFDM_RATE_54MB 0x6C
  279. #define IEEE80211_BASIC_RATE_MASK 0x80
  280. #define IEEE80211_CCK_RATE_1MB_MASK (1<<0)
  281. #define IEEE80211_CCK_RATE_2MB_MASK (1<<1)
  282. #define IEEE80211_CCK_RATE_5MB_MASK (1<<2)
  283. #define IEEE80211_CCK_RATE_11MB_MASK (1<<3)
  284. #define IEEE80211_OFDM_RATE_6MB_MASK (1<<4)
  285. #define IEEE80211_OFDM_RATE_9MB_MASK (1<<5)
  286. #define IEEE80211_OFDM_RATE_12MB_MASK (1<<6)
  287. #define IEEE80211_OFDM_RATE_18MB_MASK (1<<7)
  288. #define IEEE80211_OFDM_RATE_24MB_MASK (1<<8)
  289. #define IEEE80211_OFDM_RATE_36MB_MASK (1<<9)
  290. #define IEEE80211_OFDM_RATE_48MB_MASK (1<<10)
  291. #define IEEE80211_OFDM_RATE_54MB_MASK (1<<11)
  292. #define IEEE80211_CCK_RATES_MASK 0x0000000F
  293. #define IEEE80211_CCK_BASIC_RATES_MASK (IEEE80211_CCK_RATE_1MB_MASK | \
  294. IEEE80211_CCK_RATE_2MB_MASK)
  295. #define IEEE80211_CCK_DEFAULT_RATES_MASK (IEEE80211_CCK_BASIC_RATES_MASK | \
  296. IEEE80211_CCK_RATE_5MB_MASK | \
  297. IEEE80211_CCK_RATE_11MB_MASK)
  298. #define IEEE80211_OFDM_RATES_MASK 0x00000FF0
  299. #define IEEE80211_OFDM_BASIC_RATES_MASK (IEEE80211_OFDM_RATE_6MB_MASK | \
  300. IEEE80211_OFDM_RATE_12MB_MASK | \
  301. IEEE80211_OFDM_RATE_24MB_MASK)
  302. #define IEEE80211_OFDM_DEFAULT_RATES_MASK (IEEE80211_OFDM_BASIC_RATES_MASK | \
  303. IEEE80211_OFDM_RATE_9MB_MASK | \
  304. IEEE80211_OFDM_RATE_18MB_MASK | \
  305. IEEE80211_OFDM_RATE_36MB_MASK | \
  306. IEEE80211_OFDM_RATE_48MB_MASK | \
  307. IEEE80211_OFDM_RATE_54MB_MASK)
  308. #define IEEE80211_DEFAULT_RATES_MASK (IEEE80211_OFDM_DEFAULT_RATES_MASK | \
  309. IEEE80211_CCK_DEFAULT_RATES_MASK)
  310. #define IEEE80211_NUM_OFDM_RATES 8
  311. #define IEEE80211_NUM_CCK_RATES 4
  312. #define IEEE80211_OFDM_SHIFT_MASK_A 4
  313. /* NOTE: This data is for statistical purposes; not all hardware provides this
  314. * information for frames received. Not setting these will not cause
  315. * any adverse affects. */
  316. struct ieee80211_rx_stats {
  317. u32 mac_time;
  318. s8 rssi;
  319. u8 signal;
  320. u8 noise;
  321. u16 rate; /* in 100 kbps */
  322. u8 received_channel;
  323. u8 control;
  324. u8 mask;
  325. u8 freq;
  326. u16 len;
  327. };
  328. /* IEEE 802.11 requires that STA supports concurrent reception of at least
  329. * three fragmented frames. This define can be increased to support more
  330. * concurrent frames, but it should be noted that each entry can consume about
  331. * 2 kB of RAM and increasing cache size will slow down frame reassembly. */
  332. #define IEEE80211_FRAG_CACHE_LEN 4
  333. struct ieee80211_frag_entry {
  334. unsigned long first_frag_time;
  335. unsigned int seq;
  336. unsigned int last_frag;
  337. struct sk_buff *skb;
  338. u8 src_addr[ETH_ALEN];
  339. u8 dst_addr[ETH_ALEN];
  340. };
  341. struct ieee80211_stats {
  342. unsigned int tx_unicast_frames;
  343. unsigned int tx_multicast_frames;
  344. unsigned int tx_fragments;
  345. unsigned int tx_unicast_octets;
  346. unsigned int tx_multicast_octets;
  347. unsigned int tx_deferred_transmissions;
  348. unsigned int tx_single_retry_frames;
  349. unsigned int tx_multiple_retry_frames;
  350. unsigned int tx_retry_limit_exceeded;
  351. unsigned int tx_discards;
  352. unsigned int rx_unicast_frames;
  353. unsigned int rx_multicast_frames;
  354. unsigned int rx_fragments;
  355. unsigned int rx_unicast_octets;
  356. unsigned int rx_multicast_octets;
  357. unsigned int rx_fcs_errors;
  358. unsigned int rx_discards_no_buffer;
  359. unsigned int tx_discards_wrong_sa;
  360. unsigned int rx_discards_undecryptable;
  361. unsigned int rx_message_in_msg_fragments;
  362. unsigned int rx_message_in_bad_msg_fragments;
  363. };
  364. struct ieee80211_device;
  365. #if 0 /* for later */
  366. #include "ieee80211_crypt.h"
  367. #endif
  368. #define SEC_KEY_1 (1<<0)
  369. #define SEC_KEY_2 (1<<1)
  370. #define SEC_KEY_3 (1<<2)
  371. #define SEC_KEY_4 (1<<3)
  372. #define SEC_ACTIVE_KEY (1<<4)
  373. #define SEC_AUTH_MODE (1<<5)
  374. #define SEC_UNICAST_GROUP (1<<6)
  375. #define SEC_LEVEL (1<<7)
  376. #define SEC_ENABLED (1<<8)
  377. #define SEC_LEVEL_0 0 /* None */
  378. #define SEC_LEVEL_1 1 /* WEP 40 and 104 bit */
  379. #define SEC_LEVEL_2 2 /* Level 1 + TKIP */
  380. #define SEC_LEVEL_2_CKIP 3 /* Level 1 + CKIP */
  381. #define SEC_LEVEL_3 4 /* Level 2 + CCMP */
  382. #define WEP_KEYS 4
  383. #define WEP_KEY_LEN 13
  384. struct ieee80211_security {
  385. u16 active_key:2,
  386. enabled:1,
  387. auth_mode:2,
  388. auth_algo:4,
  389. unicast_uses_group:1;
  390. u8 key_sizes[WEP_KEYS];
  391. u8 keys[WEP_KEYS][WEP_KEY_LEN];
  392. u8 level;
  393. u16 flags;
  394. } __attribute__ ((packed));
  395. /*
  396. 802.11 data frame from AP
  397. ,-------------------------------------------------------------------.
  398. Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
  399. |------|------|---------|---------|---------|------|---------|------|
  400. Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | frame | fcs |
  401. | | tion | (BSSID) | | | ence | data | |
  402. `-------------------------------------------------------------------'
  403. Total: 28-2340 bytes
  404. */
  405. #define BEACON_PROBE_SSID_ID_POSITION 12
  406. /* Management Frame Information Element Types */
  407. #define MFIE_TYPE_SSID 0
  408. #define MFIE_TYPE_RATES 1
  409. #define MFIE_TYPE_FH_SET 2
  410. #define MFIE_TYPE_DS_SET 3
  411. #define MFIE_TYPE_CF_SET 4
  412. #define MFIE_TYPE_TIM 5
  413. #define MFIE_TYPE_IBSS_SET 6
  414. #define MFIE_TYPE_CHALLENGE 16
  415. #define MFIE_TYPE_RSN 48
  416. #define MFIE_TYPE_RATES_EX 50
  417. #define MFIE_TYPE_GENERIC 221
  418. struct ieee80211_info_element_hdr {
  419. u8 id;
  420. u8 len;
  421. } __attribute__ ((packed));
  422. struct ieee80211_info_element {
  423. u8 id;
  424. u8 len;
  425. u8 data[0];
  426. } __attribute__ ((packed));
  427. /*
  428. * These are the data types that can make up management packets
  429. *
  430. u16 auth_algorithm;
  431. u16 auth_sequence;
  432. u16 beacon_interval;
  433. u16 capability;
  434. u8 current_ap[ETH_ALEN];
  435. u16 listen_interval;
  436. struct {
  437. u16 association_id:14, reserved:2;
  438. } __attribute__ ((packed));
  439. u32 time_stamp[2];
  440. u16 reason;
  441. u16 status;
  442. */
  443. struct ieee80211_authentication {
  444. struct ieee80211_hdr_3addr header;
  445. u16 algorithm;
  446. u16 transaction;
  447. u16 status;
  448. struct ieee80211_info_element info_element;
  449. } __attribute__ ((packed));
  450. struct ieee80211_probe_response {
  451. struct ieee80211_hdr_3addr header;
  452. u32 time_stamp[2];
  453. u16 beacon_interval;
  454. u16 capability;
  455. struct ieee80211_info_element info_element;
  456. } __attribute__ ((packed));
  457. struct ieee80211_assoc_request_frame {
  458. u16 capability;
  459. u16 listen_interval;
  460. u8 current_ap[ETH_ALEN];
  461. struct ieee80211_info_element info_element;
  462. } __attribute__ ((packed));
  463. struct ieee80211_assoc_response_frame {
  464. struct ieee80211_hdr_3addr header;
  465. u16 capability;
  466. u16 status;
  467. u16 aid;
  468. struct ieee80211_info_element info_element; /* supported rates */
  469. } __attribute__ ((packed));
  470. struct ieee80211_txb {
  471. u8 nr_frags;
  472. u8 encrypted;
  473. u16 reserved;
  474. u16 frag_size;
  475. u16 payload_size;
  476. struct sk_buff *fragments[0];
  477. };
  478. /* SWEEP TABLE ENTRIES NUMBER*/
  479. #define MAX_SWEEP_TAB_ENTRIES 42
  480. #define MAX_SWEEP_TAB_ENTRIES_PER_PACKET 7
  481. /* MAX_RATES_LENGTH needs to be 12. The spec says 8, and many APs
  482. * only use 8, and then use extended rates for the remaining supported
  483. * rates. Other APs, however, stick all of their supported rates on the
  484. * main rates information element... */
  485. #define MAX_RATES_LENGTH ((u8)12)
  486. #define MAX_RATES_EX_LENGTH ((u8)16)
  487. #define MAX_NETWORK_COUNT 128
  488. #define CRC_LENGTH 4U
  489. #define MAX_WPA_IE_LEN 64
  490. #define NETWORK_EMPTY_ESSID (1<<0)
  491. #define NETWORK_HAS_OFDM (1<<1)
  492. #define NETWORK_HAS_CCK (1<<2)
  493. struct ieee80211_network {
  494. /* These entries are used to identify a unique network */
  495. u8 bssid[ETH_ALEN];
  496. u8 channel;
  497. /* Ensure null-terminated for any debug msgs */
  498. u8 ssid[IW_ESSID_MAX_SIZE + 1];
  499. u8 ssid_len;
  500. /* These are network statistics */
  501. struct ieee80211_rx_stats stats;
  502. u16 capability;
  503. u8 rates[MAX_RATES_LENGTH];
  504. u8 rates_len;
  505. u8 rates_ex[MAX_RATES_EX_LENGTH];
  506. u8 rates_ex_len;
  507. unsigned long last_scanned;
  508. u8 mode;
  509. u8 flags;
  510. u32 last_associate;
  511. u32 time_stamp[2];
  512. u16 beacon_interval;
  513. u16 listen_interval;
  514. u16 atim_window;
  515. u8 wpa_ie[MAX_WPA_IE_LEN];
  516. size_t wpa_ie_len;
  517. u8 rsn_ie[MAX_WPA_IE_LEN];
  518. size_t rsn_ie_len;
  519. struct list_head list;
  520. };
  521. enum ieee80211_state {
  522. IEEE80211_UNINITIALIZED = 0,
  523. IEEE80211_INITIALIZED,
  524. IEEE80211_ASSOCIATING,
  525. IEEE80211_ASSOCIATED,
  526. IEEE80211_AUTHENTICATING,
  527. IEEE80211_AUTHENTICATED,
  528. IEEE80211_SHUTDOWN
  529. };
  530. #define DEFAULT_MAX_SCAN_AGE (15 * HZ)
  531. #define DEFAULT_FTS 2346
  532. #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x"
  533. #define MAC_ARG(x) ((u8*)(x))[0],((u8*)(x))[1],((u8*)(x))[2],((u8*)(x))[3],((u8*)(x))[4],((u8*)(x))[5]
  534. #define CFG_IEEE80211_RESERVE_FCS (1<<0)
  535. #define CFG_IEEE80211_COMPUTE_FCS (1<<1)
  536. struct ieee80211_device {
  537. struct net_device *dev;
  538. /* Bookkeeping structures */
  539. struct net_device_stats stats;
  540. struct ieee80211_stats ieee_stats;
  541. /* Probe / Beacon management */
  542. struct list_head network_free_list;
  543. struct list_head network_list;
  544. struct ieee80211_network *networks;
  545. int scans;
  546. int scan_age;
  547. int iw_mode; /* operating mode (IW_MODE_*) */
  548. spinlock_t lock;
  549. int tx_headroom; /* Set to size of any additional room needed at front
  550. * of allocated Tx SKBs */
  551. u32 config;
  552. /* WEP and other encryption related settings at the device level */
  553. int open_wep; /* Set to 1 to allow unencrypted frames */
  554. int reset_on_keychange; /* Set to 1 if the HW needs to be reset on
  555. * WEP key changes */
  556. /* If the host performs {en,de}cryption, then set to 1 */
  557. int host_encrypt;
  558. int host_decrypt;
  559. int ieee802_1x; /* is IEEE 802.1X used */
  560. /* WPA data */
  561. int wpa_enabled;
  562. int drop_unencrypted;
  563. int tkip_countermeasures;
  564. int privacy_invoked;
  565. size_t wpa_ie_len;
  566. u8 *wpa_ie;
  567. struct list_head crypt_deinit_list;
  568. struct ieee80211_crypt_data *crypt[WEP_KEYS];
  569. int tx_keyidx; /* default TX key index (crypt[tx_keyidx]) */
  570. struct timer_list crypt_deinit_timer;
  571. int bcrx_sta_key; /* use individual keys to override default keys even
  572. * with RX of broad/multicast frames */
  573. /* Fragmentation structures */
  574. struct ieee80211_frag_entry frag_cache[IEEE80211_FRAG_CACHE_LEN];
  575. unsigned int frag_next_idx;
  576. u16 fts; /* Fragmentation Threshold */
  577. /* Association info */
  578. u8 bssid[ETH_ALEN];
  579. enum ieee80211_state state;
  580. int mode; /* A, B, G */
  581. int modulation; /* CCK, OFDM */
  582. int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
  583. int abg_ture; /* ABG flag */
  584. /* Callback functions */
  585. void (*set_security)(struct net_device *dev,
  586. struct ieee80211_security *sec);
  587. int (*hard_start_xmit)(struct ieee80211_txb *txb,
  588. struct net_device *dev);
  589. int (*reset_port)(struct net_device *dev);
  590. /* This must be the last item so that it points to the data
  591. * allocated beyond this structure by alloc_ieee80211 */
  592. u8 priv[0];
  593. };
  594. #define IEEE_A (1<<0)
  595. #define IEEE_B (1<<1)
  596. #define IEEE_G (1<<2)
  597. #define IEEE_MODE_MASK (IEEE_A|IEEE_B|IEEE_G)
  598. extern inline void *ieee80211_priv(struct net_device *dev)
  599. {
  600. return ((struct ieee80211_device *)netdev_priv(dev))->priv;
  601. }
  602. extern inline int ieee80211_is_empty_essid(const char *essid, int essid_len)
  603. {
  604. /* Single white space is for Linksys APs */
  605. if (essid_len == 1 && essid[0] == ' ')
  606. return 1;
  607. /* Otherwise, if the entire essid is 0, we assume it is hidden */
  608. while (essid_len) {
  609. essid_len--;
  610. if (essid[essid_len] != '\0')
  611. return 0;
  612. }
  613. return 1;
  614. }
  615. extern inline int ieee80211_is_valid_mode(struct ieee80211_device *ieee, int mode)
  616. {
  617. /*
  618. * It is possible for both access points and our device to support
  619. * combinations of modes, so as long as there is one valid combination
  620. * of ap/device supported modes, then return success
  621. *
  622. */
  623. if ((mode & IEEE_A) &&
  624. (ieee->modulation & IEEE80211_OFDM_MODULATION) &&
  625. (ieee->freq_band & IEEE80211_52GHZ_BAND))
  626. return 1;
  627. if ((mode & IEEE_G) &&
  628. (ieee->modulation & IEEE80211_OFDM_MODULATION) &&
  629. (ieee->freq_band & IEEE80211_24GHZ_BAND))
  630. return 1;
  631. if ((mode & IEEE_B) &&
  632. (ieee->modulation & IEEE80211_CCK_MODULATION) &&
  633. (ieee->freq_band & IEEE80211_24GHZ_BAND))
  634. return 1;
  635. return 0;
  636. }
  637. extern inline int ieee80211_get_hdrlen(u16 fc)
  638. {
  639. int hdrlen = IEEE80211_3ADDR_LEN;
  640. switch (WLAN_FC_GET_TYPE(fc)) {
  641. case IEEE80211_FTYPE_DATA:
  642. if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
  643. hdrlen = IEEE80211_4ADDR_LEN;
  644. break;
  645. case IEEE80211_FTYPE_CTL:
  646. switch (WLAN_FC_GET_STYPE(fc)) {
  647. case IEEE80211_STYPE_CTS:
  648. case IEEE80211_STYPE_ACK:
  649. hdrlen = IEEE80211_1ADDR_LEN;
  650. break;
  651. default:
  652. hdrlen = IEEE80211_2ADDR_LEN;
  653. break;
  654. }
  655. break;
  656. }
  657. return hdrlen;
  658. }
  659. /* ieee80211.c */
  660. extern void free_ieee80211(struct net_device *dev);
  661. extern struct net_device *alloc_ieee80211(int sizeof_priv);
  662. extern int ieee80211_set_encryption(struct ieee80211_device *ieee);
  663. /* ieee80211_tx.c */
  664. extern int ieee80211_xmit(struct sk_buff *skb,
  665. struct net_device *dev);
  666. extern void ieee80211_txb_free(struct ieee80211_txb *);
  667. /* ieee80211_rx.c */
  668. extern int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
  669. struct ieee80211_rx_stats *rx_stats);
  670. extern void ieee80211_rx_mgt(struct ieee80211_device *ieee,
  671. struct ieee80211_hdr *header,
  672. struct ieee80211_rx_stats *stats);
  673. /* iee80211_wx.c */
  674. extern int ieee80211_wx_get_scan(struct ieee80211_device *ieee,
  675. struct iw_request_info *info,
  676. union iwreq_data *wrqu, char *key);
  677. extern int ieee80211_wx_set_encode(struct ieee80211_device *ieee,
  678. struct iw_request_info *info,
  679. union iwreq_data *wrqu, char *key);
  680. extern int ieee80211_wx_get_encode(struct ieee80211_device *ieee,
  681. struct iw_request_info *info,
  682. union iwreq_data *wrqu, char *key);
  683. extern inline void ieee80211_increment_scans(struct ieee80211_device *ieee)
  684. {
  685. ieee->scans++;
  686. }
  687. extern inline int ieee80211_get_scans(struct ieee80211_device *ieee)
  688. {
  689. return ieee->scans;
  690. }
  691. static inline const char *escape_essid(const char *essid, u8 essid_len) {
  692. static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
  693. const char *s = essid;
  694. char *d = escaped;
  695. if (ieee80211_is_empty_essid(essid, essid_len)) {
  696. memcpy(escaped, "<hidden>", sizeof("<hidden>"));
  697. return escaped;
  698. }
  699. essid_len = min(essid_len, (u8)IW_ESSID_MAX_SIZE);
  700. while (essid_len--) {
  701. if (*s == '\0') {
  702. *d++ = '\\';
  703. *d++ = '0';
  704. s++;
  705. } else {
  706. *d++ = *s++;
  707. }
  708. }
  709. *d = '\0';
  710. return escaped;
  711. }
  712. #endif /* IEEE80211_H */