config_ssid.h 16 KB

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