wpasvc: Add skip_on_error registry value to skip interfaces on error
[libeap.git] / hostapd / hostapd.h
1 /*
2  * hostapd / Initialization and configuration
3  * Host AP kernel driver
4  * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
5  * Copyright (c) 2007-2008, Intel Corporation
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * Alternatively, this software may be distributed under the terms of BSD
12  * license.
13  *
14  * See README and COPYING for more details.
15  */
16
17 #ifndef HOSTAPD_H
18 #define HOSTAPD_H
19
20 #include "common.h"
21 #include "ap.h"
22
23 #ifndef ETH_ALEN
24 #define ETH_ALEN 6
25 #endif
26 #ifndef IFNAMSIZ
27 #define IFNAMSIZ 16
28 #endif
29 #ifndef ETH_P_ALL
30 #define ETH_P_ALL 0x0003
31 #endif
32 #ifndef ETH_P_PAE
33 #define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
34 #endif /* ETH_P_PAE */
35 #ifndef ETH_P_EAPOL
36 #define ETH_P_EAPOL ETH_P_PAE
37 #endif /* ETH_P_EAPOL */
38
39 #ifndef ETH_P_RRB
40 #define ETH_P_RRB 0x890D
41 #endif /* ETH_P_RRB */
42
43 #include "config.h"
44
45 #ifdef _MSC_VER
46 #pragma pack(push, 1)
47 #endif /* _MSC_VER */
48
49 #define MAX_VLAN_ID 4094
50
51 struct ieee8023_hdr {
52         u8 dest[6];
53         u8 src[6];
54         u16 ethertype;
55 } STRUCT_PACKED;
56
57
58 struct ieee80211_hdr {
59         le16 frame_control;
60         le16 duration_id;
61         u8 addr1[6];
62         u8 addr2[6];
63         u8 addr3[6];
64         le16 seq_ctrl;
65         /* followed by 'u8 addr4[6];' if ToDS and FromDS is set in data frame
66          */
67 } STRUCT_PACKED;
68
69 #ifdef _MSC_VER
70 #pragma pack(pop)
71 #endif /* _MSC_VER */
72
73 #define IEEE80211_DA_FROMDS addr1
74 #define IEEE80211_BSSID_FROMDS addr2
75 #define IEEE80211_SA_FROMDS addr3
76
77 #define IEEE80211_HDRLEN (sizeof(struct ieee80211_hdr))
78
79 #define IEEE80211_FC(type, stype) host_to_le16((type << 2) | (stype << 4))
80
81 /* MTU to be set for the wlan#ap device; this is mainly needed for IEEE 802.1X
82  * frames that might be longer than normal default MTU and they are not
83  * fragmented */
84 #define HOSTAPD_MTU 2290
85
86 extern unsigned char rfc1042_header[6];
87
88 struct hostap_sta_driver_data {
89         unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
90         unsigned long current_tx_rate;
91         unsigned long inactive_msec;
92         unsigned long flags;
93         unsigned long num_ps_buf_frames;
94         unsigned long tx_retry_failed;
95         unsigned long tx_retry_count;
96         int last_rssi;
97         int last_ack_rssi;
98 };
99
100 struct wpa_driver_ops;
101 struct wpa_ctrl_dst;
102 struct radius_server_data;
103
104 #ifdef CONFIG_FULL_DYNAMIC_VLAN
105 struct full_dynamic_vlan;
106 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
107
108 /**
109  * struct hostapd_data - hostapd per-BSS data structure
110  */
111 struct hostapd_data {
112         struct hostapd_iface *iface;
113         struct hostapd_config *iconf;
114         struct hostapd_bss_config *conf;
115         int interface_added; /* virtual interface added for this BSS */
116
117         u8 own_addr[ETH_ALEN];
118
119         int num_sta; /* number of entries in sta_list */
120         struct sta_info *sta_list; /* STA info list head */
121         struct sta_info *sta_hash[STA_HASH_SIZE];
122
123         /* pointers to STA info; based on allocated AID or NULL if AID free
124          * AID is in the range 1-2007, so sta_aid[0] corresponders to AID 1
125          * and so on
126          */
127         struct sta_info *sta_aid[MAX_AID_TABLE_SIZE];
128
129         const struct wpa_driver_ops *driver;
130         void *drv_priv;
131
132         u8 *default_wep_key;
133         u8 default_wep_key_idx;
134
135         struct radius_client_data *radius;
136         int radius_client_reconfigured;
137         u32 acct_session_id_hi, acct_session_id_lo;
138
139         struct iapp_data *iapp;
140
141         struct hostapd_cached_radius_acl *acl_cache;
142         struct hostapd_acl_query_data *acl_queries;
143
144         struct wpa_authenticator *wpa_auth;
145         struct eapol_authenticator *eapol_auth;
146
147         struct rsn_preauth_interface *preauth_iface;
148         time_t michael_mic_failure;
149         int michael_mic_failures;
150         int tkip_countermeasures;
151
152         int ctrl_sock;
153         struct wpa_ctrl_dst *ctrl_dst;
154
155         void *ssl_ctx;
156         void *eap_sim_db_priv;
157         struct radius_server_data *radius_srv;
158
159         int parameter_set_count;
160
161 #ifdef CONFIG_FULL_DYNAMIC_VLAN
162         struct full_dynamic_vlan *full_dynamic_vlan;
163 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
164
165         struct l2_packet_data *l2;
166         struct wps_context *wps;
167
168 #ifdef CONFIG_WPS
169         u8 *wps_beacon_ie;
170         size_t wps_beacon_ie_len;
171         u8 *wps_probe_resp_ie;
172         size_t wps_probe_resp_ie_len;
173 #endif /* CONFIG_WPS */
174 };
175
176
177 /**
178  * struct hostapd_iface - hostapd per-interface data structure
179  */
180 struct hostapd_iface {
181         char *config_fname;
182         struct hostapd_config *conf;
183
184         size_t num_bss;
185         struct hostapd_data **bss;
186
187         int num_ap; /* number of entries in ap_list */
188         struct ap_info *ap_list; /* AP info list head */
189         struct ap_info *ap_hash[STA_HASH_SIZE];
190         struct ap_info *ap_iter_list;
191
192         struct hostapd_hw_modes *hw_features;
193         int num_hw_features;
194         struct hostapd_hw_modes *current_mode;
195         /* Rates that are currently used (i.e., filtered copy of
196          * current_mode->channels */
197         int num_rates;
198         struct hostapd_rate_data *current_rates;
199
200         u16 hw_flags;
201
202         /* Number of associated Non-ERP stations (i.e., stations using 802.11b
203          * in 802.11g BSS) */
204         int num_sta_non_erp;
205
206         /* Number of associated stations that do not support Short Slot Time */
207         int num_sta_no_short_slot_time;
208
209         /* Number of associated stations that do not support Short Preamble */
210         int num_sta_no_short_preamble;
211
212         int olbc; /* Overlapping Legacy BSS Condition */
213
214         /* Number of HT associated stations that do not support greenfield */
215         int num_sta_ht_no_gf;
216
217         /* Number of associated non-HT stations */
218         int num_sta_no_ht;
219
220         /* Number of HT associated stations 20 MHz */
221         int num_sta_ht_20mhz;
222
223         /* Overlapping BSS information */
224         int olbc_ht;
225
226 #ifdef CONFIG_IEEE80211N
227         u16 ht_op_mode;
228 #endif /* CONFIG_IEEE80211N */
229 };
230
231 void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
232                            int reassoc);
233 int hostapd_reload_config(struct hostapd_iface *iface);
234
235 #endif /* HOSTAPD_H */