f145195cd438371e835682b9431b9468d087768b
2 * wprobe.h: API for the wireless probe interface
3 * Copyright (C) 2008-2009 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
20 #include <linux/types.h>
21 #include <linux/if_ether.h>
22 #include <linux/spinlock.h>
23 #include <linux/module.h>
24 #include <linux/list.h>
25 #include <net/genetlink.h>
29 * enum wprobe_attr: netlink attribute list
31 * @WPROBE_ATTR_UNSPEC: unused
33 * @WPROBE_ATTR_INTERFACE: interface name to process query on (NLA_STRING)
34 * @WPROBE_ATTR_MAC: mac address (used for wireless links) (NLA_STRING)
35 * @WPROBE_ATTR_FLAGS: interface/link/attribute flags (see enum wprobe_flags) (NLA_U32)
36 * @WPROBE_ATTR_DURATION: sampling duration (in milliseconds) (NLA_MSECS)
38 * @WPROBE_ATTR_ID: attribute id (NLA_U32)
39 * @WPROBE_ATTR_NAME: attribute name (NLA_STRING)
40 * @WPROBE_ATTR_TYPE: attribute type (NLA_U8)
41 * @WPROBE_ATTR_SCALE: attribute scale factor (NLA_U32)
45 * @WPROBE_VAL_STRING: string value (NLA_STRING)
46 * @WPROBE_VAL_S8: signed 8-bit integer (NLA_U8)
47 * @WPROBE_VAL_S16: signed 16-bit integer (NLA_U16)
48 * @WPROBE_VAL_S32: signed 32-bit integer (NLA_U32)
49 * @WPROBE_VAL_S64: signed 64-bit integer (NLA_U64)
50 * @WPROBE_VAL_U8: unsigned 8-bit integer (NLA_U8)
51 * @WPROBE_VAL_U16: unsigned 16-bit integer (NLA_U16)
52 * @WPROBE_VAL_U32: unsigned 32-bit integer (NLA_U32)
53 * @WPROBE_VAL_U64: unsigned 64-bit integer (NLA_U64)
56 * @WPROBE_VAL_SUM: sum of all samples
57 * @WPROBE_VAL_SUM_SQ: sum of all samples^2
58 * @WPROBE_VAL_SAMPLES: number of samples
60 * @WPROBE_ATTR_LAST: unused
64 WPROBE_ATTR_INTERFACE
,
69 /* end of query attributes */
76 /* value type attributes */
87 /* aggregates for statistics */
97 * enum wprobe_cmd: netlink commands for interacting with wprobe
99 * @WPROBE_CMD_UNSPEC: unused
101 * @WPROBE_CMD_GET_LIST: get global/link property list
102 * @WPROBE_CMD_GET_INFO: get global/link properties
103 * @WPROBE_CMD_SET_FLAGS: set global/link flags
104 * @WPROBE_CMD_MEASURE: take a snapshot of the current data
105 * @WPROBE_CMD_GET_LINKS: get a list of links
107 * @WPROBE_CMD_LAST: unused
109 * options for GET_INFO and SET_FLAGS:
110 * - mac address set: per-link
111 * - mac address unset: globalsa
117 WPROBE_CMD_SET_FLAGS
,
119 WPROBE_CMD_GET_LINKS
,
124 * enum wprobe_flags: flags for wprobe links and items
125 * @WPROBE_F_KEEPSTAT: keep statistics for this link/device
126 * @WPROBE_F_RESET: reset statistics now (used only in WPROBE_CMD_SET_LINK)
127 * @WPROBE_F_NEWDATA: used to indicate that a value has been updated
130 WPROBE_F_KEEPSTAT
= (1 << 0),
131 WPROBE_F_RESET
= (1 << 1),
132 WPROBE_F_NEWDATA
= (1 << 2),
139 struct wprobe_source
;
142 * struct wprobe_link - data structure describing a wireless link
143 * @iface: pointer to the wprobe_iface that this link belongs to
144 * @addr: BSSID of the remote link partner
145 * @flags: link flags (see wprobe_flags)
146 * @priv: user pointer
148 * @list: for internal use
149 * @val: for internal use
152 struct list_head list
;
153 struct wprobe_iface
*iface
;
161 * struct wprobe_item - data structure describing the format of wprobe_link::data or wprobe_iface::data
162 * @name: name of the field
163 * @type: data type of this field
164 * @flags: measurement item flags (see wprobe_flags)
168 enum wprobe_attr type
;
172 struct wprobe_value
{
176 * the following are kept uppercase to allow
177 * for automated checking against WPROBE_VAL_*
198 * struct wprobe_source - data structure describing a wireless interface
200 * @name: name of the interface
201 * @addr: local mac address of the interface
202 * @links: list of wireless links to poll
203 * @link_items: description of the per-link data structure
204 * @n_link_items: number of link description items
205 * @global_items: description of the per-interface data structure
206 * @n_global_items: number of per-interface description items
207 * @sync_data: callback allowing the driver to prepare data for the wprobe poll
209 * @list: head for the list of interfaces
210 * @priv: user pointer
211 * @lock: spinlock protecting value data access
213 * @query_val: internal use
215 * if sync_data is NULL, wprobe assumes that it can access the data structure
216 * at any time (in atomic context). if sync_data returns a negative error code,
217 * the poll request will not be handled for the given link
219 struct wprobe_iface
{
220 /* to be filled in by wprobe source drivers */
223 const struct wprobe_item
*link_items
;
225 const struct wprobe_item
*global_items
;
228 int (*sync_data
)(struct wprobe_iface
*dev
, struct wprobe_link
*l
, struct wprobe_value
*val
, bool measure
);
231 /* handled by the wprobe core */
232 struct list_head list
;
233 struct list_head links
;
239 #define WPROBE_FILL_BEGIN(_ptr, _list) do { \
240 struct wprobe_value *__val = (_ptr); \
241 const struct wprobe_item *__item = _list; \
242 u64 __msecs = jiffies_to_msecs(jiffies)
244 #define WPROBE_SET(_idx, _type, _value) \
245 if (__item[_idx].type != WPROBE_VAL_##_type) { \
246 printk("ERROR: invalid data type at %s:%d\n", __FILE__, __LINE__); \
249 __val[_idx].pending = true; \
250 __val[_idx]._type = _value; \
251 if (!__val[_idx].first) \
252 __val[_idx].first = __msecs; \
253 __val[_idx].first = __msecs
255 #define WPROBE_FILL_END() \
259 * wprobe_add_iface: register an interface with the wireless probe subsystem
260 * @dev: wprobe_iface structure describing the interface
262 extern int __weak
wprobe_add_iface(struct wprobe_iface
*dev
);
265 * wprobe_remove_iface: deregister an interface from the wireless probe subsystem
266 * @dev: wprobe_iface structure describing the interface
268 extern void __weak
wprobe_remove_iface(struct wprobe_iface
*dev
);
271 * wprobe_add_link: register a new wireless link
272 * @dev: wprobe_iface structure describing the interface
273 * @l: storage space for the wprobe_link structure
274 * @addr: mac address of the new link
276 * the entire wprobe_link structure is overwritten by this function call
278 extern int __weak
wprobe_add_link(struct wprobe_iface
*dev
, struct wprobe_link
*l
, const char *addr
);
281 * wprobe_remove_link: deregister a previously registered wireless link
282 * @dev: wprobe_iface structure describing the interface
283 * @l: wprobe_link data structure
285 extern void __weak
wprobe_remove_link(struct wprobe_iface
*dev
, struct wprobe_link
*l
);
288 * wprobe_update_stats: update statistics after sampling values
289 * @dev: wprobe_iface structure describing the interface
290 * @l: wprobe_link data structure
292 * if l == NULL, then the stats for globals are updated
294 extern void __weak
wprobe_update_stats(struct wprobe_iface
*dev
, struct wprobe_link
*l
);
296 #endif /* __KERNEL__ */
This page took 0.048345 seconds and 3 git commands to generate.