applications/luci-ffwizard-leipzig:

- rewrite generator for dhcp subnets, can now work with any ip
	- add option for wan security
	- make ip input a single field
	- remember lat and lon values accross invocations
This commit is contained in:
Jo-Philipp Wich 2009-08-28 23:41:25 +00:00
parent 71e5891354
commit 60fd43ae23

View file

@ -19,6 +19,28 @@ local uci = require "luci.model.uci".cursor()
local tools = require "luci.tools.ffwizard" local tools = require "luci.tools.ffwizard"
local util = require "luci.util" local util = require "luci.util"
local sys = require "luci.sys" local sys = require "luci.sys"
local ip = require "luci.ip"
local function mksubnet(community, meship)
local subnet_prefix = tonumber(uci:get("freifunk", community, "splash_prefix")) or 27
local pool_network = uci:get("freifunk", community, "splash_network") or "10.104.0.0/16"
local pool = luci.ip.IPv4(pool_network)
if pool then
local hosts_per_subnet = 2^(32 - subnet_prefix)
local number_of_subnets = (2^pool:prefix())/hosts_per_subnet
local seed1, seed2 = meship:match("(%d+)%.(%d+)$")
math.randomseed(seed1 * seed2)
local subnet = pool:add(hosts_per_subnet * math.random(number_of_subnets))
local subnet_ipaddr = subnet:network(subnet_prefix):add(1):string()
local subnet_netmask = subnet:mask(subnet_prefix):string()
return subnet_ipaddr, subnet_netmask
end
end
-------------------- View -------------------- -------------------- View --------------------
@ -35,11 +57,11 @@ uci:foreach("wireless", "wifi-device",
main = f:field(Flag, "wifi", "Freifunkzugang einrichten") main = f:field(Flag, "wifi", "Freifunkzugang einrichten")
net = f:field(Value, "net", "Freifunknetz", "1. Teil der IP-Adresse") net = f:field(Value, "net", "Freifunk Community", "Mesh Netzbereich")
net.rmempty = true net.rmempty = true
net:depends("wifi", "1") net:depends("wifi", "1")
uci:foreach("freifunk", "community", function(s) uci:foreach("freifunk", "community", function(s)
net:value(s[".name"], "%s (%s)" % {s.name, s.prefix}) net:value(s[".name"], "%s (%s)" % {s.name, s.mesh_network or "?"})
end) end)
function net.cfgvalue(self, section) function net.cfgvalue(self, section)
@ -50,49 +72,64 @@ function net.write(self, section, value)
uci:save("freifunk") uci:save("freifunk")
end end
meship = f:field(Value, "meship", "Mesh IP Adresse", "Netzweit eindeutige Identifikation")
subnet = f:field(Value, "subnet", "Subnetz (Projekt)", "2. Teil der IP-Adresse") meship.rmempty = true
subnet.rmempty = true meship:depends("wifi", "1")
subnet:depends("wifi", "1") function meship.cfgvalue(self, section)
function subnet.cfgvalue(self, section) return uci:get("freifunk", "wizard", "meship")
return uci:get("freifunk", "wizard", "subnet")
end end
function subnet.write(self, section, value) function meship.write(self, section, value)
uci:set("freifunk", "wizard", "subnet", value) uci:set("freifunk", "wizard", "meship", value)
uci:save("freifunk") uci:save("freifunk")
end end
function meship.validate(self, value)
node = f:field(Value, "node", "Knoten", "3. Teil der IP-Adresse") local x = ip.IPv4(value)
node.rmempty = true return ( x and x:prefix() == 32 ) and x:string() or ""
node:depends("wifi", "1")
for i=1, 51 do
node:value(i)
end
function node.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "node")
end
function node.write(self, section, value)
uci:set("freifunk", "wizard", "node", value)
uci:save("freifunk")
end end
client = f:field(Flag, "client", "WLAN-DHCP anbieten") client = f:field(Flag, "client", "WLAN-DHCP anbieten")
client:depends("wifi", "1") client:depends("wifi", "1")
client.rmempty = true client.rmempty = false
function client.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "dhcp_splash") or "0"
end
olsr = f:field(Flag, "olsr", "OLSR einrichten") olsr = f:field(Flag, "olsr", "OLSR einrichten")
olsr.rmempty = true olsr.rmempty = true
lat = f:field(Value, "lat", "Latitude") lat = f:field(Value, "lat", "Latitude")
lat:depends("olsr", "1") lat:depends("olsr", "1")
function lat.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "latitude")
end
function lat.write(self, section, value)
uci:set("freifunk", "wizard", "latitude", value)
uci:save("freifunk")
end
lon = f:field(Value, "lon", "Longitude") lon = f:field(Value, "lon", "Longitude")
lon:depends("olsr", "1") lon:depends("olsr", "1")
function lon.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "longitude")
end
function lon.write(self, section, value)
uci:set("freifunk", "wizard", "longitude", value)
uci:save("freifunk")
end
share = f:field(Flag, "sharenet", "Eigenen Internetzugang freigeben") share = f:field(Flag, "sharenet", "Eigenen Internetzugang freigeben")
share.rmempty = true share.rmempty = true
wansec = f:field(Flag, "wansec", "WAN-Zugriff auf Gateway beschränken")
wansec.rmempty = false
wansec:depends("sharenet", "1")
function wansec.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "wan_security")
end
function wansec.write(self, section, value)
uci:set("freifunk", "wizard", "wan_security", value)
uci:save("freifunk")
end
-------------------- Control -------------------- -------------------- Control --------------------
function f.handle(self, state, data) function f.handle(self, state, data)
@ -122,33 +159,26 @@ function main.write(self, section, value)
end end
local device = dev:formvalue(section) local device = dev:formvalue(section)
local community, external local node_ip, external
-- Collect IP-Address -- Collect IP-Address
local inet = net:formvalue(section) local community = net:formvalue(section)
local isubnet = subnet:formvalue(section)
local inode = node:formvalue(section)
-- Invalidate fields -- Invalidate fields
if not inet then if not community then
net.tag_missing[section] = true net.tag_missing[section] = true
else else
community = inet external = uci:get("freifunk", community, "external") or ""
external = uci:get("freifunk", community, "external") or "" network = ip.IPv4(uci:get("freifunk", community, "mesh_network") or "104.0.0.0/8")
inet = uci:get("freifunk", community, "prefix") or inet node_ip = meship:formvalue(section) and ip.IPv4(meship:formvalue(section))
end
if not isubnet then if not node_ip or not network or not network:contains(node_ip) then
subnet.tag_missing[section] = true meship.tag_missing[section] = true
end node_ip = nil
if not inode then end
node.tag_missing[section] = true
end end
if not inet or not isubnet or not inode then if not node_ip then return end
return
end
local ip = "%s.%s.%s" % {inet, isubnet, inode}
-- Cleanup -- Cleanup
@ -232,7 +262,7 @@ function main.write(self, section, value)
local netconfig = uci:get_all("freifunk", "interface") local netconfig = uci:get_all("freifunk", "interface")
util.update(netconfig, uci:get_all(external, "interface") or {}) util.update(netconfig, uci:get_all(external, "interface") or {})
netconfig.proto = "static" netconfig.proto = "static"
netconfig.ipaddr = ip netconfig.ipaddr = node_ip:string()
uci:section("network", "interface", device, netconfig) uci:section("network", "interface", device, netconfig)
uci:save("network") uci:save("network")
@ -240,7 +270,7 @@ function main.write(self, section, value)
tools.firewall_zone_add_interface("freifunk", device) tools.firewall_zone_add_interface("freifunk", device)
local new_hostname = ip:gsub("%.", "-") local new_hostname = node_ip:string():gsub("%.", "-")
local old_hostname = sys.hostname() local old_hostname = sys.hostname()
uci:foreach("system", "system", uci:foreach("system", "system",
@ -335,11 +365,29 @@ end
function share.write(self, section, value) function share.write(self, section, value)
uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"}) uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_dyn_gw_plain.so.0.4"}) uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_dyn_gw_plain.so.0.4"})
uci:foreach("firewall", "zone",
function(s)
if s.name == "wan" then
uci:delete("firewall", s['.name'], "local_restrict")
return false
end
end)
if value == "1" then if value == "1" then
uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"}) uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
uci:section("olsrd", "LoadPlugin", nil, {library="olsrd_dyn_gw_plain.so.0.4"}) uci:section("olsrd", "LoadPlugin", nil, {library="olsrd_dyn_gw_plain.so.0.4"})
if wansec:formvalue(section) == "1" then
uci:foreach("firewall", "zone",
function(s)
if s.name == "wan" then
uci:set("firewall", s['.name'], "local_restrict", "1")
return false
end
end)
end
end end
uci:save("firewall") uci:save("firewall")
uci:save("olsrd") uci:save("olsrd")
uci:save("system") uci:save("system")
@ -348,26 +396,21 @@ end
function client.write(self, section, value) function client.write(self, section, value)
if value == "0" then if value == "0" then
uci:delete("freifunk", "wizard", "dhcp_splash")
uci:save("freifunk")
return return
end end
local device = dev:formvalue(section) local device = dev:formvalue(section)
-- Collect IP-Address -- Collect IP-Address
local inet = net:formvalue(section) local node_ip = meship:formvalue(section)
local isubnet = subnet:formvalue(section)
local inode = node:formvalue(section)
if not inet or not isubnet or not inode then if not node_ip then return end
return
end local community = net:formvalue(section)
local community = inet
local external = community and uci:get("freifunk", community, "external") or "" local external = community and uci:get("freifunk", community, "external") or ""
inet = uci:get("freifunk", community, "prefix") or inet local splash_ip, splash_mask = mksubnet(community, node_ip)
local dhcpbeg = 48 + tonumber(inode) * 4
local dclient = "%s.%s.%s" % {inet:gsub("^[0-9]+", "10"), isubnet, dhcpbeg}
local limit = dhcpbeg < 252 and 3 or 2
-- Delete old alias -- Delete old alias
uci:delete("network", device .. "dhcp") uci:delete("network", device .. "dhcp")
@ -376,7 +419,8 @@ function client.write(self, section, value)
local aliasbase = uci:get_all("freifunk", "alias") local aliasbase = uci:get_all("freifunk", "alias")
util.update(aliasbase, uci:get_all(external, "alias") or {}) util.update(aliasbase, uci:get_all(external, "alias") or {})
aliasbase.interface = device aliasbase.interface = device
aliasbase.ipaddr = dclient aliasbase.ipaddr = splash_ip
aliasbase.netmask = splash_mask
aliasbase.proto = "static" aliasbase.proto = "static"
uci:section("network", "alias", device .. "dhcp", aliasbase) uci:section("network", "alias", device .. "dhcp", aliasbase)
uci:save("network") uci:save("network")
@ -440,6 +484,10 @@ function client.write(self, section, value)
-- Make sure that luci_splash is enabled -- Make sure that luci_splash is enabled
sys.exec("/etc/init.d/luci_splash enable") sys.exec("/etc/init.d/luci_splash enable")
-- Remember state
uci:set("freifunk", "wizard", "dhcp_splash", "1")
uci:save("freifunk")
end end
return f return f