Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b51ac7a authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "Set HOME, LOGNAME, SHELL, and USER from adbd."

am: 36d7af4c

* commit '36d7af4c':
  Set HOME, LOGNAME, SHELL, and USER from adbd.
parents 64ea814c 36d7af4c
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -83,6 +83,7 @@

#include <errno.h>
#include <pty.h>
#include <pwd.h>
#include <sys/select.h>
#include <termios.h>

@@ -281,6 +282,15 @@ bool Subprocess::ForkAndExec() {
        parent_error_sfd.Reset();
        close_on_exec(child_error_sfd.fd());

        // TODO: $HOSTNAME? Normally bash automatically sets that, but mksh doesn't.
        passwd* pw = getpwuid(getuid());
        if (pw != nullptr) {
            setenv("HOME", pw->pw_dir, 1);
            setenv("LOGNAME", pw->pw_name, 1);
            setenv("SHELL", pw->pw_shell, 1);
            setenv("USER", pw->pw_name, 1);
        }

        if (is_interactive()) {
            execl(_PATH_BSHELL, _PATH_BSHELL, "-", nullptr);
        } else {