mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 09:39:25 +01:00
nl80211util: add nested attribute support
Adds support for nested attributes in nl80211_parse_attrs
This commit is contained in:
parent
f2961cd63a
commit
d9a16fee56
@ -128,6 +128,16 @@ static bool extract_iovec(const void *data, uint16_t len, void *o)
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool extract_nested(const void *data, uint16_t len, void *o)
|
||||
{
|
||||
const struct l_genl_attr *outer = data;
|
||||
struct l_genl_attr *nested = o;
|
||||
|
||||
l_genl_attr_recurse(outer, nested);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static attr_handler handler_for_type(enum nl80211_attrs type)
|
||||
{
|
||||
switch (type) {
|
||||
@ -157,6 +167,8 @@ static attr_handler handler_for_type(enum nl80211_attrs type)
|
||||
return extract_uint32;
|
||||
case NL80211_ATTR_FRAME:
|
||||
return extract_iovec;
|
||||
case NL80211_ATTR_WIPHY_BANDS:
|
||||
return extract_nested;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -222,6 +234,10 @@ int nl80211_parse_attrs(struct l_genl_msg *msg, int tag, ...)
|
||||
goto done;
|
||||
}
|
||||
|
||||
/* For nested attributes use the outer attribute as data */
|
||||
if (entry->handler == extract_nested)
|
||||
data = &attr;
|
||||
|
||||
if (!entry->handler(data, len, entry->data)) {
|
||||
ret = -EINVAL;
|
||||
goto done;
|
||||
|
Loading…
Reference in New Issue
Block a user