blob: 6963df460217c95a196392bbc39657e448d93693 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Configuration definitions and helpers functions
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003 * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef HOSTAPD_CONFIG_H
10#define HOSTAPD_CONFIG_H
11
12#include "common/defs.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080013#include "utils/list.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070014#include "ip_addr.h"
15#include "common/wpa_common.h"
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -070016#include "common/ieee802_11_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070017#include "common/ieee802_11_common.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "wps/wps.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080019#include "fst/fst.h"
Dmitry Shmidt57c2d392016-02-23 13:40:19 -080020#include "vlan.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070021
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080022/**
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;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080038 u8 *rsn_ie;
39 int rsn_ie_len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080040#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;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070044 enum mfp_options ieee80211w;
Hai Shalom74f70d42019-02-11 14:42:39 -080045 int ocv;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070046 unsigned int pairwise_cipher;
47 unsigned int group_cipher;
48 unsigned int mgmt_group_cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080049 int dot11MeshMaxRetries;
50 int dot11MeshRetryTimeout; /* msec */
51 int dot11MeshConfirmTimeout; /* msec */
52 int dot11MeshHoldingTimeout; /* msec */
53};
54
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070055#define MAX_STA_COUNT 2007
56#define MAX_VLAN_ID 4094
57
58typedef u8 macaddr[ETH_ALEN];
59
60struct mac_acl_entry {
61 macaddr addr;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -080062 struct vlan_description vlan_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063};
64
65struct hostapd_radius_servers;
66struct ft_remote_r0kh;
67struct ft_remote_r1kh;
68
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070069#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,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080083 SECURITY_WPA = 4,
84 SECURITY_OSEN = 5
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070085} secpolicy;
86
87struct hostapd_ssid {
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -070088 u8 ssid[SSID_MAX_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070089 size_t ssid_len;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080090 unsigned int ssid_set:1;
91 unsigned int utf8_ssid:1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -080092 unsigned int wpa_passphrase_set:1;
93 unsigned int wpa_psk_set:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070094
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;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700108#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;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800112 int per_sta_vif;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700113#ifdef CONFIG_FULL_DYNAMIC_VLAN
114 char *vlan_tagged_interface;
115#endif /* CONFIG_FULL_DYNAMIC_VLAN */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700116};
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 */
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800124 struct vlan_description vlan_desc;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700125 char ifname[IFNAMSIZ + 1];
Hai Shalom74f70d42019-02-11 14:42:39 -0800126 char bridge[IFNAMSIZ + 1];
Dmitry Shmidt83474442015-04-15 13:47:09 -0700127 int configured;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700128 int dynamic_vlan;
129#ifdef CONFIG_FULL_DYNAMIC_VLAN
130
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700131#define DVLAN_CLEAN_WLAN_PORT 0x8
132 int clean;
133#endif /* CONFIG_FULL_DYNAMIC_VLAN */
134};
135
136#define PMK_LEN 32
Hai Shalom74f70d42019-02-11 14:42:39 -0800137#define KEYID_LEN 32
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800138#define MIN_PASSPHRASE_LEN 8
139#define MAX_PASSPHRASE_LEN 63
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800140struct hostapd_sta_wpa_psk_short {
141 struct hostapd_sta_wpa_psk_short *next;
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800142 unsigned int is_passphrase:1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800143 u8 psk[PMK_LEN];
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800144 char passphrase[MAX_PASSPHRASE_LEN + 1];
145 int ref; /* (number of references held) - 1 */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800146};
147
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700148struct hostapd_wpa_psk {
149 struct hostapd_wpa_psk *next;
150 int group;
Hai Shalom74f70d42019-02-11 14:42:39 -0800151 char keyid[KEYID_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700152 u8 psk[PMK_LEN];
153 u8 addr[ETH_ALEN];
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700154 u8 p2p_dev_addr[ETH_ALEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700155};
156
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700157struct 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;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800164 } methods[EAP_MAX_METHODS];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700165 u8 *password;
166 size_t password_len;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700167 u8 *salt;
168 size_t salt_len; /* non-zero when password is salted */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700169 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() */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800174 unsigned int remediation:1;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700175 unsigned int macacl:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700176 int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700177 struct hostapd_radius_attr *accept_attr;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700178 u32 t_c_timestamp;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700179};
180
Dmitry Shmidt04949592012-07-19 12:16:46 -0700181struct hostapd_radius_attr {
182 u8 type;
183 struct wpabuf *val;
184 struct hostapd_radius_attr *next;
185};
186
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700187
188#define NUM_TX_QUEUES 4
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 */
195};
196
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700197
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800198#define MAX_ROAMING_CONSORTIUM_LEN 15
199
200struct hostapd_roaming_consortium {
201 u8 len;
202 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
203};
204
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700205struct hostapd_lang_string {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700206 u8 lang[3];
207 u8 name_len;
208 u8 name[252];
209};
210
Roshan Pius3a1667e2018-07-03 15:17:14 -0700211struct hostapd_venue_url {
212 u8 venue_number;
213 u8 url_len;
214 u8 url[254];
215};
216
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700217#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
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800234struct anqp_element {
235 struct dl_list list;
236 u16 infoid;
237 struct wpabuf *payload;
238};
239
Dmitry Shmidt29333592017-01-09 12:27:11 -0800240struct fils_realm {
241 struct dl_list list;
242 u8 hash[2];
243 char realm[];
244};
245
Roshan Pius3a1667e2018-07-03 15:17:14 -0700246struct sae_password_entry {
247 struct sae_password_entry *next;
248 char *password;
249 char *identifier;
250 u8 peer_addr[ETH_ALEN];
251};
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800252
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700253/**
254 * struct hostapd_bss_config - Per-BSS configuration
255 */
256struct hostapd_bss_config {
257 char iface[IFNAMSIZ + 1];
258 char bridge[IFNAMSIZ + 1];
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700259 char vlan_bridge[IFNAMSIZ + 1];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700260 char wds_bridge[IFNAMSIZ + 1];
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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700267 int max_num_sta; /* maximum number of STAs in station table */
268
269 int dtim_period;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700270 unsigned int bss_load_update_period;
271 unsigned int chan_util_avg_period;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700272
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;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800278 char *eap_user_sqlite;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700279 char *eap_sim_db;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800280 unsigned int eap_sim_db_timeout;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800281 int eap_server_erp; /* Whether ERP is enabled on internal EAP server */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700282 struct hostapd_ip_addr own_ip_addr;
283 char *nas_identifier;
284 struct hostapd_radius_servers *radius;
285 int acct_interim_interval;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700286 int radius_request_cui;
287 struct hostapd_radius_attr *radius_auth_req_attr;
288 struct hostapd_radius_attr *radius_acct_req_attr;
289 int radius_das_port;
290 unsigned int radius_das_time_window;
291 int radius_das_require_event_timestamp;
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700292 int radius_das_require_message_authenticator;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700293 struct hostapd_ip_addr radius_das_client_addr;
294 u8 *radius_das_shared_secret;
295 size_t radius_das_shared_secret_len;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700296
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;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800309 int erp_send_reauth_start;
310 char *erp_domain;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700311
312 int ieee802_11f; /* use IEEE 802.11f (IAPP) */
313 char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
314 * frames */
315
Dmitry Shmidt29333592017-01-09 12:27:11 -0800316 enum macaddr_acl {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700317 ACCEPT_UNLESS_DENIED = 0,
318 DENY_UNLESS_ACCEPTED = 1,
319 USE_EXTERNAL_RADIUS_AUTH = 2
320 } macaddr_acl;
321 struct mac_acl_entry *accept_mac;
322 int num_accept_mac;
323 struct mac_acl_entry *deny_mac;
324 int num_deny_mac;
325 int wds_sta;
326 int isolate;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700327 int start_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700328
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
335 enum mfp_options ieee80211w;
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700336 int group_mgmt_cipher;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700337 /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
338 unsigned int assoc_sa_query_max_timeout;
339 /* dot11AssociationSAQueryRetryTimeout (in TUs) */
340 int assoc_sa_query_retry_timeout;
341#endif /* CONFIG_IEEE80211W */
Hai Shalom74f70d42019-02-11 14:42:39 -0800342#ifdef CONFIG_OCV
343 int ocv; /* Operating Channel Validation */
344#endif /* CONFIG_OCV */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800345 enum {
346 PSK_RADIUS_IGNORED = 0,
347 PSK_RADIUS_ACCEPTED = 1,
348 PSK_RADIUS_REQUIRED = 2
349 } wpa_psk_radius;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700350 int wpa_pairwise;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700351 int group_cipher; /* wpa_group value override from configuation */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700352 int wpa_group;
353 int wpa_group_rekey;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700354 int wpa_group_rekey_set;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700355 int wpa_strict_rekey;
356 int wpa_gmk_rekey;
357 int wpa_ptk_rekey;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800358 u32 wpa_group_update_count;
359 u32 wpa_pairwise_update_count;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700360 int wpa_disable_eapol_key_retries;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700361 int rsn_pairwise;
362 int rsn_preauth;
363 char *rsn_preauth_interfaces;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700364
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800365#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700366 /* IEEE 802.11r - Fast BSS Transition */
367 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
368 u8 r1_key_holder[FT_R1KH_ID_LEN];
Roshan Pius3a1667e2018-07-03 15:17:14 -0700369 u32 r0_key_lifetime; /* PMK-R0 lifetime seconds */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700370 int rkh_pos_timeout;
371 int rkh_neg_timeout;
372 int rkh_pull_timeout; /* ms */
373 int rkh_pull_retries;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700374 u32 reassociation_deadline;
375 struct ft_remote_r0kh *r0kh_list;
376 struct ft_remote_r1kh *r1kh_list;
377 int pmk_r1_push;
378 int ft_over_ds;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800379 int ft_psk_generate_local;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700380 int r1_max_key_lifetime;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800381#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382
383 char *ctrl_interface; /* directory for UNIX domain sockets */
384#ifndef CONFIG_NATIVE_WINDOWS
385 gid_t ctrl_interface_gid;
386#endif /* CONFIG_NATIVE_WINDOWS */
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;
Hai Shalom74f70d42019-02-11 14:42:39 -0800394 int check_crl_strict;
395 unsigned int crl_reload_interval;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800396 unsigned int tls_session_lifetime;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700397 unsigned int tls_flags;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700398 char *ocsp_stapling_response;
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800399 char *ocsp_stapling_response_multi;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700400 char *dh_file;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800401 char *openssl_ciphers;
Hai Shalom74f70d42019-02-11 14:42:39 -0800402 char *openssl_ecdh_curves;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700403 u8 *pac_opaque_encr_key;
404 u8 *eap_fast_a_id;
405 size_t eap_fast_a_id_len;
406 char *eap_fast_a_id_info;
407 int eap_fast_prov;
408 int pac_key_lifetime;
409 int pac_key_refresh_time;
410 int eap_sim_aka_result_ind;
411 int tnc;
412 int fragment_size;
413 u16 pwd_group;
414
415 char *radius_server_clients;
416 int radius_server_auth_port;
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800417 int radius_server_acct_port;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700418 int radius_server_ipv6;
419
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700420 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;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800427 int no_probe_resp_if_max_sta;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700428
429 int wmm_enabled;
430 int wmm_uapsd;
431
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700432 struct hostapd_vlan *vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700433
434 macaddr bssid;
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;
442
Dmitry Shmidtc55524a2011-07-07 11:18:38 -0700443 int disable_pmksa_caching;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700444 int okc; /* Opportunistic Key Caching */
445
446 int wps_state;
447#ifdef CONFIG_WPS
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700448 int wps_independent;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700449 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;
457 u8 device_type[WPS_DEV_TYPE_LEN];
458 char *config_methods;
459 u8 os_version[4];
460 char *ap_pin;
461 int skip_cred_build;
462 u8 *extra_cred;
463 size_t extra_cred_len;
464 int wps_cred_processing;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700465 int force_per_enrollee_psk;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700466 u8 *ap_settings;
467 size_t ap_settings_len;
468 char *upnp_iface;
469 char *friendly_name;
470 char *manufacturer_url;
471 char *model_description;
472 char *model_url;
473 char *upc;
474 struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800475 int wps_nfc_pw_from_config;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700476 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;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700480#endif /* CONFIG_WPS */
Jouni Malinen87fd2792011-05-16 18:35:42 +0300481 int pbc_in_m1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700482 char *server_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700483
484#define P2P_ENABLED BIT(0)
485#define P2P_GROUP_OWNER BIT(1)
486#define P2P_GROUP_FORMATION BIT(2)
487#define P2P_MANAGE BIT(3)
488#define P2P_ALLOW_CROSS_CONNECTION BIT(4)
489 int p2p;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800490#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 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700496
497 int disassoc_low_ack;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800498 int skip_inactivity_poll;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700499
500#define TDLS_PROHIBIT BIT(0)
501#define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
502 int tdls;
503 int disable_11n;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700504 int disable_11ac;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800505
506 /* IEEE 802.11v */
507 int time_advertisement;
508 char *time_zone;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800509 int wnm_sleep_mode;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700510 int wnm_sleep_mode_no_keys;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800511 int bss_transition;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800512
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];
524
525 /* IEEE 802.11u - Roaming Consortium list */
526 unsigned int roaming_consortium_count;
527 struct hostapd_roaming_consortium *roaming_consortium;
528
Dmitry Shmidt04949592012-07-19 12:16:46 -0700529 /* IEEE 802.11u - Venue Name duples */
530 unsigned int venue_name_count;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700531 struct hostapd_lang_string *venue_name;
532
Roshan Pius3a1667e2018-07-03 15:17:14 -0700533 /* Venue URL duples */
534 unsigned int venue_url_count;
535 struct hostapd_venue_url *venue_url;
536
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700537 /* IEEE 802.11u - Network Authentication Type */
538 u8 *network_auth_type;
539 size_t network_auth_type_len;
540
541 /* IEEE 802.11u - IP Address Type Availability */
542 u8 ipaddr_type_availability;
543 u8 ipaddr_type_configured;
544
545 /* IEEE 802.11u - 3GPP Cellular Network */
546 u8 *anqp_3gpp_cell_net;
547 size_t anqp_3gpp_cell_net_len;
548
549 /* IEEE 802.11u - Domain Name */
550 u8 *domain_name;
551 size_t domain_name_len;
552
553 unsigned int nai_realm_count;
554 struct hostapd_nai_realm_data *nai_realm_data;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700555
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800556 struct dl_list anqp_elem; /* list of struct anqp_element */
557
Dmitry Shmidt04949592012-07-19 12:16:46 -0700558 u16 gas_comeback_delay;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800559 size_t gas_frag_limit;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700560 int gas_address3;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700561
Dmitry Shmidt051af732013-10-22 13:52:46 -0700562 u8 qos_map_set[16 + 2 * 21];
563 unsigned int qos_map_set_len;
564
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800565 int osen;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800566 int proxy_arp;
Dmitry Shmidt1d755d02015-04-28 10:34:29 -0700567 int na_mcast_to_ucast;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700568#ifdef CONFIG_HS20
569 int hs20;
Hai Shalom74f70d42019-02-11 14:42:39 -0800570 int hs20_release;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700571 int disable_dgaf;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800572 u16 anqp_domain_id;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700573 unsigned int hs20_oper_friendly_name_count;
574 struct hostapd_lang_string *hs20_oper_friendly_name;
575 u8 *hs20_wan_metrics;
576 u8 *hs20_connection_capability;
577 size_t hs20_connection_capability_len;
578 u8 *hs20_operating_class;
579 u8 hs20_operating_class_len;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800580 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;
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700589 u8 osu_ssid[SSID_MAX_LEN];
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800590 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;
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800599 char *osu_nai2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800600 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;
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800604 size_t hs20_osu_providers_nai_count;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700605 char **hs20_operator_icon;
606 size_t hs20_operator_icon_count;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800607 unsigned int hs20_deauth_req_timeout;
608 char *subscr_remediation_url;
609 u8 subscr_remediation_method;
Hai Shalom74f70d42019-02-11 14:42:39 -0800610 char *hs20_sim_provisioning_url;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700611 char *t_c_filename;
612 u32 t_c_timestamp;
613 char *t_c_server_url;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700614#endif /* CONFIG_HS20 */
615
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800616 u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
617
618#ifdef CONFIG_RADIUS_TEST
619 char *dump_msk_file;
620#endif /* CONFIG_RADIUS_TEST */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700621
622 struct wpabuf *vendor_elements;
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700623 struct wpabuf *assocresp_elements;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800624
625 unsigned int sae_anti_clogging_threshold;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700626 unsigned int sae_sync;
627 int sae_require_mfp;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800628 int *sae_groups;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700629 struct sae_password_entry *sae_passwords;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700630
Dmitry Shmidt0207e232014-09-03 14:58:37 -0700631 char *wowlan_triggers; /* Wake-on-WLAN triggers */
632
Dmitry Shmidt051af732013-10-22 13:52:46 -0700633#ifdef CONFIG_TESTING_OPTIONS
634 u8 bss_load_test[5];
635 u8 bss_load_test_set;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800636 struct wpabuf *own_ie_override;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700637 int sae_reflection_attack;
638 struct wpabuf *sae_commit_override;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700639#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800640
641#define MESH_ENABLED BIT(0)
642 int mesh;
643
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700644 u8 radio_measurements[RRM_CAPABILITIES_IE_LEN];
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800645
646 int vendor_vht;
Dmitry Shmidt7d175302016-09-06 13:11:34 -0700647 int use_sta_nsts;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800648
649 char *no_probe_resp_if_seen_on;
650 char *no_auth_if_seen_on;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800651
652 int pbss;
653
654#ifdef CONFIG_MBO
655 int mbo_enabled;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700656 /**
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;
663 int mbo_cell_data_conn_pref;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800664#endif /* CONFIG_MBO */
Dmitry Shmidt7d175302016-09-06 13:11:34 -0700665
666 int ftm_responder;
667 int ftm_initiator;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800668
669#ifdef CONFIG_FILS
670 u8 fils_cache_id[FILS_CACHE_ID_LEN];
671 int fils_cache_id_set;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800672 struct dl_list fils_realms; /* list of struct fils_realm */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700673 int fils_dh_group;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800674 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;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800679#endif /* CONFIG_FILS */
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800680
681 int multicast_to_unicast;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700682
683 int broadcast_deauth;
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;
690#endif /* CONFIG_DPP */
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;
696 char owe_transition_ifname[IFNAMSIZ + 1];
697 int *owe_groups;
698#endif /* CONFIG_OWE */
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800699
700 int coloc_intf_reporting;
Hai Shalom74f70d42019-02-11 14:42:39 -0800701
702 u8 send_probe_response;
703
704#define BACKHAUL_BSS 1
705#define FRONTHAUL_BSS 2
706 int multi_ap; /* bitmap of BACKHAUL_BSS, FRONTHAUL_BSS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700707};
708
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800709/**
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};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700727
728/**
729 * struct hostapd_config - Per-radio interface configuration
730 */
731struct hostapd_config {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800732 struct hostapd_bss_config **bss, *last_bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700733 size_t num_bss;
734
735 u16 beacon_int;
736 int rts_threshold;
737 int fragm_threshold;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700738 u8 channel;
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700739 u8 acs;
740 struct wpa_freq_range_list acs_ch_list;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700741 int acs_exclude_dfs;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700742 enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
743 enum {
744 LONG_PREAMBLE = 0,
745 SHORT_PREAMBLE = 1
746 } preamble;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700747
748 int *supported_rates;
749 int *basic_rates;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800750 unsigned int beacon_rate;
751 enum beacon_rate_type rate_type;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700752
753 const struct wpa_driver_ops *driver;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800754 char *driver_params;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700755
756 int ap_table_max_size;
757 int ap_table_expiration_time;
758
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800759 unsigned int track_sta_max_num;
760 unsigned int track_sta_max_age;
761
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700762 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
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700767 * 'X': Used with noncountry entity ("XXX")
768 * 0x00..0x31: identifying IEEE 802.11 standard
769 * Annex E table (0x04 = global table)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700770 */
771
772 int ieee80211d;
773
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700774 int ieee80211h; /* DFS */
775
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800776 /*
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
783 /* Control Spectrum Management bit */
784 int spectrum_mgmt_required;
785
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700786 struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
787
788 /*
789 * WMM AC parameters, in same order as 802.1D, i.e.
790 * 0 = BE (best effort)
791 * 1 = BK (background)
792 * 2 = VI (video)
793 * 3 = VO (voice)
794 */
795 struct hostapd_wmm_ac_params wmm_ac_params[4];
796
797 int ht_op_mode_fixed;
798 u16 ht_capab;
799 int ieee80211n;
800 int secondary_channel;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800801 int no_pri_sec_switch;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700802 int require_ht;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800803 int obss_interval;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700804 u32 vht_capab;
805 int ieee80211ac;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700806 int require_vht;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700807 u8 vht_oper_chwidth;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700808 u8 vht_oper_centr_freq_seg0_idx;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800809 u8 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700810 u8 ht40_plus_minus_allowed;
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700811
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -0800812 /* Use driver-generated interface addresses when adding multiple BSSs */
813 u8 use_driver_iface_addr;
814
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800815#ifdef CONFIG_FST
816 struct fst_iface_cfg fst_cfg;
817#endif /* CONFIG_FST */
818
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800819#ifdef CONFIG_P2P
820 u8 p2p_go_ctwindow;
821#endif /* CONFIG_P2P */
822
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700823#ifdef CONFIG_TESTING_OPTIONS
824 double ignore_probe_probability;
825 double ignore_auth_probability;
826 double ignore_assoc_probability;
827 double ignore_reassoc_probability;
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -0700828 double corrupt_gtk_rekey_mic_probability;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800829 int ecsa_ie_only;
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700830#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700831
832#ifdef CONFIG_ACS
833 unsigned int acs_num_scans;
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800834 struct acs_bias {
835 int channel;
836 double bias;
837 } *acs_chan_bias;
838 unsigned int num_acs_chan_bias;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700839#endif /* CONFIG_ACS */
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700840
841 struct wpabuf *lci;
842 struct wpabuf *civic;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800843 int stationary_ap;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800844
845 int ieee80211ax;
846#ifdef CONFIG_IEEE80211AX
847 struct he_phy_capabilities_info he_phy_capab;
848 struct he_operation he_op;
Hai Shalom74f70d42019-02-11 14:42:39 -0800849 struct ieee80211_he_mu_edca_parameter_set he_mu_edca;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800850#endif /* CONFIG_IEEE80211AX */
Roshan Pius3a1667e2018-07-03 15:17:14 -0700851
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;
Hai Shalom74f70d42019-02-11 14:42:39 -0800856
857 int rssi_reject_assoc_rssi;
858 int rssi_reject_assoc_timeout;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700859};
860
861
862int hostapd_mac_comp(const void *a, const void *b);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700863struct hostapd_config * hostapd_config_defaults(void);
864void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700865void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
Dmitry Shmidt29333592017-01-09 12:27:11 -0800866void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800867void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800868void hostapd_config_free_bss(struct hostapd_bss_config *conf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700869void hostapd_config_free(struct hostapd_config *conf);
870int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800871 const u8 *addr, struct vlan_description *vlan_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700872int hostapd_rate_found(int *list, int rate);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700873const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700874 const u8 *addr, const u8 *p2p_dev_addr,
875 const u8 *prev_psk);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700876int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800877int hostapd_vlan_valid(struct hostapd_vlan *vlan,
878 struct vlan_description *vlan_desc);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700879const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
880 int vlan_id);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700881struct hostapd_radius_attr *
882hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800883int hostapd_config_check(struct hostapd_config *conf, int full_config);
Dmitry Shmidt71757432014-06-02 13:50:35 -0700884void hostapd_set_security_params(struct hostapd_bss_config *bss,
885 int full_config);
Hai Shalom74f70d42019-02-11 14:42:39 -0800886int hostapd_sae_pw_id_in_use(struct hostapd_bss_config *conf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700887
888#endif /* HOSTAPD_CONFIG_H */