MBO: Add non-preferred channel configuration in wpa_supplicant
[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_USER_MPM 1
19 #define DEFAULT_MAX_PEER_LINKS 99
20 #define DEFAULT_MESH_MAX_INACTIVITY 300
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
26 #define DEFAULT_FAST_REAUTH 1
27 #define DEFAULT_P2P_GO_INTENT 7
28 #define DEFAULT_P2P_INTRA_BSS 1
29 #define DEFAULT_P2P_GO_MAX_INACTIVITY (5 * 60)
30 #define DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN 0
31 #define DEFAULT_BSS_MAX_COUNT 200
32 #define DEFAULT_BSS_EXPIRATION_AGE 180
33 #define DEFAULT_BSS_EXPIRATION_SCAN_COUNT 2
34 #define DEFAULT_MAX_NUM_STA 128
35 #define DEFAULT_ACCESS_NETWORK_TYPE 15
36 #define DEFAULT_SCAN_CUR_FREQ 0
37 #define DEFAULT_P2P_SEARCH_DELAY 500
38 #define DEFAULT_RAND_ADDR_LIFETIME 60
39 #define DEFAULT_KEY_MGMT_OFFLOAD 1
40 #define DEFAULT_CERT_IN_CB 1
41 #define DEFAULT_P2P_GO_CTWINDOW 0
42 #define DEFAULT_WPA_RSC_RELAXATION 1
43
44 #include "config_ssid.h"
45 #include "wps/wps.h"
46 #include "common/ieee802_11_defs.h"
47 #include "common/ieee802_11_common.h"
48
49
50 struct 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
70         /**
71          * temporary - Whether this credential is temporary and not to be saved
72          */
73         int temporary;
74
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
87         /**
88          * pcsc - Use PC/SC and SIM/USIM card
89          */
90         int pcsc;
91
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
107         /**
108          * ext_password - Whether password is a name for external storage
109          */
110         int ext_password;
111
112         /**
113          * ca_cert - CA certificate for Interworking network selection
114          */
115         char *ca_cert;
116
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
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
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
179          * values are present, this constraint is matched against SubjectName CN
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
191         /**
192          * domain - Home service provider FQDN(s)
193          *
194          * This is used to compare against the Domain Name List to figure out
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.
198          */
199         char **domain;
200
201         /**
202          * num_domain - Number of FQDNs in the domain array
203          */
204         size_t num_domain;
205
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
224         u8 required_roaming_consortium[15];
225         size_t required_roaming_consortium_len;
226
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;
249
250         struct excluded_ssid {
251                 u8 ssid[SSID_MAX_LEN];
252                 size_t ssid_len;
253         } *excluded_ssid;
254         size_t num_excluded_ssid;
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;
263
264         int update_identifier;
265
266         /**
267          * provisioning_sp - FQDN of the SP that provisioned the credential
268          */
269         char *provisioning_sp;
270
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
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;
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;
294
295         unsigned int num_req_conn_capab;
296         u8 *req_conn_capab_proto;
297         int **req_conn_capab_port;
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;
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;
315 };
316
317
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)
324 #define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
325 #define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
326 #define CFG_CHANGED_WPS_STRING BIT(8)
327 #define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
328 #define CFG_CHANGED_VENDOR_EXTENSION BIT(10)
329 #define CFG_CHANGED_P2P_LISTEN_CHANNEL BIT(11)
330 #define CFG_CHANGED_P2P_OPER_CHANNEL BIT(12)
331 #define CFG_CHANGED_P2P_PREF_CHAN BIT(13)
332 #define CFG_CHANGED_EXT_PW_BACKEND BIT(14)
333 #define CFG_CHANGED_NFC_PASSWORD_TOKEN BIT(15)
334 #define CFG_CHANGED_P2P_PASSPHRASE_LEN BIT(16)
335 #define CFG_CHANGED_SCHED_SCAN_PLANS BIT(17)
336
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  */
345 struct 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
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
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.
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.
416          */
417         int ap_scan;
418
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
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
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
446          * mechanism is used. For all cases, the existence of this parameter
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
498          * UNIX domain sockets should now be specified using GROUP=group in
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
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;
537
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
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
564         /**
565          * external_sim - Use external processing for SIM/USIM operations
566          */
567         int external_sim;
568
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;
620
621         /**
622          * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
623          */
624         u8 uuid[16];
625
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)
659          */
660         u8 device_type[WPS_DEV_TYPE_LEN];
661
662         /**
663          * config_methods - Config Methods
664          *
665          * This is a space-separated list of supported WPS configuration
666          * methods. For example, "label virtual_display virtual_push_button
667          * keypad".
668          * Available methods: usba ethernet label display ext_nfc_token
669          * int_nfc_token nfc_interface push_button keypad
670          * virtual_display physical_display
671          * virtual_push_button physical_push_button.
672          */
673         char *config_methods;
674
675         /**
676          * os_version - OS Version (WPS)
677          * 4-octet operating system version number
678          */
679         u8 os_version[4];
680
681         /**
682          * country - Country code
683          *
684          * This is the ISO/IEC alpha2 country code for which we are operating
685          * in
686          */
687         char country[2];
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;
699
700 #define MAX_SEC_DEVICE_TYPES 5
701         /**
702          * sec_device_types - Secondary Device Types (P2P)
703          */
704         u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
705         int num_sec_device_types;
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;
714         int p2p_intra_bss;
715         unsigned int num_p2p_pref_chan;
716         struct p2p_channel *p2p_pref_chan;
717         struct wpa_freq_range_list p2p_no_go_freq;
718         int p2p_add_cli_chan;
719         int p2p_ignore_shared_freq;
720         int p2p_optimize_listen_chan;
721
722         struct wpabuf *wps_vendor_ext_m1;
723
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
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
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
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.
745          */
746         int p2p_group_idle;
747
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.
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.
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,
775                 P2P_GO_FREQ_MOVE_SCM_ECSA = 3,
776                 P2P_GO_FREQ_MOVE_MAX = P2P_GO_FREQ_MOVE_SCM_ECSA,
777         } p2p_go_freq_change_policy;
778
779 #define DEFAULT_P2P_GO_FREQ_MOVE P2P_GO_FREQ_MOVE_STAY
780
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
789         /**
790          * bss_max_count - Maximum number of BSS entries to keep in memory
791          */
792         unsigned int bss_max_count;
793
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
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;
820
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
829         /**
830          * max_num_sta - Maximum number of STAs in an AP/P2P GO
831          */
832         unsigned int max_num_sta;
833
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
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
850         /**
851          * changed_parameters - Bitmap of changed parameters since last update
852          */
853         unsigned int changed_parameters;
854
855         /**
856          * disassoc_low_ack - Disassocicate stations with massive packet loss
857          */
858         int disassoc_low_ack;
859
860         /**
861          * interworking - Whether Interworking (IEEE 802.11u) is enabled
862          */
863         int interworking;
864
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
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];
882
883         /**
884          * hs20 - Hotspot 2.0
885          */
886         int hs20;
887
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;
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;
912
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
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         /**
933          * wps_nfc_dh_privkey - NFC DH Private Key for password token
934          */
935         struct wpabuf *wps_nfc_dh_privkey;
936
937         /**
938          * wps_nfc_dev_pw - NFC Device Password for password token
939          */
940         struct wpabuf *wps_nfc_dev_pw;
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;
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;
957
958         struct hostapd_wmm_ac_params wmm_ac_params[4];
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;
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;
980
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
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
999         /**
1000          * p2p_disabled - Whether P2P operations are disabled for this interface
1001          */
1002         int p2p_disabled;
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;
1014
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
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;
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;
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;
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;
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;
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;
1090
1091         /**
1092          * sched_scan_interval -  schedule scan interval
1093          */
1094         unsigned int sched_scan_interval;
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;
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];
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;
1119
1120         /**
1121          * wowlan_triggers - Wake-on-WLAN triggers
1122          *
1123          * If set, these wowlan triggers will be configured.
1124          */
1125         char *wowlan_triggers;
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;
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
1142          * 2 = like 1, but maintain OUI (with local admin bit set)
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
1160          * 2 = like 1, but maintain OUI (with local admin bit set)
1161          */
1162         int preassoc_mac_addr;
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;
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;
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;
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;
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;
1207
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
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;
1228
1229         /**
1230          * reassoc_same_bss_optim - Whether to optimize reassoc-to-same-BSS
1231          */
1232         int reassoc_same_bss_optim;
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;
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;
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;
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;
1278
1279 #ifdef CONFIG_MBO
1280         /**
1281          * non_pref_chan - Non-preferred channels list, separated by spaces.
1282          *
1283          * format: op_class:chan:preference:reason<:detail>
1284          * Detail is optional.
1285          */
1286         char *non_pref_chan;
1287 #endif /* CONFIG_MBO */
1288 };
1289
1290
1291 /* Prototypes for common functions from config.c */
1292
1293 void wpa_config_free(struct wpa_config *ssid);
1294 void wpa_config_free_ssid(struct wpa_ssid *ssid);
1295 void wpa_config_foreach_network(struct wpa_config *config,
1296                                 void (*func)(void *, struct wpa_ssid *),
1297                                 void *arg);
1298 struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
1299 struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
1300 int wpa_config_remove_network(struct wpa_config *config, int id);
1301 void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
1302 int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
1303                    int line);
1304 int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
1305                           const char *value);
1306 int wpa_config_dump_values(struct wpa_config *config, char *buf,
1307                            size_t buflen);
1308 int wpa_config_get_value(const char *name, struct wpa_config *config,
1309                          char *buf, size_t buflen);
1310
1311 char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
1312 char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
1313 char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
1314 void wpa_config_update_psk(struct wpa_ssid *ssid);
1315 int wpa_config_add_prio_network(struct wpa_config *config,
1316                                 struct wpa_ssid *ssid);
1317 int wpa_config_update_prio_list(struct wpa_config *config);
1318 const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
1319                                                    const char *name);
1320 void wpa_config_set_blob(struct wpa_config *config,
1321                          struct wpa_config_blob *blob);
1322 void wpa_config_free_blob(struct wpa_config_blob *blob);
1323 int wpa_config_remove_blob(struct wpa_config *config, const char *name);
1324 void wpa_config_flush_blobs(struct wpa_config *config);
1325
1326 struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id);
1327 struct wpa_cred * wpa_config_add_cred(struct wpa_config *config);
1328 int wpa_config_remove_cred(struct wpa_config *config, int id);
1329 void wpa_config_free_cred(struct wpa_cred *cred);
1330 int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
1331                         const char *value, int line);
1332 char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var);
1333
1334 struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
1335                                            const char *driver_param);
1336 #ifndef CONFIG_NO_STDOUT_DEBUG
1337 void wpa_config_debug_dump_networks(struct wpa_config *config);
1338 #else /* CONFIG_NO_STDOUT_DEBUG */
1339 #define wpa_config_debug_dump_networks(c) do { } while (0)
1340 #endif /* CONFIG_NO_STDOUT_DEBUG */
1341
1342
1343 /* Prototypes for common functions from config.c */
1344 int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
1345
1346 int wpa_config_get_num_global_field_names(void);
1347
1348 const char * wpa_config_get_global_field_name(unsigned int i, int *no_var);
1349
1350 /* Prototypes for backend specific functions from the selected config_*.c */
1351
1352 /**
1353  * wpa_config_read - Read and parse configuration database
1354  * @name: Name of the configuration (e.g., path and file name for the
1355  * configuration file)
1356  * @cfgp: Pointer to previously allocated configuration data or %NULL if none
1357  * Returns: Pointer to allocated configuration data or %NULL on failure
1358  *
1359  * This function reads configuration data, parses its contents, and allocates
1360  * data structures needed for storing configuration information. The allocated
1361  * data can be freed with wpa_config_free().
1362  *
1363  * Each configuration backend needs to implement this function.
1364  */
1365 struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp);
1366
1367 /**
1368  * wpa_config_write - Write or update configuration data
1369  * @name: Name of the configuration (e.g., path and file name for the
1370  * configuration file)
1371  * @config: Configuration data from wpa_config_read()
1372  * Returns: 0 on success, -1 on failure
1373  *
1374  * This function write all configuration data into an external database (e.g.,
1375  * a text file) in a format that can be read with wpa_config_read(). This can
1376  * be used to allow wpa_supplicant to update its configuration, e.g., when a
1377  * new network is added or a password is changed.
1378  *
1379  * Each configuration backend needs to implement this function.
1380  */
1381 int wpa_config_write(const char *name, struct wpa_config *config);
1382
1383 #endif /* CONFIG_H */