]> andersk Git - openssh.git/blob - readpass.c
- stevesk@cvs.openbsd.org 2006/07/11 20:07:25
[openssh.git] / readpass.c
1 /* $OpenBSD: readpass.c,v 1.42 2006/07/11 20:07:25 stevesk Exp $ */
2 /*
3  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "includes.h"
27
28 #include <sys/types.h>
29 #include <sys/wait.h>
30
31 #include <errno.h>
32 #include <fcntl.h>
33 #ifdef HAVE_PATHS_H
34 # include <paths.h>
35 #endif
36 #include <stdarg.h>
37
38 #include "xmalloc.h"
39 #include "misc.h"
40 #include "pathnames.h"
41 #include "log.h"
42 #include "ssh.h"
43 #include "uidswap.h"
44
45 static char *
46 ssh_askpass(char *askpass, const char *msg)
47 {
48         pid_t pid;
49         size_t len;
50         char *pass;
51         int p[2], status, ret;
52         char buf[1024];
53
54         if (fflush(stdout) != 0)
55                 error("ssh_askpass: fflush: %s", strerror(errno));
56         if (askpass == NULL)
57                 fatal("internal error: askpass undefined");
58         if (pipe(p) < 0) {
59                 error("ssh_askpass: pipe: %s", strerror(errno));
60                 return NULL;
61         }
62         if ((pid = fork()) < 0) {
63                 error("ssh_askpass: fork: %s", strerror(errno));
64                 return NULL;
65         }
66         if (pid == 0) {
67                 permanently_drop_suid(getuid());
68                 close(p[0]);
69                 if (dup2(p[1], STDOUT_FILENO) < 0)
70                         fatal("ssh_askpass: dup2: %s", strerror(errno));
71                 execlp(askpass, askpass, msg, (char *) 0);
72                 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
73         }
74         close(p[1]);
75
76         len = ret = 0;
77         do {
78                 ret = read(p[0], buf + len, sizeof(buf) - 1 - len);
79                 if (ret == -1 && errno == EINTR)
80                         continue;
81                 if (ret <= 0)
82                         break;
83                 len += ret;
84         } while (sizeof(buf) - 1 - len > 0);
85         buf[len] = '\0';
86
87         close(p[0]);
88         while (waitpid(pid, &status, 0) < 0)
89                 if (errno != EINTR)
90                         break;
91
92         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
93                 memset(buf, 0, sizeof(buf));
94                 return NULL;
95         }
96
97         buf[strcspn(buf, "\r\n")] = '\0';
98         pass = xstrdup(buf);
99         memset(buf, 0, sizeof(buf));
100         return pass;
101 }
102
103 /*
104  * Reads a passphrase from /dev/tty with echo turned off/on.  Returns the
105  * passphrase (allocated with xmalloc).  Exits if EOF is encountered. If
106  * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
107  * tty is available
108  */
109 char *
110 read_passphrase(const char *prompt, int flags)
111 {
112         char *askpass = NULL, *ret, buf[1024];
113         int rppflags, use_askpass = 0, ttyfd;
114
115         rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
116         if (flags & RP_USE_ASKPASS)
117                 use_askpass = 1;
118         else if (flags & RP_ALLOW_STDIN) {
119                 if (!isatty(STDIN_FILENO)) {
120                         debug("read_passphrase: stdin is not a tty");
121                         use_askpass = 1;
122                 }
123         } else {
124                 rppflags |= RPP_REQUIRE_TTY;
125                 ttyfd = open(_PATH_TTY, O_RDWR);
126                 if (ttyfd >= 0)
127                         close(ttyfd);
128                 else {
129                         debug("read_passphrase: can't open %s: %s", _PATH_TTY,
130                             strerror(errno));
131                         use_askpass = 1;
132                 }
133         }
134
135         if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
136                 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
137
138         if (use_askpass && getenv("DISPLAY")) {
139                 if (getenv(SSH_ASKPASS_ENV))
140                         askpass = getenv(SSH_ASKPASS_ENV);
141                 else
142                         askpass = _PATH_SSH_ASKPASS_DEFAULT;
143                 if ((ret = ssh_askpass(askpass, prompt)) == NULL)
144                         if (!(flags & RP_ALLOW_EOF))
145                                 return xstrdup("");
146                 return ret;
147         }
148
149         if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
150                 if (flags & RP_ALLOW_EOF)
151                         return NULL;
152                 return xstrdup("");
153         }
154
155         ret = xstrdup(buf);
156         memset(buf, 'x', sizeof buf);
157         return ret;
158 }
159
160 int
161 ask_permission(const char *fmt, ...)
162 {
163         va_list args;
164         char *p, prompt[1024];
165         int allowed = 0;
166
167         va_start(args, fmt);
168         vsnprintf(prompt, sizeof(prompt), fmt, args);
169         va_end(args);
170
171         p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
172         if (p != NULL) {
173                 /*
174                  * Accept empty responses and responses consisting
175                  * of the word "yes" as affirmative.
176                  */
177                 if (*p == '\0' || *p == '\n' ||
178                     strcasecmp(p, "yes") == 0)
179                         allowed = 1;
180                 xfree(p);
181         }
182
183         return (allowed);
184 }
This page took 0.058346 seconds and 5 git commands to generate.