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