Added ap_settings option for overriding WPS AP Settings in M7
[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 #endif /* CONFIG_WPS */
99 };
100
101
102 /**
103  * struct hostapd_iface - hostapd per-interface data structure
104  */
105 struct hostapd_iface {
106         char *config_fname;
107         struct hostapd_config *conf;
108
109         size_t num_bss;
110         struct hostapd_data **bss;
111
112         int num_ap; /* number of entries in ap_list */
113         struct ap_info *ap_list; /* AP info list head */
114         struct ap_info *ap_hash[STA_HASH_SIZE];
115         struct ap_info *ap_iter_list;
116
117         struct hostapd_hw_modes *hw_features;
118         int num_hw_features;
119         struct hostapd_hw_modes *current_mode;
120         /* Rates that are currently used (i.e., filtered copy of
121          * current_mode->channels */
122         int num_rates;
123         struct hostapd_rate_data *current_rates;
124
125         u16 hw_flags;
126
127         /* Number of associated Non-ERP stations (i.e., stations using 802.11b
128          * in 802.11g BSS) */
129         int num_sta_non_erp;
130
131         /* Number of associated stations that do not support Short Slot Time */
132         int num_sta_no_short_slot_time;
133
134         /* Number of associated stations that do not support Short Preamble */
135         int num_sta_no_short_preamble;
136
137         int olbc; /* Overlapping Legacy BSS Condition */
138
139         /* Number of HT associated stations that do not support greenfield */
140         int num_sta_ht_no_gf;
141
142         /* Number of associated non-HT stations */
143         int num_sta_no_ht;
144
145         /* Number of HT associated stations 20 MHz */
146         int num_sta_ht_20mhz;
147
148         /* Overlapping BSS information */
149         int olbc_ht;
150
151 #ifdef CONFIG_IEEE80211N
152         u16 ht_op_mode;
153 #endif /* CONFIG_IEEE80211N */
154 };
155
156 int hostapd_reload_config(struct hostapd_iface *iface);
157 int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
158                                          void *ctx), void *ctx);
159
160 #endif /* HOSTAPD_H */