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