summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-26 11:07:22 +1100
committerDamien Miller <djm@mindrot.org>2000-01-26 11:07:22 +1100
commitfa51a83f544bf84f3721fdc02f1cd568f96aee42 (patch)
tree86144d213f8a2dcc087394ceb6b637fab67b0796 /sshd.c
parentd89c24b57edf335a69ba20421e2fe52b5f817d19 (diff)
downloadopenssh-git-fa51a83f544bf84f3721fdc02f1cd568f96aee42.tar.gz
- Reorder PAM initialisation so it does not mess up lastlog. Reported
by Andre Lucas <andre.lucas@dial.pipex.com>
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/sshd.c b/sshd.c
index a5cbbfc4..f1227978 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1740,12 +1740,6 @@ do_authenticated(struct passwd * pw)
/* Indicate that we now have a pty. */
have_pty = 1;
-
-#ifdef USE_PAM
- /* do the pam_open_session since we have the pty */
- do_pam_session(pw->pw_name, ttyname);
-#endif /* USE_PAM */
-
break;
case SSH_CMSG_X11_REQUEST_FORWARDING:
@@ -1821,9 +1815,6 @@ do_authenticated(struct passwd * pw)
packet_set_interactive(have_pty || display != NULL,
options.keepalives);
-#ifdef USE_PAM
- do_pam_setcred();
-#endif /* USE_PAM */
if (forced_command != NULL)
goto do_forced_command;
debug("Forking shell.");
@@ -1839,9 +1830,6 @@ do_authenticated(struct passwd * pw)
packet_set_interactive(have_pty || display != NULL,
options.keepalives);
-#ifdef USE_PAM
- do_pam_setcred();
-#endif /* USE_PAM */
if (forced_command != NULL)
goto do_forced_command;
/* Get command from the packet. */
@@ -1929,6 +1917,10 @@ do_exec_no_pty(const char *command, struct passwd * pw,
setproctitle("%s@notty", pw->pw_name);
+#ifdef USE_PAM
+ do_pam_setcred();
+#endif /* USE_PAM */
+
/* Fork the child. */
if ((pid = fork()) == 0) {
/* Child. Reinitialize the log since the pid has changed. */
@@ -2067,6 +2059,11 @@ do_exec_pty(const char *command, int ptyfd, int ttyfd,
}
setproctitle("%s@%s", pw->pw_name, strrchr(ttyname, '/') + 1);
+#ifdef USE_PAM
+ do_pam_session(pw->pw_name, ttyname);
+ do_pam_setcred();
+#endif /* USE_PAM */
+
/* Fork the child. */
if ((pid = fork()) == 0) {
pid = getpid();