3

我正在编写一个程序,它在第一次运行以执行配置更改(在 中创建一个文件/etc)时暂时需要 root。

如何通过在图形对话框中询问用户密码来临时获得 root 权限?

该程序使用 Qt,如果它仅适用于 Ubuntu,我会相当高兴,但我不想假设它们已经gksudo安装或安装了任何东西。我也不能用SUID

我唯一能想到的就是提供我自己的密码对话框,并通过(或其不太安全的表亲之一)将其提供给命令行sudo二进制文件。system()

不过,这似乎很老套——命令行前端通常是一个非常糟糕的主意,应该不惜一切代价避免使用。那么有没有更好的方法呢?也许有一个libsudo,或者一些使用IPC的方法?

注意:这不是重复的。或者至少,那里的答案并没有把它当作我要问的问题。

4

1 回答 1

1

来自man sudo

   -A          Normally, if sudo requires a password, it will read it from the
               user's terminal.  If the -A (askpass) option is specified, a
               (possibly graphical) helper program is executed to read the user's
               password and output the password to the standard output.  If the
               SUDO_ASKPASS environment variable is set, it specifies the path to
               the helper program.  Otherwise, if /etc/sudo.conf contains a line
               specifying the askpass program, that value will be used.  For
               example:

                   # Path to askpass helper program
                   Path askpass /usr/X11R6/bin/ssh-askpass

               If no askpass program is available, sudo will exit with an error.

要么使用安装在许多系统上的 ssh-askpass,要么编写自己的密码提示命令,然后将其提供给 sudo。这仍然有点棘手,但是您不必担心将密码传递给 sudo。

于 2013-03-02T00:36:54.470 回答