]> git.armaanb.net Git - opendoas.git/blob - libopenbsd/readpassphrase.c
libopenbsd: clean up readpassphrase compat and fix ifdefs
[opendoas.git] / libopenbsd / readpassphrase.c
1 /*      $OpenBSD: readpassphrase.c,v 1.26 2016/10/18 12:47:18 millert Exp $     */
2
3 /*
4  * Copyright (c) 2000-2002, 2007, 2010
5  *      Todd C. Miller <Todd.Miller@courtesan.com>
6  *
7  * 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.
10  *
11  * 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.
22  */
23
24 /* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
25
26 #include "config.h"
27
28 #ifndef HAVE_READPASSPHRASE
29
30 #include <termios.h>
31 #include <signal.h>
32 #include <ctype.h>
33 #include <fcntl.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <paths.h>
38
39 #include "sys-readpassphrase.h"
40
41 #ifndef _PATH_TTY
42 #define _PATH_TTY "/dev/tty"
43 #endif
44
45 #ifndef TCSASOFT
46 /* If we don't have TCSASOFT define it so that ORing it it below is a no-op. */
47 # define TCSASOFT 0
48 #endif
49
50 /* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
51 #if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
52 #  define _POSIX_VDISABLE       VDISABLE
53 #endif
54
55 static volatile sig_atomic_t signo[_NSIG];
56
57 static void handler(int);
58
59 char *
60 readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
61 {
62         ssize_t nr;
63         int input, output, save_errno, i, need_restart;
64         char ch, *p, *end;
65         struct termios term, oterm;
66         struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
67         struct sigaction savetstp, savettin, savettou, savepipe;
68
69         /* I suppose we could alloc on demand in this case (XXX). */
70         if (bufsiz == 0) {
71                 errno = EINVAL;
72                 return(NULL);
73         }
74
75 restart:
76         for (i = 0; i < _NSIG; i++)
77                 signo[i] = 0;
78         nr = -1;
79         save_errno = 0;
80         need_restart = 0;
81         /*
82          * Read and write to /dev/tty if available.  If not, read from
83          * stdin and write to stderr unless a tty is required.
84          */
85         if ((flags & RPP_STDIN) ||
86             (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
87                 if (flags & RPP_REQUIRE_TTY) {
88                         errno = ENOTTY;
89                         return(NULL);
90                 }
91                 input = STDIN_FILENO;
92                 output = STDERR_FILENO;
93         }
94
95         /*
96          * Turn off echo if possible.
97          * If we are using a tty but are not the foreground pgrp this will
98          * generate SIGTTOU, so do it *before* installing the signal handlers.
99          */
100         if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
101                 memcpy(&term, &oterm, sizeof(term));
102                 if (!(flags & RPP_ECHO_ON))
103                         term.c_lflag &= ~(ECHO | ECHONL);
104 #ifdef VSTATUS
105                 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
106                         term.c_cc[VSTATUS] = _POSIX_VDISABLE;
107 #endif
108                 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
109         } else {
110                 memset(&term, 0, sizeof(term));
111                 term.c_lflag |= ECHO;
112                 memset(&oterm, 0, sizeof(oterm));
113                 oterm.c_lflag |= ECHO;
114         }
115
116         /*
117          * Catch signals that would otherwise cause the user to end
118          * up with echo turned off in the shell.  Don't worry about
119          * things like SIGXCPU and SIGVTALRM for now.
120          */
121         sigemptyset(&sa.sa_mask);
122         sa.sa_flags = 0;                /* don't restart system calls */
123         sa.sa_handler = handler;
124         (void)sigaction(SIGALRM, &sa, &savealrm);
125         (void)sigaction(SIGHUP, &sa, &savehup);
126         (void)sigaction(SIGINT, &sa, &saveint);
127         (void)sigaction(SIGPIPE, &sa, &savepipe);
128         (void)sigaction(SIGQUIT, &sa, &savequit);
129         (void)sigaction(SIGTERM, &sa, &saveterm);
130         (void)sigaction(SIGTSTP, &sa, &savetstp);
131         (void)sigaction(SIGTTIN, &sa, &savettin);
132         (void)sigaction(SIGTTOU, &sa, &savettou);
133
134         if (!(flags & RPP_STDIN))
135                 (void)write(output, prompt, strlen(prompt));
136         end = buf + bufsiz - 1;
137         p = buf;
138         while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
139                 if (p < end) {
140                         if ((flags & RPP_SEVENBIT))
141                                 ch &= 0x7f;
142                         if (isalpha((unsigned char)ch)) {
143                                 if ((flags & RPP_FORCELOWER))
144                                         ch = (char)tolower((unsigned char)ch);
145                                 if ((flags & RPP_FORCEUPPER))
146                                         ch = (char)toupper((unsigned char)ch);
147                         }
148                         *p++ = ch;
149                 }
150         }
151         *p = '\0';
152         save_errno = errno;
153         if (!(term.c_lflag & ECHO))
154                 (void)write(output, "\n", 1);
155
156         /* Restore old terminal settings and signals. */
157         if (memcmp(&term, &oterm, sizeof(term)) != 0) {
158                 const int sigttou = signo[SIGTTOU];
159
160                 /* Ignore SIGTTOU generated when we are not the fg pgrp. */
161                 while (tcsetattr(input, TCSAFLUSH|TCSASOFT, &oterm) == -1 &&
162                     errno == EINTR && !signo[SIGTTOU])
163                         continue;
164                 signo[SIGTTOU] = sigttou;
165         }
166         (void)sigaction(SIGALRM, &savealrm, NULL);
167         (void)sigaction(SIGHUP, &savehup, NULL);
168         (void)sigaction(SIGINT, &saveint, NULL);
169         (void)sigaction(SIGQUIT, &savequit, NULL);
170         (void)sigaction(SIGPIPE, &savepipe, NULL);
171         (void)sigaction(SIGTERM, &saveterm, NULL);
172         (void)sigaction(SIGTSTP, &savetstp, NULL);
173         (void)sigaction(SIGTTIN, &savettin, NULL);
174         (void)sigaction(SIGTTOU, &savettou, NULL);
175         if (input != STDIN_FILENO)
176                 (void)close(input);
177
178         /*
179          * If we were interrupted by a signal, resend it to ourselves
180          * now that we have restored the signal handlers.
181          */
182         for (i = 0; i < _NSIG; i++) {
183                 if (signo[i]) {
184                         kill(getpid(), i);
185                         switch (i) {
186                         case SIGTSTP:
187                         case SIGTTIN:
188                         case SIGTTOU:
189                                 need_restart = 1;
190                         }
191                 }
192         }
193         if (need_restart)
194                 goto restart;
195
196         if (save_errno)
197                 errno = save_errno;
198         return(nr == -1 ? NULL : buf);
199 }
200
201 #if 0
202 char *
203 getpass(const char *prompt)
204 {
205         static char buf[_PASSWORD_LEN + 1];
206
207         return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
208 }
209 #endif
210
211 static void handler(int s)
212 {
213
214         signo[s] = 1;
215 }
216 #endif /* HAVE_READPASSPHRASE */