config_ssid.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. /*
  2. * WPA Supplicant / Network configuration structures
  3. * Copyright (c) 2003-2008, 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 CONFIG_SSID_H
  15. #define CONFIG_SSID_H
  16. #include "common/defs.h"
  17. #include "eap_peer/eap_config.h"
  18. #define MAX_SSID_LEN 32
  19. #define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
  20. #define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
  21. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
  22. #define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
  23. #define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
  24. #define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
  25. #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
  26. WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
  27. #define DEFAULT_FRAGMENT_SIZE 1398
  28. #define DEFAULT_DISABLE_HT 0
  29. #define DEFAULT_DISABLE_HT40 0
  30. #define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
  31. #define DEFAULT_AMPDU_FACTOR -1 /* no change */
  32. #define DEFAULT_AMPDU_DENSITY -1 /* no change */
  33. /**
  34. * struct wpa_ssid - Network configuration data
  35. *
  36. * This structure includes all the configuration variables for a network. This
  37. * data is included in the per-interface configuration data as an element of
  38. * the network list, struct wpa_config::ssid. Each network block in the
  39. * configuration is mapped to a struct wpa_ssid instance.
  40. */
  41. struct wpa_ssid {
  42. /**
  43. * next - Next network in global list
  44. *
  45. * This pointer can be used to iterate over all networks. The head of
  46. * this list is stored in the ssid field of struct wpa_config.
  47. */
  48. struct wpa_ssid *next;
  49. /**
  50. * pnext - Next network in per-priority list
  51. *
  52. * This pointer can be used to iterate over all networks in the same
  53. * priority class. The heads of these list are stored in the pssid
  54. * fields of struct wpa_config.
  55. */
  56. struct wpa_ssid *pnext;
  57. /**
  58. * id - Unique id for the network
  59. *
  60. * This identifier is used as a unique identifier for each network
  61. * block when using the control interface. Each network is allocated an
  62. * id when it is being created, either when reading the configuration
  63. * file or when a new network is added through the control interface.
  64. */
  65. int id;
  66. /**
  67. * priority - Priority group
  68. *
  69. * By default, all networks will get same priority group (0). If some
  70. * of the networks are more desirable, this field can be used to change
  71. * the order in which wpa_supplicant goes through the networks when
  72. * selecting a BSS. The priority groups will be iterated in decreasing
  73. * priority (i.e., the larger the priority value, the sooner the
  74. * network is matched against the scan results). Within each priority
  75. * group, networks will be selected based on security policy, signal
  76. * strength, etc.
  77. *
  78. * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
  79. * not using this priority to select the order for scanning. Instead,
  80. * they try the networks in the order that used in the configuration
  81. * file.
  82. */
  83. int priority;
  84. /**
  85. * ssid - Service set identifier (network name)
  86. *
  87. * This is the SSID for the network. For wireless interfaces, this is
  88. * used to select which network will be used. If set to %NULL (or
  89. * ssid_len=0), any SSID can be used. For wired interfaces, this must
  90. * be set to %NULL. Note: SSID may contain any characters, even nul
  91. * (ASCII 0) and as such, this should not be assumed to be a nul
  92. * terminated string. ssid_len defines how many characters are valid
  93. * and the ssid field is not guaranteed to be nul terminated.
  94. */
  95. u8 *ssid;
  96. /**
  97. * ssid_len - Length of the SSID
  98. */
  99. size_t ssid_len;
  100. /**
  101. * bssid - BSSID
  102. *
  103. * If set, this network block is used only when associating with the AP
  104. * using the configured BSSID
  105. *
  106. * If this is a persistent P2P group (disabled == 2), this is the GO
  107. * Device Address.
  108. */
  109. u8 bssid[ETH_ALEN];
  110. /**
  111. * bssid_set - Whether BSSID is configured for this network
  112. */
  113. int bssid_set;
  114. /**
  115. * psk - WPA pre-shared key (256 bits)
  116. */
  117. u8 psk[32];
  118. /**
  119. * psk_set - Whether PSK field is configured
  120. */
  121. int psk_set;
  122. /**
  123. * passphrase - WPA ASCII passphrase
  124. *
  125. * If this is set, psk will be generated using the SSID and passphrase
  126. * configured for the network. ASCII passphrase must be between 8 and
  127. * 63 characters (inclusive).
  128. */
  129. char *passphrase;
  130. /**
  131. * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
  132. */
  133. int pairwise_cipher;
  134. /**
  135. * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
  136. */
  137. int group_cipher;
  138. /**
  139. * key_mgmt - Bitfield of allowed key management protocols
  140. *
  141. * WPA_KEY_MGMT_*
  142. */
  143. int key_mgmt;
  144. /**
  145. * proto - Bitfield of allowed protocols, WPA_PROTO_*
  146. */
  147. int proto;
  148. /**
  149. * auth_alg - Bitfield of allowed authentication algorithms
  150. *
  151. * WPA_AUTH_ALG_*
  152. */
  153. int auth_alg;
  154. /**
  155. * scan_ssid - Scan this SSID with Probe Requests
  156. *
  157. * scan_ssid can be used to scan for APs using hidden SSIDs.
  158. * Note: Many drivers do not support this. ap_mode=2 can be used with
  159. * such drivers to use hidden SSIDs.
  160. */
  161. int scan_ssid;
  162. #ifdef IEEE8021X_EAPOL
  163. #define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
  164. #define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
  165. /**
  166. * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
  167. */
  168. int eapol_flags;
  169. /**
  170. * eap - EAP peer configuration for this network
  171. */
  172. struct eap_peer_config eap;
  173. #endif /* IEEE8021X_EAPOL */
  174. #define NUM_WEP_KEYS 4
  175. #define MAX_WEP_KEY_LEN 16
  176. /**
  177. * wep_key - WEP keys
  178. */
  179. u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
  180. /**
  181. * wep_key_len - WEP key lengths
  182. */
  183. size_t wep_key_len[NUM_WEP_KEYS];
  184. /**
  185. * wep_tx_keyidx - Default key index for TX frames using WEP
  186. */
  187. int wep_tx_keyidx;
  188. /**
  189. * proactive_key_caching - Enable proactive key caching
  190. *
  191. * This field can be used to enable proactive key caching which is also
  192. * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
  193. * by default. Enable by setting this to 1.
  194. *
  195. * Proactive key caching is used to make supplicant assume that the APs
  196. * are using the same PMK and generate PMKSA cache entries without
  197. * doing RSN pre-authentication. This requires support from the AP side
  198. * and is normally used with wireless switches that co-locate the
  199. * authenticator.
  200. */
  201. int proactive_key_caching;
  202. /**
  203. * mixed_cell - Whether mixed cells are allowed
  204. *
  205. * This option can be used to configure whether so called mixed cells,
  206. * i.e., networks that use both plaintext and encryption in the same
  207. * SSID, are allowed. This is disabled (0) by default. Enable by
  208. * setting this to 1.
  209. */
  210. int mixed_cell;
  211. #ifdef IEEE8021X_EAPOL
  212. /**
  213. * leap - Number of EAP methods using LEAP
  214. *
  215. * This field should be set to 1 if LEAP is enabled. This is used to
  216. * select IEEE 802.11 authentication algorithm.
  217. */
  218. int leap;
  219. /**
  220. * non_leap - Number of EAP methods not using LEAP
  221. *
  222. * This field should be set to >0 if any EAP method other than LEAP is
  223. * enabled. This is used to select IEEE 802.11 authentication
  224. * algorithm.
  225. */
  226. int non_leap;
  227. /**
  228. * eap_workaround - EAP workarounds enabled
  229. *
  230. * wpa_supplicant supports number of "EAP workarounds" to work around
  231. * interoperability issues with incorrectly behaving authentication
  232. * servers. This is recommended to be enabled by default because some
  233. * of the issues are present in large number of authentication servers.
  234. *
  235. * Strict EAP conformance mode can be configured by disabling
  236. * workarounds with eap_workaround = 0.
  237. */
  238. unsigned int eap_workaround;
  239. #endif /* IEEE8021X_EAPOL */
  240. /**
  241. * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
  242. *
  243. * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
  244. *
  245. * 1 = IBSS (ad-hoc, peer-to-peer)
  246. *
  247. * 2 = AP (access point)
  248. *
  249. * 3 = P2P Group Owner (can be set in the configuration file)
  250. *
  251. * 4 = P2P Group Formation (used internally; not in configuration
  252. * files)
  253. *
  254. * Note: IBSS can only be used with key_mgmt NONE (plaintext and
  255. * static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
  256. * addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
  257. * following network block options: proto=WPA, key_mgmt=WPA-NONE,
  258. * pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
  259. * be set (either directly or using ASCII passphrase).
  260. */
  261. enum wpas_mode {
  262. WPAS_MODE_INFRA = 0,
  263. WPAS_MODE_IBSS = 1,
  264. WPAS_MODE_AP = 2,
  265. WPAS_MODE_P2P_GO = 3,
  266. WPAS_MODE_P2P_GROUP_FORMATION = 4,
  267. } mode;
  268. /**
  269. * disabled - Whether this network is currently disabled
  270. *
  271. * 0 = this network can be used (default).
  272. * 1 = this network block is disabled (can be enabled through
  273. * ctrl_iface, e.g., with wpa_cli or wpa_gui).
  274. * 2 = this network block includes parameters for a persistent P2P
  275. * group (can be used with P2P ctrl_iface commands)
  276. */
  277. int disabled;
  278. /**
  279. * peerkey - Whether PeerKey handshake for direct links is allowed
  280. *
  281. * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
  282. * enabled.
  283. *
  284. * 0 = disabled (default)
  285. * 1 = enabled
  286. */
  287. int peerkey;
  288. /**
  289. * id_str - Network identifier string for external scripts
  290. *
  291. * This value is passed to external ctrl_iface monitors in
  292. * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
  293. * environment variable for action scripts.
  294. */
  295. char *id_str;
  296. #ifdef CONFIG_IEEE80211W
  297. /**
  298. * ieee80211w - Whether management frame protection is enabled
  299. *
  300. * This value is used to configure policy for management frame
  301. * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
  302. */
  303. enum mfp_options ieee80211w;
  304. #endif /* CONFIG_IEEE80211W */
  305. /**
  306. * frequency - Channel frequency in megahertz (MHz) for IBSS
  307. *
  308. * This value is used to configure the initial channel for IBSS (adhoc)
  309. * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
  310. * the infrastructure mode. In addition, this value is only used by the
  311. * station that creates the IBSS. If an IBSS network with the
  312. * configured SSID is already present, the frequency of the network
  313. * will be used instead of this configured value.
  314. */
  315. int frequency;
  316. /**
  317. * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
  318. *
  319. * This value can be used to enforce rekeying of PTK to mitigate some
  320. * attacks against TKIP deficiencies.
  321. */
  322. int wpa_ptk_rekey;
  323. /**
  324. * scan_freq - Array of frequencies to scan or %NULL for all
  325. *
  326. * This is an optional zero-terminated array of frequencies in
  327. * megahertz (MHz) to include in scan requests when searching for this
  328. * network. This can be used to speed up scanning when the network is
  329. * known to not use all possible channels.
  330. */
  331. int *scan_freq;
  332. /**
  333. * bgscan - Background scan and roaming parameters or %NULL if none
  334. *
  335. * This is an optional set of parameters for background scanning and
  336. * roaming within a network (ESS) in following format:
  337. * <bgscan module name>:<module parameters>
  338. */
  339. char *bgscan;
  340. /**
  341. * freq_list - Array of allowed frequencies or %NULL for all
  342. *
  343. * This is an optional zero-terminated array of frequencies in
  344. * megahertz (MHz) to allow for selecting the BSS. If set, scan results
  345. * that do not match any of the specified frequencies are not
  346. * considered when selecting a BSS.
  347. */
  348. int *freq_list;
  349. /**
  350. * p2p_client_list - List of P2P Clients in a persistent group (GO)
  351. *
  352. * This is a list of P2P Clients (P2P Device Address) that have joined
  353. * the persistent group. This is maintained on the GO for persistent
  354. * group entries (disabled == 2).
  355. */
  356. u8 *p2p_client_list;
  357. /**
  358. * num_p2p_clients - Number of entries in p2p_client_list
  359. */
  360. size_t num_p2p_clients;
  361. /**
  362. * p2p_group - Network generated as a P2P group (used internally)
  363. */
  364. int p2p_group;
  365. /**
  366. * p2p_persistent_group - Whether this is a persistent group
  367. */
  368. int p2p_persistent_group;
  369. /**
  370. * temporary - Whether this network is temporary and not to be saved
  371. */
  372. int temporary;
  373. /**
  374. * export_keys - Whether keys may be exported
  375. *
  376. * This attribute will be set when keys are determined through
  377. * WPS or similar so that they may be exported.
  378. */
  379. int export_keys;
  380. #ifdef CONFIG_HT_OVERRIDES
  381. /**
  382. * disable_ht - Disable HT (IEEE 802.11n) for this network
  383. *
  384. * By default, use it if it is available, but this can be configured
  385. * to 1 to have it disabled.
  386. */
  387. int disable_ht;
  388. /**
  389. * disable_ht40 - Disable HT40 for this network
  390. *
  391. * By default, use it if it is available, but this can be configured
  392. * to 1 to have it disabled.
  393. */
  394. int disable_ht40;
  395. /**
  396. * disable_max_amsdu - Disable MAX A-MSDU
  397. *
  398. * A-MDSU will be 3839 bytes when disabled, or 7935
  399. * when enabled (assuming it is otherwise supported)
  400. * -1 (default) means do not apply any settings to the kernel.
  401. */
  402. int disable_max_amsdu;
  403. /**
  404. * ampdu_factor - Maximum A-MPDU Length Exponent
  405. *
  406. * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  407. */
  408. int ampdu_factor;
  409. /**
  410. * ampdu_density - Minimum A-MPDU Start Spacing
  411. *
  412. * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  413. */
  414. int ampdu_density;
  415. /**
  416. * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
  417. *
  418. * By default (empty string): Use whatever the OS has configured.
  419. */
  420. char *ht_mcs;
  421. #endif /* CONFIG_HT_OVERRIDES */
  422. };
  423. #endif /* CONFIG_SSID_H */