X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=iwinfo_nl80211.c;fp=iwinfo_nl80211.c;h=e0d0e0bb743d4633162fc43408c2975720cfb187;hb=a9f95570341baf2773a71585eef760ad5c257e65;hp=200be28d9a44aeb1e95528e10c2f0c63abf13046;hpb=c586cd3c3a68d564ec2d10a41c82725b2077b0ad;p=oweals%2Fiwinfo.git diff --git a/iwinfo_nl80211.c b/iwinfo_nl80211.c index 200be28..e0d0e0b 100644 --- a/iwinfo_nl80211.c +++ b/iwinfo_nl80211.c @@ -2926,37 +2926,37 @@ static int nl80211_get_mbssid_support(const char *ifname, int *buf) static int nl80211_get_hardware_id(const char *ifname, char *buf) { - int rv = -1; - char *res; + struct iwinfo_hardware_id *id = (struct iwinfo_hardware_id *)buf; + char *phy, num[8], path[PATH_MAX]; + int i; + + struct { const char *path; uint16_t *dest; } lookup[] = { + { "vendor", &id->vendor_id }, + { "device", &id->device_id }, + { "subsystem_vendor", &id->subsystem_vendor_id }, + { "subsystem_device", &id->subsystem_device_id } + }; - /* Got a radioX pseudo interface, find some interface on it or create one */ - if (!strncmp(ifname, "radio", 5)) - { - /* Reuse existing interface */ - if ((res = nl80211_phy2ifname(ifname)) != NULL) - { - rv = wext_ops.hardware_id(res, buf); - } + memset(id, 0, sizeof(*id)); - /* Need to spawn a temporary iface for finding IDs */ - else if ((res = nl80211_ifadd(ifname)) != NULL) - { - rv = wext_ops.hardware_id(res, buf); - nl80211_ifdel(res); - } - } - else + /* Try to determine the phy name from the given interface */ + phy = nl80211_ifname2phy(ifname); + + for (i = 0; i < ARRAY_SIZE(lookup); i++) { - rv = wext_ops.hardware_id(ifname, buf); + snprintf(path, sizeof(path), "/sys/class/%s/%s/device/%s", + phy ? "ieee80211" : "net", + phy ? phy : ifname, lookup[i].path); + + if (nl80211_readstr(path, num, sizeof(num)) > 0) + *lookup[i].dest = strtoul(num, NULL, 16); } /* Failed to obtain hardware IDs, search board config */ - if (rv) - { - rv = iwinfo_hardware_id_from_mtd((struct iwinfo_hardware_id *)buf); - } + if (id->vendor_id == 0 || id->device_id == 0) + return iwinfo_hardware_id_from_mtd(id); - return rv; + return 0; } static const struct iwinfo_hardware_entry *