blob: 84468de002375d50824c607f14545acf48cb01ba [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Initialization and configuration
Dmitry Shmidtcce06662013-11-04 18:44:24 -08003 * Copyright (c) 2002-2013, 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 Shmidtd5e49232012-12-03 15:08:10 -080013#include "ap_config.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070014
15struct wpa_driver_ops;
16struct wpa_ctrl_dst;
17struct radius_server_data;
18struct upnp_wps_device_sm;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070019struct hostapd_data;
20struct sta_info;
21struct hostap_sta_driver_data;
22struct ieee80211_ht_capabilities;
23struct full_dynamic_vlan;
24enum wps_event;
25union wps_event_data;
26
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070027struct hostapd_iface;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070028struct hostapd_dynamic_iface;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070029
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -080030struct csa_settings;
31
Dmitry Shmidt04949592012-07-19 12:16:46 -070032struct hapd_interfaces {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070033 int (*reload_config)(struct hostapd_iface *iface);
34 struct hostapd_config * (*config_read_cb)(const char *config_fname);
35 int (*ctrl_iface_init)(struct hostapd_data *hapd);
36 void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
37 int (*for_each_interface)(struct hapd_interfaces *interfaces,
38 int (*cb)(struct hostapd_iface *iface,
39 void *ctx), void *ctx);
40 int (*driver_init)(struct hostapd_iface *iface);
41
Dmitry Shmidt04949592012-07-19 12:16:46 -070042 size_t count;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070043 size_t count_dynamic;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070044 int global_ctrl_sock;
45 char *global_iface_path;
46 char *global_iface_name;
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -080047#ifndef CONFIG_NATIVE_WINDOWS
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -070048 gid_t ctrl_iface_group;
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -080049#endif /* CONFIG_NATIVE_WINDOWS */
Dmitry Shmidt04949592012-07-19 12:16:46 -070050 struct hostapd_iface **iface;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070051 struct hostapd_dynamic_iface **dynamic_iface;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -080052
53 size_t terminate_on_error;
Dmitry Shmidt04949592012-07-19 12:16:46 -070054};
55
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -070056enum hostapd_chan_status {
57 HOSTAPD_CHAN_VALID = 0, /* channel is ready */
58 HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */
59 HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */
60};
Dmitry Shmidt04949592012-07-19 12:16:46 -070061
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070062struct hostapd_probereq_cb {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080063 int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -070064 const u8 *ie, size_t ie_len, int ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065 void *ctx;
66};
67
68#define HOSTAPD_RATE_BASIC 0x00000001
69
70struct hostapd_rate_data {
71 int rate; /* rate in 100 kbps */
72 int flags; /* HOSTAPD_RATE_ flags */
73};
74
75struct hostapd_frame_info {
76 u32 channel;
77 u32 datarate;
Dmitry Shmidt04949592012-07-19 12:16:46 -070078 int ssi_signal; /* dBm */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070079};
80
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -070081enum wps_status {
82 WPS_STATUS_SUCCESS = 1,
83 WPS_STATUS_FAILURE
84};
85
86enum pbc_status {
87 WPS_PBC_STATUS_DISABLE,
88 WPS_PBC_STATUS_ACTIVE,
89 WPS_PBC_STATUS_TIMEOUT,
90 WPS_PBC_STATUS_OVERLAP
91};
92
93struct wps_stat {
94 enum wps_status status;
95 enum wps_error_indication failure_reason;
96 enum pbc_status pbc_status;
97 u8 peer_addr[ETH_ALEN];
98};
99
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700100
101/**
102 * struct hostapd_data - hostapd per-BSS data structure
103 */
104struct hostapd_data {
105 struct hostapd_iface *iface;
106 struct hostapd_config *iconf;
107 struct hostapd_bss_config *conf;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800108 int interface_added; /* virtual interface added for this BSS */
109 unsigned int started:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700110
111 u8 own_addr[ETH_ALEN];
112
113 int num_sta; /* number of entries in sta_list */
114 struct sta_info *sta_list; /* STA info list head */
115#define STA_HASH_SIZE 256
116#define STA_HASH(sta) (sta[5])
117 struct sta_info *sta_hash[STA_HASH_SIZE];
118
119 /*
120 * Bitfield for indicating which AIDs are allocated. Only AID values
121 * 1-2007 are used and as such, the bit at index 0 corresponds to AID
122 * 1.
123 */
124#define AID_WORDS ((2008 + 31) / 32)
125 u32 sta_aid[AID_WORDS];
126
127 const struct wpa_driver_ops *driver;
128 void *drv_priv;
129
130 void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
131 struct sta_info *sta, int reassoc);
132
133 void *msg_ctx; /* ctx for wpa_msg() calls */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800134 void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700135
136 struct radius_client_data *radius;
137 u32 acct_session_id_hi, acct_session_id_lo;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700138 struct radius_das_data *radius_das;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700139
140 struct iapp_data *iapp;
141
142 struct hostapd_cached_radius_acl *acl_cache;
143 struct hostapd_acl_query_data *acl_queries;
144
145 struct wpa_authenticator *wpa_auth;
146 struct eapol_authenticator *eapol_auth;
147
148 struct rsn_preauth_interface *preauth_iface;
149 time_t michael_mic_failure;
150 int michael_mic_failures;
151 int tkip_countermeasures;
152
153 int ctrl_sock;
154 struct wpa_ctrl_dst *ctrl_dst;
155
156 void *ssl_ctx;
157 void *eap_sim_db_priv;
158 struct radius_server_data *radius_srv;
159
160 int parameter_set_count;
161
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800162 /* Time Advertisement */
163 u8 time_update_counter;
164 struct wpabuf *time_adv;
165
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700166#ifdef CONFIG_FULL_DYNAMIC_VLAN
167 struct full_dynamic_vlan *full_dynamic_vlan;
168#endif /* CONFIG_FULL_DYNAMIC_VLAN */
169
170 struct l2_packet_data *l2;
171 struct wps_context *wps;
172
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800173 int beacon_set_done;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700174 struct wpabuf *wps_beacon_ie;
175 struct wpabuf *wps_probe_resp_ie;
176#ifdef CONFIG_WPS
177 unsigned int ap_pin_failures;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800178 unsigned int ap_pin_failures_consecutive;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700179 struct upnp_wps_device_sm *wps_upnp;
180 unsigned int ap_pin_lockout_time;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700181
182 struct wps_stat wps_stats;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700183#endif /* CONFIG_WPS */
184
185 struct hostapd_probereq_cb *probereq_cb;
186 size_t num_probereq_cb;
187
188 void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
189 int freq);
190 void *public_action_cb_ctx;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800191 void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
192 int freq);
193 void *public_action_cb2_ctx;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700194
195 int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
196 int freq);
197 void *vendor_action_cb_ctx;
198
199 void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
200 const u8 *uuid_e);
201 void *wps_reg_success_cb_ctx;
202
203 void (*wps_event_cb)(void *ctx, enum wps_event event,
204 union wps_event_data *data);
205 void *wps_event_cb_ctx;
206
207 void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800208 int authorized, const u8 *p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700209 void *sta_authorized_cb_ctx;
210
211 void (*setup_complete_cb)(void *ctx);
212 void *setup_complete_cb_ctx;
213
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700214 void (*new_psk_cb)(void *ctx, const u8 *mac_addr,
215 const u8 *p2p_dev_addr, const u8 *psk,
216 size_t psk_len);
217 void *new_psk_cb_ctx;
218
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700219#ifdef CONFIG_P2P
220 struct p2p_data *p2p;
221 struct p2p_group *p2p_group;
222 struct wpabuf *p2p_beacon_ie;
223 struct wpabuf *p2p_probe_resp_ie;
224
225 /* Number of non-P2P association stations */
226 int num_sta_no_p2p;
227
228 /* Periodic NoA (used only when no non-P2P clients in the group) */
229 int noa_enabled;
230 int noa_start;
231 int noa_duration;
232#endif /* CONFIG_P2P */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700233#ifdef CONFIG_INTERWORKING
234 size_t gas_frag_limit;
235#endif /* CONFIG_INTERWORKING */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800236
237#ifdef CONFIG_SQLITE
238 struct hostapd_eap_user tmp_eap_user;
239#endif /* CONFIG_SQLITE */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800240
241#ifdef CONFIG_SAE
242 /** Key used for generating SAE anti-clogging tokens */
243 u8 sae_token_key[8];
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800244 struct os_reltime last_sae_token_key_update;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800245#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700246};
247
248
249/**
250 * struct hostapd_iface - hostapd per-interface data structure
251 */
252struct hostapd_iface {
253 struct hapd_interfaces *interfaces;
254 void *owner;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700255 char *config_fname;
256 struct hostapd_config *conf;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800257 char phy[16]; /* Name of the PHY (radio) */
258
259 enum hostapd_iface_state {
260 HAPD_IFACE_UNINITIALIZED,
261 HAPD_IFACE_DISABLED,
262 HAPD_IFACE_COUNTRY_UPDATE,
263 HAPD_IFACE_ACS,
264 HAPD_IFACE_HT_SCAN,
265 HAPD_IFACE_DFS,
266 HAPD_IFACE_ENABLED
267 } state;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700268
269 size_t num_bss;
270 struct hostapd_data **bss;
271
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800272 unsigned int wait_channel_update:1;
273 unsigned int cac_started:1;
274
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700275 int num_ap; /* number of entries in ap_list */
276 struct ap_info *ap_list; /* AP info list head */
277 struct ap_info *ap_hash[STA_HASH_SIZE];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700278
279 unsigned int drv_flags;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800280
281 /*
282 * A bitmap of supported protocols for probe response offload. See
283 * struct wpa_driver_capa in driver.h
284 */
285 unsigned int probe_resp_offloads;
286
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700287 /* extended capabilities supported by the driver */
288 const u8 *extended_capa, *extended_capa_mask;
289 unsigned int extended_capa_len;
290
Dmitry Shmidt8bae4132013-06-06 11:25:10 -0700291 unsigned int drv_max_acl_mac_addrs;
292
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700293 struct hostapd_hw_modes *hw_features;
294 int num_hw_features;
295 struct hostapd_hw_modes *current_mode;
296 /* Rates that are currently used (i.e., filtered copy of
297 * current_mode->channels */
298 int num_rates;
299 struct hostapd_rate_data *current_rates;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800300 int *basic_rates;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700301 int freq;
302
303 u16 hw_flags;
304
305 /* Number of associated Non-ERP stations (i.e., stations using 802.11b
306 * in 802.11g BSS) */
307 int num_sta_non_erp;
308
309 /* Number of associated stations that do not support Short Slot Time */
310 int num_sta_no_short_slot_time;
311
312 /* Number of associated stations that do not support Short Preamble */
313 int num_sta_no_short_preamble;
314
315 int olbc; /* Overlapping Legacy BSS Condition */
316
317 /* Number of HT associated stations that do not support greenfield */
318 int num_sta_ht_no_gf;
319
320 /* Number of associated non-HT stations */
321 int num_sta_no_ht;
322
323 /* Number of HT associated stations 20 MHz */
324 int num_sta_ht_20mhz;
325
326 /* Overlapping BSS information */
327 int olbc_ht;
328
329 u16 ht_op_mode;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700330
331 /* surveying helpers */
332
333 /* number of channels surveyed */
334 unsigned int chans_surveyed;
335
336 /* lowest observed noise floor in dBm */
337 s8 lowest_nf;
338
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800339 /* channel switch parameters */
340 int cs_freq;
341 u8 cs_count;
342 int cs_block_tx;
343 unsigned int cs_c_off_beacon;
344 unsigned int cs_c_off_proberesp;
345 int csa_in_progress;
346
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700347#ifdef CONFIG_ACS
348 unsigned int acs_num_completed_scans;
349#endif /* CONFIG_ACS */
350
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700351 void (*scan_cb)(struct hostapd_iface *iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700352};
353
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700354/**
355 * struct hostapd_dynamic_iface - hostapd per dynamically allocated
356 * or added interface data structure
357 */
358struct hostapd_dynamic_iface {
359 char parent[IFNAMSIZ + 1];
360 char iface[IFNAMSIZ + 1];
361 unsigned int usage;
362};
363
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700364/* hostapd.c */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700365int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
366 int (*cb)(struct hostapd_iface *iface,
367 void *ctx), void *ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700368int hostapd_reload_config(struct hostapd_iface *iface);
369struct hostapd_data *
370hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
371 struct hostapd_config *conf,
372 struct hostapd_bss_config *bss);
373int hostapd_setup_interface(struct hostapd_iface *iface);
374int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
375void hostapd_interface_deinit(struct hostapd_iface *iface);
376void hostapd_interface_free(struct hostapd_iface *iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800377struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
378 const char *config_file);
379struct hostapd_iface *
380hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
381 const char *config_fname, int debug);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
383 int reassoc);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700384void hostapd_interface_deinit_free(struct hostapd_iface *iface);
385int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
386int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
387int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
388int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
389int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800390void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800391void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s);
392const char * hostapd_state_text(enum hostapd_iface_state s);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800393int hostapd_switch_channel(struct hostapd_data *hapd,
394 struct csa_settings *settings);
395void hostapd_cleanup_cs_params(struct hostapd_data *hapd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700396
397/* utils.c */
398int hostapd_register_probereq_cb(struct hostapd_data *hapd,
399 int (*cb)(void *ctx, const u8 *sa,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800400 const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700401 const u8 *ie, size_t ie_len,
402 int ssi_signal),
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700403 void *ctx);
404void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
405
406/* drv_callbacks.c (TODO: move to somewhere else?) */
407int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
408 const u8 *ie, size_t ielen, int reassoc);
409void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
410void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800411void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
412 const u8 *addr, int reason_code);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800413int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700414 const u8 *bssid, const u8 *ie, size_t ie_len,
415 int ssi_signal);
416void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800417 int offset, int width, int cf1, int cf2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700418
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800419const struct hostapd_eap_user *
420hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
421 size_t identity_len, int phase2);
422
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700423#endif /* HOSTAPD_H */