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