xref: /freebsd/contrib/wpa/src/fst/fst.h (revision c1d255d3ffdbe447de3ab875bf4e7d7accc5bfc5)
1325151a3SRui Paulo /*
2325151a3SRui Paulo  * FST module - interface definitions
3325151a3SRui Paulo  * Copyright (c) 2014, Qualcomm Atheros, Inc.
4325151a3SRui Paulo  *
5325151a3SRui Paulo  * This software may be distributed under the terms of the BSD license.
6325151a3SRui Paulo  * See README for more details.
7325151a3SRui Paulo  */
8325151a3SRui Paulo 
9325151a3SRui Paulo #ifndef FST_H
10325151a3SRui Paulo #define FST_H
11325151a3SRui Paulo 
12325151a3SRui Paulo #ifdef CONFIG_FST
13325151a3SRui Paulo 
14325151a3SRui Paulo #include "common/defs.h"
15325151a3SRui Paulo #include "fst/fst_ctrl_iface.h"
16325151a3SRui Paulo 
17325151a3SRui Paulo /* FST module hostap integration API */
18325151a3SRui Paulo 
19325151a3SRui Paulo #define US_IN_MS           1000
20325151a3SRui Paulo #define LLT_UNIT_US        32 /* See 10.32.2.2  Transitioning between states */
21325151a3SRui Paulo 
224bc52338SCy Schubert /*
234bc52338SCy Schubert  * These were originally
244bc52338SCy Schubert  * #define FST_LLT_MS_TO_VAL(m) (((u32) (m)) * US_IN_MS / LLT_UNIT_US)
254bc52338SCy Schubert  * #define FST_LLT_VAL_TO_MS(v) (((u32) (v)) * LLT_UNIT_US / US_IN_MS)
264bc52338SCy Schubert  * #define FST_MAX_LLT_MS FST_LLT_VAL_TO_MS(-1)
274bc52338SCy Schubert  * but those can overflow 32-bit unsigned integer, so use alternative defines
284bc52338SCy Schubert  * to avoid undefined behavior with such overflow.
294bc52338SCy Schubert  * LLT_UNIT_US/US_IN_MS = 32/1000 = 4/125
304bc52338SCy Schubert  */
314bc52338SCy Schubert #define FST_LLT_MS_TO_VAL(m) (((u32) (m)) * 125 / 4)
324bc52338SCy Schubert #define FST_LLT_VAL_TO_MS(v) (((u32) (v)) * 4 / 125)
334bc52338SCy Schubert #define FST_MAX_LLT_MS       (((u32) -1) / 4)
34325151a3SRui Paulo #define FST_MAX_PRIO_VALUE   ((u8) -1)
35325151a3SRui Paulo #define FST_MAX_GROUP_ID_LEN IFNAMSIZ
36325151a3SRui Paulo 
37325151a3SRui Paulo #define FST_DEFAULT_LLT_CFG_VALUE 50
38325151a3SRui Paulo 
39325151a3SRui Paulo struct hostapd_hw_modes;
40325151a3SRui Paulo struct ieee80211_mgmt;
41325151a3SRui Paulo struct fst_iface;
42325151a3SRui Paulo struct fst_group;
43325151a3SRui Paulo struct fst_session;
44325151a3SRui Paulo struct fst_get_peer_ctx;
45325151a3SRui Paulo struct fst_ctrl_handle;
46325151a3SRui Paulo 
47325151a3SRui Paulo struct fst_wpa_obj {
48325151a3SRui Paulo 	void *ctx;
49325151a3SRui Paulo 
50325151a3SRui Paulo 	/**
51325151a3SRui Paulo 	 * get_bssid - Get BSSID of the interface
52325151a3SRui Paulo 	 * @ctx: User context %ctx
53325151a3SRui Paulo 	 * Returns: BSSID for success, %NULL for failure.
54325151a3SRui Paulo 	 *
55325151a3SRui Paulo 	 * NOTE: For AP it returns the own BSSID, while for STA - the BSSID of
56325151a3SRui Paulo 	 * the associated AP.
57325151a3SRui Paulo 	 */
58325151a3SRui Paulo 	const u8 * (*get_bssid)(void *ctx);
59325151a3SRui Paulo 
60325151a3SRui Paulo 	/**
61325151a3SRui Paulo 	 * get_channel_info - Get current channel info
62325151a3SRui Paulo 	 * @ctx: User context %ctx
63325151a3SRui Paulo 	 * @hw_mode: OUT, current HW mode
64325151a3SRui Paulo 	 * @channel: OUT, current channel
65325151a3SRui Paulo 	 */
66325151a3SRui Paulo 	void (*get_channel_info)(void *ctx, enum hostapd_hw_mode *hw_mode,
67325151a3SRui Paulo 				 u8 *channel);
68325151a3SRui Paulo 
69325151a3SRui Paulo 	/**
70325151a3SRui Paulo 	 * get_hw_modes - Get hardware modes
71325151a3SRui Paulo 	 * @ctx: User context %ctx
72325151a3SRui Paulo 	 * @modes: OUT, pointer on array of hw modes
73325151a3SRui Paulo 	 *
74325151a3SRui Paulo 	 * Returns: Number of hw modes available.
75325151a3SRui Paulo 	 */
76325151a3SRui Paulo 	int (*get_hw_modes)(void *ctx, struct hostapd_hw_modes **modes);
77325151a3SRui Paulo 
78325151a3SRui Paulo 	/**
79325151a3SRui Paulo 	 * set_ies - Set interface's MB IE
80325151a3SRui Paulo 	 * @ctx: User context %ctx
81325151a3SRui Paulo 	 * @fst_ies: MB IE buffer (owned by FST module)
82325151a3SRui Paulo 	 */
83325151a3SRui Paulo 	void (*set_ies)(void *ctx, const struct wpabuf *fst_ies);
84325151a3SRui Paulo 
85325151a3SRui Paulo 	/**
86325151a3SRui Paulo 	 * send_action - Send FST Action frame via the interface
87325151a3SRui Paulo 	 * @ctx: User context %ctx
88325151a3SRui Paulo 	 * @addr: Address of the destination STA
89325151a3SRui Paulo 	 * @data: Action frame buffer
90325151a3SRui Paulo 	 * Returns: 0 for success, negative error code for failure.
91325151a3SRui Paulo 	 */
92325151a3SRui Paulo 	int (*send_action)(void *ctx, const u8 *addr, struct wpabuf *data);
93325151a3SRui Paulo 
94325151a3SRui Paulo 	/**
95325151a3SRui Paulo 	 * get_mb_ie - Get last MB IE received from STA
96325151a3SRui Paulo 	 * @ctx: User context %ctx
97325151a3SRui Paulo 	 * @addr: Address of the STA
98325151a3SRui Paulo 	 * Returns: MB IE buffer, %NULL if no MB IE received from the STA
99325151a3SRui Paulo 	 */
100325151a3SRui Paulo 	const struct wpabuf * (*get_mb_ie)(void *ctx, const u8 *addr);
101325151a3SRui Paulo 
102325151a3SRui Paulo 	/**
103325151a3SRui Paulo 	 * update_mb_ie - Update last MB IE received from STA
104325151a3SRui Paulo 	 * @ctx: User context %ctx
105325151a3SRui Paulo 	 * @addr: Address of the STA
106325151a3SRui Paulo 	 * @buf: Buffer that contains the MB IEs data
107325151a3SRui Paulo 	 * @size: Size of data in %buf
108325151a3SRui Paulo 	 */
109325151a3SRui Paulo 	void (*update_mb_ie)(void *ctx, const u8 *addr,
110325151a3SRui Paulo 			     const u8 *buf, size_t size);
111325151a3SRui Paulo 
112325151a3SRui Paulo 	/**
113325151a3SRui Paulo 	 * get_peer_first - Get MAC address of the 1st connected STA
114325151a3SRui Paulo 	 * @ctx: User context %ctx
115325151a3SRui Paulo 	 * @get_ctx: Context to be used for %get_peer_next call
116*c1d255d3SCy Schubert 	 * @mb_only: %true if only multi-band capable peer should be reported
117325151a3SRui Paulo 	 * Returns: Address of the 1st connected STA, %NULL if no STAs connected
118325151a3SRui Paulo 	 */
119325151a3SRui Paulo 	const u8 * (*get_peer_first)(void *ctx,
120325151a3SRui Paulo 				     struct fst_get_peer_ctx **get_ctx,
121*c1d255d3SCy Schubert 				     bool mb_only);
122325151a3SRui Paulo 	/**
123325151a3SRui Paulo 	 * get_peer_next - Get MAC address of the next connected STA
124325151a3SRui Paulo 	 * @ctx: User context %ctx
125325151a3SRui Paulo 	 * @get_ctx: Context received from %get_peer_first or previous
126325151a3SRui Paulo 	 *           %get_peer_next call
127*c1d255d3SCy Schubert 	 * @mb_only: %true if only multi-band capable peer should be reported
128325151a3SRui Paulo 	 * Returns: Address of the next connected STA, %NULL if no more STAs
129325151a3SRui Paulo 	 *          connected
130325151a3SRui Paulo 	 */
131325151a3SRui Paulo 	const u8 * (*get_peer_next)(void *ctx,
132325151a3SRui Paulo 				    struct fst_get_peer_ctx **get_ctx,
133*c1d255d3SCy Schubert 				    bool mb_only);
134325151a3SRui Paulo };
135325151a3SRui Paulo 
136325151a3SRui Paulo /**
137325151a3SRui Paulo  * fst_global_init - Global FST module initiator
138325151a3SRui Paulo  * Returns: 0 for success, negative error code for failure.
139325151a3SRui Paulo  * Note: The purpose of this function is to allocate and initiate global
140325151a3SRui Paulo  *       FST module data structures (linked lists, static data etc.)
141325151a3SRui Paulo  *       This function should be called prior to the 1st %fst_attach call.
142325151a3SRui Paulo  */
143325151a3SRui Paulo int fst_global_init(void);
144325151a3SRui Paulo 
145325151a3SRui Paulo /**
146325151a3SRui Paulo  * fst_global_deinit - Global FST module de-initiator
147325151a3SRui Paulo  * Note: The purpose of this function is to deallocate and de-initiate global
148325151a3SRui Paulo  *       FST module data structures (linked lists, static data etc.)
149325151a3SRui Paulo  */
150325151a3SRui Paulo void fst_global_deinit(void);
151325151a3SRui Paulo 
152325151a3SRui Paulo /**
153325151a3SRui Paulo  * struct fst_ctrl - Notification interface for FST module
154325151a3SRui Paulo  */
155325151a3SRui Paulo struct fst_ctrl {
156325151a3SRui Paulo 	/**
157325151a3SRui Paulo 	 * init - Initialize the notification interface
158325151a3SRui Paulo 	 * Returns: 0 for success, negative error code for failure.
159325151a3SRui Paulo 	 */
160325151a3SRui Paulo 	int (*init)(void);
161325151a3SRui Paulo 
162325151a3SRui Paulo 	/**
163325151a3SRui Paulo 	 * deinit - Deinitialize the notification interface
164325151a3SRui Paulo 	 */
165325151a3SRui Paulo 	void (*deinit)(void);
166325151a3SRui Paulo 
167325151a3SRui Paulo 	/**
168325151a3SRui Paulo 	 * on_group_created - Notify about FST group creation
169325151a3SRui Paulo 	 * Returns: 0 for success, negative error code for failure.
170325151a3SRui Paulo 	 */
171325151a3SRui Paulo 	int (*on_group_created)(struct fst_group *g);
172325151a3SRui Paulo 
173325151a3SRui Paulo 	/**
174325151a3SRui Paulo 	 * on_group_deleted - Notify about FST group deletion
175325151a3SRui Paulo 	 */
176325151a3SRui Paulo 	void (*on_group_deleted)(struct fst_group *g);
177325151a3SRui Paulo 
178325151a3SRui Paulo 	/**
179325151a3SRui Paulo 	 * on_iface_added - Notify about interface addition
180325151a3SRui Paulo 	 * Returns: 0 for success, negative error code for failure.
181325151a3SRui Paulo 	 */
182325151a3SRui Paulo 	int (*on_iface_added)(struct fst_iface *i);
183325151a3SRui Paulo 
184325151a3SRui Paulo 	/**
185325151a3SRui Paulo 	 * on_iface_removed - Notify about interface removal
186325151a3SRui Paulo 	 */
187325151a3SRui Paulo 	void (*on_iface_removed)(struct fst_iface *i);
188325151a3SRui Paulo 
189325151a3SRui Paulo 	/**
190325151a3SRui Paulo 	 * on_session_added - Notify about FST session addition
191325151a3SRui Paulo 	 * Returns: 0 for success, negative error code for failure.
192325151a3SRui Paulo 	 */
193325151a3SRui Paulo 	int (*on_session_added)(struct fst_session *s);
194325151a3SRui Paulo 
195325151a3SRui Paulo 	/**
196325151a3SRui Paulo 	 * on_session_removed - Notify about FST session removal
197325151a3SRui Paulo 	 */
198325151a3SRui Paulo 	void (*on_session_removed)(struct fst_session *s);
199325151a3SRui Paulo 
200325151a3SRui Paulo 	/**
201325151a3SRui Paulo 	 * on_event - Notify about FST event
202325151a3SRui Paulo 	 * @event_type: Event type
203325151a3SRui Paulo 	 * @i: Interface object that relates to the event or NULL
204325151a3SRui Paulo 	 * @g: Group object that relates to the event or NULL
205325151a3SRui Paulo 	 * @extra - Event specific data (see fst_ctrl_iface.h for more info)
206325151a3SRui Paulo 	 */
207325151a3SRui Paulo 	void (*on_event)(enum fst_event_type event_type, struct fst_iface *i,
208325151a3SRui Paulo 			 struct fst_session *s,
209325151a3SRui Paulo 			 const union fst_event_extra *extra);
210325151a3SRui Paulo };
211325151a3SRui Paulo 
212325151a3SRui Paulo struct fst_ctrl_handle * fst_global_add_ctrl(const struct fst_ctrl *ctrl);
213325151a3SRui Paulo void fst_global_del_ctrl(struct fst_ctrl_handle *h);
214325151a3SRui Paulo 
215325151a3SRui Paulo /**
216325151a3SRui Paulo  * NOTE: These values have to be read from configuration file
217325151a3SRui Paulo  */
218325151a3SRui Paulo struct fst_iface_cfg {
219325151a3SRui Paulo 	char group_id[FST_MAX_GROUP_ID_LEN + 1];
220325151a3SRui Paulo 	u8 priority;
221325151a3SRui Paulo 	u32 llt;
222325151a3SRui Paulo };
223325151a3SRui Paulo 
224325151a3SRui Paulo /**
225325151a3SRui Paulo  * fst_attach - Attach interface to an FST group according to configuration read
226325151a3SRui Paulo  * @ifname: Interface name
227325151a3SRui Paulo  * @own_addr: Own interface MAC address
228325151a3SRui Paulo  * @iface_obj: Callbacks to be used by FST module to communicate with
229325151a3SRui Paulo  *             hostapd/wpa_supplicant
230325151a3SRui Paulo  * @cfg: FST-related interface configuration read from the configuration file
231325151a3SRui Paulo  * Returns: FST interface object for success, %NULL for failure.
232325151a3SRui Paulo  */
233325151a3SRui Paulo struct fst_iface * fst_attach(const char *ifname,
234325151a3SRui Paulo 			      const u8 *own_addr,
235325151a3SRui Paulo 			      const struct fst_wpa_obj *iface_obj,
236325151a3SRui Paulo 			      const struct fst_iface_cfg *cfg);
237325151a3SRui Paulo 
238325151a3SRui Paulo /**
239325151a3SRui Paulo  * fst_detach - Detach an interface
240325151a3SRui Paulo  * @iface: FST interface object
241325151a3SRui Paulo  */
242325151a3SRui Paulo void fst_detach(struct fst_iface *iface);
243325151a3SRui Paulo 
244325151a3SRui Paulo /* FST module inputs */
245325151a3SRui Paulo /**
246325151a3SRui Paulo  * fst_rx_action - FST Action frames handler
247325151a3SRui Paulo  * @iface: FST interface object
248325151a3SRui Paulo  * @mgmt: Action frame arrived
249325151a3SRui Paulo  * @len: Action frame length
250325151a3SRui Paulo  */
251325151a3SRui Paulo void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt,
252325151a3SRui Paulo 		   size_t len);
253325151a3SRui Paulo 
254325151a3SRui Paulo /**
255325151a3SRui Paulo  * fst_notify_peer_connected - FST STA connect handler
256325151a3SRui Paulo  * @iface: FST interface object
257325151a3SRui Paulo  * @addr: Address of the connected STA
258325151a3SRui Paulo  */
259325151a3SRui Paulo void fst_notify_peer_connected(struct fst_iface *iface, const u8 *addr);
260325151a3SRui Paulo 
261325151a3SRui Paulo /**
262325151a3SRui Paulo  * fst_notify_peer_disconnected - FST STA disconnect handler
263325151a3SRui Paulo  * @iface: FST interface object
264325151a3SRui Paulo  * @addr: Address of the disconnected STA
265325151a3SRui Paulo  */
266325151a3SRui Paulo void fst_notify_peer_disconnected(struct fst_iface *iface, const u8 *addr);
267325151a3SRui Paulo 
268325151a3SRui Paulo /* FST module auxiliary routines */
269325151a3SRui Paulo 
270325151a3SRui Paulo /**
271325151a3SRui Paulo  * fst_are_ifaces_aggregated - Determines whether 2 interfaces belong to the
272325151a3SRui Paulo  *                             same FST group
273325151a3SRui Paulo  * @iface1: 1st FST interface object
274325151a3SRui Paulo  * @iface1: 2nd FST interface object
275325151a3SRui Paulo  *
276*c1d255d3SCy Schubert  * Returns: %true if the interfaces belong to the same FST group,
277*c1d255d3SCy Schubert  *          %false otherwise
278325151a3SRui Paulo  */
279*c1d255d3SCy Schubert bool fst_are_ifaces_aggregated(struct fst_iface *iface1,
280325151a3SRui Paulo 			       struct fst_iface *iface2);
281325151a3SRui Paulo 
282*c1d255d3SCy Schubert /**
283*c1d255d3SCy Schubert  * fst_update_mac_addr - Notify FST about MAC address change
284*c1d255d3SCy Schubert  * @iface: FST interface object
285*c1d255d3SCy Schubert  * @addr: New MAC address
286*c1d255d3SCy Schubert  */
287*c1d255d3SCy Schubert void fst_update_mac_addr(struct fst_iface *iface, const u8 *addr);
288*c1d255d3SCy Schubert 
289325151a3SRui Paulo #else /* CONFIG_FST */
290325151a3SRui Paulo 
fst_global_init(void)291325151a3SRui Paulo static inline int fst_global_init(void)
292325151a3SRui Paulo {
293325151a3SRui Paulo 	return 0;
294325151a3SRui Paulo }
295325151a3SRui Paulo 
fst_global_start(void)296325151a3SRui Paulo static inline int fst_global_start(void)
297325151a3SRui Paulo {
298325151a3SRui Paulo 	return 0;
299325151a3SRui Paulo }
300325151a3SRui Paulo 
fst_global_stop(void)301325151a3SRui Paulo static inline void fst_global_stop(void)
302325151a3SRui Paulo {
303325151a3SRui Paulo }
304325151a3SRui Paulo 
fst_global_deinit(void)305325151a3SRui Paulo static inline void fst_global_deinit(void)
306325151a3SRui Paulo {
307325151a3SRui Paulo }
308325151a3SRui Paulo 
309325151a3SRui Paulo #endif /* CONFIG_FST */
310325151a3SRui Paulo 
311325151a3SRui Paulo #endif /* FST_H */
312