]> andersk Git - openssh.git/blame - openbsd-compat/readpassphrase.c
- djm@cvs.openbsd.org 2006/07/10 11:25:53
[openssh.git] / openbsd-compat / readpassphrase.c
CommitLineData
e1829842 1/* $OpenBSD: readpassphrase.c,v 1.18 2005/08/08 08:05:34 espie Exp $ */
1656cbed 2
3159d49a 3/*
ac8802eb 4 * Copyright (c) 2000-2002 Todd C. Miller <Todd.Miller@courtesan.com>
3159d49a 5 *
510a42ce 6 * 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.
3159d49a 9 *
510a42ce 10 * 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.
3159d49a 21 */
22
f6d4fb87 23/* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
24
3159d49a 25#include "includes.h"
26
27#ifndef HAVE_READPASSPHRASE
28
29#include <termios.h>
b5b88c19 30#include <signal.h>
31#include <ctype.h>
3159d49a 32#include <readpassphrase.h>
33
34#ifdef TCSASOFT
35# define _T_FLUSH (TCSAFLUSH|TCSASOFT)
36#else
37# define _T_FLUSH (TCSAFLUSH)
38#endif
39
d321c94b 40/* 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
1656cbed 45static volatile sig_atomic_t signo;
46
47static void handler(int);
48
3159d49a 49char *
1656cbed 50readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
3159d49a 51{
1656cbed 52 ssize_t nr;
53 int input, output, save_errno;
3159d49a 54 char ch, *p, *end;
1656cbed 55 struct termios term, oterm;
ac8802eb 56 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
57 struct sigaction savetstp, savettin, savettou, savepipe;
3159d49a 58
59 /* I suppose we could alloc on demand in this case (XXX). */
60 if (bufsiz == 0) {
61 errno = EINVAL;
62 return(NULL);
63 }
64
1656cbed 65restart:
ac8802eb 66 signo = 0;
3159d49a 67 /*
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 */
ac8802eb 71 if ((flags & RPP_STDIN) ||
72 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
3159d49a 73 if (flags & RPP_REQUIRE_TTY) {
74 errno = ENOTTY;
75 return(NULL);
76 }
77 input = STDIN_FILENO;
78 output = STDERR_FILENO;
79 }
80
81 /*
1656cbed 82 * Catch signals that would otherwise cause the user to end
83 * up with echo turned off in the shell. Don't worry about
ac8802eb 84 * things like SIGXCPU and SIGVTALRM for now.
3159d49a 85 */
1656cbed 86 sigemptyset(&sa.sa_mask);
87 sa.sa_flags = 0; /* don't restart system calls */
88 sa.sa_handler = handler;
ac8802eb 89 (void)sigaction(SIGALRM, &sa, &savealrm);
1656cbed 90 (void)sigaction(SIGHUP, &sa, &savehup);
ac8802eb 91 (void)sigaction(SIGINT, &sa, &saveint);
92 (void)sigaction(SIGPIPE, &sa, &savepipe);
1656cbed 93 (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);
3159d49a 98
99 /* Turn off echo if possible. */
ac8802eb 100 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
1656cbed 101 memcpy(&term, &oterm, sizeof(term));
102 if (!(flags & RPP_ECHO_ON))
103 term.c_lflag &= ~(ECHO | ECHONL);
3159d49a 104#ifdef VSTATUS
1656cbed 105 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
3159d49a 106 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
3159d49a 107#endif
108 (void)tcsetattr(input, _T_FLUSH, &term);
1656cbed 109 } else {
110 memset(&term, 0, sizeof(term));
ac8802eb 111 term.c_lflag |= ECHO;
1656cbed 112 memset(&oterm, 0, sizeof(oterm));
ac8802eb 113 oterm.c_lflag |= ECHO;
3159d49a 114 }
115
ac8802eb 116 if (!(flags & RPP_STDIN))
117 (void)write(output, prompt, strlen(prompt));
3159d49a 118 end = buf + bufsiz - 1;
1656cbed 119 for (p = buf; (nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) {
3159d49a 120 if (p < end) {
121 if ((flags & RPP_SEVENBIT))
0eb1a22d 122 ch &= 0x7f;
3159d49a 123 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';
1656cbed 133 save_errno = errno;
134 if (!(term.c_lflag & ECHO))
135 (void)write(output, "\n", 1);
136
137 /* Restore old terminal settings and signals. */
2f4f4297 138 if (memcmp(&term, &oterm, sizeof(term)) != 0) {
ac9862c5 139 while (tcsetattr(input, _T_FLUSH, &oterm) == -1 &&
2f4f4297 140 errno == EINTR)
141 continue;
142 }
ac8802eb 143 (void)sigaction(SIGALRM, &savealrm, NULL);
1656cbed 144 (void)sigaction(SIGHUP, &savehup, NULL);
ac8802eb 145 (void)sigaction(SIGINT, &saveint, NULL);
1656cbed 146 (void)sigaction(SIGQUIT, &savequit, NULL);
ac8802eb 147 (void)sigaction(SIGPIPE, &savepipe, NULL);
1656cbed 148 (void)sigaction(SIGTERM, &saveterm, NULL);
149 (void)sigaction(SIGTSTP, &savetstp, NULL);
150 (void)sigaction(SIGTTIN, &savettin, NULL);
3159d49a 151 if (input != STDIN_FILENO)
152 (void)close(input);
1656cbed 153
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) {
ac8802eb 159 kill(getpid(), signo);
1656cbed 160 switch (signo) {
161 case SIGTSTP:
162 case SIGTTIN:
163 case SIGTTOU:
1656cbed 164 goto restart;
165 }
166 }
167
168 errno = save_errno;
169 return(nr == -1 ? NULL : buf);
3159d49a 170}
1656cbed 171
3159d49a 172#if 0
173char *
1656cbed 174getpass(const char *prompt)
3159d49a 175{
176 static char buf[_PASSWORD_LEN + 1];
177
178 return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
179}
180#endif
1656cbed 181
182static void handler(int s)
183{
510a42ce 184
1656cbed 185 signo = s;
186}
50903cc7 187#endif /* HAVE_READPASSPHRASE */
This page took 0.303486 seconds and 5 git commands to generate.