config.h 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218
  1. /*
  2. * WPA Supplicant / Configuration file structures
  3. * Copyright (c) 2003-2012, 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_H
  9. #define CONFIG_H
  10. #define DEFAULT_EAPOL_VERSION 1
  11. #ifdef CONFIG_NO_SCAN_PROCESSING
  12. #define DEFAULT_AP_SCAN 2
  13. #else /* CONFIG_NO_SCAN_PROCESSING */
  14. #define DEFAULT_AP_SCAN 1
  15. #endif /* CONFIG_NO_SCAN_PROCESSING */
  16. #define DEFAULT_USER_MPM 1
  17. #define DEFAULT_MAX_PEER_LINKS 99
  18. #define DEFAULT_FAST_REAUTH 1
  19. #define DEFAULT_P2P_GO_INTENT 7
  20. #define DEFAULT_P2P_INTRA_BSS 1
  21. #define DEFAULT_P2P_GO_MAX_INACTIVITY (5 * 60)
  22. #define DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN 0
  23. #define DEFAULT_BSS_MAX_COUNT 200
  24. #define DEFAULT_BSS_EXPIRATION_AGE 180
  25. #define DEFAULT_BSS_EXPIRATION_SCAN_COUNT 2
  26. #define DEFAULT_MAX_NUM_STA 128
  27. #define DEFAULT_ACCESS_NETWORK_TYPE 15
  28. #define DEFAULT_SCAN_CUR_FREQ 0
  29. #define DEFAULT_P2P_SEARCH_DELAY 500
  30. #define DEFAULT_RAND_ADDR_LIFETIME 60
  31. #define DEFAULT_KEY_MGMT_OFFLOAD 1
  32. #define DEFAULT_CERT_IN_CB 1
  33. #include "config_ssid.h"
  34. #include "wps/wps.h"
  35. #include "common/ieee802_11_common.h"
  36. struct wpa_cred {
  37. /**
  38. * next - Next credential in the list
  39. *
  40. * This pointer can be used to iterate over all credentials. The head
  41. * of this list is stored in the cred field of struct wpa_config.
  42. */
  43. struct wpa_cred *next;
  44. /**
  45. * id - Unique id for the credential
  46. *
  47. * This identifier is used as a unique identifier for each credential
  48. * block when using the control interface. Each credential is allocated
  49. * an id when it is being created, either when reading the
  50. * configuration file or when a new credential is added through the
  51. * control interface.
  52. */
  53. int id;
  54. /**
  55. * temporary - Whether this credential is temporary and not to be saved
  56. */
  57. int temporary;
  58. /**
  59. * priority - Priority group
  60. *
  61. * By default, all networks and credentials get the same priority group
  62. * (0). This field can be used to give higher priority for credentials
  63. * (and similarly in struct wpa_ssid for network blocks) to change the
  64. * Interworking automatic networking selection behavior. The matching
  65. * network (based on either an enabled network block or a credential)
  66. * with the highest priority value will be selected.
  67. */
  68. int priority;
  69. /**
  70. * pcsc - Use PC/SC and SIM/USIM card
  71. */
  72. int pcsc;
  73. /**
  74. * realm - Home Realm for Interworking
  75. */
  76. char *realm;
  77. /**
  78. * username - Username for Interworking network selection
  79. */
  80. char *username;
  81. /**
  82. * password - Password for Interworking network selection
  83. */
  84. char *password;
  85. /**
  86. * ext_password - Whether password is a name for external storage
  87. */
  88. int ext_password;
  89. /**
  90. * ca_cert - CA certificate for Interworking network selection
  91. */
  92. char *ca_cert;
  93. /**
  94. * client_cert - File path to client certificate file (PEM/DER)
  95. *
  96. * This field is used with Interworking networking selection for a case
  97. * where client certificate/private key is used for authentication
  98. * (EAP-TLS). Full path to the file should be used since working
  99. * directory may change when wpa_supplicant is run in the background.
  100. *
  101. * Alternatively, a named configuration blob can be used by setting
  102. * this to blob://blob_name.
  103. */
  104. char *client_cert;
  105. /**
  106. * private_key - File path to client private key file (PEM/DER/PFX)
  107. *
  108. * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
  109. * commented out. Both the private key and certificate will be read
  110. * from the PKCS#12 file in this case. Full path to the file should be
  111. * used since working directory may change when wpa_supplicant is run
  112. * in the background.
  113. *
  114. * Windows certificate store can be used by leaving client_cert out and
  115. * configuring private_key in one of the following formats:
  116. *
  117. * cert://substring_to_match
  118. *
  119. * hash://certificate_thumbprint_in_hex
  120. *
  121. * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
  122. *
  123. * Note that when running wpa_supplicant as an application, the user
  124. * certificate store (My user account) is used, whereas computer store
  125. * (Computer account) is used when running wpasvc as a service.
  126. *
  127. * Alternatively, a named configuration blob can be used by setting
  128. * this to blob://blob_name.
  129. */
  130. char *private_key;
  131. /**
  132. * private_key_passwd - Password for private key file
  133. */
  134. char *private_key_passwd;
  135. /**
  136. * imsi - IMSI in <MCC> | <MNC> | '-' | <MSIN> format
  137. */
  138. char *imsi;
  139. /**
  140. * milenage - Milenage parameters for SIM/USIM simulator in
  141. * <Ki>:<OPc>:<SQN> format
  142. */
  143. char *milenage;
  144. /**
  145. * domain_suffix_match - Constraint for server domain name
  146. *
  147. * If set, this FQDN is used as a suffix match requirement for the AAA
  148. * server certificate in SubjectAltName dNSName element(s). If a
  149. * matching dNSName is found, this constraint is met. If no dNSName
  150. * values are present, this constraint is matched against SubjectName CN
  151. * using same suffix match comparison. Suffix match here means that the
  152. * host/domain name is compared one label at a time starting from the
  153. * top-level domain and all the labels in @domain_suffix_match shall be
  154. * included in the certificate. The certificate may include additional
  155. * sub-level labels in addition to the required labels.
  156. *
  157. * For example, domain_suffix_match=example.com would match
  158. * test.example.com but would not match test-example.com.
  159. */
  160. char *domain_suffix_match;
  161. /**
  162. * domain - Home service provider FQDN(s)
  163. *
  164. * This is used to compare against the Domain Name List to figure out
  165. * whether the AP is operated by the Home SP. Multiple domain entries
  166. * can be used to configure alternative FQDNs that will be considered
  167. * home networks.
  168. */
  169. char **domain;
  170. /**
  171. * num_domain - Number of FQDNs in the domain array
  172. */
  173. size_t num_domain;
  174. /**
  175. * roaming_consortium - Roaming Consortium OI
  176. *
  177. * If roaming_consortium_len is non-zero, this field contains the
  178. * Roaming Consortium OI that can be used to determine which access
  179. * points support authentication with this credential. This is an
  180. * alternative to the use of the realm parameter. When using Roaming
  181. * Consortium to match the network, the EAP parameters need to be
  182. * pre-configured with the credential since the NAI Realm information
  183. * may not be available or fetched.
  184. */
  185. u8 roaming_consortium[15];
  186. /**
  187. * roaming_consortium_len - Length of roaming_consortium
  188. */
  189. size_t roaming_consortium_len;
  190. u8 required_roaming_consortium[15];
  191. size_t required_roaming_consortium_len;
  192. /**
  193. * eap_method - EAP method to use
  194. *
  195. * Pre-configured EAP method to use with this credential or %NULL to
  196. * indicate no EAP method is selected, i.e., the method will be
  197. * selected automatically based on ANQP information.
  198. */
  199. struct eap_method_type *eap_method;
  200. /**
  201. * phase1 - Phase 1 (outer authentication) parameters
  202. *
  203. * Pre-configured EAP parameters or %NULL.
  204. */
  205. char *phase1;
  206. /**
  207. * phase2 - Phase 2 (inner authentication) parameters
  208. *
  209. * Pre-configured EAP parameters or %NULL.
  210. */
  211. char *phase2;
  212. struct excluded_ssid {
  213. u8 ssid[MAX_SSID_LEN];
  214. size_t ssid_len;
  215. } *excluded_ssid;
  216. size_t num_excluded_ssid;
  217. struct roaming_partner {
  218. char fqdn[128];
  219. int exact_match;
  220. u8 priority;
  221. char country[3];
  222. } *roaming_partner;
  223. size_t num_roaming_partner;
  224. int update_identifier;
  225. /**
  226. * provisioning_sp - FQDN of the SP that provisioned the credential
  227. */
  228. char *provisioning_sp;
  229. /**
  230. * sp_priority - Credential priority within a provisioning SP
  231. *
  232. * This is the priority of the credential among all credentials
  233. * provisionined by the same SP (i.e., for entries that have identical
  234. * provisioning_sp value). The range of this priority is 0-255 with 0
  235. * being the highest and 255 the lower priority.
  236. */
  237. int sp_priority;
  238. unsigned int min_dl_bandwidth_home;
  239. unsigned int min_ul_bandwidth_home;
  240. unsigned int min_dl_bandwidth_roaming;
  241. unsigned int min_ul_bandwidth_roaming;
  242. /**
  243. * max_bss_load - Maximum BSS Load Channel Utilization (1..255)
  244. * This value is used as the maximum channel utilization for network
  245. * selection purposes for home networks. If the AP does not advertise
  246. * BSS Load or if the limit would prevent any connection, this
  247. * constraint will be ignored.
  248. */
  249. unsigned int max_bss_load;
  250. unsigned int num_req_conn_capab;
  251. u8 *req_conn_capab_proto;
  252. int **req_conn_capab_port;
  253. /**
  254. * ocsp - Whether to use/require OCSP to check server certificate
  255. *
  256. * 0 = do not use OCSP stapling (TLS certificate status extension)
  257. * 1 = try to use OCSP stapling, but not require response
  258. * 2 = require valid OCSP stapling response
  259. */
  260. int ocsp;
  261. /**
  262. * sim_num - User selected SIM identifier
  263. *
  264. * This variable is used for identifying which SIM is used if the system
  265. * has more than one.
  266. */
  267. int sim_num;
  268. };
  269. #define CFG_CHANGED_DEVICE_NAME BIT(0)
  270. #define CFG_CHANGED_CONFIG_METHODS BIT(1)
  271. #define CFG_CHANGED_DEVICE_TYPE BIT(2)
  272. #define CFG_CHANGED_OS_VERSION BIT(3)
  273. #define CFG_CHANGED_UUID BIT(4)
  274. #define CFG_CHANGED_COUNTRY BIT(5)
  275. #define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
  276. #define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
  277. #define CFG_CHANGED_WPS_STRING BIT(8)
  278. #define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
  279. #define CFG_CHANGED_VENDOR_EXTENSION BIT(10)
  280. #define CFG_CHANGED_P2P_LISTEN_CHANNEL BIT(11)
  281. #define CFG_CHANGED_P2P_OPER_CHANNEL BIT(12)
  282. #define CFG_CHANGED_P2P_PREF_CHAN BIT(13)
  283. #define CFG_CHANGED_EXT_PW_BACKEND BIT(14)
  284. #define CFG_CHANGED_NFC_PASSWORD_TOKEN BIT(15)
  285. #define CFG_CHANGED_P2P_PASSPHRASE_LEN BIT(16)
  286. /**
  287. * struct wpa_config - wpa_supplicant configuration data
  288. *
  289. * This data structure is presents the per-interface (radio) configuration
  290. * data. In many cases, there is only one struct wpa_config instance, but if
  291. * more than one network interface is being controlled, one instance is used
  292. * for each.
  293. */
  294. struct wpa_config {
  295. /**
  296. * ssid - Head of the global network list
  297. *
  298. * This is the head for the list of all the configured networks.
  299. */
  300. struct wpa_ssid *ssid;
  301. /**
  302. * pssid - Per-priority network lists (in priority order)
  303. */
  304. struct wpa_ssid **pssid;
  305. /**
  306. * num_prio - Number of different priorities used in the pssid lists
  307. *
  308. * This indicates how many per-priority network lists are included in
  309. * pssid.
  310. */
  311. int num_prio;
  312. /**
  313. * cred - Head of the credential list
  314. *
  315. * This is the head for the list of all the configured credentials.
  316. */
  317. struct wpa_cred *cred;
  318. /**
  319. * eapol_version - IEEE 802.1X/EAPOL version number
  320. *
  321. * wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which
  322. * defines EAPOL version 2. However, there are many APs that do not
  323. * handle the new version number correctly (they seem to drop the
  324. * frames completely). In order to make wpa_supplicant interoperate
  325. * with these APs, the version number is set to 1 by default. This
  326. * configuration value can be used to set it to the new version (2).
  327. */
  328. int eapol_version;
  329. /**
  330. * ap_scan - AP scanning/selection
  331. *
  332. * By default, wpa_supplicant requests driver to perform AP
  333. * scanning and then uses the scan results to select a
  334. * suitable AP. Another alternative is to allow the driver to
  335. * take care of AP scanning and selection and use
  336. * wpa_supplicant just to process EAPOL frames based on IEEE
  337. * 802.11 association information from the driver.
  338. *
  339. * 1: wpa_supplicant initiates scanning and AP selection (default).
  340. *
  341. * 0: Driver takes care of scanning, AP selection, and IEEE 802.11
  342. * association parameters (e.g., WPA IE generation); this mode can
  343. * also be used with non-WPA drivers when using IEEE 802.1X mode;
  344. * do not try to associate with APs (i.e., external program needs
  345. * to control association). This mode must also be used when using
  346. * wired Ethernet drivers.
  347. *
  348. * 2: like 0, but associate with APs using security policy and SSID
  349. * (but not BSSID); this can be used, e.g., with ndiswrapper and NDIS
  350. * drivers to enable operation with hidden SSIDs and optimized roaming;
  351. * in this mode, the network blocks in the configuration are tried
  352. * one by one until the driver reports successful association; each
  353. * network block should have explicit security policy (i.e., only one
  354. * option in the lists) for key_mgmt, pairwise, group, proto variables.
  355. */
  356. int ap_scan;
  357. /**
  358. * bgscan - Background scan and roaming parameters or %NULL if none
  359. *
  360. * This is an optional set of parameters for background scanning and
  361. * roaming within a network (ESS). For more detailed information see
  362. * ssid block documentation.
  363. *
  364. * The variable defines default bgscan behavior for all BSS station
  365. * networks except for those which have their own bgscan configuration.
  366. */
  367. char *bgscan;
  368. /**
  369. * disable_scan_offload - Disable automatic offloading of scan requests
  370. *
  371. * By default, %wpa_supplicant tries to offload scanning if the driver
  372. * indicates support for this (sched_scan). This configuration
  373. * parameter can be used to disable this offloading mechanism.
  374. */
  375. int disable_scan_offload;
  376. /**
  377. * ctrl_interface - Parameters for the control interface
  378. *
  379. * If this is specified, %wpa_supplicant will open a control interface
  380. * that is available for external programs to manage %wpa_supplicant.
  381. * The meaning of this string depends on which control interface
  382. * mechanism is used. For all cases, the existence of this parameter
  383. * in configuration is used to determine whether the control interface
  384. * is enabled.
  385. *
  386. * For UNIX domain sockets (default on Linux and BSD): This is a
  387. * directory that will be created for UNIX domain sockets for listening
  388. * to requests from external programs (CLI/GUI, etc.) for status
  389. * information and configuration. The socket file will be named based
  390. * on the interface name, so multiple %wpa_supplicant processes can be
  391. * run at the same time if more than one interface is used.
  392. * /var/run/wpa_supplicant is the recommended directory for sockets and
  393. * by default, wpa_cli will use it when trying to connect with
  394. * %wpa_supplicant.
  395. *
  396. * Access control for the control interface can be configured
  397. * by setting the directory to allow only members of a group
  398. * to use sockets. This way, it is possible to run
  399. * %wpa_supplicant as root (since it needs to change network
  400. * configuration and open raw sockets) and still allow GUI/CLI
  401. * components to be run as non-root users. However, since the
  402. * control interface can be used to change the network
  403. * configuration, this access needs to be protected in many
  404. * cases. By default, %wpa_supplicant is configured to use gid
  405. * 0 (root). If you want to allow non-root users to use the
  406. * control interface, add a new group and change this value to
  407. * match with that group. Add users that should have control
  408. * interface access to this group.
  409. *
  410. * When configuring both the directory and group, use following format:
  411. * DIR=/var/run/wpa_supplicant GROUP=wheel
  412. * DIR=/var/run/wpa_supplicant GROUP=0
  413. * (group can be either group name or gid)
  414. *
  415. * For UDP connections (default on Windows): The value will be ignored.
  416. * This variable is just used to select that the control interface is
  417. * to be created. The value can be set to, e.g., udp
  418. * (ctrl_interface=udp).
  419. *
  420. * For Windows Named Pipe: This value can be used to set the security
  421. * descriptor for controlling access to the control interface. Security
  422. * descriptor can be set using Security Descriptor String Format (see
  423. * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthz/security/security_descriptor_string_format.asp).
  424. * The descriptor string needs to be prefixed with SDDL=. For example,
  425. * ctrl_interface=SDDL=D: would set an empty DACL (which will reject
  426. * all connections).
  427. */
  428. char *ctrl_interface;
  429. /**
  430. * ctrl_interface_group - Control interface group (DEPRECATED)
  431. *
  432. * This variable is only used for backwards compatibility. Group for
  433. * UNIX domain sockets should now be specified using GROUP=group in
  434. * ctrl_interface variable.
  435. */
  436. char *ctrl_interface_group;
  437. /**
  438. * fast_reauth - EAP fast re-authentication (session resumption)
  439. *
  440. * By default, fast re-authentication is enabled for all EAP methods
  441. * that support it. This variable can be used to disable fast
  442. * re-authentication (by setting fast_reauth=0). Normally, there is no
  443. * need to disable fast re-authentication.
  444. */
  445. int fast_reauth;
  446. /**
  447. * opensc_engine_path - Path to the OpenSSL engine for opensc
  448. *
  449. * This is an OpenSSL specific configuration option for loading OpenSC
  450. * engine (engine_opensc.so); if %NULL, this engine is not loaded.
  451. */
  452. char *opensc_engine_path;
  453. /**
  454. * pkcs11_engine_path - Path to the OpenSSL engine for PKCS#11
  455. *
  456. * This is an OpenSSL specific configuration option for loading PKCS#11
  457. * engine (engine_pkcs11.so); if %NULL, this engine is not loaded.
  458. */
  459. char *pkcs11_engine_path;
  460. /**
  461. * pkcs11_module_path - Path to the OpenSSL OpenSC/PKCS#11 module
  462. *
  463. * This is an OpenSSL specific configuration option for configuring
  464. * path to OpenSC/PKCS#11 engine (opensc-pkcs11.so); if %NULL, this
  465. * module is not loaded.
  466. */
  467. char *pkcs11_module_path;
  468. /**
  469. * openssl_ciphers - OpenSSL cipher string
  470. *
  471. * This is an OpenSSL specific configuration option for configuring the
  472. * default ciphers. If not set, "DEFAULT:!EXP:!LOW" is used as the
  473. * default.
  474. */
  475. char *openssl_ciphers;
  476. /**
  477. * pcsc_reader - PC/SC reader name prefix
  478. *
  479. * If not %NULL, PC/SC reader with a name that matches this prefix is
  480. * initialized for SIM/USIM access. Empty string can be used to match
  481. * the first available reader.
  482. */
  483. char *pcsc_reader;
  484. /**
  485. * pcsc_pin - PIN for USIM, GSM SIM, and smartcards
  486. *
  487. * This field is used to configure PIN for SIM/USIM for EAP-SIM and
  488. * EAP-AKA. If left out, this will be asked through control interface.
  489. */
  490. char *pcsc_pin;
  491. /**
  492. * external_sim - Use external processing for SIM/USIM operations
  493. */
  494. int external_sim;
  495. /**
  496. * driver_param - Driver interface parameters
  497. *
  498. * This text string is passed to the selected driver interface with the
  499. * optional struct wpa_driver_ops::set_param() handler. This can be
  500. * used to configure driver specific options without having to add new
  501. * driver interface functionality.
  502. */
  503. char *driver_param;
  504. /**
  505. * dot11RSNAConfigPMKLifetime - Maximum lifetime of a PMK
  506. *
  507. * dot11 MIB variable for the maximum lifetime of a PMK in the PMK
  508. * cache (unit: seconds).
  509. */
  510. unsigned int dot11RSNAConfigPMKLifetime;
  511. /**
  512. * dot11RSNAConfigPMKReauthThreshold - PMK re-authentication threshold
  513. *
  514. * dot11 MIB variable for the percentage of the PMK lifetime
  515. * that should expire before an IEEE 802.1X reauthentication occurs.
  516. */
  517. unsigned int dot11RSNAConfigPMKReauthThreshold;
  518. /**
  519. * dot11RSNAConfigSATimeout - Security association timeout
  520. *
  521. * dot11 MIB variable for the maximum time a security association
  522. * shall take to set up (unit: seconds).
  523. */
  524. unsigned int dot11RSNAConfigSATimeout;
  525. /**
  526. * update_config - Is wpa_supplicant allowed to update configuration
  527. *
  528. * This variable control whether wpa_supplicant is allow to re-write
  529. * its configuration with wpa_config_write(). If this is zero,
  530. * configuration data is only changed in memory and the external data
  531. * is not overriden. If this is non-zero, wpa_supplicant will update
  532. * the configuration data (e.g., a file) whenever configuration is
  533. * changed. This update may replace the old configuration which can
  534. * remove comments from it in case of a text file configuration.
  535. */
  536. int update_config;
  537. /**
  538. * blobs - Configuration blobs
  539. */
  540. struct wpa_config_blob *blobs;
  541. /**
  542. * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
  543. */
  544. u8 uuid[16];
  545. /**
  546. * device_name - Device Name (WPS)
  547. * User-friendly description of device; up to 32 octets encoded in
  548. * UTF-8
  549. */
  550. char *device_name;
  551. /**
  552. * manufacturer - Manufacturer (WPS)
  553. * The manufacturer of the device (up to 64 ASCII characters)
  554. */
  555. char *manufacturer;
  556. /**
  557. * model_name - Model Name (WPS)
  558. * Model of the device (up to 32 ASCII characters)
  559. */
  560. char *model_name;
  561. /**
  562. * model_number - Model Number (WPS)
  563. * Additional device description (up to 32 ASCII characters)
  564. */
  565. char *model_number;
  566. /**
  567. * serial_number - Serial Number (WPS)
  568. * Serial number of the device (up to 32 characters)
  569. */
  570. char *serial_number;
  571. /**
  572. * device_type - Primary Device Type (WPS)
  573. */
  574. u8 device_type[WPS_DEV_TYPE_LEN];
  575. /**
  576. * config_methods - Config Methods
  577. *
  578. * This is a space-separated list of supported WPS configuration
  579. * methods. For example, "label virtual_display virtual_push_button
  580. * keypad".
  581. * Available methods: usba ethernet label display ext_nfc_token
  582. * int_nfc_token nfc_interface push_button keypad
  583. * virtual_display physical_display
  584. * virtual_push_button physical_push_button.
  585. */
  586. char *config_methods;
  587. /**
  588. * os_version - OS Version (WPS)
  589. * 4-octet operating system version number
  590. */
  591. u8 os_version[4];
  592. /**
  593. * country - Country code
  594. *
  595. * This is the ISO/IEC alpha2 country code for which we are operating
  596. * in
  597. */
  598. char country[2];
  599. /**
  600. * wps_cred_processing - Credential processing
  601. *
  602. * 0 = process received credentials internally
  603. * 1 = do not process received credentials; just pass them over
  604. * ctrl_iface to external program(s)
  605. * 2 = process received credentials internally and pass them over
  606. * ctrl_iface to external program(s)
  607. */
  608. int wps_cred_processing;
  609. #define MAX_SEC_DEVICE_TYPES 5
  610. /**
  611. * sec_device_types - Secondary Device Types (P2P)
  612. */
  613. u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
  614. int num_sec_device_types;
  615. int p2p_listen_reg_class;
  616. int p2p_listen_channel;
  617. int p2p_oper_reg_class;
  618. int p2p_oper_channel;
  619. int p2p_go_intent;
  620. char *p2p_ssid_postfix;
  621. int persistent_reconnect;
  622. int p2p_intra_bss;
  623. unsigned int num_p2p_pref_chan;
  624. struct p2p_channel *p2p_pref_chan;
  625. struct wpa_freq_range_list p2p_no_go_freq;
  626. int p2p_add_cli_chan;
  627. int p2p_ignore_shared_freq;
  628. int p2p_optimize_listen_chan;
  629. struct wpabuf *wps_vendor_ext_m1;
  630. #define MAX_WPS_VENDOR_EXT 10
  631. /**
  632. * wps_vendor_ext - Vendor extension attributes in WPS
  633. */
  634. struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXT];
  635. /**
  636. * p2p_group_idle - Maximum idle time in seconds for P2P group
  637. *
  638. * This value controls how long a P2P group is maintained after there
  639. * is no other members in the group. As a GO, this means no associated
  640. * stations in the group. As a P2P client, this means no GO seen in
  641. * scan results. The maximum idle time is specified in seconds with 0
  642. * indicating no time limit, i.e., the P2P group remains in active
  643. * state indefinitely until explicitly removed. As a P2P client, the
  644. * maximum idle time of P2P_MAX_CLIENT_IDLE seconds is enforced, i.e.,
  645. * this parameter is mainly meant for GO use and for P2P client, it can
  646. * only be used to reduce the default timeout to smaller value. A
  647. * special value -1 can be used to configure immediate removal of the
  648. * group for P2P client role on any disconnection after the data
  649. * connection has been established.
  650. */
  651. int p2p_group_idle;
  652. /**
  653. * p2p_passphrase_len - Passphrase length (8..63) for P2P GO
  654. *
  655. * This parameter controls the length of the random passphrase that is
  656. * generated at the GO.
  657. */
  658. unsigned int p2p_passphrase_len;
  659. /**
  660. * bss_max_count - Maximum number of BSS entries to keep in memory
  661. */
  662. unsigned int bss_max_count;
  663. /**
  664. * bss_expiration_age - BSS entry age after which it can be expired
  665. *
  666. * This value controls the time in seconds after which a BSS entry
  667. * gets removed if it has not been updated or is not in use.
  668. */
  669. unsigned int bss_expiration_age;
  670. /**
  671. * bss_expiration_scan_count - Expire BSS after number of scans
  672. *
  673. * If the BSS entry has not been seen in this many scans, it will be
  674. * removed. A value of 1 means that entry is removed after the first
  675. * scan in which the BSSID is not seen. Larger values can be used
  676. * to avoid BSS entries disappearing if they are not visible in
  677. * every scan (e.g., low signal quality or interference).
  678. */
  679. unsigned int bss_expiration_scan_count;
  680. /**
  681. * filter_ssids - SSID-based scan result filtering
  682. *
  683. * 0 = do not filter scan results
  684. * 1 = only include configured SSIDs in scan results/BSS table
  685. */
  686. int filter_ssids;
  687. /**
  688. * filter_rssi - RSSI-based scan result filtering
  689. *
  690. * 0 = do not filter scan results
  691. * -n = filter scan results below -n dBm
  692. */
  693. int filter_rssi;
  694. /**
  695. * max_num_sta - Maximum number of STAs in an AP/P2P GO
  696. */
  697. unsigned int max_num_sta;
  698. /**
  699. * freq_list - Array of allowed scan frequencies or %NULL for all
  700. *
  701. * This is an optional zero-terminated array of frequencies in
  702. * megahertz (MHz) to allow for narrowing scanning range.
  703. */
  704. int *freq_list;
  705. /**
  706. * scan_cur_freq - Whether to scan only the current channel
  707. *
  708. * If true, attempt to scan only the current channel if any other
  709. * VIFs on this radio are already associated on a particular channel.
  710. */
  711. int scan_cur_freq;
  712. /**
  713. * changed_parameters - Bitmap of changed parameters since last update
  714. */
  715. unsigned int changed_parameters;
  716. /**
  717. * disassoc_low_ack - Disassocicate stations with massive packet loss
  718. */
  719. int disassoc_low_ack;
  720. /**
  721. * interworking - Whether Interworking (IEEE 802.11u) is enabled
  722. */
  723. int interworking;
  724. /**
  725. * access_network_type - Access Network Type
  726. *
  727. * When Interworking is enabled, scans will be limited to APs that
  728. * advertise the specified Access Network Type (0..15; with 15
  729. * indicating wildcard match).
  730. */
  731. int access_network_type;
  732. /**
  733. * hessid - Homogenous ESS identifier
  734. *
  735. * If this is set (any octet is non-zero), scans will be used to
  736. * request response only from BSSes belonging to the specified
  737. * Homogeneous ESS. This is used only if interworking is enabled.
  738. */
  739. u8 hessid[ETH_ALEN];
  740. /**
  741. * hs20 - Hotspot 2.0
  742. */
  743. int hs20;
  744. /**
  745. * pbc_in_m1 - AP mode WPS probing workaround for PBC with Windows 7
  746. *
  747. * Windows 7 uses incorrect way of figuring out AP's WPS capabilities
  748. * by acting as a Registrar and using M1 from the AP. The config
  749. * methods attribute in that message is supposed to indicate only the
  750. * configuration method supported by the AP in Enrollee role, i.e., to
  751. * add an external Registrar. For that case, PBC shall not be used and
  752. * as such, the PushButton config method is removed from M1 by default.
  753. * If pbc_in_m1=1 is included in the configuration file, the PushButton
  754. * config method is left in M1 (if included in config_methods
  755. * parameter) to allow Windows 7 to use PBC instead of PIN (e.g., from
  756. * a label in the AP).
  757. */
  758. int pbc_in_m1;
  759. /**
  760. * autoscan - Automatic scan parameters or %NULL if none
  761. *
  762. * This is an optional set of parameters for automatic scanning
  763. * within an interface in following format:
  764. * <autoscan module name>:<module parameters>
  765. */
  766. char *autoscan;
  767. /**
  768. * wps_nfc_pw_from_config - NFC Device Password was read from config
  769. *
  770. * This parameter can be determined whether the NFC Device Password was
  771. * included in the configuration (1) or generated dynamically (0). Only
  772. * the former case is re-written back to the configuration file.
  773. */
  774. int wps_nfc_pw_from_config;
  775. /**
  776. * wps_nfc_dev_pw_id - NFC Device Password ID for password token
  777. */
  778. int wps_nfc_dev_pw_id;
  779. /**
  780. * wps_nfc_dh_pubkey - NFC DH Public Key for password token
  781. */
  782. struct wpabuf *wps_nfc_dh_pubkey;
  783. /**
  784. * wps_nfc_dh_privkey - NFC DH Private Key for password token
  785. */
  786. struct wpabuf *wps_nfc_dh_privkey;
  787. /**
  788. * wps_nfc_dev_pw - NFC Device Password for password token
  789. */
  790. struct wpabuf *wps_nfc_dev_pw;
  791. /**
  792. * ext_password_backend - External password backend or %NULL if none
  793. *
  794. * format: <backend name>[:<optional backend parameters>]
  795. */
  796. char *ext_password_backend;
  797. /*
  798. * p2p_go_max_inactivity - Timeout in seconds to detect STA inactivity
  799. *
  800. * This timeout value is used in P2P GO mode to clean up
  801. * inactive stations.
  802. * By default: 300 seconds.
  803. */
  804. int p2p_go_max_inactivity;
  805. struct hostapd_wmm_ac_params wmm_ac_params[4];
  806. /**
  807. * auto_interworking - Whether to use network selection automatically
  808. *
  809. * 0 = do not automatically go through Interworking network selection
  810. * (i.e., require explicit interworking_select command for this)
  811. * 1 = perform Interworking network selection if one or more
  812. * credentials have been configured and scan did not find a
  813. * matching network block
  814. */
  815. int auto_interworking;
  816. /**
  817. * p2p_go_ht40 - Default mode for HT40 enable when operating as GO.
  818. *
  819. * This will take effect for p2p_group_add, p2p_connect, and p2p_invite.
  820. * Note that regulatory constraints and driver capabilities are
  821. * consulted anyway, so setting it to 1 can't do real harm.
  822. * By default: 0 (disabled)
  823. */
  824. int p2p_go_ht40;
  825. /**
  826. * p2p_go_vht - Default mode for VHT enable when operating as GO
  827. *
  828. * This will take effect for p2p_group_add, p2p_connect, and p2p_invite.
  829. * Note that regulatory constraints and driver capabilities are
  830. * consulted anyway, so setting it to 1 can't do real harm.
  831. * By default: 0 (disabled)
  832. */
  833. int p2p_go_vht;
  834. /**
  835. * p2p_disabled - Whether P2P operations are disabled for this interface
  836. */
  837. int p2p_disabled;
  838. /**
  839. * p2p_no_group_iface - Whether group interfaces can be used
  840. *
  841. * By default, wpa_supplicant will create a separate interface for P2P
  842. * group operations if the driver supports this. This functionality can
  843. * be disabled by setting this parameter to 1. In that case, the same
  844. * interface that was used for the P2P management operations is used
  845. * also for the group operation.
  846. */
  847. int p2p_no_group_iface;
  848. /**
  849. * okc - Whether to enable opportunistic key caching by default
  850. *
  851. * By default, OKC is disabled unless enabled by the per-network
  852. * proactive_key_caching=1 parameter. okc=1 can be used to change this
  853. * default behavior.
  854. */
  855. int okc;
  856. /**
  857. * pmf - Whether to enable/require PMF by default
  858. *
  859. * By default, PMF is disabled unless enabled by the per-network
  860. * ieee80211w=1 or ieee80211w=2 parameter. pmf=1/2 can be used to change
  861. * this default behavior.
  862. */
  863. enum mfp_options pmf;
  864. /**
  865. * sae_groups - Preference list of enabled groups for SAE
  866. *
  867. * By default (if this parameter is not set), the mandatory group 19
  868. * (ECC group defined over a 256-bit prime order field) is preferred,
  869. * but other groups are also enabled. If this parameter is set, the
  870. * groups will be tried in the indicated order.
  871. */
  872. int *sae_groups;
  873. /**
  874. * dtim_period - Default DTIM period in Beacon intervals
  875. *
  876. * This parameter can be used to set the default value for network
  877. * blocks that do not specify dtim_period.
  878. */
  879. int dtim_period;
  880. /**
  881. * beacon_int - Default Beacon interval in TU
  882. *
  883. * This parameter can be used to set the default value for network
  884. * blocks that do not specify beacon_int.
  885. */
  886. int beacon_int;
  887. /**
  888. * ap_vendor_elements: Vendor specific elements for Beacon/ProbeResp
  889. *
  890. * This parameter can be used to define additional vendor specific
  891. * elements for Beacon and Probe Response frames in AP/P2P GO mode. The
  892. * format for these element(s) is a hexdump of the raw information
  893. * elements (id+len+payload for one or more elements).
  894. */
  895. struct wpabuf *ap_vendor_elements;
  896. /**
  897. * ignore_old_scan_res - Ignore scan results older than request
  898. *
  899. * The driver may have a cache of scan results that makes it return
  900. * information that is older than our scan trigger. This parameter can
  901. * be used to configure such old information to be ignored instead of
  902. * allowing it to update the internal BSS table.
  903. */
  904. int ignore_old_scan_res;
  905. /**
  906. * sched_scan_interval - schedule scan interval
  907. */
  908. unsigned int sched_scan_interval;
  909. /**
  910. * tdls_external_control - External control for TDLS setup requests
  911. *
  912. * Enable TDLS mode where external programs are given the control
  913. * to specify the TDLS link to get established to the driver. The
  914. * driver requests the TDLS setup to the supplicant only for the
  915. * specified TDLS peers.
  916. */
  917. int tdls_external_control;
  918. u8 ip_addr_go[4];
  919. u8 ip_addr_mask[4];
  920. u8 ip_addr_start[4];
  921. u8 ip_addr_end[4];
  922. /**
  923. * osu_dir - OSU provider information directory
  924. *
  925. * If set, allow FETCH_OSU control interface command to be used to fetch
  926. * OSU provider information into all APs and store the results in this
  927. * directory.
  928. */
  929. char *osu_dir;
  930. /**
  931. * wowlan_triggers - Wake-on-WLAN triggers
  932. *
  933. * If set, these wowlan triggers will be configured.
  934. */
  935. char *wowlan_triggers;
  936. /**
  937. * p2p_search_delay - Extra delay between concurrent search iterations
  938. *
  939. * Add extra delay (in milliseconds) between search iterations when
  940. * there is a concurrent operation to make p2p_find friendlier to
  941. * concurrent operations by avoiding it from taking 100% of radio
  942. * resources.
  943. */
  944. unsigned int p2p_search_delay;
  945. /**
  946. * mac_addr - MAC address policy default
  947. *
  948. * 0 = use permanent MAC address
  949. * 1 = use random MAC address for each ESS connection
  950. * 2 = like 1, but maintain OUI (with local admin bit set)
  951. *
  952. * By default, permanent MAC address is used unless policy is changed by
  953. * the per-network mac_addr parameter. Global mac_addr=1 can be used to
  954. * change this default behavior.
  955. */
  956. int mac_addr;
  957. /**
  958. * rand_addr_lifetime - Lifetime of random MAC address in seconds
  959. */
  960. unsigned int rand_addr_lifetime;
  961. /**
  962. * preassoc_mac_addr - Pre-association MAC address policy
  963. *
  964. * 0 = use permanent MAC address
  965. * 1 = use random MAC address
  966. * 2 = like 1, but maintain OUI (with local admin bit set)
  967. */
  968. int preassoc_mac_addr;
  969. /**
  970. * key_mgmt_offload - Use key management offload
  971. *
  972. * Key management offload should be used if the device supports it.
  973. * Key management offload is the capability of a device operating as
  974. * a station to do the exchange necessary to establish temporal keys
  975. * during initial RSN connection, after roaming, or during a PTK
  976. * rekeying operation.
  977. */
  978. int key_mgmt_offload;
  979. /**
  980. * user_mpm - MPM residency
  981. *
  982. * 0: MPM lives in driver.
  983. * 1: wpa_supplicant handles peering and station allocation.
  984. *
  985. * If AMPE or SAE is enabled, the MPM is always in userspace.
  986. */
  987. int user_mpm;
  988. /**
  989. * max_peer_links - Maximum number of peer links
  990. *
  991. * Maximum number of mesh peering currently maintained by the STA.
  992. */
  993. int max_peer_links;
  994. /**
  995. * cert_in_cb - Whether to include a peer certificate dump in events
  996. *
  997. * This controls whether peer certificates for authentication server and
  998. * its certificate chain are included in EAP peer certificate events.
  999. */
  1000. int cert_in_cb;
  1001. };
  1002. /* Prototypes for common functions from config.c */
  1003. void wpa_config_free(struct wpa_config *ssid);
  1004. void wpa_config_free_ssid(struct wpa_ssid *ssid);
  1005. void wpa_config_foreach_network(struct wpa_config *config,
  1006. void (*func)(void *, struct wpa_ssid *),
  1007. void *arg);
  1008. struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
  1009. struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
  1010. int wpa_config_remove_network(struct wpa_config *config, int id);
  1011. void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
  1012. int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
  1013. int line);
  1014. int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
  1015. const char *value);
  1016. char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
  1017. char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
  1018. char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
  1019. void wpa_config_update_psk(struct wpa_ssid *ssid);
  1020. int wpa_config_add_prio_network(struct wpa_config *config,
  1021. struct wpa_ssid *ssid);
  1022. int wpa_config_update_prio_list(struct wpa_config *config);
  1023. const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
  1024. const char *name);
  1025. void wpa_config_set_blob(struct wpa_config *config,
  1026. struct wpa_config_blob *blob);
  1027. void wpa_config_free_blob(struct wpa_config_blob *blob);
  1028. int wpa_config_remove_blob(struct wpa_config *config, const char *name);
  1029. void wpa_config_flush_blobs(struct wpa_config *config);
  1030. struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id);
  1031. struct wpa_cred * wpa_config_add_cred(struct wpa_config *config);
  1032. int wpa_config_remove_cred(struct wpa_config *config, int id);
  1033. void wpa_config_free_cred(struct wpa_cred *cred);
  1034. int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
  1035. const char *value, int line);
  1036. char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var);
  1037. struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
  1038. const char *driver_param);
  1039. #ifndef CONFIG_NO_STDOUT_DEBUG
  1040. void wpa_config_debug_dump_networks(struct wpa_config *config);
  1041. #else /* CONFIG_NO_STDOUT_DEBUG */
  1042. #define wpa_config_debug_dump_networks(c) do { } while (0)
  1043. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1044. /* Prototypes for common functions from config.c */
  1045. int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
  1046. /* Prototypes for backend specific functions from the selected config_*.c */
  1047. /**
  1048. * wpa_config_read - Read and parse configuration database
  1049. * @name: Name of the configuration (e.g., path and file name for the
  1050. * configuration file)
  1051. * @cfgp: Pointer to previously allocated configuration data or %NULL if none
  1052. * Returns: Pointer to allocated configuration data or %NULL on failure
  1053. *
  1054. * This function reads configuration data, parses its contents, and allocates
  1055. * data structures needed for storing configuration information. The allocated
  1056. * data can be freed with wpa_config_free().
  1057. *
  1058. * Each configuration backend needs to implement this function.
  1059. */
  1060. struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp);
  1061. /**
  1062. * wpa_config_write - Write or update configuration data
  1063. * @name: Name of the configuration (e.g., path and file name for the
  1064. * configuration file)
  1065. * @config: Configuration data from wpa_config_read()
  1066. * Returns: 0 on success, -1 on failure
  1067. *
  1068. * This function write all configuration data into an external database (e.g.,
  1069. * a text file) in a format that can be read with wpa_config_read(). This can
  1070. * be used to allow wpa_supplicant to update its configuration, e.g., when a
  1071. * new network is added or a password is changed.
  1072. *
  1073. * Each configuration backend needs to implement this function.
  1074. */
  1075. int wpa_config_write(const char *name, struct wpa_config *config);
  1076. #endif /* CONFIG_H */