applications/luci-firewall: fix rule table formatting, add mac & ip hints to various ip related fields

This commit is contained in:
Jo-Philipp Wich 2012-08-08 15:20:07 +00:00
parent df8601c864
commit acb289083c
6 changed files with 117 additions and 95 deletions

View file

@ -91,6 +91,10 @@ o.rmempty = true
o.datatype = "macaddr" o.datatype = "macaddr"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.mac_hints(function(mac, name)
o:value(mac, "%s (%s)" %{ mac, name })
end)
o = s:option(Value, "src_ip", o = s:option(Value, "src_ip",
translate("Source IP address"), translate("Source IP address"),
@ -99,6 +103,10 @@ o.rmempty = true
o.datatype = "neg(ip4addr)" o.datatype = "neg(ip4addr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.ipv4_hints(function(ip, name)
o:value(ip, "%s (%s)" %{ ip, name })
end)
o = s:option(Value, "src_port", o = s:option(Value, "src_port",
translate("Source port"), translate("Source port"),
@ -112,6 +120,11 @@ o = s:option(Value, "src_dip",
translate("External IP address"), translate("External IP address"),
translate("Only match incoming traffic directed at the given IP address.")) translate("Only match incoming traffic directed at the given IP address."))
luci.sys.net.ipv4_hints(function(ip, name)
o:value(ip, "%s (%s)" %{ ip, name })
end)
o.rmempty = true o.rmempty = true
o.datatype = "ip4addr" o.datatype = "ip4addr"
o.placeholder = translate("any") o.placeholder = translate("any")
@ -134,9 +147,10 @@ o = s:option(Value, "dest_ip", translate("Internal IP address"),
translate("Redirect matched incoming traffic to the specified \ translate("Redirect matched incoming traffic to the specified \
internal host")) internal host"))
o.datatype = "ip4addr" o.datatype = "ip4addr"
for i, dataset in ipairs(sys.net.arptable()) do
o:value(dataset["IP address"]) luci.sys.net.ipv4_hints(function(ip, name)
end o:value(ip, "%s (%s)" %{ ip, name })
end)
o = s:option(Value, "dest_port", o = s:option(Value, "dest_port",

View file

@ -2,6 +2,7 @@
LuCI - Lua Configuration Interface LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -9,7 +10,6 @@ You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]-- ]]--
local ds = require "luci.dispatcher" local ds = require "luci.dispatcher"
@ -75,17 +75,15 @@ end
ft.opt_name(s, DummyValue, translate("Name")) ft.opt_name(s, DummyValue, translate("Name"))
proto = s:option(DummyValue, "proto", translate("Protocol")) local function forward_proto_txt(self, s)
proto.rawhtml = true return "%s-%s" %{
function proto.cfgvalue(self, s) translate("IPv4"),
return ft.fmt_proto(self.map:get(s, "proto")) or "Any" ft.fmt_proto(self.map:get(s, "proto"),
self.map:get(s, "icmp_type")) or "TCP+UDP"
}
end end
local function forward_src_txt(self, s)
src = s:option(DummyValue, "src", translate("Source"))
src.rawhtml = true
src.width = "20%"
function src.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone")) local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host")) local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host"))
local p = ft.fmt_port(self.map:get(s, "src_port")) local p = ft.fmt_port(self.map:get(s, "src_port"))
@ -100,23 +98,32 @@ function src.cfgvalue(self, s)
end end
end end
via = s:option(DummyValue, "via", translate("Via")) local function forward_via_txt(self, s)
via.rawhtml = true
via.width = "20%"
function via.cfgvalue(self, s)
local a = ft.fmt_ip(self.map:get(s, "src_dip"), translate("any router IP")) local a = ft.fmt_ip(self.map:get(s, "src_dip"), translate("any router IP"))
local p = ft.fmt_port(self.map:get(s, "src_dport")) local p = ft.fmt_port(self.map:get(s, "src_dport"))
if p then if p then
return translatef("To %s at %s", a, p) return translatef("Via %s at %s", a, p)
else else
return translatef("To %s", a) return translatef("Via %s", a)
end end
end end
dest = s:option(DummyValue, "dest", translate("Destination")) match = s:option(DummyValue, "match", translate("Match"))
match.rawhtml = true
match.width = "50%"
function match.cfgvalue(self, s)
return "<small>%s<br />%s<br />%s</small>" % {
forward_proto_txt(self, s),
forward_src_txt(self, s),
forward_via_txt(self, s)
}
end
dest = s:option(DummyValue, "dest", translate("Forward to"))
dest.rawhtml = true dest.rawhtml = true
dest.width = "30%" dest.width = "40%"
function dest.cfgvalue(self, s) function dest.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone")) local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host")) local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host"))
@ -124,9 +131,9 @@ function dest.cfgvalue(self, s)
ft.fmt_port(self.map:get(s, "src_dport")) ft.fmt_port(self.map:get(s, "src_dport"))
if p then if p then
return translatef("Forward to %s, %s in %s", a, p, z) return translatef("%s, %s in %s", a, p, z)
else else
return translatef("Forward to %s in %s", a, z) return translatef("%s in %s", a, z)
end end
end end

View file

@ -2,7 +2,7 @@
LuCI - Lua Configuration Interface LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2010 Jo-Philipp Wich <xm@subsignal.org> Copyright 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -10,7 +10,6 @@ You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]-- ]]--
local sys = require "luci.sys" local sys = require "luci.sys"
@ -112,12 +111,20 @@ elseif rule_type == "redirect" then
o.datatype = "neg(macaddr)" o.datatype = "neg(macaddr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.mac_hints(function(mac, name)
o:value(mac, "%s (%s)" %{ mac, name })
end)
o = s:option(Value, "src_ip", translate("Source IP address")) o = s:option(Value, "src_ip", translate("Source IP address"))
o.rmempty = true o.rmempty = true
o.datatype = "neg(ipaddr)" o.datatype = "neg(ipaddr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.ipv4_hints(function(ip, name)
o:value(ip, "%s (%s)" %{ ip, name })
end)
o = s:option(Value, "src_port", o = s:option(Value, "src_port",
translate("Source port"), translate("Source port"),
@ -137,9 +144,9 @@ elseif rule_type == "redirect" then
o = s:option(Value, "dest_ip", translate("Destination IP address")) o = s:option(Value, "dest_ip", translate("Destination IP address"))
o.datatype = "neg(ip4addr)" o.datatype = "neg(ip4addr)"
for i, dataset in ipairs(luci.sys.net.arptable()) do luci.sys.net.ipv4_hints(function(ip, name)
o:value(dataset["IP address"]) o:value(ip, "%s (%s)" %{ ip, name })
end end)
o = s:option(Value, "dest_port", o = s:option(Value, "dest_port",
@ -275,11 +282,19 @@ else
o.datatype = "list(macaddr)" o.datatype = "list(macaddr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.mac_hints(function(mac, name)
o:value(mac, "%s (%s)" %{ mac, name })
end)
o = s:option(Value, "src_ip", translate("Source address")) o = s:option(Value, "src_ip", translate("Source address"))
o.datatype = "neg(ipaddr)" o.datatype = "neg(ipaddr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.ipv4_hints(function(ip, name)
o:value(ip, "%s (%s)" %{ ip, name })
end)
o = s:option(Value, "src_port", translate("Source port")) o = s:option(Value, "src_port", translate("Source port"))
o.datatype = "list(neg(portrange))" o.datatype = "list(neg(portrange))"
@ -297,6 +312,10 @@ else
o.datatype = "neg(ipaddr)" o.datatype = "neg(ipaddr)"
o.placeholder = translate("any") o.placeholder = translate("any")
luci.sys.net.ipv4_hints(function(ip, name)
o:value(ip, "%s (%s)" %{ ip, name })
end)
o = s:option(Value, "dest_port", translate("Destination port")) o = s:option(Value, "dest_port", translate("Destination port"))
o.datatype = "list(neg(portrange))" o.datatype = "list(neg(portrange))"

View file

@ -2,6 +2,7 @@
LuCI - Lua Configuration Interface LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -9,7 +10,6 @@ You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]-- ]]--
local ds = require "luci.dispatcher" local ds = require "luci.dispatcher"
@ -84,30 +84,21 @@ end
ft.opt_name(s, DummyValue, translate("Name")) ft.opt_name(s, DummyValue, translate("Name"))
family = s:option(DummyValue, "family", translate("Family")) local function rule_proto_txt(self, s)
function family.cfgvalue(self, s)
local f = self.map:get(s, "family") local f = self.map:get(s, "family")
local p = ft.fmt_proto(self.map:get(s, "proto"),
self.map:get(s, "icmp_type")) or "TCP+UDP"
if f and f:match("4") then if f and f:match("4") then
return translate("IPv4") return "%s-%s" %{ translate("IPv4"), p }
elseif f and f:match("6") then elseif f and f:match("6") then
return translate("IPv6") return "%s-%s" %{ translate("IPv6"), p }
else else
return translate("Any") return "%s %s" %{ translate("Any"), p }
end end
end end
proto = s:option(DummyValue, "proto", translate("Protocol")) local function rule_src_txt(self, s)
proto.rawhtml = true
proto.width = "20%"
function proto.cfgvalue(self, s)
return ft.fmt_proto(self.map:get(s, "proto"), self.map:get(s, "icmp_type"))
or "TCP+UDP"
end
src = s:option(DummyValue, "src", translate("Source"))
src.rawhtml = true
src.width = "20%"
function src.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone")) local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host")) local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host"))
local p = ft.fmt_port(self.map:get(s, "src_port")) local p = ft.fmt_port(self.map:get(s, "src_port"))
@ -122,10 +113,7 @@ function src.cfgvalue(self, s)
end end
end end
dest = s:option(DummyValue, "dest", translate("Destination")) local function rule_dest_txt(self, s)
dest.rawhtml = true
dest.width = "20%"
function dest.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "dest")) local z = ft.fmt_zone(self.map:get(s, "dest"))
local p = ft.fmt_port(self.map:get(s, "dest_port")) local p = ft.fmt_port(self.map:get(s, "dest_port"))
@ -151,6 +139,30 @@ function dest.cfgvalue(self, s)
end end
end end
local function snat_dest_txt(self, s)
local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host"))
local p = ft.fmt_port(self.map:get(s, "dest_port")) or
ft.fmt_port(self.map:get(s, "src_dport"))
if p then
return translatef("To %s, %s in %s", a, p, z)
else
return translatef("To %s in %s", a, z)
end
end
match = s:option(DummyValue, "match", translate("Match"))
match.rawhtml = true
match.width = "70%"
function match.cfgvalue(self, s)
return "<small>%s<br />%s<br />%s</small>" % {
rule_proto_txt(self, s),
rule_src_txt(self, s),
rule_dest_txt(self, s)
}
end
target = s:option(DummyValue, "target", translate("Action")) target = s:option(DummyValue, "target", translate("Action"))
target.rawhtml = true target.rawhtml = true
@ -226,48 +238,18 @@ end
ft.opt_name(s, DummyValue, translate("Name")) ft.opt_name(s, DummyValue, translate("Name"))
proto = s:option(DummyValue, "proto", translate("Protocol")) match = s:option(DummyValue, "match", translate("Match"))
proto.rawhtml = true match.rawhtml = true
function proto.cfgvalue(self, s) match.width = "70%"
return ft.fmt_proto(self.map:get(s, "proto")) or "TCP+UDP" function match.cfgvalue(self, s)
return "<small>%s<br />%s<br />%s</small>" % {
rule_proto_txt(self, s),
rule_src_txt(self, s),
snat_dest_txt(self, s)
}
end end
snat = s:option(DummyValue, "via", translate("Action"))
src = s:option(DummyValue, "src", translate("Source"))
src.rawhtml = true
src.width = "20%"
function src.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host"))
local p = ft.fmt_port(self.map:get(s, "src_port"))
local m = ft.fmt_mac(self.map:get(s, "src_mac"))
if p and m then
return translatef("From %s in %s with source %s and %s", a, z, p, m)
elseif p or m then
return translatef("From %s in %s with source %s", a, z, p or m)
else
return translatef("From %s in %s", a, z)
end
end
dest = s:option(DummyValue, "dest", translate("Destination"))
dest.rawhtml = true
dest.width = "30%"
function dest.cfgvalue(self, s)
local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone"))
local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host"))
local p = ft.fmt_port(self.map:get(s, "dest_port")) or
ft.fmt_port(self.map:get(s, "src_dport"))
if p then
return translatef("To %s, %s in %s", a, p, z)
else
return translatef("To %s in %s", a, z)
end
end
snat = s:option(DummyValue, "via", translate("SNAT"))
snat.rawhtml = true snat.rawhtml = true
snat.width = "20%" snat.width = "20%"
function snat.cfgvalue(self, s) function snat.cfgvalue(self, s)

View file

@ -1,7 +1,7 @@
--[[ --[[
LuCI - Lua Configuration Interface LuCI - Lua Configuration Interface
Copyright 2011 Jo-Philipp Wich <xm@subsignal.org> Copyright 2011-2012 Jo-Philipp Wich <xm@subsignal.org>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -9,7 +9,6 @@ You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]-- ]]--
module("luci.tools.firewall", package.seeall) module("luci.tools.firewall", package.seeall)
@ -154,6 +153,7 @@ function fmt_proto(x, icmp_types)
v, n = fmt_neg(v) v, n = fmt_neg(v)
if v == "tcpudp" then if v == "tcpudp" then
l[#l+1] = "TCP" l[#l+1] = "TCP"
l[#l+1] = ", "
l[#l+1] = "UDP" l[#l+1] = "UDP"
l[#l+1] = ", " l[#l+1] = ", "
elseif v ~= "all" then elseif v ~= "all" then

View file

@ -45,9 +45,9 @@
cbi_validate_field('_newfwd.intport', true, 'portrange'); cbi_validate_field('_newfwd.intport', true, 'portrange');
cbi_combobox_init('_newfwd.intaddr', { cbi_combobox_init('_newfwd.intaddr', {
<% local i, e; for i, e in ipairs(luci.sys.net.arptable()) do -%> <% first = true; luci.sys.net.ipv4_hints(function(ip, name) %>
<%- if i > 1 then %>,<% end -%>'<%=e["IP address"]%>': '<%=e["IP address"]%>' <%- if first then first = false else %>,<% end -%>'<%=ip%>': '<%=ip%> (<%=name%>)'
<%- end %> }, '', '<%: -- custom -- %>'); <%- end) %> }, '', '<%: -- custom -- %>');
cbi_bind(document.getElementById('_newfwd.extport'), 'blur', cbi_bind(document.getElementById('_newfwd.extport'), 'blur',
function() { function() {