blob: 857f3d7411006cd473e958a886ab16e54dda4b9b [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Adds an identity to the authentication server, or removes an identity.
Damien Millerad833b32000-08-23 10:46:23 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
Damien Millerad833b32000-08-23 10:46:23 +100013 * SSH2 implementation,
14 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110035 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37#include "includes.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110038RCSID("$OpenBSD: ssh-add.c,v 1.23 2000/11/12 19:50:38 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100039
Damien Millerad833b32000-08-23 10:46:23 +100040#include <openssl/evp.h>
Damien Millereba71ba2000-04-29 23:57:08 +100041#include <openssl/rsa.h>
42#include <openssl/dsa.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "rsa.h"
45#include "ssh.h"
46#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100047#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100048#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100049#include "authfile.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller3f905871999-11-15 17:10:57 +110051#ifdef HAVE___PROGNAME
52extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000053#else
54char *__progname;
55#endif
Damien Miller3f905871999-11-15 17:10:57 +110056
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057void
Damien Miller01ab4a21999-10-28 15:23:30 +100058delete_file(AuthenticationConnection *ac, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059{
Damien Millereba71ba2000-04-29 23:57:08 +100060 Key *public;
Damien Miller95def091999-11-25 00:26:21 +110061 char *comment;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller0bc1bd82000-11-13 22:57:25 +110063 public = key_new(KEY_RSA1);
Damien Millereba71ba2000-04-29 23:57:08 +100064 if (!load_public_key(filename, public, &comment)) {
Damien Millere4340be2000-09-16 13:29:08 +110065 key_free(public);
Damien Miller0bc1bd82000-11-13 22:57:25 +110066 public = key_new(KEY_UNSPEC);
Damien Millere4340be2000-09-16 13:29:08 +110067 if (!try_load_public_key(filename, public, &comment)) {
68 printf("Bad key file %s\n", filename);
69 return;
70 }
Damien Miller95def091999-11-25 00:26:21 +110071 }
Damien Millerad833b32000-08-23 10:46:23 +100072 if (ssh_remove_identity(ac, public))
Damien Miller95def091999-11-25 00:26:21 +110073 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
74 else
75 fprintf(stderr, "Could not remove identity: %s\n", filename);
Damien Millereba71ba2000-04-29 23:57:08 +100076 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +110077 xfree(comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078}
79
Damien Millerad833b32000-08-23 10:46:23 +100080/* Send a request to remove all identities. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081void
Damien Miller01ab4a21999-10-28 15:23:30 +100082delete_all(AuthenticationConnection *ac)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083{
Damien Millerad833b32000-08-23 10:46:23 +100084 int success = 1;
85
86 if (!ssh_remove_all_identities(ac, 1))
87 success = 0;
88 /* ignore error-code for ssh2 */
89 ssh_remove_all_identities(ac, 2);
90
91 if (success)
Damien Miller95def091999-11-25 00:26:21 +110092 fprintf(stderr, "All identities removed.\n");
93 else
94 fprintf(stderr, "Failed to remove all identitities.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095}
96
Damien Miller5428f641999-11-25 11:54:57 +110097char *
98ssh_askpass(char *askpass, char *msg)
99{
100 pid_t pid;
101 size_t len;
102 char *nl, *pass;
103 int p[2], status;
104 char buf[1024];
105
106 if (askpass == NULL)
107 fatal("internal error: askpass undefined");
108 if (pipe(p) < 0)
109 fatal("ssh_askpass: pipe: %s", strerror(errno));
110 if ((pid = fork()) < 0)
111 fatal("ssh_askpass: fork: %s", strerror(errno));
112 if (pid == 0) {
113 close(p[0]);
114 if (dup2(p[1], STDOUT_FILENO) < 0)
115 fatal("ssh_askpass: dup2: %s", strerror(errno));
116 execlp(askpass, askpass, msg, (char *) 0);
117 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
118 }
119 close(p[1]);
Damien Miller2594de82000-10-17 23:22:28 +1100120 buf[0] = '\0';
121 atomicio(read, p[0], buf, sizeof buf);
122 len = strlen(buf);
Damien Miller5428f641999-11-25 11:54:57 +1100123 close(p[0]);
124 while (waitpid(pid, &status, 0) < 0)
125 if (errno != EINTR)
126 break;
127 if (len <= 1)
128 return xstrdup("");
129 nl = strchr(buf, '\n');
130 if (nl)
131 *nl = '\0';
132 pass = xstrdup(buf);
133 memset(buf, 0, sizeof(buf));
134 return pass;
135}
136
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137void
Damien Miller01ab4a21999-10-28 15:23:30 +1000138add_file(AuthenticationConnection *ac, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139{
Damien Millerad833b32000-08-23 10:46:23 +1000140 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000141 Key *public;
142 Key *private;
Damien Miller5428f641999-11-25 11:54:57 +1100143 char *saved_comment, *comment, *askpass = NULL;
144 char buf[1024], msg[1024];
Damien Miller95def091999-11-25 00:26:21 +1100145 int success;
Damien Miller5428f641999-11-25 11:54:57 +1100146 int interactive = isatty(STDIN_FILENO);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100147 int type = KEY_RSA1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Millerad833b32000-08-23 10:46:23 +1000149 if (stat(filename, &st) < 0) {
150 perror(filename);
151 exit(1);
152 }
Damien Miller994cf142000-07-21 10:19:44 +1000153 /*
154 * try to load the public key. right now this only works for RSA,
155 * since DSA keys are fully encrypted
156 */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 public = key_new(KEY_RSA1);
Damien Millereba71ba2000-04-29 23:57:08 +1000158 if (!load_public_key(filename, public, &saved_comment)) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100159 /* ok, so we will assume this is 'some' key */
160 type = KEY_UNSPEC;
Damien Miller994cf142000-07-21 10:19:44 +1000161 saved_comment = xstrdup(filename);
Damien Miller95def091999-11-25 00:26:21 +1100162 }
Damien Millereba71ba2000-04-29 23:57:08 +1000163 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +1100164
Damien Milleraae6c611999-12-06 11:47:28 +1100165 if (!interactive && getenv("DISPLAY")) {
166 if (getenv(SSH_ASKPASS_ENV))
167 askpass = getenv(SSH_ASKPASS_ENV);
168 else
169 askpass = SSH_ASKPASS_DEFAULT;
170 }
Damien Miller5428f641999-11-25 11:54:57 +1100171
Damien Miller95def091999-11-25 00:26:21 +1100172 /* At first, try empty passphrase */
Damien Miller994cf142000-07-21 10:19:44 +1000173 private = key_new(type);
Damien Millereba71ba2000-04-29 23:57:08 +1000174 success = load_private_key(filename, "", private, &comment);
Damien Miller95def091999-11-25 00:26:21 +1100175 if (!success) {
Damien Miller5428f641999-11-25 11:54:57 +1100176 printf("Need passphrase for %.200s\n", filename);
177 if (!interactive && askpass == NULL) {
178 xfree(saved_comment);
179 return;
Damien Miller95def091999-11-25 00:26:21 +1100180 }
Damien Miller5428f641999-11-25 11:54:57 +1100181 snprintf(msg, sizeof msg, "Enter passphrase for %.200s", saved_comment);
182 for (;;) {
183 char *pass;
184 if (interactive) {
185 snprintf(buf, sizeof buf, "%s: ", msg);
186 pass = read_passphrase(buf, 1);
187 } else {
188 pass = ssh_askpass(askpass, msg);
189 }
Damien Miller95def091999-11-25 00:26:21 +1100190 if (strcmp(pass, "") == 0) {
191 xfree(pass);
192 xfree(saved_comment);
193 return;
194 }
Damien Millereba71ba2000-04-29 23:57:08 +1000195 success = load_private_key(filename, pass, private, &comment);
Damien Miller95def091999-11-25 00:26:21 +1100196 memset(pass, 0, strlen(pass));
197 xfree(pass);
198 if (success)
199 break;
Damien Miller5428f641999-11-25 11:54:57 +1100200 strlcpy(msg, "Bad passphrase, try again", sizeof msg);
Damien Miller95def091999-11-25 00:26:21 +1100201 }
202 }
Damien Millerad833b32000-08-23 10:46:23 +1000203 xfree(comment);
204 if (ssh_add_identity(ac, private, saved_comment))
205 fprintf(stderr, "Identity added: %s (%s)\n", filename, saved_comment);
Damien Miller95def091999-11-25 00:26:21 +1100206 else
207 fprintf(stderr, "Could not add identity: %s\n", filename);
Damien Millereba71ba2000-04-29 23:57:08 +1000208 key_free(private);
Damien Millerad833b32000-08-23 10:46:23 +1000209 xfree(saved_comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210}
211
212void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100213list_identities(AuthenticationConnection *ac, int fp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214{
Damien Millerad833b32000-08-23 10:46:23 +1000215 Key *key;
Damien Miller95def091999-11-25 00:26:21 +1100216 char *comment;
Damien Millerad833b32000-08-23 10:46:23 +1000217 int had_identities = 0;
218 int version;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219
Damien Millerad833b32000-08-23 10:46:23 +1000220 for (version = 1; version <= 2; version++) {
221 for (key = ssh_get_first_identity(ac, &comment, version);
222 key != NULL;
223 key = ssh_get_next_identity(ac, &comment, version)) {
224 had_identities = 1;
225 if (fp) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100226 printf("%d %s %s (%s)\n",
227 key_size(key), key_fingerprint(key),
228 comment, key_type(key));
Damien Miller95def091999-11-25 00:26:21 +1100229 } else {
Damien Millerad833b32000-08-23 10:46:23 +1000230 if (!key_write(key, stdout))
231 fprintf(stderr, "key_write failed");
232 fprintf(stdout, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100233 }
Damien Millerad833b32000-08-23 10:46:23 +1000234 key_free(key);
235 xfree(comment);
Damien Miller95def091999-11-25 00:26:21 +1100236 }
Damien Miller10f6f6b1999-11-17 17:29:08 +1100237 }
Damien Miller95def091999-11-25 00:26:21 +1100238 if (!had_identities)
239 printf("The agent has no identities.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240}
241
242int
Damien Miller01ab4a21999-10-28 15:23:30 +1000243main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244{
Damien Miller95def091999-11-25 00:26:21 +1100245 AuthenticationConnection *ac = NULL;
246 struct passwd *pw;
247 char buf[1024];
248 int no_files = 1;
249 int i;
250 int deleting = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000252 __progname = get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000253 init_rng();
254
Damien Millerad833b32000-08-23 10:46:23 +1000255 SSLeay_add_all_algorithms();
256
Damien Miller95def091999-11-25 00:26:21 +1100257 /* At first, get a connection to the authentication agent. */
258 ac = ssh_get_authentication_connection();
259 if (ac == NULL) {
260 fprintf(stderr, "Could not open a connection to your authentication agent.\n");
261 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262 }
Damien Miller95def091999-11-25 00:26:21 +1100263 for (i = 1; i < argc; i++) {
264 if ((strcmp(argv[i], "-l") == 0) ||
265 (strcmp(argv[i], "-L") == 0)) {
266 list_identities(ac, argv[i][1] == 'l' ? 1 : 0);
267 /* Don't default-add/delete if -l. */
268 no_files = 0;
269 continue;
270 }
271 if (strcmp(argv[i], "-d") == 0) {
272 deleting = 1;
273 continue;
274 }
275 if (strcmp(argv[i], "-D") == 0) {
276 delete_all(ac);
277 no_files = 0;
278 continue;
279 }
280 no_files = 0;
281 if (deleting)
282 delete_file(ac, argv[i]);
283 else
284 add_file(ac, argv[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285 }
Damien Miller95def091999-11-25 00:26:21 +1100286 if (no_files) {
287 pw = getpwuid(getuid());
288 if (!pw) {
Damien Millercaf6dd62000-08-29 11:33:50 +1100289 fprintf(stderr, "No user found with uid %u\n",
290 (u_int)getuid());
Damien Miller95def091999-11-25 00:26:21 +1100291 ssh_close_authentication_connection(ac);
292 exit(1);
293 }
294 snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, SSH_CLIENT_IDENTITY);
295 if (deleting)
296 delete_file(ac, buf);
297 else
298 add_file(ac, buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299 }
Damien Miller95def091999-11-25 00:26:21 +1100300 ssh_close_authentication_connection(ac);
301 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302}