ieee80211.h 26 KB

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