libs/web: Fixed luci.template
[oweals/luci.git] / libs / web / luasrc / sauth.lua
index d25f287c5a030095a43a73171eb5c0ba7d387e5b..0ac236753eaff905e6cee7d303cb6b327d3de6ea 100644 (file)
@@ -17,6 +17,7 @@ $Id$
 module("luci.sauth", package.seeall)
 require("luci.fs")
 require("luci.util")
+require("luci.sys")
 require("luci.config")
 
 
@@ -46,13 +47,17 @@ end
 function prepare()
        luci.fs.mkdir(sessionpath)
        luci.fs.chmod(sessionpath, "a-rwx,u+rwx")
+        
+       if not sane() then
+               error("Security Exception: Session path is not sane!")
+       end
 end
 
 --- Read a session and return its content.
 -- @param id   Session identifier
 -- @return             Session data
 function read(id)
-       if not id then
+       if not id or not sane(sessionpath .. "/" .. id) then
                return
        end
        clean()
@@ -60,11 +65,21 @@ function read(id)
 end
 
 
+--- Check whether Session environment is sane.
+-- @return Boolean status
+function sane(file)
+       return luci.sys.process.info("uid")
+                       == luci.fs.stat(file or sessionpath, "uid")
+               and luci.fs.stat(file or sessionpath, "mode")
+                       == (file and "rw-------" or "rwx------")
+end
+
+
 --- Write session data to a session file.
 -- @param id   Session identifier
 -- @param data Session data
 function write(id, data)
-       if not luci.fs.stat(sessionpath) then
+       if not sane() then
                prepare()
        end
        luci.fs.writefile(sessionpath .. "/" .. id, data)