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