mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-03 16:27:44 +01:00
This is a bug revealed in r41830.
First, the static variable `char nif[IFNAMSIZ]` of nl80211_phy2ifname()
would be zeroed out if the argument is "wlan0" or the like. This will
happen in the following call stack.
nl80211_get_scanlist("radio0", buf, len);
nl80211_phy2ifname("radio0") // return static var nif with content "wlan0"
nl80211_get_scanlist(nif, buf, len); // tail call
nl80211_get_mode(nif);
nl80211_phy2ifname(nif); // zero out nif
Later we try nl80211_ifadd("") which was supposed to create interface
"tmp.", but that won't happen because nl80211_msg() will put an invalid
ifidx 0 to the nlmsg.
Then iwinfo_ifup() and iwinfo_ifdown() would fail and happily
nl80211_get_scanlist() returned 0 and left *len undefined.
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
SVN-Revision: 42151
|
||
|---|---|---|
| .. | ||
| api | ||
| include | ||
| COPYING | ||
| hardware.txt | ||
| iwinfo_cli.c | ||
| iwinfo_lib.c | ||
| iwinfo_lua.c | ||
| iwinfo_madwifi.c | ||
| iwinfo_nl80211.c | ||
| iwinfo_nl80211.h | ||
| iwinfo_utils.c | ||
| iwinfo_wext.c | ||
| iwinfo_wext.h | ||
| iwinfo_wext_scan.c | ||
| iwinfo_wl.c | ||
| Makefile | ||