]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config.h
Move PSK/passphrase configuration check into use time from parsing
[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 */
18#define DEFAULT_FAST_REAUTH 1
e3768e7c 19#define DEFAULT_P2P_GO_INTENT 7
0f66abd2 20#define DEFAULT_P2P_INTRA_BSS 1
c9c38b09 21#define DEFAULT_BSS_MAX_COUNT 200
78633c37
SL
22#define DEFAULT_BSS_EXPIRATION_AGE 180
23#define DEFAULT_BSS_EXPIRATION_SCAN_COUNT 2
dae608d5 24#define DEFAULT_MAX_NUM_STA 128
11540c0b 25#define DEFAULT_ACCESS_NETWORK_TYPE 15
6fc6879b
JM
26
27#include "config_ssid.h"
2f646b6e 28#include "wps/wps.h"
6fc6879b
JM
29
30
1bb7b8e8
JM
31struct wpa_cred {
32 /**
33 * next - Next credential in the list
34 *
35 * This pointer can be used to iterate over all credentials. The head
36 * of this list is stored in the cred field of struct wpa_config.
37 */
38 struct wpa_cred *next;
39
40 /**
41 * id - Unique id for the credential
42 *
43 * This identifier is used as a unique identifier for each credential
44 * block when using the control interface. Each credential is allocated
45 * an id when it is being created, either when reading the
46 * configuration file or when a new credential is added through the
47 * control interface.
48 */
49 int id;
50
1a712d2f
JM
51 /**
52 * priority - Priority group
53 *
54 * By default, all networks and credentials get the same priority group
55 * (0). This field can be used to give higher priority for credentials
56 * (and similarly in struct wpa_ssid for network blocks) to change the
57 * Interworking automatic networking selection behavior. The matching
58 * network (based on either an enabled network block or a credential)
59 * with the highest priority value will be selected.
60 */
61 int priority;
62
d7b01abd
JM
63 /**
64 * pcsc - Use PC/SC and SIM/USIM card
65 */
66 int pcsc;
67
1bb7b8e8
JM
68 /**
69 * realm - Home Realm for Interworking
70 */
71 char *realm;
72
73 /**
74 * username - Username for Interworking network selection
75 */
76 char *username;
77
78 /**
79 * password - Password for Interworking network selection
80 */
81 char *password;
82
83 /**
84 * ca_cert - CA certificate for Interworking network selection
85 */
86 char *ca_cert;
87
11e4f46a
JM
88 /**
89 * client_cert - File path to client certificate file (PEM/DER)
90 *
91 * This field is used with Interworking networking selection for a case
92 * where client certificate/private key is used for authentication
93 * (EAP-TLS). Full path to the file should be used since working
94 * directory may change when wpa_supplicant is run in the background.
95 *
96 * Alternatively, a named configuration blob can be used by setting
97 * this to blob://blob_name.
98 */
99 char *client_cert;
100
101 /**
102 * private_key - File path to client private key file (PEM/DER/PFX)
103 *
104 * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
105 * commented out. Both the private key and certificate will be read
106 * from the PKCS#12 file in this case. Full path to the file should be
107 * used since working directory may change when wpa_supplicant is run
108 * in the background.
109 *
110 * Windows certificate store can be used by leaving client_cert out and
111 * configuring private_key in one of the following formats:
112 *
113 * cert://substring_to_match
114 *
115 * hash://certificate_thumbprint_in_hex
116 *
117 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
118 *
119 * Note that when running wpa_supplicant as an application, the user
120 * certificate store (My user account) is used, whereas computer store
121 * (Computer account) is used when running wpasvc as a service.
122 *
123 * Alternatively, a named configuration blob can be used by setting
124 * this to blob://blob_name.
125 */
126 char *private_key;
127
128 /**
129 * private_key_passwd - Password for private key file
130 */
131 char *private_key_passwd;
132
1bb7b8e8
JM
133 /**
134 * imsi - IMSI in <MCC> | <MNC> | '-' | <MSIN> format
135 */
136 char *imsi;
137
138 /**
139 * milenage - Milenage parameters for SIM/USIM simulator in
140 * <Ki>:<OPc>:<SQN> format
141 */
142 char *milenage;
143
144 /**
145 * domain - Home service provider FQDN
146 *
147 * This is used to compare against the Domain Name List to figure out
148 * whether the AP is operated by the Home SP.
149 */
150 char *domain;
8ca93c59 151
955567bc
JM
152 /**
153 * roaming_consortium - Roaming Consortium OI
154 *
155 * If roaming_consortium_len is non-zero, this field contains the
156 * Roaming Consortium OI that can be used to determine which access
157 * points support authentication with this credential. This is an
158 * alternative to the use of the realm parameter. When using Roaming
159 * Consortium to match the network, the EAP parameters need to be
160 * pre-configured with the credential since the NAI Realm information
161 * may not be available or fetched.
162 */
163 u8 roaming_consortium[15];
164
165 /**
166 * roaming_consortium_len - Length of roaming_consortium
167 */
168 size_t roaming_consortium_len;
169
8ca93c59
JM
170 /**
171 * eap_method - EAP method to use
172 *
173 * Pre-configured EAP method to use with this credential or %NULL to
174 * indicate no EAP method is selected, i.e., the method will be
175 * selected automatically based on ANQP information.
176 */
177 struct eap_method_type *eap_method;
178
179 /**
180 * phase1 - Phase 1 (outer authentication) parameters
181 *
182 * Pre-configured EAP parameters or %NULL.
183 */
184 char *phase1;
185
186 /**
187 * phase2 - Phase 2 (inner authentication) parameters
188 *
189 * Pre-configured EAP parameters or %NULL.
190 */
191 char *phase2;
1bb7b8e8
JM
192};
193
194
1d47214a
JM
195#define CFG_CHANGED_DEVICE_NAME BIT(0)
196#define CFG_CHANGED_CONFIG_METHODS BIT(1)
197#define CFG_CHANGED_DEVICE_TYPE BIT(2)
198#define CFG_CHANGED_OS_VERSION BIT(3)
199#define CFG_CHANGED_UUID BIT(4)
200#define CFG_CHANGED_COUNTRY BIT(5)
e3768e7c
JM
201#define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
202#define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
1c9cb49f 203#define CFG_CHANGED_WPS_STRING BIT(8)
0f66abd2 204#define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
f95cac27 205#define CFG_CHANGED_VENDOR_EXTENSION BIT(10)
2463ba70
JS
206#define CFG_CHANGED_P2P_LISTEN_CHANNEL BIT(11)
207#define CFG_CHANGED_P2P_OPER_CHANNEL BIT(12)
21d996f7 208#define CFG_CHANGED_P2P_PREF_CHAN BIT(13)
1d47214a 209
6fc6879b
JM
210/**
211 * struct wpa_config - wpa_supplicant configuration data
212 *
213 * This data structure is presents the per-interface (radio) configuration
214 * data. In many cases, there is only one struct wpa_config instance, but if
215 * more than one network interface is being controlled, one instance is used
216 * for each.
217 */
218struct wpa_config {
219 /**
220 * ssid - Head of the global network list
221 *
222 * This is the head for the list of all the configured networks.
223 */
224 struct wpa_ssid *ssid;
225
226 /**
227 * pssid - Per-priority network lists (in priority order)
228 */
229 struct wpa_ssid **pssid;
230
231 /**
232 * num_prio - Number of different priorities used in the pssid lists
233 *
234 * This indicates how many per-priority network lists are included in
235 * pssid.
236 */
237 int num_prio;
238
1bb7b8e8
JM
239 /**
240 * cred - Head of the credential list
241 *
242 * This is the head for the list of all the configured credentials.
243 */
244 struct wpa_cred *cred;
245
6fc6879b
JM
246 /**
247 * eapol_version - IEEE 802.1X/EAPOL version number
248 *
249 * wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which
250 * defines EAPOL version 2. However, there are many APs that do not
251 * handle the new version number correctly (they seem to drop the
252 * frames completely). In order to make wpa_supplicant interoperate
253 * with these APs, the version number is set to 1 by default. This
254 * configuration value can be used to set it to the new version (2).
255 */
256 int eapol_version;
257
258 /**
259 * ap_scan - AP scanning/selection
260 *
261 * By default, wpa_supplicant requests driver to perform AP
262 * scanning and then uses the scan results to select a
263 * suitable AP. Another alternative is to allow the driver to
264 * take care of AP scanning and selection and use
265 * wpa_supplicant just to process EAPOL frames based on IEEE
266 * 802.11 association information from the driver.
267 *
268 * 1: wpa_supplicant initiates scanning and AP selection (default).
269 *
270 * 0: Driver takes care of scanning, AP selection, and IEEE 802.11
271 * association parameters (e.g., WPA IE generation); this mode can
272 * also be used with non-WPA drivers when using IEEE 802.1X mode;
273 * do not try to associate with APs (i.e., external program needs
274 * to control association). This mode must also be used when using
275 * wired Ethernet drivers.
276 *
277 * 2: like 0, but associate with APs using security policy and SSID
278 * (but not BSSID); this can be used, e.g., with ndiswrapper and NDIS
279 * drivers to enable operation with hidden SSIDs and optimized roaming;
280 * in this mode, the network blocks in the configuration are tried
281 * one by one until the driver reports successful association; each
282 * network block should have explicit security policy (i.e., only one
283 * option in the lists) for key_mgmt, pairwise, group, proto variables.
284 */
285 int ap_scan;
286
54ddd743
JM
287 /**
288 * disable_scan_offload - Disable automatic offloading of scan requests
289 *
290 * By default, %wpa_supplicant tries to offload scanning if the driver
291 * indicates support for this (sched_scan). This configuration
292 * parameter can be used to disable this offloading mechanism.
293 */
294 int disable_scan_offload;
295
6fc6879b
JM
296 /**
297 * ctrl_interface - Parameters for the control interface
298 *
299 * If this is specified, %wpa_supplicant will open a control interface
300 * that is available for external programs to manage %wpa_supplicant.
301 * The meaning of this string depends on which control interface
ffbf1eaa 302 * mechanism is used. For all cases, the existence of this parameter
6fc6879b
JM
303 * in configuration is used to determine whether the control interface
304 * is enabled.
305 *
306 * For UNIX domain sockets (default on Linux and BSD): This is a
307 * directory that will be created for UNIX domain sockets for listening
308 * to requests from external programs (CLI/GUI, etc.) for status
309 * information and configuration. The socket file will be named based
310 * on the interface name, so multiple %wpa_supplicant processes can be
311 * run at the same time if more than one interface is used.
312 * /var/run/wpa_supplicant is the recommended directory for sockets and
313 * by default, wpa_cli will use it when trying to connect with
314 * %wpa_supplicant.
315 *
316 * Access control for the control interface can be configured
317 * by setting the directory to allow only members of a group
318 * to use sockets. This way, it is possible to run
319 * %wpa_supplicant as root (since it needs to change network
320 * configuration and open raw sockets) and still allow GUI/CLI
321 * components to be run as non-root users. However, since the
322 * control interface can be used to change the network
323 * configuration, this access needs to be protected in many
324 * cases. By default, %wpa_supplicant is configured to use gid
325 * 0 (root). If you want to allow non-root users to use the
326 * control interface, add a new group and change this value to
327 * match with that group. Add users that should have control
328 * interface access to this group.
329 *
330 * When configuring both the directory and group, use following format:
331 * DIR=/var/run/wpa_supplicant GROUP=wheel
332 * DIR=/var/run/wpa_supplicant GROUP=0
333 * (group can be either group name or gid)
334 *
335 * For UDP connections (default on Windows): The value will be ignored.
336 * This variable is just used to select that the control interface is
337 * to be created. The value can be set to, e.g., udp
338 * (ctrl_interface=udp).
339 *
340 * For Windows Named Pipe: This value can be used to set the security
341 * descriptor for controlling access to the control interface. Security
342 * descriptor can be set using Security Descriptor String Format (see
343 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthz/security/security_descriptor_string_format.asp).
344 * The descriptor string needs to be prefixed with SDDL=. For example,
345 * ctrl_interface=SDDL=D: would set an empty DACL (which will reject
346 * all connections).
347 */
348 char *ctrl_interface;
349
350 /**
351 * ctrl_interface_group - Control interface group (DEPRECATED)
352 *
353 * This variable is only used for backwards compatibility. Group for
b39d1280 354 * UNIX domain sockets should now be specified using GROUP=group in
6fc6879b
JM
355 * ctrl_interface variable.
356 */
357 char *ctrl_interface_group;
358
359 /**
360 * fast_reauth - EAP fast re-authentication (session resumption)
361 *
362 * By default, fast re-authentication is enabled for all EAP methods
363 * that support it. This variable can be used to disable fast
364 * re-authentication (by setting fast_reauth=0). Normally, there is no
365 * need to disable fast re-authentication.
366 */
367 int fast_reauth;
368
6fc6879b
JM
369 /**
370 * opensc_engine_path - Path to the OpenSSL engine for opensc
371 *
372 * This is an OpenSSL specific configuration option for loading OpenSC
373 * engine (engine_opensc.so); if %NULL, this engine is not loaded.
374 */
375 char *opensc_engine_path;
376
377 /**
378 * pkcs11_engine_path - Path to the OpenSSL engine for PKCS#11
379 *
380 * This is an OpenSSL specific configuration option for loading PKCS#11
381 * engine (engine_pkcs11.so); if %NULL, this engine is not loaded.
382 */
383 char *pkcs11_engine_path;
384
385 /**
386 * pkcs11_module_path - Path to the OpenSSL OpenSC/PKCS#11 module
387 *
388 * This is an OpenSSL specific configuration option for configuring
389 * path to OpenSC/PKCS#11 engine (opensc-pkcs11.so); if %NULL, this
390 * module is not loaded.
391 */
392 char *pkcs11_module_path;
6fc6879b 393
f64adcd7
JM
394 /**
395 * pcsc_reader - PC/SC reader name prefix
396 *
397 * If not %NULL, PC/SC reader with a name that matches this prefix is
398 * initialized for SIM/USIM access. Empty string can be used to match
399 * the first available reader.
400 */
401 char *pcsc_reader;
402
403 /**
404 * pcsc_pin - PIN for USIM, GSM SIM, and smartcards
405 *
406 * This field is used to configure PIN for SIM/USIM for EAP-SIM and
407 * EAP-AKA. If left out, this will be asked through control interface.
408 */
409 char *pcsc_pin;
410
6fc6879b
JM
411 /**
412 * driver_param - Driver interface parameters
413 *
414 * This text string is passed to the selected driver interface with the
415 * optional struct wpa_driver_ops::set_param() handler. This can be
416 * used to configure driver specific options without having to add new
417 * driver interface functionality.
418 */
419 char *driver_param;
420
421 /**
422 * dot11RSNAConfigPMKLifetime - Maximum lifetime of a PMK
423 *
424 * dot11 MIB variable for the maximum lifetime of a PMK in the PMK
425 * cache (unit: seconds).
426 */
427 unsigned int dot11RSNAConfigPMKLifetime;
428
429 /**
430 * dot11RSNAConfigPMKReauthThreshold - PMK re-authentication threshold
431 *
432 * dot11 MIB variable for the percentage of the PMK lifetime
433 * that should expire before an IEEE 802.1X reauthentication occurs.
434 */
435 unsigned int dot11RSNAConfigPMKReauthThreshold;
436
437 /**
438 * dot11RSNAConfigSATimeout - Security association timeout
439 *
440 * dot11 MIB variable for the maximum time a security association
441 * shall take to set up (unit: seconds).
442 */
443 unsigned int dot11RSNAConfigSATimeout;
444
445 /**
446 * update_config - Is wpa_supplicant allowed to update configuration
447 *
448 * This variable control whether wpa_supplicant is allow to re-write
449 * its configuration with wpa_config_write(). If this is zero,
450 * configuration data is only changed in memory and the external data
451 * is not overriden. If this is non-zero, wpa_supplicant will update
452 * the configuration data (e.g., a file) whenever configuration is
453 * changed. This update may replace the old configuration which can
454 * remove comments from it in case of a text file configuration.
455 */
456 int update_config;
457
458 /**
459 * blobs - Configuration blobs
460 */
461 struct wpa_config_blob *blobs;
f855f923
JM
462
463 /**
464 * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
465 */
466 u8 uuid[16];
6d158490 467
3c0b7aa4
JM
468 /**
469 * device_name - Device Name (WPS)
470 * User-friendly description of device; up to 32 octets encoded in
471 * UTF-8
472 */
473 char *device_name;
474
475 /**
476 * manufacturer - Manufacturer (WPS)
477 * The manufacturer of the device (up to 64 ASCII characters)
478 */
479 char *manufacturer;
480
481 /**
482 * model_name - Model Name (WPS)
483 * Model of the device (up to 32 ASCII characters)
484 */
485 char *model_name;
486
487 /**
488 * model_number - Model Number (WPS)
489 * Additional device description (up to 32 ASCII characters)
490 */
491 char *model_number;
492
493 /**
494 * serial_number - Serial Number (WPS)
495 * Serial number of the device (up to 32 characters)
496 */
497 char *serial_number;
498
499 /**
500 * device_type - Primary Device Type (WPS)
3c0b7aa4 501 */
2f646b6e 502 u8 device_type[WPS_DEV_TYPE_LEN];
3c0b7aa4 503
c0e4dd9e
JM
504 /**
505 * config_methods - Config Methods
506 *
507 * This is a space-separated list of supported WPS configuration
6a857074
JM
508 * methods. For example, "label virtual_display virtual_push_button
509 * keypad".
c0e4dd9e 510 * Available methods: usba ethernet label display ext_nfc_token
6a857074
JM
511 * int_nfc_token nfc_interface push_button keypad
512 * virtual_display physical_display
513 * virtual_push_button physical_push_button.
c0e4dd9e
JM
514 */
515 char *config_methods;
516
3c0b7aa4
JM
517 /**
518 * os_version - OS Version (WPS)
519 * 4-octet operating system version number
520 */
521 u8 os_version[4];
522
6d158490 523 /**
315ce40a 524 * country - Country code
6d158490
LR
525 *
526 * This is the ISO/IEC alpha2 country code for which we are operating
527 * in
528 */
315ce40a 529 char country[2];
47662164
JM
530
531 /**
532 * wps_cred_processing - Credential processing
533 *
534 * 0 = process received credentials internally
535 * 1 = do not process received credentials; just pass them over
536 * ctrl_iface to external program(s)
537 * 2 = process received credentials internally and pass them over
538 * ctrl_iface to external program(s)
539 */
540 int wps_cred_processing;
c9c38b09 541
e3768e7c
JM
542#define MAX_SEC_DEVICE_TYPES 5
543 /**
2f646b6e 544 * sec_device_types - Secondary Device Types (P2P)
e3768e7c 545 */
2f646b6e
JB
546 u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
547 int num_sec_device_types;
e3768e7c
JM
548
549 int p2p_listen_reg_class;
550 int p2p_listen_channel;
551 int p2p_oper_reg_class;
552 int p2p_oper_channel;
553 int p2p_go_intent;
554 char *p2p_ssid_postfix;
555 int persistent_reconnect;
0f66abd2 556 int p2p_intra_bss;
21d996f7
JM
557 unsigned int num_p2p_pref_chan;
558 struct p2p_channel *p2p_pref_chan;
e3768e7c 559
71dd3b78
AS
560 struct wpabuf *wps_vendor_ext_m1;
561
f95cac27
JMB
562#define MAX_WPS_VENDOR_EXT 10
563 /**
564 * wps_vendor_ext - Vendor extension attributes in WPS
565 */
566 struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXT];
567
3071e181
JM
568 /**
569 * p2p_group_idle - Maximum idle time in seconds for P2P group
570 *
571 * This value controls how long a P2P group is maintained after there
572 * is no other members in the group. As a GO, this means no associated
573 * stations in the group. As a P2P client, this means no GO seen in
574 * scan results. The maximum idle time is specified in seconds with 0
575 * indicating no time limit, i.e., the P2P group remains in active
c8106615
JM
576 * state indefinitely until explicitly removed. As a P2P client, the
577 * maximum idle time of P2P_MAX_CLIENT_IDLE seconds is enforced, i.e.,
578 * this parameter is mainly meant for GO use and for P2P client, it can
5f482d55
JM
579 * only be used to reduce the default timeout to smaller value. A
580 * special value -1 can be used to configure immediate removal of the
581 * group for P2P client role on any disconnection after the data
582 * connection has been established.
3071e181 583 */
5f482d55 584 int p2p_group_idle;
3071e181 585
c9c38b09
JM
586 /**
587 * bss_max_count - Maximum number of BSS entries to keep in memory
588 */
589 unsigned int bss_max_count;
3812464c 590
78633c37
SL
591 /**
592 * bss_expiration_age - BSS entry age after which it can be expired
593 *
594 * This value controls the time in seconds after which a BSS entry
595 * gets removed if it has not been updated or is not in use.
596 */
597 unsigned int bss_expiration_age;
598
599 /**
600 * bss_expiration_scan_count - Expire BSS after number of scans
601 *
602 * If the BSS entry has not been seen in this many scans, it will be
603 * removed. A value of 1 means that entry is removed after the first
604 * scan in which the BSSID is not seen. Larger values can be used
605 * to avoid BSS entries disappearing if they are not visible in
606 * every scan (e.g., low signal quality or interference).
607 */
608 unsigned int bss_expiration_scan_count;
609
3812464c
JM
610 /**
611 * filter_ssids - SSID-based scan result filtering
612 *
613 * 0 = do not filter scan results
614 * 1 = only include configured SSIDs in scan results/BSS table
615 */
616 int filter_ssids;
1d47214a 617
bf8d6d24
TP
618 /**
619 * filter_rssi - RSSI-based scan result filtering
620 *
621 * 0 = do not filter scan results
622 * -n = filter scan results below -n dBm
623 */
624 int filter_rssi;
625
dae608d5
JM
626 /**
627 * max_num_sta - Maximum number of STAs in an AP/P2P GO
628 */
629 unsigned int max_num_sta;
630
1d47214a
JM
631 /**
632 * changed_parameters - Bitmap of changed parameters since last update
633 */
634 unsigned int changed_parameters;
0d7e5a3a
JB
635
636 /**
87880919 637 * disassoc_low_ack - Disassocicate stations with massive packet loss
0d7e5a3a
JB
638 */
639 int disassoc_low_ack;
46ee0427
JM
640
641 /**
642 * interworking - Whether Interworking (IEEE 802.11u) is enabled
643 */
644 int interworking;
645
11540c0b
JM
646 /**
647 * access_network_type - Access Network Type
648 *
649 * When Interworking is enabled, scans will be limited to APs that
650 * advertise the specified Access Network Type (0..15; with 15
651 * indicating wildcard match).
652 */
653 int access_network_type;
654
46ee0427
JM
655 /**
656 * hessid - Homogenous ESS identifier
657 *
658 * If this is set (any octet is non-zero), scans will be used to
659 * request response only from BSSes belonging to the specified
660 * Homogeneous ESS. This is used only if interworking is enabled.
661 */
662 u8 hessid[ETH_ALEN];
1298c145 663
66aadbd7
JK
664 /**
665 * hs20 - Hotspot 2.0
666 */
667 int hs20;
668
1298c145
WJL
669 /**
670 * pbc_in_m1 - AP mode WPS probing workaround for PBC with Windows 7
671 *
672 * Windows 7 uses incorrect way of figuring out AP's WPS capabilities
673 * by acting as a Registrar and using M1 from the AP. The config
674 * methods attribute in that message is supposed to indicate only the
675 * configuration method supported by the AP in Enrollee role, i.e., to
676 * add an external Registrar. For that case, PBC shall not be used and
677 * as such, the PushButton config method is removed from M1 by default.
678 * If pbc_in_m1=1 is included in the configuration file, the PushButton
679 * config method is left in M1 (if included in config_methods
680 * parameter) to allow Windows 7 to use PBC instead of PIN (e.g., from
681 * a label in the AP).
682 */
683 int pbc_in_m1;
b0786fba
TB
684
685 /**
686 * autoscan - Automatic scan parameters or %NULL if none
687 *
688 * This is an optional set of parameters for automatic scanning
689 * within an interface in following format:
690 * <autoscan module name>:<module parameters>
691 */
692 char *autoscan;
3f2c8ba6
JM
693
694 /**
695 * wps_nfc_dev_pw_id - NFC Device Password ID for password token
696 */
697 int wps_nfc_dev_pw_id;
698
699 /**
700 * wps_nfc_dh_pubkey - NFC DH Public Key for password token
701 */
702 struct wpabuf *wps_nfc_dh_pubkey;
703
704 /**
705 * wps_nfc_dh_pubkey - NFC DH Private Key for password token
706 */
707 struct wpabuf *wps_nfc_dh_privkey;
708
709 /**
710 * wps_nfc_dh_pubkey - NFC Device Password for password token
711 */
712 struct wpabuf *wps_nfc_dev_pw;
6fc6879b
JM
713};
714
715
716/* Prototypes for common functions from config.c */
717
718void wpa_config_free(struct wpa_config *ssid);
719void wpa_config_free_ssid(struct wpa_ssid *ssid);
7c49fdd0
SL
720void wpa_config_foreach_network(struct wpa_config *config,
721 void (*func)(void *, struct wpa_ssid *),
722 void *arg);
6fc6879b
JM
723struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
724struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
725int wpa_config_remove_network(struct wpa_config *config, int id);
726void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
727int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
728 int line);
67e1b984
JM
729int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
730 const char *value);
3d3d3056 731char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
6fc6879b
JM
732char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
733char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
734void wpa_config_update_psk(struct wpa_ssid *ssid);
735int wpa_config_add_prio_network(struct wpa_config *config,
736 struct wpa_ssid *ssid);
aa53509f 737int wpa_config_update_prio_list(struct wpa_config *config);
6fc6879b
JM
738const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
739 const char *name);
740void wpa_config_set_blob(struct wpa_config *config,
741 struct wpa_config_blob *blob);
742void wpa_config_free_blob(struct wpa_config_blob *blob);
743int wpa_config_remove_blob(struct wpa_config *config, const char *name);
744
d94c9ee6
JM
745struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id);
746struct wpa_cred * wpa_config_add_cred(struct wpa_config *config);
747int wpa_config_remove_cred(struct wpa_config *config, int id);
1bb7b8e8
JM
748void wpa_config_free_cred(struct wpa_cred *cred);
749int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
750 const char *value, int line);
751
6fc6879b
JM
752struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
753 const char *driver_param);
754#ifndef CONFIG_NO_STDOUT_DEBUG
755void wpa_config_debug_dump_networks(struct wpa_config *config);
756#else /* CONFIG_NO_STDOUT_DEBUG */
757#define wpa_config_debug_dump_networks(c) do { } while (0)
758#endif /* CONFIG_NO_STDOUT_DEBUG */
759
760
121adf9c
JM
761/* Prototypes for common functions from config.c */
762int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
763
764
6fc6879b
JM
765/* Prototypes for backend specific functions from the selected config_*.c */
766
767/**
768 * wpa_config_read - Read and parse configuration database
769 * @name: Name of the configuration (e.g., path and file name for the
770 * configuration file)
771 * Returns: Pointer to allocated configuration data or %NULL on failure
772 *
773 * This function reads configuration data, parses its contents, and allocates
774 * data structures needed for storing configuration information. The allocated
775 * data can be freed with wpa_config_free().
776 *
777 * Each configuration backend needs to implement this function.
778 */
779struct wpa_config * wpa_config_read(const char *name);
780
781/**
782 * wpa_config_write - Write or update configuration data
783 * @name: Name of the configuration (e.g., path and file name for the
784 * configuration file)
785 * @config: Configuration data from wpa_config_read()
786 * Returns: 0 on success, -1 on failure
787 *
788 * This function write all configuration data into an external database (e.g.,
789 * a text file) in a format that can be read with wpa_config_read(). This can
790 * be used to allow wpa_supplicant to update its configuration, e.g., when a
791 * new network is added or a password is changed.
792 *
793 * Each configuration backend needs to implement this function.
794 */
795int wpa_config_write(const char *name, struct wpa_config *config);
796
797#endif /* CONFIG_H */