]> andersk Git - openssh.git/blame - readpass.c
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[openssh.git] / readpass.c
CommitLineData
d3221cca 1/* $OpenBSD: readpass.c,v 1.40 2006/07/09 15:15:10 stevesk Exp $ */
8efc0c15 2/*
b984f12e 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
2d86a6cc 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.
2d86a6cc 13 *
b984f12e 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.
5260325f 24 */
8efc0c15 25
26#include "includes.h"
aa2eae64 27
28#include <sys/types.h>
29#include <sys/wait.h>
a75f5360 30
d3221cca 31#include <fcntl.h>
a75f5360 32#ifdef HAVE_PATHS_H
6f61e0ec 33# include <paths.h>
a75f5360 34#endif
1843a425 35
8efc0c15 36#include "xmalloc.h"
58ae9cb8 37#include "misc.h"
561e5254 38#include "pathnames.h"
39#include "log.h"
561e5254 40#include "ssh.h"
82aeee5d 41#include "uidswap.h"
561e5254 42
396c147e 43static char *
742ee8f2 44ssh_askpass(char *askpass, const char *msg)
561e5254 45{
46 pid_t pid;
47 size_t len;
56b551e2 48 char *pass;
f9654cd7 49 int p[2], status, ret;
561e5254 50 char buf[1024];
51
52 if (fflush(stdout) != 0)
53 error("ssh_askpass: fflush: %s", strerror(errno));
54 if (askpass == NULL)
55 fatal("internal error: askpass undefined");
333b5ba7 56 if (pipe(p) < 0) {
57 error("ssh_askpass: pipe: %s", strerror(errno));
c4087616 58 return NULL;
333b5ba7 59 }
60 if ((pid = fork()) < 0) {
61 error("ssh_askpass: fork: %s", strerror(errno));
c4087616 62 return NULL;
333b5ba7 63 }
561e5254 64 if (pid == 0) {
3c33c1b6 65 permanently_drop_suid(getuid());
561e5254 66 close(p[0]);
67 if (dup2(p[1], STDOUT_FILENO) < 0)
68 fatal("ssh_askpass: dup2: %s", strerror(errno));
69 execlp(askpass, askpass, msg, (char *) 0);
70 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
71 }
72 close(p[1]);
f9654cd7 73
74 len = ret = 0;
75 do {
76 ret = read(p[0], buf + len, sizeof(buf) - 1 - len);
77 if (ret == -1 && errno == EINTR)
78 continue;
79 if (ret <= 0)
80 break;
81 len += ret;
82 } while (sizeof(buf) - 1 - len > 0);
83 buf[len] = '\0';
84
561e5254 85 close(p[0]);
86 while (waitpid(pid, &status, 0) < 0)
87 if (errno != EINTR)
88 break;
f9654cd7 89
c4087616 90 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
91 memset(buf, 0, sizeof(buf));
92 return NULL;
93 }
94
56b551e2 95 buf[strcspn(buf, "\r\n")] = '\0';
561e5254 96 pass = xstrdup(buf);
97 memset(buf, 0, sizeof(buf));
98 return pass;
99}
100
aa3378df 101/*
1843a425 102 * Reads a passphrase from /dev/tty with echo turned off/on. Returns the
103 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
104 * RP_ALLOW_STDIN is set, the passphrase will be read from stdin if no
105 * tty is available
94ec8c6b 106 */
5260325f 107char *
1843a425 108read_passphrase(const char *prompt, int flags)
8efc0c15 109{
1843a425 110 char *askpass = NULL, *ret, buf[1024];
111 int rppflags, use_askpass = 0, ttyfd;
561e5254 112
1843a425 113 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
0d34d6ce 114 if (flags & RP_USE_ASKPASS)
115 use_askpass = 1;
116 else if (flags & RP_ALLOW_STDIN) {
c6eb32a1 117 if (!isatty(STDIN_FILENO)) {
d49d70a8 118 debug("read_passphrase: stdin is not a tty");
561e5254 119 use_askpass = 1;
c6eb32a1 120 }
561e5254 121 } else {
1843a425 122 rppflags |= RPP_REQUIRE_TTY;
a62ebe1f 123 ttyfd = open(_PATH_TTY, O_RDWR);
561e5254 124 if (ttyfd >= 0)
125 close(ttyfd);
d49d70a8 126 else {
127 debug("read_passphrase: can't open %s: %s", _PATH_TTY,
128 strerror(errno));
561e5254 129 use_askpass = 1;
d49d70a8 130 }
561e5254 131 }
132
0d34d6ce 133 if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
134 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
135
561e5254 136 if (use_askpass && getenv("DISPLAY")) {
137 if (getenv(SSH_ASKPASS_ENV))
138 askpass = getenv(SSH_ASKPASS_ENV);
139 else
140 askpass = _PATH_SSH_ASKPASS_DEFAULT;
c4087616 141 if ((ret = ssh_askpass(askpass, prompt)) == NULL)
142 if (!(flags & RP_ALLOW_EOF))
143 return xstrdup("");
144 return ret;
561e5254 145 }
146
67ec167d 147 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
148 if (flags & RP_ALLOW_EOF)
149 return NULL;
613021ac 150 return xstrdup("");
67ec167d 151 }
1843a425 152
153 ret = xstrdup(buf);
154 memset(buf, 'x', sizeof buf);
155 return ret;
8efc0c15 156}
7a9c7a0b 157
158int
159ask_permission(const char *fmt, ...)
160{
161 va_list args;
162 char *p, prompt[1024];
163 int allowed = 0;
164
165 va_start(args, fmt);
166 vsnprintf(prompt, sizeof(prompt), fmt, args);
167 va_end(args);
168
169 p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
170 if (p != NULL) {
171 /*
172 * Accept empty responses and responses consisting
173 * of the word "yes" as affirmative.
174 */
175 if (*p == '\0' || *p == '\n' ||
176 strcasecmp(p, "yes") == 0)
177 allowed = 1;
178 xfree(p);
179 }
180
181 return (allowed);
182}
This page took 0.261621 seconds and 5 git commands to generate.