blob: 4ee1be5de283d00796c7484cd3b1858ec7e7bbba [file] [log] [blame]
Damien Miller3db2e4d2003-11-24 13:33:34 +11001/* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
2
Ben Lindstromaf4a6c32003-08-25 01:10:51 +00003/* $OpenBSD: readpassphrase.c,v 1.16 2003/06/17 21:56:23 millert Exp $ */
Damien Miller8e3bdca2002-02-13 16:00:15 +11004
Damien Millerc8a38682001-06-25 18:09:16 +10005/*
Damien Miller71eb0c12002-09-11 10:29:11 +10006 * Copyright (c) 2000-2002 Todd C. Miller <Todd.Miller@courtesan.com>
Damien Millerc8a38682001-06-25 18:09:16 +10007 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +00008 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
Damien Millerc8a38682001-06-25 18:09:16 +100011 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +000012 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 *
20 * Sponsored in part by the Defense Advanced Research Projects
21 * Agency (DARPA) and Air Force Research Laboratory, Air Force
22 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Damien Millerc8a38682001-06-25 18:09:16 +100023 */
24
25#if defined(LIBC_SCCS) && !defined(lint)
Ben Lindstromaf4a6c32003-08-25 01:10:51 +000026static const char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.16 2003/06/17 21:56:23 millert Exp $";
Damien Millerc8a38682001-06-25 18:09:16 +100027#endif /* LIBC_SCCS and not lint */
28
29#include "includes.h"
30
31#ifndef HAVE_READPASSPHRASE
32
33#include <termios.h>
34#include <readpassphrase.h>
35
36#ifdef TCSASOFT
37# define _T_FLUSH (TCSAFLUSH|TCSASOFT)
38#else
39# define _T_FLUSH (TCSAFLUSH)
40#endif
41
Ben Lindstroma0bd44c2001-10-25 15:02:35 +000042/* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
43#if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
44# define _POSIX_VDISABLE VDISABLE
45#endif
46
Damien Miller8e3bdca2002-02-13 16:00:15 +110047static volatile sig_atomic_t signo;
48
49static void handler(int);
50
Damien Millerc8a38682001-06-25 18:09:16 +100051char *
Damien Miller8e3bdca2002-02-13 16:00:15 +110052readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
Damien Millerc8a38682001-06-25 18:09:16 +100053{
Damien Miller8e3bdca2002-02-13 16:00:15 +110054 ssize_t nr;
55 int input, output, save_errno;
Damien Millerc8a38682001-06-25 18:09:16 +100056 char ch, *p, *end;
Damien Miller8e3bdca2002-02-13 16:00:15 +110057 struct termios term, oterm;
Damien Miller71eb0c12002-09-11 10:29:11 +100058 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
59 struct sigaction savetstp, savettin, savettou, savepipe;
Damien Millerc8a38682001-06-25 18:09:16 +100060
61 /* I suppose we could alloc on demand in this case (XXX). */
62 if (bufsiz == 0) {
63 errno = EINVAL;
64 return(NULL);
65 }
66
Damien Miller8e3bdca2002-02-13 16:00:15 +110067restart:
Damien Miller71eb0c12002-09-11 10:29:11 +100068 signo = 0;
Damien Millerc8a38682001-06-25 18:09:16 +100069 /*
70 * Read and write to /dev/tty if available. If not, read from
71 * stdin and write to stderr unless a tty is required.
72 */
Damien Miller71eb0c12002-09-11 10:29:11 +100073 if ((flags & RPP_STDIN) ||
74 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
Damien Millerc8a38682001-06-25 18:09:16 +100075 if (flags & RPP_REQUIRE_TTY) {
76 errno = ENOTTY;
77 return(NULL);
78 }
79 input = STDIN_FILENO;
80 output = STDERR_FILENO;
81 }
82
83 /*
Damien Miller8e3bdca2002-02-13 16:00:15 +110084 * Catch signals that would otherwise cause the user to end
85 * up with echo turned off in the shell. Don't worry about
Damien Miller71eb0c12002-09-11 10:29:11 +100086 * things like SIGXCPU and SIGVTALRM for now.
Damien Millerc8a38682001-06-25 18:09:16 +100087 */
Damien Miller8e3bdca2002-02-13 16:00:15 +110088 sigemptyset(&sa.sa_mask);
89 sa.sa_flags = 0; /* don't restart system calls */
90 sa.sa_handler = handler;
Damien Miller71eb0c12002-09-11 10:29:11 +100091 (void)sigaction(SIGALRM, &sa, &savealrm);
Damien Miller8e3bdca2002-02-13 16:00:15 +110092 (void)sigaction(SIGHUP, &sa, &savehup);
Damien Miller71eb0c12002-09-11 10:29:11 +100093 (void)sigaction(SIGINT, &sa, &saveint);
94 (void)sigaction(SIGPIPE, &sa, &savepipe);
Damien Miller8e3bdca2002-02-13 16:00:15 +110095 (void)sigaction(SIGQUIT, &sa, &savequit);
96 (void)sigaction(SIGTERM, &sa, &saveterm);
97 (void)sigaction(SIGTSTP, &sa, &savetstp);
98 (void)sigaction(SIGTTIN, &sa, &savettin);
99 (void)sigaction(SIGTTOU, &sa, &savettou);
Damien Millerc8a38682001-06-25 18:09:16 +1000100
101 /* Turn off echo if possible. */
Damien Miller71eb0c12002-09-11 10:29:11 +1000102 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
Damien Miller8e3bdca2002-02-13 16:00:15 +1100103 memcpy(&term, &oterm, sizeof(term));
104 if (!(flags & RPP_ECHO_ON))
105 term.c_lflag &= ~(ECHO | ECHONL);
Damien Millerc8a38682001-06-25 18:09:16 +1000106#ifdef VSTATUS
Damien Miller8e3bdca2002-02-13 16:00:15 +1100107 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
Damien Millerc8a38682001-06-25 18:09:16 +1000108 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
Damien Millerc8a38682001-06-25 18:09:16 +1000109#endif
110 (void)tcsetattr(input, _T_FLUSH, &term);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100111 } else {
112 memset(&term, 0, sizeof(term));
Damien Miller71eb0c12002-09-11 10:29:11 +1000113 term.c_lflag |= ECHO;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100114 memset(&oterm, 0, sizeof(oterm));
Damien Miller71eb0c12002-09-11 10:29:11 +1000115 oterm.c_lflag |= ECHO;
Damien Millerc8a38682001-06-25 18:09:16 +1000116 }
117
Damien Miller71eb0c12002-09-11 10:29:11 +1000118 if (!(flags & RPP_STDIN))
119 (void)write(output, prompt, strlen(prompt));
Damien Millerc8a38682001-06-25 18:09:16 +1000120 end = buf + bufsiz - 1;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100121 for (p = buf; (nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) {
Damien Millerc8a38682001-06-25 18:09:16 +1000122 if (p < end) {
123 if ((flags & RPP_SEVENBIT))
Damien Millerb90416b2001-06-27 23:26:38 +1000124 ch &= 0x7f;
Damien Millerc8a38682001-06-25 18:09:16 +1000125 if (isalpha(ch)) {
126 if ((flags & RPP_FORCELOWER))
127 ch = tolower(ch);
128 if ((flags & RPP_FORCEUPPER))
129 ch = toupper(ch);
130 }
131 *p++ = ch;
132 }
133 }
134 *p = '\0';
Damien Miller8e3bdca2002-02-13 16:00:15 +1100135 save_errno = errno;
136 if (!(term.c_lflag & ECHO))
137 (void)write(output, "\n", 1);
138
139 /* Restore old terminal settings and signals. */
140 if (memcmp(&term, &oterm, sizeof(term)) != 0)
Damien Miller89a1b9f2002-02-13 16:43:52 +1100141 (void)tcsetattr(input, _T_FLUSH, &oterm);
Damien Miller71eb0c12002-09-11 10:29:11 +1000142 (void)sigaction(SIGALRM, &savealrm, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100143 (void)sigaction(SIGHUP, &savehup, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000144 (void)sigaction(SIGINT, &saveint, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100145 (void)sigaction(SIGQUIT, &savequit, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000146 (void)sigaction(SIGPIPE, &savepipe, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100147 (void)sigaction(SIGTERM, &saveterm, NULL);
148 (void)sigaction(SIGTSTP, &savetstp, NULL);
149 (void)sigaction(SIGTTIN, &savettin, NULL);
Damien Millerc8a38682001-06-25 18:09:16 +1000150 if (input != STDIN_FILENO)
151 (void)close(input);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100152
153 /*
154 * If we were interrupted by a signal, resend it to ourselves
155 * now that we have restored the signal handlers.
156 */
157 if (signo) {
Damien Miller71eb0c12002-09-11 10:29:11 +1000158 kill(getpid(), signo);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100159 switch (signo) {
160 case SIGTSTP:
161 case SIGTTIN:
162 case SIGTTOU:
Damien Miller8e3bdca2002-02-13 16:00:15 +1100163 goto restart;
164 }
165 }
166
167 errno = save_errno;
168 return(nr == -1 ? NULL : buf);
Damien Millerc8a38682001-06-25 18:09:16 +1000169}
Damien Miller8e3bdca2002-02-13 16:00:15 +1100170
Damien Millerc8a38682001-06-25 18:09:16 +1000171#if 0
172char *
Damien Miller8e3bdca2002-02-13 16:00:15 +1100173getpass(const char *prompt)
Damien Millerc8a38682001-06-25 18:09:16 +1000174{
175 static char buf[_PASSWORD_LEN + 1];
176
177 return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
178}
179#endif
Damien Miller8e3bdca2002-02-13 16:00:15 +1100180
181static void handler(int s)
182{
Ben Lindstromaf4a6c32003-08-25 01:10:51 +0000183
Damien Miller8e3bdca2002-02-13 16:00:15 +1100184 signo = s;
185}
Damien Miller804357a2002-05-01 22:00:22 +1000186#endif /* HAVE_READPASSPHRASE */