config_ssid.h 24 KB

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