]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config.h
MBO: Add Multi Band Operation definitions
[thirdparty/hostap.git] / wpa_supplicant / config.h
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant / Configuration file structures
f64adcd7 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9#ifndef CONFIG_H
10#define CONFIG_H
11
12#define DEFAULT_EAPOL_VERSION 1
13#ifdef CONFIG_NO_SCAN_PROCESSING
14#define DEFAULT_AP_SCAN 2
15#else /* CONFIG_NO_SCAN_PROCESSING */
16#define DEFAULT_AP_SCAN 1
17#endif /* CONFIG_NO_SCAN_PROCESSING */
e45e8989 18#define DEFAULT_USER_MPM 1
4b409368 19#define DEFAULT_MAX_PEER_LINKS 99
5a2a6de6 20#define DEFAULT_MESH_MAX_INACTIVITY 300
ecd40fef
MH
21/*
22 * The default dot11RSNASAERetransPeriod is defined as 40 ms in the standard,
23 * but use 1000 ms in practice to avoid issues on low power CPUs.
24 */
25#define DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD 1000
6fc6879b 26#define DEFAULT_FAST_REAUTH 1
e3768e7c 27#define DEFAULT_P2P_GO_INTENT 7
0f66abd2 28#define DEFAULT_P2P_INTRA_BSS 1
462a7439 29#define DEFAULT_P2P_GO_MAX_INACTIVITY (5 * 60)
e3bd6e9d 30#define DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN 0
c9c38b09 31#define DEFAULT_BSS_MAX_COUNT 200
78633c37
SL
32#define DEFAULT_BSS_EXPIRATION_AGE 180
33#define DEFAULT_BSS_EXPIRATION_SCAN_COUNT 2
dae608d5 34#define DEFAULT_MAX_NUM_STA 128
11540c0b 35#define DEFAULT_ACCESS_NETWORK_TYPE 15
6124e858 36#define DEFAULT_SCAN_CUR_FREQ 0
d3b20469 37#define DEFAULT_P2P_SEARCH_DELAY 500
c267753b 38#define DEFAULT_RAND_ADDR_LIFETIME 60
b41f2684 39#define DEFAULT_KEY_MGMT_OFFLOAD 1
483dd6a5 40#define DEFAULT_CERT_IN_CB 1
0b8bcaa5 41#define DEFAULT_P2P_GO_CTWINDOW 0
73ed03f3 42#define DEFAULT_WPA_RSC_RELAXATION 1
6fc6879b
JM
43
44#include "config_ssid.h"
2f646b6e 45#include "wps/wps.h"
eaa8eefe 46#include "common/ieee802_11_defs.h"
c26effe1 47#include "common/ieee802_11_common.h"
6fc6879b
JM
48
49
1bb7b8e8
JM
50struct wpa_cred {
51 /**
52 * next - Next credential in the list
53 *
54 * This pointer can be used to iterate over all credentials. The head
55 * of this list is stored in the cred field of struct wpa_config.
56 */
57 struct wpa_cred *next;
58
59 /**
60 * id - Unique id for the credential
61 *
62 * This identifier is used as a unique identifier for each credential
63 * block when using the control interface. Each credential is allocated
64 * an id when it is being created, either when reading the
65 * configuration file or when a new credential is added through the
66 * control interface.
67 */
68 int id;
69
03ed3324
JM
70 /**
71 * temporary - Whether this credential is temporary and not to be saved
72 */
73 int temporary;
74
1a712d2f
JM
75 /**
76 * priority - Priority group
77 *
78 * By default, all networks and credentials get the same priority group
79 * (0). This field can be used to give higher priority for credentials
80 * (and similarly in struct wpa_ssid for network blocks) to change the
81 * Interworking automatic networking selection behavior. The matching
82 * network (based on either an enabled network block or a credential)
83 * with the highest priority value will be selected.
84 */
85 int priority;
86
d7b01abd
JM
87 /**
88 * pcsc - Use PC/SC and SIM/USIM card
89 */
90 int pcsc;
91
1bb7b8e8
JM
92 /**
93 * realm - Home Realm for Interworking
94 */
95 char *realm;
96
97 /**
98 * username - Username for Interworking network selection
99 */
100 char *username;
101
102 /**
103 * password - Password for Interworking network selection
104 */
105 char *password;
106
02af9c90
JM
107 /**
108 * ext_password - Whether password is a name for external storage
109 */
110 int ext_password;
111
1bb7b8e8
JM
112 /**
113 * ca_cert - CA certificate for Interworking network selection
114 */
115 char *ca_cert;
116
11e4f46a
JM
117 /**
118 * client_cert - File path to client certificate file (PEM/DER)
119 *
120 * This field is used with Interworking networking selection for a case
121 * where client certificate/private key is used for authentication
122 * (EAP-TLS). Full path to the file should be used since working
123 * directory may change when wpa_supplicant is run in the background.
124 *
125 * Alternatively, a named configuration blob can be used by setting
126 * this to blob://blob_name.
127 */
128 char *client_cert;
129
130 /**
131 * private_key - File path to client private key file (PEM/DER/PFX)
132 *
133 * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
134 * commented out. Both the private key and certificate will be read
135 * from the PKCS#12 file in this case. Full path to the file should be
136 * used since working directory may change when wpa_supplicant is run
137 * in the background.
138 *
139 * Windows certificate store can be used by leaving client_cert out and
140 * configuring private_key in one of the following formats:
141 *
142 * cert://substring_to_match
143 *
144 * hash://certificate_thumbprint_in_hex
145 *
146 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
147 *
148 * Note that when running wpa_supplicant as an application, the user
149 * certificate store (My user account) is used, whereas computer store
150 * (Computer account) is used when running wpasvc as a service.
151 *
152 * Alternatively, a named configuration blob can be used by setting
153 * this to blob://blob_name.
154 */
155 char *private_key;
156
157 /**
158 * private_key_passwd - Password for private key file
159 */
160 char *private_key_passwd;
161
1bb7b8e8
JM
162 /**
163 * imsi - IMSI in <MCC> | <MNC> | '-' | <MSIN> format
164 */
165 char *imsi;
166
167 /**
168 * milenage - Milenage parameters for SIM/USIM simulator in
169 * <Ki>:<OPc>:<SQN> format
170 */
171 char *milenage;
172
ac1bc549
JM
173 /**
174 * domain_suffix_match - Constraint for server domain name
175 *
176 * If set, this FQDN is used as a suffix match requirement for the AAA
177 * server certificate in SubjectAltName dNSName element(s). If a
178 * matching dNSName is found, this constraint is met. If no dNSName
e24aef10 179 * values are present, this constraint is matched against SubjectName CN
ac1bc549
JM
180 * using same suffix match comparison. Suffix match here means that the
181 * host/domain name is compared one label at a time starting from the
182 * top-level domain and all the labels in @domain_suffix_match shall be
183 * included in the certificate. The certificate may include additional
184 * sub-level labels in addition to the required labels.
185 *
186 * For example, domain_suffix_match=example.com would match
187 * test.example.com but would not match test-example.com.
188 */
189 char *domain_suffix_match;
190
1bb7b8e8 191 /**
463c8ffb 192 * domain - Home service provider FQDN(s)
1bb7b8e8
JM
193 *
194 * This is used to compare against the Domain Name List to figure out
463c8ffb
JM
195 * whether the AP is operated by the Home SP. Multiple domain entries
196 * can be used to configure alternative FQDNs that will be considered
197 * home networks.
1bb7b8e8 198 */
463c8ffb
JM
199 char **domain;
200
201 /**
202 * num_domain - Number of FQDNs in the domain array
203 */
204 size_t num_domain;
8ca93c59 205
955567bc
JM
206 /**
207 * roaming_consortium - Roaming Consortium OI
208 *
209 * If roaming_consortium_len is non-zero, this field contains the
210 * Roaming Consortium OI that can be used to determine which access
211 * points support authentication with this credential. This is an
212 * alternative to the use of the realm parameter. When using Roaming
213 * Consortium to match the network, the EAP parameters need to be
214 * pre-configured with the credential since the NAI Realm information
215 * may not be available or fetched.
216 */
217 u8 roaming_consortium[15];
218
219 /**
220 * roaming_consortium_len - Length of roaming_consortium
221 */
222 size_t roaming_consortium_len;
223
f47c1452
JM
224 u8 required_roaming_consortium[15];
225 size_t required_roaming_consortium_len;
226
8ca93c59
JM
227 /**
228 * eap_method - EAP method to use
229 *
230 * Pre-configured EAP method to use with this credential or %NULL to
231 * indicate no EAP method is selected, i.e., the method will be
232 * selected automatically based on ANQP information.
233 */
234 struct eap_method_type *eap_method;
235
236 /**
237 * phase1 - Phase 1 (outer authentication) parameters
238 *
239 * Pre-configured EAP parameters or %NULL.
240 */
241 char *phase1;
242
243 /**
244 * phase2 - Phase 2 (inner authentication) parameters
245 *
246 * Pre-configured EAP parameters or %NULL.
247 */
248 char *phase2;
dbea8ac7
JM
249
250 struct excluded_ssid {
eaa8eefe 251 u8 ssid[SSID_MAX_LEN];
dbea8ac7
JM
252 size_t ssid_len;
253 } *excluded_ssid;
254 size_t num_excluded_ssid;
bc00053c
JM
255
256 struct roaming_partner {
257 char fqdn[128];
258 int exact_match;
259 u8 priority;
260 char country[3];
261 } *roaming_partner;
262 size_t num_roaming_partner;
f9cd147d
JM
263
264 int update_identifier;
aa26ba68
JM
265
266 /**
267 * provisioning_sp - FQDN of the SP that provisioned the credential
268 */
269 char *provisioning_sp;
4cad9df1 270
74794891
JM
271 /**
272 * sp_priority - Credential priority within a provisioning SP
273 *
274 * This is the priority of the credential among all credentials
275 * provisionined by the same SP (i.e., for entries that have identical
276 * provisioning_sp value). The range of this priority is 0-255 with 0
277 * being the highest and 255 the lower priority.
278 */
279 int sp_priority;
280
4cad9df1
JM
281 unsigned int min_dl_bandwidth_home;
282 unsigned int min_ul_bandwidth_home;
283 unsigned int min_dl_bandwidth_roaming;
284 unsigned int min_ul_bandwidth_roaming;
a45b2dc5
JM
285
286 /**
287 * max_bss_load - Maximum BSS Load Channel Utilization (1..255)
288 * This value is used as the maximum channel utilization for network
289 * selection purposes for home networks. If the AP does not advertise
290 * BSS Load or if the limit would prevent any connection, this
291 * constraint will be ignored.
292 */
293 unsigned int max_bss_load;
33fb8c52
JM
294
295 unsigned int num_req_conn_capab;
296 u8 *req_conn_capab_proto;
297 int **req_conn_capab_port;
cf6d08a6
JM
298
299 /**
300 * ocsp - Whether to use/require OCSP to check server certificate
301 *
302 * 0 = do not use OCSP stapling (TLS certificate status extension)
303 * 1 = try to use OCSP stapling, but not require response
304 * 2 = require valid OCSP stapling response
305 */
306 int ocsp;
13f6a07e
NJ
307
308 /**
309 * sim_num - User selected SIM identifier
310 *
311 * This variable is used for identifying which SIM is used if the system
312 * has more than one.
313 */
314 int sim_num;
1bb7b8e8
JM
315};
316
317
1d47214a
JM
318#define CFG_CHANGED_DEVICE_NAME BIT(0)
319#define CFG_CHANGED_CONFIG_METHODS BIT(1)
320#define CFG_CHANGED_DEVICE_TYPE BIT(2)
321#define CFG_CHANGED_OS_VERSION BIT(3)
322#define CFG_CHANGED_UUID BIT(4)
323#define CFG_CHANGED_COUNTRY BIT(5)
e3768e7c
JM
324#define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
325#define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
1c9cb49f 326#define CFG_CHANGED_WPS_STRING BIT(8)
0f66abd2 327#define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
f95cac27 328#define CFG_CHANGED_VENDOR_EXTENSION BIT(10)
2463ba70
JS
329#define CFG_CHANGED_P2P_LISTEN_CHANNEL BIT(11)
330#define CFG_CHANGED_P2P_OPER_CHANNEL BIT(12)
21d996f7 331#define CFG_CHANGED_P2P_PREF_CHAN BIT(13)
306ae225 332#define CFG_CHANGED_EXT_PW_BACKEND BIT(14)
042ec551 333#define CFG_CHANGED_NFC_PASSWORD_TOKEN BIT(15)
1b928f96 334#define CFG_CHANGED_P2P_PASSPHRASE_LEN BIT(16)
bea48f77 335#define CFG_CHANGED_SCHED_SCAN_PLANS BIT(17)
1d47214a 336
6fc6879b
JM
337/**
338 * struct wpa_config - wpa_supplicant configuration data
339 *
340 * This data structure is presents the per-interface (radio) configuration
341 * data. In many cases, there is only one struct wpa_config instance, but if
342 * more than one network interface is being controlled, one instance is used
343 * for each.
344 */
345struct wpa_config {
346 /**
347 * ssid - Head of the global network list
348 *
349 * This is the head for the list of all the configured networks.
350 */
351 struct wpa_ssid *ssid;
352
353 /**
354 * pssid - Per-priority network lists (in priority order)
355 */
356 struct wpa_ssid **pssid;
357
358 /**
359 * num_prio - Number of different priorities used in the pssid lists
360 *
361 * This indicates how many per-priority network lists are included in
362 * pssid.
363 */
364 int num_prio;
365
1bb7b8e8
JM
366 /**
367 * cred - Head of the credential list
368 *
369 * This is the head for the list of all the configured credentials.
370 */
371 struct wpa_cred *cred;
372
6fc6879b
JM
373 /**
374 * eapol_version - IEEE 802.1X/EAPOL version number
375 *
376 * wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which
377 * defines EAPOL version 2. However, there are many APs that do not
378 * handle the new version number correctly (they seem to drop the
379 * frames completely). In order to make wpa_supplicant interoperate
380 * with these APs, the version number is set to 1 by default. This
381 * configuration value can be used to set it to the new version (2).
382 */
383 int eapol_version;
384
385 /**
386 * ap_scan - AP scanning/selection
387 *
388 * By default, wpa_supplicant requests driver to perform AP
389 * scanning and then uses the scan results to select a
390 * suitable AP. Another alternative is to allow the driver to
391 * take care of AP scanning and selection and use
392 * wpa_supplicant just to process EAPOL frames based on IEEE
393 * 802.11 association information from the driver.
394 *
395 * 1: wpa_supplicant initiates scanning and AP selection (default).
396 *
397 * 0: Driver takes care of scanning, AP selection, and IEEE 802.11
398 * association parameters (e.g., WPA IE generation); this mode can
399 * also be used with non-WPA drivers when using IEEE 802.1X mode;
400 * do not try to associate with APs (i.e., external program needs
401 * to control association). This mode must also be used when using
402 * wired Ethernet drivers.
403 *
404 * 2: like 0, but associate with APs using security policy and SSID
405 * (but not BSSID); this can be used, e.g., with ndiswrapper and NDIS
406 * drivers to enable operation with hidden SSIDs and optimized roaming;
407 * in this mode, the network blocks in the configuration are tried
408 * one by one until the driver reports successful association; each
409 * network block should have explicit security policy (i.e., only one
410 * option in the lists) for key_mgmt, pairwise, group, proto variables.
8406cd35
JM
411 *
412 * Note: ap_scan=2 should not be used with the nl80211 driver interface
413 * (the current Linux interface). ap_scan=1 is optimized work working
414 * with nl80211. For finding networks using hidden SSID, scan_ssid=1 in
415 * the network block can be used with nl80211.
6fc6879b
JM
416 */
417 int ap_scan;
418
31392709
HD
419 /**
420 * bgscan - Background scan and roaming parameters or %NULL if none
421 *
422 * This is an optional set of parameters for background scanning and
423 * roaming within a network (ESS). For more detailed information see
424 * ssid block documentation.
425 *
426 * The variable defines default bgscan behavior for all BSS station
427 * networks except for those which have their own bgscan configuration.
428 */
429 char *bgscan;
430
54ddd743
JM
431 /**
432 * disable_scan_offload - Disable automatic offloading of scan requests
433 *
434 * By default, %wpa_supplicant tries to offload scanning if the driver
435 * indicates support for this (sched_scan). This configuration
436 * parameter can be used to disable this offloading mechanism.
437 */
438 int disable_scan_offload;
439
6fc6879b
JM
440 /**
441 * ctrl_interface - Parameters for the control interface
442 *
443 * If this is specified, %wpa_supplicant will open a control interface
444 * that is available for external programs to manage %wpa_supplicant.
445 * The meaning of this string depends on which control interface
ffbf1eaa 446 * mechanism is used. For all cases, the existence of this parameter
6fc6879b
JM
447 * in configuration is used to determine whether the control interface
448 * is enabled.
449 *
450 * For UNIX domain sockets (default on Linux and BSD): This is a
451 * directory that will be created for UNIX domain sockets for listening
452 * to requests from external programs (CLI/GUI, etc.) for status
453 * information and configuration. The socket file will be named based
454 * on the interface name, so multiple %wpa_supplicant processes can be
455 * run at the same time if more than one interface is used.
456 * /var/run/wpa_supplicant is the recommended directory for sockets and
457 * by default, wpa_cli will use it when trying to connect with
458 * %wpa_supplicant.
459 *
460 * Access control for the control interface can be configured
461 * by setting the directory to allow only members of a group
462 * to use sockets. This way, it is possible to run
463 * %wpa_supplicant as root (since it needs to change network
464 * configuration and open raw sockets) and still allow GUI/CLI
465 * components to be run as non-root users. However, since the
466 * control interface can be used to change the network
467 * configuration, this access needs to be protected in many
468 * cases. By default, %wpa_supplicant is configured to use gid
469 * 0 (root). If you want to allow non-root users to use the
470 * control interface, add a new group and change this value to
471 * match with that group. Add users that should have control
472 * interface access to this group.
473 *
474 * When configuring both the directory and group, use following format:
475 * DIR=/var/run/wpa_supplicant GROUP=wheel
476 * DIR=/var/run/wpa_supplicant GROUP=0
477 * (group can be either group name or gid)
478 *
479 * For UDP connections (default on Windows): The value will be ignored.
480 * This variable is just used to select that the control interface is
481 * to be created. The value can be set to, e.g., udp
482 * (ctrl_interface=udp).
483 *
484 * For Windows Named Pipe: This value can be used to set the security
485 * descriptor for controlling access to the control interface. Security
486 * descriptor can be set using Security Descriptor String Format (see
487 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthz/security/security_descriptor_string_format.asp).
488 * The descriptor string needs to be prefixed with SDDL=. For example,
489 * ctrl_interface=SDDL=D: would set an empty DACL (which will reject
490 * all connections).
491 */
492 char *ctrl_interface;
493
494 /**
495 * ctrl_interface_group - Control interface group (DEPRECATED)
496 *
497 * This variable is only used for backwards compatibility. Group for
b39d1280 498 * UNIX domain sockets should now be specified using GROUP=group in
6fc6879b
JM
499 * ctrl_interface variable.
500 */
501 char *ctrl_interface_group;
502
503 /**
504 * fast_reauth - EAP fast re-authentication (session resumption)
505 *
506 * By default, fast re-authentication is enabled for all EAP methods
507 * that support it. This variable can be used to disable fast
508 * re-authentication (by setting fast_reauth=0). Normally, there is no
509 * need to disable fast re-authentication.
510 */
511 int fast_reauth;
512
6fc6879b
JM
513 /**
514 * opensc_engine_path - Path to the OpenSSL engine for opensc
515 *
516 * This is an OpenSSL specific configuration option for loading OpenSC
517 * engine (engine_opensc.so); if %NULL, this engine is not loaded.
518 */
519 char *opensc_engine_path;
520
521 /**
522 * pkcs11_engine_path - Path to the OpenSSL engine for PKCS#11
523 *
524 * This is an OpenSSL specific configuration option for loading PKCS#11
525 * engine (engine_pkcs11.so); if %NULL, this engine is not loaded.
526 */
527 char *pkcs11_engine_path;
528
529 /**
530 * pkcs11_module_path - Path to the OpenSSL OpenSC/PKCS#11 module
531 *
532 * This is an OpenSSL specific configuration option for configuring
533 * path to OpenSC/PKCS#11 engine (opensc-pkcs11.so); if %NULL, this
534 * module is not loaded.
535 */
536 char *pkcs11_module_path;
6fc6879b 537
07e2de31
JM
538 /**
539 * openssl_ciphers - OpenSSL cipher string
540 *
541 * This is an OpenSSL specific configuration option for configuring the
542 * default ciphers. If not set, "DEFAULT:!EXP:!LOW" is used as the
543 * default.
544 */
545 char *openssl_ciphers;
546
f64adcd7
JM
547 /**
548 * pcsc_reader - PC/SC reader name prefix
549 *
550 * If not %NULL, PC/SC reader with a name that matches this prefix is
551 * initialized for SIM/USIM access. Empty string can be used to match
552 * the first available reader.
553 */
554 char *pcsc_reader;
555
556 /**
557 * pcsc_pin - PIN for USIM, GSM SIM, and smartcards
558 *
559 * This field is used to configure PIN for SIM/USIM for EAP-SIM and
560 * EAP-AKA. If left out, this will be asked through control interface.
561 */
562 char *pcsc_pin;
563
a5d44ac0
JM
564 /**
565 * external_sim - Use external processing for SIM/USIM operations
566 */
567 int external_sim;
568
6fc6879b
JM
569 /**
570 * driver_param - Driver interface parameters
571 *
572 * This text string is passed to the selected driver interface with the
573 * optional struct wpa_driver_ops::set_param() handler. This can be
574 * used to configure driver specific options without having to add new
575 * driver interface functionality.
576 */
577 char *driver_param;
578
579 /**
580 * dot11RSNAConfigPMKLifetime - Maximum lifetime of a PMK
581 *
582 * dot11 MIB variable for the maximum lifetime of a PMK in the PMK
583 * cache (unit: seconds).
584 */
585 unsigned int dot11RSNAConfigPMKLifetime;
586
587 /**
588 * dot11RSNAConfigPMKReauthThreshold - PMK re-authentication threshold
589 *
590 * dot11 MIB variable for the percentage of the PMK lifetime
591 * that should expire before an IEEE 802.1X reauthentication occurs.
592 */
593 unsigned int dot11RSNAConfigPMKReauthThreshold;
594
595 /**
596 * dot11RSNAConfigSATimeout - Security association timeout
597 *
598 * dot11 MIB variable for the maximum time a security association
599 * shall take to set up (unit: seconds).
600 */
601 unsigned int dot11RSNAConfigSATimeout;
602
603 /**
604 * update_config - Is wpa_supplicant allowed to update configuration
605 *
606 * This variable control whether wpa_supplicant is allow to re-write
607 * its configuration with wpa_config_write(). If this is zero,
608 * configuration data is only changed in memory and the external data
609 * is not overriden. If this is non-zero, wpa_supplicant will update
610 * the configuration data (e.g., a file) whenever configuration is
611 * changed. This update may replace the old configuration which can
612 * remove comments from it in case of a text file configuration.
613 */
614 int update_config;
615
616 /**
617 * blobs - Configuration blobs
618 */
619 struct wpa_config_blob *blobs;
f855f923
JM
620
621 /**
622 * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
623 */
624 u8 uuid[16];
6d158490 625
3c0b7aa4
JM
626 /**
627 * device_name - Device Name (WPS)
628 * User-friendly description of device; up to 32 octets encoded in
629 * UTF-8
630 */
631 char *device_name;
632
633 /**
634 * manufacturer - Manufacturer (WPS)
635 * The manufacturer of the device (up to 64 ASCII characters)
636 */
637 char *manufacturer;
638
639 /**
640 * model_name - Model Name (WPS)
641 * Model of the device (up to 32 ASCII characters)
642 */
643 char *model_name;
644
645 /**
646 * model_number - Model Number (WPS)
647 * Additional device description (up to 32 ASCII characters)
648 */
649 char *model_number;
650
651 /**
652 * serial_number - Serial Number (WPS)
653 * Serial number of the device (up to 32 characters)
654 */
655 char *serial_number;
656
657 /**
658 * device_type - Primary Device Type (WPS)
3c0b7aa4 659 */
2f646b6e 660 u8 device_type[WPS_DEV_TYPE_LEN];
3c0b7aa4 661
c0e4dd9e
JM
662 /**
663 * config_methods - Config Methods
664 *
665 * This is a space-separated list of supported WPS configuration
6a857074
JM
666 * methods. For example, "label virtual_display virtual_push_button
667 * keypad".
c0e4dd9e 668 * Available methods: usba ethernet label display ext_nfc_token
6a857074
JM
669 * int_nfc_token nfc_interface push_button keypad
670 * virtual_display physical_display
671 * virtual_push_button physical_push_button.
c0e4dd9e
JM
672 */
673 char *config_methods;
674
3c0b7aa4
JM
675 /**
676 * os_version - OS Version (WPS)
677 * 4-octet operating system version number
678 */
679 u8 os_version[4];
680
6d158490 681 /**
315ce40a 682 * country - Country code
6d158490
LR
683 *
684 * This is the ISO/IEC alpha2 country code for which we are operating
685 * in
686 */
315ce40a 687 char country[2];
47662164
JM
688
689 /**
690 * wps_cred_processing - Credential processing
691 *
692 * 0 = process received credentials internally
693 * 1 = do not process received credentials; just pass them over
694 * ctrl_iface to external program(s)
695 * 2 = process received credentials internally and pass them over
696 * ctrl_iface to external program(s)
697 */
698 int wps_cred_processing;
c9c38b09 699
e3768e7c
JM
700#define MAX_SEC_DEVICE_TYPES 5
701 /**
2f646b6e 702 * sec_device_types - Secondary Device Types (P2P)
e3768e7c 703 */
2f646b6e
JB
704 u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
705 int num_sec_device_types;
e3768e7c
JM
706
707 int p2p_listen_reg_class;
708 int p2p_listen_channel;
709 int p2p_oper_reg_class;
710 int p2p_oper_channel;
711 int p2p_go_intent;
712 char *p2p_ssid_postfix;
713 int persistent_reconnect;
0f66abd2 714 int p2p_intra_bss;
21d996f7
JM
715 unsigned int num_p2p_pref_chan;
716 struct p2p_channel *p2p_pref_chan;
556b30da 717 struct wpa_freq_range_list p2p_no_go_freq;
51e9f228 718 int p2p_add_cli_chan;
b277a2be 719 int p2p_ignore_shared_freq;
e3bd6e9d 720 int p2p_optimize_listen_chan;
e3768e7c 721
71dd3b78
AS
722 struct wpabuf *wps_vendor_ext_m1;
723
f95cac27
JMB
724#define MAX_WPS_VENDOR_EXT 10
725 /**
726 * wps_vendor_ext - Vendor extension attributes in WPS
727 */
728 struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXT];
729
3071e181
JM
730 /**
731 * p2p_group_idle - Maximum idle time in seconds for P2P group
732 *
733 * This value controls how long a P2P group is maintained after there
734 * is no other members in the group. As a GO, this means no associated
735 * stations in the group. As a P2P client, this means no GO seen in
736 * scan results. The maximum idle time is specified in seconds with 0
737 * indicating no time limit, i.e., the P2P group remains in active
c8106615
JM
738 * state indefinitely until explicitly removed. As a P2P client, the
739 * maximum idle time of P2P_MAX_CLIENT_IDLE seconds is enforced, i.e.,
740 * this parameter is mainly meant for GO use and for P2P client, it can
5f482d55
JM
741 * only be used to reduce the default timeout to smaller value. A
742 * special value -1 can be used to configure immediate removal of the
743 * group for P2P client role on any disconnection after the data
744 * connection has been established.
3071e181 745 */
5f482d55 746 int p2p_group_idle;
3071e181 747
1a471ff0
IP
748 /**
749 * p2p_go_freq_change_policy - The GO frequency change policy
750 *
751 * This controls the behavior of the GO when there is a change in the
752 * map of the currently used frequencies in case more than one channel
753 * is supported.
754 *
755 * @P2P_GO_FREQ_MOVE_SCM: Prefer working in a single channel mode if
756 * possible. In case the GO is the only interface using its frequency
757 * and there are other station interfaces on other frequencies, the GO
758 * will migrate to one of these frequencies.
759 *
760 * @P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS: Same as P2P_GO_FREQ_MOVE_SCM,
761 * but a transition is possible only in case one of the other used
762 * frequencies is one of the frequencies in the intersection of the
763 * frequency list of the local device and the peer device.
764 *
765 * @P2P_GO_FREQ_MOVE_STAY: Prefer to stay on the current frequency.
98b05081
AO
766 *
767 * @P2P_GO_FREQ_MOVE_SCM_ECSA: Same as
768 * P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS but a transition is possible only
769 * if all the group members advertise eCSA support.
1a471ff0
IP
770 */
771 enum {
772 P2P_GO_FREQ_MOVE_SCM = 0,
773 P2P_GO_FREQ_MOVE_SCM_PEER_SUPPORTS = 1,
774 P2P_GO_FREQ_MOVE_STAY = 2,
98b05081
AO
775 P2P_GO_FREQ_MOVE_SCM_ECSA = 3,
776 P2P_GO_FREQ_MOVE_MAX = P2P_GO_FREQ_MOVE_SCM_ECSA,
1a471ff0
IP
777 } p2p_go_freq_change_policy;
778
779#define DEFAULT_P2P_GO_FREQ_MOVE P2P_GO_FREQ_MOVE_STAY
780
1b928f96
JM
781 /**
782 * p2p_passphrase_len - Passphrase length (8..63) for P2P GO
783 *
784 * This parameter controls the length of the random passphrase that is
785 * generated at the GO.
786 */
787 unsigned int p2p_passphrase_len;
788
c9c38b09
JM
789 /**
790 * bss_max_count - Maximum number of BSS entries to keep in memory
791 */
792 unsigned int bss_max_count;
3812464c 793
78633c37
SL
794 /**
795 * bss_expiration_age - BSS entry age after which it can be expired
796 *
797 * This value controls the time in seconds after which a BSS entry
798 * gets removed if it has not been updated or is not in use.
799 */
800 unsigned int bss_expiration_age;
801
802 /**
803 * bss_expiration_scan_count - Expire BSS after number of scans
804 *
805 * If the BSS entry has not been seen in this many scans, it will be
806 * removed. A value of 1 means that entry is removed after the first
807 * scan in which the BSSID is not seen. Larger values can be used
808 * to avoid BSS entries disappearing if they are not visible in
809 * every scan (e.g., low signal quality or interference).
810 */
811 unsigned int bss_expiration_scan_count;
812
3812464c
JM
813 /**
814 * filter_ssids - SSID-based scan result filtering
815 *
816 * 0 = do not filter scan results
817 * 1 = only include configured SSIDs in scan results/BSS table
818 */
819 int filter_ssids;
1d47214a 820
bf8d6d24
TP
821 /**
822 * filter_rssi - RSSI-based scan result filtering
823 *
824 * 0 = do not filter scan results
825 * -n = filter scan results below -n dBm
826 */
827 int filter_rssi;
828
dae608d5
JM
829 /**
830 * max_num_sta - Maximum number of STAs in an AP/P2P GO
831 */
832 unsigned int max_num_sta;
833
f5ffc348
BG
834 /**
835 * freq_list - Array of allowed scan frequencies or %NULL for all
836 *
837 * This is an optional zero-terminated array of frequencies in
838 * megahertz (MHz) to allow for narrowing scanning range.
839 */
840 int *freq_list;
841
6124e858
BG
842 /**
843 * scan_cur_freq - Whether to scan only the current channel
844 *
845 * If true, attempt to scan only the current channel if any other
846 * VIFs on this radio are already associated on a particular channel.
847 */
848 int scan_cur_freq;
849
1d47214a
JM
850 /**
851 * changed_parameters - Bitmap of changed parameters since last update
852 */
853 unsigned int changed_parameters;
0d7e5a3a
JB
854
855 /**
87880919 856 * disassoc_low_ack - Disassocicate stations with massive packet loss
0d7e5a3a
JB
857 */
858 int disassoc_low_ack;
46ee0427
JM
859
860 /**
861 * interworking - Whether Interworking (IEEE 802.11u) is enabled
862 */
863 int interworking;
864
11540c0b
JM
865 /**
866 * access_network_type - Access Network Type
867 *
868 * When Interworking is enabled, scans will be limited to APs that
869 * advertise the specified Access Network Type (0..15; with 15
870 * indicating wildcard match).
871 */
872 int access_network_type;
873
46ee0427
JM
874 /**
875 * hessid - Homogenous ESS identifier
876 *
877 * If this is set (any octet is non-zero), scans will be used to
878 * request response only from BSSes belonging to the specified
879 * Homogeneous ESS. This is used only if interworking is enabled.
880 */
881 u8 hessid[ETH_ALEN];
1298c145 882
66aadbd7
JK
883 /**
884 * hs20 - Hotspot 2.0
885 */
886 int hs20;
887
1298c145
WJL
888 /**
889 * pbc_in_m1 - AP mode WPS probing workaround for PBC with Windows 7
890 *
891 * Windows 7 uses incorrect way of figuring out AP's WPS capabilities
892 * by acting as a Registrar and using M1 from the AP. The config
893 * methods attribute in that message is supposed to indicate only the
894 * configuration method supported by the AP in Enrollee role, i.e., to
895 * add an external Registrar. For that case, PBC shall not be used and
896 * as such, the PushButton config method is removed from M1 by default.
897 * If pbc_in_m1=1 is included in the configuration file, the PushButton
898 * config method is left in M1 (if included in config_methods
899 * parameter) to allow Windows 7 to use PBC instead of PIN (e.g., from
900 * a label in the AP).
901 */
902 int pbc_in_m1;
b0786fba
TB
903
904 /**
905 * autoscan - Automatic scan parameters or %NULL if none
906 *
907 * This is an optional set of parameters for automatic scanning
908 * within an interface in following format:
909 * <autoscan module name>:<module parameters>
910 */
911 char *autoscan;
3f2c8ba6 912
042ec551
JM
913 /**
914 * wps_nfc_pw_from_config - NFC Device Password was read from config
915 *
916 * This parameter can be determined whether the NFC Device Password was
917 * included in the configuration (1) or generated dynamically (0). Only
918 * the former case is re-written back to the configuration file.
919 */
920 int wps_nfc_pw_from_config;
921
3f2c8ba6
JM
922 /**
923 * wps_nfc_dev_pw_id - NFC Device Password ID for password token
924 */
925 int wps_nfc_dev_pw_id;
926
927 /**
928 * wps_nfc_dh_pubkey - NFC DH Public Key for password token
929 */
930 struct wpabuf *wps_nfc_dh_pubkey;
931
932 /**
ed2e61fe 933 * wps_nfc_dh_privkey - NFC DH Private Key for password token
3f2c8ba6
JM
934 */
935 struct wpabuf *wps_nfc_dh_privkey;
936
937 /**
ed2e61fe 938 * wps_nfc_dev_pw - NFC Device Password for password token
3f2c8ba6
JM
939 */
940 struct wpabuf *wps_nfc_dev_pw;
306ae225
JM
941
942 /**
943 * ext_password_backend - External password backend or %NULL if none
944 *
945 * format: <backend name>[:<optional backend parameters>]
946 */
947 char *ext_password_backend;
462a7439
ES
948
949 /*
950 * p2p_go_max_inactivity - Timeout in seconds to detect STA inactivity
951 *
952 * This timeout value is used in P2P GO mode to clean up
953 * inactive stations.
954 * By default: 300 seconds.
955 */
956 int p2p_go_max_inactivity;
c26effe1
YD
957
958 struct hostapd_wmm_ac_params wmm_ac_params[4];
4d5bda5f
JM
959
960 /**
961 * auto_interworking - Whether to use network selection automatically
962 *
963 * 0 = do not automatically go through Interworking network selection
964 * (i.e., require explicit interworking_select command for this)
965 * 1 = perform Interworking network selection if one or more
966 * credentials have been configured and scan did not find a
967 * matching network block
968 */
969 int auto_interworking;
a93a15bb
AN
970
971 /**
972 * p2p_go_ht40 - Default mode for HT40 enable when operating as GO.
973 *
974 * This will take effect for p2p_group_add, p2p_connect, and p2p_invite.
975 * Note that regulatory constraints and driver capabilities are
976 * consulted anyway, so setting it to 1 can't do real harm.
977 * By default: 0 (disabled)
978 */
979 int p2p_go_ht40;
7a808c7e 980
20ea1ca4
EP
981 /**
982 * p2p_go_vht - Default mode for VHT enable when operating as GO
983 *
984 * This will take effect for p2p_group_add, p2p_connect, and p2p_invite.
985 * Note that regulatory constraints and driver capabilities are
986 * consulted anyway, so setting it to 1 can't do real harm.
987 * By default: 0 (disabled)
988 */
989 int p2p_go_vht;
990
0b8bcaa5
EP
991 /**
992 * p2p_go_ctwindow - CTWindow to use when operating as GO
993 *
994 * By default: 0 (no CTWindow). Values 0-127 can be used to indicate
995 * the length of the CTWindow in TUs.
996 */
997 int p2p_go_ctwindow;
998
7a808c7e
JM
999 /**
1000 * p2p_disabled - Whether P2P operations are disabled for this interface
1001 */
1002 int p2p_disabled;
d76cd41a
JM
1003
1004 /**
1005 * p2p_no_group_iface - Whether group interfaces can be used
1006 *
1007 * By default, wpa_supplicant will create a separate interface for P2P
1008 * group operations if the driver supports this. This functionality can
1009 * be disabled by setting this parameter to 1. In that case, the same
1010 * interface that was used for the P2P management operations is used
1011 * also for the group operation.
1012 */
1013 int p2p_no_group_iface;
6e202021 1014
07c1e987
MS
1015 /**
1016 * p2p_cli_probe - Enable/disable P2P CLI probe request handling
1017 *
1018 * If this parameter is set to 1, a connected P2P Client will receive
1019 * and handle Probe Request frames. Setting this parameter to 0
1020 * disables this option. Default value: 0.
1021 *
1022 * Note: Setting this property at run time takes effect on the following
1023 * interface state transition to/from the WPA_COMPLETED state.
1024 */
1025 int p2p_cli_probe;
1026
6e202021
JM
1027 /**
1028 * okc - Whether to enable opportunistic key caching by default
1029 *
1030 * By default, OKC is disabled unless enabled by the per-network
1031 * proactive_key_caching=1 parameter. okc=1 can be used to change this
1032 * default behavior.
1033 */
1034 int okc;
62d49803
JM
1035
1036 /**
1037 * pmf - Whether to enable/require PMF by default
1038 *
1039 * By default, PMF is disabled unless enabled by the per-network
1040 * ieee80211w=1 or ieee80211w=2 parameter. pmf=1/2 can be used to change
1041 * this default behavior.
1042 */
1043 enum mfp_options pmf;
625f202a
JM
1044
1045 /**
1046 * sae_groups - Preference list of enabled groups for SAE
1047 *
1048 * By default (if this parameter is not set), the mandatory group 19
1049 * (ECC group defined over a 256-bit prime order field) is preferred,
1050 * but other groups are also enabled. If this parameter is set, the
1051 * groups will be tried in the indicated order.
1052 */
1053 int *sae_groups;
18206e02
JM
1054
1055 /**
1056 * dtim_period - Default DTIM period in Beacon intervals
1057 *
1058 * This parameter can be used to set the default value for network
1059 * blocks that do not specify dtim_period.
1060 */
1061 int dtim_period;
1062
1063 /**
1064 * beacon_int - Default Beacon interval in TU
1065 *
1066 * This parameter can be used to set the default value for network
1067 * blocks that do not specify beacon_int.
1068 */
1069 int beacon_int;
18a2eaab
JM
1070
1071 /**
1072 * ap_vendor_elements: Vendor specific elements for Beacon/ProbeResp
1073 *
1074 * This parameter can be used to define additional vendor specific
1075 * elements for Beacon and Probe Response frames in AP/P2P GO mode. The
1076 * format for these element(s) is a hexdump of the raw information
1077 * elements (id+len+payload for one or more elements).
1078 */
1079 struct wpabuf *ap_vendor_elements;
4342326f
JM
1080
1081 /**
1082 * ignore_old_scan_res - Ignore scan results older than request
1083 *
1084 * The driver may have a cache of scan results that makes it return
1085 * information that is older than our scan trigger. This parameter can
1086 * be used to configure such old information to be ignored instead of
1087 * allowing it to update the internal BSS table.
1088 */
1089 int ignore_old_scan_res;
4aa81868
SF
1090
1091 /**
1092 * sched_scan_interval - schedule scan interval
1093 */
1094 unsigned int sched_scan_interval;
800d5872
SD
1095
1096 /**
1097 * tdls_external_control - External control for TDLS setup requests
1098 *
1099 * Enable TDLS mode where external programs are given the control
1100 * to specify the TDLS link to get established to the driver. The
1101 * driver requests the TDLS setup to the supplicant only for the
1102 * specified TDLS peers.
1103 */
1104 int tdls_external_control;
25ef8529
JM
1105
1106 u8 ip_addr_go[4];
1107 u8 ip_addr_mask[4];
1108 u8 ip_addr_start[4];
1109 u8 ip_addr_end[4];
b572df86
JM
1110
1111 /**
1112 * osu_dir - OSU provider information directory
1113 *
1114 * If set, allow FETCH_OSU control interface command to be used to fetch
1115 * OSU provider information into all APs and store the results in this
1116 * directory.
1117 */
1118 char *osu_dir;
e4fa8b12
EP
1119
1120 /**
1121 * wowlan_triggers - Wake-on-WLAN triggers
1122 *
1123 * If set, these wowlan triggers will be configured.
1124 */
1125 char *wowlan_triggers;
d3b20469
NS
1126
1127 /**
1128 * p2p_search_delay - Extra delay between concurrent search iterations
1129 *
1130 * Add extra delay (in milliseconds) between search iterations when
1131 * there is a concurrent operation to make p2p_find friendlier to
1132 * concurrent operations by avoiding it from taking 100% of radio
1133 * resources.
1134 */
1135 unsigned int p2p_search_delay;
c267753b
JM
1136
1137 /**
1138 * mac_addr - MAC address policy default
1139 *
1140 * 0 = use permanent MAC address
1141 * 1 = use random MAC address for each ESS connection
a313d17d 1142 * 2 = like 1, but maintain OUI (with local admin bit set)
c267753b
JM
1143 *
1144 * By default, permanent MAC address is used unless policy is changed by
1145 * the per-network mac_addr parameter. Global mac_addr=1 can be used to
1146 * change this default behavior.
1147 */
1148 int mac_addr;
1149
1150 /**
1151 * rand_addr_lifetime - Lifetime of random MAC address in seconds
1152 */
1153 unsigned int rand_addr_lifetime;
1154
1155 /**
1156 * preassoc_mac_addr - Pre-association MAC address policy
1157 *
1158 * 0 = use permanent MAC address
1159 * 1 = use random MAC address
a313d17d 1160 * 2 = like 1, but maintain OUI (with local admin bit set)
c267753b
JM
1161 */
1162 int preassoc_mac_addr;
b41f2684
CL
1163
1164 /**
1165 * key_mgmt_offload - Use key management offload
1166 *
1167 * Key management offload should be used if the device supports it.
1168 * Key management offload is the capability of a device operating as
1169 * a station to do the exchange necessary to establish temporal keys
1170 * during initial RSN connection, after roaming, or during a PTK
1171 * rekeying operation.
1172 */
1173 int key_mgmt_offload;
e45e8989
TP
1174
1175 /**
1176 * user_mpm - MPM residency
1177 *
1178 * 0: MPM lives in driver.
1179 * 1: wpa_supplicant handles peering and station allocation.
1180 *
1181 * If AMPE or SAE is enabled, the MPM is always in userspace.
1182 */
1183 int user_mpm;
4b409368
MH
1184
1185 /**
1186 * max_peer_links - Maximum number of peer links
1187 *
1188 * Maximum number of mesh peering currently maintained by the STA.
1189 */
1190 int max_peer_links;
483dd6a5
JM
1191
1192 /**
1193 * cert_in_cb - Whether to include a peer certificate dump in events
1194 *
1195 * This controls whether peer certificates for authentication server and
1196 * its certificate chain are included in EAP peer certificate events.
1197 */
1198 int cert_in_cb;
5a2a6de6
MH
1199
1200 /**
1201 * mesh_max_inactivity - Timeout in seconds to detect STA inactivity
1202 *
1203 * This timeout value is used in mesh STA to clean up inactive stations.
1204 * By default: 300 seconds.
1205 */
1206 int mesh_max_inactivity;
c35e35ed 1207
ecd40fef
MH
1208 /**
1209 * dot11RSNASAERetransPeriod - Timeout to retransmit SAE Auth frame
1210 *
1211 * This timeout value is used in mesh STA to retransmit
1212 * SAE Authentication frame.
1213 * By default: 1000 milliseconds.
1214 */
1215 int dot11RSNASAERetransPeriod;
1216
c35e35ed
JM
1217 /**
1218 * passive_scan - Whether to force passive scan for network connection
1219 *
1220 * This parameter can be used to force only passive scanning to be used
1221 * for network connection cases. It should be noted that this will slow
1222 * down scan operations and reduce likelihood of finding the AP. In
1223 * addition, some use cases will override this due to functional
1224 * requirements, e.g., for finding an AP that uses hidden SSID
1225 * (scan_ssid=1) or P2P device discovery.
1226 */
1227 int passive_scan;
59b416c7
JM
1228
1229 /**
1230 * reassoc_same_bss_optim - Whether to optimize reassoc-to-same-BSS
1231 */
1232 int reassoc_same_bss_optim;
94687a0a
SD
1233
1234 /**
1235 * wps_priority - Priority for the networks added through WPS
1236 *
1237 * This priority value will be set to each network profile that is added
1238 * by executing the WPS protocol.
1239 */
1240 int wps_priority;
76ca15b7
AN
1241
1242 /**
1243 * fst_group_id - FST group ID
1244 */
1245 char *fst_group_id;
1246
1247 /**
1248 * fst_priority - priority of the interface within the FST group
1249 */
1250 int fst_priority;
1251
1252 /**
1253 * fst_llt - default FST LLT (Link-Lost Timeout) to be used for the
1254 * interface.
1255 */
1256 int fst_llt;
73ed03f3
MS
1257
1258 /**
1259 * wpa_rsc_relaxation - RSC relaxation on GTK installation
1260 *
1261 * Values:
1262 * 0 - use the EAPOL-Key RSC value on GTK installation
1263 * 1 - use the null RSC if a bogus RSC value is detected in message 3
1264 * of 4-Way Handshake or message 1 of Group Key Handshake.
1265 */
1266 int wpa_rsc_relaxation;
32c02261
AS
1267
1268 /**
1269 * sched_scan_plans - Scan plans for scheduled scan
1270 *
1271 * Each scan plan specifies the interval between scans and the number of
1272 * iterations. The last scan plan only specifies the scan interval and
1273 * will be run infinitely.
1274 *
1275 * format: <interval:iterations> <interval2:iterations2> ... <interval>
1276 */
1277 char *sched_scan_plans;
6fc6879b
JM
1278};
1279
1280
1281/* Prototypes for common functions from config.c */
1282
1283void wpa_config_free(struct wpa_config *ssid);
1284void wpa_config_free_ssid(struct wpa_ssid *ssid);
7c49fdd0
SL
1285void wpa_config_foreach_network(struct wpa_config *config,
1286 void (*func)(void *, struct wpa_ssid *),
1287 void *arg);
6fc6879b
JM
1288struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
1289struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
1290int wpa_config_remove_network(struct wpa_config *config, int id);
1291void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
1292int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
1293 int line);
67e1b984
JM
1294int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
1295 const char *value);
10263dc2
OO
1296int wpa_config_dump_values(struct wpa_config *config, char *buf,
1297 size_t buflen);
1298int wpa_config_get_value(const char *name, struct wpa_config *config,
1299 char *buf, size_t buflen);
1300
3d3d3056 1301char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
6fc6879b
JM
1302char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
1303char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
1304void wpa_config_update_psk(struct wpa_ssid *ssid);
1305int wpa_config_add_prio_network(struct wpa_config *config,
1306 struct wpa_ssid *ssid);
aa53509f 1307int wpa_config_update_prio_list(struct wpa_config *config);
6fc6879b
JM
1308const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
1309 const char *name);
1310void wpa_config_set_blob(struct wpa_config *config,
1311 struct wpa_config_blob *blob);
1312void wpa_config_free_blob(struct wpa_config_blob *blob);
1313int wpa_config_remove_blob(struct wpa_config *config, const char *name);
d9bb2821 1314void wpa_config_flush_blobs(struct wpa_config *config);
6fc6879b 1315
d94c9ee6
JM
1316struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id);
1317struct wpa_cred * wpa_config_add_cred(struct wpa_config *config);
1318int wpa_config_remove_cred(struct wpa_config *config, int id);
1bb7b8e8
JM
1319void wpa_config_free_cred(struct wpa_cred *cred);
1320int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
1321 const char *value, int line);
c880ab87 1322char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var);
1bb7b8e8 1323
6fc6879b
JM
1324struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
1325 const char *driver_param);
1326#ifndef CONFIG_NO_STDOUT_DEBUG
1327void wpa_config_debug_dump_networks(struct wpa_config *config);
1328#else /* CONFIG_NO_STDOUT_DEBUG */
1329#define wpa_config_debug_dump_networks(c) do { } while (0)
1330#endif /* CONFIG_NO_STDOUT_DEBUG */
1331
1332
121adf9c
JM
1333/* Prototypes for common functions from config.c */
1334int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
1335
e50c50d5
DW
1336int wpa_config_get_num_global_field_names(void);
1337
1338const char * wpa_config_get_global_field_name(unsigned int i, int *no_var);
121adf9c 1339
6fc6879b
JM
1340/* Prototypes for backend specific functions from the selected config_*.c */
1341
1342/**
1343 * wpa_config_read - Read and parse configuration database
1344 * @name: Name of the configuration (e.g., path and file name for the
1345 * configuration file)
e6304cad 1346 * @cfgp: Pointer to previously allocated configuration data or %NULL if none
6fc6879b
JM
1347 * Returns: Pointer to allocated configuration data or %NULL on failure
1348 *
1349 * This function reads configuration data, parses its contents, and allocates
1350 * data structures needed for storing configuration information. The allocated
1351 * data can be freed with wpa_config_free().
1352 *
1353 * Each configuration backend needs to implement this function.
1354 */
e6304cad 1355struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp);
6fc6879b
JM
1356
1357/**
1358 * wpa_config_write - Write or update configuration data
1359 * @name: Name of the configuration (e.g., path and file name for the
1360 * configuration file)
1361 * @config: Configuration data from wpa_config_read()
1362 * Returns: 0 on success, -1 on failure
1363 *
1364 * This function write all configuration data into an external database (e.g.,
1365 * a text file) in a format that can be read with wpa_config_read(). This can
1366 * be used to allow wpa_supplicant to update its configuration, e.g., when a
1367 * new network is added or a password is changed.
1368 *
1369 * Each configuration backend needs to implement this function.
1370 */
1371int wpa_config_write(const char *name, struct wpa_config *config);
1372
1373#endif /* CONFIG_H */