]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config.h
WPS: Add support for adding WPS Vendor Extensions
[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 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15#ifndef CONFIG_H
16#define CONFIG_H
17
18#define DEFAULT_EAPOL_VERSION 1
19#ifdef CONFIG_NO_SCAN_PROCESSING
20#define DEFAULT_AP_SCAN 2
21#else /* CONFIG_NO_SCAN_PROCESSING */
22#define DEFAULT_AP_SCAN 1
23#endif /* CONFIG_NO_SCAN_PROCESSING */
24#define DEFAULT_FAST_REAUTH 1
e3768e7c 25#define DEFAULT_P2P_GO_INTENT 7
0f66abd2 26#define DEFAULT_P2P_INTRA_BSS 1
c9c38b09 27#define DEFAULT_BSS_MAX_COUNT 200
dae608d5 28#define DEFAULT_MAX_NUM_STA 128
6fc6879b
JM
29
30#include "config_ssid.h"
2f646b6e 31#include "wps/wps.h"
6fc6879b
JM
32
33
1d47214a
JM
34#define CFG_CHANGED_DEVICE_NAME BIT(0)
35#define CFG_CHANGED_CONFIG_METHODS BIT(1)
36#define CFG_CHANGED_DEVICE_TYPE BIT(2)
37#define CFG_CHANGED_OS_VERSION BIT(3)
38#define CFG_CHANGED_UUID BIT(4)
39#define CFG_CHANGED_COUNTRY BIT(5)
e3768e7c
JM
40#define CFG_CHANGED_SEC_DEVICE_TYPE BIT(6)
41#define CFG_CHANGED_P2P_SSID_POSTFIX BIT(7)
1c9cb49f 42#define CFG_CHANGED_WPS_STRING BIT(8)
0f66abd2 43#define CFG_CHANGED_P2P_INTRA_BSS BIT(9)
1d47214a 44
6fc6879b
JM
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 */
53struct 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 existance 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
b39d1280 173 * UNIX domain sockets should now be specified using GROUP=group in
6fc6879b
JM
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
6fc6879b
JM
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;
6fc6879b
JM
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;
f855f923
JM
264
265 /**
266 * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
267 */
268 u8 uuid[16];
6d158490 269
3c0b7aa4
JM
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)
3c0b7aa4 303 */
2f646b6e 304 u8 device_type[WPS_DEV_TYPE_LEN];
3c0b7aa4 305
c0e4dd9e
JM
306 /**
307 * config_methods - Config Methods
308 *
309 * This is a space-separated list of supported WPS configuration
6a857074
JM
310 * methods. For example, "label virtual_display virtual_push_button
311 * keypad".
c0e4dd9e 312 * Available methods: usba ethernet label display ext_nfc_token
6a857074
JM
313 * int_nfc_token nfc_interface push_button keypad
314 * virtual_display physical_display
315 * virtual_push_button physical_push_button.
c0e4dd9e
JM
316 */
317 char *config_methods;
318
3c0b7aa4
JM
319 /**
320 * os_version - OS Version (WPS)
321 * 4-octet operating system version number
322 */
323 u8 os_version[4];
324
6d158490 325 /**
315ce40a 326 * country - Country code
6d158490
LR
327 *
328 * This is the ISO/IEC alpha2 country code for which we are operating
329 * in
330 */
315ce40a 331 char country[2];
47662164
JM
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;
c9c38b09 343
e3768e7c
JM
344#define MAX_SEC_DEVICE_TYPES 5
345 /**
2f646b6e 346 * sec_device_types - Secondary Device Types (P2P)
e3768e7c 347 */
2f646b6e
JB
348 u8 sec_device_type[MAX_SEC_DEVICE_TYPES][WPS_DEV_TYPE_LEN];
349 int num_sec_device_types;
e3768e7c
JM
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;
0f66abd2 358 int p2p_intra_bss;
e3768e7c 359
3071e181
JM
360 /**
361 * p2p_group_idle - Maximum idle time in seconds for P2P group
362 *
363 * This value controls how long a P2P group is maintained after there
364 * is no other members in the group. As a GO, this means no associated
365 * stations in the group. As a P2P client, this means no GO seen in
366 * scan results. The maximum idle time is specified in seconds with 0
367 * indicating no time limit, i.e., the P2P group remains in active
368 * state indefinitely until explicitly removed.
369 */
370 unsigned int p2p_group_idle;
371
c9c38b09
JM
372 /**
373 * bss_max_count - Maximum number of BSS entries to keep in memory
374 */
375 unsigned int bss_max_count;
3812464c
JM
376
377 /**
378 * filter_ssids - SSID-based scan result filtering
379 *
380 * 0 = do not filter scan results
381 * 1 = only include configured SSIDs in scan results/BSS table
382 */
383 int filter_ssids;
1d47214a 384
dae608d5
JM
385 /**
386 * max_num_sta - Maximum number of STAs in an AP/P2P GO
387 */
388 unsigned int max_num_sta;
389
1d47214a
JM
390 /**
391 * changed_parameters - Bitmap of changed parameters since last update
392 */
393 unsigned int changed_parameters;
0d7e5a3a
JB
394
395 /**
396 * disassoc_low_ack - disassocenticate stations with massive packet loss
397 */
398 int disassoc_low_ack;
6fc6879b
JM
399};
400
401
402/* Prototypes for common functions from config.c */
403
404void wpa_config_free(struct wpa_config *ssid);
405void wpa_config_free_ssid(struct wpa_ssid *ssid);
406struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id);
407struct wpa_ssid * wpa_config_add_network(struct wpa_config *config);
408int wpa_config_remove_network(struct wpa_config *config, int id);
409void wpa_config_set_network_defaults(struct wpa_ssid *ssid);
410int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
411 int line);
3d3d3056 412char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys);
6fc6879b
JM
413char * wpa_config_get(struct wpa_ssid *ssid, const char *var);
414char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var);
415void wpa_config_update_psk(struct wpa_ssid *ssid);
416int wpa_config_add_prio_network(struct wpa_config *config,
417 struct wpa_ssid *ssid);
aa53509f 418int wpa_config_update_prio_list(struct wpa_config *config);
6fc6879b
JM
419const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
420 const char *name);
421void wpa_config_set_blob(struct wpa_config *config,
422 struct wpa_config_blob *blob);
423void wpa_config_free_blob(struct wpa_config_blob *blob);
424int wpa_config_remove_blob(struct wpa_config *config, const char *name);
425
426struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
427 const char *driver_param);
428#ifndef CONFIG_NO_STDOUT_DEBUG
429void wpa_config_debug_dump_networks(struct wpa_config *config);
430#else /* CONFIG_NO_STDOUT_DEBUG */
431#define wpa_config_debug_dump_networks(c) do { } while (0)
432#endif /* CONFIG_NO_STDOUT_DEBUG */
433
434
121adf9c
JM
435/* Prototypes for common functions from config.c */
436int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
437
438
6fc6879b
JM
439/* Prototypes for backend specific functions from the selected config_*.c */
440
441/**
442 * wpa_config_read - Read and parse configuration database
443 * @name: Name of the configuration (e.g., path and file name for the
444 * configuration file)
445 * Returns: Pointer to allocated configuration data or %NULL on failure
446 *
447 * This function reads configuration data, parses its contents, and allocates
448 * data structures needed for storing configuration information. The allocated
449 * data can be freed with wpa_config_free().
450 *
451 * Each configuration backend needs to implement this function.
452 */
453struct wpa_config * wpa_config_read(const char *name);
454
455/**
456 * wpa_config_write - Write or update configuration data
457 * @name: Name of the configuration (e.g., path and file name for the
458 * configuration file)
459 * @config: Configuration data from wpa_config_read()
460 * Returns: 0 on success, -1 on failure
461 *
462 * This function write all configuration data into an external database (e.g.,
463 * a text file) in a format that can be read with wpa_config_read(). This can
464 * be used to allow wpa_supplicant to update its configuration, e.g., when a
465 * new network is added or a password is changed.
466 *
467 * Each configuration backend needs to implement this function.
468 */
469int wpa_config_write(const char *name, struct wpa_config *config);
470
471#endif /* CONFIG_H */