config_ssid.h 22 KB

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