diff options
author | Doug Hogan <doug@cvs.openbsd.org> | 2015-08-22 16:01:06 +0000 |
---|---|---|
committer | Doug Hogan <doug@cvs.openbsd.org> | 2015-08-22 16:01:06 +0000 |
commit | 07a15b2cdf29c0d2880e4dfcc270506c47323228 (patch) | |
tree | 3c4e8be81454aaeb7599674dd6248e75c308921b /usr.bin/doas | |
parent | aaccc2c8599d99bf273027c3a450e26fe5851cdc (diff) |
Add cwd context to syslog entry.
input + ok tedu@, ok benno@
Diffstat (limited to 'usr.bin/doas')
-rw-r--r-- | usr.bin/doas/doas.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/usr.bin/doas/doas.c b/usr.bin/doas/doas.c index d7656ba2538..c7e4f9282da 100644 --- a/usr.bin/doas/doas.c +++ b/usr.bin/doas/doas.c @@ -1,4 +1,4 @@ -/* $OpenBSD: doas.c,v 1.37 2015/08/20 18:42:11 rzalamena Exp $ */ +/* $OpenBSD: doas.c,v 1.38 2015/08/22 16:01:05 doug Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -327,6 +327,8 @@ main(int argc, char **argv, char **envp) int i, ch; int sflag = 0; int nflag = 0; + char cwdpath[PATH_MAX]; + const char *cwd; uid = getuid(); @@ -423,8 +425,14 @@ main(int argc, char **argv, char **envp) LOGIN_SETUSER) != 0) errx(1, "failed to set user context for target"); - syslog(LOG_AUTHPRIV | LOG_INFO, "%s ran command as %s: %s", - myname, pw->pw_name, cmdline); + if (getcwd(cwdpath, sizeof(cwdpath)) == NULL) + cwd = "(failed)"; + else + cwd = cwdpath; + + syslog(LOG_AUTHPRIV | LOG_INFO, "%s ran command %s as %s from %s", + myname, cmdline, pw->pw_name, cwd); + if (setenv("PATH", safepath, 1) == -1) err(1, "failed to set PATH '%s'", safepath); execvpe(cmd, argv, envp); |