WPS: Lock AP Setup on multiple AP PIN validation failures
[wpasupplicant] / 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 #include "hostapd_defs.h"
23 #include "config.h"
24
25 struct wpa_driver_ops;
26 struct wpa_ctrl_dst;
27 struct radius_server_data;
28
29 #ifdef CONFIG_FULL_DYNAMIC_VLAN
30 struct full_dynamic_vlan;
31 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
32
33 /**
34  * struct hostapd_data - hostapd per-BSS data structure
35  */
36 struct hostapd_data {
37         struct hostapd_iface *iface;
38         struct hostapd_config *iconf;
39         struct hostapd_bss_config *conf;
40         int interface_added; /* virtual interface added for this BSS */
41
42         u8 own_addr[ETH_ALEN];
43
44         int num_sta; /* number of entries in sta_list */
45         struct sta_info *sta_list; /* STA info list head */
46         struct sta_info *sta_hash[STA_HASH_SIZE];
47
48         /* pointers to STA info; based on allocated AID or NULL if AID free
49          * AID is in the range 1-2007, so sta_aid[0] corresponders to AID 1
50          * and so on
51          */
52         struct sta_info *sta_aid[MAX_AID_TABLE_SIZE];
53
54         const struct wpa_driver_ops *driver;
55         void *drv_priv;
56
57         u8 *default_wep_key;
58         u8 default_wep_key_idx;
59
60         struct radius_client_data *radius;
61         int radius_client_reconfigured;
62         u32 acct_session_id_hi, acct_session_id_lo;
63
64         struct iapp_data *iapp;
65
66         struct hostapd_cached_radius_acl *acl_cache;
67         struct hostapd_acl_query_data *acl_queries;
68
69         struct wpa_authenticator *wpa_auth;
70         struct eapol_authenticator *eapol_auth;
71
72         struct rsn_preauth_interface *preauth_iface;
73         time_t michael_mic_failure;
74         int michael_mic_failures;
75         int tkip_countermeasures;
76
77         int ctrl_sock;
78         struct wpa_ctrl_dst *ctrl_dst;
79
80         void *ssl_ctx;
81         void *eap_sim_db_priv;
82         struct radius_server_data *radius_srv;
83
84         int parameter_set_count;
85
86 #ifdef CONFIG_FULL_DYNAMIC_VLAN
87         struct full_dynamic_vlan *full_dynamic_vlan;
88 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
89
90         struct l2_packet_data *l2;
91         struct wps_context *wps;
92
93 #ifdef CONFIG_WPS
94         u8 *wps_beacon_ie;
95         size_t wps_beacon_ie_len;
96         u8 *wps_probe_resp_ie;
97         size_t wps_probe_resp_ie_len;
98         unsigned int ap_pin_failures;
99 #endif /* CONFIG_WPS */
100 };
101
102
103 /**
104  * struct hostapd_iface - hostapd per-interface data structure
105  */
106 struct hostapd_iface {
107         char *config_fname;
108         struct hostapd_config *conf;
109
110         size_t num_bss;
111         struct hostapd_data **bss;
112
113         int num_ap; /* number of entries in ap_list */
114         struct ap_info *ap_list; /* AP info list head */
115         struct ap_info *ap_hash[STA_HASH_SIZE];
116         struct ap_info *ap_iter_list;
117
118         struct hostapd_hw_modes *hw_features;
119         int num_hw_features;
120         struct hostapd_hw_modes *current_mode;
121         /* Rates that are currently used (i.e., filtered copy of
122          * current_mode->channels */
123         int num_rates;
124         struct hostapd_rate_data *current_rates;
125
126         u16 hw_flags;
127
128         /* Number of associated Non-ERP stations (i.e., stations using 802.11b
129          * in 802.11g BSS) */
130         int num_sta_non_erp;
131
132         /* Number of associated stations that do not support Short Slot Time */
133         int num_sta_no_short_slot_time;
134
135         /* Number of associated stations that do not support Short Preamble */
136         int num_sta_no_short_preamble;
137
138         int olbc; /* Overlapping Legacy BSS Condition */
139
140         /* Number of HT associated stations that do not support greenfield */
141         int num_sta_ht_no_gf;
142
143         /* Number of associated non-HT stations */
144         int num_sta_no_ht;
145
146         /* Number of HT associated stations 20 MHz */
147         int num_sta_ht_20mhz;
148
149         /* Overlapping BSS information */
150         int olbc_ht;
151
152 #ifdef CONFIG_IEEE80211N
153         u16 ht_op_mode;
154 #endif /* CONFIG_IEEE80211N */
155 };
156
157 int hostapd_reload_config(struct hostapd_iface *iface);
158 int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
159                                          void *ctx), void *ctx);
160
161 #endif /* HOSTAPD_H */