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