1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*/
#ifndef USBG_FUNCTION_NET__
#define USBG_FUNCTION_NET__
#include <usbg/usbg.h>
#include <malloc.h>
#ifdef __cplusplus
extern "C" {
#endif
struct usbg_f_net;
typedef struct usbg_f_net usbg_f_net;
struct usbg_f_net_attrs {
struct ether_addr dev_addr;
struct ether_addr host_addr;
const char *ifname;
int qmult;
unsigned int class_;
unsigned int subclass;
unsigned int protocol;
};
enum usbg_f_net_attr {
USBG_F_NET_ATTR_MIN = 0,
USBG_F_NET_DEV_ADDR = USBG_F_NET_ATTR_MIN,
USBG_F_NET_HOST_ADDR,
USBG_F_NET_IFNAME,
USBG_F_NET_QMULT,
USBG_F_NET_CLASS,
USBG_F_NET_SUBCLASS,
USBG_F_NET_PROTOCOL,
USBG_F_NET_ATTR_MAX
};
union usbg_f_net_attr_val {
struct ether_addr dev_addr;
struct ether_addr host_addr;
const char *ifname;
unsigned int qmult;
unsigned int class_;
unsigned int subclass;
unsigned int protocol;
};
#define USBG_F_NET_ETHER_ADDR_TO_ATTR_VAL(WHAT) \
USBG_TO_UNION(usbg_f_net_attr_val, dev_addr, WHAT)
#define USBG_F_NET_INT_TO_ATTR_VAL(WHAT) \
USBG_TO_UNION(usbg_f_net_attr_val, qmult, WHAT)
/**
* @brief Cast from generic function to net function
* @param[in] f function to be converted to net funciton.
* Should be one of types:
* ecm, subset, ncm, eem, rndis
* @return Converted net function or NULL if function hasn't suitable type
*/
usbg_f_net *usbg_to_net_function(usbg_function *f);
/**
* @brief Cast form net function to generic one
* @param[in] nf function to be converted to generic one
* @return Generic usbg function
*/
usbg_function *usbg_from_net_function(usbg_f_net *nf);
/**
* @brief Get attributes of given net function
* @param[in] nf Pointer to net function
* @param[out] attrs Structure to be filled with data
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_net_get_attrs(usbg_f_net *nf, struct usbg_f_net_attrs *attrs);
/**
* @brief Set attributes of given net function
* @param[in] nf Pointer to net function
* @param[in] attrs to be set
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_net_set_attrs(usbg_f_net *nf,
const struct usbg_f_net_attrs *attrs);
/**
* @brief Cleanup attributes structure after usage
* @param[in] attrs to be cleaned up
*/
static inline void usbg_f_net_cleanup_attrs(struct usbg_f_net_attrs *attrs)
{
if (attrs) {
free((char *)attrs->ifname);
attrs->ifname = NULL;
}
}
/**
* @brief Get the value of single attribute
* @param[in] nf Pointer to net function
* @param[in] attr Code of attribute which value should be taken
* @param[out] val Current value of this attribute
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_net_get_attr_val(usbg_f_net *nf, enum usbg_f_net_attr attr,
union usbg_f_net_attr_val *val);
/**
* @brief Set the value of single attribute
* @param[in] nf Pointer to net function
* @param[in] attr Code of attribute which value should be set
* @param[in] val Value of attribute which should be set
* @return 0 on success usbg_error if error occurred.
*/
int usbg_f_net_set_attr_val(usbg_f_net *nf, enum usbg_f_net_attr attr,
const union usbg_f_net_attr_val val);
/**
* @brief Get the value of device side MAC address
* @param[in] nf Pointer to net function
* @param[out] val Current value of this attribute
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_dev_addr(usbg_f_net *nf,
struct ether_addr *addr)
{
union usbg_f_net_attr_val val = { .dev_addr = *addr, };
return usbg_f_net_get_attr_val(nf, USBG_F_NET_DEV_ADDR, &val);
}
/**
* @brief Set the value of device side MAC address
* @param[in] nf Pointer to net function
* @param[out] val Value of attribute which should be set
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_dev_addr(usbg_f_net *nf,
const struct ether_addr *addr)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_DEV_ADDR,
USBG_F_NET_ETHER_ADDR_TO_ATTR_VAL(*addr));
}
/**
* @brief Get the value of host side MAC address
* @param[in] nf Pointer to net function
* @param[out] val Current value of this attribute
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_host_addr(usbg_f_net *nf,
struct ether_addr *addr)
{
union usbg_f_net_attr_val val = { .host_addr = *addr, };
return usbg_f_net_get_attr_val(nf, USBG_F_NET_HOST_ADDR, &val);
}
/**
* @brief Set the value of host side MAC address
* @param[in] nf Pointer to net function
* @param[in] val Value of attribute which should be set
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_host_addr(usbg_f_net *nf,
const struct ether_addr *addr)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_HOST_ADDR,
USBG_F_NET_ETHER_ADDR_TO_ATTR_VAL(*addr));
}
/**
* @brief Get the value of interface name associated with this function
* into newly allocated storage
* @param[in] nf Pointer to net function
* @param[out] ifname Newly allocated string containing name of interface
* @return 0 on success usbg_error if error occurred.
* @note returned ifname should be free() by caller
*/
static inline int usbg_f_net_get_ifname(usbg_f_net *nf, char **ifname)
{
return usbg_f_net_get_attr_val(nf, USBG_F_NET_IFNAME,
(union usbg_f_net_attr_val *)ifname);
}
/**
* @brief Get the value of interface name associated with this function
* into user buffer
* @param[in] nf Pointer to net function
* @param[out] buf Place where ifname should be stored
* @param[in] len Size of buffer
* @return Number of bytes placed into buf (excluding '\0') or the number of
* characters which would have been written to the buffer if enough
* space had been available. (just like snprintf() family). This may
* also return negative error code from usbg_error.
*/
int usbg_f_net_get_ifname_s(usbg_f_net *nf, char *buf, int len);
/**
* @brief Get the value of request queue length multiplier
* @param[in] nf Pointer to net function
* @param[out] qmult Current multiplier of queue len
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_qmult(usbg_f_net *nf, unsigned int *qmult)
{
return usbg_f_net_get_attr_val(nf, USBG_F_NET_QMULT,
(union usbg_f_net_attr_val *)qmult);
}
/**
* @brief Set the value of request queue length multiplier
* @param[in] nf Pointer to net function
* @param[in] qmult Multiplier of queue len which should be set
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_qmult(usbg_f_net *nf, unsigned int qmult)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_QMULT,
USBG_F_NET_INT_TO_ATTR_VAL(qmult));
}
/**
* @brief Get the value of usb function class
* @param[in] nf Pointer to net function
* @param[out] class_ Current class identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_class(usbg_f_net *nf, unsigned int *class_)
{
return usbg_f_net_get_attr_val(nf, USBG_F_NET_CLASS,
(union usbg_f_net_attr_val *)class_);
}
/**
* @brief Set the value of usb function class
* @param[in] nf Pointer to net function
* @param[in] class_ Class identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_class(usbg_f_net *nf, unsigned int class_)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_CLASS,
USBG_F_NET_INT_TO_ATTR_VAL(class_));
}
/**
* @brief Get the value of usb function subclass
* @param[in] nf Pointer to net function
* @param[out] subclass Current subclass identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_subclass(usbg_f_net *nf, int *subclass)
{
return usbg_f_net_get_attr_val(nf, USBG_F_NET_SUBCLASS,
(union usbg_f_net_attr_val *)subclass);
}
/**
* @brief Set the value of usb function subclass
* @param[in] nf Pointer to net function
* @param[in] subclass Subclass identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_subclass(usbg_f_net *nf, unsigned int subclass)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_SUBCLASS,
USBG_F_NET_INT_TO_ATTR_VAL(subclass));
}
/**
* @brief Get the value of usb function protocol
* @param[in] nf Pointer to net function
* @param[out] protocol Current protocol identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_get_protocol(usbg_f_net *nf, int *protocol)
{
return usbg_f_net_get_attr_val(nf, USBG_F_NET_PROTOCOL,
(union usbg_f_net_attr_val *)protocol);
}
/**
* @brief Set the value of usb function protocol
* @param[in] nf Pointer to net function
* @param[in] protocol protocol identification
* @return 0 on success usbg_error if error occurred.
*/
static inline int usbg_f_net_set_protocol(usbg_f_net *nf, unsigned int protocol)
{
return usbg_f_net_set_attr_val(nf, USBG_F_NET_PROTOCOL,
USBG_F_NET_INT_TO_ATTR_VAL(protocol));
}
#ifdef __cplusplus
}
#endif
#endif /* USBG_FUNCTION_NET__ */
|