blob: 4236c43c75ee67d4cea23a43337568de2a487794 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller3606ee22002-02-13 14:05:23 +11002 * Copyright (c) 2001 Markus Friedl. All rights reserved.
Damien Miller50945fa1999-12-09 10:31:37 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Miller50945fa1999-12-09 10:31:37 +110012 *
Damien Miller3606ee22002-02-13 14:05:23 +110013 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110023 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
25#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110026
27#include <sys/types.h>
28#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110029
30#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110031# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110032#endif
Ben Lindstrom949974b2001-06-25 05:20:31 +000033
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include "xmalloc.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100035#include "misc.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000036#include "pathnames.h"
37#include "log.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000038#include "ssh.h"
39
Ben Lindstrombba81212001-06-25 05:01:22 +000040static char *
Ben Lindstrom6d849312001-05-02 01:30:32 +000041ssh_askpass(char *askpass, const char *msg)
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000042{
43 pid_t pid;
44 size_t len;
Damien Miller637b8ae2001-11-12 11:05:20 +110045 char *pass;
Damien Millerf451e222002-01-22 23:05:31 +110046 int p[2], status, ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000047 char buf[1024];
48
49 if (fflush(stdout) != 0)
50 error("ssh_askpass: fflush: %s", strerror(errno));
51 if (askpass == NULL)
52 fatal("internal error: askpass undefined");
Damien Miller07ab49e2001-07-14 12:19:56 +100053 if (pipe(p) < 0) {
54 error("ssh_askpass: pipe: %s", strerror(errno));
Damien Miller6c711792003-01-24 11:36:23 +110055 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100056 }
57 if ((pid = fork()) < 0) {
58 error("ssh_askpass: fork: %s", strerror(errno));
Damien Miller6c711792003-01-24 11:36:23 +110059 return NULL;
Damien Miller07ab49e2001-07-14 12:19:56 +100060 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000061 if (pid == 0) {
62 seteuid(getuid());
63 setuid(getuid());
64 close(p[0]);
65 if (dup2(p[1], STDOUT_FILENO) < 0)
66 fatal("ssh_askpass: dup2: %s", strerror(errno));
67 execlp(askpass, askpass, msg, (char *) 0);
68 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
69 }
70 close(p[1]);
Damien Millerf451e222002-01-22 23:05:31 +110071
72 len = ret = 0;
73 do {
74 ret = read(p[0], buf + len, sizeof(buf) - 1 - len);
75 if (ret == -1 && errno == EINTR)
76 continue;
77 if (ret <= 0)
78 break;
79 len += ret;
80 } while (sizeof(buf) - 1 - len > 0);
81 buf[len] = '\0';
82
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000083 close(p[0]);
84 while (waitpid(pid, &status, 0) < 0)
85 if (errno != EINTR)
86 break;
Damien Millerf451e222002-01-22 23:05:31 +110087
Damien Miller6c711792003-01-24 11:36:23 +110088 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
89 memset(buf, 0, sizeof(buf));
90 return NULL;
91 }
92
Damien Miller637b8ae2001-11-12 11:05:20 +110093 buf[strcspn(buf, "\r\n")] = '\0';
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000094 pass = xstrdup(buf);
95 memset(buf, 0, sizeof(buf));
96 return pass;
97}
98
Damien Miller5428f641999-11-25 11:54:57 +110099/*
Ben Lindstrom949974b2001-06-25 05:20:31 +0000100 * Reads a passphrase from /dev/tty with echo turned off/on. Returns the
101 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
102 * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
103 * tty is available
Damien Miller874d77b2000-10-14 16:23:11 +1100104 */
Damien Miller95def091999-11-25 00:26:21 +1100105char *
Ben Lindstrom949974b2001-06-25 05:20:31 +0000106read_passphrase(const char *prompt, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107{
Ben Lindstrom949974b2001-06-25 05:20:31 +0000108 char *askpass = NULL, *ret, buf[1024];
109 int rppflags, use_askpass = 0, ttyfd;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000110
Ben Lindstrom949974b2001-06-25 05:20:31 +0000111 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
Damien Miller23f07702004-06-18 01:19:03 +1000112 if (flags & RP_USE_ASKPASS)
113 use_askpass = 1;
114 else if (flags & RP_ALLOW_STDIN) {
Damien Millerd2ebd452005-05-26 12:07:47 +1000115 if (!isatty(STDIN_FILENO)) {
Damien Millerddeb7522005-05-26 12:05:28 +1000116 debug("read_passphrase: stdin is not a tty");
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000117 use_askpass = 1;
Damien Millerd2ebd452005-05-26 12:07:47 +1000118 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000119 } else {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000120 rppflags |= RPP_REQUIRE_TTY;
Damien Miller85830d12002-01-22 23:24:51 +1100121 ttyfd = open(_PATH_TTY, O_RDWR);
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000122 if (ttyfd >= 0)
123 close(ttyfd);
Damien Millerddeb7522005-05-26 12:05:28 +1000124 else {
125 debug("read_passphrase: can't open %s: %s", _PATH_TTY,
126 strerror(errno));
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000127 use_askpass = 1;
Damien Millerddeb7522005-05-26 12:05:28 +1000128 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000129 }
130
Damien Miller23f07702004-06-18 01:19:03 +1000131 if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
132 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
133
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000134 if (use_askpass && getenv("DISPLAY")) {
135 if (getenv(SSH_ASKPASS_ENV))
136 askpass = getenv(SSH_ASKPASS_ENV);
137 else
138 askpass = _PATH_SSH_ASKPASS_DEFAULT;
Damien Miller6c711792003-01-24 11:36:23 +1100139 if ((ret = ssh_askpass(askpass, prompt)) == NULL)
140 if (!(flags & RP_ALLOW_EOF))
141 return xstrdup("");
142 return ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000143 }
144
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000145 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
146 if (flags & RP_ALLOW_EOF)
147 return NULL;
Ben Lindstrom4f42d8c2001-07-04 05:19:27 +0000148 return xstrdup("");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000149 }
Ben Lindstrom949974b2001-06-25 05:20:31 +0000150
151 ret = xstrdup(buf);
152 memset(buf, 'x', sizeof buf);
153 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154}
Darren Tuckerce327b62004-11-05 20:38:03 +1100155
156int
157ask_permission(const char *fmt, ...)
158{
159 va_list args;
160 char *p, prompt[1024];
161 int allowed = 0;
162
163 va_start(args, fmt);
164 vsnprintf(prompt, sizeof(prompt), fmt, args);
165 va_end(args);
166
167 p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
168 if (p != NULL) {
169 /*
170 * Accept empty responses and responses consisting
171 * of the word "yes" as affirmative.
172 */
173 if (*p == '\0' || *p == '\n' ||
174 strcasecmp(p, "yes") == 0)
175 allowed = 1;
176 xfree(p);
177 }
178
179 return (allowed);
180}