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