ieee80211.h 27 KB

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