Switch user without creating an intermediate process Switch user without creating an intermediate process bash bash

Switch user without creating an intermediate process


The difference between sudo sleep and exec sudo sleep is that in the second command sudo process replaces bash image and calling shell process exits when sleep exits

pstree -p $$bash(8765)───pstree(8943)((sleep 1; pstree -p $$ )&); sudo -u user sleep 2bash(8765)───sudo(8897)───sleep(8899)((sleep 1; pstree -p $$ )&); exec sudo -u user sleep 2sudo(8765)───sleep(8993)

however the fact that sudo or su fork a new process depends on design and their implementation (some sources found here).

From sudo man page :

Process model

When sudo runs a command, it calls fork(2), sets up the execution environment as described above, and calls the execve system call in the child process. The main sudo process waits until the command has completed, then passes the command's exit status to the security policy's close function and exits. If an I/O logging plugin is config- ured or if the security policy explicitly requests it, a new pseudo-terminal (“pty”) is created and a second sudo process is used to relay job control signals between the user's existing pty and the new pty the command is being run in. This extra process makes it possible to, for example, suspend and resume the command. Without it, the com- mand would be in what POSIX terms an “orphaned process group” and it would not receive any job control signals. As a special case, if the policy plugin does not define a close function and no pty is required, sudo will execute the command directly instead of calling fork(2) first. The sudoers policy plugin will only define a close function when I/O logging is enabled, a pty is required, or the pam_session or pam_setcred options are enabled. Note that pam_session and pam_setcred are enabled by default on sys- tems using PAM.


I do not share the observation and the conclusions. See below:

I created two shellscripts:

$ cat just_sudo.sh#!/bin/bashsudo sleep inf$ cat exec_sudo.sh#!/bin/bashexec sudo sleep inf

So, one with an exec, one without. If I do a pstree to see the starting situation, I get:

$ pstree $$bash───pstree$ echo $$17250

This gives me the baseline. Next I launched both scripts:

$ bash just_sudo.sh &[1] 1218$ bash exec_sudo.sh &[2] 1220

And then, pstree gives:

$ pstree $$bash─┬─bash───sleep     ├─pstree     └─sleep

the first being the just_sudo, the second is the exec_sudo. Both run as root:

$ ps -ef | grep sleeproot      1219  1218  0 14:01 pts/4    00:00:00 sleep infroot      1220 17250  0 14:01 pts/4    00:00:00 sleep inf

once again the first is the just_sudo and the second the exec_sudo. You can see that the parent-PID for the sleep in the exec_sudo is the interactive shell from which the scripts are launched and the PID is 1220, which was the PID we saw when the script was launched in the background.

If you use two terminal windows and do not put it in the background, this will work also:

terminal 1                            terminal 2$ echo $$16053                                 $ pstree 16053                                      bash$ sudo sleep inf                                      $ pstree 16053                                      bash───sleep^C$ exec sudo sleep inf                                      $ pstree 16053                                      sleep^C ( window is closed )

So, on my linux system, the behavior is not as you suggest.The only way that the sudo may remain in the process-tree is if it runs in the existing tty (so without an exec), or if it is invoked with a pseudo-terminal, for example as exec sudoedit.


In order to free a command, you have to give him std io:

For this,you could either close all stdin, stdout and stderr or let them point elsewhere.

Try this:

su - someguy -c 'exec nohup sleep 60 >/tmp/sleep.log 2>/tmp/sleep.err <<<"" &'

Note:

su - someguy -c 'exec nohup sleep 60 &'

Is enough, and

su - someguy -c 'exec sleep 60 >/tmp/sleep.log 2>/tmp/sleep.err <<<"" &'

Will work too.

Consider having a look at man nohup

Note 2: Under , you could use:

su - someguy -c 'exec sleep 60 & disown -h'

... And read help disown or man bash.

Little demo showing how to close all IOs:

su - someguy -c 'exec 0<&- ; exec 1>&- ; exec 2>&- ; exec sleep 60 &'

quick test:

pstree $(ps -C sleep ho pid)sleep