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