]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config_ssid.h
Allow OKC to be enabled by default
[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)
6e202021
JM
231 * by default unless default value is changed with the global okc=1
232 * parameter. Enable by setting this to 1.
6fc6879b
JM
233 *
234 * Proactive key caching is used to make supplicant assume that the APs
235 * are using the same PMK and generate PMKSA cache entries without
236 * doing RSN pre-authentication. This requires support from the AP side
237 * and is normally used with wireless switches that co-locate the
238 * authenticator.
6e202021
JM
239 *
240 * Internally, special value -1 is used to indicate that the parameter
241 * was not specified in the configuration (i.e., default behavior is
242 * followed).
6fc6879b
JM
243 */
244 int proactive_key_caching;
245
246 /**
247 * mixed_cell - Whether mixed cells are allowed
248 *
249 * This option can be used to configure whether so called mixed cells,
250 * i.e., networks that use both plaintext and encryption in the same
251 * SSID, are allowed. This is disabled (0) by default. Enable by
252 * setting this to 1.
253 */
254 int mixed_cell;
255
256#ifdef IEEE8021X_EAPOL
257
258 /**
259 * leap - Number of EAP methods using LEAP
260 *
261 * This field should be set to 1 if LEAP is enabled. This is used to
262 * select IEEE 802.11 authentication algorithm.
263 */
264 int leap;
265
266 /**
267 * non_leap - Number of EAP methods not using LEAP
268 *
269 * This field should be set to >0 if any EAP method other than LEAP is
270 * enabled. This is used to select IEEE 802.11 authentication
271 * algorithm.
272 */
273 int non_leap;
274
275 /**
276 * eap_workaround - EAP workarounds enabled
277 *
278 * wpa_supplicant supports number of "EAP workarounds" to work around
279 * interoperability issues with incorrectly behaving authentication
280 * servers. This is recommended to be enabled by default because some
281 * of the issues are present in large number of authentication servers.
282 *
283 * Strict EAP conformance mode can be configured by disabling
284 * workarounds with eap_workaround = 0.
285 */
286 unsigned int eap_workaround;
287
288#endif /* IEEE8021X_EAPOL */
289
290 /**
291 * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
292 *
293 * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
294 *
295 * 1 = IBSS (ad-hoc, peer-to-peer)
296 *
1581b38b
JM
297 * 2 = AP (access point)
298 *
2c5d725c
JM
299 * 3 = P2P Group Owner (can be set in the configuration file)
300 *
301 * 4 = P2P Group Formation (used internally; not in configuration
302 * files)
303 *
6fc6879b
JM
304 * Note: IBSS can only be used with key_mgmt NONE (plaintext and
305 * static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
306 * addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
307 * following network block options: proto=WPA, key_mgmt=WPA-NONE,
308 * pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
309 * be set (either directly or using ASCII passphrase).
310 */
d7dcba70
JM
311 enum wpas_mode {
312 WPAS_MODE_INFRA = 0,
313 WPAS_MODE_IBSS = 1,
314 WPAS_MODE_AP = 2,
2c5d725c
JM
315 WPAS_MODE_P2P_GO = 3,
316 WPAS_MODE_P2P_GROUP_FORMATION = 4,
d7dcba70 317 } mode;
6fc6879b
JM
318
319 /**
320 * disabled - Whether this network is currently disabled
321 *
322 * 0 = this network can be used (default).
323 * 1 = this network block is disabled (can be enabled through
324 * ctrl_iface, e.g., with wpa_cli or wpa_gui).
2c5d725c
JM
325 * 2 = this network block includes parameters for a persistent P2P
326 * group (can be used with P2P ctrl_iface commands)
6fc6879b
JM
327 */
328 int disabled;
329
ec947ffc
SD
330 /**
331 * disabled_for_connect - Whether this network was temporarily disabled
332 *
333 * This flag is used to reenable all the temporarily disabled networks
334 * after either the success or failure of a WPS connection.
335 */
336 int disabled_for_connect;
337
6fc6879b
JM
338 /**
339 * peerkey - Whether PeerKey handshake for direct links is allowed
340 *
341 * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
342 * enabled.
343 *
344 * 0 = disabled (default)
345 * 1 = enabled
346 */
347 int peerkey;
348
349 /**
350 * id_str - Network identifier string for external scripts
351 *
352 * This value is passed to external ctrl_iface monitors in
353 * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
354 * environment variable for action scripts.
355 */
356 char *id_str;
357
358#ifdef CONFIG_IEEE80211W
359 /**
360 * ieee80211w - Whether management frame protection is enabled
361 *
362 * This value is used to configure policy for management frame
363 * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
364 */
c746331b 365 enum mfp_options ieee80211w;
6fc6879b
JM
366#endif /* CONFIG_IEEE80211W */
367
368 /**
369 * frequency - Channel frequency in megahertz (MHz) for IBSS
370 *
371 * This value is used to configure the initial channel for IBSS (adhoc)
372 * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
373 * the infrastructure mode. In addition, this value is only used by the
374 * station that creates the IBSS. If an IBSS network with the
375 * configured SSID is already present, the frequency of the network
376 * will be used instead of this configured value.
377 */
378 int frequency;
581a8cde 379
7aeac985
RM
380 int ht40;
381
581a8cde
JM
382 /**
383 * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
384 *
385 * This value can be used to enforce rekeying of PTK to mitigate some
386 * attacks against TKIP deficiencies.
387 */
388 int wpa_ptk_rekey;
d3a98225
JM
389
390 /**
391 * scan_freq - Array of frequencies to scan or %NULL for all
392 *
393 * This is an optional zero-terminated array of frequencies in
394 * megahertz (MHz) to include in scan requests when searching for this
395 * network. This can be used to speed up scanning when the network is
396 * known to not use all possible channels.
397 */
398 int *scan_freq;
60b94c98
JM
399
400 /**
401 * bgscan - Background scan and roaming parameters or %NULL if none
402 *
403 * This is an optional set of parameters for background scanning and
404 * roaming within a network (ESS) in following format:
405 * <bgscan module name>:<module parameters>
406 */
407 char *bgscan;
b766a9a2 408
e62f4ed0
VN
409 /**
410 * ignore_broadcast_ssid - Hide SSID in AP mode
411 *
412 * Send empty SSID in beacons and ignore probe request frames that do
413 * not specify full SSID, i.e., require stations to know SSID.
414 * default: disabled (0)
415 * 1 = send empty (length=0) SSID in beacon and ignore probe request
416 * for broadcast SSID
417 * 2 = clear SSID (ASCII 0), but keep the original length (this may be
418 * required with some clients that do not support empty SSID) and
419 * ignore probe requests for broadcast SSID
420 */
421 int ignore_broadcast_ssid;
422
b766a9a2
JM
423 /**
424 * freq_list - Array of allowed frequencies or %NULL for all
425 *
426 * This is an optional zero-terminated array of frequencies in
427 * megahertz (MHz) to allow for selecting the BSS. If set, scan results
428 * that do not match any of the specified frequencies are not
429 * considered when selecting a BSS.
430 */
431 int *freq_list;
2c5d725c 432
fbdcfd57
JM
433 /**
434 * p2p_client_list - List of P2P Clients in a persistent group (GO)
435 *
436 * This is a list of P2P Clients (P2P Device Address) that have joined
437 * the persistent group. This is maintained on the GO for persistent
438 * group entries (disabled == 2).
439 */
440 u8 *p2p_client_list;
441
442 /**
443 * num_p2p_clients - Number of entries in p2p_client_list
444 */
445 size_t num_p2p_clients;
446
b4a5dfa9
JM
447#ifndef P2P_MAX_STORED_CLIENTS
448#define P2P_MAX_STORED_CLIENTS 100
449#endif /* P2P_MAX_STORED_CLIENTS */
450
2c5d725c
JM
451 /**
452 * p2p_group - Network generated as a P2P group (used internally)
453 */
454 int p2p_group;
455
456 /**
457 * p2p_persistent_group - Whether this is a persistent group
458 */
459 int p2p_persistent_group;
460
461 /**
462 * temporary - Whether this network is temporary and not to be saved
463 */
464 int temporary;
d1c8ac88
JB
465
466 /**
467 * export_keys - Whether keys may be exported
468 *
469 * This attribute will be set when keys are determined through
470 * WPS or similar so that they may be exported.
471 */
472 int export_keys;
80e8a5ee
BG
473
474#ifdef CONFIG_HT_OVERRIDES
475 /**
476 * disable_ht - Disable HT (IEEE 802.11n) for this network
477 *
478 * By default, use it if it is available, but this can be configured
479 * to 1 to have it disabled.
480 */
481 int disable_ht;
482
483 /**
484 * disable_ht40 - Disable HT40 for this network
485 *
486 * By default, use it if it is available, but this can be configured
487 * to 1 to have it disabled.
488 */
489 int disable_ht40;
490
491 /**
492 * disable_max_amsdu - Disable MAX A-MSDU
493 *
494 * A-MDSU will be 3839 bytes when disabled, or 7935
495 * when enabled (assuming it is otherwise supported)
496 * -1 (default) means do not apply any settings to the kernel.
497 */
498 int disable_max_amsdu;
499
500 /**
501 * ampdu_factor - Maximum A-MPDU Length Exponent
502 *
503 * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
504 */
505 int ampdu_factor;
506
507 /**
508 * ampdu_density - Minimum A-MPDU Start Spacing
509 *
510 * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
511 */
512 int ampdu_density;
513
514 /**
515 * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
516 *
517 * By default (empty string): Use whatever the OS has configured.
518 */
519 char *ht_mcs;
520#endif /* CONFIG_HT_OVERRIDES */
07f53b8c
VT
521
522 /**
523 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
524 *
525 * This timeout value is used in AP mode to clean up inactive stations.
526 * By default: 300 seconds.
527 */
528 int ap_max_inactivity;
fdfb1c8b
EL
529
530 /**
531 * dtim_period - DTIM period in Beacon intervals
532 * By default: 2
533 */
534 int dtim_period;
00e5e3d5
JM
535
536 /**
537 * auth_failures - Number of consecutive authentication failures
538 */
539 unsigned int auth_failures;
540
541 /**
542 * disabled_until - Network block disabled until this time if non-zero
543 */
544 struct os_time disabled_until;
6fc6879b
JM
545};
546
547#endif /* CONFIG_SSID_H */