2009-03-26 20:56:47 +00:00
|
|
|
/*
|
|
|
|
* wprobe.h: Wireless probe user space library
|
|
|
|
* Copyright (C) 2008-2009 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WPROBE_USER_H
|
|
|
|
#define __WPROBE_USER_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct wprobe_value: data structure for attribute values
|
|
|
|
* @STRING: string value (currently unsupported)
|
|
|
|
* @U8: unsigned 8-bit integer value
|
|
|
|
* @U16: unsigned 16-bit integer value
|
|
|
|
* @U32: unsigned 32-bit integer value
|
|
|
|
* @U64: unsigned 64-bit integer value
|
|
|
|
* @S8: signed 8-bit integer value
|
|
|
|
* @S16: signed 16-bit integer value
|
|
|
|
* @S32: signed 32-bit integer value
|
|
|
|
* @S64: signed 64-bit integer value
|
|
|
|
*
|
|
|
|
* @n: number of sample values
|
|
|
|
* @avg: average value
|
|
|
|
* @stdev: standard deviation
|
|
|
|
* @s: sum of all sample values (internal use)
|
|
|
|
* @ss: sum of all sample values squared (internal use)
|
|
|
|
*/
|
|
|
|
struct wprobe_value {
|
|
|
|
/* attribute value */
|
|
|
|
union {
|
|
|
|
const char *STRING;
|
|
|
|
uint8_t U8;
|
|
|
|
uint16_t U16;
|
|
|
|
uint32_t U32;
|
|
|
|
uint64_t U64;
|
|
|
|
int8_t S8;
|
|
|
|
int16_t S16;
|
|
|
|
int32_t S32;
|
|
|
|
int64_t S64;
|
|
|
|
};
|
|
|
|
/* statistics */
|
|
|
|
int64_t s, ss;
|
|
|
|
float avg, stdev;
|
|
|
|
unsigned int n;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct wprobe_attribute: data structures for attribute descriptions
|
|
|
|
* @list: linked list data structure for a list of attributes
|
|
|
|
* @id: attribute id
|
|
|
|
* @type: netlink type for the attribute (see kernel api documentation)
|
|
|
|
* @flags: attribute flags (see kernel api documentation)
|
|
|
|
* @val: cached version of the last netlink query, will be overwritten on each request
|
|
|
|
* @name: attribute name
|
|
|
|
*/
|
|
|
|
struct wprobe_attribute {
|
|
|
|
struct list_head list;
|
|
|
|
int id;
|
|
|
|
int type;
|
|
|
|
uint32_t flags;
|
|
|
|
struct wprobe_value val;
|
|
|
|
char name[];
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct wprobe_link: data structure for the link description
|
|
|
|
* @list: linked list data structure for a list of links
|
|
|
|
* @flags: link flags (see kernel api documentation)
|
|
|
|
* @addr: mac address of the remote link partner
|
|
|
|
*/
|
|
|
|
struct wprobe_link {
|
|
|
|
struct list_head list;
|
|
|
|
uint32_t flags;
|
|
|
|
unsigned char addr[6];
|
|
|
|
};
|
|
|
|
|
2009-06-10 14:37:36 +00:00
|
|
|
struct wprobe_iface {
|
|
|
|
const char *ifname;
|
|
|
|
char addr[6];
|
2009-03-26 20:56:47 +00:00
|
|
|
|
2009-06-10 14:37:36 +00:00
|
|
|
struct list_head global_attr;
|
|
|
|
struct list_head link_attr;
|
|
|
|
struct list_head links;
|
|
|
|
|
|
|
|
/* config */
|
|
|
|
int interval;
|
|
|
|
int scale_min;
|
|
|
|
int scale_max;
|
|
|
|
int scale_m;
|
|
|
|
int scale_d;
|
|
|
|
};
|
2009-03-26 20:56:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* wprobe_update_links: get a list of all link partners
|
|
|
|
* @ifname: name of the wprobe interface
|
|
|
|
* @list: linked list for storing link descriptions
|
|
|
|
*
|
|
|
|
* when wprobe_update_links is called multiple times, the linked list
|
|
|
|
* is updated with new link partners, old entries are automatically expired
|
|
|
|
*/
|
2009-06-10 14:37:36 +00:00
|
|
|
extern int wprobe_update_links(struct wprobe_iface *dev);
|
2009-03-26 20:56:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* wprobe_measure: start a measurement request for all global attributes
|
|
|
|
* @ifname: name of the wprobe interface
|
|
|
|
*
|
|
|
|
* not all attributes are automatically filled with data, since for some
|
|
|
|
* it may be desirable to control the sampling interval from user space
|
|
|
|
* you can use this function to do that.
|
|
|
|
*/
|
2009-06-10 14:37:36 +00:00
|
|
|
extern int wprobe_measure(struct wprobe_iface *dev);
|
2009-03-26 20:56:47 +00:00
|
|
|
|
|
|
|
/**
|
2009-06-10 14:37:36 +00:00
|
|
|
* wprobe_get_dev: get device information
|
2009-03-26 20:56:47 +00:00
|
|
|
* @ifname: name of the wprobe interface
|
|
|
|
*
|
2009-06-10 14:37:36 +00:00
|
|
|
* queries the wprobe interface for all attributes
|
|
|
|
* must be freed with wprobe_free_dev
|
|
|
|
*/
|
|
|
|
extern struct wprobe_iface *wprobe_get_dev(const char *ifname);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wprobe_get_dev: free all device information
|
|
|
|
* @dev: wprobe device structure
|
|
|
|
*/
|
|
|
|
extern void wprobe_free_dev(struct wprobe_iface *dev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wprobe_apply_config: apply configuration data
|
|
|
|
* @dev: wprobe device structure
|
|
|
|
*
|
|
|
|
* uploads all configuration values from @dev that are not set to -1
|
2009-03-26 20:56:47 +00:00
|
|
|
*/
|
2009-06-10 14:37:36 +00:00
|
|
|
extern int wprobe_apply_config(struct wprobe_iface *dev);
|
2009-03-26 20:56:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* wprobe_request_data: request new sampling values for the given list of attributes
|
2009-06-10 14:37:36 +00:00
|
|
|
* @dev: wprobe device structure
|
2009-03-26 20:56:47 +00:00
|
|
|
* @addr: (optional) mac address of the link partner
|
|
|
|
*
|
2009-06-10 14:37:36 +00:00
|
|
|
* if addr is unset, global values are stored in the global attributes list
|
|
|
|
* if addr is set, per-link values for the given address are stored in the link attributes list
|
2009-03-26 20:56:47 +00:00
|
|
|
*/
|
2009-06-10 14:37:36 +00:00
|
|
|
extern int wprobe_request_data(struct wprobe_iface *dev, const unsigned char *addr);
|
2009-03-26 20:56:47 +00:00
|
|
|
|
|
|
|
#endif
|