1 /* $OpenBSD: readpassphrase.c,v 1.14 2002/06/28 01:43:58 millert Exp $ */
4 * Copyright (c) 2000-2002 Todd C. Miller <Todd.Miller@courtesan.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
19 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static const char rcsid
[] = "$OpenBSD: readpassphrase.c,v 1.14 2002/06/28 01:43:58 millert Exp $";
32 #endif /* LIBC_SCCS and not lint */
36 #ifndef HAVE_READPASSPHRASE
39 #include <readpassphrase.h>
42 # define _T_FLUSH (TCSAFLUSH|TCSASOFT)
44 # define _T_FLUSH (TCSAFLUSH)
47 /* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
48 #if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
49 # define _POSIX_VDISABLE VDISABLE
52 static volatile sig_atomic_t signo
;
54 static void handler(int);
57 readpassphrase(const char *prompt
, char *buf
, size_t bufsiz
, int flags
)
60 int input
, output
, save_errno
;
62 struct termios term
, oterm
;
63 struct sigaction sa
, savealrm
, saveint
, savehup
, savequit
, saveterm
;
64 struct sigaction savetstp
, savettin
, savettou
, savepipe
;
66 /* I suppose we could alloc on demand in this case (XXX). */
75 * Read and write to /dev/tty if available. If not, read from
76 * stdin and write to stderr unless a tty is required.
78 if ((flags
& RPP_STDIN
) ||
79 (input
= output
= open(_PATH_TTY
, O_RDWR
)) == -1) {
80 if (flags
& RPP_REQUIRE_TTY
) {
85 output
= STDERR_FILENO
;
89 * Catch signals that would otherwise cause the user to end
90 * up with echo turned off in the shell. Don't worry about
91 * things like SIGXCPU and SIGVTALRM for now.
93 sigemptyset(&sa
.sa_mask
);
94 sa
.sa_flags
= 0; /* don't restart system calls */
95 sa
.sa_handler
= handler
;
96 (void)sigaction(SIGALRM
, &sa
, &savealrm
);
97 (void)sigaction(SIGHUP
, &sa
, &savehup
);
98 (void)sigaction(SIGINT
, &sa
, &saveint
);
99 (void)sigaction(SIGPIPE
, &sa
, &savepipe
);
100 (void)sigaction(SIGQUIT
, &sa
, &savequit
);
101 (void)sigaction(SIGTERM
, &sa
, &saveterm
);
102 (void)sigaction(SIGTSTP
, &sa
, &savetstp
);
103 (void)sigaction(SIGTTIN
, &sa
, &savettin
);
104 (void)sigaction(SIGTTOU
, &sa
, &savettou
);
106 /* Turn off echo if possible. */
107 if (input
!= STDIN_FILENO
&& tcgetattr(input
, &oterm
) == 0) {
108 memcpy(&term
, &oterm
, sizeof(term
));
109 if (!(flags
& RPP_ECHO_ON
))
110 term
.c_lflag
&= ~(ECHO
| ECHONL
);
112 if (term
.c_cc
[VSTATUS
] != _POSIX_VDISABLE
)
113 term
.c_cc
[VSTATUS
] = _POSIX_VDISABLE
;
115 (void)tcsetattr(input
, _T_FLUSH
, &term
);
117 memset(&term
, 0, sizeof(term
));
118 term
.c_lflag
|= ECHO
;
119 memset(&oterm
, 0, sizeof(oterm
));
120 oterm
.c_lflag
|= ECHO
;
123 if (!(flags
& RPP_STDIN
))
124 (void)write(output
, prompt
, strlen(prompt
));
125 end
= buf
+ bufsiz
- 1;
126 for (p
= buf
; (nr
= read(input
, &ch
, 1)) == 1 && ch
!= '\n' && ch
!= '\r';) {
128 if ((flags
& RPP_SEVENBIT
))
131 if ((flags
& RPP_FORCELOWER
))
133 if ((flags
& RPP_FORCEUPPER
))
141 if (!(term
.c_lflag
& ECHO
))
142 (void)write(output
, "\n", 1);
144 /* Restore old terminal settings and signals. */
145 if (memcmp(&term
, &oterm
, sizeof(term
)) != 0)
146 (void)tcsetattr(input
, _T_FLUSH
, &oterm
);
147 (void)sigaction(SIGALRM
, &savealrm
, NULL
);
148 (void)sigaction(SIGHUP
, &savehup
, NULL
);
149 (void)sigaction(SIGINT
, &saveint
, NULL
);
150 (void)sigaction(SIGQUIT
, &savequit
, NULL
);
151 (void)sigaction(SIGPIPE
, &savepipe
, NULL
);
152 (void)sigaction(SIGTERM
, &saveterm
, NULL
);
153 (void)sigaction(SIGTSTP
, &savetstp
, NULL
);
154 (void)sigaction(SIGTTIN
, &savettin
, NULL
);
155 if (input
!= STDIN_FILENO
)
159 * If we were interrupted by a signal, resend it to ourselves
160 * now that we have restored the signal handlers.
163 kill(getpid(), signo
);
173 return(nr
== -1 ? NULL
: buf
);
178 getpass(const char *prompt
)
180 static char buf
[_PASSWORD_LEN
+ 1];
182 return(readpassphrase(prompt
, buf
, sizeof(buf
), RPP_ECHO_OFF
));
186 static void handler(int s
)
190 #endif /* HAVE_READPASSPHRASE */
192 #pragma ident "%Z%%M% %I% %E% SMI"