summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-07-25 15:52:17 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-07-25 15:52:17 +0000
commitb84346e141eb29aa4c4da5fec0930940b8636cf6 (patch)
tree41e8ffea8b3068e3197567bf8d56e547869cd342
parentbd7642f1a96453eb6b6af9c13e861d413eac9afa (diff)
downloadmtk-20170518-b84346e141eb29aa4c4da5fec0930940b8636cf6.zip
mtk-20170518-b84346e141eb29aa4c4da5fec0930940b8636cf6.tar.gz
mtk-20170518-b84346e141eb29aa4c4da5fec0930940b8636cf6.tar.bz2
iwinfo: avoid creating tmp.* ifaces for scanning
If the iface to scan on already is in ad-hoc, station or monitor mode then do not spawn a temporary iface. Also preventively disable IPv6 on temporary ifaces before bringing them up to avoid potential security issues. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 41830
-rw-r--r--package/network/utils/iwinfo/src/iwinfo_nl80211.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/package/network/utils/iwinfo/src/iwinfo_nl80211.c b/package/network/utils/iwinfo/src/iwinfo_nl80211.c
index c8b167b..5550e92 100644
--- a/package/network/utils/iwinfo/src/iwinfo_nl80211.c
+++ b/package/network/utils/iwinfo/src/iwinfo_nl80211.c
@@ -720,9 +720,10 @@ out:
static char * nl80211_ifadd(const char *ifname)
{
int phyidx;
- char *rv = NULL;
+ char *rv = NULL, path[PATH_MAX];
static char nif[IFNAMSIZ] = { 0 };
struct nl80211_msg_conveyor *req, *res;
+ FILE *sysfs;
req = nl80211_msg(ifname, NL80211_CMD_NEW_INTERFACE, 0);
if (req)
@@ -734,6 +735,15 @@ static char * nl80211_ifadd(const char *ifname)
nl80211_send(req, NULL, NULL);
+ snprintf(path, sizeof(path) - 1,
+ "/proc/sys/net/ipv6/conf/%s/disable_ipv6", nif);
+
+ if ((sysfs = fopen(path, "w")) != NULL)
+ {
+ fwrite("0\n", 1, 2, sysfs);
+ fclose(sysfs);
+ }
+
rv = nif;
nla_put_failure:
@@ -1865,7 +1875,7 @@ static int nl80211_get_scanlist_nl(const char *ifname, char *buf, int *len)
static int nl80211_get_scanlist(const char *ifname, char *buf, int *len)
{
- int freq, rssi, qmax, count;
+ int freq, rssi, qmax, count, mode;
char *res;
char ssid[128] = { 0 };
char bssid[18] = { 0 };
@@ -1983,6 +1993,16 @@ static int nl80211_get_scanlist(const char *ifname, char *buf, int *len)
}
}
+ /* station / ad-hoc / monitor scan */
+ else if (!nl80211_get_mode(ifname, &mode) &&
+ (mode == IWINFO_OPMODE_ADHOC ||
+ mode == IWINFO_OPMODE_CLIENT ||
+ mode == IWINFO_OPMODE_MONITOR) &&
+ iwinfo_ifup(ifname))
+ {
+ return nl80211_get_scanlist_nl(ifname, buf, len);
+ }
+
/* AP scan */
else
{