driver.h 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536
  1. /*
  2. * WPA Supplicant - driver interface definition
  3. * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef DRIVER_H
  15. #define DRIVER_H
  16. #define WPA_SUPPLICANT_DRIVER_VERSION 3
  17. #include "defs.h"
  18. #define AUTH_ALG_OPEN_SYSTEM 0x01
  19. #define AUTH_ALG_SHARED_KEY 0x02
  20. #define AUTH_ALG_LEAP 0x04
  21. #define AUTH_ALG_FT 0x08
  22. #define IEEE80211_MODE_INFRA 0
  23. #define IEEE80211_MODE_IBSS 1
  24. #define IEEE80211_CAP_ESS 0x0001
  25. #define IEEE80211_CAP_IBSS 0x0002
  26. #define IEEE80211_CAP_PRIVACY 0x0010
  27. #define SSID_MAX_WPA_IE_LEN 40
  28. /**
  29. * struct wpa_scan_result - Scan results (old structure)
  30. * @bssid: BSSID
  31. * @ssid: SSID
  32. * @ssid_len: length of the ssid
  33. * @wpa_ie: WPA IE
  34. * @wpa_ie_len: length of the wpa_ie
  35. * @rsn_ie: RSN IE
  36. * @rsn_ie_len: length of the RSN IE
  37. * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
  38. * @caps: capability information field in host byte order
  39. * @qual: signal quality
  40. * @noise: noise level
  41. * @level: signal level
  42. * @maxrate: maximum supported rate
  43. * @mdie_present: Whether MDIE was included in Beacon/ProbeRsp frame
  44. * @mdie: Mobility domain identifier IE (IEEE 802.11r MDIE) (starting from
  45. * IE type field)
  46. * @tsf: Timestamp
  47. *
  48. * This structure is used as a generic format for scan results from the
  49. * driver. Each driver interface implementation is responsible for converting
  50. * the driver or OS specific scan results into this format.
  51. *
  52. * This structure is the old data structure used for scan results. It is
  53. * obsoleted by the new struct wpa_scan_res structure and the old version is
  54. * only included for backwards compatibility with existing driver wrapper
  55. * implementations. New implementations are encouraged to implement for struct
  56. * wpa_scan_res. The old structure will be removed at some point.
  57. */
  58. struct wpa_scan_result {
  59. u8 bssid[ETH_ALEN];
  60. u8 ssid[32];
  61. size_t ssid_len;
  62. u8 wpa_ie[SSID_MAX_WPA_IE_LEN];
  63. size_t wpa_ie_len;
  64. u8 rsn_ie[SSID_MAX_WPA_IE_LEN];
  65. size_t rsn_ie_len;
  66. int freq;
  67. u16 caps;
  68. int qual;
  69. int noise;
  70. int level;
  71. int maxrate;
  72. int mdie_present;
  73. u8 mdie[5];
  74. u64 tsf;
  75. };
  76. #define WPA_SCAN_QUAL_INVALID BIT(0)
  77. #define WPA_SCAN_NOISE_INVALID BIT(1)
  78. #define WPA_SCAN_LEVEL_INVALID BIT(2)
  79. #define WPA_SCAN_LEVEL_DBM BIT(3)
  80. /**
  81. * struct wpa_scan_res - Scan result for an BSS/IBSS
  82. * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
  83. * @bssid: BSSID
  84. * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
  85. * @beacon_int: beacon interval in TUs (host byte order)
  86. * @caps: capability information field in host byte order
  87. * @qual: signal quality
  88. * @noise: noise level
  89. * @level: signal level
  90. * @tsf: Timestamp
  91. * @ie_len: length of the following IE field in octets
  92. *
  93. * This structure is used as a generic format for scan results from the
  94. * driver. Each driver interface implementation is responsible for converting
  95. * the driver or OS specific scan results into this format.
  96. *
  97. * If the driver does not support reporting all IEs, the IE data structure is
  98. * constructed of the IEs that are available. This field will also need to
  99. * include SSID in IE format. All drivers are encouraged to be extended to
  100. * report all IEs to make it easier to support future additions.
  101. */
  102. struct wpa_scan_res {
  103. unsigned int flags;
  104. u8 bssid[ETH_ALEN];
  105. int freq;
  106. u16 beacon_int;
  107. u16 caps;
  108. int qual;
  109. int noise;
  110. int level;
  111. u64 tsf;
  112. size_t ie_len;
  113. /* followed by ie_len octets of IEs */
  114. };
  115. /**
  116. * struct wpa_scan_results - Scan results
  117. * @res: Array of pointers to allocated variable length scan result entries
  118. * @num: Number of entries in the scan result array
  119. */
  120. struct wpa_scan_results {
  121. struct wpa_scan_res **res;
  122. size_t num;
  123. };
  124. /**
  125. * struct wpa_interface_info - Network interface information
  126. * @next: Pointer to the next interface or NULL if this is the last one
  127. * @ifname: Interface name that can be used with init() or init2()
  128. * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
  129. * not available
  130. * @drv_bame: struct wpa_driver_ops::name (note: unlike other strings, this one
  131. * is not an allocated copy, i.e., get_interfaces() caller will not free
  132. * this)
  133. */
  134. struct wpa_interface_info {
  135. struct wpa_interface_info *next;
  136. char *ifname;
  137. char *desc;
  138. const char *drv_name;
  139. };
  140. #define WPAS_MAX_SCAN_SSIDS 4
  141. /**
  142. * struct wpa_driver_scan_params - Scan parameters
  143. * Data for struct wpa_driver_ops::scan2().
  144. */
  145. struct wpa_driver_scan_params {
  146. /**
  147. * ssids - SSIDs to scan for
  148. */
  149. struct wpa_driver_scan_ssid {
  150. /**
  151. * ssid - specific SSID to scan for (ProbeReq)
  152. * %NULL or zero-length SSID is used to indicate active scan
  153. * with wildcard SSID.
  154. */
  155. const u8 *ssid;
  156. /**
  157. * ssid_len: Length of the SSID in octets
  158. */
  159. size_t ssid_len;
  160. } ssids[WPAS_MAX_SCAN_SSIDS];
  161. /**
  162. * num_ssids - Number of entries in ssids array
  163. * Zero indicates a request for a passive scan.
  164. */
  165. size_t num_ssids;
  166. /**
  167. * extra_ies - Extra IE(s) to add into Probe Request or %NULL
  168. */
  169. const u8 *extra_ies;
  170. /**
  171. * extra_ies_len - Length of extra_ies in octets
  172. */
  173. size_t extra_ies_len;
  174. /**
  175. * freqs - Array of frequencies to scan or %NULL for all frequencies
  176. *
  177. * The frequency is set in MHz. The array is zero-terminated.
  178. */
  179. int *freqs;
  180. };
  181. /**
  182. * struct wpa_driver_auth_params - Authentication parameters
  183. * Data for struct wpa_driver_ops::authenticate().
  184. */
  185. struct wpa_driver_auth_params {
  186. int freq;
  187. const u8 *bssid;
  188. const u8 *ssid;
  189. size_t ssid_len;
  190. int auth_alg;
  191. const u8 *ie;
  192. size_t ie_len;
  193. };
  194. /**
  195. * struct wpa_driver_associate_params - Association parameters
  196. * Data for struct wpa_driver_ops::associate().
  197. */
  198. struct wpa_driver_associate_params {
  199. /**
  200. * bssid - BSSID of the selected AP
  201. * This can be %NULL, if ap_scan=2 mode is used and the driver is
  202. * responsible for selecting with which BSS to associate. */
  203. const u8 *bssid;
  204. /**
  205. * ssid - The selected SSID
  206. */
  207. const u8 *ssid;
  208. size_t ssid_len;
  209. /**
  210. * freq - Frequency of the channel the selected AP is using
  211. * Frequency that the selected AP is using (in MHz as
  212. * reported in the scan results)
  213. */
  214. int freq;
  215. /**
  216. * wpa_ie - WPA information element for (Re)Association Request
  217. * WPA information element to be included in (Re)Association
  218. * Request (including information element id and length). Use
  219. * of this WPA IE is optional. If the driver generates the WPA
  220. * IE, it can use pairwise_suite, group_suite, and
  221. * key_mgmt_suite to select proper algorithms. In this case,
  222. * the driver has to notify wpa_supplicant about the used WPA
  223. * IE by generating an event that the interface code will
  224. * convert into EVENT_ASSOCINFO data (see below).
  225. *
  226. * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
  227. * instead. The driver can determine which version is used by
  228. * looking at the first byte of the IE (0xdd for WPA, 0x30 for
  229. * WPA2/RSN).
  230. *
  231. * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
  232. */
  233. const u8 *wpa_ie;
  234. /**
  235. * wpa_ie_len - length of the wpa_ie
  236. */
  237. size_t wpa_ie_len;
  238. /* The selected pairwise/group cipher and key management
  239. * suites. These are usually ignored if @wpa_ie is used. */
  240. wpa_cipher pairwise_suite;
  241. wpa_cipher group_suite;
  242. wpa_key_mgmt key_mgmt_suite;
  243. /**
  244. * auth_alg - Allowed authentication algorithms
  245. * Bit field of AUTH_ALG_*
  246. */
  247. int auth_alg;
  248. /**
  249. * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
  250. */
  251. int mode;
  252. /**
  253. * wep_key - WEP keys for static WEP configuration
  254. */
  255. const u8 *wep_key[4];
  256. /**
  257. * wep_key_len - WEP key length for static WEP configuration
  258. */
  259. size_t wep_key_len[4];
  260. /**
  261. * wep_tx_keyidx - WEP TX key index for static WEP configuration
  262. */
  263. int wep_tx_keyidx;
  264. /**
  265. * mgmt_frame_protection - IEEE 802.11w management frame protection
  266. */
  267. enum {
  268. NO_MGMT_FRAME_PROTECTION,
  269. MGMT_FRAME_PROTECTION_OPTIONAL,
  270. MGMT_FRAME_PROTECTION_REQUIRED
  271. } mgmt_frame_protection;
  272. /**
  273. * ft_ies - IEEE 802.11r / FT information elements
  274. * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
  275. * for fast transition, this parameter is set to include the IEs that
  276. * are to be sent in the next FT Authentication Request message.
  277. * update_ft_ies() handler is called to update the IEs for further
  278. * FT messages in the sequence.
  279. *
  280. * The driver should use these IEs only if the target AP is advertising
  281. * the same mobility domain as the one included in the MDIE here.
  282. *
  283. * In ap_scan=2 mode, the driver can use these IEs when moving to a new
  284. * AP after the initial association. These IEs can only be used if the
  285. * target AP is advertising support for FT and is using the same MDIE
  286. * and SSID as the current AP.
  287. *
  288. * The driver is responsible for reporting the FT IEs received from the
  289. * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
  290. * type. update_ft_ies() handler will then be called with the FT IEs to
  291. * include in the next frame in the authentication sequence.
  292. */
  293. const u8 *ft_ies;
  294. /**
  295. * ft_ies_len - Length of ft_ies in bytes
  296. */
  297. size_t ft_ies_len;
  298. /**
  299. * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
  300. *
  301. * This value is provided to allow the driver interface easier access
  302. * to the current mobility domain. This value is set to %NULL if no
  303. * mobility domain is currently active.
  304. */
  305. const u8 *ft_md;
  306. /**
  307. * passphrase - RSN passphrase for PSK
  308. *
  309. * This value is made available only for WPA/WPA2-Personal (PSK) and
  310. * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
  311. * the 8..63 character ASCII passphrase, if available. Please note that
  312. * this can be %NULL if passphrase was not used to generate the PSK. In
  313. * that case, the psk field must be used to fetch the PSK.
  314. */
  315. const char *passphrase;
  316. /**
  317. * psk - RSN PSK (alternative for passphrase for PSK)
  318. *
  319. * This value is made available only for WPA/WPA2-Personal (PSK) and
  320. * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
  321. * the 32-octet (256-bit) PSK, if available. The driver wrapper should
  322. * be prepared to handle %NULL value as an error.
  323. */
  324. const u8 *psk;
  325. /**
  326. * drop_unencrypted - Enable/disable unencrypted frame filtering
  327. *
  328. * Configure the driver to drop all non-EAPOL frames (both receive and
  329. * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
  330. * still be allowed for key negotiation.
  331. */
  332. int drop_unencrypted;
  333. };
  334. /**
  335. * struct wpa_driver_capa - Driver capability information
  336. */
  337. struct wpa_driver_capa {
  338. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
  339. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
  340. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
  341. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
  342. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
  343. #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
  344. #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
  345. unsigned int key_mgmt;
  346. #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
  347. #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
  348. #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
  349. #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
  350. unsigned int enc;
  351. #define WPA_DRIVER_AUTH_OPEN 0x00000001
  352. #define WPA_DRIVER_AUTH_SHARED 0x00000002
  353. #define WPA_DRIVER_AUTH_LEAP 0x00000004
  354. unsigned int auth;
  355. /* Driver generated WPA/RSN IE */
  356. #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
  357. #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
  358. #define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
  359. /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
  360. * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
  361. #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
  362. #define WPA_DRIVER_FLAGS_WIRED 0x00000010
  363. /* Driver provides separate commands for authentication and association (SME in
  364. * wpa_supplicant). */
  365. #define WPA_DRIVER_FLAGS_SME 0x00000020
  366. /* Driver supports AP mode */
  367. #define WPA_DRIVER_FLAGS_AP 0x00000040
  368. unsigned int flags;
  369. int max_scan_ssids;
  370. };
  371. #define WPA_CHAN_W_SCAN 0x00000001
  372. #define WPA_CHAN_W_ACTIVE_SCAN 0x00000002
  373. #define WPA_CHAN_W_IBSS 0x00000004
  374. struct wpa_channel_data {
  375. short chan; /* channel number (IEEE 802.11) */
  376. short freq; /* frequency in MHz */
  377. int flag; /* flag for user space use (WPA_CHAN_*) */
  378. };
  379. #define WPA_RATE_ERP 0x00000001
  380. #define WPA_RATE_BASIC 0x00000002
  381. #define WPA_RATE_PREAMBLE2 0x00000004
  382. #define WPA_RATE_SUPPORTED 0x00000010
  383. #define WPA_RATE_OFDM 0x00000020
  384. #define WPA_RATE_CCK 0x00000040
  385. #define WPA_RATE_MANDATORY 0x00000100
  386. struct wpa_rate_data {
  387. int rate; /* rate in 100 kbps */
  388. int flags; /* WPA_RATE_ flags */
  389. };
  390. typedef enum {
  391. WPA_MODE_IEEE80211B,
  392. WPA_MODE_IEEE80211G,
  393. WPA_MODE_IEEE80211A,
  394. NUM_WPA_MODES
  395. } wpa_hw_mode;
  396. struct wpa_hw_modes {
  397. wpa_hw_mode mode;
  398. int num_channels;
  399. struct wpa_channel_data *channels;
  400. int num_rates;
  401. struct wpa_rate_data *rates;
  402. };
  403. struct ieee80211_rx_status {
  404. int channel;
  405. int ssi;
  406. };
  407. /**
  408. * struct wpa_driver_ops - Driver interface API definition
  409. *
  410. * This structure defines the API that each driver interface needs to implement
  411. * for core wpa_supplicant code. All driver specific functionality is captured
  412. * in this wrapper.
  413. */
  414. struct wpa_driver_ops {
  415. /** Name of the driver interface */
  416. const char *name;
  417. /** One line description of the driver interface */
  418. const char *desc;
  419. /**
  420. * get_bssid - Get the current BSSID
  421. * @priv: private driver interface data
  422. * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
  423. *
  424. * Returns: 0 on success, -1 on failure
  425. *
  426. * Query kernel driver for the current BSSID and copy it to bssid.
  427. * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
  428. * associated.
  429. */
  430. int (*get_bssid)(void *priv, u8 *bssid);
  431. /**
  432. * get_ssid - Get the current SSID
  433. * @priv: private driver interface data
  434. * @ssid: buffer for SSID (at least 32 bytes)
  435. *
  436. * Returns: Length of the SSID on success, -1 on failure
  437. *
  438. * Query kernel driver for the current SSID and copy it to ssid.
  439. * Returning zero is recommended if the STA is not associated.
  440. *
  441. * Note: SSID is an array of octets, i.e., it is not nul terminated and
  442. * can, at least in theory, contain control characters (including nul)
  443. * and as such, should be processed as binary data, not a printable
  444. * string.
  445. */
  446. int (*get_ssid)(void *priv, u8 *ssid);
  447. /**
  448. * set_wpa - Enable/disable WPA support (OBSOLETE)
  449. * @priv: private driver interface data
  450. * @enabled: 1 = enable, 0 = disable
  451. *
  452. * Returns: 0 on success, -1 on failure
  453. *
  454. * Note: This function is included for backwards compatibility. This is
  455. * called only just after init and just before deinit, so these
  456. * functions can be used to implement same functionality and the driver
  457. * interface need not define this function.
  458. *
  459. * Configure the kernel driver to enable/disable WPA support. This may
  460. * be empty function, if WPA support is always enabled. Common
  461. * configuration items are WPA IE (clearing it when WPA support is
  462. * disabled), Privacy flag configuration for capability field (note:
  463. * this the value need to set in associate handler to allow plaintext
  464. * mode to be used) when trying to associate with, roaming mode (can
  465. * allow wpa_supplicant to control roaming if ap_scan=1 is used;
  466. * however, drivers can also implement roaming if desired, especially
  467. * ap_scan=2 mode is used for this).
  468. */
  469. int (*set_wpa)(void *priv, int enabled);
  470. /**
  471. * set_key - Configure encryption key
  472. * @priv: private driver interface data
  473. * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
  474. * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
  475. * %WPA_ALG_NONE clears the key.
  476. * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
  477. * broadcast/default keys
  478. * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
  479. * IGTK
  480. * @set_tx: configure this key as the default Tx key (only used when
  481. * driver does not support separate unicast/individual key
  482. * @seq: sequence number/packet number, seq_len octets, the next
  483. * packet number to be used for in replay protection; configured
  484. * for Rx keys (in most cases, this is only used with broadcast
  485. * keys and set to zero for unicast keys)
  486. * @seq_len: length of the seq, depends on the algorithm:
  487. * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
  488. * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
  489. * 8-byte Rx Mic Key
  490. * @key_len: length of the key buffer in octets (WEP: 5 or 13,
  491. * TKIP: 32, CCMP: 16, IGTK: 16)
  492. *
  493. * Returns: 0 on success, -1 on failure
  494. *
  495. * Configure the given key for the kernel driver. If the driver
  496. * supports separate individual keys (4 default keys + 1 individual),
  497. * addr can be used to determine whether the key is default or
  498. * individual. If only 4 keys are supported, the default key with key
  499. * index 0 is used as the individual key. STA must be configured to use
  500. * it as the default Tx key (set_tx is set) and accept Rx for all the
  501. * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
  502. * broadcast keys, so key index 0 is available for this kind of
  503. * configuration.
  504. *
  505. * Please note that TKIP keys include separate TX and RX MIC keys and
  506. * some drivers may expect them in different order than wpa_supplicant
  507. * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
  508. * will tricker Michael MIC errors. This can be fixed by changing the
  509. * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
  510. * in driver_*.c set_key() implementation, see driver_ndis.c for an
  511. * example on how this can be done.
  512. */
  513. int (*set_key)(void *priv, wpa_alg alg, const u8 *addr,
  514. int key_idx, int set_tx, const u8 *seq, size_t seq_len,
  515. const u8 *key, size_t key_len);
  516. /**
  517. * init - Initialize driver interface
  518. * @ctx: context to be used when calling wpa_supplicant functions,
  519. * e.g., wpa_supplicant_event()
  520. * @ifname: interface name, e.g., wlan0
  521. *
  522. * Returns: Pointer to private data, %NULL on failure
  523. *
  524. * Initialize driver interface, including event processing for kernel
  525. * driver events (e.g., associated, scan results, Michael MIC failure).
  526. * This function can allocate a private configuration data area for
  527. * @ctx, file descriptor, interface name, etc. information that may be
  528. * needed in future driver operations. If this is not used, non-NULL
  529. * value will need to be returned because %NULL is used to indicate
  530. * failure. The returned value will be used as 'void *priv' data for
  531. * all other driver_ops functions.
  532. *
  533. * The main event loop (eloop.c) of wpa_supplicant can be used to
  534. * register callback for read sockets (eloop_register_read_sock()).
  535. *
  536. * See below for more information about events and
  537. * wpa_supplicant_event() function.
  538. */
  539. void * (*init)(void *ctx, const char *ifname);
  540. /**
  541. * deinit - Deinitialize driver interface
  542. * @priv: private driver interface data from init()
  543. *
  544. * Shut down driver interface and processing of driver events. Free
  545. * private data buffer if one was allocated in init() handler.
  546. */
  547. void (*deinit)(void *priv);
  548. /**
  549. * set_param - Set driver configuration parameters
  550. * @priv: private driver interface data from init()
  551. * @param: driver specific configuration parameters
  552. *
  553. * Returns: 0 on success, -1 on failure
  554. *
  555. * Optional handler for notifying driver interface about configuration
  556. * parameters (driver_param).
  557. */
  558. int (*set_param)(void *priv, const char *param);
  559. /**
  560. * set_countermeasures - Enable/disable TKIP countermeasures
  561. * @priv: private driver interface data
  562. * @enabled: 1 = countermeasures enabled, 0 = disabled
  563. *
  564. * Returns: 0 on success, -1 on failure
  565. *
  566. * Configure TKIP countermeasures. When these are enabled, the driver
  567. * should drop all received and queued frames that are using TKIP.
  568. */
  569. int (*set_countermeasures)(void *priv, int enabled);
  570. /**
  571. * set_drop_unencrypted - Enable/disable unencrypted frame filtering
  572. * @priv: private driver interface data
  573. * @enabled: 1 = unencrypted Tx/Rx frames will be dropped, 0 = disabled
  574. *
  575. * Returns: 0 on success, -1 on failure
  576. *
  577. * Configure the driver to drop all non-EAPOL frames (both receive and
  578. * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
  579. * still be allowed for key negotiation.
  580. *
  581. * This function is deprecated. New driver wrapper implementations
  582. * should use associate() parameter drop_unencrypted instead.
  583. */
  584. int (*set_drop_unencrypted)(void *priv, int enabled);
  585. /**
  586. * scan - Request the driver to initiate scan (old version)
  587. * @priv: private driver interface data
  588. * @ssid: specific SSID to scan for (ProbeReq) or %NULL to scan for
  589. * all SSIDs (either active scan with wildcard SSID or passive
  590. * scan)
  591. * @ssid_len: length of the SSID
  592. *
  593. * Returns: 0 on success, -1 on failure
  594. *
  595. * Once the scan results are ready, the driver should report scan
  596. * results event for wpa_supplicant which will eventually request the
  597. * results with wpa_driver_get_scan_results().
  598. *
  599. * This function is deprecated. New driver wrapper implementations
  600. * should implement support for scan2().
  601. */
  602. int (*scan)(void *priv, const u8 *ssid, size_t ssid_len);
  603. /**
  604. * get_scan_results - Fetch the latest scan results (old version)
  605. * @priv: private driver interface data
  606. * @results: pointer to buffer for scan results
  607. * @max_size: maximum number of entries (buffer size)
  608. *
  609. * Returns: Number of scan result entries used on success, -1 on
  610. * failure
  611. *
  612. * If scan results include more than max_size BSSes, max_size will be
  613. * returned and the remaining entries will not be included in the
  614. * buffer.
  615. *
  616. * This function is deprecated. New driver wrapper implementations
  617. * should implement support for get_scan_results2().
  618. */
  619. int (*get_scan_results)(void *priv,
  620. struct wpa_scan_result *results,
  621. size_t max_size);
  622. /**
  623. * deauthenticate - Request driver to deauthenticate
  624. * @priv: private driver interface data
  625. * @addr: peer address (BSSID of the AP)
  626. * @reason_code: 16-bit reason code to be sent in the deauthentication
  627. * frame
  628. *
  629. * Returns: 0 on success, -1 on failure
  630. */
  631. int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
  632. /**
  633. * disassociate - Request driver to disassociate
  634. * @priv: private driver interface data
  635. * @addr: peer address (BSSID of the AP)
  636. * @reason_code: 16-bit reason code to be sent in the disassociation
  637. * frame
  638. *
  639. * Returns: 0 on success, -1 on failure
  640. */
  641. int (*disassociate)(void *priv, const u8 *addr, int reason_code);
  642. /**
  643. * associate - Request driver to associate
  644. * @priv: private driver interface data
  645. * @params: association parameters
  646. *
  647. * Returns: 0 on success, -1 on failure
  648. */
  649. int (*associate)(void *priv,
  650. struct wpa_driver_associate_params *params);
  651. /**
  652. * set_auth_alg - Set IEEE 802.11 authentication algorithm
  653. * @priv: private driver interface data
  654. * @auth_alg: bit field of AUTH_ALG_*
  655. *
  656. * If the driver supports more than one authentication algorithm at the
  657. * same time, it should configure all supported algorithms. If not, one
  658. * algorithm needs to be selected arbitrarily. Open System
  659. * authentication should be ok for most cases and it is recommended to
  660. * be used if other options are not supported. Static WEP configuration
  661. * may also use Shared Key authentication and LEAP requires its own
  662. * algorithm number. For LEAP, user can make sure that only one
  663. * algorithm is used at a time by configuring LEAP as the only
  664. * supported EAP method. This information is also available in
  665. * associate() params, so set_auth_alg may not be needed in case of
  666. * most drivers.
  667. *
  668. * This function is deprecated. New driver wrapper implementations
  669. * should use associate() parameter auth_alg instead.
  670. *
  671. * Returns: 0 on success, -1 on failure
  672. */
  673. int (*set_auth_alg)(void *priv, int auth_alg);
  674. /**
  675. * add_pmkid - Add PMKSA cache entry to the driver
  676. * @priv: private driver interface data
  677. * @bssid: BSSID for the PMKSA cache entry
  678. * @pmkid: PMKID for the PMKSA cache entry
  679. *
  680. * Returns: 0 on success, -1 on failure
  681. *
  682. * This function is called when a new PMK is received, as a result of
  683. * either normal authentication or RSN pre-authentication.
  684. *
  685. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  686. * associate(), add_pmkid() can be used to add new PMKSA cache entries
  687. * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
  688. * driver_ops function does not need to be implemented. Likewise, if
  689. * the driver does not support WPA, this function is not needed.
  690. */
  691. int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
  692. /**
  693. * remove_pmkid - Remove PMKSA cache entry to the driver
  694. * @priv: private driver interface data
  695. * @bssid: BSSID for the PMKSA cache entry
  696. * @pmkid: PMKID for the PMKSA cache entry
  697. *
  698. * Returns: 0 on success, -1 on failure
  699. *
  700. * This function is called when the supplicant drops a PMKSA cache
  701. * entry for any reason.
  702. *
  703. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  704. * associate(), remove_pmkid() can be used to synchronize PMKSA caches
  705. * between the driver and wpa_supplicant. If the driver uses wpa_ie
  706. * from wpa_supplicant, this driver_ops function does not need to be
  707. * implemented. Likewise, if the driver does not support WPA, this
  708. * function is not needed.
  709. */
  710. int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
  711. /**
  712. * flush_pmkid - Flush PMKSA cache
  713. * @priv: private driver interface data
  714. *
  715. * Returns: 0 on success, -1 on failure
  716. *
  717. * This function is called when the supplicant drops all PMKSA cache
  718. * entries for any reason.
  719. *
  720. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  721. * associate(), remove_pmkid() can be used to synchronize PMKSA caches
  722. * between the driver and wpa_supplicant. If the driver uses wpa_ie
  723. * from wpa_supplicant, this driver_ops function does not need to be
  724. * implemented. Likewise, if the driver does not support WPA, this
  725. * function is not needed.
  726. */
  727. int (*flush_pmkid)(void *priv);
  728. /**
  729. * flush_pmkid - Flush PMKSA cache
  730. * @priv: private driver interface data
  731. *
  732. * Returns: 0 on success, -1 on failure
  733. *
  734. * Get driver/firmware/hardware capabilities.
  735. */
  736. int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
  737. /**
  738. * poll - Poll driver for association information
  739. * @priv: private driver interface data
  740. *
  741. * This is an option callback that can be used when the driver does not
  742. * provide event mechanism for association events. This is called when
  743. * receiving WPA EAPOL-Key messages that require association
  744. * information. The driver interface is supposed to generate associnfo
  745. * event before returning from this callback function. In addition, the
  746. * driver interface should generate an association event after having
  747. * sent out associnfo.
  748. */
  749. void (*poll)(void *priv);
  750. /**
  751. * get_ifname - Get interface name
  752. * @priv: private driver interface data
  753. *
  754. * Returns: Pointer to the interface name. This can differ from the
  755. * interface name used in init() call. Init() is called first.
  756. *
  757. * This optional function can be used to allow the driver interface to
  758. * replace the interface name with something else, e.g., based on an
  759. * interface mapping from a more descriptive name.
  760. */
  761. const char * (*get_ifname)(void *priv);
  762. /**
  763. * get_mac_addr - Get own MAC address
  764. * @priv: private driver interface data
  765. *
  766. * Returns: Pointer to own MAC address or %NULL on failure
  767. *
  768. * This optional function can be used to get the own MAC address of the
  769. * device from the driver interface code. This is only needed if the
  770. * l2_packet implementation for the OS does not provide easy access to
  771. * a MAC address. */
  772. const u8 * (*get_mac_addr)(void *priv);
  773. /**
  774. * send_eapol - Optional function for sending EAPOL packets
  775. * @priv: private driver interface data
  776. * @dest: Destination MAC address
  777. * @proto: Ethertype
  778. * @data: EAPOL packet starting with IEEE 802.1X header
  779. * @data_len: Size of the EAPOL packet
  780. *
  781. * Returns: 0 on success, -1 on failure
  782. *
  783. * This optional function can be used to override l2_packet operations
  784. * with driver specific functionality. If this function pointer is set,
  785. * l2_packet module is not used at all and the driver interface code is
  786. * responsible for receiving and sending all EAPOL packets. The
  787. * received EAPOL packets are sent to core code by calling
  788. * wpa_supplicant_rx_eapol(). The driver interface is required to
  789. * implement get_mac_addr() handler if send_eapol() is used.
  790. */
  791. int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
  792. const u8 *data, size_t data_len);
  793. /**
  794. * set_operstate - Sets device operating state to DORMANT or UP
  795. * @priv: private driver interface data
  796. * @state: 0 = dormant, 1 = up
  797. * Returns: 0 on success, -1 on failure
  798. *
  799. * This is an optional function that can be used on operating systems
  800. * that support a concept of controlling network device state from user
  801. * space applications. This function, if set, gets called with
  802. * state = 1 when authentication has been completed and with state = 0
  803. * when connection is lost.
  804. */
  805. int (*set_operstate)(void *priv, int state);
  806. /**
  807. * mlme_setprotection - MLME-SETPROTECTION.request primitive
  808. * @priv: Private driver interface data
  809. * @addr: Address of the station for which to set protection (may be
  810. * %NULL for group keys)
  811. * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
  812. * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
  813. * Returns: 0 on success, -1 on failure
  814. *
  815. * This is an optional function that can be used to set the driver to
  816. * require protection for Tx and/or Rx frames. This uses the layer
  817. * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
  818. * (MLME-SETPROTECTION.request). Many drivers do not use explicit
  819. * set protection operation; instead, they set protection implicitly
  820. * based on configured keys.
  821. */
  822. int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
  823. int key_type);
  824. /**
  825. * get_hw_feature_data - Get hardware support data (channels and rates)
  826. * @priv: Private driver interface data
  827. * @num_modes: Variable for returning the number of returned modes
  828. * flags: Variable for returning hardware feature flags
  829. * Returns: Pointer to allocated hardware data on success or %NULL on
  830. * failure. Caller is responsible for freeing this.
  831. *
  832. * This function is only needed for drivers that export MLME
  833. * (management frame processing) to wpa_supplicant.
  834. */
  835. struct wpa_hw_modes * (*get_hw_feature_data)(void *priv,
  836. u16 *num_modes,
  837. u16 *flags);
  838. /**
  839. * set_channel - Set channel
  840. * @priv: Private driver interface data
  841. * @phymode: WPA_MODE_IEEE80211B, ..
  842. * @chan: IEEE 802.11 channel number
  843. * @freq: Frequency of the channel in MHz
  844. * Returns: 0 on success, -1 on failure
  845. *
  846. * This function is only needed for drivers that export MLME
  847. * (management frame processing) to wpa_supplicant.
  848. */
  849. int (*set_channel)(void *priv, wpa_hw_mode phymode, int chan,
  850. int freq);
  851. /**
  852. * set_ssid - Set SSID
  853. * @priv: Private driver interface data
  854. * @ssid: SSID
  855. * @ssid_len: SSID length
  856. * Returns: 0 on success, -1 on failure
  857. *
  858. * This function is only needed for drivers that export MLME
  859. * (management frame processing) to wpa_supplicant.
  860. */
  861. int (*set_ssid)(void *priv, const u8 *ssid, size_t ssid_len);
  862. /**
  863. * set_bssid - Set BSSID
  864. * @priv: Private driver interface data
  865. * @bssid: BSSID
  866. * Returns: 0 on success, -1 on failure
  867. *
  868. * This function is only needed for drivers that export MLME
  869. * (management frame processing) to wpa_supplicant.
  870. */
  871. int (*set_bssid)(void *priv, const u8 *bssid);
  872. /**
  873. * send_mlme - Send management frame from MLME
  874. * @priv: Private driver interface data
  875. * @data: IEEE 802.11 management frame with IEEE 802.11 header
  876. * @data_len: Size of the management frame
  877. * Returns: 0 on success, -1 on failure
  878. *
  879. * This function is only needed for drivers that export MLME
  880. * (management frame processing) to wpa_supplicant.
  881. */
  882. int (*send_mlme)(void *priv, const u8 *data, size_t data_len);
  883. /**
  884. * mlme_add_sta - Add a STA entry into the driver/netstack
  885. * @priv: Private driver interface data
  886. * @addr: MAC address of the STA (e.g., BSSID of the AP)
  887. * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
  888. * format (one octet per rate, 1 = 0.5 Mbps)
  889. * @supp_rates_len: Number of entries in supp_rates
  890. * Returns: 0 on success, -1 on failure
  891. *
  892. * This function is only needed for drivers that export MLME
  893. * (management frame processing) to wpa_supplicant. When the MLME code
  894. * completes association with an AP, this function is called to
  895. * configure the driver/netstack with a STA entry for data frame
  896. * processing (TX rate control, encryption/decryption).
  897. */
  898. int (*mlme_add_sta)(void *priv, const u8 *addr, const u8 *supp_rates,
  899. size_t supp_rates_len);
  900. /**
  901. * mlme_remove_sta - Remove a STA entry from the driver/netstack
  902. * @priv: Private driver interface data
  903. * @addr: MAC address of the STA (e.g., BSSID of the AP)
  904. * Returns: 0 on success, -1 on failure
  905. *
  906. * This function is only needed for drivers that export MLME
  907. * (management frame processing) to wpa_supplicant.
  908. */
  909. int (*mlme_remove_sta)(void *priv, const u8 *addr);
  910. /**
  911. * update_ft_ies - Update FT (IEEE 802.11r) IEs
  912. * @priv: Private driver interface data
  913. * @md: Mobility domain (2 octets) (also included inside ies)
  914. * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
  915. * @ies_len: Length of FT IEs in bytes
  916. * Returns: 0 on success, -1 on failure
  917. *
  918. * The supplicant uses this callback to let the driver know that keying
  919. * material for FT is available and that the driver can use the
  920. * provided IEs in the next message in FT authentication sequence.
  921. *
  922. * This function is only needed for driver that support IEEE 802.11r
  923. * (Fast BSS Transition).
  924. */
  925. int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
  926. size_t ies_len);
  927. /**
  928. * send_ft_action - Send FT Action frame (IEEE 802.11r)
  929. * @priv: Private driver interface data
  930. * @action: Action field value
  931. * @target_ap: Target AP address
  932. * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
  933. * @ies_len: Length of FT IEs in bytes
  934. * Returns: 0 on success, -1 on failure
  935. *
  936. * The supplicant uses this callback to request the driver to transmit
  937. * an FT Action frame (action category 6) for over-the-DS fast BSS
  938. * transition.
  939. */
  940. int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
  941. const u8 *ies, size_t ies_len);
  942. /**
  943. * get_scan_results2 - Fetch the latest scan results
  944. * @priv: private driver interface data
  945. *
  946. * Returns: Allocated buffer of scan results (caller is responsible for
  947. * freeing the data structure) on success, NULL on failure
  948. */
  949. struct wpa_scan_results * (*get_scan_results2)(void *priv);
  950. /**
  951. * set_probe_req_ie - Set information element(s) for Probe Request
  952. * @priv: private driver interface data
  953. * @ies: Information elements to append or %NULL to remove extra IEs
  954. * @ies_len: Length of the IE buffer in octets
  955. * Returns: 0 on success, -1 on failure
  956. */
  957. int (*set_probe_req_ie)(void *priv, const u8 *ies, size_t ies_len);
  958. /**
  959. * set_mode - Request driver to set the operating mode
  960. * @priv: private driver interface data
  961. * @mode: Operation mode (infra/ibss) IEEE80211_MODE_*
  962. *
  963. * This handler will be called before any key configuration and call to
  964. * associate() handler in order to allow the operation mode to be
  965. * configured as early as possible. This information is also available
  966. * in associate() params and as such, driver wrappers may not need
  967. * to implement set_mode() handler.
  968. *
  969. * This function is deprecated. New driver wrapper implementations
  970. * should use associate() parameter mode instead.
  971. *
  972. * Returns: 0 on success, -1 on failure
  973. */
  974. int (*set_mode)(void *priv, int mode);
  975. /**
  976. * set_country - Set country
  977. * @priv: Private driver interface data
  978. * @alpha2: country to which to switch to
  979. * Returns: 0 on success, -1 on failure
  980. *
  981. * This function is for drivers which support some form
  982. * of setting a regulatory domain.
  983. */
  984. int (*set_country)(void *priv, const char *alpha2);
  985. /**
  986. * global_init - Global driver initialization
  987. * Returns: Pointer to private data (global), %NULL on failure
  988. *
  989. * This optional function is called to initialize the driver wrapper
  990. * for global data, i.e., data that applies to all interfaces. If this
  991. * function is implemented, global_deinit() will also need to be
  992. * implemented to free the private data. The driver will also likely
  993. * use init2() function instead of init() to get the pointer to global
  994. * data available to per-interface initializer.
  995. */
  996. void * (*global_init)(void);
  997. /**
  998. * global_deinit - Global driver deinitialization
  999. * @priv: private driver global data from global_init()
  1000. *
  1001. * Terminate any global driver related functionality and free the
  1002. * global data structure.
  1003. */
  1004. void (*global_deinit)(void *priv);
  1005. /**
  1006. * init2 - Initialize driver interface (with global data)
  1007. * @ctx: context to be used when calling wpa_supplicant functions,
  1008. * e.g., wpa_supplicant_event()
  1009. * @ifname: interface name, e.g., wlan0
  1010. * @global_priv: private driver global data from global_init()
  1011. * Returns: Pointer to private data, %NULL on failure
  1012. *
  1013. * This function can be used instead of init() if the driver wrapper
  1014. * uses global data.
  1015. */
  1016. void * (*init2)(void *ctx, const char *ifname, void *global_priv);
  1017. /**
  1018. * get_interfaces - Get information about available interfaces
  1019. * @global_priv: private driver global data from global_init()
  1020. * Returns: Allocated buffer of interface information (caller is
  1021. * responsible for freeing the data structure) on success, NULL on
  1022. * failure
  1023. */
  1024. struct wpa_interface_info * (*get_interfaces)(void *global_priv);
  1025. /**
  1026. * scan2 - Request the driver to initiate scan
  1027. * @priv: private driver interface data
  1028. * @params: Scan parameters
  1029. *
  1030. * Returns: 0 on success, -1 on failure
  1031. *
  1032. * Once the scan results are ready, the driver should report scan
  1033. * results event for wpa_supplicant which will eventually request the
  1034. * results with wpa_driver_get_scan_results2().
  1035. */
  1036. int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
  1037. /**
  1038. * authenticate - Request driver to authenticate
  1039. * @priv: private driver interface data
  1040. * @params: authentication parameters
  1041. * Returns: 0 on success, -1 on failure
  1042. *
  1043. * This is an optional function that can be used with drivers that
  1044. * support separate authentication and association steps, i.e., when
  1045. * wpa_supplicant can act as the SME. If not implemented, associate()
  1046. * function is expected to take care of IEEE 802.11 authentication,
  1047. * too.
  1048. */
  1049. int (*authenticate)(void *priv,
  1050. struct wpa_driver_auth_params *params);
  1051. };
  1052. /**
  1053. * enum wpa_event_type - Event type for wpa_supplicant_event() calls
  1054. */
  1055. typedef enum wpa_event_type {
  1056. /**
  1057. * EVENT_ASSOC - Association completed
  1058. *
  1059. * This event needs to be delivered when the driver completes IEEE
  1060. * 802.11 association or reassociation successfully.
  1061. * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
  1062. * after this event has been generated. In addition, optional
  1063. * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
  1064. * more information about the association. If the driver interface gets
  1065. * both of these events at the same time, it can also include the
  1066. * assoc_info data in EVENT_ASSOC call.
  1067. */
  1068. EVENT_ASSOC,
  1069. /**
  1070. * EVENT_DISASSOC - Association lost
  1071. *
  1072. * This event should be called when association is lost either due to
  1073. * receiving deauthenticate or disassociate frame from the AP or when
  1074. * sending either of these frames to the current AP. If the driver
  1075. * supports separate deauthentication event, EVENT_DISASSOC should only
  1076. * be used for disassociation and EVENT_DEAUTH for deauthentication.
  1077. */
  1078. EVENT_DISASSOC,
  1079. /**
  1080. * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
  1081. *
  1082. * This event must be delivered when a Michael MIC error is detected by
  1083. * the local driver. Additional data for event processing is
  1084. * provided with union wpa_event_data::michael_mic_failure. This
  1085. * information is used to request new encyption key and to initiate
  1086. * TKIP countermeasures if needed.
  1087. */
  1088. EVENT_MICHAEL_MIC_FAILURE,
  1089. /**
  1090. * EVENT_SCAN_RESULTS - Scan results available
  1091. *
  1092. * This event must be called whenever scan results are available to be
  1093. * fetched with struct wpa_driver_ops::get_scan_results(). This event
  1094. * is expected to be used some time after struct wpa_driver_ops::scan()
  1095. * is called. If the driver provides an unsolicited event when the scan
  1096. * has been completed, this event can be used to trigger
  1097. * EVENT_SCAN_RESULTS call. If such event is not available from the
  1098. * driver, the driver wrapper code is expected to use a registered
  1099. * timeout to generate EVENT_SCAN_RESULTS call after the time that the
  1100. * scan is expected to be completed.
  1101. */
  1102. EVENT_SCAN_RESULTS,
  1103. /**
  1104. * EVENT_ASSOCINFO - Report optional extra information for association
  1105. *
  1106. * This event can be used to report extra association information for
  1107. * EVENT_ASSOC processing. This extra information includes IEs from
  1108. * association frames and Beacon/Probe Response frames in union
  1109. * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
  1110. * EVENT_ASSOC. Alternatively, the driver interface can include
  1111. * assoc_info data in the EVENT_ASSOC call if it has all the
  1112. * information available at the same point.
  1113. */
  1114. EVENT_ASSOCINFO,
  1115. /**
  1116. * EVENT_INTERFACE_STATUS - Report interface status changes
  1117. *
  1118. * This optional event can be used to report changes in interface
  1119. * status (interface added/removed) using union
  1120. * wpa_event_data::interface_status. This can be used to trigger
  1121. * wpa_supplicant to stop and re-start processing for the interface,
  1122. * e.g., when a cardbus card is ejected/inserted.
  1123. */
  1124. EVENT_INTERFACE_STATUS,
  1125. /**
  1126. * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
  1127. *
  1128. * This event can be used to inform wpa_supplicant about candidates for
  1129. * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
  1130. * for scan request (ap_scan=2 mode), this event is required for
  1131. * pre-authentication. If wpa_supplicant is performing scan request
  1132. * (ap_scan=1), this event is optional since scan results can be used
  1133. * to add pre-authentication candidates. union
  1134. * wpa_event_data::pmkid_candidate is used to report the BSSID of the
  1135. * candidate and priority of the candidate, e.g., based on the signal
  1136. * strength, in order to try to pre-authenticate first with candidates
  1137. * that are most likely targets for re-association.
  1138. *
  1139. * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
  1140. * on the candidate list. In addition, it can be called for the current
  1141. * AP and APs that have existing PMKSA cache entries. wpa_supplicant
  1142. * will automatically skip pre-authentication in cases where a valid
  1143. * PMKSA exists. When more than one candidate exists, this event should
  1144. * be generated once for each candidate.
  1145. *
  1146. * Driver will be notified about successful pre-authentication with
  1147. * struct wpa_driver_ops::add_pmkid() calls.
  1148. */
  1149. EVENT_PMKID_CANDIDATE,
  1150. /**
  1151. * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
  1152. *
  1153. * This event can be used to inform wpa_supplicant about desire to set
  1154. * up secure direct link connection between two stations as defined in
  1155. * IEEE 802.11e with a new PeerKey mechanism that replaced the original
  1156. * STAKey negotiation. The caller will need to set peer address for the
  1157. * event.
  1158. */
  1159. EVENT_STKSTART,
  1160. /**
  1161. * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
  1162. *
  1163. * The driver is expected to report the received FT IEs from
  1164. * FT authentication sequence from the AP. The FT IEs are included in
  1165. * the extra information in union wpa_event_data::ft_ies.
  1166. */
  1167. EVENT_FT_RESPONSE,
  1168. /**
  1169. * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
  1170. *
  1171. * The driver can use this event to inform wpa_supplicant about a STA
  1172. * in an IBSS with which protected frames could be exchanged. This
  1173. * event starts RSN authentication with the other STA to authenticate
  1174. * the STA and set up encryption keys with it.
  1175. */
  1176. EVENT_IBSS_RSN_START,
  1177. /**
  1178. * EVENT_AUTH - Authentication result
  1179. *
  1180. * This event should be called when authentication attempt has been
  1181. * completed. This is only used if the driver supports separate
  1182. * authentication step (struct wpa_driver_ops::authenticate).
  1183. * Information about authentication result is included in
  1184. * union wpa_event_data::auth.
  1185. */
  1186. EVENT_AUTH,
  1187. /**
  1188. * EVENT_DEAUTH - Authentication lost
  1189. *
  1190. * This event should be called when authentication is lost either due
  1191. * to receiving deauthenticate frame from the AP or when sending that
  1192. * frame to the current AP.
  1193. */
  1194. EVENT_DEAUTH,
  1195. /**
  1196. * EVENT_ASSOC_REJECT - Association rejected
  1197. *
  1198. * This event should be called when (re)association attempt has been
  1199. * rejected by the AP. Information about authentication result is
  1200. * included in union wpa_event_data::assoc_reject.
  1201. */
  1202. EVENT_ASSOC_REJECT
  1203. } wpa_event_type;
  1204. /**
  1205. * union wpa_event_data - Additional data for wpa_supplicant_event() calls
  1206. */
  1207. union wpa_event_data {
  1208. /**
  1209. * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
  1210. *
  1211. * This structure is optional for EVENT_ASSOC calls and required for
  1212. * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
  1213. * driver interface does not need to generate separate EVENT_ASSOCINFO
  1214. * calls.
  1215. */
  1216. struct assoc_info {
  1217. /**
  1218. * req_ies - (Re)Association Request IEs
  1219. *
  1220. * If the driver generates WPA/RSN IE, this event data must be
  1221. * returned for WPA handshake to have needed information. If
  1222. * wpa_supplicant-generated WPA/RSN IE is used, this
  1223. * information event is optional.
  1224. *
  1225. * This should start with the first IE (fixed fields before IEs
  1226. * are not included).
  1227. */
  1228. u8 *req_ies;
  1229. /**
  1230. * req_ies_len - Length of req_ies in bytes
  1231. */
  1232. size_t req_ies_len;
  1233. /**
  1234. * resp_ies - (Re)Association Response IEs
  1235. *
  1236. * Optional association data from the driver. This data is not
  1237. * required WPA, but may be useful for some protocols and as
  1238. * such, should be reported if this is available to the driver
  1239. * interface.
  1240. *
  1241. * This should start with the first IE (fixed fields before IEs
  1242. * are not included).
  1243. */
  1244. u8 *resp_ies;
  1245. /**
  1246. * resp_ies_len - Length of resp_ies in bytes
  1247. */
  1248. size_t resp_ies_len;
  1249. /**
  1250. * beacon_ies - Beacon or Probe Response IEs
  1251. *
  1252. * Optional Beacon/ProbeResp data: IEs included in Beacon or
  1253. * Probe Response frames from the current AP (i.e., the one
  1254. * that the client just associated with). This information is
  1255. * used to update WPA/RSN IE for the AP. If this field is not
  1256. * set, the results from previous scan will be used. If no
  1257. * data for the new AP is found, scan results will be requested
  1258. * again (without scan request). At this point, the driver is
  1259. * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
  1260. * used).
  1261. *
  1262. * This should start with the first IE (fixed fields before IEs
  1263. * are not included).
  1264. */
  1265. u8 *beacon_ies;
  1266. /**
  1267. * beacon_ies_len - Length of beacon_ies */
  1268. size_t beacon_ies_len;
  1269. } assoc_info;
  1270. /**
  1271. * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
  1272. */
  1273. struct michael_mic_failure {
  1274. int unicast;
  1275. } michael_mic_failure;
  1276. /**
  1277. * struct interface_status - Data for EVENT_INTERFACE_STATUS
  1278. */
  1279. struct interface_status {
  1280. char ifname[100];
  1281. enum {
  1282. EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
  1283. } ievent;
  1284. } interface_status;
  1285. /**
  1286. * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
  1287. */
  1288. struct pmkid_candidate {
  1289. /** BSSID of the PMKID candidate */
  1290. u8 bssid[ETH_ALEN];
  1291. /** Smaller the index, higher the priority */
  1292. int index;
  1293. /** Whether RSN IE includes pre-authenticate flag */
  1294. int preauth;
  1295. } pmkid_candidate;
  1296. /**
  1297. * struct stkstart - Data for EVENT_STKSTART
  1298. */
  1299. struct stkstart {
  1300. u8 peer[ETH_ALEN];
  1301. } stkstart;
  1302. /**
  1303. * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
  1304. *
  1305. * During FT (IEEE 802.11r) authentication sequence, the driver is
  1306. * expected to use this event to report received FT IEs (MDIE, FTIE,
  1307. * RSN IE, TIE, possible resource request) to the supplicant. The FT
  1308. * IEs for the next message will be delivered through the
  1309. * struct wpa_driver_ops::update_ft_ies() callback.
  1310. */
  1311. struct ft_ies {
  1312. const u8 *ies;
  1313. size_t ies_len;
  1314. int ft_action;
  1315. u8 target_ap[ETH_ALEN];
  1316. /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
  1317. const u8 *ric_ies;
  1318. /** Length of ric_ies buffer in octets */
  1319. size_t ric_ies_len;
  1320. } ft_ies;
  1321. /**
  1322. * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
  1323. */
  1324. struct ibss_rsn_start {
  1325. u8 peer[ETH_ALEN];
  1326. } ibss_rsn_start;
  1327. /**
  1328. * struct auth_info - Data for EVENT_AUTH events
  1329. */
  1330. struct auth_info {
  1331. u8 peer[ETH_ALEN];
  1332. u16 auth_type;
  1333. u16 status_code;
  1334. const u8 *ies;
  1335. size_t ies_len;
  1336. } auth;
  1337. /**
  1338. * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
  1339. */
  1340. struct assoc_reject {
  1341. /**
  1342. * resp_ies - (Re)Association Response IEs
  1343. *
  1344. * Optional association data from the driver. This data is not
  1345. * required WPA, but may be useful for some protocols and as
  1346. * such, should be reported if this is available to the driver
  1347. * interface.
  1348. *
  1349. * This should start with the first IE (fixed fields before IEs
  1350. * are not included).
  1351. */
  1352. u8 *resp_ies;
  1353. /**
  1354. * resp_ies_len - Length of resp_ies in bytes
  1355. */
  1356. size_t resp_ies_len;
  1357. /**
  1358. * status_code - Status Code from (Re)association Response
  1359. */
  1360. u16 status_code;
  1361. } assoc_reject;
  1362. };
  1363. /**
  1364. * wpa_supplicant_event - Report a driver event for wpa_supplicant
  1365. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  1366. * with struct wpa_driver_ops::init()
  1367. * @event: event type (defined above)
  1368. * @data: possible extra data for the event
  1369. *
  1370. * Driver wrapper code should call this function whenever an event is received
  1371. * from the driver.
  1372. */
  1373. void wpa_supplicant_event(void *ctx, wpa_event_type event,
  1374. union wpa_event_data *data);
  1375. /**
  1376. * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
  1377. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  1378. * with struct wpa_driver_ops::init()
  1379. * @src_addr: Source address of the EAPOL frame
  1380. * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
  1381. * @len: Length of the EAPOL data
  1382. *
  1383. * This function is called for each received EAPOL frame. Most driver
  1384. * interfaces rely on more generic OS mechanism for receiving frames through
  1385. * l2_packet, but if such a mechanism is not available, the driver wrapper may
  1386. * take care of received EAPOL frames and deliver them to the core supplicant
  1387. * code by calling this function.
  1388. */
  1389. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  1390. const u8 *buf, size_t len);
  1391. void wpa_supplicant_sta_rx(void *ctx, const u8 *buf, size_t len,
  1392. struct ieee80211_rx_status *rx_status);
  1393. void wpa_supplicant_sta_free_hw_features(struct wpa_hw_modes *hw_features,
  1394. size_t num_hw_features);
  1395. const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie);
  1396. #define WPA_IE_VENDOR_TYPE 0x0050f201
  1397. #define WPS_IE_VENDOR_TYPE 0x0050f204
  1398. const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
  1399. u32 vendor_type);
  1400. struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
  1401. u32 vendor_type);
  1402. int wpa_scan_get_max_rate(const struct wpa_scan_res *res);
  1403. void wpa_scan_results_free(struct wpa_scan_results *res);
  1404. void wpa_scan_sort_results(struct wpa_scan_results *res);
  1405. #endif /* DRIVER_H */