我正在努力使用Wireless Extension Tools for Linux library以下Qt/C++
方法读取Wifi卡的当前频道:
const UeTypeCurrentFrequencyChannel& UeNetworkManager::ueCurrentFrequencyChannel(const QString& interfaceName)
{
static UeTypeCurrentFrequencyChannel result=UeTypeCurrentFrequencyChannel();
iwreq wrq;
iw_range range;
int kernelSocket=iw_sockets_open();
if(iw_get_range_info(kernelSocket,
interfaceName.toLocal8Bit().constData(),
&range)>=0)
{
if(iw_get_ext(kernelSocket,
interfaceName.toLocal8Bit().constData(),
SIOCGIWFREQ,
&wrq)>=0)
{
//BUG current frequency and channel is not read, it might be becuase of nonroot credentials - it returns error 22 (EINVAL - Invalid argument), why?
result.first=iw_freq2float(&(wrq.u.freq));
result.second=iw_freq_to_channel(result.first.toDouble(),
&range);
qDebug() << Q_FUNC_INFO
<< "success - current channel:"
<< result;
}
else
{
result.first=QString(interfaceName);
result.second=QString(tr("current channel read failed."));
qDebug() << Q_FUNC_INFO
<< "error (iw_get_ext):"
<< errno;
} // if
}
else
{
result.first=QString(interfaceName);
result.second=QString(tr("current channel read failed."));
qDebug() << Q_FUNC_INFO
<< "error (iw_get_range_info):"
<< errno;
} // if
iw_sockets_close(kernelSocket);
return result;
} // ueCurrentFrequencyChannel
现在,iw_get_ext
始终返回-1
,errno
设置为22
的值。我已查看了errno.h并搜索了错误22
,并且我发现了以下错误声明:
#define EINVAL 22 /* Invalid argument */
。
在尝试使用Invalid argument
查询网络适配器的当前频道时,为什么会出现ioctl
错误?我已经启动了应用,其中包含普通用户和root 的代码,随时都有相同的结果:
static const UeTypeCurrentFrequencyChannel& UeNetworkManager::ueCurrentFrequencyChannel(const QString&) error(iw_get_ext): 22
为什么,我缺少什么?
附录#1:
如果我使用终端中的iwlist
扫描WiFi卡和网络,我会收到所有必需的信息,无论我是以普通用户还是 root < / strong>即可。
附录#2:
代码已升级,iw_get_range_info()
有效。
附录#3: 情况刚刚结束;在随机的场合,我获得了成功:
static const UeTypeCurrentFrequencyChannel& UeNetworkManager::ueCurrentFrequencyChannel(const QString&) success - current channel: QPair(QVariant(double, 2.412e+09),QVariant(int, 1))
与iwlist scan output
相同:
wlan0 Scan completed :
Cell 01 - Address: 64:6E:EA:22:21:D4
Channel:1
Frequency:2.412 GHz (Channel 1)
经过一段时间的编程/测试应用程序后,错误会再次出现,但iwlist scan
仍然有效。我正在使用Ubuntu 16.04.1 LTS
内核Linux workstation 4.4.0-38-generic #57-Ubuntu SMP Tue Sep 6 15:42:33 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
问题是否可能与WiFi
卡Power Management
?
答案 0 :(得分:2)
看看cfg80211_wext_giwfreq。这就是为什么如果 EINVAL
卡未使用任何连接模式,您将获得Wi-Fi
当前频道。
命令iwlist
扫描有效,因为Wi-Fi卡会在扫描时切换到AP client mode
。