config_ssid.h 19 KB

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