2 * wprobe.h: Wireless probe user space library
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.
16 #ifndef __WPROBE_USER_H
17 #define __WPROBE_USER_H
24 * struct wprobe_value: data structure for attribute values
25 * @STRING: string value (currently unsupported)
26 * @U8: unsigned 8-bit integer value
27 * @U16: unsigned 16-bit integer value
28 * @U32: unsigned 32-bit integer value
29 * @U64: unsigned 64-bit integer value
30 * @S8: signed 8-bit integer value
31 * @S16: signed 16-bit integer value
32 * @S32: signed 32-bit integer value
33 * @S64: signed 64-bit integer value
35 * @n: number of sample values
37 * @stdev: standard deviation
38 * @s: sum of all sample values (internal use)
39 * @ss: sum of all sample values squared (internal use)
61 * struct wprobe_attribute: data structures for attribute descriptions
62 * @list: linked list data structure for a list of attributes
64 * @type: netlink type for the attribute (see kernel api documentation)
65 * @flags: attribute flags (see kernel api documentation)
66 * @val: cached version of the last netlink query, will be overwritten on each request
67 * @name: attribute name
69 struct wprobe_attribute
{
70 struct list_head list
;
74 struct wprobe_value val
;
79 * struct wprobe_link: data structure for the link description
80 * @list: linked list data structure for a list of links
81 * @flags: link flags (see kernel api documentation)
82 * @addr: mac address of the remote link partner
85 struct list_head list
;
87 unsigned char addr
[6];
90 struct wprobe_filter_item
{
96 struct wprobe_iface_ops
;
98 const struct wprobe_iface_ops
*ops
;
102 unsigned int genl_family
;
105 struct list_head global_attr
;
106 struct list_head link_attr
;
107 struct list_head links
;
120 * set to -1 to drop the current filter
121 * automatically reset to 0 after config apply
126 typedef void (*wprobe_filter_cb
)(void *arg
, const char *group
, struct wprobe_filter_item
*items
, int n_items
);
127 extern int wprobe_port
;
130 * wprobe_update_links: get a list of all link partners
131 * @dev: wprobe device structure
132 * @list: linked list for storing link descriptions
134 * when wprobe_update_links is called multiple times, the linked list
135 * is updated with new link partners, old entries are automatically expired
137 extern int wprobe_update_links(struct wprobe_iface
*dev
);
140 * wprobe_dump_filters: dump all layer 2 filter counters
141 * @dev: wprobe device structure
142 * @cb: callback (called once per filter group)
143 * @arg: user argument for the callback
145 extern int wprobe_dump_filters(struct wprobe_iface
*dev
, wprobe_filter_cb cb
, void *arg
);
148 * wprobe_measure: start a measurement request for all global attributes
149 * @dev: wprobe device structure
151 * not all attributes are automatically filled with data, since for some
152 * it may be desirable to control the sampling interval from user space
153 * you can use this function to do that.
155 extern int wprobe_measure(struct wprobe_iface
*dev
);
158 * wprobe_get_dev: get a handle to a local wprobe device
159 * @ifname: name of the wprobe interface
161 * queries the wprobe interface for all attributes
162 * must be freed with wprobe_free_dev
164 extern struct wprobe_iface
*wprobe_get_dev(const char *ifname
);
167 * wprobe_get_auto: get a handle to a local or remote wprobe device
168 * @arg: pointer to the wprobe device, either <dev> (local) or <host>:<dev> (remote)
170 extern struct wprobe_iface
*wprobe_get_auto(const char *arg
, char **err
);
173 * wprobe_get_dev: free all device information
174 * @dev: wprobe device structure
176 extern void wprobe_free_dev(struct wprobe_iface
*dev
);
179 * wprobe_apply_config: apply configuration data
180 * @dev: wprobe device structure
182 * uploads all configuration values from @dev that are not set to -1
184 extern int wprobe_apply_config(struct wprobe_iface
*dev
);
187 * wprobe_request_data: request new sampling values for the given list of attributes
188 * @dev: wprobe device structure
189 * @addr: (optional) mac address of the link partner
191 * if addr is unset, global values are stored in the global attributes list
192 * if addr is set, per-link values for the given address are stored in the link attributes list
194 extern int wprobe_request_data(struct wprobe_iface
*dev
, const unsigned char *addr
);
197 * wprobe_server_init: send a wprobe server init message to a server's client socket
198 * @socket: socket of the connection to the client
200 extern int wprobe_server_init(int socket
);
203 * wprobe_server_handle: read a request from the client socket, process it, send the response
204 * @socket: socket of the connection to the client
206 extern int wprobe_server_handle(int socket
);
209 * wprobe_server_done: release memory allocated for the server connection
211 extern void wprobe_server_done(void);
This page took 0.055843 seconds and 5 git commands to generate.