blob: 96b7e84b44fcee486b4f6e1e54defdd339ab5128 [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"
Ben Lindstrom38a69e62002-03-27 17:28:46 +000026RCSID("$OpenBSD: readpass.c,v 1.27 2002/03/26 15:58:46 markus Exp $");
Ben Lindstrom949974b2001-06-25 05:20:31 +000027
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "xmalloc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000029#include "readpass.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000030#include "pathnames.h"
31#include "log.h"
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000032#include "ssh.h"
33
Ben Lindstrombba81212001-06-25 05:01:22 +000034static char *
Ben Lindstrom6d849312001-05-02 01:30:32 +000035ssh_askpass(char *askpass, const char *msg)
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000036{
37 pid_t pid;
38 size_t len;
Damien Miller637b8ae2001-11-12 11:05:20 +110039 char *pass;
Damien Millerf451e222002-01-22 23:05:31 +110040 int p[2], status, ret;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000041 char buf[1024];
42
43 if (fflush(stdout) != 0)
44 error("ssh_askpass: fflush: %s", strerror(errno));
45 if (askpass == NULL)
46 fatal("internal error: askpass undefined");
Damien Miller07ab49e2001-07-14 12:19:56 +100047 if (pipe(p) < 0) {
48 error("ssh_askpass: pipe: %s", strerror(errno));
49 return xstrdup("");
50 }
51 if ((pid = fork()) < 0) {
52 error("ssh_askpass: fork: %s", strerror(errno));
53 return xstrdup("");
54 }
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000055 if (pid == 0) {
56 seteuid(getuid());
57 setuid(getuid());
58 close(p[0]);
59 if (dup2(p[1], STDOUT_FILENO) < 0)
60 fatal("ssh_askpass: dup2: %s", strerror(errno));
61 execlp(askpass, askpass, msg, (char *) 0);
62 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
63 }
64 close(p[1]);
Damien Millerf451e222002-01-22 23:05:31 +110065
66 len = ret = 0;
67 do {
68 ret = read(p[0], buf + len, sizeof(buf) - 1 - len);
69 if (ret == -1 && errno == EINTR)
70 continue;
71 if (ret <= 0)
72 break;
73 len += ret;
74 } while (sizeof(buf) - 1 - len > 0);
75 buf[len] = '\0';
76
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000077 close(p[0]);
78 while (waitpid(pid, &status, 0) < 0)
79 if (errno != EINTR)
80 break;
Damien Millerf451e222002-01-22 23:05:31 +110081
Damien Miller637b8ae2001-11-12 11:05:20 +110082 buf[strcspn(buf, "\r\n")] = '\0';
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000083 pass = xstrdup(buf);
84 memset(buf, 0, sizeof(buf));
85 return pass;
86}
87
Damien Miller5428f641999-11-25 11:54:57 +110088/*
Ben Lindstrom949974b2001-06-25 05:20:31 +000089 * Reads a passphrase from /dev/tty with echo turned off/on. Returns the
90 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
91 * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
92 * tty is available
Damien Miller874d77b2000-10-14 16:23:11 +110093 */
Damien Miller95def091999-11-25 00:26:21 +110094char *
Ben Lindstrom949974b2001-06-25 05:20:31 +000095read_passphrase(const char *prompt, int flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096{
Ben Lindstrom949974b2001-06-25 05:20:31 +000097 char *askpass = NULL, *ret, buf[1024];
98 int rppflags, use_askpass = 0, ttyfd;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +000099
Ben Lindstrom949974b2001-06-25 05:20:31 +0000100 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
101 if (flags & RP_ALLOW_STDIN) {
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000102 if (!isatty(STDIN_FILENO))
103 use_askpass = 1;
104 } else {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000105 rppflags |= RPP_REQUIRE_TTY;
Damien Miller85830d12002-01-22 23:24:51 +1100106 ttyfd = open(_PATH_TTY, O_RDWR);
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000107 if (ttyfd >= 0)
108 close(ttyfd);
109 else
110 use_askpass = 1;
111 }
112
113 if (use_askpass && getenv("DISPLAY")) {
114 if (getenv(SSH_ASKPASS_ENV))
115 askpass = getenv(SSH_ASKPASS_ENV);
116 else
117 askpass = _PATH_SSH_ASKPASS_DEFAULT;
118 return ssh_askpass(askpass, prompt);
119 }
120
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000121 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
122 if (flags & RP_ALLOW_EOF)
123 return NULL;
Ben Lindstrom4f42d8c2001-07-04 05:19:27 +0000124 return xstrdup("");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000125 }
Ben Lindstrom949974b2001-06-25 05:20:31 +0000126
127 ret = xstrdup(buf);
128 memset(buf, 'x', sizeof buf);
129 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130}