blob: 24aed6e4677839ab13e792320e5ae4cab08d529a [file] [log] [blame]
Darren Tucker8f866d82016-10-19 03:26:09 +11001/* $OpenBSD: readpassphrase.c,v 1.26 2016/10/18 12:47:18 millert Exp $ */
Damien Miller8e3bdca2002-02-13 16:00:15 +11002
Damien Millerc8a38682001-06-25 18:09:16 +10003/*
Darren Tucker12069e52016-10-13 04:04:44 +11004 * Copyright (c) 2000-2002, 2007, 2010
5 * Todd C. Miller <Todd.Miller@courtesan.com>
Damien Millerc8a38682001-06-25 18:09:16 +10006 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +00007 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
Damien Millerc8a38682001-06-25 18:09:16 +100010 *
Ben Lindstromaf4a6c32003-08-25 01:10:51 +000011 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 *
19 * Sponsored in part by the Defense Advanced Research Projects
20 * Agency (DARPA) and Air Force Research Laboratory, Air Force
21 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Damien Millerc8a38682001-06-25 18:09:16 +100022 */
23
Darren Tucker7f24a0e2005-11-10 16:18:56 +110024/* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
25
Damien Millerc8a38682001-06-25 18:09:16 +100026#include "includes.h"
27
28#ifndef HAVE_READPASSPHRASE
29
30#include <termios.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110031#include <signal.h>
32#include <ctype.h>
Damien Millera1738e42006-07-10 21:33:04 +100033#include <fcntl.h>
Damien Millerc8a38682001-06-25 18:09:16 +100034#include <readpassphrase.h>
Darren Tucker2c1a02a2006-07-12 22:40:50 +100035#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100036#include <string.h>
37#include <unistd.h>
Damien Millerc8a38682001-06-25 18:09:16 +100038
Darren Tucker7508d832016-10-13 03:53:51 +110039#ifndef TCSASOFT
40/* If we don't have TCSASOFT define it so that ORing it it below is a no-op. */
41# define TCSASOFT 0
Damien Millerc8a38682001-06-25 18:09:16 +100042#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 Tucker1734e272015-02-25 13:40:45 +110049#ifndef _NSIG
50# ifdef NSIG
51# define _NSIG NSIG
52# else
53# define _NSIG 128
54# endif
55#endif
56
Darren Tuckerd59487a2010-01-13 21:32:44 +110057static volatile sig_atomic_t signo[_NSIG];
Damien Miller8e3bdca2002-02-13 16:00:15 +110058
59static void handler(int);
60
Damien Millerc8a38682001-06-25 18:09:16 +100061char *
Damien Miller8e3bdca2002-02-13 16:00:15 +110062readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
Damien Millerc8a38682001-06-25 18:09:16 +100063{
Damien Miller8e3bdca2002-02-13 16:00:15 +110064 ssize_t nr;
Darren Tuckerd59487a2010-01-13 21:32:44 +110065 int input, output, save_errno, i, need_restart;
Damien Millerc8a38682001-06-25 18:09:16 +100066 char ch, *p, *end;
Damien Miller8e3bdca2002-02-13 16:00:15 +110067 struct termios term, oterm;
Damien Miller71eb0c12002-09-11 10:29:11 +100068 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
69 struct sigaction savetstp, savettin, savettou, savepipe;
Damien Millerc8a38682001-06-25 18:09:16 +100070
71 /* I suppose we could alloc on demand in this case (XXX). */
72 if (bufsiz == 0) {
73 errno = EINVAL;
74 return(NULL);
75 }
76
Damien Miller8e3bdca2002-02-13 16:00:15 +110077restart:
Darren Tuckerd59487a2010-01-13 21:32:44 +110078 for (i = 0; i < _NSIG; i++)
79 signo[i] = 0;
Darren Tucker1035cb42010-01-13 18:32:59 +110080 nr = -1;
81 save_errno = 0;
Darren Tuckerd59487a2010-01-13 21:32:44 +110082 need_restart = 0;
Damien Millerc8a38682001-06-25 18:09:16 +100083 /*
84 * Read and write to /dev/tty if available. If not, read from
85 * stdin and write to stderr unless a tty is required.
86 */
Damien Miller71eb0c12002-09-11 10:29:11 +100087 if ((flags & RPP_STDIN) ||
88 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
Damien Millerc8a38682001-06-25 18:09:16 +100089 if (flags & RPP_REQUIRE_TTY) {
90 errno = ENOTTY;
91 return(NULL);
92 }
93 input = STDIN_FILENO;
94 output = STDERR_FILENO;
95 }
96
97 /*
Darren Tucker12069e52016-10-13 04:04:44 +110098 * Turn off echo if possible.
99 * If we are using a tty but are not the foreground pgrp this will
100 * generate SIGTTOU, so do it *before* installing the signal handlers.
101 */
102 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
103 memcpy(&term, &oterm, sizeof(term));
104 if (!(flags & RPP_ECHO_ON))
105 term.c_lflag &= ~(ECHO | ECHONL);
106#ifdef VSTATUS
107 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
108 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
109#endif
110 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
111 } else {
112 memset(&term, 0, sizeof(term));
113 term.c_lflag |= ECHO;
114 memset(&oterm, 0, sizeof(oterm));
115 oterm.c_lflag |= ECHO;
116 }
117
118 /*
Damien Miller8e3bdca2002-02-13 16:00:15 +1100119 * Catch signals that would otherwise cause the user to end
120 * up with echo turned off in the shell. Don't worry about
Damien Miller71eb0c12002-09-11 10:29:11 +1000121 * things like SIGXCPU and SIGVTALRM for now.
Damien Millerc8a38682001-06-25 18:09:16 +1000122 */
Damien Miller8e3bdca2002-02-13 16:00:15 +1100123 sigemptyset(&sa.sa_mask);
124 sa.sa_flags = 0; /* don't restart system calls */
125 sa.sa_handler = handler;
Damien Miller71eb0c12002-09-11 10:29:11 +1000126 (void)sigaction(SIGALRM, &sa, &savealrm);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100127 (void)sigaction(SIGHUP, &sa, &savehup);
Damien Miller71eb0c12002-09-11 10:29:11 +1000128 (void)sigaction(SIGINT, &sa, &saveint);
129 (void)sigaction(SIGPIPE, &sa, &savepipe);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100130 (void)sigaction(SIGQUIT, &sa, &savequit);
131 (void)sigaction(SIGTERM, &sa, &saveterm);
132 (void)sigaction(SIGTSTP, &sa, &savetstp);
133 (void)sigaction(SIGTTIN, &sa, &savettin);
134 (void)sigaction(SIGTTOU, &sa, &savettou);
Damien Millerc8a38682001-06-25 18:09:16 +1000135
Darren Tucker12069e52016-10-13 04:04:44 +1100136 if (!(flags & RPP_STDIN))
137 (void)write(output, prompt, strlen(prompt));
138 end = buf + bufsiz - 1;
139 p = buf;
140 while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
141 if (p < end) {
142 if ((flags & RPP_SEVENBIT))
143 ch &= 0x7f;
Darren Tucker29d40312016-10-13 04:07:20 +1100144 if (isalpha((unsigned char)ch)) {
Darren Tucker12069e52016-10-13 04:04:44 +1100145 if ((flags & RPP_FORCELOWER))
Darren Tucker29d40312016-10-13 04:07:20 +1100146 ch = (char)tolower((unsigned char)ch);
Darren Tucker12069e52016-10-13 04:04:44 +1100147 if ((flags & RPP_FORCEUPPER))
Darren Tucker29d40312016-10-13 04:07:20 +1100148 ch = (char)toupper((unsigned char)ch);
Damien Millerc8a38682001-06-25 18:09:16 +1000149 }
Darren Tucker12069e52016-10-13 04:04:44 +1100150 *p++ = ch;
Damien Millerc8a38682001-06-25 18:09:16 +1000151 }
152 }
Darren Tucker12069e52016-10-13 04:04:44 +1100153 *p = '\0';
154 save_errno = errno;
155 if (!(term.c_lflag & ECHO))
156 (void)write(output, "\n", 1);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100157
158 /* Restore old terminal settings and signals. */
Damien Miller308c8b12005-05-24 16:39:03 +1000159 if (memcmp(&term, &oterm, sizeof(term)) != 0) {
Darren Tucker8f866d82016-10-19 03:26:09 +1100160 const int sigttou = signo[SIGTTOU];
161
162 /* Ignore SIGTTOU generated when we are not the fg pgrp. */
Darren Tucker7508d832016-10-13 03:53:51 +1100163 while (tcsetattr(input, TCSAFLUSH|TCSASOFT, &oterm) == -1 &&
Darren Tucker12069e52016-10-13 04:04:44 +1100164 errno == EINTR && !signo[SIGTTOU])
Damien Miller308c8b12005-05-24 16:39:03 +1000165 continue;
Darren Tucker8f866d82016-10-19 03:26:09 +1100166 signo[SIGTTOU] = sigttou;
Damien Miller308c8b12005-05-24 16:39:03 +1000167 }
Damien Miller71eb0c12002-09-11 10:29:11 +1000168 (void)sigaction(SIGALRM, &savealrm, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100169 (void)sigaction(SIGHUP, &savehup, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000170 (void)sigaction(SIGINT, &saveint, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100171 (void)sigaction(SIGQUIT, &savequit, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000172 (void)sigaction(SIGPIPE, &savepipe, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100173 (void)sigaction(SIGTERM, &saveterm, NULL);
174 (void)sigaction(SIGTSTP, &savetstp, NULL);
175 (void)sigaction(SIGTTIN, &savettin, NULL);
Darren Tuckerab3c2ca2010-01-13 18:27:32 +1100176 (void)sigaction(SIGTTOU, &savettou, NULL);
Damien Millerc8a38682001-06-25 18:09:16 +1000177 if (input != STDIN_FILENO)
178 (void)close(input);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100179
180 /*
181 * If we were interrupted by a signal, resend it to ourselves
182 * now that we have restored the signal handlers.
183 */
Darren Tuckerd59487a2010-01-13 21:32:44 +1100184 for (i = 0; i < _NSIG; i++) {
185 if (signo[i]) {
186 kill(getpid(), i);
187 switch (i) {
188 case SIGTSTP:
189 case SIGTTIN:
190 case SIGTTOU:
191 need_restart = 1;
192 }
Damien Miller8e3bdca2002-02-13 16:00:15 +1100193 }
194 }
Darren Tuckerd59487a2010-01-13 21:32:44 +1100195 if (need_restart)
196 goto restart;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100197
Darren Tucker1035cb42010-01-13 18:32:59 +1100198 if (save_errno)
199 errno = save_errno;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100200 return(nr == -1 ? NULL : buf);
Damien Millerc8a38682001-06-25 18:09:16 +1000201}
Darren Tuckerf9014402016-10-19 03:23:16 +1100202DEF_WEAK(readpassphrase);
Darren Tuckerab3c2ca2010-01-13 18:27:32 +1100203
Damien Millerc8a38682001-06-25 18:09:16 +1000204#if 0
205char *
Damien Miller8e3bdca2002-02-13 16:00:15 +1100206getpass(const char *prompt)
Damien Millerc8a38682001-06-25 18:09:16 +1000207{
208 static char buf[_PASSWORD_LEN + 1];
209
210 return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
211}
212#endif
Damien Miller8e3bdca2002-02-13 16:00:15 +1100213
214static void handler(int s)
215{
Ben Lindstromaf4a6c32003-08-25 01:10:51 +0000216
Darren Tuckerd59487a2010-01-13 21:32:44 +1100217 signo[s] = 1;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100218}
Damien Miller804357a2002-05-01 22:00:22 +1000219#endif /* HAVE_READPASSPHRASE */