blob: 60e4a902f2d637e6db5bb9a37dddb44bd1d49c3f [file] [log] [blame]
Damien Miller6b4069a2006-06-13 13:05:15 +10001/* $OpenBSD: readpass.c,v 1.38 2006/06/06 10:20:20 markus 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
31#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110032# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110033#endif
Ben Lindstrom949974b2001-06-25 05:20:31 +000034
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include "xmalloc.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100036#include "misc.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000037#include "pathnames.h"
38#include "log.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000039#include "ssh.h"
Damien Miller6b4069a2006-06-13 13:05:15 +100040#include "uidswap.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000041
Ben Lindstrombba81212001-06-25 05:01:22 +000042static char *
Ben Lindstrom6d849312001-05-02 01:30:32 +000043ssh_askpass(char *askpass, const char *msg)
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000044{
45 pid_t pid;
46 size_t len;
Damien Miller637b8ae2001-11-12 11:05:20 +110047 char *pass;
Damien Millerf451e222002-01-22 23:05:31 +110048 int p[2], status, ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000049 char buf[1024];
50
51 if (fflush(stdout) != 0)
52 error("ssh_askpass: fflush: %s", strerror(errno));
53 if (askpass == NULL)
54 fatal("internal error: askpass undefined");
Damien Miller07ab49e2001-07-14 12:19:56 +100055 if (pipe(p) < 0) {
56 error("ssh_askpass: pipe: %s", strerror(errno));
Damien Miller6c711792003-01-24 11:36:23 +110057 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100058 }
59 if ((pid = fork()) < 0) {
60 error("ssh_askpass: fork: %s", strerror(errno));
Damien Miller6c711792003-01-24 11:36:23 +110061 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100062 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000063 if (pid == 0) {
Damien Miller6b4069a2006-06-13 13:05:15 +100064 permanently_set_uid(getpwuid(getuid()));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000065 close(p[0]);
66 if (dup2(p[1], STDOUT_FILENO) < 0)
67 fatal("ssh_askpass: dup2: %s", strerror(errno));
68 execlp(askpass, askpass, msg, (char *) 0);
69 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
70 }
71 close(p[1]);
Damien Millerf451e222002-01-22 23:05:31 +110072
73 len = ret = 0;
74 do {
75 ret = read(p[0], buf + len, sizeof(buf) - 1 - len);
76 if (ret == -1 && errno == EINTR)
77 continue;
78 if (ret <= 0)
79 break;
80 len += ret;
81 } while (sizeof(buf) - 1 - len > 0);
82 buf[len] = '\0';
83
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000084 close(p[0]);
85 while (waitpid(pid, &status, 0) < 0)
86 if (errno != EINTR)
87 break;
Damien Millerf451e222002-01-22 23:05:31 +110088
Damien Miller6c711792003-01-24 11:36:23 +110089 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
90 memset(buf, 0, sizeof(buf));
91 return NULL;
92 }
93
Damien Miller637b8ae2001-11-12 11:05:20 +110094 buf[strcspn(buf, "\r\n")] = '\0';
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000095 pass = xstrdup(buf);
96 memset(buf, 0, sizeof(buf));
97 return pass;
98}
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
Ben Lindstrom949974b2001-06-25 05:20:31 +0000101 * Reads a passphrase from /dev/tty with echo turned off/on. Returns the
102 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
103 * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
104 * tty is available
Damien Miller874d77b2000-10-14 16:23:11 +1100105 */
Damien Miller95def091999-11-25 00:26:21 +1100106char *
Ben Lindstrom949974b2001-06-25 05:20:31 +0000107read_passphrase(const char *prompt, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108{
Ben Lindstrom949974b2001-06-25 05:20:31 +0000109 char *askpass = NULL, *ret, buf[1024];
110 int rppflags, use_askpass = 0, ttyfd;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000111
Ben Lindstrom949974b2001-06-25 05:20:31 +0000112 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
Damien Miller23f07702004-06-18 01:19:03 +1000113 if (flags & RP_USE_ASKPASS)
114 use_askpass = 1;
115 else if (flags & RP_ALLOW_STDIN) {
Damien Millerd2ebd452005-05-26 12:07:47 +1000116 if (!isatty(STDIN_FILENO)) {
Damien Millerddeb7522005-05-26 12:05:28 +1000117 debug("read_passphrase: stdin is not a tty");
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000118 use_askpass = 1;
Damien Millerd2ebd452005-05-26 12:07:47 +1000119 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000120 } else {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000121 rppflags |= RPP_REQUIRE_TTY;
Damien Miller85830d12002-01-22 23:24:51 +1100122 ttyfd = open(_PATH_TTY, O_RDWR);
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000123 if (ttyfd >= 0)
124 close(ttyfd);
Damien Millerddeb7522005-05-26 12:05:28 +1000125 else {
126 debug("read_passphrase: can't open %s: %s", _PATH_TTY,
127 strerror(errno));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000128 use_askpass = 1;
Damien Millerddeb7522005-05-26 12:05:28 +1000129 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000130 }
131
Damien Miller23f07702004-06-18 01:19:03 +1000132 if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
133 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
134
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000135 if (use_askpass && getenv("DISPLAY")) {
136 if (getenv(SSH_ASKPASS_ENV))
137 askpass = getenv(SSH_ASKPASS_ENV);
138 else
139 askpass = _PATH_SSH_ASKPASS_DEFAULT;
Damien Miller6c711792003-01-24 11:36:23 +1100140 if ((ret = ssh_askpass(askpass, prompt)) == NULL)
141 if (!(flags & RP_ALLOW_EOF))
142 return xstrdup("");
143 return ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000144 }
145
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000146 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
147 if (flags & RP_ALLOW_EOF)
148 return NULL;
Ben Lindstrom4f42d8c2001-07-04 05:19:27 +0000149 return xstrdup("");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000150 }
Ben Lindstrom949974b2001-06-25 05:20:31 +0000151
152 ret = xstrdup(buf);
153 memset(buf, 'x', sizeof buf);
154 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155}
Darren Tuckerce327b62004-11-05 20:38:03 +1100156
157int
158ask_permission(const char *fmt, ...)
159{
160 va_list args;
161 char *p, prompt[1024];
162 int allowed = 0;
163
164 va_start(args, fmt);
165 vsnprintf(prompt, sizeof(prompt), fmt, args);
166 va_end(args);
167
168 p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
169 if (p != NULL) {
170 /*
171 * Accept empty responses and responses consisting
172 * of the word "yes" as affirmative.
173 */
174 if (*p == '\0' || *p == '\n' ||
175 strcasecmp(p, "yes") == 0)
176 allowed = 1;
177 xfree(p);
178 }
179
180 return (allowed);
181}