ieee80211.h 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  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. * <j@w1.fi>
  10. * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
  11. *
  12. * Adaption to a generic IEEE 802.11 stack by James Ketrenos
  13. * <jketreno@linux.intel.com>
  14. * Copyright (c) 2004-2005, 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. * API Version History
  22. * 1.0.x -- Initial version
  23. * 1.1.x -- Added radiotap, QoS, TIM, ieee80211_geo APIs,
  24. * various structure changes, and crypto API init method
  25. */
  26. #ifndef IEEE80211_H
  27. #define IEEE80211_H
  28. #include <linux/if_ether.h> /* ETH_ALEN */
  29. #include <linux/kernel.h> /* ARRAY_SIZE */
  30. #include <linux/wireless.h>
  31. #define IEEE80211_VERSION "git-1.1.13"
  32. #define IEEE80211_DATA_LEN 2304
  33. /* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
  34. 6.2.1.1.2.
  35. The figure in section 7.1.2 suggests a body size of up to 2312
  36. bytes is allowed, which is a bit confusing, I suspect this
  37. represents the 2304 bytes of real data, plus a possible 8 bytes of
  38. WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro) */
  39. #define IEEE80211_1ADDR_LEN 10
  40. #define IEEE80211_2ADDR_LEN 16
  41. #define IEEE80211_3ADDR_LEN 24
  42. #define IEEE80211_4ADDR_LEN 30
  43. #define IEEE80211_FCS_LEN 4
  44. #define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
  45. #define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
  46. #define MIN_FRAG_THRESHOLD 256U
  47. #define MAX_FRAG_THRESHOLD 2346U
  48. /* Frame control field constants */
  49. #define IEEE80211_FCTL_VERS 0x0003
  50. #define IEEE80211_FCTL_FTYPE 0x000c
  51. #define IEEE80211_FCTL_STYPE 0x00f0
  52. #define IEEE80211_FCTL_TODS 0x0100
  53. #define IEEE80211_FCTL_FROMDS 0x0200
  54. #define IEEE80211_FCTL_MOREFRAGS 0x0400
  55. #define IEEE80211_FCTL_RETRY 0x0800
  56. #define IEEE80211_FCTL_PM 0x1000
  57. #define IEEE80211_FCTL_MOREDATA 0x2000
  58. #define IEEE80211_FCTL_PROTECTED 0x4000
  59. #define IEEE80211_FCTL_ORDER 0x8000
  60. #define IEEE80211_FTYPE_MGMT 0x0000
  61. #define IEEE80211_FTYPE_CTL 0x0004
  62. #define IEEE80211_FTYPE_DATA 0x0008
  63. /* management */
  64. #define IEEE80211_STYPE_ASSOC_REQ 0x0000
  65. #define IEEE80211_STYPE_ASSOC_RESP 0x0010
  66. #define IEEE80211_STYPE_REASSOC_REQ 0x0020
  67. #define IEEE80211_STYPE_REASSOC_RESP 0x0030
  68. #define IEEE80211_STYPE_PROBE_REQ 0x0040
  69. #define IEEE80211_STYPE_PROBE_RESP 0x0050
  70. #define IEEE80211_STYPE_BEACON 0x0080
  71. #define IEEE80211_STYPE_ATIM 0x0090
  72. #define IEEE80211_STYPE_DISASSOC 0x00A0
  73. #define IEEE80211_STYPE_AUTH 0x00B0
  74. #define IEEE80211_STYPE_DEAUTH 0x00C0
  75. #define IEEE80211_STYPE_ACTION 0x00D0
  76. /* control */
  77. #define IEEE80211_STYPE_PSPOLL 0x00A0
  78. #define IEEE80211_STYPE_RTS 0x00B0
  79. #define IEEE80211_STYPE_CTS 0x00C0
  80. #define IEEE80211_STYPE_ACK 0x00D0
  81. #define IEEE80211_STYPE_CFEND 0x00E0
  82. #define IEEE80211_STYPE_CFENDACK 0x00F0
  83. /* data */
  84. #define IEEE80211_STYPE_DATA 0x0000
  85. #define IEEE80211_STYPE_DATA_CFACK 0x0010
  86. #define IEEE80211_STYPE_DATA_CFPOLL 0x0020
  87. #define IEEE80211_STYPE_DATA_CFACKPOLL 0x0030
  88. #define IEEE80211_STYPE_NULLFUNC 0x0040
  89. #define IEEE80211_STYPE_CFACK 0x0050
  90. #define IEEE80211_STYPE_CFPOLL 0x0060
  91. #define IEEE80211_STYPE_CFACKPOLL 0x0070
  92. #define IEEE80211_STYPE_QOS_DATA 0x0080
  93. #define IEEE80211_SCTL_FRAG 0x000F
  94. #define IEEE80211_SCTL_SEQ 0xFFF0
  95. /* QOS control */
  96. #define IEEE80211_QCTL_TID 0x000F
  97. /* debug macros */
  98. #ifdef CONFIG_IEEE80211_DEBUG
  99. extern u32 ieee80211_debug_level;
  100. #define IEEE80211_DEBUG(level, fmt, args...) \
  101. do { if (ieee80211_debug_level & (level)) \
  102. printk(KERN_DEBUG "ieee80211: %c %s " fmt, \
  103. in_interrupt() ? 'I' : 'U', __func__ , ## args); } while (0)
  104. static inline bool ieee80211_ratelimit_debug(u32 level)
  105. {
  106. return (ieee80211_debug_level & level) && net_ratelimit();
  107. }
  108. #else
  109. #define IEEE80211_DEBUG(level, fmt, args...) do {} while (0)
  110. static inline bool ieee80211_ratelimit_debug(u32 level)
  111. {
  112. return false;
  113. }
  114. #endif /* CONFIG_IEEE80211_DEBUG */
  115. /*
  116. * To use the debug system:
  117. *
  118. * If you are defining a new debug classification, simply add it to the #define
  119. * list here in the form of:
  120. *
  121. * #define IEEE80211_DL_xxxx VALUE
  122. *
  123. * shifting value to the left one bit from the previous entry. xxxx should be
  124. * the name of the classification (for example, WEP)
  125. *
  126. * You then need to either add a IEEE80211_xxxx_DEBUG() macro definition for your
  127. * classification, or use IEEE80211_DEBUG(IEEE80211_DL_xxxx, ...) whenever you want
  128. * to send output to that classification.
  129. *
  130. * To add your debug level to the list of levels seen when you perform
  131. *
  132. * % cat /proc/net/ieee80211/debug_level
  133. *
  134. * you simply need to add your entry to the ieee80211_debug_level array.
  135. *
  136. * If you do not see debug_level in /proc/net/ieee80211 then you do not have
  137. * CONFIG_IEEE80211_DEBUG defined in your kernel configuration
  138. *
  139. */
  140. #define IEEE80211_DL_INFO (1<<0)
  141. #define IEEE80211_DL_WX (1<<1)
  142. #define IEEE80211_DL_SCAN (1<<2)
  143. #define IEEE80211_DL_STATE (1<<3)
  144. #define IEEE80211_DL_MGMT (1<<4)
  145. #define IEEE80211_DL_FRAG (1<<5)
  146. #define IEEE80211_DL_DROP (1<<7)
  147. #define IEEE80211_DL_TX (1<<8)
  148. #define IEEE80211_DL_RX (1<<9)
  149. #define IEEE80211_DL_QOS (1<<31)
  150. #define IEEE80211_ERROR(f, a...) printk(KERN_ERR "ieee80211: " f, ## a)
  151. #define IEEE80211_WARNING(f, a...) printk(KERN_WARNING "ieee80211: " f, ## a)
  152. #define IEEE80211_DEBUG_INFO(f, a...) IEEE80211_DEBUG(IEEE80211_DL_INFO, f, ## a)
  153. #define IEEE80211_DEBUG_WX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_WX, f, ## a)
  154. #define IEEE80211_DEBUG_SCAN(f, a...) IEEE80211_DEBUG(IEEE80211_DL_SCAN, f, ## a)
  155. #define IEEE80211_DEBUG_STATE(f, a...) IEEE80211_DEBUG(IEEE80211_DL_STATE, f, ## a)
  156. #define IEEE80211_DEBUG_MGMT(f, a...) IEEE80211_DEBUG(IEEE80211_DL_MGMT, f, ## a)
  157. #define IEEE80211_DEBUG_FRAG(f, a...) IEEE80211_DEBUG(IEEE80211_DL_FRAG, f, ## a)
  158. #define IEEE80211_DEBUG_DROP(f, a...) IEEE80211_DEBUG(IEEE80211_DL_DROP, f, ## a)
  159. #define IEEE80211_DEBUG_TX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_TX, f, ## a)
  160. #define IEEE80211_DEBUG_RX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_RX, f, ## a)
  161. #define IEEE80211_DEBUG_QOS(f, a...) IEEE80211_DEBUG(IEEE80211_DL_QOS, f, ## a)
  162. #include <linux/netdevice.h>
  163. #include <linux/if_arp.h> /* ARPHRD_ETHER */
  164. #ifndef WIRELESS_SPY
  165. #define WIRELESS_SPY /* enable iwspy support */
  166. #endif
  167. #include <net/iw_handler.h> /* new driver API */
  168. #define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
  169. #ifndef ETH_P_80211_RAW
  170. #define ETH_P_80211_RAW (ETH_P_ECONET + 1)
  171. #endif
  172. /* IEEE 802.11 defines */
  173. #define P80211_OUI_LEN 3
  174. struct ieee80211_snap_hdr {
  175. u8 dsap; /* always 0xAA */
  176. u8 ssap; /* always 0xAA */
  177. u8 ctrl; /* always 0x03 */
  178. u8 oui[P80211_OUI_LEN]; /* organizational universal id */
  179. } __attribute__ ((packed));
  180. #define SNAP_SIZE sizeof(struct ieee80211_snap_hdr)
  181. #define WLAN_FC_GET_VERS(fc) ((fc) & IEEE80211_FCTL_VERS)
  182. #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
  183. #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
  184. #define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
  185. #define WLAN_GET_SEQ_SEQ(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
  186. /* Authentication algorithms */
  187. #define WLAN_AUTH_OPEN 0
  188. #define WLAN_AUTH_SHARED_KEY 1
  189. #define WLAN_AUTH_LEAP 2
  190. #define WLAN_AUTH_CHALLENGE_LEN 128
  191. #define WLAN_CAPABILITY_ESS (1<<0)
  192. #define WLAN_CAPABILITY_IBSS (1<<1)
  193. #define WLAN_CAPABILITY_CF_POLLABLE (1<<2)
  194. #define WLAN_CAPABILITY_CF_POLL_REQUEST (1<<3)
  195. #define WLAN_CAPABILITY_PRIVACY (1<<4)
  196. #define WLAN_CAPABILITY_SHORT_PREAMBLE (1<<5)
  197. #define WLAN_CAPABILITY_PBCC (1<<6)
  198. #define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
  199. #define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8)
  200. #define WLAN_CAPABILITY_QOS (1<<9)
  201. #define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10)
  202. #define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
  203. /* 802.11g ERP information element */
  204. #define WLAN_ERP_NON_ERP_PRESENT (1<<0)
  205. #define WLAN_ERP_USE_PROTECTION (1<<1)
  206. #define WLAN_ERP_BARKER_PREAMBLE (1<<2)
  207. /* Status codes */
  208. enum ieee80211_statuscode {
  209. WLAN_STATUS_SUCCESS = 0,
  210. WLAN_STATUS_UNSPECIFIED_FAILURE = 1,
  211. WLAN_STATUS_CAPS_UNSUPPORTED = 10,
  212. WLAN_STATUS_REASSOC_NO_ASSOC = 11,
  213. WLAN_STATUS_ASSOC_DENIED_UNSPEC = 12,
  214. WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG = 13,
  215. WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION = 14,
  216. WLAN_STATUS_CHALLENGE_FAIL = 15,
  217. WLAN_STATUS_AUTH_TIMEOUT = 16,
  218. WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA = 17,
  219. WLAN_STATUS_ASSOC_DENIED_RATES = 18,
  220. /* 802.11b */
  221. WLAN_STATUS_ASSOC_DENIED_NOSHORTPREAMBLE = 19,
  222. WLAN_STATUS_ASSOC_DENIED_NOPBCC = 20,
  223. WLAN_STATUS_ASSOC_DENIED_NOAGILITY = 21,
  224. /* 802.11h */
  225. WLAN_STATUS_ASSOC_DENIED_NOSPECTRUM = 22,
  226. WLAN_STATUS_ASSOC_REJECTED_BAD_POWER = 23,
  227. WLAN_STATUS_ASSOC_REJECTED_BAD_SUPP_CHAN = 24,
  228. /* 802.11g */
  229. WLAN_STATUS_ASSOC_DENIED_NOSHORTTIME = 25,
  230. WLAN_STATUS_ASSOC_DENIED_NODSSSOFDM = 26,
  231. /* 802.11i */
  232. WLAN_STATUS_INVALID_IE = 40,
  233. WLAN_STATUS_INVALID_GROUP_CIPHER = 41,
  234. WLAN_STATUS_INVALID_PAIRWISE_CIPHER = 42,
  235. WLAN_STATUS_INVALID_AKMP = 43,
  236. WLAN_STATUS_UNSUPP_RSN_VERSION = 44,
  237. WLAN_STATUS_INVALID_RSN_IE_CAP = 45,
  238. WLAN_STATUS_CIPHER_SUITE_REJECTED = 46,
  239. };
  240. /* Reason codes */
  241. enum ieee80211_reasoncode {
  242. WLAN_REASON_UNSPECIFIED = 1,
  243. WLAN_REASON_PREV_AUTH_NOT_VALID = 2,
  244. WLAN_REASON_DEAUTH_LEAVING = 3,
  245. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY = 4,
  246. WLAN_REASON_DISASSOC_AP_BUSY = 5,
  247. WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA = 6,
  248. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA = 7,
  249. WLAN_REASON_DISASSOC_STA_HAS_LEFT = 8,
  250. WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH = 9,
  251. /* 802.11h */
  252. WLAN_REASON_DISASSOC_BAD_POWER = 10,
  253. WLAN_REASON_DISASSOC_BAD_SUPP_CHAN = 11,
  254. /* 802.11i */
  255. WLAN_REASON_INVALID_IE = 13,
  256. WLAN_REASON_MIC_FAILURE = 14,
  257. WLAN_REASON_4WAY_HANDSHAKE_TIMEOUT = 15,
  258. WLAN_REASON_GROUP_KEY_HANDSHAKE_TIMEOUT = 16,
  259. WLAN_REASON_IE_DIFFERENT = 17,
  260. WLAN_REASON_INVALID_GROUP_CIPHER = 18,
  261. WLAN_REASON_INVALID_PAIRWISE_CIPHER = 19,
  262. WLAN_REASON_INVALID_AKMP = 20,
  263. WLAN_REASON_UNSUPP_RSN_VERSION = 21,
  264. WLAN_REASON_INVALID_RSN_IE_CAP = 22,
  265. WLAN_REASON_IEEE8021X_FAILED = 23,
  266. WLAN_REASON_CIPHER_SUITE_REJECTED = 24,
  267. };
  268. /* Action categories - 802.11h */
  269. enum ieee80211_actioncategories {
  270. WLAN_ACTION_SPECTRUM_MGMT = 0,
  271. /* Reserved 1-127 */
  272. /* Error 128-255 */
  273. };
  274. /* Action details - 802.11h */
  275. enum ieee80211_actiondetails {
  276. WLAN_ACTION_CATEGORY_MEASURE_REQUEST = 0,
  277. WLAN_ACTION_CATEGORY_MEASURE_REPORT = 1,
  278. WLAN_ACTION_CATEGORY_TPC_REQUEST = 2,
  279. WLAN_ACTION_CATEGORY_TPC_REPORT = 3,
  280. WLAN_ACTION_CATEGORY_CHANNEL_SWITCH = 4,
  281. /* 5 - 255 Reserved */
  282. };
  283. #define IEEE80211_STATMASK_SIGNAL (1<<0)
  284. #define IEEE80211_STATMASK_RSSI (1<<1)
  285. #define IEEE80211_STATMASK_NOISE (1<<2)
  286. #define IEEE80211_STATMASK_RATE (1<<3)
  287. #define IEEE80211_STATMASK_WEMASK 0x7
  288. #define IEEE80211_CCK_MODULATION (1<<0)
  289. #define IEEE80211_OFDM_MODULATION (1<<1)
  290. #define IEEE80211_24GHZ_BAND (1<<0)
  291. #define IEEE80211_52GHZ_BAND (1<<1)
  292. #define IEEE80211_CCK_RATE_1MB 0x02
  293. #define IEEE80211_CCK_RATE_2MB 0x04
  294. #define IEEE80211_CCK_RATE_5MB 0x0B
  295. #define IEEE80211_CCK_RATE_11MB 0x16
  296. #define IEEE80211_OFDM_RATE_6MB 0x0C
  297. #define IEEE80211_OFDM_RATE_9MB 0x12
  298. #define IEEE80211_OFDM_RATE_12MB 0x18
  299. #define IEEE80211_OFDM_RATE_18MB 0x24
  300. #define IEEE80211_OFDM_RATE_24MB 0x30
  301. #define IEEE80211_OFDM_RATE_36MB 0x48
  302. #define IEEE80211_OFDM_RATE_48MB 0x60
  303. #define IEEE80211_OFDM_RATE_54MB 0x6C
  304. #define IEEE80211_BASIC_RATE_MASK 0x80
  305. #define IEEE80211_CCK_RATE_1MB_MASK (1<<0)
  306. #define IEEE80211_CCK_RATE_2MB_MASK (1<<1)
  307. #define IEEE80211_CCK_RATE_5MB_MASK (1<<2)
  308. #define IEEE80211_CCK_RATE_11MB_MASK (1<<3)
  309. #define IEEE80211_OFDM_RATE_6MB_MASK (1<<4)
  310. #define IEEE80211_OFDM_RATE_9MB_MASK (1<<5)
  311. #define IEEE80211_OFDM_RATE_12MB_MASK (1<<6)
  312. #define IEEE80211_OFDM_RATE_18MB_MASK (1<<7)
  313. #define IEEE80211_OFDM_RATE_24MB_MASK (1<<8)
  314. #define IEEE80211_OFDM_RATE_36MB_MASK (1<<9)
  315. #define IEEE80211_OFDM_RATE_48MB_MASK (1<<10)
  316. #define IEEE80211_OFDM_RATE_54MB_MASK (1<<11)
  317. #define IEEE80211_CCK_RATES_MASK 0x0000000F
  318. #define IEEE80211_CCK_BASIC_RATES_MASK (IEEE80211_CCK_RATE_1MB_MASK | \
  319. IEEE80211_CCK_RATE_2MB_MASK)
  320. #define IEEE80211_CCK_DEFAULT_RATES_MASK (IEEE80211_CCK_BASIC_RATES_MASK | \
  321. IEEE80211_CCK_RATE_5MB_MASK | \
  322. IEEE80211_CCK_RATE_11MB_MASK)
  323. #define IEEE80211_OFDM_RATES_MASK 0x00000FF0
  324. #define IEEE80211_OFDM_BASIC_RATES_MASK (IEEE80211_OFDM_RATE_6MB_MASK | \
  325. IEEE80211_OFDM_RATE_12MB_MASK | \
  326. IEEE80211_OFDM_RATE_24MB_MASK)
  327. #define IEEE80211_OFDM_DEFAULT_RATES_MASK (IEEE80211_OFDM_BASIC_RATES_MASK | \
  328. IEEE80211_OFDM_RATE_9MB_MASK | \
  329. IEEE80211_OFDM_RATE_18MB_MASK | \
  330. IEEE80211_OFDM_RATE_36MB_MASK | \
  331. IEEE80211_OFDM_RATE_48MB_MASK | \
  332. IEEE80211_OFDM_RATE_54MB_MASK)
  333. #define IEEE80211_DEFAULT_RATES_MASK (IEEE80211_OFDM_DEFAULT_RATES_MASK | \
  334. IEEE80211_CCK_DEFAULT_RATES_MASK)
  335. #define IEEE80211_NUM_OFDM_RATES 8
  336. #define IEEE80211_NUM_CCK_RATES 4
  337. #define IEEE80211_OFDM_SHIFT_MASK_A 4
  338. /* NOTE: This data is for statistical purposes; not all hardware provides this
  339. * information for frames received.
  340. * For ieee80211_rx_mgt, you need to set at least the 'len' parameter.
  341. */
  342. struct ieee80211_rx_stats {
  343. u32 mac_time;
  344. s8 rssi;
  345. u8 signal;
  346. u8 noise;
  347. u16 rate; /* in 100 kbps */
  348. u8 received_channel;
  349. u8 control;
  350. u8 mask;
  351. u8 freq;
  352. u16 len;
  353. u64 tsf;
  354. u32 beacon_time;
  355. };
  356. /* IEEE 802.11 requires that STA supports concurrent reception of at least
  357. * three fragmented frames. This define can be increased to support more
  358. * concurrent frames, but it should be noted that each entry can consume about
  359. * 2 kB of RAM and increasing cache size will slow down frame reassembly. */
  360. #define IEEE80211_FRAG_CACHE_LEN 4
  361. struct ieee80211_frag_entry {
  362. unsigned long first_frag_time;
  363. unsigned int seq;
  364. unsigned int last_frag;
  365. struct sk_buff *skb;
  366. u8 src_addr[ETH_ALEN];
  367. u8 dst_addr[ETH_ALEN];
  368. };
  369. struct ieee80211_stats {
  370. unsigned int tx_unicast_frames;
  371. unsigned int tx_multicast_frames;
  372. unsigned int tx_fragments;
  373. unsigned int tx_unicast_octets;
  374. unsigned int tx_multicast_octets;
  375. unsigned int tx_deferred_transmissions;
  376. unsigned int tx_single_retry_frames;
  377. unsigned int tx_multiple_retry_frames;
  378. unsigned int tx_retry_limit_exceeded;
  379. unsigned int tx_discards;
  380. unsigned int rx_unicast_frames;
  381. unsigned int rx_multicast_frames;
  382. unsigned int rx_fragments;
  383. unsigned int rx_unicast_octets;
  384. unsigned int rx_multicast_octets;
  385. unsigned int rx_fcs_errors;
  386. unsigned int rx_discards_no_buffer;
  387. unsigned int tx_discards_wrong_sa;
  388. unsigned int rx_discards_undecryptable;
  389. unsigned int rx_message_in_msg_fragments;
  390. unsigned int rx_message_in_bad_msg_fragments;
  391. };
  392. struct ieee80211_device;
  393. #include "ieee80211_crypt.h"
  394. #define SEC_KEY_1 (1<<0)
  395. #define SEC_KEY_2 (1<<1)
  396. #define SEC_KEY_3 (1<<2)
  397. #define SEC_KEY_4 (1<<3)
  398. #define SEC_ACTIVE_KEY (1<<4)
  399. #define SEC_AUTH_MODE (1<<5)
  400. #define SEC_UNICAST_GROUP (1<<6)
  401. #define SEC_LEVEL (1<<7)
  402. #define SEC_ENABLED (1<<8)
  403. #define SEC_ENCRYPT (1<<9)
  404. #define SEC_LEVEL_0 0 /* None */
  405. #define SEC_LEVEL_1 1 /* WEP 40 and 104 bit */
  406. #define SEC_LEVEL_2 2 /* Level 1 + TKIP */
  407. #define SEC_LEVEL_2_CKIP 3 /* Level 1 + CKIP */
  408. #define SEC_LEVEL_3 4 /* Level 2 + CCMP */
  409. #define SEC_ALG_NONE 0
  410. #define SEC_ALG_WEP 1
  411. #define SEC_ALG_TKIP 2
  412. #define SEC_ALG_CCMP 3
  413. #define WEP_KEYS 4
  414. #define WEP_KEY_LEN 13
  415. #define SCM_KEY_LEN 32
  416. #define SCM_TEMPORAL_KEY_LENGTH 16
  417. struct ieee80211_security {
  418. u16 active_key:2,
  419. enabled:1,
  420. auth_mode:2, auth_algo:4, unicast_uses_group:1, encrypt:1;
  421. u8 encode_alg[WEP_KEYS];
  422. u8 key_sizes[WEP_KEYS];
  423. u8 keys[WEP_KEYS][SCM_KEY_LEN];
  424. u8 level;
  425. u16 flags;
  426. } __attribute__ ((packed));
  427. /*
  428. 802.11 data frame from AP
  429. ,-------------------------------------------------------------------.
  430. Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
  431. |------|------|---------|---------|---------|------|---------|------|
  432. Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | frame | fcs |
  433. | | tion | (BSSID) | | | ence | data | |
  434. `-------------------------------------------------------------------'
  435. Total: 28-2340 bytes
  436. */
  437. #define BEACON_PROBE_SSID_ID_POSITION 12
  438. /* Management Frame Information Element Types */
  439. enum ieee80211_mfie {
  440. MFIE_TYPE_SSID = 0,
  441. MFIE_TYPE_RATES = 1,
  442. MFIE_TYPE_FH_SET = 2,
  443. MFIE_TYPE_DS_SET = 3,
  444. MFIE_TYPE_CF_SET = 4,
  445. MFIE_TYPE_TIM = 5,
  446. MFIE_TYPE_IBSS_SET = 6,
  447. MFIE_TYPE_COUNTRY = 7,
  448. MFIE_TYPE_HOP_PARAMS = 8,
  449. MFIE_TYPE_HOP_TABLE = 9,
  450. MFIE_TYPE_REQUEST = 10,
  451. MFIE_TYPE_CHALLENGE = 16,
  452. MFIE_TYPE_POWER_CONSTRAINT = 32,
  453. MFIE_TYPE_POWER_CAPABILITY = 33,
  454. MFIE_TYPE_TPC_REQUEST = 34,
  455. MFIE_TYPE_TPC_REPORT = 35,
  456. MFIE_TYPE_SUPP_CHANNELS = 36,
  457. MFIE_TYPE_CSA = 37,
  458. MFIE_TYPE_MEASURE_REQUEST = 38,
  459. MFIE_TYPE_MEASURE_REPORT = 39,
  460. MFIE_TYPE_QUIET = 40,
  461. MFIE_TYPE_IBSS_DFS = 41,
  462. MFIE_TYPE_ERP_INFO = 42,
  463. MFIE_TYPE_RSN = 48,
  464. MFIE_TYPE_RATES_EX = 50,
  465. MFIE_TYPE_GENERIC = 221,
  466. MFIE_TYPE_QOS_PARAMETER = 222,
  467. };
  468. /* Minimal header; can be used for passing 802.11 frames with sufficient
  469. * information to determine what type of underlying data type is actually
  470. * stored in the data. */
  471. struct ieee80211_hdr {
  472. __le16 frame_ctl;
  473. __le16 duration_id;
  474. u8 payload[0];
  475. } __attribute__ ((packed));
  476. struct ieee80211_hdr_1addr {
  477. __le16 frame_ctl;
  478. __le16 duration_id;
  479. u8 addr1[ETH_ALEN];
  480. u8 payload[0];
  481. } __attribute__ ((packed));
  482. struct ieee80211_hdr_2addr {
  483. __le16 frame_ctl;
  484. __le16 duration_id;
  485. u8 addr1[ETH_ALEN];
  486. u8 addr2[ETH_ALEN];
  487. u8 payload[0];
  488. } __attribute__ ((packed));
  489. struct ieee80211_hdr_3addr {
  490. __le16 frame_ctl;
  491. __le16 duration_id;
  492. u8 addr1[ETH_ALEN];
  493. u8 addr2[ETH_ALEN];
  494. u8 addr3[ETH_ALEN];
  495. __le16 seq_ctl;
  496. u8 payload[0];
  497. } __attribute__ ((packed));
  498. struct ieee80211_hdr_4addr {
  499. __le16 frame_ctl;
  500. __le16 duration_id;
  501. u8 addr1[ETH_ALEN];
  502. u8 addr2[ETH_ALEN];
  503. u8 addr3[ETH_ALEN];
  504. __le16 seq_ctl;
  505. u8 addr4[ETH_ALEN];
  506. u8 payload[0];
  507. } __attribute__ ((packed));
  508. struct ieee80211_hdr_3addrqos {
  509. __le16 frame_ctl;
  510. __le16 duration_id;
  511. u8 addr1[ETH_ALEN];
  512. u8 addr2[ETH_ALEN];
  513. u8 addr3[ETH_ALEN];
  514. __le16 seq_ctl;
  515. u8 payload[0];
  516. __le16 qos_ctl;
  517. } __attribute__ ((packed));
  518. struct ieee80211_hdr_4addrqos {
  519. __le16 frame_ctl;
  520. __le16 duration_id;
  521. u8 addr1[ETH_ALEN];
  522. u8 addr2[ETH_ALEN];
  523. u8 addr3[ETH_ALEN];
  524. __le16 seq_ctl;
  525. u8 addr4[ETH_ALEN];
  526. u8 payload[0];
  527. __le16 qos_ctl;
  528. } __attribute__ ((packed));
  529. struct ieee80211_info_element {
  530. u8 id;
  531. u8 len;
  532. u8 data[0];
  533. } __attribute__ ((packed));
  534. /*
  535. * These are the data types that can make up management packets
  536. *
  537. u16 auth_algorithm;
  538. u16 auth_sequence;
  539. u16 beacon_interval;
  540. u16 capability;
  541. u8 current_ap[ETH_ALEN];
  542. u16 listen_interval;
  543. struct {
  544. u16 association_id:14, reserved:2;
  545. } __attribute__ ((packed));
  546. u32 time_stamp[2];
  547. u16 reason;
  548. u16 status;
  549. */
  550. struct ieee80211_auth {
  551. struct ieee80211_hdr_3addr header;
  552. __le16 algorithm;
  553. __le16 transaction;
  554. __le16 status;
  555. /* challenge */
  556. struct ieee80211_info_element info_element[0];
  557. } __attribute__ ((packed));
  558. struct ieee80211_channel_switch {
  559. u8 id;
  560. u8 len;
  561. u8 mode;
  562. u8 channel;
  563. u8 count;
  564. } __attribute__ ((packed));
  565. struct ieee80211_action {
  566. struct ieee80211_hdr_3addr header;
  567. u8 category;
  568. u8 action;
  569. union {
  570. struct ieee80211_action_exchange {
  571. u8 token;
  572. struct ieee80211_info_element info_element[0];
  573. } exchange;
  574. struct ieee80211_channel_switch channel_switch;
  575. } format;
  576. } __attribute__ ((packed));
  577. struct ieee80211_disassoc {
  578. struct ieee80211_hdr_3addr header;
  579. __le16 reason;
  580. } __attribute__ ((packed));
  581. /* Alias deauth for disassoc */
  582. #define ieee80211_deauth ieee80211_disassoc
  583. struct ieee80211_probe_request {
  584. struct ieee80211_hdr_3addr header;
  585. /* SSID, supported rates */
  586. struct ieee80211_info_element info_element[0];
  587. } __attribute__ ((packed));
  588. struct ieee80211_probe_response {
  589. struct ieee80211_hdr_3addr header;
  590. __le32 time_stamp[2];
  591. __le16 beacon_interval;
  592. __le16 capability;
  593. /* SSID, supported rates, FH params, DS params,
  594. * CF params, IBSS params, TIM (if beacon), RSN */
  595. struct ieee80211_info_element info_element[0];
  596. } __attribute__ ((packed));
  597. /* Alias beacon for probe_response */
  598. #define ieee80211_beacon ieee80211_probe_response
  599. struct ieee80211_assoc_request {
  600. struct ieee80211_hdr_3addr header;
  601. __le16 capability;
  602. __le16 listen_interval;
  603. /* SSID, supported rates, RSN */
  604. struct ieee80211_info_element info_element[0];
  605. } __attribute__ ((packed));
  606. struct ieee80211_reassoc_request {
  607. struct ieee80211_hdr_3addr header;
  608. __le16 capability;
  609. __le16 listen_interval;
  610. u8 current_ap[ETH_ALEN];
  611. struct ieee80211_info_element info_element[0];
  612. } __attribute__ ((packed));
  613. struct ieee80211_assoc_response {
  614. struct ieee80211_hdr_3addr header;
  615. __le16 capability;
  616. __le16 status;
  617. __le16 aid;
  618. /* supported rates */
  619. struct ieee80211_info_element info_element[0];
  620. } __attribute__ ((packed));
  621. struct ieee80211_txb {
  622. u8 nr_frags;
  623. u8 encrypted;
  624. u8 rts_included;
  625. u8 reserved;
  626. u16 frag_size;
  627. u16 payload_size;
  628. struct sk_buff *fragments[0];
  629. };
  630. /* SWEEP TABLE ENTRIES NUMBER */
  631. #define MAX_SWEEP_TAB_ENTRIES 42
  632. #define MAX_SWEEP_TAB_ENTRIES_PER_PACKET 7
  633. /* MAX_RATES_LENGTH needs to be 12. The spec says 8, and many APs
  634. * only use 8, and then use extended rates for the remaining supported
  635. * rates. Other APs, however, stick all of their supported rates on the
  636. * main rates information element... */
  637. #define MAX_RATES_LENGTH ((u8)12)
  638. #define MAX_RATES_EX_LENGTH ((u8)16)
  639. #define MAX_NETWORK_COUNT 128
  640. #define CRC_LENGTH 4U
  641. #define MAX_WPA_IE_LEN 64
  642. #define NETWORK_HAS_OFDM (1<<1)
  643. #define NETWORK_HAS_CCK (1<<2)
  644. /* QoS structure */
  645. #define NETWORK_HAS_QOS_PARAMETERS (1<<3)
  646. #define NETWORK_HAS_QOS_INFORMATION (1<<4)
  647. #define NETWORK_HAS_QOS_MASK (NETWORK_HAS_QOS_PARAMETERS | \
  648. NETWORK_HAS_QOS_INFORMATION)
  649. /* 802.11h */
  650. #define NETWORK_HAS_POWER_CONSTRAINT (1<<5)
  651. #define NETWORK_HAS_CSA (1<<6)
  652. #define NETWORK_HAS_QUIET (1<<7)
  653. #define NETWORK_HAS_IBSS_DFS (1<<8)
  654. #define NETWORK_HAS_TPC_REPORT (1<<9)
  655. #define NETWORK_HAS_ERP_VALUE (1<<10)
  656. #define QOS_QUEUE_NUM 4
  657. #define QOS_OUI_LEN 3
  658. #define QOS_OUI_TYPE 2
  659. #define QOS_ELEMENT_ID 221
  660. #define QOS_OUI_INFO_SUB_TYPE 0
  661. #define QOS_OUI_PARAM_SUB_TYPE 1
  662. #define QOS_VERSION_1 1
  663. #define QOS_AIFSN_MIN_VALUE 2
  664. struct ieee80211_qos_information_element {
  665. u8 elementID;
  666. u8 length;
  667. u8 qui[QOS_OUI_LEN];
  668. u8 qui_type;
  669. u8 qui_subtype;
  670. u8 version;
  671. u8 ac_info;
  672. } __attribute__ ((packed));
  673. struct ieee80211_qos_ac_parameter {
  674. u8 aci_aifsn;
  675. u8 ecw_min_max;
  676. __le16 tx_op_limit;
  677. } __attribute__ ((packed));
  678. struct ieee80211_qos_parameter_info {
  679. struct ieee80211_qos_information_element info_element;
  680. u8 reserved;
  681. struct ieee80211_qos_ac_parameter ac_params_record[QOS_QUEUE_NUM];
  682. } __attribute__ ((packed));
  683. struct ieee80211_qos_parameters {
  684. __le16 cw_min[QOS_QUEUE_NUM];
  685. __le16 cw_max[QOS_QUEUE_NUM];
  686. u8 aifs[QOS_QUEUE_NUM];
  687. u8 flag[QOS_QUEUE_NUM];
  688. __le16 tx_op_limit[QOS_QUEUE_NUM];
  689. } __attribute__ ((packed));
  690. struct ieee80211_qos_data {
  691. struct ieee80211_qos_parameters parameters;
  692. int active;
  693. int supported;
  694. u8 param_count;
  695. u8 old_param_count;
  696. };
  697. struct ieee80211_tim_parameters {
  698. u8 tim_count;
  699. u8 tim_period;
  700. } __attribute__ ((packed));
  701. /*******************************************************/
  702. enum { /* ieee80211_basic_report.map */
  703. IEEE80211_BASIC_MAP_BSS = (1 << 0),
  704. IEEE80211_BASIC_MAP_OFDM = (1 << 1),
  705. IEEE80211_BASIC_MAP_UNIDENTIFIED = (1 << 2),
  706. IEEE80211_BASIC_MAP_RADAR = (1 << 3),
  707. IEEE80211_BASIC_MAP_UNMEASURED = (1 << 4),
  708. /* Bits 5-7 are reserved */
  709. };
  710. struct ieee80211_basic_report {
  711. u8 channel;
  712. __le64 start_time;
  713. __le16 duration;
  714. u8 map;
  715. } __attribute__ ((packed));
  716. enum { /* ieee80211_measurement_request.mode */
  717. /* Bit 0 is reserved */
  718. IEEE80211_MEASUREMENT_ENABLE = (1 << 1),
  719. IEEE80211_MEASUREMENT_REQUEST = (1 << 2),
  720. IEEE80211_MEASUREMENT_REPORT = (1 << 3),
  721. /* Bits 4-7 are reserved */
  722. };
  723. enum {
  724. IEEE80211_REPORT_BASIC = 0, /* required */
  725. IEEE80211_REPORT_CCA = 1, /* optional */
  726. IEEE80211_REPORT_RPI = 2, /* optional */
  727. /* 3-255 reserved */
  728. };
  729. struct ieee80211_measurement_params {
  730. u8 channel;
  731. __le64 start_time;
  732. __le16 duration;
  733. } __attribute__ ((packed));
  734. struct ieee80211_measurement_request {
  735. struct ieee80211_info_element ie;
  736. u8 token;
  737. u8 mode;
  738. u8 type;
  739. struct ieee80211_measurement_params params[0];
  740. } __attribute__ ((packed));
  741. struct ieee80211_measurement_report {
  742. struct ieee80211_info_element ie;
  743. u8 token;
  744. u8 mode;
  745. u8 type;
  746. union {
  747. struct ieee80211_basic_report basic[0];
  748. } u;
  749. } __attribute__ ((packed));
  750. struct ieee80211_tpc_report {
  751. u8 transmit_power;
  752. u8 link_margin;
  753. } __attribute__ ((packed));
  754. struct ieee80211_channel_map {
  755. u8 channel;
  756. u8 map;
  757. } __attribute__ ((packed));
  758. struct ieee80211_ibss_dfs {
  759. struct ieee80211_info_element ie;
  760. u8 owner[ETH_ALEN];
  761. u8 recovery_interval;
  762. struct ieee80211_channel_map channel_map[0];
  763. };
  764. struct ieee80211_csa {
  765. u8 mode;
  766. u8 channel;
  767. u8 count;
  768. } __attribute__ ((packed));
  769. struct ieee80211_quiet {
  770. u8 count;
  771. u8 period;
  772. u8 duration;
  773. u8 offset;
  774. } __attribute__ ((packed));
  775. struct ieee80211_network {
  776. /* These entries are used to identify a unique network */
  777. u8 bssid[ETH_ALEN];
  778. u8 channel;
  779. /* Ensure null-terminated for any debug msgs */
  780. u8 ssid[IW_ESSID_MAX_SIZE + 1];
  781. u8 ssid_len;
  782. struct ieee80211_qos_data qos_data;
  783. /* These are network statistics */
  784. struct ieee80211_rx_stats stats;
  785. u16 capability;
  786. u8 rates[MAX_RATES_LENGTH];
  787. u8 rates_len;
  788. u8 rates_ex[MAX_RATES_EX_LENGTH];
  789. u8 rates_ex_len;
  790. unsigned long last_scanned;
  791. u8 mode;
  792. u32 flags;
  793. u32 last_associate;
  794. u32 time_stamp[2];
  795. u16 beacon_interval;
  796. u16 listen_interval;
  797. u16 atim_window;
  798. u8 erp_value;
  799. u8 wpa_ie[MAX_WPA_IE_LEN];
  800. size_t wpa_ie_len;
  801. u8 rsn_ie[MAX_WPA_IE_LEN];
  802. size_t rsn_ie_len;
  803. struct ieee80211_tim_parameters tim;
  804. /* 802.11h info */
  805. /* Power Constraint - mandatory if spctrm mgmt required */
  806. u8 power_constraint;
  807. /* TPC Report - mandatory if spctrm mgmt required */
  808. struct ieee80211_tpc_report tpc_report;
  809. /* IBSS DFS - mandatory if spctrm mgmt required and IBSS
  810. * NOTE: This is variable length and so must be allocated dynamically */
  811. struct ieee80211_ibss_dfs *ibss_dfs;
  812. /* Channel Switch Announcement - optional if spctrm mgmt required */
  813. struct ieee80211_csa csa;
  814. /* Quiet - optional if spctrm mgmt required */
  815. struct ieee80211_quiet quiet;
  816. struct list_head list;
  817. };
  818. enum ieee80211_state {
  819. IEEE80211_UNINITIALIZED = 0,
  820. IEEE80211_INITIALIZED,
  821. IEEE80211_ASSOCIATING,
  822. IEEE80211_ASSOCIATED,
  823. IEEE80211_AUTHENTICATING,
  824. IEEE80211_AUTHENTICATED,
  825. IEEE80211_SHUTDOWN
  826. };
  827. #define DEFAULT_MAX_SCAN_AGE (15 * HZ)
  828. #define DEFAULT_FTS 2346
  829. #define CFG_IEEE80211_RESERVE_FCS (1<<0)
  830. #define CFG_IEEE80211_COMPUTE_FCS (1<<1)
  831. #define CFG_IEEE80211_RTS (1<<2)
  832. #define IEEE80211_24GHZ_MIN_CHANNEL 1
  833. #define IEEE80211_24GHZ_MAX_CHANNEL 14
  834. #define IEEE80211_24GHZ_CHANNELS (IEEE80211_24GHZ_MAX_CHANNEL - \
  835. IEEE80211_24GHZ_MIN_CHANNEL + 1)
  836. #define IEEE80211_52GHZ_MIN_CHANNEL 34
  837. #define IEEE80211_52GHZ_MAX_CHANNEL 165
  838. #define IEEE80211_52GHZ_CHANNELS (IEEE80211_52GHZ_MAX_CHANNEL - \
  839. IEEE80211_52GHZ_MIN_CHANNEL + 1)
  840. enum {
  841. IEEE80211_CH_PASSIVE_ONLY = (1 << 0),
  842. IEEE80211_CH_80211H_RULES = (1 << 1),
  843. IEEE80211_CH_B_ONLY = (1 << 2),
  844. IEEE80211_CH_NO_IBSS = (1 << 3),
  845. IEEE80211_CH_UNIFORM_SPREADING = (1 << 4),
  846. IEEE80211_CH_RADAR_DETECT = (1 << 5),
  847. IEEE80211_CH_INVALID = (1 << 6),
  848. };
  849. struct ieee80211_channel {
  850. u32 freq; /* in MHz */
  851. u8 channel;
  852. u8 flags;
  853. u8 max_power; /* in dBm */
  854. };
  855. struct ieee80211_geo {
  856. u8 name[4];
  857. u8 bg_channels;
  858. u8 a_channels;
  859. struct ieee80211_channel bg[IEEE80211_24GHZ_CHANNELS];
  860. struct ieee80211_channel a[IEEE80211_52GHZ_CHANNELS];
  861. };
  862. struct ieee80211_device {
  863. struct net_device *dev;
  864. struct ieee80211_security sec;
  865. /* Bookkeeping structures */
  866. struct net_device_stats stats;
  867. struct ieee80211_stats ieee_stats;
  868. struct ieee80211_geo geo;
  869. /* Probe / Beacon management */
  870. struct list_head network_free_list;
  871. struct list_head network_list;
  872. struct ieee80211_network *networks;
  873. int scans;
  874. int scan_age;
  875. int iw_mode; /* operating mode (IW_MODE_*) */
  876. struct iw_spy_data spy_data; /* iwspy support */
  877. spinlock_t lock;
  878. int tx_headroom; /* Set to size of any additional room needed at front
  879. * of allocated Tx SKBs */
  880. u32 config;
  881. /* WEP and other encryption related settings at the device level */
  882. int open_wep; /* Set to 1 to allow unencrypted frames */
  883. int reset_on_keychange; /* Set to 1 if the HW needs to be reset on
  884. * WEP key changes */
  885. /* If the host performs {en,de}cryption, then set to 1 */
  886. int host_encrypt;
  887. int host_encrypt_msdu;
  888. int host_decrypt;
  889. /* host performs multicast decryption */
  890. int host_mc_decrypt;
  891. /* host should strip IV and ICV from protected frames */
  892. /* meaningful only when hardware decryption is being used */
  893. int host_strip_iv_icv;
  894. int host_open_frag;
  895. int host_build_iv;
  896. int ieee802_1x; /* is IEEE 802.1X used */
  897. /* WPA data */
  898. int wpa_enabled;
  899. int drop_unencrypted;
  900. int privacy_invoked;
  901. size_t wpa_ie_len;
  902. u8 *wpa_ie;
  903. struct list_head crypt_deinit_list;
  904. struct ieee80211_crypt_data *crypt[WEP_KEYS];
  905. int tx_keyidx; /* default TX key index (crypt[tx_keyidx]) */
  906. struct timer_list crypt_deinit_timer;
  907. int crypt_quiesced;
  908. int bcrx_sta_key; /* use individual keys to override default keys even
  909. * with RX of broad/multicast frames */
  910. /* Fragmentation structures */
  911. struct ieee80211_frag_entry frag_cache[IEEE80211_FRAG_CACHE_LEN];
  912. unsigned int frag_next_idx;
  913. u16 fts; /* Fragmentation Threshold */
  914. u16 rts; /* RTS threshold */
  915. /* Association info */
  916. u8 bssid[ETH_ALEN];
  917. enum ieee80211_state state;
  918. int mode; /* A, B, G */
  919. int modulation; /* CCK, OFDM */
  920. int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
  921. int abg_true; /* ABG flag */
  922. int perfect_rssi;
  923. int worst_rssi;
  924. u16 prev_seq_ctl; /* used to drop duplicate frames */
  925. /* Callback functions */
  926. void (*set_security) (struct net_device * dev,
  927. struct ieee80211_security * sec);
  928. int (*hard_start_xmit) (struct ieee80211_txb * txb,
  929. struct net_device * dev, int pri);
  930. int (*reset_port) (struct net_device * dev);
  931. int (*is_queue_full) (struct net_device * dev, int pri);
  932. int (*handle_management) (struct net_device * dev,
  933. struct ieee80211_network * network, u16 type);
  934. int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
  935. /* Typical STA methods */
  936. int (*handle_auth) (struct net_device * dev,
  937. struct ieee80211_auth * auth);
  938. int (*handle_deauth) (struct net_device * dev,
  939. struct ieee80211_deauth * auth);
  940. int (*handle_action) (struct net_device * dev,
  941. struct ieee80211_action * action,
  942. struct ieee80211_rx_stats * stats);
  943. int (*handle_disassoc) (struct net_device * dev,
  944. struct ieee80211_disassoc * assoc);
  945. int (*handle_beacon) (struct net_device * dev,
  946. struct ieee80211_beacon * beacon,
  947. struct ieee80211_network * network);
  948. int (*handle_probe_response) (struct net_device * dev,
  949. struct ieee80211_probe_response * resp,
  950. struct ieee80211_network * network);
  951. int (*handle_probe_request) (struct net_device * dev,
  952. struct ieee80211_probe_request * req,
  953. struct ieee80211_rx_stats * stats);
  954. int (*handle_assoc_response) (struct net_device * dev,
  955. struct ieee80211_assoc_response * resp,
  956. struct ieee80211_network * network);
  957. /* Typical AP methods */
  958. int (*handle_assoc_request) (struct net_device * dev);
  959. int (*handle_reassoc_request) (struct net_device * dev,
  960. struct ieee80211_reassoc_request * req);
  961. /* This must be the last item so that it points to the data
  962. * allocated beyond this structure by alloc_ieee80211 */
  963. u8 priv[0];
  964. };
  965. #define IEEE_A (1<<0)
  966. #define IEEE_B (1<<1)
  967. #define IEEE_G (1<<2)
  968. #define IEEE_MODE_MASK (IEEE_A|IEEE_B|IEEE_G)
  969. static inline void *ieee80211_priv(struct net_device *dev)
  970. {
  971. return ((struct ieee80211_device *)netdev_priv(dev))->priv;
  972. }
  973. static inline int ieee80211_is_valid_mode(struct ieee80211_device *ieee,
  974. int mode)
  975. {
  976. /*
  977. * It is possible for both access points and our device to support
  978. * combinations of modes, so as long as there is one valid combination
  979. * of ap/device supported modes, then return success
  980. *
  981. */
  982. if ((mode & IEEE_A) &&
  983. (ieee->modulation & IEEE80211_OFDM_MODULATION) &&
  984. (ieee->freq_band & IEEE80211_52GHZ_BAND))
  985. return 1;
  986. if ((mode & IEEE_G) &&
  987. (ieee->modulation & IEEE80211_OFDM_MODULATION) &&
  988. (ieee->freq_band & IEEE80211_24GHZ_BAND))
  989. return 1;
  990. if ((mode & IEEE_B) &&
  991. (ieee->modulation & IEEE80211_CCK_MODULATION) &&
  992. (ieee->freq_band & IEEE80211_24GHZ_BAND))
  993. return 1;
  994. return 0;
  995. }
  996. static inline int ieee80211_get_hdrlen(u16 fc)
  997. {
  998. int hdrlen = IEEE80211_3ADDR_LEN;
  999. u16 stype = WLAN_FC_GET_STYPE(fc);
  1000. switch (WLAN_FC_GET_TYPE(fc)) {
  1001. case IEEE80211_FTYPE_DATA:
  1002. if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
  1003. hdrlen = IEEE80211_4ADDR_LEN;
  1004. if (stype & IEEE80211_STYPE_QOS_DATA)
  1005. hdrlen += 2;
  1006. break;
  1007. case IEEE80211_FTYPE_CTL:
  1008. switch (WLAN_FC_GET_STYPE(fc)) {
  1009. case IEEE80211_STYPE_CTS:
  1010. case IEEE80211_STYPE_ACK:
  1011. hdrlen = IEEE80211_1ADDR_LEN;
  1012. break;
  1013. default:
  1014. hdrlen = IEEE80211_2ADDR_LEN;
  1015. break;
  1016. }
  1017. break;
  1018. }
  1019. return hdrlen;
  1020. }
  1021. static inline u8 *ieee80211_get_payload(struct ieee80211_hdr *hdr)
  1022. {
  1023. switch (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl))) {
  1024. case IEEE80211_1ADDR_LEN:
  1025. return ((struct ieee80211_hdr_1addr *)hdr)->payload;
  1026. case IEEE80211_2ADDR_LEN:
  1027. return ((struct ieee80211_hdr_2addr *)hdr)->payload;
  1028. case IEEE80211_3ADDR_LEN:
  1029. return ((struct ieee80211_hdr_3addr *)hdr)->payload;
  1030. case IEEE80211_4ADDR_LEN:
  1031. return ((struct ieee80211_hdr_4addr *)hdr)->payload;
  1032. }
  1033. return NULL;
  1034. }
  1035. static inline int ieee80211_is_ofdm_rate(u8 rate)
  1036. {
  1037. switch (rate & ~IEEE80211_BASIC_RATE_MASK) {
  1038. case IEEE80211_OFDM_RATE_6MB:
  1039. case IEEE80211_OFDM_RATE_9MB:
  1040. case IEEE80211_OFDM_RATE_12MB:
  1041. case IEEE80211_OFDM_RATE_18MB:
  1042. case IEEE80211_OFDM_RATE_24MB:
  1043. case IEEE80211_OFDM_RATE_36MB:
  1044. case IEEE80211_OFDM_RATE_48MB:
  1045. case IEEE80211_OFDM_RATE_54MB:
  1046. return 1;
  1047. }
  1048. return 0;
  1049. }
  1050. static inline int ieee80211_is_cck_rate(u8 rate)
  1051. {
  1052. switch (rate & ~IEEE80211_BASIC_RATE_MASK) {
  1053. case IEEE80211_CCK_RATE_1MB:
  1054. case IEEE80211_CCK_RATE_2MB:
  1055. case IEEE80211_CCK_RATE_5MB:
  1056. case IEEE80211_CCK_RATE_11MB:
  1057. return 1;
  1058. }
  1059. return 0;
  1060. }
  1061. /* ieee80211.c */
  1062. extern void free_ieee80211(struct net_device *dev);
  1063. extern struct net_device *alloc_ieee80211(int sizeof_priv);
  1064. extern int ieee80211_set_encryption(struct ieee80211_device *ieee);
  1065. /* ieee80211_tx.c */
  1066. extern int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev);
  1067. extern void ieee80211_txb_free(struct ieee80211_txb *);
  1068. /* ieee80211_rx.c */
  1069. extern void ieee80211_rx_any(struct ieee80211_device *ieee,
  1070. struct sk_buff *skb, struct ieee80211_rx_stats *stats);
  1071. extern int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
  1072. struct ieee80211_rx_stats *rx_stats);
  1073. /* make sure to set stats->len */
  1074. extern void ieee80211_rx_mgt(struct ieee80211_device *ieee,
  1075. struct ieee80211_hdr_4addr *header,
  1076. struct ieee80211_rx_stats *stats);
  1077. extern void ieee80211_network_reset(struct ieee80211_network *network);
  1078. /* ieee80211_geo.c */
  1079. extern const struct ieee80211_geo *ieee80211_get_geo(struct ieee80211_device
  1080. *ieee);
  1081. extern int ieee80211_set_geo(struct ieee80211_device *ieee,
  1082. const struct ieee80211_geo *geo);
  1083. extern int ieee80211_is_valid_channel(struct ieee80211_device *ieee,
  1084. u8 channel);
  1085. extern int ieee80211_channel_to_index(struct ieee80211_device *ieee,
  1086. u8 channel);
  1087. extern u8 ieee80211_freq_to_channel(struct ieee80211_device *ieee, u32 freq);
  1088. extern u8 ieee80211_get_channel_flags(struct ieee80211_device *ieee,
  1089. u8 channel);
  1090. extern const struct ieee80211_channel *ieee80211_get_channel(struct
  1091. ieee80211_device
  1092. *ieee, u8 channel);
  1093. extern u32 ieee80211_channel_to_freq(struct ieee80211_device * ieee,
  1094. u8 channel);
  1095. /* ieee80211_wx.c */
  1096. extern int ieee80211_wx_get_scan(struct ieee80211_device *ieee,
  1097. struct iw_request_info *info,
  1098. union iwreq_data *wrqu, char *key);
  1099. extern int ieee80211_wx_set_encode(struct ieee80211_device *ieee,
  1100. struct iw_request_info *info,
  1101. union iwreq_data *wrqu, char *key);
  1102. extern int ieee80211_wx_get_encode(struct ieee80211_device *ieee,
  1103. struct iw_request_info *info,
  1104. union iwreq_data *wrqu, char *key);
  1105. extern int ieee80211_wx_set_encodeext(struct ieee80211_device *ieee,
  1106. struct iw_request_info *info,
  1107. union iwreq_data *wrqu, char *extra);
  1108. extern int ieee80211_wx_get_encodeext(struct ieee80211_device *ieee,
  1109. struct iw_request_info *info,
  1110. union iwreq_data *wrqu, char *extra);
  1111. static inline void ieee80211_increment_scans(struct ieee80211_device *ieee)
  1112. {
  1113. ieee->scans++;
  1114. }
  1115. static inline int ieee80211_get_scans(struct ieee80211_device *ieee)
  1116. {
  1117. return ieee->scans;
  1118. }
  1119. #endif /* IEEE80211_H */