nl80211: Extend bridge add/del operations for secondary BSSes
[mech_eap.git] / src / ap / ap_drv_ops.h
1 /*
2  * hostapd - Driver operations
3  * Copyright (c) 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 AP_DRV_OPS
16 #define AP_DRV_OPS
17
18 enum wpa_driver_if_type;
19 struct wpa_bss_params;
20 struct wpa_driver_scan_params;
21 struct ieee80211_ht_capabilities;
22
23 int hostapd_set_ap_wps_ie(struct hostapd_data *hapd);
24 int hostapd_set_authorized(struct hostapd_data *hapd,
25                            struct sta_info *sta, int authorized);
26 int hostapd_set_sta_flags(struct hostapd_data *hapd, struct sta_info *sta);
27 int hostapd_set_drv_ieee8021x(struct hostapd_data *hapd, const char *ifname,
28                               int enabled);
29 int hostapd_set_bss_params(struct hostapd_data *hapd, int use_protection);
30 int hostapd_vlan_if_add(struct hostapd_data *hapd, const char *ifname);
31 int hostapd_vlan_if_remove(struct hostapd_data *hapd, const char *ifname);
32 int hostapd_set_wds_sta(struct hostapd_data *hapd, const u8 *addr, int aid,
33                         int val);
34 int hostapd_sta_add(struct hostapd_data *hapd,
35                     const u8 *addr, u16 aid, u16 capability,
36                     const u8 *supp_rates, size_t supp_rates_len,
37                     u16 listen_interval,
38                     const struct ieee80211_ht_capabilities *ht_capab);
39 int hostapd_set_privacy(struct hostapd_data *hapd, int enabled);
40 int hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
41                              size_t elem_len);
42 int hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len);
43 int hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len);
44 int hostapd_if_add(struct hostapd_data *hapd, enum wpa_driver_if_type type,
45                    const char *ifname, const u8 *addr, void *bss_ctx,
46                    void **drv_priv, char *force_ifname, u8 *if_addr,
47                    const char *bridge);
48 int hostapd_if_remove(struct hostapd_data *hapd, enum wpa_driver_if_type type,
49                       const char *ifname);
50 int hostapd_set_ieee8021x(struct hostapd_data *hapd,
51                           struct wpa_bss_params *params);
52 int hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
53                        const u8 *addr, int idx, u8 *seq);
54 int hostapd_flush(struct hostapd_data *hapd);
55 int hostapd_set_freq(struct hostapd_data *hapd, int mode, int freq,
56                      int channel, int ht_enabled, int sec_channel_offset);
57 int hostapd_set_rts(struct hostapd_data *hapd, int rts);
58 int hostapd_set_frag(struct hostapd_data *hapd, int frag);
59 int hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
60                           int total_flags, int flags_or, int flags_and);
61 int hostapd_set_rate_sets(struct hostapd_data *hapd, int *supp_rates,
62                           int *basic_rates, int mode);
63 int hostapd_set_country(struct hostapd_data *hapd, const char *country);
64 int hostapd_set_cts_protect(struct hostapd_data *hapd, int value);
65 int hostapd_set_preamble(struct hostapd_data *hapd, int value);
66 int hostapd_set_short_slot_time(struct hostapd_data *hapd, int value);
67 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
68                                 int cw_min, int cw_max, int burst_time);
69 int hostapd_valid_bss_mask(struct hostapd_data *hapd, const u8 *addr,
70                            const u8 *mask);
71 struct hostapd_hw_modes *
72 hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
73                             u16 *flags);
74 int hostapd_driver_commit(struct hostapd_data *hapd);
75 int hostapd_set_ht_params(struct hostapd_data *hapd,
76                           const u8 *ht_capab, size_t ht_capab_len,
77                           const u8 *ht_oper, size_t ht_oper_len);
78 int hostapd_drv_none(struct hostapd_data *hapd);
79 int hostapd_driver_scan(struct hostapd_data *hapd,
80                         struct wpa_driver_scan_params *params);
81 struct wpa_scan_results * hostapd_driver_get_scan_results(
82         struct hostapd_data *hapd);
83 int hostapd_driver_set_noa(struct hostapd_data *hapd, u8 count, int start,
84                            int duration);
85 int hostapd_drv_set_key(const char *ifname,
86                         struct hostapd_data *hapd,
87                         enum wpa_alg alg, const u8 *addr,
88                         int key_idx, int set_tx,
89                         const u8 *seq, size_t seq_len,
90                         const u8 *key, size_t key_len);
91 int hostapd_drv_send_mlme(struct hostapd_data *hapd,
92                           const void *msg, size_t len);
93 int hostapd_drv_sta_deauth(struct hostapd_data *hapd,
94                            const u8 *addr, int reason);
95 int hostapd_drv_sta_disassoc(struct hostapd_data *hapd,
96                              const u8 *addr, int reason);
97
98
99 #include "drivers/driver.h"
100
101 static inline int hostapd_drv_set_countermeasures(struct hostapd_data *hapd,
102                                                   int enabled)
103 {
104         if (hapd->driver == NULL ||
105             hapd->driver->hapd_set_countermeasures == NULL)
106                 return 0;
107         return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
108 }
109
110 static inline int hostapd_drv_set_sta_vlan(const char *ifname,
111                                            struct hostapd_data *hapd,
112                                            const u8 *addr, int vlan_id)
113 {
114         if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
115                 return 0;
116         return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname,
117                                           vlan_id);
118 }
119
120 static inline int hostapd_drv_get_inact_sec(struct hostapd_data *hapd,
121                                             const u8 *addr)
122 {
123         if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL)
124                 return 0;
125         return hapd->driver->get_inact_sec(hapd->drv_priv, addr);
126 }
127
128 static inline int hostapd_drv_sta_remove(struct hostapd_data *hapd,
129                                          const u8 *addr)
130 {
131         if (hapd->driver == NULL || hapd->driver->sta_remove == NULL)
132                 return 0;
133         return hapd->driver->sta_remove(hapd->drv_priv, addr);
134 }
135
136 static inline int hostapd_drv_hapd_send_eapol(struct hostapd_data *hapd,
137                                               const u8 *addr, const u8 *data,
138                                               size_t data_len, int encrypt)
139 {
140         if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL)
141                 return 0;
142         return hapd->driver->hapd_send_eapol(hapd->drv_priv, addr, data,
143                                              data_len, encrypt,
144                                              hapd->own_addr);
145 }
146
147 static inline int hostapd_drv_read_sta_data(
148         struct hostapd_data *hapd, struct hostap_sta_driver_data *data,
149         const u8 *addr)
150 {
151         if (hapd->driver == NULL || hapd->driver->read_sta_data == NULL)
152                 return -1;
153         return hapd->driver->read_sta_data(hapd->drv_priv, data, addr);
154 }
155
156 static inline int hostapd_drv_sta_clear_stats(struct hostapd_data *hapd,
157                                               const u8 *addr)
158 {
159         if (hapd->driver == NULL || hapd->driver->sta_clear_stats == NULL)
160                 return 0;
161         return hapd->driver->sta_clear_stats(hapd->drv_priv, addr);
162 }
163
164 static inline int hostapd_drv_set_beacon(struct hostapd_data *hapd,
165                                          const u8 *head, size_t head_len,
166                                          const u8 *tail, size_t tail_len,
167                                          int dtim_period, int beacon_int)
168 {
169         if (hapd->driver == NULL || hapd->driver->set_beacon == NULL)
170                 return 0;
171         return hapd->driver->set_beacon(hapd->drv_priv,
172                                         head, head_len, tail, tail_len,
173                                         dtim_period, beacon_int);
174 }
175
176 static inline int hostapd_drv_set_radius_acl_auth(struct hostapd_data *hapd,
177                                                   const u8 *mac, int accepted,
178                                                   u32 session_timeout)
179 {
180         if (hapd->driver == NULL || hapd->driver->set_radius_acl_auth == NULL)
181                 return 0;
182         return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
183                                                  session_timeout);
184 }
185
186 static inline int hostapd_drv_set_radius_acl_expire(struct hostapd_data *hapd,
187                                                     const u8 *mac)
188 {
189         if (hapd->driver == NULL ||
190             hapd->driver->set_radius_acl_expire == NULL)
191                 return 0;
192         return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
193 }
194
195 #endif /* AP_DRV_OPS */