X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=libs%2Fsys%2Fluasrc%2Fsys.lua;h=6d000ae6e279bfba91846f58c526bb1bed87bdc1;hp=4e147c502a68abf7d8f0218e66bceb4b571150ea;hb=cca45d0bdbd73919ef5e9637273c54bcbd1b7a82;hpb=66736c857476550c68720a4cf933ab2f6d04031d diff --git a/libs/sys/luasrc/sys.lua b/libs/sys/luasrc/sys.lua index 4e147c502..6d000ae6e 100644 --- a/libs/sys/luasrc/sys.lua +++ b/libs/sys/luasrc/sys.lua @@ -31,6 +31,7 @@ local table = require "table" local nixio = require "nixio" local fs = require "nixio.fs" local iwinfo = require "iwinfo" +local uci = require "luci.model.uci" local luci = {} luci.util = require "luci.util" @@ -638,14 +639,45 @@ wifi = {} -- @param ifname String containing the interface name -- @return A wrapped iwinfo object instance function wifi.getiwinfo(ifname) - local t = iwinfo.type(ifname) - if t then - local x = iwinfo[t] - return setmetatable({}, { - __index = function(t, k) - if x[k] then return x[k](ifname) end - end - }) + if ifname then + local c = 0 + local u = uci.cursor_state() + local d, n = ifname:match("^(%w+)%.network(%d+)") + if d and n then + n = tonumber(n) + u:foreach("wireless", "wifi-iface", + function(s) + if s.device == d then + c = c + 1 + if c == n then + ifname = s.ifname or s.device + return false + end + end + end) + elseif u:get("wireless", ifname) == "wifi-device" then + u:foreach("wireless", "wifi-iface", + function(s) + if s.device == ifname and s.ifname then + ifname = s.ifname + return false + end + end) + end + + local t = iwinfo.type(ifname) + if t then + local x = iwinfo[t] + return setmetatable({}, { + __index = function(t, k) + if k == "ifname" then + return ifname + elseif x[k] then + return x[k](ifname) + end + end + }) + end end end @@ -705,7 +737,7 @@ end function wifi.channels(iface) local t = iwinfo.type(iface or "") local cns - if t and iwinfo[t] then + if iface and t and iwinfo[t] then cns = iwinfo[t].freqlist(iface) end