luci-0.9: merge r5753
[project/luci.git] / modules / admin-full / luasrc / controller / admin / system.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008-2009 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 module("luci.controller.admin.system", package.seeall)
16
17 function index()
18         luci.i18n.loadc("admin-core")
19         local i18n = luci.i18n.translate
20         
21         entry({"admin", "system"}, alias("admin", "system", "system"), i18n("system"), 30).index = true
22         entry({"admin", "system", "system"}, cbi("admin_system/system"), i18n("system"), 1)
23         entry({"admin", "system", "packages"}, call("action_packages"), i18n("a_s_packages"), 10)
24         entry({"admin", "system", "packages", "ipkg"}, form("admin_system/ipkg"))
25         entry({"admin", "system", "passwd"}, form("admin_system/passwd"), i18n("a_s_changepw"), 20)
26         entry({"admin", "system", "sshkeys"}, form("admin_system/sshkeys"), i18n("a_s_sshkeys"), 30)
27         entry({"admin", "system", "processes"}, form("admin_system/processes"), i18n("process_head"), 45)
28
29         if nixio.fs.access("/etc/config/fstab") then
30                 entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), i18n("a_s_fstab"), 50)
31         end
32
33         if nixio.fs.access("/sys/class/leds") then
34                 entry({"admin", "system", "leds"}, cbi("admin_system/leds"), i18n("leds", "LEDs"), 60)
35         end
36
37         entry({"admin", "system", "backup"}, call("action_backup"), i18n("a_s_backup"), 70)
38         entry({"admin", "system", "upgrade"}, call("action_upgrade"), i18n("admin_upgrade"), 80)
39         entry({"admin", "system", "reboot"}, call("action_reboot"), i18n("reboot"), 90)
40 end
41
42 function action_packages()
43         local ipkg = require("luci.model.ipkg")
44         local submit = luci.http.formvalue("submit")
45         local changes = false
46         local install = { }
47         local remove  = { }
48
49         -- Search query
50         local query = luci.http.formvalue("query")
51         query = (query ~= '') and query or nil
52         
53         
54         -- Packets to be installed
55         local ninst = submit and luci.http.formvalue("install")
56         local uinst = nil       
57
58         -- Install from URL
59         local url = luci.http.formvalue("url")
60         if url and url ~= '' and submit then
61                 uinst = url
62         end
63
64         -- Do install
65         if ninst then
66                 _, install[ninst] = ipkg.install(ninst)
67                 changes = true
68         end
69
70         if uinst then
71                 _, install[uinst] = ipkg.install(uinst)
72                 changes = true
73         end
74
75         -- Remove packets
76         local rem = submit and luci.http.formvalue("remove")
77         if rem then     
78                 _, remove[rem] = ipkg.remove(rem)
79                 changes = true
80         end
81
82         
83         -- Update all packets
84         local update = luci.http.formvalue("update")
85         if update then
86                 _, update = ipkg.update()
87         end
88         
89         
90         -- Upgrade all packets
91         local upgrade = luci.http.formvalue("upgrade")
92         if upgrade then
93                 _, upgrade = ipkg.upgrade()
94         end
95
96         
97         luci.template.render("admin_system/packages", {
98                 query=query, install=install, remove=remove, update=update, upgrade=upgrade
99         })
100  
101         -- Remove index cache
102         if changes then
103                 nixio.fs.unlink("/tmp/luci-indexcache")
104         end     
105 end
106
107 function action_backup()
108         local reset_avail = os.execute([[grep '"rootfs_data"' /proc/mtd >/dev/null 2>&1]]) == 0
109         local restore_cmd = "gunzip | tar -xC/ >/dev/null 2>&1"
110         local backup_cmd  = "tar -c %s | gzip 2>/dev/null"
111         
112         local restore_fpi 
113         luci.http.setfilehandler(
114                 function(meta, chunk, eof)
115                         if not restore_fpi then
116                                 restore_fpi = io.popen(restore_cmd, "w")
117                         end
118                         if chunk then
119                                 restore_fpi:write(chunk)
120                         end
121                         if eof then
122                                 restore_fpi:close()
123                         end
124                 end
125         )
126                   
127         local upload = luci.http.formvalue("archive")
128         local backup = luci.http.formvalue("backup")
129         local reset  = reset_avail and luci.http.formvalue("reset")
130         
131         if upload and #upload > 0 then
132                 luci.template.render("admin_system/applyreboot")
133                 luci.sys.reboot()
134         elseif backup then
135                 luci.util.perror(backup_cmd:format(_keep_pattern()))
136                 local backup_fpi = io.popen(backup_cmd:format(_keep_pattern()), "r")
137                 luci.http.header('Content-Disposition', 'attachment; filename="backup-%s-%s.tar.gz"' % {
138                         luci.sys.hostname(), os.date("%Y-%m-%d")})
139                 luci.http.prepare_content("application/x-targz")
140                 luci.ltn12.pump.all(luci.ltn12.source.file(backup_fpi), luci.http.write)
141         elseif reset then
142                 luci.template.render("admin_system/applyreboot")
143                 luci.util.exec("mtd -r erase rootfs_data")
144         else
145                 luci.template.render("admin_system/backup", {reset_avail = reset_avail})
146         end
147 end
148
149 function action_passwd()
150         local p1 = luci.http.formvalue("pwd1")
151         local p2 = luci.http.formvalue("pwd2")
152         local stat = nil
153         
154         if p1 or p2 then
155                 if p1 == p2 then
156                         stat = luci.sys.user.setpasswd("root", p1)
157                 else
158                         stat = 10
159                 end
160         end
161         
162         luci.template.render("admin_system/passwd", {stat=stat})
163 end
164
165 function action_reboot()
166         local reboot = luci.http.formvalue("reboot")
167         luci.template.render("admin_system/reboot", {reboot=reboot})
168         if reboot then
169                 luci.sys.reboot()
170         end
171 end
172
173 function action_upgrade()
174         require("luci.model.uci")
175
176         local tmpfile = "/tmp/firmware.img"
177         
178         local function image_supported()
179                 -- XXX: yay...
180                 return ( 0 == os.execute(
181                         ". /etc/functions.sh; " ..
182                         "include /lib/upgrade; " ..
183                         "platform_check_image %q >/dev/null"
184                                 % tmpfile
185                 ) )
186         end
187         
188         local function image_checksum()
189                 return (luci.sys.exec("md5sum %q" % tmpfile):match("^([^%s]+)"))
190         end
191         
192         local function storage_size()
193                 local size = 0
194                 if nixio.fs.access("/proc/mtd") then
195                         for l in io.lines("/proc/mtd") do
196                                 local d, s, e, n = l:match('^([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+"([^%s]+)"')
197                                 if n == "linux" then
198                                         size = tonumber(s, 16)
199                                         break
200                                 end
201                         end
202                 elseif nixio.fs.access("/proc/partitions") then
203                         for l in io.lines("/proc/partitions") do
204                                 local x, y, b, n = l:match('^%s*(%d+)%s+(%d+)%s+([^%s]+)%s+([^%s]+)')
205                                 if b and n and not n:match('[0-9]') then
206                                         size = tonumber(b) * 1024
207                                         break
208                                 end
209                         end
210                 end
211                 return size
212         end
213
214
215         -- Install upload handler
216         local file
217         luci.http.setfilehandler(
218                 function(meta, chunk, eof)
219                         if not nixio.fs.access(tmpfile) and not file and chunk and #chunk > 0 then
220                                 file = io.open(tmpfile, "w")
221                         end
222                         if file and chunk then
223                                 file:write(chunk)
224                         end
225                         if file and eof then
226                                 file:close()
227                         end
228                 end
229         )
230
231
232         -- Determine state
233         local keep_avail   = true
234         local step         = tonumber(luci.http.formvalue("step") or 1)
235         local has_image    = nixio.fs.access(tmpfile)
236         local has_support  = image_supported()
237         local has_platform = nixio.fs.access("/lib/upgrade/platform.sh")
238         local has_upload   = luci.http.formvalue("image")
239         
240         -- This does the actual flashing which is invoked inside an iframe
241         -- so don't produce meaningful errors here because the the 
242         -- previous pages should arrange the stuff as required.
243         if step == 4 then
244                 if has_platform and has_image and has_support then
245                         -- Mimetype text/plain
246                         luci.http.prepare_content("text/plain")
247
248                         -- Now invoke sysupgrade
249                         local keepcfg = keep_avail and luci.http.formvalue("keepcfg") == "1"
250                         local fd = io.popen("/sbin/luci-flash %s %q" %{
251                                 keepcfg and "-k %q" % _keep_pattern() or "", tmpfile
252                         })
253
254                         if fd then
255                                 while true do
256                                         local ln = fd:read("*l")
257                                         if not ln then break end
258                                         luci.http.write(ln .. "\n")
259                                 end
260                                 fd:close()
261                         end
262
263                         -- Make sure the device is rebooted
264                         luci.sys.reboot()
265                 end
266
267
268         --
269         -- This is step 1-3, which does the user interaction and
270         -- image upload.
271         --
272
273         -- Step 1: file upload, error on unsupported image format
274         elseif not has_image or not has_support or step == 1 then
275                 -- If there is an image but user has requested step 1
276                 -- or type is not supported, then remove it.
277                 if has_image then
278                         nixio.fs.unlink(tmpfile)
279                 end
280                         
281                 luci.template.render("admin_system/upgrade", {
282                         step=1,
283                         bad_image=(has_image and not has_support or false),
284                         keepavail=keep_avail,
285                         supported=has_platform
286                 } )
287
288         -- Step 2: present uploaded file, show checksum, confirmation
289         elseif step == 2 then
290                 luci.template.render("admin_system/upgrade", {
291                         step=2,
292                         checksum=image_checksum(),
293                         filesize=nixio.fs.stat(tmpfile).size,
294                         flashsize=storage_size(),
295                         keepconfig=(keep_avail and luci.http.formvalue("keepcfg") == "1")
296                 } )
297         
298         -- Step 3: load iframe which calls the actual flash procedure
299         elseif step == 3 then
300                 luci.template.render("admin_system/upgrade", {
301                         step=3,
302                         keepconfig=(keep_avail and luci.http.formvalue("keepcfg") == "1")
303                 } )
304         end     
305 end
306
307 function _keep_pattern()
308         local kpattern = ""
309         local files = luci.model.uci.cursor():get_all("luci", "flash_keep")
310         if files then
311                 kpattern = ""
312                 for k, v in pairs(files) do
313                         if k:sub(1,1) ~= "." and nixio.fs.glob(v)() then
314                                 kpattern = kpattern .. " " ..  v
315                         end
316                 end
317         end
318         return kpattern
319 end