summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1995-11-21 04:30:29 +0000
committerPeter Wemm <peter@FreeBSD.org>1995-11-21 04:30:29 +0000
commitb3bf66adcdba5f907e0dfa8300b32822ca1327e3 (patch)
tree59531809278bdca46cbb677f2f71d89b64c6733f /security
parentAdd markm@freebsd.org as maintainer. Hey Mark, you are never going (diff)
two minor adjustments to ssh for freebsd specific issues:
patch-ac: call setsid() before setlogin() in the child (when emulating rsh) otherwise the setlogin() will fail when/if the proposed setlogin() changes go in. Otherwise it silently fails and may leave the login name of the user session as "root" (depending on how sshd was started). Without the proposed kernel change, it harmlessly sets the login name of the user's session. patch-ad: patch the #ifdef botch that stopped a ssh login from using and updating the lastlog file. This is because we have struct lastlog defined inside utmp.h rather than a lastlog.h include file like it was expecting.
Notes
Notes: svn path=/head/; revision=2440
Diffstat (limited to 'security')
-rw-r--r--security/ssh/files/patch-ac14
-rw-r--r--security/ssh2/files/patch-ac14
2 files changed, 28 insertions, 0 deletions
diff --git a/security/ssh/files/patch-ac b/security/ssh/files/patch-ac
new file mode 100644
index 000000000000..c2c53c02946d
--- /dev/null
+++ b/security/ssh/files/patch-ac
@@ -0,0 +1,14 @@
+*** sshd.c.old Sun Oct 1 11:16:22 1995
+--- sshd.c Tue Nov 21 02:03:24 1995
+***************
+*** 1581,1586 ****
+--- 1581,1589 ----
+ log_init(av0, debug_flag && !inetd_flag, debug_flag,
+ options.quiet_mode, options.log_facility);
+
++ #ifdef HAVE_SETSID
++ setsid();
++ #endif
+ #ifdef USE_PIPES
+ /* Redirect stdin. We close the parent side of the socket pair,
+ and make the child side the standard input. */
diff --git a/security/ssh2/files/patch-ac b/security/ssh2/files/patch-ac
new file mode 100644
index 000000000000..c2c53c02946d
--- /dev/null
+++ b/security/ssh2/files/patch-ac
@@ -0,0 +1,14 @@
+*** sshd.c.old Sun Oct 1 11:16:22 1995
+--- sshd.c Tue Nov 21 02:03:24 1995
+***************
+*** 1581,1586 ****
+--- 1581,1589 ----
+ log_init(av0, debug_flag && !inetd_flag, debug_flag,
+ options.quiet_mode, options.log_facility);
+
++ #ifdef HAVE_SETSID
++ setsid();
++ #endif
+ #ifdef USE_PIPES
+ /* Redirect stdin. We close the parent side of the socket pair,
+ and make the child side the standard input. */