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