]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/ap/ap_config.h
crl_reload_interval: Add CRL reloading support
[thirdparty/hostap.git] / src / ap / ap_config.h
CommitLineData
6fc6879b 1/*
41d719d6 2 * hostapd / Configuration definitions and helpers functions
bc02843e 3 * Copyright (c) 2003-2015, 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
094393b1
JM
9#ifndef HOSTAPD_CONFIG_H
10#define HOSTAPD_CONFIG_H
6fc6879b 11
90973fb2 12#include "common/defs.h"
695dbbea 13#include "utils/list.h"
6fc6879b 14#include "ip_addr.h"
90973fb2 15#include "common/wpa_common.h"
81847c22 16#include "common/ieee802_11_defs.h"
eda070f1 17#include "common/ieee802_11_common.h"
2f646b6e 18#include "wps/wps.h"
104bef45 19#include "fst/fst.h"
1889af2e 20#include "vlan.h"
6fc6879b 21
8319e312
TP
22/**
23 * mesh_conf - local MBSS state and settings
24 */
25struct mesh_conf {
26 u8 meshid[32];
27 u8 meshid_len;
28 /* Active Path Selection Protocol Identifier */
29 u8 mesh_pp_id;
30 /* Active Path Selection Metric Identifier */
31 u8 mesh_pm_id;
32 /* Congestion Control Mode Identifier */
33 u8 mesh_cc_id;
34 /* Synchronization Protocol Identifier */
35 u8 mesh_sp_id;
36 /* Authentication Protocol Identifier */
37 u8 mesh_auth_id;
8a51dcbc
MH
38 u8 *rsn_ie;
39 int rsn_ie_len;
8319e312
TP
40#define MESH_CONF_SEC_NONE BIT(0)
41#define MESH_CONF_SEC_AUTH BIT(1)
42#define MESH_CONF_SEC_AMPE BIT(2)
43 unsigned int security;
18aca1a0 44 enum mfp_options ieee80211w;
716ed96e 45 int ocv;
3b6deac0
JM
46 unsigned int pairwise_cipher;
47 unsigned int group_cipher;
48 unsigned int mgmt_group_cipher;
e6096799
MH
49 int dot11MeshMaxRetries;
50 int dot11MeshRetryTimeout; /* msec */
51 int dot11MeshConfirmTimeout; /* msec */
52 int dot11MeshHoldingTimeout; /* msec */
8319e312
TP
53};
54
41d719d6
JM
55#define MAX_STA_COUNT 2007
56#define MAX_VLAN_ID 4094
57
6fc6879b
JM
58typedef u8 macaddr[ETH_ALEN];
59
271d2830
JM
60struct mac_acl_entry {
61 macaddr addr;
1889af2e 62 struct vlan_description vlan_id;
271d2830
JM
63};
64
6fc6879b
JM
65struct hostapd_radius_servers;
66struct ft_remote_r0kh;
67struct ft_remote_r1kh;
68
6fc6879b
JM
69#define NUM_WEP_KEYS 4
70struct hostapd_wep_keys {
71 u8 idx;
72 u8 *key[NUM_WEP_KEYS];
73 size_t len[NUM_WEP_KEYS];
74 int keys_set;
75 size_t default_len; /* key length used for dynamic key generation */
76};
77
78typedef enum hostap_security_policy {
79 SECURITY_PLAINTEXT = 0,
80 SECURITY_STATIC_WEP = 1,
81 SECURITY_IEEE_802_1X = 2,
82 SECURITY_WPA_PSK = 3,
a14896e8
JM
83 SECURITY_WPA = 4,
84 SECURITY_OSEN = 5
6fc6879b
JM
85} secpolicy;
86
87struct hostapd_ssid {
81847c22 88 u8 ssid[SSID_MAX_LEN];
6fc6879b 89 size_t ssid_len;
b93c8509
JM
90 unsigned int ssid_set:1;
91 unsigned int utf8_ssid:1;
a781e211
JM
92 unsigned int wpa_passphrase_set:1;
93 unsigned int wpa_psk_set:1;
6fc6879b
JM
94
95 char vlan[IFNAMSIZ + 1];
96 secpolicy security_policy;
97
98 struct hostapd_wpa_psk *wpa_psk;
99 char *wpa_passphrase;
100 char *wpa_psk_file;
101
102 struct hostapd_wep_keys wep;
103
104#define DYNAMIC_VLAN_DISABLED 0
105#define DYNAMIC_VLAN_OPTIONAL 1
106#define DYNAMIC_VLAN_REQUIRED 2
107 int dynamic_vlan;
a00237ce
MB
108#define DYNAMIC_VLAN_NAMING_WITHOUT_DEVICE 0
109#define DYNAMIC_VLAN_NAMING_WITH_DEVICE 1
110#define DYNAMIC_VLAN_NAMING_END 2
111 int vlan_naming;
8be640b7 112 int per_sta_vif;
6fc6879b
JM
113#ifdef CONFIG_FULL_DYNAMIC_VLAN
114 char *vlan_tagged_interface;
115#endif /* CONFIG_FULL_DYNAMIC_VLAN */
6fc6879b
JM
116};
117
118
119#define VLAN_ID_WILDCARD -1
120
121struct hostapd_vlan {
122 struct hostapd_vlan *next;
123 int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
1889af2e 124 struct vlan_description vlan_desc;
6fc6879b 125 char ifname[IFNAMSIZ + 1];
4d663233 126 char bridge[IFNAMSIZ + 1];
de31fb05 127 int configured;
6fc6879b
JM
128 int dynamic_vlan;
129#ifdef CONFIG_FULL_DYNAMIC_VLAN
130
6fc6879b
JM
131#define DVLAN_CLEAN_WLAN_PORT 0x8
132 int clean;
133#endif /* CONFIG_FULL_DYNAMIC_VLAN */
134};
135
136#define PMK_LEN 32
ec5c39a5 137#define KEYID_LEN 32
57b2c914 138#define MIN_PASSPHRASE_LEN 8
f8e09bc5 139#define MAX_PASSPHRASE_LEN 63
2ad3e6c8
MB
140struct hostapd_sta_wpa_psk_short {
141 struct hostapd_sta_wpa_psk_short *next;
f8e09bc5 142 unsigned int is_passphrase:1;
2ad3e6c8 143 u8 psk[PMK_LEN];
f8e09bc5 144 char passphrase[MAX_PASSPHRASE_LEN + 1];
d8912fd8 145 int ref; /* (number of references held) - 1 */
2ad3e6c8
MB
146};
147
6fc6879b
JM
148struct hostapd_wpa_psk {
149 struct hostapd_wpa_psk *next;
150 int group;
ec5c39a5 151 char keyid[KEYID_LEN];
6fc6879b
JM
152 u8 psk[PMK_LEN];
153 u8 addr[ETH_ALEN];
52177fbb 154 u8 p2p_dev_addr[ETH_ALEN];
6fc6879b
JM
155};
156
6fc6879b
JM
157struct hostapd_eap_user {
158 struct hostapd_eap_user *next;
159 u8 *identity;
160 size_t identity_len;
161 struct {
162 int vendor;
163 u32 method;
e9447a94 164 } methods[EAP_MAX_METHODS];
6fc6879b
JM
165 u8 *password;
166 size_t password_len;
d52ead3d
DH
167 u8 *salt;
168 size_t salt_len; /* non-zero when password is salted */
6fc6879b
JM
169 int phase2;
170 int force_version;
171 unsigned int wildcard_prefix:1;
172 unsigned int password_hash:1; /* whether password is hashed with
173 * nt_password_hash() */
8d2a9921 174 unsigned int remediation:1;
8943cc99 175 unsigned int macacl:1;
6fc6879b 176 int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
d0ee16ed 177 struct hostapd_radius_attr *accept_attr;
45260380 178 u32 t_c_timestamp;
6fc6879b
JM
179};
180
af35e7af
JM
181struct hostapd_radius_attr {
182 u8 type;
183 struct wpabuf *val;
184 struct hostapd_radius_attr *next;
185};
186
6fc6879b 187
7e3c1781 188#define NUM_TX_QUEUES 4
6fc6879b
JM
189
190struct hostapd_tx_queue_params {
191 int aifs;
192 int cwmin;
193 int cwmax;
194 int burst; /* maximum burst time in 0.1 ms, i.e., 10 = 1 ms */
6fc6879b
JM
195};
196
6fc6879b 197
4b2a77ab
JM
198#define MAX_ROAMING_CONSORTIUM_LEN 15
199
200struct hostapd_roaming_consortium {
201 u8 len;
202 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
203};
204
1792e58d 205struct hostapd_lang_string {
648cc711
JM
206 u8 lang[3];
207 u8 name_len;
208 u8 name[252];
209};
210
7e1d3ee9
JM
211struct hostapd_venue_url {
212 u8 venue_number;
213 u8 url_len;
214 u8 url[254];
215};
216
8047b186
JK
217#define MAX_NAI_REALMS 10
218#define MAX_NAI_REALMLEN 255
219#define MAX_NAI_EAP_METHODS 5
220#define MAX_NAI_AUTH_TYPES 4
221struct hostapd_nai_realm_data {
222 u8 encoding;
223 char realm_buf[MAX_NAI_REALMLEN + 1];
224 char *realm[MAX_NAI_REALMS];
225 u8 eap_method_count;
226 struct hostapd_nai_realm_eap {
227 u8 eap_method;
228 u8 num_auths;
229 u8 auth_id[MAX_NAI_AUTH_TYPES];
230 u8 auth_val[MAX_NAI_AUTH_TYPES];
231 } eap_method[MAX_NAI_EAP_METHODS];
232};
233
695dbbea
JM
234struct anqp_element {
235 struct dl_list list;
236 u16 infoid;
237 struct wpabuf *payload;
238};
239
26bf70e3
JM
240struct fils_realm {
241 struct dl_list list;
242 u8 hash[2];
243 char realm[];
244};
245
9be19d0b
JM
246struct sae_password_entry {
247 struct sae_password_entry *next;
248 char *password;
249 char *identifier;
250 u8 peer_addr[ETH_ALEN];
251};
695dbbea 252
6fc6879b
JM
253/**
254 * struct hostapd_bss_config - Per-BSS configuration
255 */
256struct hostapd_bss_config {
257 char iface[IFNAMSIZ + 1];
258 char bridge[IFNAMSIZ + 1];
2aaeedfa 259 char vlan_bridge[IFNAMSIZ + 1];
d38ae2ea 260 char wds_bridge[IFNAMSIZ + 1];
6fc6879b
JM
261
262 enum hostapd_logger_level logger_syslog_level, logger_stdout_level;
263
264 unsigned int logger_syslog; /* module bitfield */
265 unsigned int logger_stdout; /* module bitfield */
266
6fc6879b
JM
267 int max_num_sta; /* maximum number of STAs in station table */
268
269 int dtim_period;
778d8705 270 unsigned int bss_load_update_period;
af832aa9 271 unsigned int chan_util_avg_period;
6fc6879b
JM
272
273 int ieee802_1x; /* use IEEE 802.1X */
274 int eapol_version;
275 int eap_server; /* Use internal EAP server instead of external
276 * RADIUS server */
277 struct hostapd_eap_user *eap_user;
ee431d77 278 char *eap_user_sqlite;
6fc6879b 279 char *eap_sim_db;
7b0f5500 280 unsigned int eap_sim_db_timeout;
d3bddd8b 281 int eap_server_erp; /* Whether ERP is enabled on internal EAP server */
6fc6879b
JM
282 struct hostapd_ip_addr own_ip_addr;
283 char *nas_identifier;
284 struct hostapd_radius_servers *radius;
5843e1c9 285 int acct_interim_interval;
86f6053a 286 int radius_request_cui;
af35e7af
JM
287 struct hostapd_radius_attr *radius_auth_req_attr;
288 struct hostapd_radius_attr *radius_acct_req_attr;
b031338c 289 int radius_das_port;
bde7ba6c
JM
290 unsigned int radius_das_time_window;
291 int radius_das_require_event_timestamp;
42d30e9e 292 int radius_das_require_message_authenticator;
b031338c
JM
293 struct hostapd_ip_addr radius_das_client_addr;
294 u8 *radius_das_shared_secret;
295 size_t radius_das_shared_secret_len;
6fc6879b
JM
296
297 struct hostapd_ssid ssid;
298
299 char *eap_req_id_text; /* optional displayable message sent with
300 * EAP Request-Identity */
301 size_t eap_req_id_text_len;
302 int eapol_key_index_workaround;
303
304 size_t default_wep_key_len;
305 int individual_wep_key_len;
306 int wep_rekeying_period;
307 int broadcast_key_idx_min, broadcast_key_idx_max;
308 int eap_reauth_period;
2a5156a6
JM
309 int erp_send_reauth_start;
310 char *erp_domain;
6fc6879b
JM
311
312 int ieee802_11f; /* use IEEE 802.11f (IAPP) */
313 char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
314 * frames */
315
9266d00b 316 enum macaddr_acl {
6fc6879b
JM
317 ACCEPT_UNLESS_DENIED = 0,
318 DENY_UNLESS_ACCEPTED = 1,
319 USE_EXTERNAL_RADIUS_AUTH = 2
320 } macaddr_acl;
271d2830 321 struct mac_acl_entry *accept_mac;
6fc6879b 322 int num_accept_mac;
271d2830 323 struct mac_acl_entry *deny_mac;
6fc6879b 324 int num_deny_mac;
fbbfcbac 325 int wds_sta;
d3b42869 326 int isolate;
3f9a8137 327 int start_disabled;
6fc6879b
JM
328
329 int auth_algs; /* bitfield of allowed IEEE 802.11 authentication
330 * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
331
332 int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
333 int wpa_key_mgmt;
334#ifdef CONFIG_IEEE80211W
c746331b 335 enum mfp_options ieee80211w;
8dd9f9cd 336 int group_mgmt_cipher;
45c94154
JM
337 /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
338 unsigned int assoc_sa_query_max_timeout;
339 /* dot11AssociationSAQueryRetryTimeout (in TUs) */
340 int assoc_sa_query_retry_timeout;
6fc6879b 341#endif /* CONFIG_IEEE80211W */
9c55fdb0
MV
342#ifdef CONFIG_OCV
343 int ocv; /* Operating Channel Validation */
344#endif /* CONFIG_OCV */
05ab9712
MB
345 enum {
346 PSK_RADIUS_IGNORED = 0,
347 PSK_RADIUS_ACCEPTED = 1,
348 PSK_RADIUS_REQUIRED = 2
349 } wpa_psk_radius;
6fc6879b 350 int wpa_pairwise;
27781c0a 351 int group_cipher; /* wpa_group value override from configuation */
6fc6879b
JM
352 int wpa_group;
353 int wpa_group_rekey;
90f837b0 354 int wpa_group_rekey_set;
6fc6879b
JM
355 int wpa_strict_rekey;
356 int wpa_gmk_rekey;
581a8cde 357 int wpa_ptk_rekey;
41f140d3
GK
358 u32 wpa_group_update_count;
359 u32 wpa_pairwise_update_count;
6f234c1e 360 int wpa_disable_eapol_key_retries;
6fc6879b
JM
361 int rsn_pairwise;
362 int rsn_preauth;
363 char *rsn_preauth_interfaces;
6fc6879b 364
4ec1fd8e 365#ifdef CONFIG_IEEE80211R_AP
6fc6879b
JM
366 /* IEEE 802.11r - Fast BSS Transition */
367 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
368 u8 r1_key_holder[FT_R1KH_ID_LEN];
83fe4bd3 369 u32 r0_key_lifetime; /* PMK-R0 lifetime seconds */
3a46cf93
MB
370 int rkh_pos_timeout;
371 int rkh_neg_timeout;
372 int rkh_pull_timeout; /* ms */
373 int rkh_pull_retries;
6fc6879b
JM
374 u32 reassociation_deadline;
375 struct ft_remote_r0kh *r0kh_list;
376 struct ft_remote_r1kh *r1kh_list;
377 int pmk_r1_push;
d7956add 378 int ft_over_ds;
96590564 379 int ft_psk_generate_local;
3a3e2832 380 int r1_max_key_lifetime;
4ec1fd8e 381#endif /* CONFIG_IEEE80211R_AP */
6fc6879b
JM
382
383 char *ctrl_interface; /* directory for UNIX domain sockets */
08230317 384#ifndef CONFIG_NATIVE_WINDOWS
6fc6879b 385 gid_t ctrl_interface_gid;
08230317 386#endif /* CONFIG_NATIVE_WINDOWS */
6fc6879b
JM
387 int ctrl_interface_gid_set;
388
389 char *ca_cert;
390 char *server_cert;
391 char *private_key;
392 char *private_key_passwd;
393 int check_crl;
dd5d325b 394 int check_crl_strict;
159a7fbd 395 unsigned int crl_reload_interval;
681e199d 396 unsigned int tls_session_lifetime;
6418400d 397 unsigned int tls_flags;
080585c0 398 char *ocsp_stapling_response;
5addb0df 399 char *ocsp_stapling_response_multi;
6fc6879b 400 char *dh_file;
f8995f8f 401 char *openssl_ciphers;
d01203ca 402 char *openssl_ecdh_curves;
6fc6879b 403 u8 *pac_opaque_encr_key;
2d867244
JM
404 u8 *eap_fast_a_id;
405 size_t eap_fast_a_id_len;
406 char *eap_fast_a_id_info;
378eae5e 407 int eap_fast_prov;
a11c90a6
JM
408 int pac_key_lifetime;
409 int pac_key_refresh_time;
6fc6879b 410 int eap_sim_aka_result_ind;
da08a7c7 411 int tnc;
7f6ec672 412 int fragment_size;
df684d82 413 u16 pwd_group;
6fc6879b
JM
414
415 char *radius_server_clients;
416 int radius_server_auth_port;
a1dd890a 417 int radius_server_acct_port;
6fc6879b
JM
418 int radius_server_ipv6;
419
6fc6879b
JM
420 int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
421 * address instead of individual address
422 * (for driver_wired.c).
423 */
424
425 int ap_max_inactivity;
426 int ignore_broadcast_ssid;
9b7a1bd7 427 int no_probe_resp_if_max_sta;
6fc6879b 428
3ae0800c 429 int wmm_enabled;
721abef9 430 int wmm_uapsd;
6fc6879b 431
c2db79f2 432 struct hostapd_vlan *vlan;
6fc6879b
JM
433
434 macaddr bssid;
b0194fe0
JM
435
436 /*
437 * Maximum listen interval that STAs can use when associating with this
438 * BSS. If a STA tries to use larger value, the association will be
439 * denied with status code 51.
440 */
441 u16 max_listen_interval;
bf98f7f3 442
cb465555 443 int disable_pmksa_caching;
bf98f7f3 444 int okc; /* Opportunistic Key Caching */
ad08c363
JM
445
446 int wps_state;
447#ifdef CONFIG_WPS
a679c0f2 448 int wps_independent;
ad08c363
JM
449 int ap_setup_locked;
450 u8 uuid[16];
451 char *wps_pin_requests;
452 char *device_name;
453 char *manufacturer;
454 char *model_name;
455 char *model_number;
456 char *serial_number;
2f646b6e 457 u8 device_type[WPS_DEV_TYPE_LEN];
ad08c363
JM
458 char *config_methods;
459 u8 os_version[4];
460 char *ap_pin;
6fa68a0e
JM
461 int skip_cred_build;
462 u8 *extra_cred;
463 size_t extra_cred_len;
d745c7cc 464 int wps_cred_processing;
05766ed8 465 int force_per_enrollee_psk;
4c29cae9
JM
466 u8 *ap_settings;
467 size_t ap_settings_len;
f620268f
JM
468 char *upnp_iface;
469 char *friendly_name;
470 char *manufacturer_url;
471 char *model_description;
472 char *model_url;
473 char *upc;
4028a7fd 474 struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
042ec551 475 int wps_nfc_pw_from_config;
ffdaa05a
JM
476 int wps_nfc_dev_pw_id;
477 struct wpabuf *wps_nfc_dh_pubkey;
478 struct wpabuf *wps_nfc_dh_privkey;
479 struct wpabuf *wps_nfc_dev_pw;
ad08c363 480#endif /* CONFIG_WPS */
fa516558 481 int pbc_in_m1;
67fe933d 482 char *server_id;
e44f8bf2
JM
483
484#define P2P_ENABLED BIT(0)
485#define P2P_GROUP_OWNER BIT(1)
486#define P2P_GROUP_FORMATION BIT(2)
962473c1
JM
487#define P2P_MANAGE BIT(3)
488#define P2P_ALLOW_CROSS_CONNECTION BIT(4)
e44f8bf2 489 int p2p;
25ef8529
JM
490#ifdef CONFIG_P2P
491 u8 ip_addr_go[4];
492 u8 ip_addr_mask[4];
493 u8 ip_addr_start[4];
494 u8 ip_addr_end[4];
495#endif /* CONFIG_P2P */
0d7e5a3a
JB
496
497 int disassoc_low_ack;
ef01fa7b 498 int skip_inactivity_poll;
1161ff1e
JM
499
500#define TDLS_PROHIBIT BIT(0)
501#define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
502 int tdls;
f39b07d7 503 int disable_11n;
efe45d14 504 int disable_11ac;
b83e3e93 505
39b97072
JM
506 /* IEEE 802.11v */
507 int time_advertisement;
508 char *time_zone;
c79938a5 509 int wnm_sleep_mode;
348c9384 510 int wnm_sleep_mode_no_keys;
2049a875 511 int bss_transition;
39b97072 512
b83e3e93
JM
513 /* IEEE 802.11u - Interworking */
514 int interworking;
515 int access_network_type;
516 int internet;
517 int asra;
518 int esr;
519 int uesa;
520 int venue_info_set;
521 u8 venue_group;
522 u8 venue_type;
523 u8 hessid[ETH_ALEN];
4b2a77ab
JM
524
525 /* IEEE 802.11u - Roaming Consortium list */
526 unsigned int roaming_consortium_count;
527 struct hostapd_roaming_consortium *roaming_consortium;
8e5f9134 528
648cc711
JM
529 /* IEEE 802.11u - Venue Name duples */
530 unsigned int venue_name_count;
1792e58d 531 struct hostapd_lang_string *venue_name;
648cc711 532
7e1d3ee9
JM
533 /* Venue URL duples */
534 unsigned int venue_url_count;
535 struct hostapd_venue_url *venue_url;
536
550a3958
JK
537 /* IEEE 802.11u - Network Authentication Type */
538 u8 *network_auth_type;
539 size_t network_auth_type_len;
540
78bda93e
JK
541 /* IEEE 802.11u - IP Address Type Availability */
542 u8 ipaddr_type_availability;
543 u8 ipaddr_type_configured;
544
7515adb2
JK
545 /* IEEE 802.11u - 3GPP Cellular Network */
546 u8 *anqp_3gpp_cell_net;
547 size_t anqp_3gpp_cell_net_len;
548
26fac8b6
JK
549 /* IEEE 802.11u - Domain Name */
550 u8 *domain_name;
551 size_t domain_name_len;
552
8047b186
JK
553 unsigned int nai_realm_count;
554 struct hostapd_nai_realm_data *nai_realm_data;
555
695dbbea
JM
556 struct dl_list anqp_elem; /* list of struct anqp_element */
557
dca30c3f 558 u16 gas_comeback_delay;
2977f519 559 size_t gas_frag_limit;
83594725 560 int gas_address3;
dca30c3f 561
c551700f
KP
562 u8 qos_map_set[16 + 2 * 21];
563 unsigned int qos_map_set_len;
564
a14896e8 565 int osen;
7d597d46 566 int proxy_arp;
4a7ce984 567 int na_mcast_to_ucast;
159c89ab
JK
568#ifdef CONFIG_HS20
569 int hs20;
6ae04d7b 570 int hs20_release;
83421850 571 int disable_dgaf;
d5d24784 572 u16 anqp_domain_id;
a9277e85
JK
573 unsigned int hs20_oper_friendly_name_count;
574 struct hostapd_lang_string *hs20_oper_friendly_name;
4065a309 575 u8 *hs20_wan_metrics;
5ccc54aa
JK
576 u8 *hs20_connection_capability;
577 size_t hs20_connection_capability_len;
df5934f1
JK
578 u8 *hs20_operating_class;
579 u8 hs20_operating_class_len;
f7bd7a01
JM
580 struct hs20_icon {
581 u16 width;
582 u16 height;
583 char language[3];
584 char type[256];
585 char name[256];
586 char file[256];
587 } *hs20_icons;
588 size_t hs20_icons_count;
81847c22 589 u8 osu_ssid[SSID_MAX_LEN];
ae6d15c7
JM
590 size_t osu_ssid_len;
591 struct hs20_osu_provider {
592 unsigned int friendly_name_count;
593 struct hostapd_lang_string *friendly_name;
594 char *server_uri;
595 int *method_list;
596 char **icons;
597 size_t icons_count;
598 char *osu_nai;
cad810a9 599 char *osu_nai2;
ae6d15c7
JM
600 unsigned int service_desc_count;
601 struct hostapd_lang_string *service_desc;
602 } *hs20_osu_providers, *last_osu;
603 size_t hs20_osu_providers_count;
cad810a9 604 size_t hs20_osu_providers_nai_count;
0e450db2
JM
605 char **hs20_operator_icon;
606 size_t hs20_operator_icon_count;
8e1146d9 607 unsigned int hs20_deauth_req_timeout;
8d2a9921
JM
608 char *subscr_remediation_url;
609 u8 subscr_remediation_method;
7bd8c76a 610 char *hs20_sim_provisioning_url;
6cb8f4f3
JM
611 char *t_c_filename;
612 u32 t_c_timestamp;
8760b984 613 char *t_c_server_url;
159c89ab
JK
614#endif /* CONFIG_HS20 */
615
8e5f9134 616 u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
505a3694
JM
617
618#ifdef CONFIG_RADIUS_TEST
619 char *dump_msk_file;
620#endif /* CONFIG_RADIUS_TEST */
b52f084c
JM
621
622 struct wpabuf *vendor_elements;
a9112270 623 struct wpabuf *assocresp_elements;
d136c376
JM
624
625 unsigned int sae_anti_clogging_threshold;
d8b841eb 626 unsigned int sae_sync;
ba3d435f 627 int sae_require_mfp;
625f202a 628 int *sae_groups;
9be19d0b 629 struct sae_password_entry *sae_passwords;
9bc33868 630
88cb27c7
DS
631 char *wowlan_triggers; /* Wake-on-WLAN triggers */
632
9bc33868
JM
633#ifdef CONFIG_TESTING_OPTIONS
634 u8 bss_load_test[5];
635 u8 bss_load_test_set;
bc02843e 636 struct wpabuf *own_ie_override;
e7533538 637 int sae_reflection_attack;
3648d8a1 638 struct wpabuf *sae_commit_override;
9bc33868 639#endif /* CONFIG_TESTING_OPTIONS */
8319e312
TP
640
641#define MESH_ENABLED BIT(0)
642 int mesh;
0629eeb4 643
01018212 644 u8 radio_measurements[RRM_CAPABILITIES_IE_LEN];
e7d0e97b
YL
645
646 int vendor_vht;
fc72a48a 647 int use_sta_nsts;
964f64e2
JM
648
649 char *no_probe_resp_if_seen_on;
0e2412d0 650 char *no_auth_if_seen_on;
b9074912
LD
651
652 int pbss;
fb9a1c3e
AS
653
654#ifdef CONFIG_MBO
655 int mbo_enabled;
65833d71
AP
656 /**
657 * oce - Enable OCE in AP and/or STA-CFON mode
658 * - BIT(0) is Reserved
659 * - Set BIT(1) to enable OCE in STA-CFON mode
660 * - Set BIT(2) to enable OCE in AP mode
661 */
662 unsigned int oce;
941caed9 663 int mbo_cell_data_conn_pref;
fb9a1c3e 664#endif /* CONFIG_MBO */
faecb392
LD
665
666 int ftm_responder;
667 int ftm_initiator;
903ecbe8
JM
668
669#ifdef CONFIG_FILS
670 u8 fils_cache_id[FILS_CACHE_ID_LEN];
671 int fils_cache_id_set;
26bf70e3 672 struct dl_list fils_realms; /* list of struct fils_realm */
1764559e 673 int fils_dh_group;
91d91abf
JM
674 struct hostapd_ip_addr dhcp_server;
675 int dhcp_rapid_commit_proxy;
676 unsigned int fils_hlp_wait_time;
677 u16 dhcp_server_port;
678 u16 dhcp_relay_port;
903ecbe8 679#endif /* CONFIG_FILS */
34f7c699
MB
680
681 int multicast_to_unicast;
57a2aaca
JM
682
683 int broadcast_deauth;
56c75495
JM
684
685#ifdef CONFIG_DPP
686 char *dpp_connector;
687 struct wpabuf *dpp_netaccesskey;
688 unsigned int dpp_netaccesskey_expiry;
689 struct wpabuf *dpp_csign;
56c75495 690#endif /* CONFIG_DPP */
ea079153
JM
691
692#ifdef CONFIG_OWE
693 macaddr owe_transition_bssid;
694 u8 owe_transition_ssid[SSID_MAX_LEN];
695 size_t owe_transition_ssid_len;
a8913881 696 char owe_transition_ifname[IFNAMSIZ + 1];
91cc34bf 697 int *owe_groups;
ea079153 698#endif /* CONFIG_OWE */
d514b502
JM
699
700 int coloc_intf_reporting;
678d8410
JM
701
702 u8 send_probe_response;
9c06f0f6
VN
703
704#define BACKHAUL_BSS 1
705#define FRONTHAUL_BSS 2
706 int multi_ap; /* bitmap of BACKHAUL_BSS, FRONTHAUL_BSS */
6fc6879b
JM
707};
708
94380cb4
PX
709/**
710 * struct he_phy_capabilities_info - HE PHY capabilities
711 */
712struct he_phy_capabilities_info {
713 Boolean he_su_beamformer;
714 Boolean he_su_beamformee;
715 Boolean he_mu_beamformer;
716};
717
718/**
719 * struct he_operation - HE operation
720 */
721struct he_operation {
722 u8 he_bss_color;
723 u8 he_default_pe_duration;
724 u8 he_twt_required;
725 u8 he_rts_threshold;
726};
6fc6879b 727
6fc6879b
JM
728/**
729 * struct hostapd_config - Per-radio interface configuration
730 */
731struct hostapd_config {
ebd79f07 732 struct hostapd_bss_config **bss, *last_bss;
6fc6879b
JM
733 size_t num_bss;
734
735 u16 beacon_int;
736 int rts_threshold;
737 int fragm_threshold;
6fc6879b 738 u8 channel;
857d9422
MM
739 u8 acs;
740 struct wpa_freq_range_list acs_ch_list;
2d18ab40 741 int acs_exclude_dfs;
71934751 742 enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
6fc6879b
JM
743 enum {
744 LONG_PREAMBLE = 0,
745 SHORT_PREAMBLE = 1
746 } preamble;
6fc6879b
JM
747
748 int *supported_rates;
749 int *basic_rates;
29483a56
PK
750 unsigned int beacon_rate;
751 enum beacon_rate_type rate_type;
6fc6879b 752
c5121837 753 const struct wpa_driver_ops *driver;
0ecff8d7 754 char *driver_params;
6fc6879b 755
6fc6879b
JM
756 int ap_table_max_size;
757 int ap_table_expiration_time;
758
a65a9b8d
JM
759 unsigned int track_sta_max_num;
760 unsigned int track_sta_max_age;
761
6fc6879b
JM
762 char country[3]; /* first two octets: country code as described in
763 * ISO/IEC 3166-1. Third octet:
764 * ' ' (ascii 32): all environments
765 * 'O': Outdoor environemnt only
766 * 'I': Indoor environment only
ff936bc7
JM
767 * 'X': Used with noncountry entity ("XXX")
768 * 0x00..0x31: identifying IEEE 802.11 standard
769 * Annex E table (0x04 = global table)
6fc6879b
JM
770 */
771
772 int ieee80211d;
6fc6879b 773
b113a171
SW
774 int ieee80211h; /* DFS */
775
e0392f82
S
776 /*
777 * Local power constraint is an octet encoded as an unsigned integer in
778 * units of decibels. Invalid value -1 indicates that Power Constraint
779 * element will not be added.
780 */
781 int local_pwr_constraint;
782
3d7ad2f6
C
783 /* Control Spectrum Management bit */
784 int spectrum_mgmt_required;
785
6fc6879b
JM
786 struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
787
788 /*
3ae0800c 789 * WMM AC parameters, in same order as 802.1D, i.e.
6fc6879b
JM
790 * 0 = BE (best effort)
791 * 1 = BK (background)
792 * 2 = VI (video)
793 * 3 = VO (voice)
794 */
3ae0800c 795 struct hostapd_wmm_ac_params wmm_ac_params[4];
6fc6879b 796
9d2a76a2
JM
797 int ht_op_mode_fixed;
798 u16 ht_capab;
cfb7e8a0 799 int ieee80211n;
95da9bbc 800 int secondary_channel;
55413ce0 801 int no_pri_sec_switch;
29448243 802 int require_ht;
c101bb9d 803 int obss_interval;
efe45d14
MP
804 u32 vht_capab;
805 int ieee80211ac;
140e850a 806 int require_vht;
efe45d14 807 u8 vht_oper_chwidth;
9615994e 808 u8 vht_oper_centr_freq_seg0_idx;
3117ad42 809 u8 vht_oper_centr_freq_seg1_idx;
ec27b04e 810 u8 ht40_plus_minus_allowed;
c2aff6b1 811
6448e064
EP
812 /* Use driver-generated interface addresses when adding multiple BSSs */
813 u8 use_driver_iface_addr;
814
104bef45
AN
815#ifdef CONFIG_FST
816 struct fst_iface_cfg fst_cfg;
817#endif /* CONFIG_FST */
818
0b8bcaa5
EP
819#ifdef CONFIG_P2P
820 u8 p2p_go_ctwindow;
821#endif /* CONFIG_P2P */
822
c2aff6b1
JB
823#ifdef CONFIG_TESTING_OPTIONS
824 double ignore_probe_probability;
825 double ignore_auth_probability;
826 double ignore_assoc_probability;
827 double ignore_reassoc_probability;
7af092a0 828 double corrupt_gtk_rekey_mic_probability;
2b6e1216 829 int ecsa_ie_only;
c2aff6b1 830#endif /* CONFIG_TESTING_OPTIONS */
50f4f2a0
MK
831
832#ifdef CONFIG_ACS
833 unsigned int acs_num_scans;
68fa00c3
JM
834 struct acs_bias {
835 int channel;
836 double bias;
837 } *acs_chan_bias;
838 unsigned int num_acs_chan_bias;
50f4f2a0 839#endif /* CONFIG_ACS */
74e982d8
DS
840
841 struct wpabuf *lci;
842 struct wpabuf *civic;
451a27b1 843 int stationary_ap;
94380cb4
PX
844
845 int ieee80211ax;
846#ifdef CONFIG_IEEE80211AX
847 struct he_phy_capabilities_info he_phy_capab;
848 struct he_operation he_op;
11ce7a1b 849 struct ieee80211_he_mu_edca_parameter_set he_mu_edca;
94380cb4 850#endif /* CONFIG_IEEE80211AX */
bda9c085
SM
851
852 /* VHT enable/disable config from CHAN_SWITCH */
853#define CH_SWITCH_VHT_ENABLED BIT(0)
854#define CH_SWITCH_VHT_DISABLED BIT(1)
855 unsigned int ch_switch_vht_config;
076f1ea1
BL
856
857 int rssi_reject_assoc_rssi;
858 int rssi_reject_assoc_timeout;
6fc6879b
JM
859};
860
861
862int hostapd_mac_comp(const void *a, const void *b);
89111f3b 863struct hostapd_config * hostapd_config_defaults(void);
41d719d6 864void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
d0ee16ed 865void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
78022c83 866void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
891dfb33 867void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
55920658 868void hostapd_config_free_bss(struct hostapd_bss_config *conf);
6fc6879b 869void hostapd_config_free(struct hostapd_config *conf);
271d2830 870int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
1889af2e 871 const u8 *addr, struct vlan_description *vlan_id);
6fc6879b 872int hostapd_rate_found(int *list, int rate);
6fc6879b 873const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
759fd76b
JM
874 const u8 *addr, const u8 *p2p_dev_addr,
875 const u8 *prev_psk);
6fc6879b 876int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
1889af2e
MB
877int hostapd_vlan_valid(struct hostapd_vlan *vlan,
878 struct vlan_description *vlan_desc);
6fc6879b
JM
879const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
880 int vlan_id);
af35e7af
JM
881struct hostapd_radius_attr *
882hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
08081ad8 883int hostapd_config_check(struct hostapd_config *conf, int full_config);
5d67bf15
JM
884void hostapd_set_security_params(struct hostapd_bss_config *bss,
885 int full_config);
42d30863 886int hostapd_sae_pw_id_in_use(struct hostapd_bss_config *conf);
6fc6879b 887
094393b1 888#endif /* HOSTAPD_CONFIG_H */