a62f288167ffb19bb13dad31a95613abeeef0863
[mech_eap.git] / wpa_supplicant / config.h
1 /*
2  * WPA Supplicant / Configuration file structures
3  * Copyright (c) 2003-2005, 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_BSS_MAX_COUNT 200
22 #define DEFAULT_BSS_EXPIRATION_AGE 180
23 #define DEFAULT_BSS_EXPIRATION_SCAN_COUNT 2
24 #define DEFAULT_MAX_NUM_STA 128
25 #define DEFAULT_ACCESS_NETWORK_TYPE 15
26
27 #include "config_ssid.h"
28 #include "wps/wps.h"
29
30
31 #define CFG_CHANGED_DEVICE_NAME BIT(0)
32 #define CFG_CHANGED_CONFIG_METHODS BIT(1)
33 #define CFG_CHANGED_DEVICE_TYPE BIT(2)
34 #define CFG_CHANGED_OS_VERSION BIT(3)
35 #define CFG_CHANGED_UUID BIT(4)
36 #define CFG_CHANGED_COUNTRY BIT(5)
37 #define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
38 #define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
39 #define CFG_CHANGED_WPS_STRING BIT(8)
40 #define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
41 #define CFG_CHANGED_VENDOR_EXTENSION BIT(10)
42 #define CFG_CHANGED_P2P_LISTEN_CHANNEL BIT(11)
43 #define CFG_CHANGED_P2P_OPER_CHANNEL BIT(12)
44
45 /**
46  * struct wpa_config - wpa_supplicant configuration data
47  *
48  * This data structure is presents the per-interface (radio) configuration
49  * data. In many cases, there is only one struct wpa_config instance, but if
50  * more than one network interface is being controlled, one instance is used
51  * for each.
52  */
53 struct wpa_config {
54         /**
55          * ssid - Head of the global network list
56          *
57          * This is the head for the list of all the configured networks.
58          */
59         struct wpa_ssid *ssid;
60
61         /**
62          * pssid - Per-priority network lists (in priority order)
63          */
64         struct wpa_ssid **pssid;
65
66         /**
67          * num_prio - Number of different priorities used in the pssid lists
68          *
69          * This indicates how many per-priority network lists are included in
70          * pssid.
71          */
72         int num_prio;
73
74         /**
75          * eapol_version - IEEE 802.1X/EAPOL version number
76          *
77          * wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which
78          * defines EAPOL version 2. However, there are many APs that do not
79          * handle the new version number correctly (they seem to drop the
80          * frames completely). In order to make wpa_supplicant interoperate
81          * with these APs, the version number is set to 1 by default. This
82          * configuration value can be used to set it to the new version (2).
83          */
84         int eapol_version;
85
86         /**
87          * ap_scan - AP scanning/selection
88          *
89          * By default, wpa_supplicant requests driver to perform AP
90          * scanning and then uses the scan results to select a
91          * suitable AP. Another alternative is to allow the driver to
92          * take care of AP scanning and selection and use
93          * wpa_supplicant just to process EAPOL frames based on IEEE
94          * 802.11 association information from the driver.
95          *
96          * 1: wpa_supplicant initiates scanning and AP selection (default).
97          *
98          * 0: Driver takes care of scanning, AP selection, and IEEE 802.11
99          * association parameters (e.g., WPA IE generation); this mode can
100          * also be used with non-WPA drivers when using IEEE 802.1X mode;
101          * do not try to associate with APs (i.e., external program needs
102          * to control association). This mode must also be used when using
103          * wired Ethernet drivers.
104          *
105          * 2: like 0, but associate with APs using security policy and SSID
106          * (but not BSSID); this can be used, e.g., with ndiswrapper and NDIS
107          * drivers to enable operation with hidden SSIDs and optimized roaming;
108          * in this mode, the network blocks in the configuration are tried
109          * one by one until the driver reports successful association; each
110          * network block should have explicit security policy (i.e., only one
111          * option in the lists) for key_mgmt, pairwise, group, proto variables.
112          */
113         int ap_scan;
114
115         /**
116          * ctrl_interface - Parameters for the control interface
117          *
118          * If this is specified, %wpa_supplicant will open a control interface
119          * that is available for external programs to manage %wpa_supplicant.
120          * The meaning of this string depends on which control interface
121          * mechanism is used. For all cases, the existence of this parameter
122          * in configuration is used to determine whether the control interface
123          * is enabled.
124          *
125          * For UNIX domain sockets (default on Linux and BSD): This is a
126          * directory that will be created for UNIX domain sockets for listening
127          * to requests from external programs (CLI/GUI, etc.) for status
128          * information and configuration. The socket file will be named based
129          * on the interface name, so multiple %wpa_supplicant processes can be
130          * run at the same time if more than one interface is used.
131          * /var/run/wpa_supplicant is the recommended directory for sockets and
132          * by default, wpa_cli will use it when trying to connect with
133          * %wpa_supplicant.
134          *
135          * Access control for the control interface can be configured
136          * by setting the directory to allow only members of a group
137          * to use sockets. This way, it is possible to run
138          * %wpa_supplicant as root (since it needs to change network
139          * configuration and open raw sockets) and still allow GUI/CLI
140          * components to be run as non-root users. However, since the
141          * control interface can be used to change the network
142          * configuration, this access needs to be protected in many
143          * cases. By default, %wpa_supplicant is configured to use gid
144          * 0 (root). If you want to allow non-root users to use the
145          * control interface, add a new group and change this value to
146          * match with that group. Add users that should have control
147          * interface access to this group.
148          *
149          * When configuring both the directory and group, use following format:
150          * DIR=/var/run/wpa_supplicant GROUP=wheel
151          * DIR=/var/run/wpa_supplicant GROUP=0
152          * (group can be either group name or gid)
153          *
154          * For UDP connections (default on Windows): The value will be ignored.
155          * This variable is just used to select that the control interface is
156          * to be created. The value can be set to, e.g., udp
157          * (ctrl_interface=udp).
158          *
159          * For Windows Named Pipe: This value can be used to set the security
160          * descriptor for controlling access to the control interface. Security
161          * descriptor can be set using Security Descriptor String Format (see
162          * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthz/security/security_descriptor_string_format.asp).
163          * The descriptor string needs to be prefixed with SDDL=. For example,
164          * ctrl_interface=SDDL=D: would set an empty DACL (which will reject
165          * all connections).
166          */
167         char *ctrl_interface;
168
169         /**
170          * ctrl_interface_group - Control interface group (DEPRECATED)
171          *
172          * This variable is only used for backwards compatibility. Group for
173          * UNIX domain sockets should now be specified using GROUP=group in
174          * ctrl_interface variable.
175          */
176         char *ctrl_interface_group;
177
178         /**
179          * fast_reauth - EAP fast re-authentication (session resumption)
180          *
181          * By default, fast re-authentication is enabled for all EAP methods
182          * that support it. This variable can be used to disable fast
183          * re-authentication (by setting fast_reauth=0). Normally, there is no
184          * need to disable fast re-authentication.
185          */
186         int fast_reauth;
187
188         /**
189          * opensc_engine_path - Path to the OpenSSL engine for opensc
190          *
191          * This is an OpenSSL specific configuration option for loading OpenSC
192          * engine (engine_opensc.so); if %NULL, this engine is not loaded.
193          */
194         char *opensc_engine_path;
195
196         /**
197          * pkcs11_engine_path - Path to the OpenSSL engine for PKCS#11
198          *
199          * This is an OpenSSL specific configuration option for loading PKCS#11
200          * engine (engine_pkcs11.so); if %NULL, this engine is not loaded.
201          */
202         char *pkcs11_engine_path;
203
204         /**
205          * pkcs11_module_path - Path to the OpenSSL OpenSC/PKCS#11 module
206          *
207          * This is an OpenSSL specific configuration option for configuring
208          * path to OpenSC/PKCS#11 engine (opensc-pkcs11.so); if %NULL, this
209          * module is not loaded.
210          */
211         char *pkcs11_module_path;
212
213         /**
214          * driver_param - Driver interface parameters
215          *
216          * This text string is passed to the selected driver interface with the
217          * optional struct wpa_driver_ops::set_param() handler. This can be
218          * used to configure driver specific options without having to add new
219          * driver interface functionality.
220          */
221         char *driver_param;
222
223         /**
224          * dot11RSNAConfigPMKLifetime - Maximum lifetime of a PMK
225          *
226          * dot11 MIB variable for the maximum lifetime of a PMK in the PMK
227          * cache (unit: seconds).
228          */
229         unsigned int dot11RSNAConfigPMKLifetime;
230
231         /**
232          * dot11RSNAConfigPMKReauthThreshold - PMK re-authentication threshold
233          *
234          * dot11 MIB variable for the percentage of the PMK lifetime
235          * that should expire before an IEEE 802.1X reauthentication occurs.
236          */
237         unsigned int dot11RSNAConfigPMKReauthThreshold;
238
239         /**
240          * dot11RSNAConfigSATimeout - Security association timeout
241          *
242          * dot11 MIB variable for the maximum time a security association
243          * shall take to set up (unit: seconds).
244          */
245         unsigned int dot11RSNAConfigSATimeout;
246
247         /**
248          * update_config - Is wpa_supplicant allowed to update configuration
249          *
250          * This variable control whether wpa_supplicant is allow to re-write
251          * its configuration with wpa_config_write(). If this is zero,
252          * configuration data is only changed in memory and the external data
253          * is not overriden. If this is non-zero, wpa_supplicant will update
254          * the configuration data (e.g., a file) whenever configuration is
255          * changed. This update may replace the old configuration which can
256          * remove comments from it in case of a text file configuration.
257          */
258         int update_config;
259
260         /**
261          * blobs - Configuration blobs
262          */
263         struct wpa_config_blob *blobs;
264
265         /**
266          * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
267          */
268         u8 uuid[16];
269
270         /**
271          * device_name - Device Name (WPS)
272          * User-friendly description of device; up to 32 octets encoded in
273          * UTF-8
274          */
275         char *device_name;
276
277         /**
278          * manufacturer - Manufacturer (WPS)
279          * The manufacturer of the device (up to 64 ASCII characters)
280          */
281         char *manufacturer;
282
283         /**
284          * model_name - Model Name (WPS)
285          * Model of the device (up to 32 ASCII characters)
286          */
287         char *model_name;
288
289         /**
290          * model_number - Model Number (WPS)
291          * Additional device description (up to 32 ASCII characters)
292          */
293         char *model_number;
294
295         /**
296          * serial_number - Serial Number (WPS)
297          * Serial number of the device (up to 32 characters)
298          */
299         char *serial_number;
300
301         /**
302          * device_type - Primary Device Type (WPS)
303          */
304         u8 device_type[WPS_DEV_TYPE_LEN];
305
306         /**
307          * config_methods - Config Methods
308          *
309          * This is a space-separated list of supported WPS configuration
310          * methods. For example, "label virtual_display virtual_push_button
311          * keypad".
312          * Available methods: usba ethernet label display ext_nfc_token
313          * int_nfc_token nfc_interface push_button keypad
314          * virtual_display physical_display
315          * virtual_push_button physical_push_button.
316          */
317         char *config_methods;
318
319         /**
320          * os_version - OS Version (WPS)
321          * 4-octet operating system version number
322          */
323         u8 os_version[4];
324
325         /**
326          * country - Country code
327          *
328          * This is the ISO/IEC alpha2 country code for which we are operating
329          * in
330          */
331         char country[2];
332
333         /**
334          * wps_cred_processing - Credential processing
335          *
336          *   0 = process received credentials internally
337          *   1 = do not process received credentials; just pass them over
338          *      ctrl_iface to external program(s)
339          *   2 = process received credentials internally and pass them over
340          *      ctrl_iface to external program(s)
341          */
342         int wps_cred_processing;
343
344 #define MAX_SEC_DEVICE_TYPES 5
345         /**
346          * sec_device_types - Secondary Device Types (P2P)
347          */
348         u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
349         int num_sec_device_types;
350
351         int p2p_listen_reg_class;
352         int p2p_listen_channel;
353         int p2p_oper_reg_class;
354         int p2p_oper_channel;
355         int p2p_go_intent;
356         char *p2p_ssid_postfix;
357         int persistent_reconnect;
358         int p2p_intra_bss;
359
360 #define MAX_WPS_VENDOR_EXT 10
361         /**
362          * wps_vendor_ext - Vendor extension attributes in WPS
363          */
364         struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXT];
365
366         /**
367          * p2p_group_idle - Maximum idle time in seconds for P2P group
368          *
369          * This value controls how long a P2P group is maintained after there
370          * is no other members in the group. As a GO, this means no associated
371          * stations in the group. As a P2P client, this means no GO seen in
372          * scan results. The maximum idle time is specified in seconds with 0
373          * indicating no time limit, i.e., the P2P group remains in active
374          * state indefinitely until explicitly removed. As a P2P client, the
375          * maximum idle time of P2P_MAX_CLIENT_IDLE seconds is enforced, i.e.,
376          * this parameter is mainly meant for GO use and for P2P client, it can
377          * only be used to reduce the default timeout to smaller value.
378          */
379         unsigned int p2p_group_idle;
380
381         /**
382          * bss_max_count - Maximum number of BSS entries to keep in memory
383          */
384         unsigned int bss_max_count;
385
386         /**
387          * bss_expiration_age - BSS entry age after which it can be expired
388          *
389          * This value controls the time in seconds after which a BSS entry
390          * gets removed if it has not been updated or is not in use.
391          */
392         unsigned int bss_expiration_age;
393
394         /**
395          * bss_expiration_scan_count - Expire BSS after number of scans
396          *
397          * If the BSS entry has not been seen in this many scans, it will be
398          * removed. A value of 1 means that entry is removed after the first
399          * scan in which the BSSID is not seen. Larger values can be used
400          * to avoid BSS entries disappearing if they are not visible in
401          * every scan (e.g., low signal quality or interference).
402          */
403         unsigned int bss_expiration_scan_count;
404
405         /**
406          * filter_ssids - SSID-based scan result filtering
407          *
408          *   0 = do not filter scan results
409          *   1 = only include configured SSIDs in scan results/BSS table
410          */
411         int filter_ssids;
412
413         /**
414          * max_num_sta - Maximum number of STAs in an AP/P2P GO
415          */
416         unsigned int max_num_sta;
417
418         /**
419          * changed_parameters - Bitmap of changed parameters since last update
420          */
421         unsigned int changed_parameters;
422
423         /**
424          * disassoc_low_ack - Disassocicate stations with massive packet loss
425          */
426         int disassoc_low_ack;
427
428         /**
429          * interworking - Whether Interworking (IEEE 802.11u) is enabled
430          */
431         int interworking;
432
433         /**
434          * access_network_type - Access Network Type
435          *
436          * When Interworking is enabled, scans will be limited to APs that
437          * advertise the specified Access Network Type (0..15; with 15
438          * indicating wildcard match).
439          */
440         int access_network_type;
441
442         /**
443          * hessid - Homogenous ESS identifier
444          *
445          * If this is set (any octet is non-zero), scans will be used to
446          * request response only from BSSes belonging to the specified
447          * Homogeneous ESS. This is used only if interworking is enabled.
448          */
449         u8 hessid[ETH_ALEN];
450
451         /**
452          * home_realm - Home Realm for Interworking
453          */
454         char *home_realm;
455
456         /**
457          * home_username - Username for Interworking network selection
458          */
459         char *home_username;
460
461         /**
462          * home_password - Password for Interworking network selection
463          */
464         char *home_password;
465
466         /**
467          * home_ca_cert - CA certificate for Interworking network selection
468          */
469         char *home_ca_cert;
470
471         /**
472          * home_imsi - IMSI in <MCC> | <MNC> | '-' | <MSIN> format
473          */
474         char *home_imsi;
475
476         /**
477          * home_milenage - Milenage parameters for SIM/USIM simulator in
478          *      <Ki>:<OPc>:<SQN> format
479          */
480         char *home_milenage;
481 };
482
483
484 /* Prototypes for common functions from config.c */
485
486 void wpa_config_free(struct wpa_config *ssid);
487 void wpa_config_free_ssid(struct wpa_ssid *ssid);
488 void wpa_config_foreach_network(struct wpa_config *config,
489                                 void (*func)(void *, struct wpa_ssid *),
490                                 void *arg);
491 struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
492 struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
493 int wpa_config_remove_network(struct wpa_config *config, int id);
494 void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
495 int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
496                    int line);
497 int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
498                           const char *value);
499 char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
500 char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
501 char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
502 void wpa_config_update_psk(struct wpa_ssid *ssid);
503 int wpa_config_add_prio_network(struct wpa_config *config,
504                                 struct wpa_ssid *ssid);
505 int wpa_config_update_prio_list(struct wpa_config *config);
506 const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
507                                                    const char *name);
508 void wpa_config_set_blob(struct wpa_config *config,
509                          struct wpa_config_blob *blob);
510 void wpa_config_free_blob(struct wpa_config_blob *blob);
511 int wpa_config_remove_blob(struct wpa_config *config, const char *name);
512
513 struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
514                                            const char *driver_param);
515 #ifndef CONFIG_NO_STDOUT_DEBUG
516 void wpa_config_debug_dump_networks(struct wpa_config *config);
517 #else /* CONFIG_NO_STDOUT_DEBUG */
518 #define wpa_config_debug_dump_networks(c) do { } while (0)
519 #endif /* CONFIG_NO_STDOUT_DEBUG */
520
521
522 /* Prototypes for common functions from config.c */
523 int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
524
525
526 /* Prototypes for backend specific functions from the selected config_*.c */
527
528 /**
529  * wpa_config_read - Read and parse configuration database
530  * @name: Name of the configuration (e.g., path and file name for the
531  * configuration file)
532  * Returns: Pointer to allocated configuration data or %NULL on failure
533  *
534  * This function reads configuration data, parses its contents, and allocates
535  * data structures needed for storing configuration information. The allocated
536  * data can be freed with wpa_config_free().
537  *
538  * Each configuration backend needs to implement this function.
539  */
540 struct wpa_config * wpa_config_read(const char *name);
541
542 /**
543  * wpa_config_write - Write or update configuration data
544  * @name: Name of the configuration (e.g., path and file name for the
545  * configuration file)
546  * @config: Configuration data from wpa_config_read()
547  * Returns: 0 on success, -1 on failure
548  *
549  * This function write all configuration data into an external database (e.g.,
550  * a text file) in a format that can be read with wpa_config_read(). This can
551  * be used to allow wpa_supplicant to update its configuration, e.g., when a
552  * new network is added or a password is changed.
553  *
554  * Each configuration backend needs to implement this function.
555  */
556 int wpa_config_write(const char *name, struct wpa_config *config);
557
558 #endif /* CONFIG_H */