config_ssid.h 19 KB

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