applications/siitwizard:
[project/luci.git] / applications / luci-siitwizard / luasrc / model / cbi / siitwizard.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 local uci = require "luci.model.uci".cursor()
18
19 -------------------- Init --------------------
20
21 --
22 -- Find link-local address
23 --
24 LL_PREFIX = luci.ip.IPv6("fe80::/64")
25 function find_ll()
26         for _, r in ipairs(luci.sys.net.routes6()) do
27                 if LL_PREFIX:contains(r.dest) and r.dest:higher(LL_PREFIX) then
28                         return r.dest:sub(LL_PREFIX)
29                 end
30         end
31         return luci.ip.IPv6("::")
32 end
33
34 --
35 -- Determine defaults
36 --
37 local ula_prefix  = uci:get("siit", "ipv6", "ula_prefix")  or "fd00::"
38 local ula_global  = uci:get("siit", "ipv6", "ula_global")  or "00ca:ffee:babe::"                -- = Freifunk
39 local ula_subnet  = uci:get("siit", "ipv6", "ula_subnet")  or "0000:0000:0000:4223::"   -- = Berlin
40 local siit_prefix = uci:get("siit", "ipv6", "siit_prefix") or "::ffff:0000:0000"
41 local ipv4_pool   = uci:get("siit", "ipv4", "pool")        or "172.16.0.0/12"
42 local ipv4_netsz  = uci:get("siit", "ipv4", "netsize")     or "24"
43
44 --
45 -- Find IPv4 allocation pool
46 --
47 local gv4_net = luci.ip.IPv4(ipv4_pool)
48 local lan_net
49
50 --
51 -- Generate ULA
52 --
53 local ula = luci.ip.IPv6("::/64")
54
55 for _, prefix in ipairs({ ula_prefix, ula_global, ula_subnet }) do
56         ula = ula:add(luci.ip.IPv6(prefix))
57 end
58
59 ula = ula:add(find_ll())
60
61
62 -------------------- View --------------------
63 f = SimpleForm("siitwizward", "SIIT-Wizzard",
64  "This wizzard helps to setup SIIT (IPv4-over-IPv6) translation according to RFC2765.")
65
66 f:field(DummyValue, "info_ula", "Mesh ULA address").value = ula:string()
67
68 f:field(DummyValue, "ipv4_pool", "IPv4 allocation pool").value =
69         "%s (%i hosts)" %{ gv4_net:string(), 2 ^ gv4_net:prefix() - 2 }
70
71 f:field(DummyValue, "ipv4_size", "IPv4 LAN network prefix").value =
72         "%i bit (%i hosts)" %{ ipv4_netsz, 2 ^ ( 32 - ipv4_netsz ) - 2 }
73
74 mode = f:field(ListValue, "mode", "Operation mode")
75 mode:value("client", "Client")
76 mode:value("gateway", "Gateway")
77
78 dev = f:field(ListValue, "device", "Wireless device")
79 uci:foreach("wireless", "wifi-device",
80         function(section)
81                 dev:value(section[".name"])
82         end)
83
84 lanip = f:field(Value, "ipaddr", "LAN IPv4 subnet")
85 function lanip.formvalue(self, section)
86         local val = self.map:formvalue(self:cbid(section))
87         local net = luci.ip.IPv4("%s/%i" %{ val, ipv4_netsz })
88
89         if net then
90                 if gv4_net:contains(net) then
91                         if not net:minhost():equal(net:host()) then
92                                 self.error = { [section] = true }
93                                 f.errmessage = "IPv4 address is not the first host of " ..
94                                         "subnet, expected " .. net:minhost():string()
95                         end
96                 else
97                         self.error = { [section] = true }
98                         f.errmessage = "IPv4 address is not within the allocation pool"
99                 end
100         else
101                 self.error = { [section] = true }
102                 f.errmessage = "Invalid IPv4 address given"
103         end
104
105         return val
106 end
107
108 dns = f:field(Value, "dns", "DNS server for LAN clients")
109 dns.value = "141.1.1.1"
110
111 -------------------- Control --------------------
112 function f.handle(self, state, data)
113         if state == FORM_VALID then
114                 luci.http.redirect(luci.dispatcher.build_url("admin", "uci", "changes"))
115                 return false
116         end
117         return true
118 end
119
120 function mode.write(self, section, value)
121
122         --
123         -- Find LAN IPv4 range
124         --
125         local lan_net = luci.ip.IPv4(
126                 ( lanip:formvalue(section) or "172.16.0.1" ) .. "/" .. ipv4_netsz
127         )
128
129         if not lan_net then return end
130
131         --
132         -- Find wifi interface, dns server and hostname
133         --
134         local device      = dev:formvalue(section)
135         local dns_server  = dns:formvalue(section) or "141.1.1.1"
136         local hostname    = "siit-" .. lan_net:host():string():gsub("%.","-")
137
138         --
139         -- Configure wifi device
140         --
141         local wifi_device  = dev:formvalue(section)
142         local wifi_essid   = uci:get("siit", "wifi", "essid")   or "6mesh.freifunk.net"
143         local wifi_bssid   = uci:get("siit", "wifi", "bssid")   or "02:ca:ff:ee:ba:be"
144         local wifi_channel = uci:get("siit", "wifi", "channel") or "1"
145
146         -- nuke old device definition
147         uci:delete_all("wireless", "wifi-iface",
148                 function(s) return s.device == wifi_device end )
149
150         uci:delete_all("network", "interface",
151                 function(s) return s['.name'] == wifi_device end )
152
153         -- create wifi device definition
154         uci:tset("wireless", wifi_device, {
155                 disabled  = 0,
156                 channel   = wifi_channel,
157 --              txantenna = 1,
158 --              rxantenna = 1,
159 --              diversity = 0
160         })
161
162         uci:section("wireless", "wifi-iface", nil, {
163                 encryption = "none",
164                 mode       = "adhoc",
165                 network    = wifi_device,
166                 device     = wifi_device,
167                 ssid       = wifi_essid,
168                 bssid      = wifi_bssid,
169         })
170
171         --
172         -- Gateway mode
173         --
174         --      * wan port is dhcp, lan port is 172.23.1.1/24
175         --      * siit0 gets a dummy address: 169.254.42.42
176         --      * wl0 gets an ipv6 address, in this case the fdca:ffee:babe::1:1/64
177         --      * we do a ::ffff:ffff:0/96 route into siit0, so everything from 6mesh goes into translation.
178         --      * an HNA6 of ::ffff:ffff:0:0/96 announces the mapped 0.0.0.0/0 ipv4 space.
179         --      * MTU on WAN, LAN down to 1400, ipv6 headers are slighly larger.
180
181         if value == "gateway" then
182
183                 -- wan mtu
184                 uci:set("network", "wan", "mtu", 1400)
185
186                 -- lan settings
187                 uci:tset("network", "lan", {
188                         mtu     = 1400,
189                         ipaddr  = lan_net:host():string(),
190                         netmask = lan_net:mask():string()
191                 })
192
193                 -- use full siit subnet
194                 siit_route = luci.ip.IPv6(siit_prefix .. "/96")
195
196                 -- v4 <-> siit route
197                 uci:delete_all("network", "route",
198                         function(s) return s.interface == "siit0" end)
199
200                 uci:section("network", "route", nil, {
201                         interface = "siit0",
202                         target    = gv4_net:network():string(),
203                         netmask   = gv4_net:mask():string()
204                 })
205
206         --
207         -- Client mode
208         --
209         --      * 172.23.2.1/24 on its lan, fdca:ffee:babe::1:2 on wl0 and the usual dummy address on siit0.
210         --      * we do a ::ffff:ffff:172.13.2.0/120 to siit0, because in this case, only traffic directed to clients needs to go into translation.
211         --      * same route as HNA6 announcement to catch the traffic out of the mesh.
212         --      * Also, MTU on LAN reduced to 1400.
213
214         else
215
216                 -- lan settings
217                 uci:tset("network", "lan", {
218                         mtu     = 1400,
219                         ipaddr  = lan_net:host():string(),
220                         netmask = lan_net:mask():string()
221                 })
222
223                 -- derive siit subnet from lan config
224                 siit_route = luci.ip.IPv6(
225                         siit_prefix .. "/" .. (96 + lan_net:prefix())
226                 ):add(lan_net[2])
227
228                 -- ipv4 <-> siit route
229                 uci:delete_all("network", "route",
230                         function(s) return s.interface == "siit0" end)
231
232                 -- XXX: kind of a catch all, gv4_net would be better
233                 --      but does not cover non-local v4 space
234                 uci:section("network", "route", nil, {
235                         interface = "siit0",
236                         target    = "0.0.0.0",
237                         netmask   = "0.0.0.0"
238                 })
239         end
240
241         -- setup the firewall
242         uci:delete_all("firewall", "zone",
243                 function(s) return (
244                         s['.name'] == "siit0" or s.name == "siit0" or
245                         s.network == "siit0" or s['.name'] == wifi_device or
246                         s.name == wifi_device or s.network == wifi_device
247                 ) end)
248
249         uci:delete_all("firewall", "forwarding",
250                 function(s) return (
251                         s.src == wifi_device and s.dest == "siit0" or
252                         s.dest == wifi_device and s.src == "siit0" or
253                         s.src == "lan" and s.dest == "siit0" or
254                         s.dest == "lan" and s.src == "siit0"
255                 ) end)
256
257         uci:section("firewall", "zone", "siit0", {
258                 name    = "siit0",
259                 network = "siit0",
260                 input   = "ACCEPT",
261                 output  = "ACCEPT",
262                 forward = "ACCEPT"
263         })
264
265         uci:section("firewall", "zone", wifi_device, {
266                 name    = wifi_device,
267                 network = wifi_device,
268                 input   = "ACCEPT",
269                 output  = "ACCEPT",
270                 forward = "ACCEPT"
271         })
272
273         uci:section("firewall", "forwarding", nil, {
274                 src  = wifi_device,
275                 dest = "siit0"
276         })
277
278         uci:section("firewall", "forwarding", nil, {
279                 src  = "siit0",
280                 dest = wifi_device
281         })
282
283         uci:section("firewall", "forwarding", nil, {
284                 src  = "lan",
285                 dest = "siit0"
286         })
287
288         uci:section("firewall", "forwarding", nil, {
289                 src  = "siit0",
290                 dest = "lan"
291         })
292
293         -- firewall include
294         uci:delete_all("firewall", "include",
295                 function(s) return s.path == "/etc/firewall.user" end)
296
297         uci:section("firewall", "include", nil, {
298                 path = "/etc/firewall.user"
299         })
300
301
302         -- siit0 interface
303         uci:delete_all("network", "interface",
304                 function(s) return ( s.ifname == "siit0" ) end)
305
306         uci:section("network", "interface", "siit0", {
307                 ifname  = "siit0",
308                 proto   = "none"
309         })
310
311         -- siit0 route
312         uci:delete_all("network", "route6",
313                 function(s) return siit_route:contains(luci.ip.IPv6(s.target)) end)
314
315         uci:section("network", "route6", nil, {
316                 interface = "siit0",
317                 target    = siit_route:string()
318         })
319
320         -- create wifi network interface
321         uci:section("network", "interface", wifi_device, {
322                 proto   = "static",
323                 mtu     = 1400,
324                 ip6addr = ula:string()
325         })
326
327         -- nuke old olsrd interfaces
328         uci:delete_all("olsrd", "Interface",
329                 function(s) return s.interface == wifi_device end)
330
331         -- configure olsrd interface
332         uci:foreach("olsrd", "olsrd",
333                 function(s) uci:set("olsrd", s['.name'], "IpVersion", 6) end)
334
335         uci:section("olsrd", "Interface", nil, {
336                 ignore      = 0,
337                 interface   = wifi_device,
338                 Ip6AddrType = "global"
339         })
340
341         -- hna6
342         uci:delete_all("olsrd", "Hna6",
343                 function(s)
344                         if s.netaddr and s.prefix then
345                                 return siit_route:contains(luci.ip.IPv6(s.netaddr.."/"..s.prefix))
346                         end
347                 end)
348
349         uci:section("olsrd", "Hna6", nil, {
350                 netaddr = siit_route:host():string(),
351                 prefix  = siit_route:prefix()
352         })
353
354         -- txtinfo v6 & olsrd nameservice
355         uci:foreach("olsrd", "LoadPlugin",
356                 function(s)
357                         if s.library == "olsrd_txtinfo.so.0.1" then
358                                 uci:set("olsrd", s['.name'], "accept", "::1")
359                         elseif s.library == "olsrd_nameservice.so.0.3" then
360                                 uci:set("olsrd", s['.name'], "name", hostname)
361                         end
362                 end)
363
364         -- lan dns
365         uci:tset("dhcp", "lan", {
366                 dhcp_option = "6," .. dns_server
367         })
368
369         -- hostname
370         uci:foreach("system", "system",
371                 function(s)
372                         uci:set("system", s['.name'], "hostname", hostname)
373                 end)
374
375         uci:save("wireless")
376         uci:save("firewall")
377         uci:save("network")
378         uci:save("system")
379         uci:save("olsrd")
380         uci:save("dhcp")
381 end
382
383 return f