blob: 85e63d3d81f8641f3aec2d14a94116e446d14dee [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Initialization and configuration
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003 * Copyright (c) 2002-2014, 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_H
10#define HOSTAPD_H
11
12#include "common/defs.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080013#include "utils/list.h"
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080014#include "ap_config.h"
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080015#include "drivers/driver.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016
Hai Shalom74f70d42019-02-11 14:42:39 -080017#define OCE_STA_CFON_ENABLED(hapd) \
18 ((hapd->conf->oce & OCE_STA_CFON) && \
19 (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_OCE_STA_CFON))
20#define OCE_AP_ENABLED(hapd) \
21 ((hapd->conf->oce & OCE_AP) && \
22 (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_OCE_AP))
23
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024struct wpa_ctrl_dst;
25struct radius_server_data;
26struct upnp_wps_device_sm;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070027struct hostapd_data;
28struct sta_info;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070029struct ieee80211_ht_capabilities;
30struct full_dynamic_vlan;
31enum wps_event;
32union wps_event_data;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080033#ifdef CONFIG_MESH
34struct mesh_conf;
35#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070036
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070037struct hostapd_iface;
38
Dmitry Shmidt04949592012-07-19 12:16:46 -070039struct hapd_interfaces {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070040 int (*reload_config)(struct hostapd_iface *iface);
41 struct hostapd_config * (*config_read_cb)(const char *config_fname);
42 int (*ctrl_iface_init)(struct hostapd_data *hapd);
43 void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
44 int (*for_each_interface)(struct hapd_interfaces *interfaces,
45 int (*cb)(struct hostapd_iface *iface,
46 void *ctx), void *ctx);
47 int (*driver_init)(struct hostapd_iface *iface);
48
Dmitry Shmidt04949592012-07-19 12:16:46 -070049 size_t count;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070050 int global_ctrl_sock;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -080051 struct dl_list global_ctrl_dst;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070052 char *global_iface_path;
53 char *global_iface_name;
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -080054#ifndef CONFIG_NATIVE_WINDOWS
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -070055 gid_t ctrl_iface_group;
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -080056#endif /* CONFIG_NATIVE_WINDOWS */
Dmitry Shmidt04949592012-07-19 12:16:46 -070057 struct hostapd_iface **iface;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -080058
59 size_t terminate_on_error;
Dmitry Shmidta3dc3092015-06-23 11:21:28 -070060#ifndef CONFIG_NO_VLAN
61 struct dynamic_iface *vlan_priv;
62#endif /* CONFIG_NO_VLAN */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070063#ifdef CONFIG_ETH_P_OUI
64 struct dl_list eth_p_oui; /* OUI Extended EtherType handlers */
65#endif /* CONFIG_ETH_P_OUI */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -070066 int eloop_initialized;
Roshan Pius3a1667e2018-07-03 15:17:14 -070067
68#ifdef CONFIG_DPP
69 int dpp_init_done;
70 struct dl_list dpp_bootstrap; /* struct dpp_bootstrap_info */
71 struct dl_list dpp_configurator; /* struct dpp_configurator */
72#endif /* CONFIG_DPP */
Dmitry Shmidt04949592012-07-19 12:16:46 -070073};
74
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -070075enum hostapd_chan_status {
76 HOSTAPD_CHAN_VALID = 0, /* channel is ready */
77 HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */
78 HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */
79};
Dmitry Shmidt04949592012-07-19 12:16:46 -070080
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070081struct hostapd_probereq_cb {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080082 int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -070083 const u8 *ie, size_t ie_len, int ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070084 void *ctx;
85};
86
87#define HOSTAPD_RATE_BASIC 0x00000001
88
89struct hostapd_rate_data {
90 int rate; /* rate in 100 kbps */
91 int flags; /* HOSTAPD_RATE_ flags */
92};
93
94struct hostapd_frame_info {
Roshan Pius3a1667e2018-07-03 15:17:14 -070095 unsigned int freq;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096 u32 channel;
97 u32 datarate;
Dmitry Shmidt04949592012-07-19 12:16:46 -070098 int ssi_signal; /* dBm */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070099};
100
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700101enum wps_status {
102 WPS_STATUS_SUCCESS = 1,
103 WPS_STATUS_FAILURE
104};
105
106enum pbc_status {
107 WPS_PBC_STATUS_DISABLE,
108 WPS_PBC_STATUS_ACTIVE,
109 WPS_PBC_STATUS_TIMEOUT,
110 WPS_PBC_STATUS_OVERLAP
111};
112
113struct wps_stat {
114 enum wps_status status;
115 enum wps_error_indication failure_reason;
116 enum pbc_status pbc_status;
117 u8 peer_addr[ETH_ALEN];
118};
119
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700120struct hostapd_neighbor_entry {
121 struct dl_list list;
122 u8 bssid[ETH_ALEN];
123 struct wpa_ssid_value ssid;
124 struct wpabuf *nr;
125 struct wpabuf *lci;
126 struct wpabuf *civic;
127 /* LCI update time */
128 struct os_time lci_date;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800129 int stationary;
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700130};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700131
132/**
133 * struct hostapd_data - hostapd per-BSS data structure
134 */
135struct hostapd_data {
136 struct hostapd_iface *iface;
137 struct hostapd_config *iconf;
138 struct hostapd_bss_config *conf;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800139 int interface_added; /* virtual interface added for this BSS */
140 unsigned int started:1;
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800141 unsigned int disabled:1;
142 unsigned int reenable_beacon:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700143
144 u8 own_addr[ETH_ALEN];
145
146 int num_sta; /* number of entries in sta_list */
147 struct sta_info *sta_list; /* STA info list head */
148#define STA_HASH_SIZE 256
149#define STA_HASH(sta) (sta[5])
150 struct sta_info *sta_hash[STA_HASH_SIZE];
151
152 /*
153 * Bitfield for indicating which AIDs are allocated. Only AID values
154 * 1-2007 are used and as such, the bit at index 0 corresponds to AID
155 * 1.
156 */
157#define AID_WORDS ((2008 + 31) / 32)
158 u32 sta_aid[AID_WORDS];
159
160 const struct wpa_driver_ops *driver;
161 void *drv_priv;
162
163 void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
164 struct sta_info *sta, int reassoc);
165
166 void *msg_ctx; /* ctx for wpa_msg() calls */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800167 void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700168
169 struct radius_client_data *radius;
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800170 u64 acct_session_id;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700171 struct radius_das_data *radius_das;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700172
173 struct iapp_data *iapp;
174
175 struct hostapd_cached_radius_acl *acl_cache;
176 struct hostapd_acl_query_data *acl_queries;
177
178 struct wpa_authenticator *wpa_auth;
179 struct eapol_authenticator *eapol_auth;
180
181 struct rsn_preauth_interface *preauth_iface;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800182 struct os_reltime michael_mic_failure;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700183 int michael_mic_failures;
184 int tkip_countermeasures;
185
186 int ctrl_sock;
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -0800187 struct dl_list ctrl_dst;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700188
189 void *ssl_ctx;
190 void *eap_sim_db_priv;
191 struct radius_server_data *radius_srv;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800192 struct dl_list erp_keys; /* struct eap_server_erp_key */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700193
194 int parameter_set_count;
195
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800196 /* Time Advertisement */
197 u8 time_update_counter;
198 struct wpabuf *time_adv;
199
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700200#ifdef CONFIG_FULL_DYNAMIC_VLAN
201 struct full_dynamic_vlan *full_dynamic_vlan;
202#endif /* CONFIG_FULL_DYNAMIC_VLAN */
203
204 struct l2_packet_data *l2;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700205
206#ifdef CONFIG_IEEE80211R_AP
207 struct dl_list l2_queue;
208 struct dl_list l2_oui_queue;
209 struct eth_p_oui_ctx *oui_pull;
210 struct eth_p_oui_ctx *oui_resp;
211 struct eth_p_oui_ctx *oui_push;
212 struct eth_p_oui_ctx *oui_sreq;
213 struct eth_p_oui_ctx *oui_sresp;
214#endif /* CONFIG_IEEE80211R_AP */
215
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700216 struct wps_context *wps;
217
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800218 int beacon_set_done;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700219 struct wpabuf *wps_beacon_ie;
220 struct wpabuf *wps_probe_resp_ie;
221#ifdef CONFIG_WPS
222 unsigned int ap_pin_failures;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800223 unsigned int ap_pin_failures_consecutive;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700224 struct upnp_wps_device_sm *wps_upnp;
225 unsigned int ap_pin_lockout_time;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700226
227 struct wps_stat wps_stats;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700228#endif /* CONFIG_WPS */
229
230 struct hostapd_probereq_cb *probereq_cb;
231 size_t num_probereq_cb;
232
233 void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
234 int freq);
235 void *public_action_cb_ctx;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800236 void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
237 int freq);
238 void *public_action_cb2_ctx;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700239
240 int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
241 int freq);
242 void *vendor_action_cb_ctx;
243
244 void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
245 const u8 *uuid_e);
246 void *wps_reg_success_cb_ctx;
247
248 void (*wps_event_cb)(void *ctx, enum wps_event event,
249 union wps_event_data *data);
250 void *wps_event_cb_ctx;
251
252 void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800253 int authorized, const u8 *p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700254 void *sta_authorized_cb_ctx;
255
256 void (*setup_complete_cb)(void *ctx);
257 void *setup_complete_cb_ctx;
258
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700259 void (*new_psk_cb)(void *ctx, const u8 *mac_addr,
260 const u8 *p2p_dev_addr, const u8 *psk,
261 size_t psk_len);
262 void *new_psk_cb_ctx;
263
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700264 /* channel switch parameters */
265 struct hostapd_freq_params cs_freq_params;
266 u8 cs_count;
267 int cs_block_tx;
268 unsigned int cs_c_off_beacon;
269 unsigned int cs_c_off_proberesp;
270 int csa_in_progress;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800271 unsigned int cs_c_off_ecsa_beacon;
272 unsigned int cs_c_off_ecsa_proberesp;
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700273
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700274#ifdef CONFIG_P2P
275 struct p2p_data *p2p;
276 struct p2p_group *p2p_group;
277 struct wpabuf *p2p_beacon_ie;
278 struct wpabuf *p2p_probe_resp_ie;
279
280 /* Number of non-P2P association stations */
281 int num_sta_no_p2p;
282
283 /* Periodic NoA (used only when no non-P2P clients in the group) */
284 int noa_enabled;
285 int noa_start;
286 int noa_duration;
287#endif /* CONFIG_P2P */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800288#ifdef CONFIG_PROXYARP
289 struct l2_packet_data *sock_dhcp;
290 struct l2_packet_data *sock_ndisc;
291#endif /* CONFIG_PROXYARP */
292#ifdef CONFIG_MESH
293 int num_plinks;
294 int max_plinks;
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800295 void (*mesh_sta_free_cb)(struct hostapd_data *hapd,
296 struct sta_info *sta);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800297 struct wpabuf *mesh_pending_auth;
298 struct os_reltime mesh_pending_auth_time;
Dmitry Shmidte4663042016-04-04 10:07:49 -0700299 u8 mesh_required_peer[ETH_ALEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800300#endif /* CONFIG_MESH */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800301
302#ifdef CONFIG_SQLITE
303 struct hostapd_eap_user tmp_eap_user;
304#endif /* CONFIG_SQLITE */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800305
306#ifdef CONFIG_SAE
307 /** Key used for generating SAE anti-clogging tokens */
308 u8 sae_token_key[8];
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800309 struct os_reltime last_sae_token_key_update;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800310 int dot11RSNASAERetransPeriod; /* msec */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800311#endif /* CONFIG_SAE */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800312
313#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800314 unsigned int ext_mgmt_frame_handling:1;
315 unsigned int ext_eapol_frame_io:1;
316
317 struct l2_packet_data *l2_test;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700318
319 enum wpa_alg last_gtk_alg;
320 int last_gtk_key_idx;
321 u8 last_gtk[WPA_GTK_MAX_LEN];
322 size_t last_gtk_len;
323
324#ifdef CONFIG_IEEE80211W
325 enum wpa_alg last_igtk_alg;
326 int last_igtk_key_idx;
327 u8 last_igtk[WPA_IGTK_MAX_LEN];
328 size_t last_igtk_len;
329#endif /* CONFIG_IEEE80211W */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800330#endif /* CONFIG_TESTING_OPTIONS */
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800331
332#ifdef CONFIG_MBO
333 unsigned int mbo_assoc_disallow;
334#endif /* CONFIG_MBO */
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700335
336 struct dl_list nr_db;
337
Dmitry Shmidt29333592017-01-09 12:27:11 -0800338 u8 beacon_req_token;
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700339 u8 lci_req_token;
340 u8 range_req_token;
341 unsigned int lci_req_active:1;
342 unsigned int range_req_active:1;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800343
344 int dhcp_sock; /* UDP socket used with the DHCP server */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700345
346#ifdef CONFIG_DPP
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700347 int dpp_init_done;
348 struct dpp_authentication *dpp_auth;
349 u8 dpp_allowed_roles;
350 int dpp_qr_mutual;
351 int dpp_auth_ok_on_ack;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700352 int dpp_in_response_listen;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700353 struct gas_query_ap *gas;
354 struct dpp_pkex *dpp_pkex;
355 struct dpp_bootstrap_info *dpp_pkex_bi;
356 char *dpp_pkex_code;
357 char *dpp_pkex_identifier;
358 char *dpp_pkex_auth_cmd;
359 char *dpp_configurator_params;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700360 struct os_reltime dpp_last_init;
361 struct os_reltime dpp_init_iter_start;
362 unsigned int dpp_init_max_tries;
363 unsigned int dpp_init_retry_time;
364 unsigned int dpp_resp_wait_time;
365 unsigned int dpp_resp_max_tries;
366 unsigned int dpp_resp_retry_time;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700367#ifdef CONFIG_TESTING_OPTIONS
368 char *dpp_config_obj_override;
369 char *dpp_discovery_override;
370 char *dpp_groups_override;
371 unsigned int dpp_ignore_netaccesskey_mismatch:1;
372#endif /* CONFIG_TESTING_OPTIONS */
373#endif /* CONFIG_DPP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700374};
375
376
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800377struct hostapd_sta_info {
378 struct dl_list list;
379 u8 addr[ETH_ALEN];
380 struct os_reltime last_seen;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800381 int ssi_signal;
Dmitry Shmidtaca489e2016-09-28 15:44:14 -0700382#ifdef CONFIG_TAXONOMY
383 struct wpabuf *probe_ie_taxonomy;
384#endif /* CONFIG_TAXONOMY */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800385};
386
Roshan Piuscc817562017-12-22 14:45:05 -0800387enum hostapd_iface_state {
388 HAPD_IFACE_UNINITIALIZED,
389 HAPD_IFACE_DISABLED,
390 HAPD_IFACE_COUNTRY_UPDATE,
391 HAPD_IFACE_ACS,
392 HAPD_IFACE_HT_SCAN,
393 HAPD_IFACE_DFS,
394 HAPD_IFACE_ENABLED
395};
396
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700397/**
398 * struct hostapd_iface - hostapd per-interface data structure
399 */
400struct hostapd_iface {
401 struct hapd_interfaces *interfaces;
402 void *owner;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700403 char *config_fname;
404 struct hostapd_config *conf;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800405 char phy[16]; /* Name of the PHY (radio) */
406
Roshan Piuscc817562017-12-22 14:45:05 -0800407 enum hostapd_iface_state state;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800408#ifdef CONFIG_MESH
409 struct mesh_conf *mconf;
410#endif /* CONFIG_MESH */
411
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700412 size_t num_bss;
413 struct hostapd_data **bss;
414
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800415 unsigned int wait_channel_update:1;
416 unsigned int cac_started:1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800417#ifdef CONFIG_FST
418 struct fst_iface *fst;
419 const struct wpabuf *fst_ies;
420#endif /* CONFIG_FST */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800421
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800422 /*
423 * When set, indicates that the driver will handle the AP
424 * teardown: delete global keys, station keys, and stations.
425 */
426 unsigned int driver_ap_teardown:1;
427
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800428 /*
429 * When set, indicates that this interface is part of list of
430 * interfaces that need to be started together (synchronously).
431 */
432 unsigned int need_to_start_in_sync:1;
433
434 /* Ready to start but waiting for other interfaces to become ready. */
435 unsigned int ready_to_start_in_sync:1;
436
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700437 int num_ap; /* number of entries in ap_list */
438 struct ap_info *ap_list; /* AP info list head */
439 struct ap_info *ap_hash[STA_HASH_SIZE];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700440
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800441 u64 drv_flags;
442
443 /* SMPS modes supported by the driver (WPA_DRIVER_SMPS_MODE_*) */
444 unsigned int smps_modes;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800445
446 /*
447 * A bitmap of supported protocols for probe response offload. See
448 * struct wpa_driver_capa in driver.h
449 */
450 unsigned int probe_resp_offloads;
451
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700452 /* extended capabilities supported by the driver */
453 const u8 *extended_capa, *extended_capa_mask;
454 unsigned int extended_capa_len;
455
Dmitry Shmidt8bae4132013-06-06 11:25:10 -0700456 unsigned int drv_max_acl_mac_addrs;
457
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700458 struct hostapd_hw_modes *hw_features;
459 int num_hw_features;
460 struct hostapd_hw_modes *current_mode;
461 /* Rates that are currently used (i.e., filtered copy of
462 * current_mode->channels */
463 int num_rates;
464 struct hostapd_rate_data *current_rates;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800465 int *basic_rates;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700466 int freq;
467
468 u16 hw_flags;
469
470 /* Number of associated Non-ERP stations (i.e., stations using 802.11b
471 * in 802.11g BSS) */
472 int num_sta_non_erp;
473
474 /* Number of associated stations that do not support Short Slot Time */
475 int num_sta_no_short_slot_time;
476
477 /* Number of associated stations that do not support Short Preamble */
478 int num_sta_no_short_preamble;
479
480 int olbc; /* Overlapping Legacy BSS Condition */
481
482 /* Number of HT associated stations that do not support greenfield */
483 int num_sta_ht_no_gf;
484
485 /* Number of associated non-HT stations */
486 int num_sta_no_ht;
487
488 /* Number of HT associated stations 20 MHz */
489 int num_sta_ht_20mhz;
490
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700491 /* Number of HT40 intolerant stations */
492 int num_sta_ht40_intolerant;
493
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700494 /* Overlapping BSS information */
495 int olbc_ht;
496
497 u16 ht_op_mode;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700498
499 /* surveying helpers */
500
501 /* number of channels surveyed */
502 unsigned int chans_surveyed;
503
504 /* lowest observed noise floor in dBm */
505 s8 lowest_nf;
506
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800507 /* channel utilization calculation */
508 u64 last_channel_time;
509 u64 last_channel_time_busy;
510 u8 channel_utilization;
511
Roshan Pius3a1667e2018-07-03 15:17:14 -0700512 unsigned int chan_util_samples_sum;
513 unsigned int chan_util_num_sample_periods;
514 unsigned int chan_util_average;
515
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800516 /* eCSA IE will be added only if operating class is specified */
517 u8 cs_oper_class;
518
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700519 unsigned int dfs_cac_ms;
520 struct os_reltime dfs_cac_start;
521
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700522 /* Latched with the actual secondary channel information and will be
523 * used while juggling between HT20 and HT40 modes. */
524 int secondary_ch;
525
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700526#ifdef CONFIG_ACS
527 unsigned int acs_num_completed_scans;
528#endif /* CONFIG_ACS */
529
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700530 void (*scan_cb)(struct hostapd_iface *iface);
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700531 int num_ht40_scan_tries;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800532
533 struct dl_list sta_seen; /* struct hostapd_sta_info */
534 unsigned int num_sta_seen;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700535
536 u8 dfs_domain;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700537};
538
539/* hostapd.c */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700540int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
541 int (*cb)(struct hostapd_iface *iface,
542 void *ctx), void *ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700543int hostapd_reload_config(struct hostapd_iface *iface);
Hai Shalomce48b4a2018-09-05 11:41:35 -0700544void hostapd_reconfig_encryption(struct hostapd_data *hapd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700545struct hostapd_data *
546hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
547 struct hostapd_config *conf,
548 struct hostapd_bss_config *bss);
549int hostapd_setup_interface(struct hostapd_iface *iface);
550int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
551void hostapd_interface_deinit(struct hostapd_iface *iface);
552void hostapd_interface_free(struct hostapd_iface *iface);
Dmitry Shmidtaca489e2016-09-28 15:44:14 -0700553struct hostapd_iface * hostapd_alloc_iface(void);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800554struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
555 const char *config_file);
556struct hostapd_iface *
557hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
558 const char *config_fname, int debug);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700559void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
560 int reassoc);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700561void hostapd_interface_deinit_free(struct hostapd_iface *iface);
562int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
563int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
564int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
565int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
566int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800567void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800568void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s);
569const char * hostapd_state_text(enum hostapd_iface_state s);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800570int hostapd_csa_in_progress(struct hostapd_iface *iface);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700571void hostapd_chan_switch_vht_config(struct hostapd_data *hapd, int vht_enabled);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800572int hostapd_switch_channel(struct hostapd_data *hapd,
573 struct csa_settings *settings);
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700574void
575hostapd_switch_channel_fallback(struct hostapd_iface *iface,
576 const struct hostapd_freq_params *freq_params);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800577void hostapd_cleanup_cs_params(struct hostapd_data *hapd);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800578void hostapd_periodic_iface(struct hostapd_iface *iface);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700579int hostapd_owe_trans_get_info(struct hostapd_data *hapd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700580
581/* utils.c */
582int hostapd_register_probereq_cb(struct hostapd_data *hapd,
583 int (*cb)(void *ctx, const u8 *sa,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800584 const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700585 const u8 *ie, size_t ie_len,
586 int ssi_signal),
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700587 void *ctx);
588void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
589
590/* drv_callbacks.c (TODO: move to somewhere else?) */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700591void hostapd_notify_assoc_fils_finish(struct hostapd_data *hapd,
592 struct sta_info *sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700593int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
594 const u8 *ie, size_t ielen, int reassoc);
595void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
596void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800597void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
598 const u8 *addr, int reason_code);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800599int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700600 const u8 *bssid, const u8 *ie, size_t ie_len,
601 int ssi_signal);
602void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800603 int offset, int width, int cf1, int cf2);
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800604struct survey_results;
605void hostapd_event_get_survey(struct hostapd_iface *iface,
606 struct survey_results *survey_results);
607void hostapd_acs_channel_selected(struct hostapd_data *hapd,
608 struct acs_selected_channels *acs_res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700609
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800610const struct hostapd_eap_user *
611hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
612 size_t identity_len, int phase2);
613
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800614struct hostapd_data * hostapd_get_iface(struct hapd_interfaces *interfaces,
615 const char *ifname);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700616void hostapd_event_sta_opmode_changed(struct hostapd_data *hapd, const u8 *addr,
617 enum smps_mode smps_mode,
618 enum chan_width chan_width, u8 rx_nss);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800619
620#ifdef CONFIG_FST
621void fst_hostapd_fill_iface_obj(struct hostapd_data *hapd,
622 struct fst_wpa_obj *iface_obj);
623#endif /* CONFIG_FST */
624
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700625#endif /* HOSTAPD_H */