blob: 95e26dcd45f9b1ff91dff7cd2c0b8911f9b7c124 [file] [log] [blame]
Darren Tuckerdbb631c2005-11-10 16:56:28 +11001/* $OpenBSD: readpassphrase.c,v 1.18 2005/08/08 08:05:34 espie Exp $ */
Damien Miller8e3bdca2002-02-13 16:00:15 +11002
Damien Millerc8a38682001-06-25 18:09:16 +10003/*
Damien Miller71eb0c12002-09-11 10:29:11 +10004 * Copyright (c) 2000-2002 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 Millerc8a38682001-06-25 18:09:16 +100032#include <readpassphrase.h>
33
34#ifdef TCSASOFT
35# define _T_FLUSH (TCSAFLUSH|TCSASOFT)
36#else
37# define _T_FLUSH (TCSAFLUSH)
38#endif
39
Ben Lindstroma0bd44c2001-10-25 15:02:35 +000040/* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
41#if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
42# define _POSIX_VDISABLE VDISABLE
43#endif
44
Damien Miller8e3bdca2002-02-13 16:00:15 +110045static volatile sig_atomic_t signo;
46
47static void handler(int);
48
Damien Millerc8a38682001-06-25 18:09:16 +100049char *
Damien Miller8e3bdca2002-02-13 16:00:15 +110050readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
Damien Millerc8a38682001-06-25 18:09:16 +100051{
Damien Miller8e3bdca2002-02-13 16:00:15 +110052 ssize_t nr;
53 int input, output, save_errno;
Damien Millerc8a38682001-06-25 18:09:16 +100054 char ch, *p, *end;
Damien Miller8e3bdca2002-02-13 16:00:15 +110055 struct termios term, oterm;
Damien Miller71eb0c12002-09-11 10:29:11 +100056 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
57 struct sigaction savetstp, savettin, savettou, savepipe;
Damien Millerc8a38682001-06-25 18:09:16 +100058
59 /* I suppose we could alloc on demand in this case (XXX). */
60 if (bufsiz == 0) {
61 errno = EINVAL;
62 return(NULL);
63 }
64
Damien Miller8e3bdca2002-02-13 16:00:15 +110065restart:
Damien Miller71eb0c12002-09-11 10:29:11 +100066 signo = 0;
Damien Millerc8a38682001-06-25 18:09:16 +100067 /*
68 * Read and write to /dev/tty if available. If not, read from
69 * stdin and write to stderr unless a tty is required.
70 */
Damien Miller71eb0c12002-09-11 10:29:11 +100071 if ((flags & RPP_STDIN) ||
72 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
Damien Millerc8a38682001-06-25 18:09:16 +100073 if (flags & RPP_REQUIRE_TTY) {
74 errno = ENOTTY;
75 return(NULL);
76 }
77 input = STDIN_FILENO;
78 output = STDERR_FILENO;
79 }
80
81 /*
Damien Miller8e3bdca2002-02-13 16:00:15 +110082 * Catch signals that would otherwise cause the user to end
83 * up with echo turned off in the shell. Don't worry about
Damien Miller71eb0c12002-09-11 10:29:11 +100084 * things like SIGXCPU and SIGVTALRM for now.
Damien Millerc8a38682001-06-25 18:09:16 +100085 */
Damien Miller8e3bdca2002-02-13 16:00:15 +110086 sigemptyset(&sa.sa_mask);
87 sa.sa_flags = 0; /* don't restart system calls */
88 sa.sa_handler = handler;
Damien Miller71eb0c12002-09-11 10:29:11 +100089 (void)sigaction(SIGALRM, &sa, &savealrm);
Damien Miller8e3bdca2002-02-13 16:00:15 +110090 (void)sigaction(SIGHUP, &sa, &savehup);
Damien Miller71eb0c12002-09-11 10:29:11 +100091 (void)sigaction(SIGINT, &sa, &saveint);
92 (void)sigaction(SIGPIPE, &sa, &savepipe);
Damien Miller8e3bdca2002-02-13 16:00:15 +110093 (void)sigaction(SIGQUIT, &sa, &savequit);
94 (void)sigaction(SIGTERM, &sa, &saveterm);
95 (void)sigaction(SIGTSTP, &sa, &savetstp);
96 (void)sigaction(SIGTTIN, &sa, &savettin);
97 (void)sigaction(SIGTTOU, &sa, &savettou);
Damien Millerc8a38682001-06-25 18:09:16 +100098
99 /* Turn off echo if possible. */
Damien Miller71eb0c12002-09-11 10:29:11 +1000100 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
Damien Miller8e3bdca2002-02-13 16:00:15 +1100101 memcpy(&term, &oterm, sizeof(term));
102 if (!(flags & RPP_ECHO_ON))
103 term.c_lflag &= ~(ECHO | ECHONL);
Damien Millerc8a38682001-06-25 18:09:16 +1000104#ifdef VSTATUS
Damien Miller8e3bdca2002-02-13 16:00:15 +1100105 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
Damien Millerc8a38682001-06-25 18:09:16 +1000106 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
Damien Millerc8a38682001-06-25 18:09:16 +1000107#endif
108 (void)tcsetattr(input, _T_FLUSH, &term);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100109 } else {
110 memset(&term, 0, sizeof(term));
Damien Miller71eb0c12002-09-11 10:29:11 +1000111 term.c_lflag |= ECHO;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100112 memset(&oterm, 0, sizeof(oterm));
Damien Miller71eb0c12002-09-11 10:29:11 +1000113 oterm.c_lflag |= ECHO;
Damien Millerc8a38682001-06-25 18:09:16 +1000114 }
115
Damien Miller71eb0c12002-09-11 10:29:11 +1000116 if (!(flags & RPP_STDIN))
117 (void)write(output, prompt, strlen(prompt));
Damien Millerc8a38682001-06-25 18:09:16 +1000118 end = buf + bufsiz - 1;
Damien Miller8e3bdca2002-02-13 16:00:15 +1100119 for (p = buf; (nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) {
Damien Millerc8a38682001-06-25 18:09:16 +1000120 if (p < end) {
121 if ((flags & RPP_SEVENBIT))
Damien Millerb90416b2001-06-27 23:26:38 +1000122 ch &= 0x7f;
Damien Millerc8a38682001-06-25 18:09:16 +1000123 if (isalpha(ch)) {
124 if ((flags & RPP_FORCELOWER))
125 ch = tolower(ch);
126 if ((flags & RPP_FORCEUPPER))
127 ch = toupper(ch);
128 }
129 *p++ = ch;
130 }
131 }
132 *p = '\0';
Damien Miller8e3bdca2002-02-13 16:00:15 +1100133 save_errno = errno;
134 if (!(term.c_lflag & ECHO))
135 (void)write(output, "\n", 1);
136
137 /* Restore old terminal settings and signals. */
Damien Miller308c8b12005-05-24 16:39:03 +1000138 if (memcmp(&term, &oterm, sizeof(term)) != 0) {
Damien Miller101afbb2005-05-24 16:42:00 +1000139 while (tcsetattr(input, _T_FLUSH, &oterm) == -1 &&
Damien Miller308c8b12005-05-24 16:39:03 +1000140 errno == EINTR)
141 continue;
142 }
Damien Miller71eb0c12002-09-11 10:29:11 +1000143 (void)sigaction(SIGALRM, &savealrm, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100144 (void)sigaction(SIGHUP, &savehup, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000145 (void)sigaction(SIGINT, &saveint, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100146 (void)sigaction(SIGQUIT, &savequit, NULL);
Damien Miller71eb0c12002-09-11 10:29:11 +1000147 (void)sigaction(SIGPIPE, &savepipe, NULL);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100148 (void)sigaction(SIGTERM, &saveterm, NULL);
149 (void)sigaction(SIGTSTP, &savetstp, NULL);
150 (void)sigaction(SIGTTIN, &savettin, NULL);
Damien Millerc8a38682001-06-25 18:09:16 +1000151 if (input != STDIN_FILENO)
152 (void)close(input);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100153
154 /*
155 * If we were interrupted by a signal, resend it to ourselves
156 * now that we have restored the signal handlers.
157 */
158 if (signo) {
Damien Miller71eb0c12002-09-11 10:29:11 +1000159 kill(getpid(), signo);
Damien Miller8e3bdca2002-02-13 16:00:15 +1100160 switch (signo) {
161 case SIGTSTP:
162 case SIGTTIN:
163 case SIGTTOU:
Damien Miller8e3bdca2002-02-13 16:00:15 +1100164 goto restart;
165 }
166 }
167
168 errno = save_errno;
169 return(nr == -1 ? NULL : buf);
Damien Millerc8a38682001-06-25 18:09:16 +1000170}
Damien Miller8e3bdca2002-02-13 16:00:15 +1100171
Damien Millerc8a38682001-06-25 18:09:16 +1000172#if 0
173char *
Damien Miller8e3bdca2002-02-13 16:00:15 +1100174getpass(const char *prompt)
Damien Millerc8a38682001-06-25 18:09:16 +1000175{
176 static char buf[_PASSWORD_LEN + 1];
177
178 return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
179}
180#endif
Damien Miller8e3bdca2002-02-13 16:00:15 +1100181
182static void handler(int s)
183{
Ben Lindstromaf4a6c32003-08-25 01:10:51 +0000184
Damien Miller8e3bdca2002-02-13 16:00:15 +1100185 signo = s;
186}
Damien Miller804357a2002-05-01 22:00:22 +1000187#endif /* HAVE_READPASSPHRASE */