blob: 62b6d0d843808433e5e5c23fd94a263a342a4baa [file] [log] [blame]
Darren Tuckerd59487a2010-01-13 21:32:44 +11001/* $OpenBSD: readpassphrase.c,v 1.22 2010/01/13 10:20:54 dtucker Exp $ */
Damien Miller8e3bdca2002-02-13 16:00:15 +11002
Damien Millerc8a38682001-06-25 18:09:16 +10003/*
Darren Tucker1035cb42010-01-13 18:32:59 +11004 * Copyright (c) 2000-2002, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
Damien Millerc8a38682001-06-25 18:09:16 +10005 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +00006 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
Damien Millerc8a38682001-06-25 18:09:16 +10009 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +000010 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 *
18 * Sponsored in part by the Defense Advanced Research Projects
19 * Agency (DARPA) and Air Force Research Laboratory, Air Force
20 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Damien Millerc8a38682001-06-25 18:09:16 +100021 */
22
Darren Tucker7f24a0e2005-11-10 16:18:56 +110023/* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
24
Damien Millerc8a38682001-06-25 18:09:16 +100025#include "includes.h"
26
27#ifndef HAVE_READPASSPHRASE
28
29#include <termios.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110030#include <signal.h>
31#include <ctype.h>
Damien Millera1738e42006-07-10 21:33:04 +100032#include <fcntl.h>
Damien Millerc8a38682001-06-25 18:09:16 +100033#include <readpassphrase.h>
Darren Tucker2c1a02a2006-07-12 22:40:50 +100034#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100035#include <string.h>
36#include <unistd.h>
Damien Millerc8a38682001-06-25 18:09:16 +100037
38#ifdef TCSASOFT
39# define _T_FLUSH (TCSAFLUSH|TCSASOFT)
40#else
41# define _T_FLUSH (TCSAFLUSH)
42#endif
43
Ben Lindstroma0bd44c2001-10-25 15:02:35 +000044/* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
45#if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
46# define _POSIX_VDISABLE VDISABLE
47#endif
48
Darren Tuckerd59487a2010-01-13 21:32:44 +110049static volatile sig_atomic_t signo[_NSIG];
Damien Miller8e3bdca2002-02-13 16:00:15 +110050
51static void handler(int);
52
Damien Millerc8a38682001-06-25 18:09:16 +100053char *
Damien Miller8e3bdca2002-02-13 16:00:15 +110054readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
Damien Millerc8a38682001-06-25 18:09:16 +100055{
Damien Miller8e3bdca2002-02-13 16:00:15 +110056 ssize_t nr;
Darren Tuckerd59487a2010-01-13 21:32:44 +110057 int input, output, save_errno, i, need_restart;
Damien Millerc8a38682001-06-25 18:09:16 +100058 char ch, *p, *end;
Damien Miller8e3bdca2002-02-13 16:00:15 +110059 struct termios term, oterm;
Damien Miller71eb0c12002-09-11 10:29:11 +100060 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
61 struct sigaction savetstp, savettin, savettou, savepipe;
Damien Millerc8a38682001-06-25 18:09:16 +100062
63 /* I suppose we could alloc on demand in this case (XXX). */
64 if (bufsiz == 0) {
65 errno = EINVAL;
66 return(NULL);
67 }
68
Damien Miller8e3bdca2002-02-13 16:00:15 +110069restart:
Darren Tuckerd59487a2010-01-13 21:32:44 +110070 for (i = 0; i < _NSIG; i++)
71 signo[i] = 0;
Darren Tucker1035cb42010-01-13 18:32:59 +110072 nr = -1;
73 save_errno = 0;
Darren Tuckerd59487a2010-01-13 21:32:44 +110074 need_restart = 0;
Damien Millerc8a38682001-06-25 18:09:16 +100075 /*
76 * Read and write to /dev/tty if available. If not, read from
77 * stdin and write to stderr unless a tty is required.
78 */
Damien Miller71eb0c12002-09-11 10:29:11 +100079 if ((flags & RPP_STDIN) ||
80 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
Damien Millerc8a38682001-06-25 18:09:16 +100081 if (flags & RPP_REQUIRE_TTY) {
82 errno = ENOTTY;
83 return(NULL);
84 }
85 input = STDIN_FILENO;
86 output = STDERR_FILENO;
87 }
88
89 /*
Damien Miller8e3bdca2002-02-13 16:00:15 +110090 * Catch signals that would otherwise cause the user to end
91 * up with echo turned off in the shell. Don't worry about
Damien Miller71eb0c12002-09-11 10:29:11 +100092 * things like SIGXCPU and SIGVTALRM for now.
Damien Millerc8a38682001-06-25 18:09:16 +100093 */
Damien Miller8e3bdca2002-02-13 16:00:15 +110094 sigemptyset(&sa.sa_mask);
95 sa.sa_flags = 0; /* don't restart system calls */
96 sa.sa_handler = handler;
Damien Miller71eb0c12002-09-11 10:29:11 +100097 (void)sigaction(SIGALRM, &sa, &savealrm);
Damien Miller8e3bdca2002-02-13 16:00:15 +110098 (void)sigaction(SIGHUP, &sa, &savehup);
Damien Miller71eb0c12002-09-11 10:29:11 +100099 (void)sigaction(SIGINT, &sa, &saveint);
100 (void)sigaction(SIGPIPE, &sa, &savepipe);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100101 (void)sigaction(SIGQUIT, &sa, &savequit);
102 (void)sigaction(SIGTERM, &sa, &saveterm);
103 (void)sigaction(SIGTSTP, &sa, &savetstp);
104 (void)sigaction(SIGTTIN, &sa, &savettin);
105 (void)sigaction(SIGTTOU, &sa, &savettou);
Damien Millerc8a38682001-06-25 18:09:16 +1000106
107 /* Turn off echo if possible. */
Damien Miller71eb0c12002-09-11 10:29:11 +1000108 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
Damien Miller8e3bdca2002-02-13 16:00:15 +1100109 memcpy(&term, &oterm, sizeof(term));
110 if (!(flags & RPP_ECHO_ON))
111 term.c_lflag &= ~(ECHO | ECHONL);
Damien Millerc8a38682001-06-25 18:09:16 +1000112#ifdef VSTATUS
Damien Miller8e3bdca2002-02-13 16:00:15 +1100113 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
Damien Millerc8a38682001-06-25 18:09:16 +1000114 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
Damien Millerc8a38682001-06-25 18:09:16 +1000115#endif
116 (void)tcsetattr(input, _T_FLUSH, &term);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100117 } else {
118 memset(&term, 0, sizeof(term));
Damien Miller71eb0c12002-09-11 10:29:11 +1000119 term.c_lflag |= ECHO;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100120 memset(&oterm, 0, sizeof(oterm));
Damien Miller71eb0c12002-09-11 10:29:11 +1000121 oterm.c_lflag |= ECHO;
Damien Millerc8a38682001-06-25 18:09:16 +1000122 }
123
Darren Tucker1035cb42010-01-13 18:32:59 +1100124 /* No I/O if we are already backgrounded. */
Darren Tuckerd59487a2010-01-13 21:32:44 +1100125 if (signo[SIGTTOU] != 1 && signo[SIGTTIN] != 1) {
Darren Tucker1035cb42010-01-13 18:32:59 +1100126 if (!(flags & RPP_STDIN))
127 (void)write(output, prompt, strlen(prompt));
128 end = buf + bufsiz - 1;
129 p = buf;
130 while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
131 if (p < end) {
132 if ((flags & RPP_SEVENBIT))
133 ch &= 0x7f;
134 if (isalpha(ch)) {
135 if ((flags & RPP_FORCELOWER))
136 ch = (char)tolower(ch);
137 if ((flags & RPP_FORCEUPPER))
138 ch = (char)toupper(ch);
139 }
140 *p++ = ch;
Damien Millerc8a38682001-06-25 18:09:16 +1000141 }
Damien Millerc8a38682001-06-25 18:09:16 +1000142 }
Darren Tucker1035cb42010-01-13 18:32:59 +1100143 *p = '\0';
144 save_errno = errno;
145 if (!(term.c_lflag & ECHO))
146 (void)write(output, "\n", 1);
Damien Millerc8a38682001-06-25 18:09:16 +1000147 }
Damien Miller8e3bdca2002-02-13 16:00:15 +1100148
149 /* Restore old terminal settings and signals. */
Damien Miller308c8b12005-05-24 16:39:03 +1000150 if (memcmp(&term, &oterm, sizeof(term)) != 0) {
Damien Miller101afbb2005-05-24 16:42:00 +1000151 while (tcsetattr(input, _T_FLUSH, &oterm) == -1 &&
Damien Miller308c8b12005-05-24 16:39:03 +1000152 errno == EINTR)
153 continue;
154 }
Damien Miller71eb0c12002-09-11 10:29:11 +1000155 (void)sigaction(SIGALRM, &savealrm, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100156 (void)sigaction(SIGHUP, &savehup, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000157 (void)sigaction(SIGINT, &saveint, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100158 (void)sigaction(SIGQUIT, &savequit, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000159 (void)sigaction(SIGPIPE, &savepipe, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100160 (void)sigaction(SIGTERM, &saveterm, NULL);
161 (void)sigaction(SIGTSTP, &savetstp, NULL);
162 (void)sigaction(SIGTTIN, &savettin, NULL);
Darren Tuckerab3c2ca2010-01-13 18:27:32 +1100163 (void)sigaction(SIGTTOU, &savettou, NULL);
Damien Millerc8a38682001-06-25 18:09:16 +1000164 if (input != STDIN_FILENO)
165 (void)close(input);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100166
167 /*
168 * If we were interrupted by a signal, resend it to ourselves
169 * now that we have restored the signal handlers.
170 */
Darren Tuckerd59487a2010-01-13 21:32:44 +1100171 for (i = 0; i < _NSIG; i++) {
172 if (signo[i]) {
173 kill(getpid(), i);
174 switch (i) {
175 case SIGTSTP:
176 case SIGTTIN:
177 case SIGTTOU:
178 need_restart = 1;
179 }
Damien Miller8e3bdca2002-02-13 16:00:15 +1100180 }
181 }
Darren Tuckerd59487a2010-01-13 21:32:44 +1100182 if (need_restart)
183 goto restart;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100184
Darren Tucker1035cb42010-01-13 18:32:59 +1100185 if (save_errno)
186 errno = save_errno;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100187 return(nr == -1 ? NULL : buf);
Damien Millerc8a38682001-06-25 18:09:16 +1000188}
Darren Tuckerab3c2ca2010-01-13 18:27:32 +1100189
Damien Millerc8a38682001-06-25 18:09:16 +1000190#if 0
191char *
Damien Miller8e3bdca2002-02-13 16:00:15 +1100192getpass(const char *prompt)
Damien Millerc8a38682001-06-25 18:09:16 +1000193{
194 static char buf[_PASSWORD_LEN + 1];
195
196 return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
197}
198#endif
Damien Miller8e3bdca2002-02-13 16:00:15 +1100199
200static void handler(int s)
201{
Ben Lindstromaf4a6c32003-08-25 01:10:51 +0000202
Darren Tuckerd59487a2010-01-13 21:32:44 +1100203 signo[s] = 1;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100204}
Damien Miller804357a2002-05-01 22:00:22 +1000205#endif /* HAVE_READPASSPHRASE */