blob: 69db16d397bac1b8fc97c4696e3658ef85be9306 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Configuration definitions and helpers functions
Sunil Ravib0ac25f2024-07-12 01:42:03 +00003 * Copyright (c) 2003-2024, 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"
Hai Shalom81f62d82019-07-22 12:10:00 -070018#include "crypto/sha256.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070019#include "wps/wps.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080020#include "fst/fst.h"
Dmitry Shmidt57c2d392016-02-23 13:40:19 -080021#include "vlan.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070022
Sunil Ravia04bd252022-05-02 22:54:18 -070023enum macaddr_acl {
24 ACCEPT_UNLESS_DENIED = 0,
25 DENY_UNLESS_ACCEPTED = 1,
26 USE_EXTERNAL_RADIUS_AUTH = 2
27};
28
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080029/**
30 * mesh_conf - local MBSS state and settings
31 */
32struct mesh_conf {
33 u8 meshid[32];
34 u8 meshid_len;
35 /* Active Path Selection Protocol Identifier */
36 u8 mesh_pp_id;
37 /* Active Path Selection Metric Identifier */
38 u8 mesh_pm_id;
39 /* Congestion Control Mode Identifier */
40 u8 mesh_cc_id;
41 /* Synchronization Protocol Identifier */
42 u8 mesh_sp_id;
43 /* Authentication Protocol Identifier */
44 u8 mesh_auth_id;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080045 u8 *rsn_ie;
46 int rsn_ie_len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080047#define MESH_CONF_SEC_NONE BIT(0)
48#define MESH_CONF_SEC_AUTH BIT(1)
49#define MESH_CONF_SEC_AMPE BIT(2)
50 unsigned int security;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070051 enum mfp_options ieee80211w;
Hai Shalom74f70d42019-02-11 14:42:39 -080052 int ocv;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070053 unsigned int pairwise_cipher;
54 unsigned int group_cipher;
55 unsigned int mgmt_group_cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080056 int dot11MeshMaxRetries;
57 int dot11MeshRetryTimeout; /* msec */
58 int dot11MeshConfirmTimeout; /* msec */
59 int dot11MeshHoldingTimeout; /* msec */
Hai Shaloma20dcd72022-02-04 13:43:00 -080060 int mesh_fwding;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080061};
62
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063#define MAX_STA_COUNT 2007
64#define MAX_VLAN_ID 4094
65
66typedef u8 macaddr[ETH_ALEN];
67
68struct mac_acl_entry {
69 macaddr addr;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -080070 struct vlan_description vlan_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070071};
72
73struct hostapd_radius_servers;
74struct ft_remote_r0kh;
75struct ft_remote_r1kh;
76
Hai Shalomfdcde762020-04-02 11:19:20 -070077#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070078#define NUM_WEP_KEYS 4
79struct hostapd_wep_keys {
80 u8 idx;
81 u8 *key[NUM_WEP_KEYS];
82 size_t len[NUM_WEP_KEYS];
83 int keys_set;
84 size_t default_len; /* key length used for dynamic key generation */
85};
Hai Shalomfdcde762020-04-02 11:19:20 -070086#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070087
88typedef enum hostap_security_policy {
89 SECURITY_PLAINTEXT = 0,
Hai Shalomfdcde762020-04-02 11:19:20 -070090#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070091 SECURITY_STATIC_WEP = 1,
Hai Shalomfdcde762020-04-02 11:19:20 -070092#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070093 SECURITY_IEEE_802_1X = 2,
94 SECURITY_WPA_PSK = 3,
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080095 SECURITY_WPA = 4,
96 SECURITY_OSEN = 5
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070097} secpolicy;
98
99struct hostapd_ssid {
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700100 u8 ssid[SSID_MAX_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101 size_t ssid_len;
Hai Shalomfdcde762020-04-02 11:19:20 -0700102 u32 short_ssid;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800103 unsigned int ssid_set:1;
104 unsigned int utf8_ssid:1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800105 unsigned int wpa_passphrase_set:1;
106 unsigned int wpa_psk_set:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700107
108 char vlan[IFNAMSIZ + 1];
109 secpolicy security_policy;
110
111 struct hostapd_wpa_psk *wpa_psk;
112 char *wpa_passphrase;
113 char *wpa_psk_file;
Hai Shalomc3565922019-10-28 11:58:20 -0700114 struct sae_pt *pt;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700115
Hai Shalomfdcde762020-04-02 11:19:20 -0700116#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700117 struct hostapd_wep_keys wep;
Hai Shalomfdcde762020-04-02 11:19:20 -0700118#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700119
120#define DYNAMIC_VLAN_DISABLED 0
121#define DYNAMIC_VLAN_OPTIONAL 1
122#define DYNAMIC_VLAN_REQUIRED 2
123 int dynamic_vlan;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700124#define DYNAMIC_VLAN_NAMING_WITHOUT_DEVICE 0
125#define DYNAMIC_VLAN_NAMING_WITH_DEVICE 1
126#define DYNAMIC_VLAN_NAMING_END 2
127 int vlan_naming;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800128 int per_sta_vif;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700129#ifdef CONFIG_FULL_DYNAMIC_VLAN
130 char *vlan_tagged_interface;
131#endif /* CONFIG_FULL_DYNAMIC_VLAN */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700132};
133
134
135#define VLAN_ID_WILDCARD -1
136
137struct hostapd_vlan {
138 struct hostapd_vlan *next;
139 int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800140 struct vlan_description vlan_desc;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700141 char ifname[IFNAMSIZ + 1];
Hai Shalom74f70d42019-02-11 14:42:39 -0800142 char bridge[IFNAMSIZ + 1];
Dmitry Shmidt83474442015-04-15 13:47:09 -0700143 int configured;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700144 int dynamic_vlan;
145#ifdef CONFIG_FULL_DYNAMIC_VLAN
146
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700147#define DVLAN_CLEAN_WLAN_PORT 0x8
148 int clean;
149#endif /* CONFIG_FULL_DYNAMIC_VLAN */
150};
151
152#define PMK_LEN 32
Hai Shalom74f70d42019-02-11 14:42:39 -0800153#define KEYID_LEN 32
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800154#define MIN_PASSPHRASE_LEN 8
155#define MAX_PASSPHRASE_LEN 63
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800156struct hostapd_sta_wpa_psk_short {
157 struct hostapd_sta_wpa_psk_short *next;
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800158 unsigned int is_passphrase:1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800159 u8 psk[PMK_LEN];
Dmitry Shmidt9c175262016-03-03 10:20:07 -0800160 char passphrase[MAX_PASSPHRASE_LEN + 1];
161 int ref; /* (number of references held) - 1 */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800162};
163
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700164struct hostapd_wpa_psk {
165 struct hostapd_wpa_psk *next;
166 int group;
Hai Shalom74f70d42019-02-11 14:42:39 -0800167 char keyid[KEYID_LEN];
Hai Shalomfdcde762020-04-02 11:19:20 -0700168 int wps;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700169 u8 psk[PMK_LEN];
170 u8 addr[ETH_ALEN];
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700171 u8 p2p_dev_addr[ETH_ALEN];
Hai Shalom021b0b52019-04-10 11:17:58 -0700172 int vlan_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700173};
174
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700175struct hostapd_eap_user {
176 struct hostapd_eap_user *next;
177 u8 *identity;
178 size_t identity_len;
179 struct {
180 int vendor;
181 u32 method;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800182 } methods[EAP_MAX_METHODS];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700183 u8 *password;
184 size_t password_len;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700185 u8 *salt;
186 size_t salt_len; /* non-zero when password is salted */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700187 int phase2;
188 int force_version;
189 unsigned int wildcard_prefix:1;
190 unsigned int password_hash:1; /* whether password is hashed with
191 * nt_password_hash() */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800192 unsigned int remediation:1;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700193 unsigned int macacl:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700194 int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700195 struct hostapd_radius_attr *accept_attr;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700196 u32 t_c_timestamp;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700197};
198
Dmitry Shmidt04949592012-07-19 12:16:46 -0700199struct hostapd_radius_attr {
200 u8 type;
201 struct wpabuf *val;
202 struct hostapd_radius_attr *next;
203};
204
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700205
206#define NUM_TX_QUEUES 4
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800207#define MAX_ROAMING_CONSORTIUM_LEN 15
208
209struct hostapd_roaming_consortium {
210 u8 len;
211 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
212};
213
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700214struct hostapd_lang_string {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700215 u8 lang[3];
216 u8 name_len;
217 u8 name[252];
218};
219
Roshan Pius3a1667e2018-07-03 15:17:14 -0700220struct hostapd_venue_url {
221 u8 venue_number;
222 u8 url_len;
223 u8 url[254];
224};
225
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700226#define MAX_NAI_REALMS 10
227#define MAX_NAI_REALMLEN 255
228#define MAX_NAI_EAP_METHODS 5
229#define MAX_NAI_AUTH_TYPES 4
230struct hostapd_nai_realm_data {
231 u8 encoding;
232 char realm_buf[MAX_NAI_REALMLEN + 1];
233 char *realm[MAX_NAI_REALMS];
234 u8 eap_method_count;
235 struct hostapd_nai_realm_eap {
236 u8 eap_method;
237 u8 num_auths;
238 u8 auth_id[MAX_NAI_AUTH_TYPES];
239 u8 auth_val[MAX_NAI_AUTH_TYPES];
240 } eap_method[MAX_NAI_EAP_METHODS];
241};
242
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800243struct anqp_element {
244 struct dl_list list;
245 u16 infoid;
246 struct wpabuf *payload;
247};
248
Dmitry Shmidt29333592017-01-09 12:27:11 -0800249struct fils_realm {
250 struct dl_list list;
251 u8 hash[2];
252 char realm[];
253};
254
Roshan Pius3a1667e2018-07-03 15:17:14 -0700255struct sae_password_entry {
256 struct sae_password_entry *next;
257 char *password;
258 char *identifier;
259 u8 peer_addr[ETH_ALEN];
Hai Shalom021b0b52019-04-10 11:17:58 -0700260 int vlan_id;
Hai Shalomc3565922019-10-28 11:58:20 -0700261 struct sae_pt *pt;
Hai Shalom899fcc72020-10-19 14:38:18 -0700262 struct sae_pk *pk;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700263};
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800264
Hai Shalom81f62d82019-07-22 12:10:00 -0700265struct dpp_controller_conf {
266 struct dpp_controller_conf *next;
267 u8 pkhash[SHA256_MAC_LEN];
268 struct hostapd_ip_addr ipaddr;
269};
270
271struct airtime_sta_weight {
272 struct airtime_sta_weight *next;
273 unsigned int weight;
274 u8 addr[ETH_ALEN];
275};
276
Hai Shaloma20dcd72022-02-04 13:43:00 -0800277#define EXT_CAPA_MAX_LEN 15
278
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700279/**
280 * struct hostapd_bss_config - Per-BSS configuration
281 */
282struct hostapd_bss_config {
283 char iface[IFNAMSIZ + 1];
284 char bridge[IFNAMSIZ + 1];
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700285 char vlan_bridge[IFNAMSIZ + 1];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700286 char wds_bridge[IFNAMSIZ + 1];
Sunil Ravi036cec52023-03-29 11:35:17 -0700287 int bridge_hairpin; /* hairpin_mode on bridge members */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700288
289 enum hostapd_logger_level logger_syslog_level, logger_stdout_level;
290
291 unsigned int logger_syslog; /* module bitfield */
292 unsigned int logger_stdout; /* module bitfield */
293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700294 int max_num_sta; /* maximum number of STAs in station table */
295
296 int dtim_period;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700297 unsigned int bss_load_update_period;
298 unsigned int chan_util_avg_period;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700299
300 int ieee802_1x; /* use IEEE 802.1X */
301 int eapol_version;
302 int eap_server; /* Use internal EAP server instead of external
303 * RADIUS server */
304 struct hostapd_eap_user *eap_user;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800305 char *eap_user_sqlite;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700306 char *eap_sim_db;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800307 unsigned int eap_sim_db_timeout;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800308 int eap_server_erp; /* Whether ERP is enabled on internal EAP server */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700309 struct hostapd_ip_addr own_ip_addr;
310 char *nas_identifier;
311 struct hostapd_radius_servers *radius;
312 int acct_interim_interval;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700313 int radius_request_cui;
314 struct hostapd_radius_attr *radius_auth_req_attr;
315 struct hostapd_radius_attr *radius_acct_req_attr;
Hai Shalomc3565922019-10-28 11:58:20 -0700316 char *radius_req_attr_sqlite;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700317 int radius_das_port;
318 unsigned int radius_das_time_window;
319 int radius_das_require_event_timestamp;
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700320 int radius_das_require_message_authenticator;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700321 struct hostapd_ip_addr radius_das_client_addr;
322 u8 *radius_das_shared_secret;
323 size_t radius_das_shared_secret_len;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700324
325 struct hostapd_ssid ssid;
326
327 char *eap_req_id_text; /* optional displayable message sent with
328 * EAP Request-Identity */
329 size_t eap_req_id_text_len;
330 int eapol_key_index_workaround;
331
Hai Shalomfdcde762020-04-02 11:19:20 -0700332#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700333 size_t default_wep_key_len;
334 int individual_wep_key_len;
335 int wep_rekeying_period;
336 int broadcast_key_idx_min, broadcast_key_idx_max;
Hai Shalomfdcde762020-04-02 11:19:20 -0700337#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700338 int eap_reauth_period;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800339 int erp_send_reauth_start;
340 char *erp_domain;
Sunil Ravia04bd252022-05-02 22:54:18 -0700341#ifdef CONFIG_TESTING_OPTIONS
342 bool eap_skip_prot_success;
343#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700344
Sunil Ravia04bd252022-05-02 22:54:18 -0700345 enum macaddr_acl macaddr_acl;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700346 struct mac_acl_entry *accept_mac;
347 int num_accept_mac;
348 struct mac_acl_entry *deny_mac;
349 int num_deny_mac;
350 int wds_sta;
351 int isolate;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700352 int start_disabled;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700353
354 int auth_algs; /* bitfield of allowed IEEE 802.11 authentication
355 * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
356
357 int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
Hai Shalomfdcde762020-04-02 11:19:20 -0700358 int extended_key_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700359 int wpa_key_mgmt;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700360 enum mfp_options ieee80211w;
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700361 int group_mgmt_cipher;
Hai Shalomfdcde762020-04-02 11:19:20 -0700362 int beacon_prot;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700363 /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
364 unsigned int assoc_sa_query_max_timeout;
365 /* dot11AssociationSAQueryRetryTimeout (in TUs) */
366 int assoc_sa_query_retry_timeout;
Hai Shalom74f70d42019-02-11 14:42:39 -0800367#ifdef CONFIG_OCV
368 int ocv; /* Operating Channel Validation */
369#endif /* CONFIG_OCV */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800370 enum {
371 PSK_RADIUS_IGNORED = 0,
372 PSK_RADIUS_ACCEPTED = 1,
Sunil Ravia04bd252022-05-02 22:54:18 -0700373 PSK_RADIUS_REQUIRED = 2,
374 PSK_RADIUS_DURING_4WAY_HS = 3,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800375 } wpa_psk_radius;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700376 int wpa_pairwise;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700377 int group_cipher; /* wpa_group value override from configuation */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700378 int wpa_group;
379 int wpa_group_rekey;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700380 int wpa_group_rekey_set;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700381 int wpa_strict_rekey;
382 int wpa_gmk_rekey;
383 int wpa_ptk_rekey;
Hai Shalomfdcde762020-04-02 11:19:20 -0700384 enum ptk0_rekey_handling wpa_deny_ptk0_rekey;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800385 u32 wpa_group_update_count;
386 u32 wpa_pairwise_update_count;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700387 int wpa_disable_eapol_key_retries;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388 int rsn_pairwise;
389 int rsn_preauth;
390 char *rsn_preauth_interfaces;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700391
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800392#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700393 /* IEEE 802.11r - Fast BSS Transition */
394 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
395 u8 r1_key_holder[FT_R1KH_ID_LEN];
Roshan Pius3a1667e2018-07-03 15:17:14 -0700396 u32 r0_key_lifetime; /* PMK-R0 lifetime seconds */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700397 int rkh_pos_timeout;
398 int rkh_neg_timeout;
399 int rkh_pull_timeout; /* ms */
400 int rkh_pull_retries;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700401 u32 reassociation_deadline;
402 struct ft_remote_r0kh *r0kh_list;
403 struct ft_remote_r1kh *r1kh_list;
404 int pmk_r1_push;
405 int ft_over_ds;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800406 int ft_psk_generate_local;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700407 int r1_max_key_lifetime;
Sunil Ravib0ac25f2024-07-12 01:42:03 +0000408 char *rxkh_file;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800409#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700410
411 char *ctrl_interface; /* directory for UNIX domain sockets */
412#ifndef CONFIG_NATIVE_WINDOWS
413 gid_t ctrl_interface_gid;
414#endif /* CONFIG_NATIVE_WINDOWS */
415 int ctrl_interface_gid_set;
416
417 char *ca_cert;
418 char *server_cert;
Hai Shalom81f62d82019-07-22 12:10:00 -0700419 char *server_cert2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700420 char *private_key;
Hai Shalom81f62d82019-07-22 12:10:00 -0700421 char *private_key2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700422 char *private_key_passwd;
Hai Shalom81f62d82019-07-22 12:10:00 -0700423 char *private_key_passwd2;
Hai Shalom021b0b52019-04-10 11:17:58 -0700424 char *check_cert_subject;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700425 int check_crl;
Hai Shalom74f70d42019-02-11 14:42:39 -0800426 int check_crl_strict;
427 unsigned int crl_reload_interval;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800428 unsigned int tls_session_lifetime;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700429 unsigned int tls_flags;
Hai Shalomc3565922019-10-28 11:58:20 -0700430 unsigned int max_auth_rounds;
431 unsigned int max_auth_rounds_short;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700432 char *ocsp_stapling_response;
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800433 char *ocsp_stapling_response_multi;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700434 char *dh_file;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800435 char *openssl_ciphers;
Hai Shalom74f70d42019-02-11 14:42:39 -0800436 char *openssl_ecdh_curves;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700437 u8 *pac_opaque_encr_key;
438 u8 *eap_fast_a_id;
439 size_t eap_fast_a_id_len;
440 char *eap_fast_a_id_info;
441 int eap_fast_prov;
442 int pac_key_lifetime;
443 int pac_key_refresh_time;
Hai Shalom81f62d82019-07-22 12:10:00 -0700444 int eap_teap_auth;
445 int eap_teap_pac_no_inner;
Hai Shalomc3565922019-10-28 11:58:20 -0700446 int eap_teap_separate_result;
447 int eap_teap_id;
Sunil Ravi77d572f2023-01-17 23:58:31 +0000448 int eap_teap_method_sequence;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700449 int eap_sim_aka_result_ind;
Hai Shalomc3565922019-10-28 11:58:20 -0700450 int eap_sim_id;
Sunil Ravia04bd252022-05-02 22:54:18 -0700451 char *imsi_privacy_key;
Sunil Ravi2a14cf12023-11-21 00:54:38 +0000452 int eap_sim_aka_fast_reauth_limit;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700453 int tnc;
454 int fragment_size;
455 u16 pwd_group;
456
457 char *radius_server_clients;
458 int radius_server_auth_port;
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800459 int radius_server_acct_port;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700460 int radius_server_ipv6;
461
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700462 int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
463 * address instead of individual address
464 * (for driver_wired.c).
465 */
466
467 int ap_max_inactivity;
468 int ignore_broadcast_ssid;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800469 int no_probe_resp_if_max_sta;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700470
471 int wmm_enabled;
472 int wmm_uapsd;
473
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700474 struct hostapd_vlan *vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700475
476 macaddr bssid;
477
478 /*
479 * Maximum listen interval that STAs can use when associating with this
480 * BSS. If a STA tries to use larger value, the association will be
481 * denied with status code 51.
482 */
483 u16 max_listen_interval;
484
Dmitry Shmidtc55524a2011-07-07 11:18:38 -0700485 int disable_pmksa_caching;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700486 int okc; /* Opportunistic Key Caching */
487
488 int wps_state;
489#ifdef CONFIG_WPS
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700490 int wps_independent;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700491 int ap_setup_locked;
492 u8 uuid[16];
493 char *wps_pin_requests;
494 char *device_name;
495 char *manufacturer;
496 char *model_name;
497 char *model_number;
498 char *serial_number;
499 u8 device_type[WPS_DEV_TYPE_LEN];
500 char *config_methods;
501 u8 os_version[4];
502 char *ap_pin;
503 int skip_cred_build;
504 u8 *extra_cred;
505 size_t extra_cred_len;
506 int wps_cred_processing;
Hai Shalom021b0b52019-04-10 11:17:58 -0700507 int wps_cred_add_sae;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700508 int force_per_enrollee_psk;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700509 u8 *ap_settings;
510 size_t ap_settings_len;
Hai Shalom021b0b52019-04-10 11:17:58 -0700511 struct hostapd_ssid multi_ap_backhaul_ssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700512 char *upnp_iface;
513 char *friendly_name;
514 char *manufacturer_url;
515 char *model_description;
516 char *model_url;
517 char *upc;
518 struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
Hai Shalomfdcde762020-04-02 11:19:20 -0700519 struct wpabuf *wps_application_ext;
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800520 int wps_nfc_pw_from_config;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700521 int wps_nfc_dev_pw_id;
522 struct wpabuf *wps_nfc_dh_pubkey;
523 struct wpabuf *wps_nfc_dh_privkey;
524 struct wpabuf *wps_nfc_dev_pw;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700525#endif /* CONFIG_WPS */
Jouni Malinen87fd2792011-05-16 18:35:42 +0300526 int pbc_in_m1;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700527 char *server_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700528
529#define P2P_ENABLED BIT(0)
530#define P2P_GROUP_OWNER BIT(1)
531#define P2P_GROUP_FORMATION BIT(2)
532#define P2P_MANAGE BIT(3)
533#define P2P_ALLOW_CROSS_CONNECTION BIT(4)
534 int p2p;
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800535#ifdef CONFIG_P2P
536 u8 ip_addr_go[4];
537 u8 ip_addr_mask[4];
538 u8 ip_addr_start[4];
539 u8 ip_addr_end[4];
540#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700541
542 int disassoc_low_ack;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800543 int skip_inactivity_poll;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700544
545#define TDLS_PROHIBIT BIT(0)
546#define TDLS_PROHIBIT_CHAN_SWITCH BIT(1)
547 int tdls;
Hai Shalom60840252021-02-19 19:02:11 -0800548 bool disable_11n;
549 bool disable_11ac;
550 bool disable_11ax;
Sunil Ravia04bd252022-05-02 22:54:18 -0700551 bool disable_11be;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800552
553 /* IEEE 802.11v */
554 int time_advertisement;
555 char *time_zone;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800556 int wnm_sleep_mode;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700557 int wnm_sleep_mode_no_keys;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800558 int bss_transition;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800559
560 /* IEEE 802.11u - Interworking */
561 int interworking;
562 int access_network_type;
563 int internet;
564 int asra;
565 int esr;
566 int uesa;
567 int venue_info_set;
568 u8 venue_group;
569 u8 venue_type;
570 u8 hessid[ETH_ALEN];
571
572 /* IEEE 802.11u - Roaming Consortium list */
573 unsigned int roaming_consortium_count;
574 struct hostapd_roaming_consortium *roaming_consortium;
575
Dmitry Shmidt04949592012-07-19 12:16:46 -0700576 /* IEEE 802.11u - Venue Name duples */
577 unsigned int venue_name_count;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700578 struct hostapd_lang_string *venue_name;
579
Roshan Pius3a1667e2018-07-03 15:17:14 -0700580 /* Venue URL duples */
581 unsigned int venue_url_count;
582 struct hostapd_venue_url *venue_url;
583
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700584 /* IEEE 802.11u - Network Authentication Type */
585 u8 *network_auth_type;
586 size_t network_auth_type_len;
587
588 /* IEEE 802.11u - IP Address Type Availability */
589 u8 ipaddr_type_availability;
590 u8 ipaddr_type_configured;
591
592 /* IEEE 802.11u - 3GPP Cellular Network */
593 u8 *anqp_3gpp_cell_net;
594 size_t anqp_3gpp_cell_net_len;
595
596 /* IEEE 802.11u - Domain Name */
597 u8 *domain_name;
598 size_t domain_name_len;
599
600 unsigned int nai_realm_count;
601 struct hostapd_nai_realm_data *nai_realm_data;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700602
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800603 struct dl_list anqp_elem; /* list of struct anqp_element */
604
Dmitry Shmidt04949592012-07-19 12:16:46 -0700605 u16 gas_comeback_delay;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800606 size_t gas_frag_limit;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700607 int gas_address3;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700608
Dmitry Shmidt051af732013-10-22 13:52:46 -0700609 u8 qos_map_set[16 + 2 * 21];
610 unsigned int qos_map_set_len;
611
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800612 int osen;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800613 int proxy_arp;
Dmitry Shmidt1d755d02015-04-28 10:34:29 -0700614 int na_mcast_to_ucast;
Hai Shalom81f62d82019-07-22 12:10:00 -0700615
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700616#ifdef CONFIG_HS20
617 int hs20;
Hai Shalom74f70d42019-02-11 14:42:39 -0800618 int hs20_release;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700619 int disable_dgaf;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800620 u16 anqp_domain_id;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700621 unsigned int hs20_oper_friendly_name_count;
622 struct hostapd_lang_string *hs20_oper_friendly_name;
623 u8 *hs20_wan_metrics;
624 u8 *hs20_connection_capability;
625 size_t hs20_connection_capability_len;
626 u8 *hs20_operating_class;
627 u8 hs20_operating_class_len;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800628 struct hs20_icon {
629 u16 width;
630 u16 height;
631 char language[3];
632 char type[256];
633 char name[256];
634 char file[256];
635 } *hs20_icons;
636 size_t hs20_icons_count;
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700637 u8 osu_ssid[SSID_MAX_LEN];
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800638 size_t osu_ssid_len;
639 struct hs20_osu_provider {
640 unsigned int friendly_name_count;
641 struct hostapd_lang_string *friendly_name;
642 char *server_uri;
643 int *method_list;
644 char **icons;
645 size_t icons_count;
646 char *osu_nai;
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800647 char *osu_nai2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800648 unsigned int service_desc_count;
649 struct hostapd_lang_string *service_desc;
650 } *hs20_osu_providers, *last_osu;
651 size_t hs20_osu_providers_count;
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800652 size_t hs20_osu_providers_nai_count;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700653 char **hs20_operator_icon;
654 size_t hs20_operator_icon_count;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800655 unsigned int hs20_deauth_req_timeout;
656 char *subscr_remediation_url;
657 u8 subscr_remediation_method;
Hai Shalom74f70d42019-02-11 14:42:39 -0800658 char *hs20_sim_provisioning_url;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700659 char *t_c_filename;
660 u32 t_c_timestamp;
661 char *t_c_server_url;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700662#endif /* CONFIG_HS20 */
663
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800664 u8 wps_rf_bands; /* RF bands for WPS (WPS_RF_*) */
665
666#ifdef CONFIG_RADIUS_TEST
667 char *dump_msk_file;
668#endif /* CONFIG_RADIUS_TEST */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700669
670 struct wpabuf *vendor_elements;
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700671 struct wpabuf *assocresp_elements;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800672
Hai Shaloma20dcd72022-02-04 13:43:00 -0800673 unsigned int anti_clogging_threshold;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700674 unsigned int sae_sync;
675 int sae_require_mfp;
Hai Shalomc3565922019-10-28 11:58:20 -0700676 int sae_confirm_immediate;
Sunil Ravi77d572f2023-01-17 23:58:31 +0000677 enum sae_pwe sae_pwe;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800678 int *sae_groups;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700679 struct sae_password_entry *sae_passwords;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700680
Dmitry Shmidt0207e232014-09-03 14:58:37 -0700681 char *wowlan_triggers; /* Wake-on-WLAN triggers */
682
Dmitry Shmidt051af732013-10-22 13:52:46 -0700683#ifdef CONFIG_TESTING_OPTIONS
684 u8 bss_load_test[5];
685 u8 bss_load_test_set;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800686 struct wpabuf *own_ie_override;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700687 int sae_reflection_attack;
Hai Shalom899fcc72020-10-19 14:38:18 -0700688 int sae_commit_status;
689 int sae_pk_omit;
690 int sae_pk_password_check_skip;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700691 struct wpabuf *sae_commit_override;
Hai Shalomfdcde762020-04-02 11:19:20 -0700692 struct wpabuf *rsne_override_eapol;
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -0800693 struct wpabuf *rsnxe_override_eapol;
Hai Shalomfdcde762020-04-02 11:19:20 -0700694 struct wpabuf *rsne_override_ft;
695 struct wpabuf *rsnxe_override_ft;
696 struct wpabuf *gtk_rsc_override;
697 struct wpabuf *igtk_rsc_override;
698 int no_beacon_rsnxe;
699 int skip_prune_assoc;
Hai Shalomb755a2a2020-04-23 21:49:02 -0700700 int ft_rsnxe_used;
Hai Shalom899fcc72020-10-19 14:38:18 -0700701 unsigned int oci_freq_override_eapol_m3;
702 unsigned int oci_freq_override_eapol_g1;
703 unsigned int oci_freq_override_saquery_req;
704 unsigned int oci_freq_override_saquery_resp;
705 unsigned int oci_freq_override_ft_assoc;
706 unsigned int oci_freq_override_fils_assoc;
707 unsigned int oci_freq_override_wnm_sleep;
Sunil Ravib0ac25f2024-07-12 01:42:03 +0000708 struct wpabuf *eapol_m1_elements;
709 struct wpabuf *eapol_m3_elements;
710 bool eapol_m3_no_encrypt;
711 int test_assoc_comeback_type;
712
713#ifdef CONFIG_IEEE80211BE
714 u16 eht_oper_puncturing_override;
715#endif /* CONFIG_IEEE80211BE */
Dmitry Shmidt051af732013-10-22 13:52:46 -0700716#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800717
718#define MESH_ENABLED BIT(0)
719 int mesh;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800720 int mesh_fwding;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800721
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700722 u8 radio_measurements[RRM_CAPABILITIES_IE_LEN];
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800723
724 int vendor_vht;
Dmitry Shmidt7d175302016-09-06 13:11:34 -0700725 int use_sta_nsts;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800726
727 char *no_probe_resp_if_seen_on;
728 char *no_auth_if_seen_on;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800729
730 int pbss;
731
732#ifdef CONFIG_MBO
733 int mbo_enabled;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700734 /**
735 * oce - Enable OCE in AP and/or STA-CFON mode
736 * - BIT(0) is Reserved
737 * - Set BIT(1) to enable OCE in STA-CFON mode
738 * - Set BIT(2) to enable OCE in AP mode
739 */
740 unsigned int oce;
741 int mbo_cell_data_conn_pref;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800742#endif /* CONFIG_MBO */
Dmitry Shmidt7d175302016-09-06 13:11:34 -0700743
744 int ftm_responder;
745 int ftm_initiator;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800746
747#ifdef CONFIG_FILS
748 u8 fils_cache_id[FILS_CACHE_ID_LEN];
749 int fils_cache_id_set;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800750 struct dl_list fils_realms; /* list of struct fils_realm */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700751 int fils_dh_group;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800752 struct hostapd_ip_addr dhcp_server;
753 int dhcp_rapid_commit_proxy;
754 unsigned int fils_hlp_wait_time;
755 u16 dhcp_server_port;
756 u16 dhcp_relay_port;
Hai Shalom60840252021-02-19 19:02:11 -0800757 u32 fils_discovery_min_int;
758 u32 fils_discovery_max_int;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800759#endif /* CONFIG_FILS */
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800760
761 int multicast_to_unicast;
Sunil Ravi036cec52023-03-29 11:35:17 -0700762 int bridge_multicast_to_unicast;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700763
764 int broadcast_deauth;
765
Hai Shalom60840252021-02-19 19:02:11 -0800766 int notify_mgmt_frames;
767
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700768#ifdef CONFIG_DPP
Hai Shalomc3565922019-10-28 11:58:20 -0700769 char *dpp_name;
770 char *dpp_mud_url;
Sunil Ravi89eba102022-09-13 21:04:37 -0700771 char *dpp_extra_conf_req_name;
772 char *dpp_extra_conf_req_value;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700773 char *dpp_connector;
774 struct wpabuf *dpp_netaccesskey;
775 unsigned int dpp_netaccesskey_expiry;
776 struct wpabuf *dpp_csign;
Hai Shalom81f62d82019-07-22 12:10:00 -0700777#ifdef CONFIG_DPP2
778 struct dpp_controller_conf *dpp_controller;
Sunil Ravi89eba102022-09-13 21:04:37 -0700779 int dpp_relay_port;
Hai Shalomfdcde762020-04-02 11:19:20 -0700780 int dpp_configurator_connectivity;
781 int dpp_pfs;
Hai Shalom81f62d82019-07-22 12:10:00 -0700782#endif /* CONFIG_DPP2 */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700783#endif /* CONFIG_DPP */
784
785#ifdef CONFIG_OWE
786 macaddr owe_transition_bssid;
787 u8 owe_transition_ssid[SSID_MAX_LEN];
788 size_t owe_transition_ssid_len;
789 char owe_transition_ifname[IFNAMSIZ + 1];
790 int *owe_groups;
Hai Shalomfdcde762020-04-02 11:19:20 -0700791 int owe_ptk_workaround;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700792#endif /* CONFIG_OWE */
Hai Shalom39ba6fc2019-01-22 12:40:38 -0800793
794 int coloc_intf_reporting;
Hai Shalom74f70d42019-02-11 14:42:39 -0800795
796 u8 send_probe_response;
797
Hai Shalomfdcde762020-04-02 11:19:20 -0700798 u8 transition_disable;
799
Hai Shalom74f70d42019-02-11 14:42:39 -0800800#define BACKHAUL_BSS 1
801#define FRONTHAUL_BSS 2
802 int multi_ap; /* bitmap of BACKHAUL_BSS, FRONTHAUL_BSS */
Hai Shalom81f62d82019-07-22 12:10:00 -0700803
804#ifdef CONFIG_AIRTIME_POLICY
805 unsigned int airtime_weight;
806 int airtime_limit;
807 struct airtime_sta_weight *airtime_weight_list;
808#endif /* CONFIG_AIRTIME_POLICY */
809
810#ifdef CONFIG_MACSEC
811 /**
812 * macsec_policy - Determines the policy for MACsec secure session
813 *
814 * 0: MACsec not in use (default)
815 * 1: MACsec enabled - Should secure, accept key server's advice to
816 * determine whether to use a secure session or not.
817 */
818 int macsec_policy;
819
820 /**
821 * macsec_integ_only - Determines how MACsec are transmitted
822 *
823 * This setting applies only when MACsec is in use, i.e.,
824 * - macsec_policy is enabled
825 * - the key server has decided to enable MACsec
826 *
827 * 0: Encrypt traffic (default)
828 * 1: Integrity only
829 */
830 int macsec_integ_only;
831
832 /**
833 * macsec_replay_protect - Enable MACsec replay protection
834 *
835 * This setting applies only when MACsec is in use, i.e.,
836 * - macsec_policy is enabled
837 * - the key server has decided to enable MACsec
838 *
839 * 0: Replay protection disabled (default)
840 * 1: Replay protection enabled
841 */
842 int macsec_replay_protect;
843
844 /**
845 * macsec_replay_window - MACsec replay protection window
846 *
847 * A window in which replay is tolerated, to allow receipt of frames
848 * that have been misordered by the network.
849 *
850 * This setting applies only when MACsec replay protection active, i.e.,
851 * - macsec_replay_protect is enabled
852 * - the key server has decided to enable MACsec
853 *
854 * 0: No replay window, strict check (default)
855 * 1..2^32-1: number of packets that could be misordered
856 */
857 u32 macsec_replay_window;
858
859 /**
Sunil Ravi036cec52023-03-29 11:35:17 -0700860 * macsec_offload - Enable MACsec offload
861 *
862 * This setting applies only when MACsec is in use, i.e.,
863 * - macsec_policy is enabled
864 * - the key server has decided to enable MACsec
865 *
866 * 0 = MACSEC_OFFLOAD_OFF (default)
867 * 1 = MACSEC_OFFLOAD_PHY
868 * 2 = MACSEC_OFFLOAD_MAC
869 */
870 int macsec_offload;
871
872 /**
Hai Shalom81f62d82019-07-22 12:10:00 -0700873 * macsec_port - MACsec port (in SCI)
874 *
875 * Port component of the SCI.
876 *
877 * Range: 1-65534 (default: 1)
878 */
879 int macsec_port;
880
881 /**
882 * mka_priority - Priority of MKA Actor
883 *
884 * Range: 0-255 (default: 255)
885 */
886 int mka_priority;
887
888 /**
Sunil Ravia04bd252022-05-02 22:54:18 -0700889 * macsec_csindex - Cipher suite index for MACsec
890 *
891 * Range: 0-1 (default: 0)
892 */
893 int macsec_csindex;
894
895 /**
Hai Shalom81f62d82019-07-22 12:10:00 -0700896 * mka_ckn - MKA pre-shared CKN
897 */
898#define MACSEC_CKN_MAX_LEN 32
899 size_t mka_ckn_len;
900 u8 mka_ckn[MACSEC_CKN_MAX_LEN];
901
902 /**
903 * mka_cak - MKA pre-shared CAK
904 */
905#define MACSEC_CAK_MAX_LEN 32
906 size_t mka_cak_len;
907 u8 mka_cak[MACSEC_CAK_MAX_LEN];
908
909#define MKA_PSK_SET_CKN BIT(0)
910#define MKA_PSK_SET_CAK BIT(1)
911#define MKA_PSK_SET (MKA_PSK_SET_CKN | MKA_PSK_SET_CAK)
912 /**
913 * mka_psk_set - Whether mka_ckn and mka_cak are set
914 */
915 u8 mka_psk_set;
916#endif /* CONFIG_MACSEC */
Hai Shalom60840252021-02-19 19:02:11 -0800917
918#ifdef CONFIG_PASN
Sunil Ravi640215c2023-06-28 23:08:09 +0000919 /* Whether to allow PASN-UNAUTH */
920 int pasn_noauth;
921
Hai Shalom60840252021-02-19 19:02:11 -0800922#ifdef CONFIG_TESTING_OPTIONS
923 /*
924 * Normally, KDK should be derived if and only if both sides support
925 * secure LTF. Allow forcing KDK derivation for testing purposes.
926 */
927 int force_kdk_derivation;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800928
929 /* If set, corrupt the MIC in the 2nd Authentication frame of PASN */
930 int pasn_corrupt_mic;
Hai Shalom60840252021-02-19 19:02:11 -0800931#endif /* CONFIG_TESTING_OPTIONS */
932
933 int *pasn_groups;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800934
935 /*
936 * The time in TUs after which the non-AP STA is requested to retry the
937 * PASN authentication in case there are too many parallel operations.
938 */
939 u16 pasn_comeback_after;
Hai Shalom60840252021-02-19 19:02:11 -0800940#endif /* CONFIG_PASN */
941
942 unsigned int unsol_bcast_probe_resp_interval;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800943
944 u8 ext_capa_mask[EXT_CAPA_MAX_LEN];
945 u8 ext_capa[EXT_CAPA_MAX_LEN];
946
947 u8 rnr;
Sunil Ravi77d572f2023-01-17 23:58:31 +0000948 char *config_id;
949 bool xrates_supported;
Sunil Ravi2a14cf12023-11-21 00:54:38 +0000950
951#ifdef CONFIG_IEEE80211BE
952 /* The AP is part of an AP MLD */
953 u8 mld_ap;
954
955 /* The MLD ID to which the AP MLD is affiliated with */
956 u8 mld_id;
957
958 /* The AP's MLD MAC address within the AP MLD */
959 u8 mld_addr[ETH_ALEN];
Sunil Ravib0ac25f2024-07-12 01:42:03 +0000960
961#ifdef CONFIG_TESTING_OPTIONS
962 /*
963 * If set indicate the AP as disabled in the RNR element included in the
964 * other APs in the AP MLD.
965 */
966 bool mld_indicate_disabled;
967#endif /* CONFIG_TESTING_OPTIONS */
Sunil Ravi2a14cf12023-11-21 00:54:38 +0000968#endif /* CONFIG_IEEE80211BE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700969};
970
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800971/**
972 * struct he_phy_capabilities_info - HE PHY capabilities
973 */
974struct he_phy_capabilities_info {
Hai Shalome21d4e82020-04-29 16:34:06 -0700975 bool he_su_beamformer;
976 bool he_su_beamformee;
977 bool he_mu_beamformer;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800978};
979
980/**
981 * struct he_operation - HE operation
982 */
983struct he_operation {
984 u8 he_bss_color;
Hai Shalomfdcde762020-04-02 11:19:20 -0700985 u8 he_bss_color_disabled;
986 u8 he_bss_color_partial;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800987 u8 he_default_pe_duration;
988 u8 he_twt_required;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800989 u8 he_twt_responder;
Hai Shalom81f62d82019-07-22 12:10:00 -0700990 u16 he_rts_threshold;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800991 u8 he_er_su_disable;
Hai Shalom81f62d82019-07-22 12:10:00 -0700992 u16 he_basic_mcs_nss_set;
993};
994
995/**
996 * struct spatial_reuse - Spatial reuse
997 */
998struct spatial_reuse {
999 u8 sr_control;
1000 u8 non_srg_obss_pd_max_offset;
1001 u8 srg_obss_pd_min_offset;
1002 u8 srg_obss_pd_max_offset;
Hai Shalom60840252021-02-19 19:02:11 -08001003 u8 srg_bss_color_bitmap[8];
1004 u8 srg_partial_bssid_bitmap[8];
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001005};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001006
1007/**
Sunil Ravia04bd252022-05-02 22:54:18 -07001008 * struct eht_phy_capabilities_info - EHT PHY capabilities
1009 */
1010struct eht_phy_capabilities_info {
1011 bool su_beamformer;
1012 bool su_beamformee;
1013 bool mu_beamformer;
1014};
1015
1016/**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001017 * struct hostapd_config - Per-radio interface configuration
1018 */
1019struct hostapd_config {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001020 struct hostapd_bss_config **bss, *last_bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001021 size_t num_bss;
1022
1023 u16 beacon_int;
1024 int rts_threshold;
1025 int fragm_threshold;
Hai Shalomc3565922019-10-28 11:58:20 -07001026 u8 op_class;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001027 u8 channel;
Hai Shalomc3565922019-10-28 11:58:20 -07001028 int enable_edmg;
1029 u8 edmg_channel;
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07001030 u8 acs;
1031 struct wpa_freq_range_list acs_ch_list;
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -08001032 struct wpa_freq_range_list acs_freq_list;
1033 u8 acs_freq_list_present;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001034 int acs_exclude_dfs;
Hai Shaloma20dcd72022-02-04 13:43:00 -08001035 u8 min_tx_power;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001036 enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
Sunil Ravia04bd252022-05-02 22:54:18 -07001037 bool hw_mode_set;
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -08001038 int acs_exclude_6ghz_non_psc;
Sunil Ravia04bd252022-05-02 22:54:18 -07001039 int enable_background_radar;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001040 enum {
1041 LONG_PREAMBLE = 0,
1042 SHORT_PREAMBLE = 1
1043 } preamble;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001044
1045 int *supported_rates;
1046 int *basic_rates;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08001047 unsigned int beacon_rate;
1048 enum beacon_rate_type rate_type;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001049
1050 const struct wpa_driver_ops *driver;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001051 char *driver_params;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001052
1053 int ap_table_max_size;
1054 int ap_table_expiration_time;
1055
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001056 unsigned int track_sta_max_num;
1057 unsigned int track_sta_max_age;
1058
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001059 char country[3]; /* first two octets: country code as described in
1060 * ISO/IEC 3166-1. Third octet:
1061 * ' ' (ascii 32): all environments
1062 * 'O': Outdoor environemnt only
1063 * 'I': Indoor environment only
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001064 * 'X': Used with noncountry entity ("XXX")
1065 * 0x00..0x31: identifying IEEE 802.11 standard
1066 * Annex E table (0x04 = global table)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001067 */
1068
1069 int ieee80211d;
1070
Dmitry Shmidtea69e842013-05-13 14:52:28 -07001071 int ieee80211h; /* DFS */
1072
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001073 /*
1074 * Local power constraint is an octet encoded as an unsigned integer in
1075 * units of decibels. Invalid value -1 indicates that Power Constraint
1076 * element will not be added.
1077 */
1078 int local_pwr_constraint;
1079
1080 /* Control Spectrum Management bit */
1081 int spectrum_mgmt_required;
1082
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001083 struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES];
1084
1085 /*
1086 * WMM AC parameters, in same order as 802.1D, i.e.
1087 * 0 = BE (best effort)
1088 * 1 = BK (background)
1089 * 2 = VI (video)
1090 * 3 = VO (voice)
1091 */
1092 struct hostapd_wmm_ac_params wmm_ac_params[4];
1093
1094 int ht_op_mode_fixed;
1095 u16 ht_capab;
1096 int ieee80211n;
1097 int secondary_channel;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001098 int no_pri_sec_switch;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001099 int require_ht;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001100 int obss_interval;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001101 u32 vht_capab;
1102 int ieee80211ac;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001103 int require_vht;
Sunil8cd6f4d2022-06-28 18:40:46 +00001104 enum oper_chan_width vht_oper_chwidth;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001105 u8 vht_oper_centr_freq_seg0_idx;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001106 u8 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001107 u8 ht40_plus_minus_allowed;
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001108
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08001109 /* Use driver-generated interface addresses when adding multiple BSSs */
1110 u8 use_driver_iface_addr;
1111
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001112#ifdef CONFIG_FST
1113 struct fst_iface_cfg fst_cfg;
1114#endif /* CONFIG_FST */
1115
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001116#ifdef CONFIG_P2P
1117 u8 p2p_go_ctwindow;
1118#endif /* CONFIG_P2P */
1119
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001120#ifdef CONFIG_TESTING_OPTIONS
1121 double ignore_probe_probability;
1122 double ignore_auth_probability;
1123 double ignore_assoc_probability;
1124 double ignore_reassoc_probability;
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001125 double corrupt_gtk_rekey_mic_probability;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001126 int ecsa_ie_only;
Kai Shie75b0652020-11-24 20:31:29 -08001127 unsigned int skip_send_eapol;
1128 unsigned int enable_eapol_large_timeout;
Sunil Ravi77d572f2023-01-17 23:58:31 +00001129 bool delay_eapol_tx;
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001130#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001131
1132#ifdef CONFIG_ACS
1133 unsigned int acs_num_scans;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001134 struct acs_bias {
1135 int channel;
1136 double bias;
1137 } *acs_chan_bias;
1138 unsigned int num_acs_chan_bias;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001139#endif /* CONFIG_ACS */
Dmitry Shmidt849734c2016-05-27 09:59:01 -07001140
1141 struct wpabuf *lci;
1142 struct wpabuf *civic;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08001143 int stationary_ap;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001144
1145 int ieee80211ax;
1146#ifdef CONFIG_IEEE80211AX
1147 struct he_phy_capabilities_info he_phy_capab;
1148 struct he_operation he_op;
Hai Shalom74f70d42019-02-11 14:42:39 -08001149 struct ieee80211_he_mu_edca_parameter_set he_mu_edca;
Hai Shalom81f62d82019-07-22 12:10:00 -07001150 struct spatial_reuse spr;
Sunil8cd6f4d2022-06-28 18:40:46 +00001151 enum oper_chan_width he_oper_chwidth;
Hai Shalom81f62d82019-07-22 12:10:00 -07001152 u8 he_oper_centr_freq_seg0_idx;
1153 u8 he_oper_centr_freq_seg1_idx;
Hai Shalom60840252021-02-19 19:02:11 -08001154 u8 he_6ghz_max_mpdu;
1155 u8 he_6ghz_max_ampdu_len_exp;
1156 u8 he_6ghz_rx_ant_pat;
1157 u8 he_6ghz_tx_ant_pat;
Sunil Ravia04bd252022-05-02 22:54:18 -07001158 u8 he_6ghz_reg_pwr_type;
Sunil Ravib0ac25f2024-07-12 01:42:03 +00001159
1160 int reg_def_cli_eirp_psd;
1161 int reg_sub_cli_eirp_psd;
1162
1163 /*
1164 * This value should be used when regulatory client EIRP PSD values
1165 * advertised by an AP that is an SP AP or an indoor SP AP are
1166 * insufficient to ensure that regulatory client limits on total EIRP
1167 * are always met for all transmission bandwidths within the bandwidth
1168 * of the AP’s BSS.
1169 */
1170 int reg_def_cli_eirp;
1171
Sunil Ravi77d572f2023-01-17 23:58:31 +00001172 bool require_he;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001173#endif /* CONFIG_IEEE80211AX */
Roshan Pius3a1667e2018-07-03 15:17:14 -07001174
1175 /* VHT enable/disable config from CHAN_SWITCH */
1176#define CH_SWITCH_VHT_ENABLED BIT(0)
1177#define CH_SWITCH_VHT_DISABLED BIT(1)
1178 unsigned int ch_switch_vht_config;
Hai Shalom74f70d42019-02-11 14:42:39 -08001179
Hai Shalom60840252021-02-19 19:02:11 -08001180 /* HE enable/disable config from CHAN_SWITCH */
1181#define CH_SWITCH_HE_ENABLED BIT(0)
1182#define CH_SWITCH_HE_DISABLED BIT(1)
1183 unsigned int ch_switch_he_config;
1184
Hai Shalom74f70d42019-02-11 14:42:39 -08001185 int rssi_reject_assoc_rssi;
1186 int rssi_reject_assoc_timeout;
Hai Shalom60840252021-02-19 19:02:11 -08001187 int rssi_ignore_probe_request;
Hai Shalom81f62d82019-07-22 12:10:00 -07001188
1189#ifdef CONFIG_AIRTIME_POLICY
1190 enum {
1191 AIRTIME_MODE_OFF = 0,
1192 AIRTIME_MODE_STATIC = 1,
1193 AIRTIME_MODE_DYNAMIC = 2,
1194 AIRTIME_MODE_LIMIT = 3,
1195 __AIRTIME_MODE_MAX,
1196 } airtime_mode;
1197 unsigned int airtime_update_interval;
1198#define AIRTIME_MODE_MAX (__AIRTIME_MODE_MAX - 1)
1199#endif /* CONFIG_AIRTIME_POLICY */
Sunil Ravia04bd252022-05-02 22:54:18 -07001200
1201 int ieee80211be;
1202#ifdef CONFIG_IEEE80211BE
Sunil8cd6f4d2022-06-28 18:40:46 +00001203 enum oper_chan_width eht_oper_chwidth;
Sunil Ravia04bd252022-05-02 22:54:18 -07001204 u8 eht_oper_centr_freq_seg0_idx;
1205 struct eht_phy_capabilities_info eht_phy_capab;
Sunil Ravi036cec52023-03-29 11:35:17 -07001206 u16 punct_bitmap; /* a bitmap of disabled 20 MHz channels */
1207 u8 punct_acs_threshold;
Sunil Ravib0ac25f2024-07-12 01:42:03 +00001208 u8 eht_default_pe_duration;
1209 u8 eht_bw320_offset;
Sunil Ravia04bd252022-05-02 22:54:18 -07001210#endif /* CONFIG_IEEE80211BE */
1211
1212 /* EHT enable/disable config from CHAN_SWITCH */
1213#define CH_SWITCH_EHT_ENABLED BIT(0)
1214#define CH_SWITCH_EHT_DISABLED BIT(1)
1215 unsigned int ch_switch_eht_config;
Sunil Ravi77d572f2023-01-17 23:58:31 +00001216
1217 enum mbssid {
1218 MBSSID_DISABLED = 0,
1219 MBSSID_ENABLED = 1,
1220 ENHANCED_MBSSID_ENABLED = 2,
1221 } mbssid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001222};
1223
1224
Sunil8cd6f4d2022-06-28 18:40:46 +00001225static inline enum oper_chan_width
1226hostapd_get_oper_chwidth(struct hostapd_config *conf)
Hai Shalom81f62d82019-07-22 12:10:00 -07001227{
Sunil Ravia04bd252022-05-02 22:54:18 -07001228#ifdef CONFIG_IEEE80211BE
1229 if (conf->ieee80211be)
1230 return conf->eht_oper_chwidth;
1231#endif /* CONFIG_IEEE80211BE */
Hai Shalom81f62d82019-07-22 12:10:00 -07001232#ifdef CONFIG_IEEE80211AX
1233 if (conf->ieee80211ax)
1234 return conf->he_oper_chwidth;
1235#endif /* CONFIG_IEEE80211AX */
1236 return conf->vht_oper_chwidth;
1237}
1238
1239static inline void
Sunil8cd6f4d2022-06-28 18:40:46 +00001240hostapd_set_oper_chwidth(struct hostapd_config *conf,
1241 enum oper_chan_width oper_chwidth)
Hai Shalom81f62d82019-07-22 12:10:00 -07001242{
Sunil Ravia04bd252022-05-02 22:54:18 -07001243#ifdef CONFIG_IEEE80211BE
1244 if (conf->ieee80211be)
1245 conf->eht_oper_chwidth = oper_chwidth;
Sunil8cd6f4d2022-06-28 18:40:46 +00001246 if (oper_chwidth == CONF_OPER_CHWIDTH_320MHZ)
1247 oper_chwidth = CONF_OPER_CHWIDTH_160MHZ;
Sunil Ravia04bd252022-05-02 22:54:18 -07001248#endif /* CONFIG_IEEE80211BE */
Hai Shalom81f62d82019-07-22 12:10:00 -07001249#ifdef CONFIG_IEEE80211AX
1250 if (conf->ieee80211ax)
1251 conf->he_oper_chwidth = oper_chwidth;
1252#endif /* CONFIG_IEEE80211AX */
1253 conf->vht_oper_chwidth = oper_chwidth;
1254}
1255
1256static inline u8
1257hostapd_get_oper_centr_freq_seg0_idx(struct hostapd_config *conf)
1258{
Sunil Ravia04bd252022-05-02 22:54:18 -07001259#ifdef CONFIG_IEEE80211BE
1260 if (conf->ieee80211be)
1261 return conf->eht_oper_centr_freq_seg0_idx;
1262#endif /* CONFIG_IEEE80211BE */
Hai Shalom81f62d82019-07-22 12:10:00 -07001263#ifdef CONFIG_IEEE80211AX
1264 if (conf->ieee80211ax)
1265 return conf->he_oper_centr_freq_seg0_idx;
1266#endif /* CONFIG_IEEE80211AX */
1267 return conf->vht_oper_centr_freq_seg0_idx;
1268}
1269
1270static inline void
1271hostapd_set_oper_centr_freq_seg0_idx(struct hostapd_config *conf,
1272 u8 oper_centr_freq_seg0_idx)
1273{
Sunil Ravia04bd252022-05-02 22:54:18 -07001274#ifdef CONFIG_IEEE80211BE
1275 if (conf->ieee80211be)
1276 conf->eht_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx;
Sunil Ravib0ac25f2024-07-12 01:42:03 +00001277 if (is_6ghz_op_class(conf->op_class) &&
1278 center_idx_to_bw_6ghz(oper_centr_freq_seg0_idx) == 4)
Sunil8cd6f4d2022-06-28 18:40:46 +00001279 oper_centr_freq_seg0_idx +=
1280 conf->channel > oper_centr_freq_seg0_idx ? 16 : -16;
Sunil Ravia04bd252022-05-02 22:54:18 -07001281#endif /* CONFIG_IEEE80211BE */
Hai Shalom81f62d82019-07-22 12:10:00 -07001282#ifdef CONFIG_IEEE80211AX
1283 if (conf->ieee80211ax)
1284 conf->he_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx;
1285#endif /* CONFIG_IEEE80211AX */
1286 conf->vht_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx;
1287}
1288
1289static inline u8
1290hostapd_get_oper_centr_freq_seg1_idx(struct hostapd_config *conf)
1291{
1292#ifdef CONFIG_IEEE80211AX
1293 if (conf->ieee80211ax)
1294 return conf->he_oper_centr_freq_seg1_idx;
1295#endif /* CONFIG_IEEE80211AX */
1296 return conf->vht_oper_centr_freq_seg1_idx;
1297}
1298
1299static inline void
1300hostapd_set_oper_centr_freq_seg1_idx(struct hostapd_config *conf,
1301 u8 oper_centr_freq_seg1_idx)
1302{
1303#ifdef CONFIG_IEEE80211AX
1304 if (conf->ieee80211ax)
1305 conf->he_oper_centr_freq_seg1_idx = oper_centr_freq_seg1_idx;
1306#endif /* CONFIG_IEEE80211AX */
1307 conf->vht_oper_centr_freq_seg1_idx = oper_centr_freq_seg1_idx;
1308}
1309
Sunil Ravib0ac25f2024-07-12 01:42:03 +00001310static inline u8
1311hostapd_get_bw320_offset(struct hostapd_config *conf)
1312{
1313#ifdef CONFIG_IEEE80211BE
1314 if (conf->ieee80211be && is_6ghz_op_class(conf->op_class) &&
1315 hostapd_get_oper_chwidth(conf) == CONF_OPER_CHWIDTH_320MHZ)
1316 return conf->eht_bw320_offset;
1317#endif /* CONFIG_IEEE80211BE */
1318 return 0;
1319}
1320
1321static inline void
1322hostapd_set_and_check_bw320_offset(struct hostapd_config *conf,
1323 u8 bw320_offset)
1324{
1325#ifdef CONFIG_IEEE80211BE
1326 if (conf->ieee80211be && is_6ghz_op_class(conf->op_class) &&
1327 op_class_to_ch_width(conf->op_class) == CONF_OPER_CHWIDTH_320MHZ) {
1328 if (conf->channel) {
1329 /* If the channel is set, then calculate bw320_offset
1330 * by center frequency segment 0.
1331 */
1332 u8 seg0 = hostapd_get_oper_centr_freq_seg0_idx(conf);
1333
1334 conf->eht_bw320_offset = (seg0 - 31) % 64 ? 2 : 1;
1335 } else {
1336 /* If the channel is not set, bw320_offset indicates
1337 * preferred offset of 320 MHz.
1338 */
1339 conf->eht_bw320_offset = bw320_offset;
1340 }
1341 } else {
1342 conf->eht_bw320_offset = 0;
1343 }
1344#endif /* CONFIG_IEEE80211BE */
1345}
1346
Hai Shalom81f62d82019-07-22 12:10:00 -07001347
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001348int hostapd_mac_comp(const void *a, const void *b);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001349struct hostapd_config * hostapd_config_defaults(void);
1350void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
Hai Shalomc3565922019-10-28 11:58:20 -07001351void hostapd_config_free_radius_attr(struct hostapd_radius_attr *attr);
Dmitry Shmidt818ea482014-03-10 13:15:21 -07001352void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
Dmitry Shmidt29333592017-01-09 12:27:11 -08001353void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001354void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
Sunil Ravib0ac25f2024-07-12 01:42:03 +00001355void hostapd_config_clear_rxkhs(struct hostapd_bss_config *conf);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001356void hostapd_config_free_bss(struct hostapd_bss_config *conf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001357void hostapd_config_free(struct hostapd_config *conf);
1358int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001359 const u8 *addr, struct vlan_description *vlan_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001360int hostapd_rate_found(int *list, int rate);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001361const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001362 const u8 *addr, const u8 *p2p_dev_addr,
Hai Shalom021b0b52019-04-10 11:17:58 -07001363 const u8 *prev_psk, int *vlan_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001364int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001365int hostapd_vlan_valid(struct hostapd_vlan *vlan,
1366 struct vlan_description *vlan_desc);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001367const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
1368 int vlan_id);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001369struct hostapd_radius_attr *
1370hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
Hai Shalomc3565922019-10-28 11:58:20 -07001371struct hostapd_radius_attr * hostapd_parse_radius_attr(const char *value);
Dmitry Shmidt344abd32014-01-14 13:17:00 -08001372int hostapd_config_check(struct hostapd_config *conf, int full_config);
Dmitry Shmidt71757432014-06-02 13:50:35 -07001373void hostapd_set_security_params(struct hostapd_bss_config *bss,
1374 int full_config);
Hai Shalom74f70d42019-02-11 14:42:39 -08001375int hostapd_sae_pw_id_in_use(struct hostapd_bss_config *conf);
Hai Shalom899fcc72020-10-19 14:38:18 -07001376bool hostapd_sae_pk_in_use(struct hostapd_bss_config *conf);
1377bool hostapd_sae_pk_exclusively(struct hostapd_bss_config *conf);
Hai Shalomc3565922019-10-28 11:58:20 -07001378int hostapd_setup_sae_pt(struct hostapd_bss_config *conf);
Sunil Ravia04bd252022-05-02 22:54:18 -07001379int hostapd_acl_comp(const void *a, const void *b);
1380int hostapd_add_acl_maclist(struct mac_acl_entry **acl, int *num,
1381 int vlan_id, const u8 *addr);
1382void hostapd_remove_acl_mac(struct mac_acl_entry **acl, int *num,
1383 const u8 *addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001384
1385#endif /* HOSTAPD_CONFIG_H */