e82353031215309b4735d426b334bfaca915456c
[project/luci.git] / applications / luci-ffwizard-leipzig / luasrc / model / cbi / ffwizard.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14
15 ]]--
16
17
18 local uci = require "luci.model.uci".cursor()
19 local tools = require "luci.tools.ffwizard"
20 local util = require "luci.util"
21 local sys = require "luci.sys"
22
23
24 -------------------- View --------------------
25 f = SimpleForm("ffwizward", "Freifunkassistent",
26 "Dieser Assistent unterstüzt bei der Einrichtung des Routers für das Freifunknetz.")
27
28
29 dev = f:field(ListValue, "device", "WLAN-Gerät")
30 uci:foreach("wireless", "wifi-device",
31 function(section)
32 dev:value(section[".name"])
33 end)
34
35
36 main = f:field(Flag, "wifi", "Freifunkzugang einrichten")
37
38 net = f:field(Value, "net", "Freifunknetz", "1. Teil der IP-Adresse")
39 net.rmempty = true
40 net:depends("wifi", "1")
41 uci:foreach("freifunk", "community", function(s)
42 net:value(s[".name"], "%s (%s)" % {s.name, s.prefix})
43 end)
44
45 function net.cfgvalue(self, section)
46 return uci:get("freifunk", "wizard", "net")
47 end
48 function net.write(self, section, value)
49 uci:set("freifunk", "wizard", "net", value)
50 uci:save("freifunk")
51 end
52
53
54 subnet = f:field(Value, "subnet", "Subnetz (Projekt)", "2. Teil der IP-Adresse")
55 subnet.rmempty = true
56 subnet:depends("wifi", "1")
57 function subnet.cfgvalue(self, section)
58 return uci:get("freifunk", "wizard", "subnet")
59 end
60 function subnet.write(self, section, value)
61 uci:set("freifunk", "wizard", "subnet", value)
62 uci:save("freifunk")
63 end
64
65 node = f:field(Value, "node", "Knoten", "3. Teil der IP-Adresse")
66 node.rmempty = true
67 node:depends("wifi", "1")
68 for i=1, 51 do
69 node:value(i)
70 end
71 function node.cfgvalue(self, section)
72 return uci:get("freifunk", "wizard", "node")
73 end
74 function node.write(self, section, value)
75 uci:set("freifunk", "wizard", "node", value)
76 uci:save("freifunk")
77 end
78
79 client = f:field(Flag, "client", "WLAN-DHCP anbieten")
80 client:depends("wifi", "1")
81 client.rmempty = true
82
83 olsr = f:field(Flag, "olsr", "OLSR einrichten")
84 olsr.rmempty = true
85
86 lat = f:field(Value, "lat", "Latitude")
87 lat:depends("olsr", "1")
88
89 lon = f:field(Value, "lon", "Longitude")
90 lon:depends("olsr", "1")
91
92 share = f:field(Flag, "sharenet", "Eigenen Internetzugang freigeben")
93 share.rmempty = true
94
95
96
97 -------------------- Control --------------------
98 function f.handle(self, state, data)
99 if state == FORM_VALID then
100 luci.http.redirect(luci.dispatcher.build_url("admin", "uci", "changes"))
101 return false
102 elseif state == FORM_INVALID then
103 self.errmessage = "Ungültige Eingabe: Bitte die Formularfelder auf Fehler prüfen."
104 end
105 return true
106 end
107
108 local function _strip_internals(tbl)
109 tbl = tbl or {}
110 for k, v in pairs(tbl) do
111 if k:sub(1, 1) == "." then
112 tbl[k] = nil
113 end
114 end
115 return tbl
116 end
117
118 -- Configure Freifunk checked
119 function main.write(self, section, value)
120 if value == "0" then
121 return
122 end
123
124 local device = dev:formvalue(section)
125 local community, external
126
127 -- Collect IP-Address
128 local inet = net:formvalue(section)
129 local isubnet = subnet:formvalue(section)
130 local inode = node:formvalue(section)
131
132 -- Invalidate fields
133 if not inet then
134 net.tag_missing[section] = true
135 else
136 community = inet
137 external = uci:get("freifunk", community, "external") or ""
138 inet = uci:get("freifunk", community, "prefix") or inet
139 end
140 if not isubnet then
141 subnet.tag_missing[section] = true
142 end
143 if not inode then
144 node.tag_missing[section] = true
145 end
146
147 if not inet or not isubnet or not inode then
148 return
149 end
150
151 local ip = "%s.%s.%s" % {inet, isubnet, inode}
152
153
154 -- Cleanup
155 tools.wifi_delete_ifaces(device)
156 tools.network_remove_interface(device)
157 tools.firewall_zone_remove_interface("freifunk", device)
158
159 -- Tune community settings
160 if community and uci:get("freifunk", community) then
161 uci:tset("freifunk", "community", uci:get_all("freifunk", community))
162 end
163
164 -- Tune wifi device
165 local devconfig = uci:get_all("freifunk", "wifi_device")
166 util.update(devconfig, uci:get_all(external, "wifi_device") or {})
167 uci:tset("wireless", device, devconfig)
168
169 -- Create wifi iface
170 local ifconfig = uci:get_all("freifunk", "wifi_iface")
171 util.update(ifconfig, uci:get_all(external, "wifi_iface") or {})
172 ifconfig.device = device
173 ifconfig.network = device
174 ifconfig.ssid = uci:get("freifunk", community, "ssid")
175 uci:section("wireless", "wifi-iface", nil, ifconfig)
176
177 -- Save wifi
178 uci:save("wireless")
179
180 -- Create firewall zone and add default rules (first time)
181 local newzone = tools.firewall_create_zone("freifunk", "REJECT", "ACCEPT", "REJECT", true)
182 if newzone then
183 uci:foreach("freifunk", "fw_forwarding", function(section)
184 uci:section("firewall", "forwarding", nil, section)
185 end)
186 uci:foreach(external, "fw_forwarding", function(section)
187 uci:section("firewall", "forwarding", nil, section)
188 end)
189
190 uci:foreach("freifunk", "fw_rule", function(section)
191 uci:section("firewall", "rule", nil, section)
192 end)
193 uci:foreach(external, "fw_rule", function(section)
194 uci:section("firewall", "rule", nil, section)
195 end)
196 end
197
198 -- Enforce firewall include
199 local has_include = false
200 uci:foreach("firewall", "include",
201 function(section)
202 if section.path == "/etc/firewall.freifunk" then
203 has_include = true
204 end
205 end)
206
207 if not has_include then
208 uci:section("firewall", "include", nil,
209 { path = "/etc/firewall.freifunk" })
210 end
211
212 -- Allow state: invalid packets
213 uci:foreach("firewall", "defaults",
214 function(section)
215 uci:set("firewall", section[".name"], "drop_invalid", "0")
216 end)
217
218 -- Prepare advanced config
219 local has_advanced = false
220 uci:foreach("firewall", "advanced",
221 function(section) has_advanced = true end)
222
223 if not has_advanced then
224 uci:section("firewall", "advanced", nil,
225 { tcp_ecn = "0", ip_conntrack_max = "8192", tcp_westwood = "1" })
226 end
227
228 uci:save("firewall")
229
230
231 -- Create network interface
232 local netconfig = uci:get_all("freifunk", "interface")
233 util.update(netconfig, uci:get_all(external, "interface") or {})
234 netconfig.proto = "static"
235 netconfig.ipaddr = ip
236 uci:section("network", "interface", device, netconfig)
237
238 uci:save("network")
239
240 tools.firewall_zone_add_interface("freifunk", device)
241
242
243 local new_hostname = ip:gsub("%.", "-")
244 local old_hostname = sys.hostname()
245
246 uci:foreach("system", "system",
247 function(s)
248 -- Make crond silent
249 uci:set("system", s['.name'], "cronloglevel", "10")
250
251 -- Set hostname
252 if old_hostname == "OpenWrt" or old_hostname:match("^%d+-%d+-%d+-%d+$") then
253 uci:set("system", s['.name'], "hostname", new_hostname)
254 sys.hostname(new_hostname)
255 end
256 end)
257
258 uci:save("system")
259 end
260
261
262 function olsr.write(self, section, value)
263 if value == "0" then
264 return
265 end
266
267
268 local device = dev:formvalue(section)
269
270 local community = net:formvalue(section)
271 local external = community and uci:get("freifunk", community, "external") or ""
272
273 local latval = tonumber(lat:formvalue(section))
274 local lonval = tonumber(lon:formvalue(section))
275
276
277 -- Delete old interface
278 uci:delete_all("olsrd", "Interface", {interface=device})
279
280 -- Write new interface
281 local olsrbase = uci:get_all("freifunk", "olsr_interface")
282 util.update(olsrbase, uci:get_all(external, "olsr_interface") or {})
283 olsrbase.interface = device
284 olsrbase.ignore = "0"
285 uci:section("olsrd", "Interface", nil, olsrbase)
286
287 -- Delete old watchdog settings
288 uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_watchdog.so.0.1"})
289
290 -- Write new watchdog settings
291 uci:section("olsrd", "LoadPlugin", nil, {
292 library = "olsrd_watchdog.so.0.1",
293 file = "/var/run/olsrd.watchdog",
294 interval = "30"
295 })
296
297 -- Delete old nameservice settings
298 uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_nameservice.so.0.3"})
299
300 -- Write new nameservice settings
301 uci:section("olsrd", "LoadPlugin", nil, {
302 library = "olsrd_nameservice.so.0.3",
303 latlon_file = "/var/run/latlon.js",
304 lat = latval and string.format("%.15f", latval) or "",
305 lon = lonval and string.format("%.15f", lonval) or ""
306 })
307
308 -- Save latlon to system too
309 if latval and lonval then
310 uci:foreach("system", "system", function(s)
311 uci:set("system", s[".name"], "latlon",
312 string.format("%.15f %.15f", latval, lonval))
313 end)
314 else
315 uci:foreach("system", "system", function(s)
316 uci:delete("system", s[".name"], "latlon")
317 end)
318 end
319
320 -- Import hosts
321 uci:foreach("dhcp", "dnsmasq", function(s)
322 uci:set("dhcp", s[".name"], "addnhosts", "/var/etc/hosts.olsr")
323 end)
324
325 uci:save("olsrd")
326 uci:save("dhcp")
327 end
328
329
330 function share.write(self, section, value)
331 uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
332 uci:delete_all("olsrd", "LoadPlugin", {library="olsrd_dyn_gw_plain.so.0.4"})
333
334 if value == "1" then
335 uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
336 uci:section("olsrd", "LoadPlugin", nil, {library="olsrd_dyn_gw_plain.so.0.4"})
337 end
338 uci:save("firewall")
339 uci:save("olsrd")
340 uci:save("system")
341 end
342
343
344 function client.write(self, section, value)
345 if value == "0" then
346 return
347 end
348
349 local device = dev:formvalue(section)
350
351 -- Collect IP-Address
352 local inet = net:formvalue(section)
353 local isubnet = subnet:formvalue(section)
354 local inode = node:formvalue(section)
355
356 if not inet or not isubnet or not inode then
357 return
358 end
359 local community = inet
360 local external = community and uci:get("freifunk", community, "external") or ""
361 inet = uci:get("freifunk", community, "prefix") or inet
362
363 local dhcpbeg = 48 + tonumber(inode) * 4
364 local dclient = "%s.%s.%s" % {inet:gsub("^[0-9]+", "10"), isubnet, dhcpbeg}
365 local limit = dhcpbeg < 252 and 3 or 2
366
367 -- Delete old alias
368 uci:delete("network", device .. "dhcp")
369
370 -- Create alias
371 local aliasbase = uci:get_all("freifunk", "alias")
372 util.update(aliasbase, uci:get_all(external, "alias") or {})
373 aliasbase.interface = device
374 aliasbase.ipaddr = dclient
375 aliasbase.proto = "static"
376 uci:section("network", "alias", device .. "dhcp", aliasbase)
377 uci:save("network")
378
379
380 -- Create dhcp
381 local dhcpbase = uci:get_all("freifunk", "dhcp")
382 util.update(dhcpbase, uci:get_all(external, "dhcp") or {})
383 dhcpbase.interface = device .. "dhcp"
384 dhcpbase.start = dhcpbeg
385 dhcpbase.limit = limit
386 dhcpbase.force = 1
387
388 uci:section("dhcp", "dhcp", device .. "dhcp", dhcpbase)
389 uci:save("dhcp")
390
391 uci:delete_all("firewall", "rule", {
392 src="freifunk",
393 proto="udp",
394 dest_port="53"
395 })
396 uci:section("firewall", "rule", nil, {
397 src="freifunk",
398 proto="udp",
399 dest_port="53",
400 target="ACCEPT"
401 })
402 uci:delete_all("firewall", "rule", {
403 src="freifunk",
404 proto="udp",
405 src_port="68",
406 dest_port="67"
407 })
408 uci:section("firewall", "rule", nil, {
409 src="freifunk",
410 proto="udp",
411 src_port="68",
412 dest_port="67",
413 target="ACCEPT"
414 })
415 uci:delete_all("firewall", "rule", {
416 src="freifunk",
417 proto="tcp",
418 dest_port="8082",
419 })
420 uci:section("firewall", "rule", nil, {
421 src="freifunk",
422 proto="tcp",
423 dest_port="8082",
424 target="ACCEPT"
425 })
426
427 uci:save("firewall")
428
429 -- Delete old splash
430 uci:delete_all("luci_splash", "iface", {network=device.."dhcp", zone="freifunk"})
431
432 -- Register splash
433 uci:section("luci_splash", "iface", nil, {network=device.."dhcp", zone="freifunk"})
434 uci:save("luci_splash")
435 end
436
437 return f