config_ssid.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. /*
  2. * WPA Supplicant / Network configuration structures
  3. * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef CONFIG_SSID_H
  9. #define CONFIG_SSID_H
  10. #include "common/defs.h"
  11. #include "utils/list.h"
  12. #include "eap_peer/eap_config.h"
  13. #define MAX_SSID_LEN 32
  14. #define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
  15. #define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
  16. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
  17. #define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
  18. #define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
  19. #define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
  20. #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
  21. WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
  22. #define DEFAULT_FRAGMENT_SIZE 1398
  23. #define DEFAULT_BG_SCAN_PERIOD -1
  24. #define DEFAULT_DISABLE_HT 0
  25. #define DEFAULT_DISABLE_HT40 0
  26. #define DEFAULT_DISABLE_SGI 0
  27. #define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
  28. #define DEFAULT_AMPDU_FACTOR -1 /* no change */
  29. #define DEFAULT_AMPDU_DENSITY -1 /* no change */
  30. struct psk_list_entry {
  31. struct dl_list list;
  32. u8 addr[ETH_ALEN];
  33. u8 psk[32];
  34. u8 p2p;
  35. };
  36. /**
  37. * struct wpa_ssid - Network configuration data
  38. *
  39. * This structure includes all the configuration variables for a network. This
  40. * data is included in the per-interface configuration data as an element of
  41. * the network list, struct wpa_config::ssid. Each network block in the
  42. * configuration is mapped to a struct wpa_ssid instance.
  43. */
  44. struct wpa_ssid {
  45. /**
  46. * next - Next network in global list
  47. *
  48. * This pointer can be used to iterate over all networks. The head of
  49. * this list is stored in the ssid field of struct wpa_config.
  50. */
  51. struct wpa_ssid *next;
  52. /**
  53. * pnext - Next network in per-priority list
  54. *
  55. * This pointer can be used to iterate over all networks in the same
  56. * priority class. The heads of these list are stored in the pssid
  57. * fields of struct wpa_config.
  58. */
  59. struct wpa_ssid *pnext;
  60. /**
  61. * id - Unique id for the network
  62. *
  63. * This identifier is used as a unique identifier for each network
  64. * block when using the control interface. Each network is allocated an
  65. * id when it is being created, either when reading the configuration
  66. * file or when a new network is added through the control interface.
  67. */
  68. int id;
  69. /**
  70. * priority - Priority group
  71. *
  72. * By default, all networks will get same priority group (0). If some
  73. * of the networks are more desirable, this field can be used to change
  74. * the order in which wpa_supplicant goes through the networks when
  75. * selecting a BSS. The priority groups will be iterated in decreasing
  76. * priority (i.e., the larger the priority value, the sooner the
  77. * network is matched against the scan results). Within each priority
  78. * group, networks will be selected based on security policy, signal
  79. * strength, etc.
  80. *
  81. * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
  82. * not using this priority to select the order for scanning. Instead,
  83. * they try the networks in the order that used in the configuration
  84. * file.
  85. */
  86. int priority;
  87. /**
  88. * ssid - Service set identifier (network name)
  89. *
  90. * This is the SSID for the network. For wireless interfaces, this is
  91. * used to select which network will be used. If set to %NULL (or
  92. * ssid_len=0), any SSID can be used. For wired interfaces, this must
  93. * be set to %NULL. Note: SSID may contain any characters, even nul
  94. * (ASCII 0) and as such, this should not be assumed to be a nul
  95. * terminated string. ssid_len defines how many characters are valid
  96. * and the ssid field is not guaranteed to be nul terminated.
  97. */
  98. u8 *ssid;
  99. /**
  100. * ssid_len - Length of the SSID
  101. */
  102. size_t ssid_len;
  103. /**
  104. * bssid - BSSID
  105. *
  106. * If set, this network block is used only when associating with the AP
  107. * using the configured BSSID
  108. *
  109. * If this is a persistent P2P group (disabled == 2), this is the GO
  110. * Device Address.
  111. */
  112. u8 bssid[ETH_ALEN];
  113. /**
  114. * bssid_set - Whether BSSID is configured for this network
  115. */
  116. int bssid_set;
  117. /**
  118. * psk - WPA pre-shared key (256 bits)
  119. */
  120. u8 psk[32];
  121. /**
  122. * psk_set - Whether PSK field is configured
  123. */
  124. int psk_set;
  125. /**
  126. * passphrase - WPA ASCII passphrase
  127. *
  128. * If this is set, psk will be generated using the SSID and passphrase
  129. * configured for the network. ASCII passphrase must be between 8 and
  130. * 63 characters (inclusive).
  131. */
  132. char *passphrase;
  133. /**
  134. * ext_psk - PSK/passphrase name in external storage
  135. *
  136. * If this is set, PSK/passphrase will be fetched from external storage
  137. * when requesting association with the network.
  138. */
  139. char *ext_psk;
  140. /**
  141. * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
  142. */
  143. int pairwise_cipher;
  144. /**
  145. * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
  146. */
  147. int group_cipher;
  148. /**
  149. * key_mgmt - Bitfield of allowed key management protocols
  150. *
  151. * WPA_KEY_MGMT_*
  152. */
  153. int key_mgmt;
  154. /**
  155. * bg_scan_period - Background scan period in seconds, 0 to disable, or
  156. * -1 to indicate no change to default driver configuration
  157. */
  158. int bg_scan_period;
  159. /**
  160. * proto - Bitfield of allowed protocols, WPA_PROTO_*
  161. */
  162. int proto;
  163. /**
  164. * auth_alg - Bitfield of allowed authentication algorithms
  165. *
  166. * WPA_AUTH_ALG_*
  167. */
  168. int auth_alg;
  169. /**
  170. * scan_ssid - Scan this SSID with Probe Requests
  171. *
  172. * scan_ssid can be used to scan for APs using hidden SSIDs.
  173. * Note: Many drivers do not support this. ap_mode=2 can be used with
  174. * such drivers to use hidden SSIDs.
  175. */
  176. int scan_ssid;
  177. #ifdef IEEE8021X_EAPOL
  178. #define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
  179. #define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
  180. /**
  181. * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
  182. */
  183. int eapol_flags;
  184. /**
  185. * eap - EAP peer configuration for this network
  186. */
  187. struct eap_peer_config eap;
  188. #endif /* IEEE8021X_EAPOL */
  189. #define NUM_WEP_KEYS 4
  190. #define MAX_WEP_KEY_LEN 16
  191. /**
  192. * wep_key - WEP keys
  193. */
  194. u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
  195. /**
  196. * wep_key_len - WEP key lengths
  197. */
  198. size_t wep_key_len[NUM_WEP_KEYS];
  199. /**
  200. * wep_tx_keyidx - Default key index for TX frames using WEP
  201. */
  202. int wep_tx_keyidx;
  203. /**
  204. * proactive_key_caching - Enable proactive key caching
  205. *
  206. * This field can be used to enable proactive key caching which is also
  207. * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
  208. * by default unless default value is changed with the global okc=1
  209. * parameter. Enable by setting this to 1.
  210. *
  211. * Proactive key caching is used to make supplicant assume that the APs
  212. * are using the same PMK and generate PMKSA cache entries without
  213. * doing RSN pre-authentication. This requires support from the AP side
  214. * and is normally used with wireless switches that co-locate the
  215. * authenticator.
  216. *
  217. * Internally, special value -1 is used to indicate that the parameter
  218. * was not specified in the configuration (i.e., default behavior is
  219. * followed).
  220. */
  221. int proactive_key_caching;
  222. /**
  223. * mixed_cell - Whether mixed cells are allowed
  224. *
  225. * This option can be used to configure whether so called mixed cells,
  226. * i.e., networks that use both plaintext and encryption in the same
  227. * SSID, are allowed. This is disabled (0) by default. Enable by
  228. * setting this to 1.
  229. */
  230. int mixed_cell;
  231. #ifdef IEEE8021X_EAPOL
  232. /**
  233. * leap - Number of EAP methods using LEAP
  234. *
  235. * This field should be set to 1 if LEAP is enabled. This is used to
  236. * select IEEE 802.11 authentication algorithm.
  237. */
  238. int leap;
  239. /**
  240. * non_leap - Number of EAP methods not using LEAP
  241. *
  242. * This field should be set to >0 if any EAP method other than LEAP is
  243. * enabled. This is used to select IEEE 802.11 authentication
  244. * algorithm.
  245. */
  246. int non_leap;
  247. /**
  248. * eap_workaround - EAP workarounds enabled
  249. *
  250. * wpa_supplicant supports number of "EAP workarounds" to work around
  251. * interoperability issues with incorrectly behaving authentication
  252. * servers. This is recommended to be enabled by default because some
  253. * of the issues are present in large number of authentication servers.
  254. *
  255. * Strict EAP conformance mode can be configured by disabling
  256. * workarounds with eap_workaround = 0.
  257. */
  258. unsigned int eap_workaround;
  259. #endif /* IEEE8021X_EAPOL */
  260. /**
  261. * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
  262. *
  263. * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
  264. *
  265. * 1 = IBSS (ad-hoc, peer-to-peer)
  266. *
  267. * 2 = AP (access point)
  268. *
  269. * 3 = P2P Group Owner (can be set in the configuration file)
  270. *
  271. * 4 = P2P Group Formation (used internally; not in configuration
  272. * files)
  273. *
  274. * Note: IBSS can only be used with key_mgmt NONE (plaintext and
  275. * static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
  276. * addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
  277. * following network block options: proto=WPA, key_mgmt=WPA-NONE,
  278. * pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
  279. * be set (either directly or using ASCII passphrase).
  280. */
  281. enum wpas_mode {
  282. WPAS_MODE_INFRA = 0,
  283. WPAS_MODE_IBSS = 1,
  284. WPAS_MODE_AP = 2,
  285. WPAS_MODE_P2P_GO = 3,
  286. WPAS_MODE_P2P_GROUP_FORMATION = 4,
  287. } mode;
  288. /**
  289. * disabled - Whether this network is currently disabled
  290. *
  291. * 0 = this network can be used (default).
  292. * 1 = this network block is disabled (can be enabled through
  293. * ctrl_iface, e.g., with wpa_cli or wpa_gui).
  294. * 2 = this network block includes parameters for a persistent P2P
  295. * group (can be used with P2P ctrl_iface commands)
  296. */
  297. int disabled;
  298. /**
  299. * disabled_for_connect - Whether this network was temporarily disabled
  300. *
  301. * This flag is used to reenable all the temporarily disabled networks
  302. * after either the success or failure of a WPS connection.
  303. */
  304. int disabled_for_connect;
  305. /**
  306. * peerkey - Whether PeerKey handshake for direct links is allowed
  307. *
  308. * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
  309. * enabled.
  310. *
  311. * 0 = disabled (default)
  312. * 1 = enabled
  313. */
  314. int peerkey;
  315. /**
  316. * id_str - Network identifier string for external scripts
  317. *
  318. * This value is passed to external ctrl_iface monitors in
  319. * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
  320. * environment variable for action scripts.
  321. */
  322. char *id_str;
  323. #ifdef CONFIG_IEEE80211W
  324. /**
  325. * ieee80211w - Whether management frame protection is enabled
  326. *
  327. * This value is used to configure policy for management frame
  328. * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
  329. * This is disabled by default unless the default value has been changed
  330. * with the global pmf=1/2 parameter.
  331. *
  332. * Internally, special value 3 is used to indicate that the parameter
  333. * was not specified in the configuration (i.e., default behavior is
  334. * followed).
  335. */
  336. enum mfp_options ieee80211w;
  337. #endif /* CONFIG_IEEE80211W */
  338. /**
  339. * frequency - Channel frequency in megahertz (MHz) for IBSS
  340. *
  341. * This value is used to configure the initial channel for IBSS (adhoc)
  342. * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
  343. * the infrastructure mode. In addition, this value is only used by the
  344. * station that creates the IBSS. If an IBSS network with the
  345. * configured SSID is already present, the frequency of the network
  346. * will be used instead of this configured value.
  347. */
  348. int frequency;
  349. int ht40;
  350. int vht;
  351. /**
  352. * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
  353. *
  354. * This value can be used to enforce rekeying of PTK to mitigate some
  355. * attacks against TKIP deficiencies.
  356. */
  357. int wpa_ptk_rekey;
  358. /**
  359. * scan_freq - Array of frequencies to scan or %NULL for all
  360. *
  361. * This is an optional zero-terminated array of frequencies in
  362. * megahertz (MHz) to include in scan requests when searching for this
  363. * network. This can be used to speed up scanning when the network is
  364. * known to not use all possible channels.
  365. */
  366. int *scan_freq;
  367. /**
  368. * bgscan - Background scan and roaming parameters or %NULL if none
  369. *
  370. * This is an optional set of parameters for background scanning and
  371. * roaming within a network (ESS) in following format:
  372. * <bgscan module name>:<module parameters>
  373. */
  374. char *bgscan;
  375. /**
  376. * ignore_broadcast_ssid - Hide SSID in AP mode
  377. *
  378. * Send empty SSID in beacons and ignore probe request frames that do
  379. * not specify full SSID, i.e., require stations to know SSID.
  380. * default: disabled (0)
  381. * 1 = send empty (length=0) SSID in beacon and ignore probe request
  382. * for broadcast SSID
  383. * 2 = clear SSID (ASCII 0), but keep the original length (this may be
  384. * required with some clients that do not support empty SSID) and
  385. * ignore probe requests for broadcast SSID
  386. */
  387. int ignore_broadcast_ssid;
  388. /**
  389. * freq_list - Array of allowed frequencies or %NULL for all
  390. *
  391. * This is an optional zero-terminated array of frequencies in
  392. * megahertz (MHz) to allow for selecting the BSS. If set, scan results
  393. * that do not match any of the specified frequencies are not
  394. * considered when selecting a BSS.
  395. */
  396. int *freq_list;
  397. /**
  398. * p2p_client_list - List of P2P Clients in a persistent group (GO)
  399. *
  400. * This is a list of P2P Clients (P2P Device Address) that have joined
  401. * the persistent group. This is maintained on the GO for persistent
  402. * group entries (disabled == 2).
  403. */
  404. u8 *p2p_client_list;
  405. /**
  406. * num_p2p_clients - Number of entries in p2p_client_list
  407. */
  408. size_t num_p2p_clients;
  409. #ifndef P2P_MAX_STORED_CLIENTS
  410. #define P2P_MAX_STORED_CLIENTS 100
  411. #endif /* P2P_MAX_STORED_CLIENTS */
  412. /**
  413. * psk_list - Per-client PSKs (struct psk_list_entry)
  414. */
  415. struct dl_list psk_list;
  416. /**
  417. * p2p_group - Network generated as a P2P group (used internally)
  418. */
  419. int p2p_group;
  420. /**
  421. * p2p_persistent_group - Whether this is a persistent group
  422. */
  423. int p2p_persistent_group;
  424. /**
  425. * temporary - Whether this network is temporary and not to be saved
  426. */
  427. int temporary;
  428. /**
  429. * export_keys - Whether keys may be exported
  430. *
  431. * This attribute will be set when keys are determined through
  432. * WPS or similar so that they may be exported.
  433. */
  434. int export_keys;
  435. #ifdef CONFIG_HT_OVERRIDES
  436. /**
  437. * disable_ht - Disable HT (IEEE 802.11n) for this network
  438. *
  439. * By default, use it if it is available, but this can be configured
  440. * to 1 to have it disabled.
  441. */
  442. int disable_ht;
  443. /**
  444. * disable_ht40 - Disable HT40 for this network
  445. *
  446. * By default, use it if it is available, but this can be configured
  447. * to 1 to have it disabled.
  448. */
  449. int disable_ht40;
  450. /**
  451. * disable_sgi - Disable SGI (Short Guard Interval) for this network
  452. *
  453. * By default, use it if it is available, but this can be configured
  454. * to 1 to have it disabled.
  455. */
  456. int disable_sgi;
  457. /**
  458. * disable_max_amsdu - Disable MAX A-MSDU
  459. *
  460. * A-MDSU will be 3839 bytes when disabled, or 7935
  461. * when enabled (assuming it is otherwise supported)
  462. * -1 (default) means do not apply any settings to the kernel.
  463. */
  464. int disable_max_amsdu;
  465. /**
  466. * ampdu_factor - Maximum A-MPDU Length Exponent
  467. *
  468. * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  469. */
  470. int ampdu_factor;
  471. /**
  472. * ampdu_density - Minimum A-MPDU Start Spacing
  473. *
  474. * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  475. */
  476. int ampdu_density;
  477. /**
  478. * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
  479. *
  480. * By default (empty string): Use whatever the OS has configured.
  481. */
  482. char *ht_mcs;
  483. #endif /* CONFIG_HT_OVERRIDES */
  484. #ifdef CONFIG_VHT_OVERRIDES
  485. /**
  486. * disable_vht - Disable VHT (IEEE 802.11ac) for this network
  487. *
  488. * By default, use it if it is available, but this can be configured
  489. * to 1 to have it disabled.
  490. */
  491. int disable_vht;
  492. /**
  493. * vht_capa - VHT capabilities to use
  494. */
  495. unsigned int vht_capa;
  496. /**
  497. * vht_capa_mask - mask for VHT capabilities
  498. */
  499. unsigned int vht_capa_mask;
  500. int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2,
  501. vht_rx_mcs_nss_3, vht_rx_mcs_nss_4,
  502. vht_rx_mcs_nss_5, vht_rx_mcs_nss_6,
  503. vht_rx_mcs_nss_7, vht_rx_mcs_nss_8;
  504. int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2,
  505. vht_tx_mcs_nss_3, vht_tx_mcs_nss_4,
  506. vht_tx_mcs_nss_5, vht_tx_mcs_nss_6,
  507. vht_tx_mcs_nss_7, vht_tx_mcs_nss_8;
  508. #endif /* CONFIG_VHT_OVERRIDES */
  509. /**
  510. * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
  511. *
  512. * This timeout value is used in AP mode to clean up inactive stations.
  513. * By default: 300 seconds.
  514. */
  515. int ap_max_inactivity;
  516. /**
  517. * dtim_period - DTIM period in Beacon intervals
  518. * By default: 2
  519. */
  520. int dtim_period;
  521. /**
  522. * beacon_int - Beacon interval (default: 100 TU)
  523. */
  524. int beacon_int;
  525. /**
  526. * auth_failures - Number of consecutive authentication failures
  527. */
  528. unsigned int auth_failures;
  529. /**
  530. * disabled_until - Network block disabled until this time if non-zero
  531. */
  532. struct os_time disabled_until;
  533. /**
  534. * parent_cred - Pointer to parent wpa_cred entry
  535. *
  536. * This pointer can be used to delete temporary networks when a wpa_cred
  537. * that was used to create them is removed. This pointer should not be
  538. * dereferences since it may not be updated in all cases.
  539. */
  540. void *parent_cred;
  541. };
  542. #endif /* CONFIG_SSID_H */