summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-10-12 05:45:44 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-10-12 05:45:44 +0000
commit532fa60d1ed2957f8faa8596fb8410569e0e467f (patch)
treee245d7188e26a18c04a0a32bcb9e4831a24ea318 /usr.bin/ssh/sshd.c
parenta92fa6f14d44d7969cc0c97a9f30a732ed83596b (diff)
setsid() for all connections; millert/markus
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r--usr.bin/ssh/sshd.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index bd76da711a6..cf2e6116fdc 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -18,7 +18,7 @@ agent connections.
*/
#include "includes.h"
-RCSID("$Id: sshd.c,v 1.28 1999/10/11 21:48:29 markus Exp $");
+RCSID("$Id: sshd.c,v 1.29 1999/10/12 05:45:43 deraadt Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -1697,6 +1697,11 @@ void do_exec_no_pty(const char *command, struct passwd *pw,
log_init(av0, debug_flag && !inetd_flag, debug_flag,
options.quiet_mode, options.log_facility);
+ /* Create a new session and process group since the 4.4BSD setlogin()
+ affects the entire process group. */
+ if (setsid() < 0)
+ error("setsid failed: %.100s", strerror(errno));
+
#ifdef USE_PIPES
/* Redirect stdin. We close the parent side of the socket pair,
and make the child side the standard input. */
@@ -2068,7 +2073,8 @@ void do_child(const char *command, struct passwd *pw, const char *term,
}
/* Set login name in the kernel. */
- setlogin(pw->pw_name);
+ if (setlogin(pw->pw_name) < 0)
+ error("setlogin failed: %s", strerror(errno));
/* Set uid, gid, and groups. */
/* Login(1) does this as well, and it needs uid 0 for the "-h" switch,