modules/admin-full: fix wireless interface removal if not network was assigned to...
[project/luci.git] / modules / admin-full / luasrc / controller / admin / network.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2011 Jo-Philipp Wich <xm@subsignal.org>
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 module("luci.controller.admin.network", package.seeall)
17
18 function index()
19 local uci = require("luci.model.uci").cursor()
20 local page
21
22 page = node("admin", "network")
23 page.target = firstchild()
24 page.title = _("Network")
25 page.order = 50
26 page.index = true
27
28 -- if page.inreq then
29 local has_switch = false
30
31 uci:foreach("network", "switch",
32 function(s)
33 has_switch = true
34 return false
35 end)
36
37 if has_switch then
38 page = node("admin", "network", "vlan")
39 page.target = cbi("admin_network/vlan")
40 page.title = _("Switch")
41 page.order = 20
42 end
43
44
45 local has_wifi = false
46
47 uci:foreach("wireless", "wifi-device",
48 function(s)
49 has_wifi = true
50 return false
51 end)
52
53 if has_wifi then
54 page = entry({"admin", "network", "wireless_join"}, call("wifi_join"), nil)
55 page.leaf = true
56
57 page = entry({"admin", "network", "wireless_add"}, call("wifi_add"), nil)
58 page.leaf = true
59
60 page = entry({"admin", "network", "wireless_delete"}, call("wifi_delete"), nil)
61 page.leaf = true
62
63 page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil)
64 page.leaf = true
65
66 page = entry({"admin", "network", "wireless_reconnect"}, call("wifi_reconnect"), nil)
67 page.leaf = true
68
69 page = entry({"admin", "network", "wireless_shutdown"}, call("wifi_reconnect"), nil)
70 page.leaf = true
71
72 page = entry({"admin", "network", "wireless"}, arcombine(template("admin_network/wifi_overview"), cbi("admin_network/wifi")), _("Wifi"), 15)
73 page.leaf = true
74 page.subindex = true
75
76 if page.inreq then
77 local wdev
78 local net = require "luci.model.network".init(uci)
79 for _, wdev in ipairs(net:get_wifidevs()) do
80 local wnet
81 for _, wnet in ipairs(wdev:get_wifinets()) do
82 entry(
83 {"admin", "network", "wireless", wnet:id()},
84 alias("admin", "network", "wireless"),
85 wdev:name() .. ": " .. wnet:shortname()
86 )
87 end
88 end
89 end
90 end
91
92
93 page = entry({"admin", "network", "iface_add"}, cbi("admin_network/iface_add"), nil)
94 page.leaf = true
95
96 page = entry({"admin", "network", "iface_delete"}, call("iface_delete"), nil)
97 page.leaf = true
98
99 page = entry({"admin", "network", "iface_status"}, call("iface_status"), nil)
100 page.leaf = true
101
102 page = entry({"admin", "network", "iface_reconnect"}, call("iface_reconnect"), nil)
103 page.leaf = true
104
105 page = entry({"admin", "network", "iface_shutdown"}, call("iface_shutdown"), nil)
106 page.leaf = true
107
108 page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), _("Interfaces"), 10)
109 page.leaf = true
110 page.subindex = true
111
112 if page.inreq then
113 uci:foreach("network", "interface",
114 function (section)
115 local ifc = section[".name"]
116 if ifc ~= "loopback" then
117 entry({"admin", "network", "network", ifc},
118 true, ifc:upper())
119 end
120 end)
121 end
122
123
124 if nixio.fs.access("/etc/config/dhcp") then
125 page = node("admin", "network", "dhcp")
126 page.target = cbi("admin_network/dhcp")
127 page.title = _("DHCP and DNS")
128 page.order = 30
129
130 page = entry({"admin", "network", "dhcplease_status"}, call("lease_status"), nil)
131 page.leaf = true
132
133 page = node("admin", "network", "hosts")
134 page.target = cbi("admin_network/hosts")
135 page.title = _("Hostnames")
136 page.order = 40
137 end
138
139 page = node("admin", "network", "routes")
140 page.target = cbi("admin_network/routes")
141 page.title = _("Static Routes")
142 page.order = 50
143
144 page = node("admin", "network", "diagnostics")
145 page.target = template("admin_network/diagnostics")
146 page.title = _("Diagnostics")
147 page.order = 60
148
149 page = entry({"admin", "network", "diag_ping"}, call("diag_ping"), nil)
150 page.leaf = true
151
152 page = entry({"admin", "network", "diag_nslookup"}, call("diag_nslookup"), nil)
153 page.leaf = true
154
155 page = entry({"admin", "network", "diag_traceroute"}, call("diag_traceroute"), nil)
156 page.leaf = true
157 -- end
158 end
159
160 function wifi_join()
161 local function param(x)
162 return luci.http.formvalue(x)
163 end
164
165 local function ptable(x)
166 x = param(x)
167 return x and (type(x) ~= "table" and { x } or x) or {}
168 end
169
170 local dev = param("device")
171 local ssid = param("join")
172
173 if dev and ssid then
174 local cancel = (param("cancel") or param("cbi.cancel")) and true or false
175
176 if cancel then
177 luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless_join?device=" .. dev))
178 else
179 local cbi = require "luci.cbi"
180 local tpl = require "luci.template"
181 local map = luci.cbi.load("admin_network/wifi_add")[1]
182
183 if map:parse() ~= cbi.FORM_DONE then
184 tpl.render("header")
185 map:render()
186 tpl.render("footer")
187 end
188 end
189 else
190 luci.template.render("admin_network/wifi_join")
191 end
192 end
193
194 function wifi_add()
195 local dev = luci.http.formvalue("device")
196 local ntm = require "luci.model.network".init()
197
198 dev = dev and ntm:get_wifidev(dev)
199
200 if dev then
201 local net = dev:add_wifinet({
202 mode = "ap",
203 ssid = "OpenWrt",
204 encryption = "none"
205 })
206
207 ntm:save("wireless")
208 luci.http.redirect(net:adminlink())
209 end
210 end
211
212 function wifi_delete(network)
213 local ntm = require "luci.model.network".init()
214 local wnet = ntm:get_wifinet(network)
215 if wnet then
216 local dev = wnet:get_device()
217 local net = wnet:get_network()
218 if dev then
219 luci.sys.call("env -i /sbin/wifi down %q >/dev/null" % dev:name())
220 ntm:del_wifinet(network)
221 ntm:commit("wireless")
222 if net and net:is_empty() then
223 ntm:del_network(net:name())
224 ntm:commit("network")
225 end
226 luci.sys.call("env -i /sbin/wifi up %q >/dev/null" % dev:name())
227 end
228 end
229
230 luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless"))
231 end
232
233 function iface_status()
234 local path = luci.dispatcher.context.requestpath
235 local netm = require "luci.model.network".init()
236 local rv = { }
237
238 local iface
239 for iface in path[#path]:gmatch("[%w%.%-_]+") do
240 local net = netm:get_network(iface)
241 local device = net and net:get_interface()
242 if device then
243 local data = {
244 id = iface,
245 proto = net:proto(),
246 uptime = net:uptime(),
247 gwaddr = net:gwaddr(),
248 dnsaddrs = net:dnsaddrs(),
249 name = device:shortname(),
250 type = device:type(),
251 ifname = device:name(),
252 macaddr = device:mac(),
253 is_up = device:is_up(),
254 rx_bytes = device:rx_bytes(),
255 tx_bytes = device:tx_bytes(),
256 rx_packets = device:rx_packets(),
257 tx_packets = device:tx_packets(),
258
259 ipaddrs = { },
260 ip6addrs = { },
261 subdevices = { }
262 }
263
264 local _, a
265 for _, a in ipairs(device:ipaddrs()) do
266 data.ipaddrs[#data.ipaddrs+1] = {
267 addr = a:host():string(),
268 netmask = a:mask():string(),
269 prefix = a:prefix()
270 }
271 end
272 for _, a in ipairs(device:ip6addrs()) do
273 data.ip6addrs[#data.ip6addrs+1] = {
274 addr = a:host():string(),
275 netmask = a:mask():string(),
276 prefix = a:prefix()
277 }
278 end
279
280 for _, device in ipairs(net:get_interfaces() or {}) do
281 data.subdevices[#data.subdevices+1] = {
282 name = device:shortname(),
283 type = device:type(),
284 ifname = device:name(),
285 macaddr = device:mac(),
286 macaddr = device:mac(),
287 is_up = device:is_up(),
288 rx_bytes = device:rx_bytes(),
289 tx_bytes = device:tx_bytes(),
290 rx_packets = device:rx_packets(),
291 tx_packets = device:tx_packets(),
292 }
293 end
294
295 rv[#rv+1] = data
296 else
297 rv[#rv+1] = {
298 id = iface,
299 name = iface,
300 type = "ethernet"
301 }
302 end
303 end
304
305 if #rv > 0 then
306 luci.http.prepare_content("application/json")
307 luci.http.write_json(rv)
308 return
309 end
310
311 luci.http.status(404, "No such device")
312 end
313
314 function iface_reconnect()
315 local path = luci.dispatcher.context.requestpath
316 local iface = path[#path]
317 local netmd = require "luci.model.network".init()
318
319 local net = netmd:get_network(iface)
320 if net then
321 luci.sys.call("env -i /sbin/ifup %q >/dev/null 2>/dev/null" % iface)
322 luci.http.status(200, "Reconnected")
323 return
324 end
325
326 luci.http.status(404, "No such interface")
327 end
328
329 function iface_shutdown()
330 local path = luci.dispatcher.context.requestpath
331 local iface = path[#path]
332 local netmd = require "luci.model.network".init()
333
334 local net = netmd:get_network(iface)
335 if net then
336 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
337 luci.http.status(200, "Shutdown")
338 return
339 end
340
341 luci.http.status(404, "No such interface")
342 end
343
344 function iface_delete()
345 local path = luci.dispatcher.context.requestpath
346 local iface = path[#path]
347 local netmd = require "luci.model.network".init()
348
349 local net = netmd:del_network(iface)
350 if net then
351 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
352 luci.http.redirect(luci.dispatcher.build_url("admin/network/network"))
353 netmd:commit("network")
354 netmd:commit("wireless")
355 return
356 end
357
358 luci.http.status(404, "No such interface")
359 end
360
361 function wifi_status()
362 local path = luci.dispatcher.context.requestpath
363 local s = require "luci.tools.status"
364 local rv = { }
365
366 local dev
367 for dev in path[#path]:gmatch("[%w%.%-]+") do
368 rv[#rv+1] = s.wifi_network(dev)
369 end
370
371 if #rv > 0 then
372 luci.http.prepare_content("application/json")
373 luci.http.write_json(rv)
374 return
375 end
376
377 luci.http.status(404, "No such device")
378 end
379
380 function wifi_reconnect()
381 local path = luci.dispatcher.context.requestpath
382 local mode = path[#path-1]
383 local wnet = path[#path]
384 local netmd = require "luci.model.network".init()
385
386 local net = netmd:get_wifinet(wnet)
387 local dev = net:get_device()
388 if dev and net then
389 luci.sys.call("env -i /sbin/wifi down >/dev/null 2>/dev/null")
390
391 dev:set("disabled", nil)
392 net:set("disabled", (mode == "wireless_shutdown") and 1 or nil)
393 netmd:commit("wireless")
394
395 luci.sys.call("env -i /sbin/wifi up >/dev/null 2>/dev/null")
396 luci.http.status(200, (mode == "wireless_shutdown") and "Shutdown" or "Reconnected")
397
398 return
399 end
400
401 luci.http.status(404, "No such radio")
402 end
403
404 function lease_status()
405 local s = require "luci.tools.status"
406
407 luci.http.prepare_content("application/json")
408 luci.http.write_json(s.dhcp_leases())
409 end
410
411 function diag_command(cmd)
412 local path = luci.dispatcher.context.requestpath
413 local addr = path[#path]
414
415 if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then
416 luci.http.prepare_content("text/plain")
417
418 local util = io.popen(cmd % addr)
419 if util then
420 while true do
421 local ln = util:read("*l")
422 if not ln then break end
423 luci.http.write(ln)
424 luci.http.write("\n")
425 end
426
427 util:close()
428 end
429
430 return
431 end
432
433 luci.http.status(500, "Bad address")
434 end
435
436 function diag_ping()
437 diag_command("ping -c 5 -W 1 %q 2>&1")
438 end
439
440 function diag_traceroute()
441 diag_command("traceroute -q 1 -w 1 -n %q 2>&1")
442 end
443
444 function diag_nslookup()
445 diag_command("nslookup %q 2>&1")
446 end