blob: 974d67f0bfa64cd0b08359dbfc53d98bd98ecf2e [file] [log] [blame]
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001/* $OpenBSD: readpass.c,v 1.61 2020/01/23 07:10:22 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller3606ee22002-02-13 14:05:23 +11003 * Copyright (c) 2001 Markus Friedl. All rights reserved.
Damien Miller50945fa1999-12-09 10:31:37 +11004 *
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.
Damien Miller50945fa1999-12-09 10:31:37 +110013 *
Damien Miller3606ee22002-02-13 14:05:23 +110014 * 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.
Damien Miller95def091999-11-25 00:26:21 +110024 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025
26#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110027
28#include <sys/types.h>
29#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110030
Darren Tucker39972492006-07-12 22:22:46 +100031#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100032#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110033#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110034# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110035#endif
Damien Miller106079c2011-01-06 22:43:44 +110036#include <signal.h>
Darren Tucker5d196262006-07-12 22:15:16 +100037#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100038#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100039#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100040#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100041#include <unistd.h>
Ben Lindstrom949974b2001-06-25 05:20:31 +000042
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043#include "xmalloc.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100044#include "misc.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000045#include "pathnames.h"
46#include "log.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000047#include "ssh.h"
Damien Miller6b4069a2006-06-13 13:05:15 +100048#include "uidswap.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000049
Ben Lindstrombba81212001-06-25 05:01:22 +000050static char *
djm@openbsd.org59175a32019-12-06 03:06:08 +000051ssh_askpass(char *askpass, const char *msg, const char *env_hint)
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000052{
Damien Miller106079c2011-01-06 22:43:44 +110053 pid_t pid, ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000054 size_t len;
Damien Miller637b8ae2001-11-12 11:05:20 +110055 char *pass;
Damien Miller106079c2011-01-06 22:43:44 +110056 int p[2], status;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000057 char buf[1024];
Damien Miller106079c2011-01-06 22:43:44 +110058 void (*osigchld)(int);
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000059
60 if (fflush(stdout) != 0)
djm@openbsd.org36eaa352019-12-06 02:55:21 +000061 error("%s: fflush: %s", __func__, strerror(errno));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000062 if (askpass == NULL)
63 fatal("internal error: askpass undefined");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +000064 if (pipe(p) == -1) {
djm@openbsd.org36eaa352019-12-06 02:55:21 +000065 error("%s: pipe: %s", __func__, strerror(errno));
Damien Miller6c711792003-01-24 11:36:23 +110066 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100067 }
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +000068 osigchld = ssh_signal(SIGCHLD, SIG_DFL);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +000069 if ((pid = fork()) == -1) {
djm@openbsd.org36eaa352019-12-06 02:55:21 +000070 error("%s: fork: %s", __func__, strerror(errno));
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +000071 ssh_signal(SIGCHLD, osigchld);
Damien Miller6c711792003-01-24 11:36:23 +110072 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100073 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000074 if (pid == 0) {
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000075 close(p[0]);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +000076 if (dup2(p[1], STDOUT_FILENO) == -1)
djm@openbsd.org36eaa352019-12-06 02:55:21 +000077 fatal("%s: dup2: %s", __func__, strerror(errno));
djm@openbsd.org59175a32019-12-06 03:06:08 +000078 if (env_hint != NULL)
79 setenv("SSH_ASKPASS_PROMPT", env_hint, 1);
mmcc@openbsd.org94141b72015-12-11 00:20:04 +000080 execlp(askpass, askpass, msg, (char *)NULL);
djm@openbsd.org36eaa352019-12-06 02:55:21 +000081 fatal("%s: exec(%s): %s", __func__, askpass, strerror(errno));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000082 }
83 close(p[1]);
Damien Millerf451e222002-01-22 23:05:31 +110084
Damien Miller106079c2011-01-06 22:43:44 +110085 len = 0;
Damien Millerf451e222002-01-22 23:05:31 +110086 do {
Damien Miller106079c2011-01-06 22:43:44 +110087 ssize_t r = read(p[0], buf + len, sizeof(buf) - 1 - len);
88
89 if (r == -1 && errno == EINTR)
Damien Millerf451e222002-01-22 23:05:31 +110090 continue;
Damien Miller106079c2011-01-06 22:43:44 +110091 if (r <= 0)
Damien Millerf451e222002-01-22 23:05:31 +110092 break;
Damien Miller106079c2011-01-06 22:43:44 +110093 len += r;
Damien Millerf451e222002-01-22 23:05:31 +110094 } while (sizeof(buf) - 1 - len > 0);
95 buf[len] = '\0';
96
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000097 close(p[0]);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +000098 while ((ret = waitpid(pid, &status, 0)) == -1)
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000099 if (errno != EINTR)
100 break;
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000101 ssh_signal(SIGCHLD, osigchld);
Damien Miller106079c2011-01-06 22:43:44 +1100102 if (ret == -1 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +1100103 explicit_bzero(buf, sizeof(buf));
Damien Miller6c711792003-01-24 11:36:23 +1100104 return NULL;
105 }
106
Damien Miller637b8ae2001-11-12 11:05:20 +1100107 buf[strcspn(buf, "\r\n")] = '\0';
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000108 pass = xstrdup(buf);
Damien Millera5103f42014-02-04 11:20:14 +1100109 explicit_bzero(buf, sizeof(buf));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000110 return pass;
111}
112
djm@openbsd.org59175a32019-12-06 03:06:08 +0000113/* private/internal read_passphrase flags */
114#define RP_ASK_PERMISSION 0x8000 /* pass hint to askpass for confirm UI */
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
Ben Lindstrom949974b2001-06-25 05:20:31 +0000117 * Reads a passphrase from /dev/tty with echo turned off/on. Returns the
118 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
119 * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
120 * tty is available
Damien Miller874d77b2000-10-14 16:23:11 +1100121 */
Damien Miller95def091999-11-25 00:26:21 +1100122char *
Ben Lindstrom949974b2001-06-25 05:20:31 +0000123read_passphrase(const char *prompt, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124{
tb@openbsd.org4ae7f802019-01-19 04:15:56 +0000125 char cr = '\r', *askpass = NULL, *ret, buf[1024];
Ben Lindstrom949974b2001-06-25 05:20:31 +0000126 int rppflags, use_askpass = 0, ttyfd;
djm@openbsd.org59175a32019-12-06 03:06:08 +0000127 const char *askpass_hint = NULL;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000128
Ben Lindstrom949974b2001-06-25 05:20:31 +0000129 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
Damien Miller23f07702004-06-18 01:19:03 +1000130 if (flags & RP_USE_ASKPASS)
131 use_askpass = 1;
132 else if (flags & RP_ALLOW_STDIN) {
Damien Millerd2ebd452005-05-26 12:07:47 +1000133 if (!isatty(STDIN_FILENO)) {
Damien Millerddeb7522005-05-26 12:05:28 +1000134 debug("read_passphrase: stdin is not a tty");
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000135 use_askpass = 1;
Damien Millerd2ebd452005-05-26 12:07:47 +1000136 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000137 } else {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000138 rppflags |= RPP_REQUIRE_TTY;
Damien Miller85830d12002-01-22 23:24:51 +1100139 ttyfd = open(_PATH_TTY, O_RDWR);
tb@openbsd.org4ae7f802019-01-19 04:15:56 +0000140 if (ttyfd >= 0) {
141 /*
142 * If we're on a tty, ensure that show the prompt at
143 * the beginning of the line. This will hopefully
144 * clobber any password characters the user has
145 * optimistically typed before echo is disabled.
146 */
147 (void)write(ttyfd, &cr, 1);
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000148 close(ttyfd);
tb@openbsd.org4ae7f802019-01-19 04:15:56 +0000149 } else {
Damien Millerddeb7522005-05-26 12:05:28 +1000150 debug("read_passphrase: can't open %s: %s", _PATH_TTY,
151 strerror(errno));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000152 use_askpass = 1;
Damien Millerddeb7522005-05-26 12:05:28 +1000153 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000154 }
155
Damien Miller23f07702004-06-18 01:19:03 +1000156 if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
157 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
158
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000159 if (use_askpass && getenv("DISPLAY")) {
160 if (getenv(SSH_ASKPASS_ENV))
161 askpass = getenv(SSH_ASKPASS_ENV);
162 else
163 askpass = _PATH_SSH_ASKPASS_DEFAULT;
djm@openbsd.org59175a32019-12-06 03:06:08 +0000164 if ((flags & RP_ASK_PERMISSION) != 0)
165 askpass_hint = "confirm";
166 if ((ret = ssh_askpass(askpass, prompt, askpass_hint)) == NULL)
Damien Miller6c711792003-01-24 11:36:23 +1100167 if (!(flags & RP_ALLOW_EOF))
168 return xstrdup("");
169 return ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000170 }
171
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000172 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
173 if (flags & RP_ALLOW_EOF)
174 return NULL;
Ben Lindstrom4f42d8c2001-07-04 05:19:27 +0000175 return xstrdup("");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000176 }
Ben Lindstrom949974b2001-06-25 05:20:31 +0000177
178 ret = xstrdup(buf);
Damien Millera5103f42014-02-04 11:20:14 +1100179 explicit_bzero(buf, sizeof(buf));
Ben Lindstrom949974b2001-06-25 05:20:31 +0000180 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181}
Darren Tuckerce327b62004-11-05 20:38:03 +1100182
183int
184ask_permission(const char *fmt, ...)
185{
186 va_list args;
187 char *p, prompt[1024];
188 int allowed = 0;
189
190 va_start(args, fmt);
191 vsnprintf(prompt, sizeof(prompt), fmt, args);
192 va_end(args);
193
djm@openbsd.org59175a32019-12-06 03:06:08 +0000194 p = read_passphrase(prompt,
195 RP_USE_ASKPASS|RP_ALLOW_EOF|RP_ASK_PERMISSION);
Darren Tuckerce327b62004-11-05 20:38:03 +1100196 if (p != NULL) {
197 /*
198 * Accept empty responses and responses consisting
199 * of the word "yes" as affirmative.
200 */
201 if (*p == '\0' || *p == '\n' ||
202 strcasecmp(p, "yes") == 0)
203 allowed = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000204 free(p);
Darren Tuckerce327b62004-11-05 20:38:03 +1100205 }
206
207 return (allowed);
208}
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000209
210struct notifier_ctx {
211 pid_t pid;
212 void (*osigchld)(int);
213};
214
215struct notifier_ctx *
216notify_start(int force_askpass, const char *fmt, ...)
217{
218 va_list args;
219 char *prompt = NULL;
220 int devnull;
221 pid_t pid;
222 void (*osigchld)(int);
223 const char *askpass;
224 struct notifier_ctx *ret;
225
226 va_start(args, fmt);
227 xvasprintf(&prompt, fmt, args);
228 va_end(args);
229
230 if (fflush(NULL) != 0)
231 error("%s: fflush: %s", __func__, strerror(errno));
232 if (!force_askpass && isatty(STDERR_FILENO)) {
233 (void)write(STDERR_FILENO, "\r", 1);
234 (void)write(STDERR_FILENO, prompt, strlen(prompt));
235 (void)write(STDERR_FILENO, "\r\n", 2);
236 free(prompt);
237 return NULL;
238 }
djm@openbsd.org018e2902019-11-15 00:32:40 +0000239 if ((askpass = getenv("SSH_ASKPASS")) == NULL)
240 askpass = _PATH_SSH_ASKPASS_DEFAULT;
241 if (getenv("DISPLAY") == NULL || *askpass == '\0') {
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000242 debug3("%s: cannot notify", __func__);
243 free(prompt);
244 return NULL;
245 }
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000246 osigchld = ssh_signal(SIGCHLD, SIG_DFL);
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000247 if ((pid = fork()) == -1) {
248 error("%s: fork: %s", __func__, strerror(errno));
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000249 ssh_signal(SIGCHLD, osigchld);
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000250 free(prompt);
251 return NULL;
252 }
253 if (pid == 0) {
254 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1)
255 fatal("%s: open %s", __func__, strerror(errno));
256 if (dup2(devnull, STDIN_FILENO) == -1 ||
257 dup2(devnull, STDOUT_FILENO) == -1)
258 fatal("%s: dup2: %s", __func__, strerror(errno));
259 closefrom(STDERR_FILENO + 1);
260 setenv("SSH_ASKPASS_PROMPT", "none", 1); /* hint to UI */
261 execlp(askpass, askpass, prompt, (char *)NULL);
djm@openbsd.orgf79364b2019-11-27 05:00:17 +0000262 error("%s: exec(%s): %s", __func__, askpass, strerror(errno));
263 _exit(1);
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000264 /* NOTREACHED */
265 }
266 if ((ret = calloc(1, sizeof(*ret))) == NULL) {
267 kill(pid, SIGTERM);
268 fatal("%s: calloc failed", __func__);
269 }
270 ret->pid = pid;
271 ret->osigchld = osigchld;
272 free(prompt);
273 return ret;
274}
275
276void
277notify_complete(struct notifier_ctx *ctx)
278{
279 int ret;
280
281 if (ctx == NULL || ctx->pid <= 0) {
282 free(ctx);
283 return;
284 }
285 kill(ctx->pid, SIGTERM);
286 while ((ret = waitpid(ctx->pid, NULL, 0)) == -1) {
287 if (errno != EINTR)
288 break;
289 }
290 if (ret == -1)
291 fatal("%s: waitpid: %s", __func__, strerror(errno));
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000292 ssh_signal(SIGCHLD, ctx->osigchld);
djm@openbsd.org5d1c1592019-11-12 22:34:20 +0000293 free(ctx);
294}