]> andersk Git - openssh.git/blame - readpass.c
- markus@cvs.openbsd.org 2006/06/01 09:21:48
[openssh.git] / readpass.c
CommitLineData
c1cb7bae 1/* $OpenBSD: readpass.c,v 1.37 2006/03/25 13:17:02 djm 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
31#ifdef HAVE_PATHS_H
6f61e0ec 32# include <paths.h>
a75f5360 33#endif
1843a425 34
8efc0c15 35#include "xmalloc.h"
58ae9cb8 36#include "misc.h"
561e5254 37#include "pathnames.h"
38#include "log.h"
561e5254 39#include "ssh.h"
40
396c147e 41static char *
742ee8f2 42ssh_askpass(char *askpass, const char *msg)
561e5254 43{
44 pid_t pid;
45 size_t len;
56b551e2 46 char *pass;
f9654cd7 47 int p[2], status, ret;
561e5254 48 char buf[1024];
49
50 if (fflush(stdout) != 0)
51 error("ssh_askpass: fflush: %s", strerror(errno));
52 if (askpass == NULL)
53 fatal("internal error: askpass undefined");
333b5ba7 54 if (pipe(p) < 0) {
55 error("ssh_askpass: pipe: %s", strerror(errno));
c4087616 56 return NULL;
333b5ba7 57 }
58 if ((pid = fork()) < 0) {
59 error("ssh_askpass: fork: %s", strerror(errno));
c4087616 60 return NULL;
333b5ba7 61 }
561e5254 62 if (pid == 0) {
63 seteuid(getuid());
64 setuid(getuid());
65 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]);
f9654cd7 72
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
561e5254 84 close(p[0]);
85 while (waitpid(pid, &status, 0) < 0)
86 if (errno != EINTR)
87 break;
f9654cd7 88
c4087616 89 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
90 memset(buf, 0, sizeof(buf));
91 return NULL;
92 }
93
56b551e2 94 buf[strcspn(buf, "\r\n")] = '\0';
561e5254 95 pass = xstrdup(buf);
96 memset(buf, 0, sizeof(buf));
97 return pass;
98}
99
aa3378df 100/*
1843a425 101 * 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
94ec8c6b 105 */
5260325f 106char *
1843a425 107read_passphrase(const char *prompt, int flags)
8efc0c15 108{
1843a425 109 char *askpass = NULL, *ret, buf[1024];
110 int rppflags, use_askpass = 0, ttyfd;
561e5254 111
1843a425 112 rppflags = (flags & RP_ECHO) ? RPP_ECHO_ON : RPP_ECHO_OFF;
0d34d6ce 113 if (flags & RP_USE_ASKPASS)
114 use_askpass = 1;
115 else if (flags & RP_ALLOW_STDIN) {
c6eb32a1 116 if (!isatty(STDIN_FILENO)) {
d49d70a8 117 debug("read_passphrase: stdin is not a tty");
561e5254 118 use_askpass = 1;
c6eb32a1 119 }
561e5254 120 } else {
1843a425 121 rppflags |= RPP_REQUIRE_TTY;
a62ebe1f 122 ttyfd = open(_PATH_TTY, O_RDWR);
561e5254 123 if (ttyfd >= 0)
124 close(ttyfd);
d49d70a8 125 else {
126 debug("read_passphrase: can't open %s: %s", _PATH_TTY,
127 strerror(errno));
561e5254 128 use_askpass = 1;
d49d70a8 129 }
561e5254 130 }
131
0d34d6ce 132 if ((flags & RP_USE_ASKPASS) && getenv("DISPLAY") == NULL)
133 return (flags & RP_ALLOW_EOF) ? NULL : xstrdup("");
134
561e5254 135 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;
c4087616 140 if ((ret = ssh_askpass(askpass, prompt)) == NULL)
141 if (!(flags & RP_ALLOW_EOF))
142 return xstrdup("");
143 return ret;
561e5254 144 }
145
67ec167d 146 if (readpassphrase(prompt, buf, sizeof buf, rppflags) == NULL) {
147 if (flags & RP_ALLOW_EOF)
148 return NULL;
613021ac 149 return xstrdup("");
67ec167d 150 }
1843a425 151
152 ret = xstrdup(buf);
153 memset(buf, 'x', sizeof buf);
154 return ret;
8efc0c15 155}
7a9c7a0b 156
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}
This page took 5.641663 seconds and 5 git commands to generate.