X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/1e608e420beaca67ca6bc6bef308f9f9f6132a66..b96a6af60a1d126146158d662f755920c6edc998:/openssh/openbsd-compat/readpassphrase.c diff --git a/openssh/openbsd-compat/readpassphrase.c b/openssh/openbsd-compat/readpassphrase.c index 7687710..fdef158 100644 --- a/openssh/openbsd-compat/readpassphrase.c +++ b/openssh/openbsd-compat/readpassphrase.c @@ -1,5 +1,3 @@ -/* $OpenBSD: readpassphrase.c,v 1.12 2001/12/15 05:41:00 millert Exp $ */ - /* * Copyright (c) 2000 Todd C. Miller * All rights reserved. @@ -28,7 +26,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.12 2001/12/15 05:41:00 millert Exp $"; +static char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.5 2001/06/27 13:23:30 djm Exp $"; #endif /* LIBC_SCCS and not lint */ #include "includes.h" @@ -49,19 +47,20 @@ static const char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.12 2001/12/15 05:41: # define _POSIX_VDISABLE VDISABLE #endif -static volatile sig_atomic_t signo; - -static void handler(int); - char * -readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags) +readpassphrase(prompt, buf, bufsiz, flags) + const char *prompt; + char *buf; + size_t bufsiz; + int flags; { - ssize_t nr; - int input, output, save_errno; + struct termios term; char ch, *p, *end; - struct termios term, oterm; - struct sigaction sa, saveint, savehup, savequit, saveterm; - struct sigaction savetstp, savettin, savettou; +#ifdef _POSIX_VDISABLE + u_char status; +#endif + int echo, input, output; + sigset_t oset, nset; /* I suppose we could alloc on demand in this case (XXX). */ if (bufsiz == 0) { @@ -69,7 +68,6 @@ readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags) return(NULL); } -restart: /* * Read and write to /dev/tty if available. If not, read from * stdin and write to stderr unless a tty is required. @@ -84,39 +82,44 @@ restart: } /* - * Catch signals that would otherwise cause the user to end - * up with echo turned off in the shell. Don't worry about - * things like SIGALRM and SIGPIPE for now. + * We block SIGINT and SIGTSTP so the terminal is not left + * in an inconsistent state (ie: no echo). It would probably + * be better to simply catch these though. */ - sigemptyset(&sa.sa_mask); - sa.sa_flags = 0; /* don't restart system calls */ - sa.sa_handler = handler; - (void)sigaction(SIGINT, &sa, &saveint); - (void)sigaction(SIGHUP, &sa, &savehup); - (void)sigaction(SIGQUIT, &sa, &savequit); - (void)sigaction(SIGTERM, &sa, &saveterm); - (void)sigaction(SIGTSTP, &sa, &savetstp); - (void)sigaction(SIGTTIN, &sa, &savettin); - (void)sigaction(SIGTTOU, &sa, &savettou); + sigemptyset(&nset); + sigaddset(&nset, SIGINT); + sigaddset(&nset, SIGTSTP); + (void)sigprocmask(SIG_BLOCK, &nset, &oset); /* Turn off echo if possible. */ - if (tcgetattr(input, &oterm) == 0) { - memcpy(&term, &oterm, sizeof(term)); - if (!(flags & RPP_ECHO_ON)) - term.c_lflag &= ~(ECHO | ECHONL); + echo = 0; +#ifdef _POSIX_VDISABLE + status = _POSIX_VDISABLE; +#endif + if (tcgetattr(input, &term) == 0) { + if (!(flags & RPP_ECHO_ON) && (term.c_lflag & ECHO)) { + echo = 1; + term.c_lflag &= ~ECHO; + } #ifdef VSTATUS - if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) + if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) { + status = term.c_cc[VSTATUS]; term.c_cc[VSTATUS] = _POSIX_VDISABLE; + } #endif (void)tcsetattr(input, _T_FLUSH, &term); - } else { - memset(&term, 0, sizeof(term)); - memset(&oterm, 0, sizeof(oterm)); + } + if (!(flags & RPP_ECHO_ON)) { + if (tcgetattr(input, &term) == 0 && (term.c_lflag & ECHO)) { + echo = 1; + term.c_lflag &= ~ECHO; + (void)tcsetattr(input, _T_FLUSH, &term); + } } (void)write(output, prompt, strlen(prompt)); end = buf + bufsiz - 1; - for (p = buf; (nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) { + for (p = buf; read(input, &ch, 1) == 1 && ch != '\n' && ch != '\r';) { if (p < end) { if ((flags & RPP_SEVENBIT)) ch &= 0x7f; @@ -130,55 +133,35 @@ restart: } } *p = '\0'; - save_errno = errno; - if (!(term.c_lflag & ECHO)) - (void)write(output, "\n", 1); - - /* Restore old terminal settings and signals. */ - if (memcmp(&term, &oterm, sizeof(term)) != 0) - (void)tcsetattr(input, _T_FLUSH, &oterm); - (void)sigaction(SIGINT, &saveint, NULL); - (void)sigaction(SIGHUP, &savehup, NULL); - (void)sigaction(SIGQUIT, &savequit, NULL); - (void)sigaction(SIGTERM, &saveterm, NULL); - (void)sigaction(SIGTSTP, &savetstp, NULL); - (void)sigaction(SIGTTIN, &savettin, NULL); - (void)sigaction(SIGTTOU, &savettou, NULL); - if (input != STDIN_FILENO) - (void)close(input); - - /* - * If we were interrupted by a signal, resend it to ourselves - * now that we have restored the signal handlers. - */ - if (signo) { - kill(getpid(), signo); - switch (signo) { - case SIGTSTP: - case SIGTTIN: - case SIGTTOU: - signo = 0; - goto restart; +#ifdef _POSIX_VDISABLE + if (echo || status != _POSIX_VDISABLE) { +#else + if (echo) { +#endif + if (echo) { + (void)write(output, "\n", 1); + term.c_lflag |= ECHO; } +#ifdef VSTATUS + if (status != _POSIX_VDISABLE) + term.c_cc[VSTATUS] = status; +#endif + (void)tcsetattr(input, _T_FLUSH, &term); } - - errno = save_errno; - return(nr == -1 ? NULL : buf); + (void)sigprocmask(SIG_SETMASK, &oset, NULL); + if (input != STDIN_FILENO) + (void)close(input); + return(buf); } #endif /* HAVE_READPASSPHRASE */ - + #if 0 char * -getpass(const char *prompt) +getpass(prompt) + const char *prompt; { static char buf[_PASSWORD_LEN + 1]; return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF)); } #endif - -static void handler(int s) -{ - - signo = s; -}