blob: 84a8c20f9648da4debd6bc75318545c5fee47237 [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,
Ben Lindstrom92a2e382001-03-05 06:59:27 +000014 * 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"
Ben Lindstrom949974b2001-06-25 05:20:31 +000038RCSID("$OpenBSD: ssh-add.c,v 1.40 2001/06/24 05:35:33 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100039
Damien Millerad833b32000-08-23 10:46:23 +100040#include <openssl/evp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "rsa.h"
44#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100047#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "pathnames.h"
50#include "readpass.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051
Damien Miller3f905871999-11-15 17:10:57 +110052#ifdef HAVE___PROGNAME
53extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000054#else
55char *__progname;
56#endif
Damien Miller3f905871999-11-15 17:10:57 +110057
Ben Lindstromee617942001-04-10 02:45:32 +000058/* we keep a cache of one passphrases */
59static char *pass = NULL;
Ben Lindstrombba81212001-06-25 05:01:22 +000060static void
Ben Lindstromee617942001-04-10 02:45:32 +000061clear_pass(void)
62{
63 if (pass) {
64 memset(pass, 0, strlen(pass));
65 xfree(pass);
66 pass = NULL;
67 }
68}
69
Ben Lindstrombba81212001-06-25 05:01:22 +000070static void
Damien Miller01ab4a21999-10-28 15:23:30 +100071delete_file(AuthenticationConnection *ac, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072{
Damien Millereba71ba2000-04-29 23:57:08 +100073 Key *public;
Ben Lindstromd5730a82001-04-08 18:04:36 +000074 char *comment = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Ben Lindstromd0fca422001-03-26 13:44:06 +000076 public = key_load_public(filename, &comment);
77 if (public == NULL) {
78 printf("Bad key file %s\n", filename);
79 return;
Damien Miller95def091999-11-25 00:26:21 +110080 }
Damien Millerad833b32000-08-23 10:46:23 +100081 if (ssh_remove_identity(ac, public))
Damien Miller95def091999-11-25 00:26:21 +110082 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
83 else
84 fprintf(stderr, "Could not remove identity: %s\n", filename);
Damien Millereba71ba2000-04-29 23:57:08 +100085 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +110086 xfree(comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087}
88
Damien Millerad833b32000-08-23 10:46:23 +100089/* Send a request to remove all identities. */
Ben Lindstrombba81212001-06-25 05:01:22 +000090static void
Damien Miller01ab4a21999-10-28 15:23:30 +100091delete_all(AuthenticationConnection *ac)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092{
Damien Millerad833b32000-08-23 10:46:23 +100093 int success = 1;
94
95 if (!ssh_remove_all_identities(ac, 1))
96 success = 0;
97 /* ignore error-code for ssh2 */
98 ssh_remove_all_identities(ac, 2);
99
100 if (success)
Damien Miller95def091999-11-25 00:26:21 +1100101 fprintf(stderr, "All identities removed.\n");
102 else
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000103 fprintf(stderr, "Failed to remove all identities.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104}
105
Ben Lindstrombba81212001-06-25 05:01:22 +0000106static void
Damien Miller01ab4a21999-10-28 15:23:30 +1000107add_file(AuthenticationConnection *ac, const char *filename)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108{
Damien Millerad833b32000-08-23 10:46:23 +1000109 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000110 Key *private;
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000111 char *comment = NULL;
112 char msg[1024];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Millerad833b32000-08-23 10:46:23 +1000114 if (stat(filename, &st) < 0) {
115 perror(filename);
116 exit(1);
117 }
Damien Miller95def091999-11-25 00:26:21 +1100118 /* At first, try empty passphrase */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000119 private = key_load_private(filename, "", &comment);
120 if (comment == NULL)
121 comment = xstrdup(filename);
Ben Lindstromee617942001-04-10 02:45:32 +0000122 /* try last */
123 if (private == NULL && pass != NULL)
124 private = key_load_private(filename, pass, NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000125 if (private == NULL) {
Ben Lindstromee617942001-04-10 02:45:32 +0000126 /* clear passphrase since it did not work */
127 clear_pass();
Ben Lindstrom8a137132001-05-02 22:40:12 +0000128 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
Ben Lindstrom5eb97b62001-04-19 20:33:07 +0000129 comment);
Damien Miller5428f641999-11-25 11:54:57 +1100130 for (;;) {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000131 pass = read_passphrase(msg, RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100132 if (strcmp(pass, "") == 0) {
Ben Lindstrom7457f2a2001-04-14 23:10:09 +0000133 clear_pass();
Ben Lindstromd0fca422001-03-26 13:44:06 +0000134 xfree(comment);
Damien Miller95def091999-11-25 00:26:21 +1100135 return;
136 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000137 private = key_load_private(filename, pass, &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000138 if (private != NULL)
Damien Miller95def091999-11-25 00:26:21 +1100139 break;
Ben Lindstromee617942001-04-10 02:45:32 +0000140 clear_pass();
Ben Lindstrom8a137132001-05-02 22:40:12 +0000141 strlcpy(msg, "Bad passphrase, try again: ", sizeof msg);
Damien Miller95def091999-11-25 00:26:21 +1100142 }
143 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000144 if (ssh_add_identity(ac, private, comment))
145 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
Damien Miller95def091999-11-25 00:26:21 +1100146 else
147 fprintf(stderr, "Could not add identity: %s\n", filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000148 xfree(comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000149 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150}
151
Ben Lindstrombba81212001-06-25 05:01:22 +0000152static void
Ben Lindstromcfccef92001-03-13 04:57:58 +0000153list_identities(AuthenticationConnection *ac, int do_fp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154{
Damien Millerad833b32000-08-23 10:46:23 +1000155 Key *key;
Ben Lindstromcfccef92001-03-13 04:57:58 +0000156 char *comment, *fp;
Damien Millerad833b32000-08-23 10:46:23 +1000157 int had_identities = 0;
158 int version;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Millerad833b32000-08-23 10:46:23 +1000160 for (version = 1; version <= 2; version++) {
161 for (key = ssh_get_first_identity(ac, &comment, version);
162 key != NULL;
163 key = ssh_get_next_identity(ac, &comment, version)) {
164 had_identities = 1;
Ben Lindstromcfccef92001-03-13 04:57:58 +0000165 if (do_fp) {
166 fp = key_fingerprint(key, SSH_FP_MD5,
167 SSH_FP_HEX);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100168 printf("%d %s %s (%s)\n",
Ben Lindstromcfccef92001-03-13 04:57:58 +0000169 key_size(key), fp, comment, key_type(key));
170 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +1100171 } else {
Damien Millerad833b32000-08-23 10:46:23 +1000172 if (!key_write(key, stdout))
173 fprintf(stderr, "key_write failed");
174 fprintf(stdout, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100175 }
Damien Millerad833b32000-08-23 10:46:23 +1000176 key_free(key);
177 xfree(comment);
Damien Miller95def091999-11-25 00:26:21 +1100178 }
Damien Miller10f6f6b1999-11-17 17:29:08 +1100179 }
Damien Miller95def091999-11-25 00:26:21 +1100180 if (!had_identities)
181 printf("The agent has no identities.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182}
183
184int
Damien Miller01ab4a21999-10-28 15:23:30 +1000185main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186{
Damien Miller95def091999-11-25 00:26:21 +1100187 AuthenticationConnection *ac = NULL;
188 struct passwd *pw;
189 char buf[1024];
190 int no_files = 1;
191 int i;
192 int deleting = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000194 __progname = get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000195 init_rng();
Ben Lindstrom93d1fe82001-05-06 02:57:20 +0000196 seed_rng();
Damien Millerf9b625c2000-07-09 22:42:32 +1000197
Kevin Stevesef4eea92001-02-05 12:42:17 +0000198 SSLeay_add_all_algorithms();
Damien Millerad833b32000-08-23 10:46:23 +1000199
Damien Miller95def091999-11-25 00:26:21 +1100200 /* At first, get a connection to the authentication agent. */
201 ac = ssh_get_authentication_connection();
202 if (ac == NULL) {
203 fprintf(stderr, "Could not open a connection to your authentication agent.\n");
204 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205 }
Damien Miller95def091999-11-25 00:26:21 +1100206 for (i = 1; i < argc; i++) {
207 if ((strcmp(argv[i], "-l") == 0) ||
208 (strcmp(argv[i], "-L") == 0)) {
209 list_identities(ac, argv[i][1] == 'l' ? 1 : 0);
210 /* Don't default-add/delete if -l. */
211 no_files = 0;
212 continue;
213 }
214 if (strcmp(argv[i], "-d") == 0) {
215 deleting = 1;
216 continue;
217 }
218 if (strcmp(argv[i], "-D") == 0) {
219 delete_all(ac);
220 no_files = 0;
221 continue;
222 }
223 no_files = 0;
224 if (deleting)
225 delete_file(ac, argv[i]);
226 else
227 add_file(ac, argv[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228 }
Damien Miller95def091999-11-25 00:26:21 +1100229 if (no_files) {
230 pw = getpwuid(getuid());
231 if (!pw) {
Damien Millercaf6dd62000-08-29 11:33:50 +1100232 fprintf(stderr, "No user found with uid %u\n",
233 (u_int)getuid());
Damien Miller95def091999-11-25 00:26:21 +1100234 ssh_close_authentication_connection(ac);
235 exit(1);
236 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000237 snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, _PATH_SSH_CLIENT_IDENTITY);
Damien Miller95def091999-11-25 00:26:21 +1100238 if (deleting)
239 delete_file(ac, buf);
240 else
241 add_file(ac, buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242 }
Ben Lindstromee617942001-04-10 02:45:32 +0000243 clear_pass();
Damien Miller95def091999-11-25 00:26:21 +1100244 ssh_close_authentication_connection(ac);
245 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}