]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config_ssid.h
P2P: Avoid extra group interface creation on GO reinvocation
[thirdparty/hostap.git] / wpa_supplicant / config_ssid.h
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant / Network configuration structures
3 * Copyright (c) 2003-2008, 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_SSID_H
10#define CONFIG_SSID_H
11
90973fb2 12#include "common/defs.h"
6fc6879b
JM
13#include "eap_peer/eap_config.h"
14
15#define MAX_SSID_LEN 32
16
17
18#define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
19#define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
20 EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
21#define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
22#define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
23#define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
24#define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
25 WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
26#define DEFAULT_FRAGMENT_SIZE 1398
27
1f6c0ab8 28#define DEFAULT_BG_SCAN_PERIOD -1
80e8a5ee
BG
29#define DEFAULT_DISABLE_HT 0
30#define DEFAULT_DISABLE_HT40 0
31#define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
32#define DEFAULT_AMPDU_FACTOR -1 /* no change */
33#define DEFAULT_AMPDU_DENSITY -1 /* no change */
34
6fc6879b
JM
35/**
36 * struct wpa_ssid - Network configuration data
37 *
38 * This structure includes all the configuration variables for a network. This
39 * data is included in the per-interface configuration data as an element of
40 * the network list, struct wpa_config::ssid. Each network block in the
41 * configuration is mapped to a struct wpa_ssid instance.
42 */
43struct wpa_ssid {
44 /**
45 * next - Next network in global list
46 *
47 * This pointer can be used to iterate over all networks. The head of
48 * this list is stored in the ssid field of struct wpa_config.
49 */
50 struct wpa_ssid *next;
51
52 /**
53 * pnext - Next network in per-priority list
54 *
55 * This pointer can be used to iterate over all networks in the same
56 * priority class. The heads of these list are stored in the pssid
57 * fields of struct wpa_config.
58 */
59 struct wpa_ssid *pnext;
60
61 /**
62 * id - Unique id for the network
63 *
64 * This identifier is used as a unique identifier for each network
65 * block when using the control interface. Each network is allocated an
66 * id when it is being created, either when reading the configuration
67 * file or when a new network is added through the control interface.
68 */
69 int id;
70
71 /**
72 * priority - Priority group
73 *
74 * By default, all networks will get same priority group (0). If some
75 * of the networks are more desirable, this field can be used to change
76 * the order in which wpa_supplicant goes through the networks when
77 * selecting a BSS. The priority groups will be iterated in decreasing
78 * priority (i.e., the larger the priority value, the sooner the
79 * network is matched against the scan results). Within each priority
80 * group, networks will be selected based on security policy, signal
81 * strength, etc.
82 *
83 * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
84 * not using this priority to select the order for scanning. Instead,
85 * they try the networks in the order that used in the configuration
86 * file.
87 */
88 int priority;
89
90 /**
91 * ssid - Service set identifier (network name)
92 *
93 * This is the SSID for the network. For wireless interfaces, this is
94 * used to select which network will be used. If set to %NULL (or
95 * ssid_len=0), any SSID can be used. For wired interfaces, this must
96 * be set to %NULL. Note: SSID may contain any characters, even nul
97 * (ASCII 0) and as such, this should not be assumed to be a nul
98 * terminated string. ssid_len defines how many characters are valid
99 * and the ssid field is not guaranteed to be nul terminated.
100 */
101 u8 *ssid;
102
103 /**
104 * ssid_len - Length of the SSID
105 */
106 size_t ssid_len;
107
108 /**
109 * bssid - BSSID
110 *
111 * If set, this network block is used only when associating with the AP
112 * using the configured BSSID
2c5d725c
JM
113 *
114 * If this is a persistent P2P group (disabled == 2), this is the GO
115 * Device Address.
6fc6879b
JM
116 */
117 u8 bssid[ETH_ALEN];
118
119 /**
120 * bssid_set - Whether BSSID is configured for this network
121 */
122 int bssid_set;
123
124 /**
125 * psk - WPA pre-shared key (256 bits)
126 */
127 u8 psk[32];
128
129 /**
130 * psk_set - Whether PSK field is configured
131 */
132 int psk_set;
133
134 /**
135 * passphrase - WPA ASCII passphrase
136 *
137 * If this is set, psk will be generated using the SSID and passphrase
138 * configured for the network. ASCII passphrase must be between 8 and
139 * 63 characters (inclusive).
140 */
141 char *passphrase;
142
306ae225
JM
143 /**
144 * ext_psk - PSK/passphrase name in external storage
145 *
146 * If this is set, PSK/passphrase will be fetched from external storage
147 * when requesting association with the network.
148 */
149 char *ext_psk;
150
6fc6879b
JM
151 /**
152 * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
153 */
154 int pairwise_cipher;
155
156 /**
157 * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
158 */
159 int group_cipher;
160
161 /**
162 * key_mgmt - Bitfield of allowed key management protocols
163 *
164 * WPA_KEY_MGMT_*
165 */
166 int key_mgmt;
167
1f6c0ab8
BS
168 /**
169 * bg_scan_period - Background scan period in seconds, 0 to disable, or
170 * -1 to indicate no change to default driver configuration
171 */
172 int bg_scan_period;
173
6fc6879b
JM
174 /**
175 * proto - Bitfield of allowed protocols, WPA_PROTO_*
176 */
177 int proto;
178
179 /**
180 * auth_alg - Bitfield of allowed authentication algorithms
181 *
182 * WPA_AUTH_ALG_*
183 */
184 int auth_alg;
185
186 /**
187 * scan_ssid - Scan this SSID with Probe Requests
188 *
189 * scan_ssid can be used to scan for APs using hidden SSIDs.
190 * Note: Many drivers do not support this. ap_mode=2 can be used with
191 * such drivers to use hidden SSIDs.
192 */
193 int scan_ssid;
194
195#ifdef IEEE8021X_EAPOL
196#define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
197#define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
198 /**
199 * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
200 */
201 int eapol_flags;
202
203 /**
204 * eap - EAP peer configuration for this network
205 */
206 struct eap_peer_config eap;
207#endif /* IEEE8021X_EAPOL */
208
209#define NUM_WEP_KEYS 4
210#define MAX_WEP_KEY_LEN 16
211 /**
212 * wep_key - WEP keys
213 */
214 u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
215
216 /**
217 * wep_key_len - WEP key lengths
218 */
219 size_t wep_key_len[NUM_WEP_KEYS];
220
221 /**
222 * wep_tx_keyidx - Default key index for TX frames using WEP
223 */
224 int wep_tx_keyidx;
225
226 /**
227 * proactive_key_caching - Enable proactive key caching
228 *
229 * This field can be used to enable proactive key caching which is also
230 * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
231 * by default. Enable by setting this to 1.
232 *
233 * Proactive key caching is used to make supplicant assume that the APs
234 * are using the same PMK and generate PMKSA cache entries without
235 * doing RSN pre-authentication. This requires support from the AP side
236 * and is normally used with wireless switches that co-locate the
237 * authenticator.
238 */
239 int proactive_key_caching;
240
241 /**
242 * mixed_cell - Whether mixed cells are allowed
243 *
244 * This option can be used to configure whether so called mixed cells,
245 * i.e., networks that use both plaintext and encryption in the same
246 * SSID, are allowed. This is disabled (0) by default. Enable by
247 * setting this to 1.
248 */
249 int mixed_cell;
250
251#ifdef IEEE8021X_EAPOL
252
253 /**
254 * leap - Number of EAP methods using LEAP
255 *
256 * This field should be set to 1 if LEAP is enabled. This is used to
257 * select IEEE 802.11 authentication algorithm.
258 */
259 int leap;
260
261 /**
262 * non_leap - Number of EAP methods not using LEAP
263 *
264 * This field should be set to >0 if any EAP method other than LEAP is
265 * enabled. This is used to select IEEE 802.11 authentication
266 * algorithm.
267 */
268 int non_leap;
269
270 /**
271 * eap_workaround - EAP workarounds enabled
272 *
273 * wpa_supplicant supports number of "EAP workarounds" to work around
274 * interoperability issues with incorrectly behaving authentication
275 * servers. This is recommended to be enabled by default because some
276 * of the issues are present in large number of authentication servers.
277 *
278 * Strict EAP conformance mode can be configured by disabling
279 * workarounds with eap_workaround = 0.
280 */
281 unsigned int eap_workaround;
282
283#endif /* IEEE8021X_EAPOL */
284
285 /**
286 * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
287 *
288 * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
289 *
290 * 1 = IBSS (ad-hoc, peer-to-peer)
291 *
1581b38b
JM
292 * 2 = AP (access point)
293 *
2c5d725c
JM
294 * 3 = P2P Group Owner (can be set in the configuration file)
295 *
296 * 4 = P2P Group Formation (used internally; not in configuration
297 * files)
298 *
6fc6879b
JM
299 * Note: IBSS can only be used with key_mgmt NONE (plaintext and
300 * static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
301 * addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
302 * following network block options: proto=WPA, key_mgmt=WPA-NONE,
303 * pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
304 * be set (either directly or using ASCII passphrase).
305 */
d7dcba70
JM
306 enum wpas_mode {
307 WPAS_MODE_INFRA = 0,
308 WPAS_MODE_IBSS = 1,
309 WPAS_MODE_AP = 2,
2c5d725c
JM
310 WPAS_MODE_P2P_GO = 3,
311 WPAS_MODE_P2P_GROUP_FORMATION = 4,
d7dcba70 312 } mode;
6fc6879b
JM
313
314 /**
315 * disabled - Whether this network is currently disabled
316 *
317 * 0 = this network can be used (default).
318 * 1 = this network block is disabled (can be enabled through
319 * ctrl_iface, e.g., with wpa_cli or wpa_gui).
2c5d725c
JM
320 * 2 = this network block includes parameters for a persistent P2P
321 * group (can be used with P2P ctrl_iface commands)
6fc6879b
JM
322 */
323 int disabled;
324
ec947ffc
SD
325 /**
326 * disabled_for_connect - Whether this network was temporarily disabled
327 *
328 * This flag is used to reenable all the temporarily disabled networks
329 * after either the success or failure of a WPS connection.
330 */
331 int disabled_for_connect;
332
6fc6879b
JM
333 /**
334 * peerkey - Whether PeerKey handshake for direct links is allowed
335 *
336 * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
337 * enabled.
338 *
339 * 0 = disabled (default)
340 * 1 = enabled
341 */
342 int peerkey;
343
344 /**
345 * id_str - Network identifier string for external scripts
346 *
347 * This value is passed to external ctrl_iface monitors in
348 * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
349 * environment variable for action scripts.
350 */
351 char *id_str;
352
353#ifdef CONFIG_IEEE80211W
354 /**
355 * ieee80211w - Whether management frame protection is enabled
356 *
357 * This value is used to configure policy for management frame
358 * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
359 */
c746331b 360 enum mfp_options ieee80211w;
6fc6879b
JM
361#endif /* CONFIG_IEEE80211W */
362
363 /**
364 * frequency - Channel frequency in megahertz (MHz) for IBSS
365 *
366 * This value is used to configure the initial channel for IBSS (adhoc)
367 * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
368 * the infrastructure mode. In addition, this value is only used by the
369 * station that creates the IBSS. If an IBSS network with the
370 * configured SSID is already present, the frequency of the network
371 * will be used instead of this configured value.
372 */
373 int frequency;
581a8cde 374
7aeac985
RM
375 int ht40;
376
581a8cde
JM
377 /**
378 * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
379 *
380 * This value can be used to enforce rekeying of PTK to mitigate some
381 * attacks against TKIP deficiencies.
382 */
383 int wpa_ptk_rekey;
d3a98225
JM
384
385 /**
386 * scan_freq - Array of frequencies to scan or %NULL for all
387 *
388 * This is an optional zero-terminated array of frequencies in
389 * megahertz (MHz) to include in scan requests when searching for this
390 * network. This can be used to speed up scanning when the network is
391 * known to not use all possible channels.
392 */
393 int *scan_freq;
60b94c98
JM
394
395 /**
396 * bgscan - Background scan and roaming parameters or %NULL if none
397 *
398 * This is an optional set of parameters for background scanning and
399 * roaming within a network (ESS) in following format:
400 * <bgscan module name>:<module parameters>
401 */
402 char *bgscan;
b766a9a2 403
e62f4ed0
VN
404 /**
405 * ignore_broadcast_ssid - Hide SSID in AP mode
406 *
407 * Send empty SSID in beacons and ignore probe request frames that do
408 * not specify full SSID, i.e., require stations to know SSID.
409 * default: disabled (0)
410 * 1 = send empty (length=0) SSID in beacon and ignore probe request
411 * for broadcast SSID
412 * 2 = clear SSID (ASCII 0), but keep the original length (this may be
413 * required with some clients that do not support empty SSID) and
414 * ignore probe requests for broadcast SSID
415 */
416 int ignore_broadcast_ssid;
417
b766a9a2
JM
418 /**
419 * freq_list - Array of allowed frequencies or %NULL for all
420 *
421 * This is an optional zero-terminated array of frequencies in
422 * megahertz (MHz) to allow for selecting the BSS. If set, scan results
423 * that do not match any of the specified frequencies are not
424 * considered when selecting a BSS.
425 */
426 int *freq_list;
2c5d725c 427
fbdcfd57
JM
428 /**
429 * p2p_client_list - List of P2P Clients in a persistent group (GO)
430 *
431 * This is a list of P2P Clients (P2P Device Address) that have joined
432 * the persistent group. This is maintained on the GO for persistent
433 * group entries (disabled == 2).
434 */
435 u8 *p2p_client_list;
436
437 /**
438 * num_p2p_clients - Number of entries in p2p_client_list
439 */
440 size_t num_p2p_clients;
441
b4a5dfa9
JM
442#ifndef P2P_MAX_STORED_CLIENTS
443#define P2P_MAX_STORED_CLIENTS 100
444#endif /* P2P_MAX_STORED_CLIENTS */
445
2c5d725c
JM
446 /**
447 * p2p_group - Network generated as a P2P group (used internally)
448 */
449 int p2p_group;
450
451 /**
452 * p2p_persistent_group - Whether this is a persistent group
453 */
454 int p2p_persistent_group;
455
456 /**
457 * temporary - Whether this network is temporary and not to be saved
458 */
459 int temporary;
d1c8ac88
JB
460
461 /**
462 * export_keys - Whether keys may be exported
463 *
464 * This attribute will be set when keys are determined through
465 * WPS or similar so that they may be exported.
466 */
467 int export_keys;
80e8a5ee
BG
468
469#ifdef CONFIG_HT_OVERRIDES
470 /**
471 * disable_ht - Disable HT (IEEE 802.11n) for this network
472 *
473 * By default, use it if it is available, but this can be configured
474 * to 1 to have it disabled.
475 */
476 int disable_ht;
477
478 /**
479 * disable_ht40 - Disable HT40 for this network
480 *
481 * By default, use it if it is available, but this can be configured
482 * to 1 to have it disabled.
483 */
484 int disable_ht40;
485
486 /**
487 * disable_max_amsdu - Disable MAX A-MSDU
488 *
489 * A-MDSU will be 3839 bytes when disabled, or 7935
490 * when enabled (assuming it is otherwise supported)
491 * -1 (default) means do not apply any settings to the kernel.
492 */
493 int disable_max_amsdu;
494
495 /**
496 * ampdu_factor - Maximum A-MPDU Length Exponent
497 *
498 * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
499 */
500 int ampdu_factor;
501
502 /**
503 * ampdu_density - Minimum A-MPDU Start Spacing
504 *
505 * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
506 */
507 int ampdu_density;
508
509 /**
510 * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
511 *
512 * By default (empty string): Use whatever the OS has configured.
513 */
514 char *ht_mcs;
515#endif /* CONFIG_HT_OVERRIDES */
07f53b8c
VT
516
517 /**
518 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
519 *
520 * This timeout value is used in AP mode to clean up inactive stations.
521 * By default: 300 seconds.
522 */
523 int ap_max_inactivity;
fdfb1c8b
EL
524
525 /**
526 * dtim_period - DTIM period in Beacon intervals
527 * By default: 2
528 */
529 int dtim_period;
00e5e3d5
JM
530
531 /**
532 * auth_failures - Number of consecutive authentication failures
533 */
534 unsigned int auth_failures;
535
536 /**
537 * disabled_until - Network block disabled until this time if non-zero
538 */
539 struct os_time disabled_until;
6fc6879b
JM
540};
541
542#endif /* CONFIG_SSID_H */