我正在尝试创建一个可以以用户身份运行的关机命令,即一个不是以root身份运行的flask网页。听起来很简单,只要放一个
shutdown
SETUID脚本中的命令。因为SETUID不适用于shell脚本,所以我从C程序创建了一个可执行文件。
问题是,这在目标机器Raspberry Pi Zero W上不起作用。我在Ubuntu 20.4 pc上测试了同样的东西,它在那里运行得非常完美。因此,这种方法本身似乎是正确的,但存在覆盆子pi问题。
Pi运行这个操作系统:
cat /etc/issue
-->
Raspbian GNU/Linux 10 \n \l
这是usershutdown.c:
#include <stdio.h>
#include <stdlib.h>
int main(){
system("/sbin/poweroff");
}
以下是可执行文件的权限:
-rwsr-xr-x 1 root root 7988 Dec 20 23:59 usershutdown
我在/etc/fstab中检查了根磁盘的挂载选项,并在其中添加了
,suid
并重新启动:
PARTUUID=738a4d67-02 / ext4 defaults,noatime,suid 0 1
当按预期调用exec时,Pi上会显示以下错误消息:
$ ./usershutdown
Failed to set wall message, ignoring: Interactive authentication required.
Failed to power off system via logind: Interactive authentication required.
Failed to open initctl fifo: Permission denied
Failed to talk to init daemon.
$
这就是Pi上的工作原理,当以root/sudo调用exec时,与它的ssh连接会关闭,设备会自动关闭而不会出错:
$ sudo ./usershutdown
$ Connection to picamhq closed by remote host.
Connection to picamhq closed.
$
我该怎么解决这个问题?