blob: 1887531f9364777844d4afe4387a657f9581b448 [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 Shmidt04949592012-07-19 12:16:46 -070030struct hapd_interfaces {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070031 int (*reload_config)(struct hostapd_iface *iface);
32 struct hostapd_config * (*config_read_cb)(const char *config_fname);
33 int (*ctrl_iface_init)(struct hostapd_data *hapd);
34 void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
35 int (*for_each_interface)(struct hapd_interfaces *interfaces,
36 int (*cb)(struct hostapd_iface *iface,
37 void *ctx), void *ctx);
38 int (*driver_init)(struct hostapd_iface *iface);
39
Dmitry Shmidt04949592012-07-19 12:16:46 -070040 size_t count;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070041 size_t count_dynamic;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070042 int global_ctrl_sock;
43 char *global_iface_path;
44 char *global_iface_name;
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -070045 gid_t ctrl_iface_group;
Dmitry Shmidt04949592012-07-19 12:16:46 -070046 struct hostapd_iface **iface;
Dmitry Shmidt34af3062013-07-11 10:46:32 -070047 struct hostapd_dynamic_iface **dynamic_iface;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -080048
49 size_t terminate_on_error;
Dmitry Shmidt04949592012-07-19 12:16:46 -070050};
51
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -070052enum hostapd_chan_status {
53 HOSTAPD_CHAN_VALID = 0, /* channel is ready */
54 HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */
55 HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */
56};
Dmitry Shmidt04949592012-07-19 12:16:46 -070057
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070058struct hostapd_probereq_cb {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080059 int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -070060 const u8 *ie, size_t ie_len, int ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070061 void *ctx;
62};
63
64#define HOSTAPD_RATE_BASIC 0x00000001
65
66struct hostapd_rate_data {
67 int rate; /* rate in 100 kbps */
68 int flags; /* HOSTAPD_RATE_ flags */
69};
70
71struct hostapd_frame_info {
72 u32 channel;
73 u32 datarate;
Dmitry Shmidt04949592012-07-19 12:16:46 -070074 int ssi_signal; /* dBm */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070075};
76
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -070077enum wps_status {
78 WPS_STATUS_SUCCESS = 1,
79 WPS_STATUS_FAILURE
80};
81
82enum pbc_status {
83 WPS_PBC_STATUS_DISABLE,
84 WPS_PBC_STATUS_ACTIVE,
85 WPS_PBC_STATUS_TIMEOUT,
86 WPS_PBC_STATUS_OVERLAP
87};
88
89struct wps_stat {
90 enum wps_status status;
91 enum wps_error_indication failure_reason;
92 enum pbc_status pbc_status;
93 u8 peer_addr[ETH_ALEN];
94};
95
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096
97/**
98 * struct hostapd_data - hostapd per-BSS data structure
99 */
100struct hostapd_data {
101 struct hostapd_iface *iface;
102 struct hostapd_config *iconf;
103 struct hostapd_bss_config *conf;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800104 int interface_added; /* virtual interface added for this BSS */
105 unsigned int started:1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700106
107 u8 own_addr[ETH_ALEN];
108
109 int num_sta; /* number of entries in sta_list */
110 struct sta_info *sta_list; /* STA info list head */
111#define STA_HASH_SIZE 256
112#define STA_HASH(sta) (sta[5])
113 struct sta_info *sta_hash[STA_HASH_SIZE];
114
115 /*
116 * Bitfield for indicating which AIDs are allocated. Only AID values
117 * 1-2007 are used and as such, the bit at index 0 corresponds to AID
118 * 1.
119 */
120#define AID_WORDS ((2008 + 31) / 32)
121 u32 sta_aid[AID_WORDS];
122
123 const struct wpa_driver_ops *driver;
124 void *drv_priv;
125
126 void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
127 struct sta_info *sta, int reassoc);
128
129 void *msg_ctx; /* ctx for wpa_msg() calls */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800130 void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700131
132 struct radius_client_data *radius;
133 u32 acct_session_id_hi, acct_session_id_lo;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700134 struct radius_das_data *radius_das;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700135
136 struct iapp_data *iapp;
137
138 struct hostapd_cached_radius_acl *acl_cache;
139 struct hostapd_acl_query_data *acl_queries;
140
141 struct wpa_authenticator *wpa_auth;
142 struct eapol_authenticator *eapol_auth;
143
144 struct rsn_preauth_interface *preauth_iface;
145 time_t michael_mic_failure;
146 int michael_mic_failures;
147 int tkip_countermeasures;
148
149 int ctrl_sock;
150 struct wpa_ctrl_dst *ctrl_dst;
151
152 void *ssl_ctx;
153 void *eap_sim_db_priv;
154 struct radius_server_data *radius_srv;
155
156 int parameter_set_count;
157
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800158 /* Time Advertisement */
159 u8 time_update_counter;
160 struct wpabuf *time_adv;
161
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700162#ifdef CONFIG_FULL_DYNAMIC_VLAN
163 struct full_dynamic_vlan *full_dynamic_vlan;
164#endif /* CONFIG_FULL_DYNAMIC_VLAN */
165
166 struct l2_packet_data *l2;
167 struct wps_context *wps;
168
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800169 int beacon_set_done;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700170 struct wpabuf *wps_beacon_ie;
171 struct wpabuf *wps_probe_resp_ie;
172#ifdef CONFIG_WPS
173 unsigned int ap_pin_failures;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800174 unsigned int ap_pin_failures_consecutive;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700175 struct upnp_wps_device_sm *wps_upnp;
176 unsigned int ap_pin_lockout_time;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700177
178 struct wps_stat wps_stats;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700179#endif /* CONFIG_WPS */
180
181 struct hostapd_probereq_cb *probereq_cb;
182 size_t num_probereq_cb;
183
184 void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
185 int freq);
186 void *public_action_cb_ctx;
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -0800187 void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
188 int freq);
189 void *public_action_cb2_ctx;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700190
191 int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
192 int freq);
193 void *vendor_action_cb_ctx;
194
195 void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
196 const u8 *uuid_e);
197 void *wps_reg_success_cb_ctx;
198
199 void (*wps_event_cb)(void *ctx, enum wps_event event,
200 union wps_event_data *data);
201 void *wps_event_cb_ctx;
202
203 void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800204 int authorized, const u8 *p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700205 void *sta_authorized_cb_ctx;
206
207 void (*setup_complete_cb)(void *ctx);
208 void *setup_complete_cb_ctx;
209
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700210 void (*new_psk_cb)(void *ctx, const u8 *mac_addr,
211 const u8 *p2p_dev_addr, const u8 *psk,
212 size_t psk_len);
213 void *new_psk_cb_ctx;
214
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700215#ifdef CONFIG_P2P
216 struct p2p_data *p2p;
217 struct p2p_group *p2p_group;
218 struct wpabuf *p2p_beacon_ie;
219 struct wpabuf *p2p_probe_resp_ie;
220
221 /* Number of non-P2P association stations */
222 int num_sta_no_p2p;
223
224 /* Periodic NoA (used only when no non-P2P clients in the group) */
225 int noa_enabled;
226 int noa_start;
227 int noa_duration;
228#endif /* CONFIG_P2P */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700229#ifdef CONFIG_INTERWORKING
230 size_t gas_frag_limit;
231#endif /* CONFIG_INTERWORKING */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800232
233#ifdef CONFIG_SQLITE
234 struct hostapd_eap_user tmp_eap_user;
235#endif /* CONFIG_SQLITE */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800236
237#ifdef CONFIG_SAE
238 /** Key used for generating SAE anti-clogging tokens */
239 u8 sae_token_key[8];
240 os_time_t last_sae_token_key_update;
241#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700242};
243
244
245/**
246 * struct hostapd_iface - hostapd per-interface data structure
247 */
248struct hostapd_iface {
249 struct hapd_interfaces *interfaces;
250 void *owner;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700251 char *config_fname;
252 struct hostapd_config *conf;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800253 char phy[16]; /* Name of the PHY (radio) */
254
255 enum hostapd_iface_state {
256 HAPD_IFACE_UNINITIALIZED,
257 HAPD_IFACE_DISABLED,
258 HAPD_IFACE_COUNTRY_UPDATE,
259 HAPD_IFACE_ACS,
260 HAPD_IFACE_HT_SCAN,
261 HAPD_IFACE_DFS,
262 HAPD_IFACE_ENABLED
263 } state;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700264
265 size_t num_bss;
266 struct hostapd_data **bss;
267
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800268 unsigned int wait_channel_update:1;
269 unsigned int cac_started:1;
270
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700271 int num_ap; /* number of entries in ap_list */
272 struct ap_info *ap_list; /* AP info list head */
273 struct ap_info *ap_hash[STA_HASH_SIZE];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700274
275 unsigned int drv_flags;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800276
277 /*
278 * A bitmap of supported protocols for probe response offload. See
279 * struct wpa_driver_capa in driver.h
280 */
281 unsigned int probe_resp_offloads;
282
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700283 /* extended capabilities supported by the driver */
284 const u8 *extended_capa, *extended_capa_mask;
285 unsigned int extended_capa_len;
286
Dmitry Shmidt8bae4132013-06-06 11:25:10 -0700287 unsigned int drv_max_acl_mac_addrs;
288
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700289 struct hostapd_hw_modes *hw_features;
290 int num_hw_features;
291 struct hostapd_hw_modes *current_mode;
292 /* Rates that are currently used (i.e., filtered copy of
293 * current_mode->channels */
294 int num_rates;
295 struct hostapd_rate_data *current_rates;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800296 int *basic_rates;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700297 int freq;
298
299 u16 hw_flags;
300
301 /* Number of associated Non-ERP stations (i.e., stations using 802.11b
302 * in 802.11g BSS) */
303 int num_sta_non_erp;
304
305 /* Number of associated stations that do not support Short Slot Time */
306 int num_sta_no_short_slot_time;
307
308 /* Number of associated stations that do not support Short Preamble */
309 int num_sta_no_short_preamble;
310
311 int olbc; /* Overlapping Legacy BSS Condition */
312
313 /* Number of HT associated stations that do not support greenfield */
314 int num_sta_ht_no_gf;
315
316 /* Number of associated non-HT stations */
317 int num_sta_no_ht;
318
319 /* Number of HT associated stations 20 MHz */
320 int num_sta_ht_20mhz;
321
322 /* Overlapping BSS information */
323 int olbc_ht;
324
325 u16 ht_op_mode;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700326
327 /* surveying helpers */
328
329 /* number of channels surveyed */
330 unsigned int chans_surveyed;
331
332 /* lowest observed noise floor in dBm */
333 s8 lowest_nf;
334
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700335#ifdef CONFIG_ACS
336 unsigned int acs_num_completed_scans;
337#endif /* CONFIG_ACS */
338
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700339 void (*scan_cb)(struct hostapd_iface *iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700340};
341
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700342/**
343 * struct hostapd_dynamic_iface - hostapd per dynamically allocated
344 * or added interface data structure
345 */
346struct hostapd_dynamic_iface {
347 char parent[IFNAMSIZ + 1];
348 char iface[IFNAMSIZ + 1];
349 unsigned int usage;
350};
351
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700352/* hostapd.c */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700353int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
354 int (*cb)(struct hostapd_iface *iface,
355 void *ctx), void *ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700356int hostapd_reload_config(struct hostapd_iface *iface);
357struct hostapd_data *
358hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
359 struct hostapd_config *conf,
360 struct hostapd_bss_config *bss);
361int hostapd_setup_interface(struct hostapd_iface *iface);
362int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
363void hostapd_interface_deinit(struct hostapd_iface *iface);
364void hostapd_interface_free(struct hostapd_iface *iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800365struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
366 const char *config_file);
367struct hostapd_iface *
368hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
369 const char *config_fname, int debug);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700370void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
371 int reassoc);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700372void hostapd_interface_deinit_free(struct hostapd_iface *iface);
373int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
374int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
375int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
376int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
377int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800378void hostapd_channel_list_updated(struct hostapd_iface *iface);
379void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s);
380const char * hostapd_state_text(enum hostapd_iface_state s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700381
382/* utils.c */
383int hostapd_register_probereq_cb(struct hostapd_data *hapd,
384 int (*cb)(void *ctx, const u8 *sa,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800385 const u8 *da, const u8 *bssid,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700386 const u8 *ie, size_t ie_len,
387 int ssi_signal),
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388 void *ctx);
389void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
390
391/* drv_callbacks.c (TODO: move to somewhere else?) */
392int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
393 const u8 *ie, size_t ielen, int reassoc);
394void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
395void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800396void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
397 const u8 *addr, int reason_code);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800398int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700399 const u8 *bssid, const u8 *ie, size_t ie_len,
400 int ssi_signal);
401void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
402 int offset);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700403
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800404const struct hostapd_eap_user *
405hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
406 size_t identity_len, int phase2);
407
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700408#endif /* HOSTAPD_H */