luci-0.8: splash: clean up cli utility, preserver black- and whitelist entries on sync, use iptparser to find rules
This commit is contained in:
parent
c2c366ab61
commit
b4729018ac
1 changed files with 64 additions and 56 deletions
|
@ -1,39 +1,35 @@
|
||||||
#!/usr/bin/lua
|
#!/usr/bin/lua
|
||||||
|
|
||||||
require("luci.http")
|
|
||||||
require("luci.util")
|
require("luci.util")
|
||||||
require("luci.model.uci")
|
require("luci.model.uci")
|
||||||
|
require("luci.sys.iptparser")
|
||||||
|
|
||||||
-- Init state session
|
-- Init state session
|
||||||
local uci = luci.model.uci.cursor_state()
|
local uci = luci.model.uci.cursor_state()
|
||||||
|
local ipt = luci.sys.iptparser.IptParser()
|
||||||
|
|
||||||
|
|
||||||
function main(argv)
|
function main(argv)
|
||||||
local cmd = argv[1]
|
local cmd = argv[1]
|
||||||
local arg = argv[2]
|
local arg = argv[2]
|
||||||
|
|
||||||
if cmd == "status" then
|
if cmd == "status" and arg then
|
||||||
if not arg then
|
if islisted("whitelist", arg) then
|
||||||
os.exit(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
if iswhitelisted(arg) then
|
|
||||||
print("whitelisted")
|
print("whitelisted")
|
||||||
os.exit(0)
|
elseif islisted("blacklist", arg) then
|
||||||
|
print("blacklisted")
|
||||||
|
else
|
||||||
|
local lease = haslease(arg)
|
||||||
|
if lease and lease.kicked then
|
||||||
|
print("kicked")
|
||||||
|
elseif lease then
|
||||||
|
print("lease")
|
||||||
|
else
|
||||||
|
print("unknown")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if haslease(arg) then
|
|
||||||
print("lease")
|
|
||||||
os.exit(0)
|
|
||||||
end
|
|
||||||
|
|
||||||
print("unknown")
|
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
elseif cmd == "add" then
|
elseif cmd == "add" and arg then
|
||||||
if not arg then
|
|
||||||
os.exit(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
if not haslease(arg) then
|
if not haslease(arg) then
|
||||||
add_lease(arg)
|
add_lease(arg)
|
||||||
else
|
else
|
||||||
|
@ -41,11 +37,7 @@ function main(argv)
|
||||||
os.exit(2)
|
os.exit(2)
|
||||||
end
|
end
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
elseif cmd == "remove" then
|
elseif cmd == "remove" and arg then
|
||||||
if not arg then
|
|
||||||
os.exit(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
remove_lease(arg)
|
remove_lease(arg)
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
elseif cmd == "sync" then
|
elseif cmd == "sync" then
|
||||||
|
@ -72,19 +64,10 @@ end
|
||||||
-- Remove a lease from state and invoke remove_rule
|
-- Remove a lease from state and invoke remove_rule
|
||||||
function remove_lease(mac)
|
function remove_lease(mac)
|
||||||
mac = mac:lower()
|
mac = mac:lower()
|
||||||
local del = {}
|
remove_rule(mac)
|
||||||
|
|
||||||
uci:foreach("luci_splash", "lease",
|
uci:delete_all("luci_splash", "lease",
|
||||||
function (section)
|
function(s) return ( s.mac:lower() == mac ) end)
|
||||||
if section.mac:lower() == mac then
|
|
||||||
table.insert(del, section[".name"])
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
for i,j in ipairs(del) do
|
|
||||||
remove_rule(j)
|
|
||||||
uci:delete("luci_splash", j)
|
|
||||||
end
|
|
||||||
|
|
||||||
uci:save("luci_splash")
|
uci:save("luci_splash")
|
||||||
end
|
end
|
||||||
|
@ -92,54 +75,76 @@ end
|
||||||
|
|
||||||
-- Add an iptables rule
|
-- Add an iptables rule
|
||||||
function add_rule(mac)
|
function add_rule(mac)
|
||||||
|
os.execute("iptables -I luci_splash_counter -m mac --mac-source '"..mac.."'")
|
||||||
return os.execute("iptables -t nat -I luci_splash_leases -m mac --mac-source '"..mac.."' -j RETURN")
|
return os.execute("iptables -t nat -I luci_splash_leases -m mac --mac-source '"..mac.."' -j RETURN")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Remove an iptables rule
|
-- Remove an iptables rule
|
||||||
function remove_rule(mac)
|
function remove_rule(mac)
|
||||||
return os.execute("iptables -t nat -D luci_splash_leases -m mac --mac-source '"..mac.."' -j RETURN")
|
for _, r in ipairs(ipt:find({table="filter", chain="luci_splash_counter"})) do
|
||||||
|
if r.options and #r.options >= 2 and r.options[1] == "MAC" and
|
||||||
|
r.options[2]:lower() == mac:lower()
|
||||||
|
then
|
||||||
|
os.execute("iptables -D luci_splash_counter -m mac --mac-source %q -j %s"
|
||||||
|
%{ mac, r.target })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for _, r in ipairs(ipt:find({table="nat", chain="luci_splash_leases"})) do
|
||||||
|
if r.options and #r.options >= 2 and r.options[1] == "MAC" and
|
||||||
|
r.options[2]:lower() == mac:lower()
|
||||||
|
then
|
||||||
|
os.execute("iptables -t nat -D luci_splash_leases -m mac --mac-source %q -j %s"
|
||||||
|
%{ mac, r.target })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
ipt:resync()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Check whether a MAC-Address is listed in the lease state list
|
-- Check whether a MAC-Address is listed in the lease state list
|
||||||
function haslease(mac)
|
function haslease(mac)
|
||||||
mac = mac:lower()
|
mac = mac:lower()
|
||||||
local stat = false
|
local lease = nil
|
||||||
|
|
||||||
uci:foreach("luci_splash", "lease",
|
uci:foreach("luci_splash", "lease",
|
||||||
function (section)
|
function (section)
|
||||||
if section.mac:lower() == mac then
|
if section.mac:lower() == mac then
|
||||||
stat = true
|
lease = section
|
||||||
return
|
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
return stat
|
return lease
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Check whether a MAC-Address is whitelisted
|
-- Check whether a MAC-Address is in given list
|
||||||
function iswhitelisted(mac)
|
function islisted(what, mac)
|
||||||
mac = mac:lower()
|
mac = mac:lower()
|
||||||
|
|
||||||
uci:foreach("luci_splash", "whitelist",
|
uci:foreach("luci_splash", what,
|
||||||
function (section)
|
function (section)
|
||||||
if section.mac:lower() == mac then
|
if section.mac:lower() == mac then
|
||||||
stat = true
|
stat = true
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Returns a list of MAC-Addresses for which a rule is existing
|
-- Returns a list of MAC-Addresses for which a rule is existing
|
||||||
function listrules()
|
function listrules()
|
||||||
local cmd = "iptables -t nat -L luci_splash_leases | grep RETURN |"
|
local macs = { }
|
||||||
cmd = cmd .. "egrep -io [0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+"
|
for i, r in ipairs(ipt:find({table="nat", chain="luci_splash_leases"})) do
|
||||||
return luci.util.split(luci.util.exec(cmd))
|
if r.options and #r.options >= 2 and r.options[1] == "MAC" then
|
||||||
|
macs[r.options[2]:lower()] = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return luci.util.keys(macs)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -164,15 +169,18 @@ function sync()
|
||||||
if v[".type"] == "lease" then
|
if v[".type"] == "lease" then
|
||||||
if os.difftime(time, tonumber(v.start)) > leasetime then
|
if os.difftime(time, tonumber(v.start)) > leasetime then
|
||||||
-- Remove expired
|
-- Remove expired
|
||||||
remove_rule(v.mac)
|
remove_rule(v.mac, v.kicked)
|
||||||
else
|
else
|
||||||
-- Rewrite state
|
-- Rewrite state
|
||||||
uci:section("luci_splash", "lease", nil, {
|
uci:section("luci_splash", "lease", nil, {
|
||||||
mac = v.mac,
|
mac = v.mac,
|
||||||
start = v.start
|
start = v.start,
|
||||||
|
kicked = v.kicked
|
||||||
})
|
})
|
||||||
written[v.mac:lower()] = 1
|
written[v.mac:lower()] = 1
|
||||||
end
|
end
|
||||||
|
elseif v[".type"] == "whitelist" or v[".type"] == "blacklist" then
|
||||||
|
written[v.mac:lower()] = 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -187,4 +195,4 @@ function sync()
|
||||||
uci:save("luci_splash")
|
uci:save("luci_splash")
|
||||||
end
|
end
|
||||||
|
|
||||||
main(arg)
|
main(arg)
|
||||||
|
|
Loading…
Reference in a new issue