luci-base: properly handle ubus connections for non-root (#570, #571)
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 9 Dec 2015 19:32:12 +0000 (20:32 +0100)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 11 Jan 2016 14:21:46 +0000 (15:21 +0100)
Instead of relying on the connect-before-setuid hack, ship a proper
acl definition file whitelisting the procedures that LuCI requires
on its non-root pages.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
modules/luci-base/luasrc/dispatcher.lua
modules/luci-base/root/usr/share/acl.d/luci-base.json [new file with mode: 0644]

index cd5d77a..2fbc2c9 100644 (file)
@@ -402,9 +402,6 @@ function dispatch(request)
        end
 
        if track.setuser then
-               -- trigger ubus connection before dropping root privs
-               util.ubus()
-
                sys.process.setuser(track.setuser)
        end
 
diff --git a/modules/luci-base/root/usr/share/acl.d/luci-base.json b/modules/luci-base/root/usr/share/acl.d/luci-base.json
new file mode 100644 (file)
index 0000000..4d58236
--- /dev/null
@@ -0,0 +1,8 @@
+{
+       "user": "nobody",
+       "access": {
+               "system": {
+                       "methods": [ "board", "info" ]
+               }
+       }
+}