luci/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua

344 lines
8.5 KiB
Lua
Raw Normal View History

2008-09-05 01:01:53 +00:00
--[[
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]--
local uci = require "luci.model.uci".cursor()
local tools = require "luci.tools.ffwizard"
local util = require "luci.util"
2008-09-05 01:01:53 +00:00
-------------------- View --------------------
f = SimpleForm("ffwizward", "Freifunkassistent",
"Dieser Assistent unterstüzt bei der Einrichtung des Routers für das Freifunknetz.")
dev = f:field(ListValue, "device", "WLAN-Gerät")
uci:foreach("wireless", "wifi-device",
function(section)
dev:value(section[".name"])
end)
main = f:field(Flag, "wifi", "Freifunkzugang einrichten")
net = f:field(Value, "net", "Freifunknetz", "1. Teil der IP-Adresse")
2008-09-05 01:01:53 +00:00
net.rmempty = true
net:depends("wifi", "1")
2008-09-14 21:59:14 +00:00
uci:foreach("freifunk", "community", function(s)
net:value(s[".name"], "%s (%s)" % {s.name, s.prefix})
2008-09-14 21:59:14 +00:00
end)
2008-09-05 01:01:53 +00:00
function net.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "net")
end
function net.write(self, section, value)
uci:set("freifunk", "wizard", "net", value)
uci:save("freifunk")
end
subnet = f:field(Value, "subnet", "Subnetz (Projekt)", "2. Teil der IP-Adresse")
2008-09-05 01:01:53 +00:00
subnet.rmempty = true
subnet:depends("wifi", "1")
function subnet.cfgvalue(self, section)
return uci:get("freifunk", "wizard", "subnet")
end
function subnet.write(self, section, value)
uci:set("freifunk", "wizard", "subnet", value)
uci:save("freifunk")
end
node = f:field(Value, "node", "Knoten", "3. Teil der IP-Adresse")
2008-09-05 01:01:53 +00:00
node.rmempty = true
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
client = f:field(Flag, "client", "WLAN-DHCP anbieten")
client:depends("wifi", "1")
client.rmempty = true
2008-09-05 01:01:53 +00:00
olsr = f:field(Flag, "olsr", "OLSR einrichten")
olsr.rmempty = true
2008-09-05 01:01:53 +00:00
share = f:field(Flag, "sharenet", "Eigenen Internetzugang freigeben")
share.rmempty = true
2008-09-05 01:01:53 +00:00
-------------------- Control --------------------
function f.handle(self, state, data)
if state == FORM_VALID then
luci.http.redirect(luci.dispatcher.build_url("admin", "uci", "changes"))
return false
elseif state == FORM_INVALID then
self.errmessage = "Ungültige Eingabe: Bitte die Formularfelder auf Fehler prüfen."
end
return true
end
local function _strip_internals(tbl)
tbl = tbl or {}
for k, v in pairs(tbl) do
if k:sub(1, 1) == "." then
tbl[k] = nil
end
end
return tbl
end
-- Configure Freifunk checked
function main.write(self, section, value)
if value == "0" then
return
end
2008-09-05 01:01:53 +00:00
local device = dev:formvalue(section)
local community, external
2008-09-05 01:01:53 +00:00
-- Collect IP-Address
local inet = net:formvalue(section)
local isubnet = subnet:formvalue(section)
local inode = node:formvalue(section)
2008-09-05 01:01:53 +00:00
-- Invalidate fields
if not inet then
net.tag_missing[section] = true
2008-09-14 21:59:14 +00:00
else
community = inet
external = uci:get("freifunk", community, "external") or ""
2008-09-14 21:59:14 +00:00
inet = uci:get("freifunk", community, "prefix") or inet
2008-09-05 01:01:53 +00:00
end
if not isubnet then
subnet.tag_missing[section] = true
end
if not inode then
node.tag_missing[section] = true
end
2008-09-05 01:01:53 +00:00
if not inet or not isubnet or not inode then
return
end
2008-09-05 01:01:53 +00:00
local ip = "%s.%s.%s" % {inet, isubnet, inode}
2008-09-05 01:01:53 +00:00
-- Cleanup
tools.wifi_delete_ifaces(device)
tools.network_remove_interface(device)
tools.firewall_zone_remove_interface("freifunk", device)
2008-09-14 21:59:14 +00:00
-- Tune community settings
if community and uci:get("freifunk", community) then
2008-09-14 21:59:14 +00:00
uci:tset("freifunk", "community", uci:get_all("freifunk", community))
end
2008-09-05 01:01:53 +00:00
-- Tune wifi device
local devconfig = uci:get_all("freifunk", "wifi_device")
util.update(devconfig, uci:get_all(external, "wifi_device") or {})
2008-09-05 01:01:53 +00:00
uci:tset("wireless", device, devconfig)
2008-09-05 01:01:53 +00:00
-- Create wifi iface
local ifconfig = uci:get_all("freifunk", "wifi_iface")
util.update(ifconfig, uci:get_all(external, "wifi_iface") or {})
2008-09-05 01:01:53 +00:00
ifconfig.device = device
ifconfig.network = device
2008-09-14 21:59:14 +00:00
ifconfig.ssid = uci:get("freifunk", community, "ssid")
2008-09-05 01:01:53 +00:00
uci:section("wireless", "wifi-iface", nil, ifconfig)
2008-09-05 01:01:53 +00:00
-- Save wifi
uci:save("wireless")
2008-09-05 01:01:53 +00:00
-- Create firewall zone and add default rules (first time)
local newzone = tools.firewall_create_zone("freifunk", "REJECT", "ACCEPT", "REJECT", true)
2008-09-05 01:01:53 +00:00
if newzone then
uci:foreach("freifunk", "fw_forwarding", function(section)
uci:section("firewall", "forwarding", nil, section)
end)
uci:foreach(external, "fw_forwarding", function(section)
uci:section("firewall", "forwarding", nil, section)
2008-09-05 01:01:53 +00:00
end)
2008-09-05 01:01:53 +00:00
uci:foreach("freifunk", "fw_rule", function(section)
uci:section("firewall", "rule", nil, section)
end)
uci:foreach(external, "fw_rule", function(section)
uci:section("firewall", "rule", nil, section)
2008-09-05 01:01:53 +00:00
end)
end
-- Enforce firewall include
local has_include = false
uci:foreach("firewall", "include",
function(section)
if section.path == "/etc/firewall.freifunk" then
has_include = true
end
end)
if not has_include then
uci:section("firewall", "include", nil,
{ path = "/etc/firewall.freifunk" })
2008-09-05 01:01:53 +00:00
end
-- Allow state: invalid packets
uci:foreach("firewall", "defaults",
function(section)
uci:set("firewall", section[".name"], "drop_invalid", "0")
end)
uci:save("firewall")
2008-09-05 01:01:53 +00:00
-- Crate network interface
local netconfig = uci:get_all("freifunk", "interface")
util.update(netconfig, uci:get_all(external, "interface") or {})
netconfig.proto = "static"
2008-09-05 01:01:53 +00:00
netconfig.ipaddr = ip
uci:section("network", "interface", device, netconfig)
2008-09-05 01:01:53 +00:00
uci:save("network")
2008-09-05 01:01:53 +00:00
tools.firewall_zone_add_interface("freifunk", device)
end
function olsr.write(self, section, value)
if value == "0" then
return
end
2008-09-05 01:01:53 +00:00
local device = dev:formvalue(section)
local community = net:formvalue(section)
local external = community and uci:get("freifunk", community, "external") or ""
2008-09-05 01:01:53 +00:00
-- Delete old interface
uci:delete_all("olsrd", "Interface", {interface=device})
2008-09-05 01:01:53 +00:00
-- Write new interface
local olsrbase = uci:get_all("freifunk", "olsr_interface")
util.update(olsrbase, uci:get_all(external, "olsr_interface") or {})
olsrbase.interface = device
olsrbase.ignore = "0"
uci:section("olsrd", "Interface", nil, olsrbase)
uci:save("olsrd")
2008-09-05 01:01:53 +00:00
end
function share.write(self, section, value)
uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
if value == "1" then
2008-09-05 01:01:53 +00:00
uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
end
uci:save("firewall")
end
function client.write(self, section, value)
if value == "0" then
return
end
2008-09-05 01:01:53 +00:00
local device = dev:formvalue(section)
-- Collect IP-Address
local inet = net:formvalue(section)
local isubnet = subnet:formvalue(section)
local inode = node:formvalue(section)
2008-09-05 01:01:53 +00:00
if not inet or not isubnet or not inode then
return
end
local community = inet
local external = community and uci:get("freifunk", community, "external") or ""
inet = uci:get("freifunk", community, "prefix") or inet
local dhcpbeg = 48 + tonumber(inode) * 4
2008-09-05 01:01:53 +00:00
local dclient = "%s.%s.%s" % {inet:gsub("^[0-9]+", "10"), isubnet, dhcpbeg}
local limit = dhcpbeg < 252 and 3 or 2
2008-09-05 01:01:53 +00:00
-- Delete old alias
uci:delete("network", device .. "dhcp")
2008-09-05 01:01:53 +00:00
-- Create alias
local aliasbase = uci:get_all("freifunk", "alias")
util.update(aliasbase, uci:get_all(external, "alias") or {})
2008-09-05 01:01:53 +00:00
aliasbase.interface = device
aliasbase.ipaddr = dclient
aliasbase.proto = "static"
uci:section("network", "alias", device .. "dhcp", aliasbase)
uci:save("network")
2008-09-05 01:01:53 +00:00
-- Create dhcp
local dhcpbase = uci:get_all("freifunk", "dhcp")
util.update(dhcpbase, uci:get_all(external, "dhcp") or {})
2008-09-05 01:01:53 +00:00
dhcpbase.interface = device .. "dhcp"
dhcpbase.start = dhcpbeg
dhcpbase.limit = limit
uci:section("dhcp", "dhcp", device .. "dhcp", dhcpbase)
uci:save("dhcp")
2008-09-14 21:59:14 +00:00
uci:delete_all("firewall", "rule", {
src="freifunk",
proto="udp",
src_port="68",
dest_port="67"
})
uci:section("firewall", "rule", nil, {
src="freifunk",
proto="udp",
src_port="68",
dest_port="67",
target="ACCEPT"
})
uci:delete_all("firewall", "rule", {
src="freifunk",
proto="tcp",
dest_port="8082",
})
uci:section("firewall", "rule", nil, {
src="freifunk",
proto="tcp",
dest_port="8082",
target="ACCEPT"
})
2008-09-05 01:01:53 +00:00
-- Delete old splash
uci:delete_all("luci_splash", "iface", {net=device, zone="freifunk"})
2008-09-05 01:01:53 +00:00
-- Register splash
uci:section("luci_splash", "iface", nil, {net=device, zone="freifunk"})
uci:save("luci_splash")
end
return f