xref: /netbsd-src/external/bsd/wpa/dist/src/ap/hostapd.h (revision 96fc3e30a7c3f7bba53384bf41dad5f78306fac4)
1 /*
2  * hostapd / Initialization and configuration
3  * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14 
15 #ifndef HOSTAPD_H
16 #define HOSTAPD_H
17 
18 #include "common/defs.h"
19 
20 struct wpa_driver_ops;
21 struct wpa_ctrl_dst;
22 struct radius_server_data;
23 struct upnp_wps_device_sm;
24 struct hapd_interfaces;
25 struct hostapd_data;
26 struct sta_info;
27 struct hostap_sta_driver_data;
28 struct ieee80211_ht_capabilities;
29 struct full_dynamic_vlan;
30 enum wps_event;
31 union wps_event_data;
32 
33 struct hostapd_probereq_cb {
34 	int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
35 		  const u8 *ie, size_t ie_len);
36 	void *ctx;
37 };
38 
39 #define HOSTAPD_RATE_BASIC 0x00000001
40 
41 struct hostapd_rate_data {
42 	int rate; /* rate in 100 kbps */
43 	int flags; /* HOSTAPD_RATE_ flags */
44 };
45 
46 struct hostapd_frame_info {
47 	u32 channel;
48 	u32 datarate;
49 	u32 ssi_signal;
50 };
51 
52 
53 /**
54  * struct hostapd_data - hostapd per-BSS data structure
55  */
56 struct hostapd_data {
57 	struct hostapd_iface *iface;
58 	struct hostapd_config *iconf;
59 	struct hostapd_bss_config *conf;
60 	int interface_added; /* virtual interface added for this BSS */
61 
62 	u8 own_addr[ETH_ALEN];
63 
64 	int num_sta; /* number of entries in sta_list */
65 	struct sta_info *sta_list; /* STA info list head */
66 #define STA_HASH_SIZE 256
67 #define STA_HASH(sta) (sta[5])
68 	struct sta_info *sta_hash[STA_HASH_SIZE];
69 
70 	/*
71 	 * Bitfield for indicating which AIDs are allocated. Only AID values
72 	 * 1-2007 are used and as such, the bit at index 0 corresponds to AID
73 	 * 1.
74 	 */
75 #define AID_WORDS ((2008 + 31) / 32)
76 	u32 sta_aid[AID_WORDS];
77 
78 	const struct wpa_driver_ops *driver;
79 	void *drv_priv;
80 
81 	void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
82 				 struct sta_info *sta, int reassoc);
83 
84 	void *msg_ctx; /* ctx for wpa_msg() calls */
85 	void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
86 
87 	struct radius_client_data *radius;
88 	u32 acct_session_id_hi, acct_session_id_lo;
89 
90 	struct iapp_data *iapp;
91 
92 	struct hostapd_cached_radius_acl *acl_cache;
93 	struct hostapd_acl_query_data *acl_queries;
94 
95 	struct wpa_authenticator *wpa_auth;
96 	struct eapol_authenticator *eapol_auth;
97 
98 	struct rsn_preauth_interface *preauth_iface;
99 	time_t michael_mic_failure;
100 	int michael_mic_failures;
101 	int tkip_countermeasures;
102 
103 	int ctrl_sock;
104 	struct wpa_ctrl_dst *ctrl_dst;
105 
106 	void *ssl_ctx;
107 	void *eap_sim_db_priv;
108 	struct radius_server_data *radius_srv;
109 
110 	int parameter_set_count;
111 
112 	/* Time Advertisement */
113 	u8 time_update_counter;
114 	struct wpabuf *time_adv;
115 
116 #ifdef CONFIG_FULL_DYNAMIC_VLAN
117 	struct full_dynamic_vlan *full_dynamic_vlan;
118 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
119 
120 	struct l2_packet_data *l2;
121 	struct wps_context *wps;
122 
123 	int beacon_set_done;
124 	struct wpabuf *wps_beacon_ie;
125 	struct wpabuf *wps_probe_resp_ie;
126 #ifdef CONFIG_WPS
127 	unsigned int ap_pin_failures;
128 	unsigned int ap_pin_failures_consecutive;
129 	struct upnp_wps_device_sm *wps_upnp;
130 	unsigned int ap_pin_lockout_time;
131 #endif /* CONFIG_WPS */
132 
133 	struct hostapd_probereq_cb *probereq_cb;
134 	size_t num_probereq_cb;
135 
136 	void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
137 				 int freq);
138 	void *public_action_cb_ctx;
139 
140 	int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
141 				int freq);
142 	void *vendor_action_cb_ctx;
143 
144 	void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
145 				   const u8 *uuid_e);
146 	void *wps_reg_success_cb_ctx;
147 
148 	void (*wps_event_cb)(void *ctx, enum wps_event event,
149 			     union wps_event_data *data);
150 	void *wps_event_cb_ctx;
151 
152 	void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
153 				  int authorized, const u8 *p2p_dev_addr);
154 	void *sta_authorized_cb_ctx;
155 
156 	void (*setup_complete_cb)(void *ctx);
157 	void *setup_complete_cb_ctx;
158 
159 #ifdef CONFIG_P2P
160 	struct p2p_data *p2p;
161 	struct p2p_group *p2p_group;
162 	struct wpabuf *p2p_beacon_ie;
163 	struct wpabuf *p2p_probe_resp_ie;
164 
165 	/* Number of non-P2P association stations */
166 	int num_sta_no_p2p;
167 
168 	/* Periodic NoA (used only when no non-P2P clients in the group) */
169 	int noa_enabled;
170 	int noa_start;
171 	int noa_duration;
172 #endif /* CONFIG_P2P */
173 };
174 
175 
176 /**
177  * struct hostapd_iface - hostapd per-interface data structure
178  */
179 struct hostapd_iface {
180 	struct hapd_interfaces *interfaces;
181 	void *owner;
182 	int (*reload_config)(struct hostapd_iface *iface);
183 	struct hostapd_config * (*config_read_cb)(const char *config_fname);
184 	char *config_fname;
185 	struct hostapd_config *conf;
186 
187 	size_t num_bss;
188 	struct hostapd_data **bss;
189 
190 	int num_ap; /* number of entries in ap_list */
191 	struct ap_info *ap_list; /* AP info list head */
192 	struct ap_info *ap_hash[STA_HASH_SIZE];
193 	struct ap_info *ap_iter_list;
194 
195 	unsigned int drv_flags;
196 	struct hostapd_hw_modes *hw_features;
197 	int num_hw_features;
198 	struct hostapd_hw_modes *current_mode;
199 	/* Rates that are currently used (i.e., filtered copy of
200 	 * current_mode->channels */
201 	int num_rates;
202 	struct hostapd_rate_data *current_rates;
203 	int freq;
204 
205 	u16 hw_flags;
206 
207 	/* Number of associated Non-ERP stations (i.e., stations using 802.11b
208 	 * in 802.11g BSS) */
209 	int num_sta_non_erp;
210 
211 	/* Number of associated stations that do not support Short Slot Time */
212 	int num_sta_no_short_slot_time;
213 
214 	/* Number of associated stations that do not support Short Preamble */
215 	int num_sta_no_short_preamble;
216 
217 	int olbc; /* Overlapping Legacy BSS Condition */
218 
219 	/* Number of HT associated stations that do not support greenfield */
220 	int num_sta_ht_no_gf;
221 
222 	/* Number of associated non-HT stations */
223 	int num_sta_no_ht;
224 
225 	/* Number of HT associated stations 20 MHz */
226 	int num_sta_ht_20mhz;
227 
228 	/* Overlapping BSS information */
229 	int olbc_ht;
230 
231 	u16 ht_op_mode;
232 	void (*scan_cb)(struct hostapd_iface *iface);
233 
234 	int (*ctrl_iface_init)(struct hostapd_data *hapd);
235 	void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
236 
237 	int (*for_each_interface)(struct hapd_interfaces *interfaces,
238 				  int (*cb)(struct hostapd_iface *iface,
239 					    void *ctx), void *ctx);
240 };
241 
242 /* hostapd.c */
243 int hostapd_reload_config(struct hostapd_iface *iface);
244 struct hostapd_data *
245 hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
246 		       struct hostapd_config *conf,
247 		       struct hostapd_bss_config *bss);
248 int hostapd_setup_interface(struct hostapd_iface *iface);
249 int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
250 void hostapd_interface_deinit(struct hostapd_iface *iface);
251 void hostapd_interface_free(struct hostapd_iface *iface);
252 void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
253 			   int reassoc);
254 
255 /* utils.c */
256 int hostapd_register_probereq_cb(struct hostapd_data *hapd,
257 				 int (*cb)(void *ctx, const u8 *sa,
258 					   const u8 *da, const u8 *bssid,
259 					   const u8 *ie, size_t ie_len),
260 				 void *ctx);
261 void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
262 
263 /* drv_callbacks.c (TODO: move to somewhere else?) */
264 int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
265 			const u8 *ie, size_t ielen, int reassoc);
266 void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
267 void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
268 int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
269 			 const u8 *bssid, const u8 *ie, size_t ie_len);
270 
271 #endif /* HOSTAPD_H */
272