]> andersk Git - openssh.git/blame - ssh-add.c
- markus@cvs.openbsd.org 2002/06/15 00:01:36
[openssh.git] / ssh-add.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Adds an identity to the authentication server, or removes an identity.
2e73a022 6 *
bcbf86ec 7 * 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 *
2e73a022 13 * SSH2 implementation,
a96070d4 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 15 *
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.
5260325f 35 */
8efc0c15 36
37#include "includes.h"
37500e74 38RCSID("$OpenBSD: ssh-add.c,v 1.58 2002/06/15 00:01:36 markus Exp $");
8efc0c15 39
2e73a022 40#include <openssl/evp.h>
a306f2dd 41
8efc0c15 42#include "ssh.h"
42f11eb2 43#include "rsa.h"
44#include "log.h"
8efc0c15 45#include "xmalloc.h"
a306f2dd 46#include "key.h"
4c8722d9 47#include "authfd.h"
a306f2dd 48#include "authfile.h"
42f11eb2 49#include "pathnames.h"
50#include "readpass.h"
c3baacd1 51#include "misc.h"
8efc0c15 52
f601d847 53#ifdef HAVE___PROGNAME
54extern char *__progname;
260d427b 55#else
56char *__progname;
57#endif
f601d847 58
33e766d2 59/* argv0 */
60extern char *__progname;
61
67656ffc 62/* Default files to add */
63static char *default_files[] = {
64 _PATH_SSH_CLIENT_ID_RSA,
65 _PATH_SSH_CLIENT_ID_DSA,
762715ce 66 _PATH_SSH_CLIENT_IDENTITY,
67656ffc 67 NULL
68};
69
264572cc 70/* Default lifetime (0 == forever) */
c3baacd1 71static int lifetime = 0;
67656ffc 72
a8666d84 73/* we keep a cache of one passphrases */
74static char *pass = NULL;
396c147e 75static void
a8666d84 76clear_pass(void)
77{
78 if (pass) {
79 memset(pass, 0, strlen(pass));
80 xfree(pass);
81 pass = NULL;
82 }
83}
84
e0543e42 85static int
5068f573 86delete_file(AuthenticationConnection *ac, const char *filename)
8efc0c15 87{
a306f2dd 88 Key *public;
d64050ef 89 char *comment = NULL;
e0543e42 90 int ret = -1;
5260325f 91
aeaa3d9e 92 public = key_load_public(filename, &comment);
93 if (public == NULL) {
94 printf("Bad key file %s\n", filename);
e0543e42 95 return -1;
5260325f 96 }
e0543e42 97 if (ssh_remove_identity(ac, public)) {
5260325f 98 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
e0543e42 99 ret = 0;
100 } else
5260325f 101 fprintf(stderr, "Could not remove identity: %s\n", filename);
e0543e42 102
a306f2dd 103 key_free(public);
5260325f 104 xfree(comment);
184eed6a 105
e0543e42 106 return ret;
8efc0c15 107}
108
2e73a022 109/* Send a request to remove all identities. */
e0543e42 110static int
5068f573 111delete_all(AuthenticationConnection *ac)
8efc0c15 112{
e0543e42 113 int ret = -1;
2e73a022 114
e0543e42 115 if (ssh_remove_all_identities(ac, 1))
116 ret = 0;
2e73a022 117 /* ignore error-code for ssh2 */
118 ssh_remove_all_identities(ac, 2);
119
e0543e42 120 if (ret == 0)
5260325f 121 fprintf(stderr, "All identities removed.\n");
122 else
b5c334cc 123 fprintf(stderr, "Failed to remove all identities.\n");
e0543e42 124
125 return ret;
8efc0c15 126}
127
e0543e42 128static int
5068f573 129add_file(AuthenticationConnection *ac, const char *filename)
8efc0c15 130{
2e73a022 131 struct stat st;
a306f2dd 132 Key *private;
561e5254 133 char *comment = NULL;
134 char msg[1024];
e0543e42 135 int ret = -1;
5260325f 136
2e73a022 137 if (stat(filename, &st) < 0) {
138 perror(filename);
e0543e42 139 return -1;
2e73a022 140 }
5260325f 141 /* At first, try empty passphrase */
aeaa3d9e 142 private = key_load_private(filename, "", &comment);
143 if (comment == NULL)
144 comment = xstrdup(filename);
a8666d84 145 /* try last */
146 if (private == NULL && pass != NULL)
147 private = key_load_private(filename, pass, NULL);
aeaa3d9e 148 if (private == NULL) {
a8666d84 149 /* clear passphrase since it did not work */
150 clear_pass();
065604bb 151 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
561e5254 152 comment);
aa3378df 153 for (;;) {
1843a425 154 pass = read_passphrase(msg, RP_ALLOW_STDIN);
5260325f 155 if (strcmp(pass, "") == 0) {
eae942e2 156 clear_pass();
aeaa3d9e 157 xfree(comment);
e0543e42 158 return -1;
5260325f 159 }
aeaa3d9e 160 private = key_load_private(filename, pass, &comment);
aeaa3d9e 161 if (private != NULL)
5260325f 162 break;
a8666d84 163 clear_pass();
065604bb 164 strlcpy(msg, "Bad passphrase, try again: ", sizeof msg);
5260325f 165 }
166 }
e0543e42 167 if (ssh_add_identity(ac, private, comment)) {
aeaa3d9e 168 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
e0543e42 169 ret = 0;
170 } else
5260325f 171 fprintf(stderr, "Could not add identity: %s\n", filename);
e0543e42 172
264572cc 173 if (ret == 0 && lifetime != 0) {
37500e74 174 if (ssh_contrain_identity(ac, private, lifetime)) {
264572cc 175 fprintf(stderr,
176 "Lifetime set to %d seconds for: %s (%s)\n",
177 lifetime, filename, comment);
178 } else {
179 fprintf(stderr,
180 "Could not set lifetime for identity: %s\n",
181 filename);
182 }
183 }
184
aeaa3d9e 185 xfree(comment);
a306f2dd 186 key_free(private);
184eed6a 187
e0543e42 188 return ret;
8efc0c15 189}
190
e0543e42 191static int
9ff6f66f 192update_card(AuthenticationConnection *ac, int add, const char *id)
983def13 193{
76139bd8 194 char *pin;
195
196 pin = read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN);
197 if (pin == NULL)
198 return -1;
199
200 if (ssh_update_card(ac, add, id, pin)) {
9ff6f66f 201 fprintf(stderr, "Card %s: %s\n",
184eed6a 202 add ? "added" : "removed", id);
e0543e42 203 return 0;
204 } else {
9ff6f66f 205 fprintf(stderr, "Could not %s card: %s\n",
184eed6a 206 add ? "add" : "remove", id);
e0543e42 207 return -1;
208 }
983def13 209}
210
a2863956 211static int
22138a36 212list_identities(AuthenticationConnection *ac, int do_fp)
8efc0c15 213{
2e73a022 214 Key *key;
22138a36 215 char *comment, *fp;
2e73a022 216 int had_identities = 0;
217 int version;
218
219 for (version = 1; version <= 2; version++) {
220 for (key = ssh_get_first_identity(ac, &comment, version);
184eed6a 221 key != NULL;
222 key = ssh_get_next_identity(ac, &comment, version)) {
2e73a022 223 had_identities = 1;
22138a36 224 if (do_fp) {
225 fp = key_fingerprint(key, SSH_FP_MD5,
226 SSH_FP_HEX);
fa08c86b 227 printf("%d %s %s (%s)\n",
22138a36 228 key_size(key), fp, comment, key_type(key));
229 xfree(fp);
5260325f 230 } else {
2e73a022 231 if (!key_write(key, stdout))
232 fprintf(stderr, "key_write failed");
233 fprintf(stdout, " %s\n", comment);
5260325f 234 }
2e73a022 235 key_free(key);
236 xfree(comment);
5260325f 237 }
f095fcc7 238 }
a2863956 239 if (!had_identities) {
5260325f 240 printf("The agent has no identities.\n");
a2863956 241 return -1;
242 }
243 return 0;
8efc0c15 244}
245
3db7f994 246static int
247lock_agent(AuthenticationConnection *ac, int lock)
248{
249 char prompt[100], *p1, *p2;
250 int passok = 1, ret = -1;
251
252 strlcpy(prompt, "Enter lock password: ", sizeof(prompt));
253 p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
254 if (lock) {
255 strlcpy(prompt, "Again: ", sizeof prompt);
256 p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
257 if (strcmp(p1, p2) != 0) {
258 fprintf(stderr, "Passwords do not match.\n");
259 passok = 0;
260 }
261 memset(p2, 0, strlen(p2));
262 xfree(p2);
263 }
264 if (passok && ssh_lock_agent(ac, lock, p1)) {
265 fprintf(stderr, "Agent %slocked.\n", lock ? "" : "un");
266 ret = 0;
267 } else
268 fprintf(stderr, "Failed to %slock agent.\n", lock ? "" : "un");
269 memset(p1, 0, strlen(p1));
270 xfree(p1);
271 return -1;
272}
273
67656ffc 274static int
275do_file(AuthenticationConnection *ac, int deleting, char *file)
276{
277 if (deleting) {
278 if (delete_file(ac, file) == -1)
279 return -1;
280 } else {
281 if (add_file(ac, file) == -1)
282 return -1;
283 }
284 return 0;
285}
286
983def13 287static void
288usage(void)
289{
33e766d2 290 fprintf(stderr, "Usage: %s [options]\n", __progname);
291 fprintf(stderr, "Options:\n");
292 fprintf(stderr, " -l List fingerprints of all identities.\n");
293 fprintf(stderr, " -L List public key parameters of all identities.\n");
294 fprintf(stderr, " -d Delete identity.\n");
295 fprintf(stderr, " -D Delete all identities.\n");
73861c4e 296 fprintf(stderr, " -x Lock agent.\n");
297 fprintf(stderr, " -x Unlock agent.\n");
264572cc 298 fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
33e766d2 299#ifdef SMARTCARD
300 fprintf(stderr, " -s reader Add key in smartcard reader.\n");
301 fprintf(stderr, " -e reader Remove key in smartcard reader.\n");
302#endif
983def13 303}
304
8efc0c15 305int
5068f573 306main(int argc, char **argv)
8efc0c15 307{
34e02b83 308 extern char *optarg;
309 extern int optind;
5260325f 310 AuthenticationConnection *ac = NULL;
9ff6f66f 311 char *sc_reader_id = NULL;
e0543e42 312 int i, ch, deleting = 0, ret = 0;
5260325f 313
260d427b 314 __progname = get_progname(argv[0]);
264dce47 315 init_rng();
044b0662 316 seed_rng();
264dce47 317
2b87da3b 318 SSLeay_add_all_algorithms();
2e73a022 319
5260325f 320 /* At first, get a connection to the authentication agent. */
321 ac = ssh_get_authentication_connection();
322 if (ac == NULL) {
323 fprintf(stderr, "Could not open a connection to your authentication agent.\n");
a2863956 324 exit(2);
8efc0c15 325 }
264572cc 326 while ((ch = getopt(argc, argv, "lLdDxXe:s:t:")) != -1) {
34e02b83 327 switch (ch) {
328 case 'l':
329 case 'L':
a2863956 330 if (list_identities(ac, ch == 'l' ? 1 : 0) == -1)
331 ret = 1;
34e02b83 332 goto done;
333 break;
3db7f994 334 case 'x':
335 case 'X':
336 if (lock_agent(ac, ch == 'x' ? 1 : 0) == -1)
337 ret = 1;
338 goto done;
339 break;
34e02b83 340 case 'd':
5260325f 341 deleting = 1;
34e02b83 342 break;
343 case 'D':
e0543e42 344 if (delete_all(ac) == -1)
345 ret = 1;
34e02b83 346 goto done;
347 break;
348 case 's':
9ff6f66f 349 sc_reader_id = optarg;
34e02b83 350 break;
351 case 'e':
184eed6a 352 deleting = 1;
9ff6f66f 353 sc_reader_id = optarg;
34e02b83 354 break;
264572cc 355 case 't':
c3baacd1 356 if ((lifetime = convtime(optarg)) == -1) {
357 fprintf(stderr, "Invalid lifetime\n");
358 ret = 1;
359 goto done;
360 }
264572cc 361 break;
34e02b83 362 default:
363 usage();
e0543e42 364 ret = 1;
365 goto done;
983def13 366 }
8efc0c15 367 }
34e02b83 368 argc -= optind;
369 argv += optind;
9ff6f66f 370 if (sc_reader_id != NULL) {
e0543e42 371 if (update_card(ac, !deleting, sc_reader_id) == -1)
372 ret = 1;
34e02b83 373 goto done;
983def13 374 }
34e02b83 375 if (argc == 0) {
67656ffc 376 char buf[MAXPATHLEN];
377 struct passwd *pw;
256debd0 378 struct stat st;
379 int count = 0;
67656ffc 380
381 if ((pw = getpwuid(getuid())) == NULL) {
14a9a859 382 fprintf(stderr, "No user found with uid %u\n",
383 (u_int)getuid());
e0543e42 384 ret = 1;
385 goto done;
5260325f 386 }
67656ffc 387
388 for(i = 0; default_files[i]; i++) {
762715ce 389 snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir,
67656ffc 390 default_files[i]);
256debd0 391 if (stat(buf, &st) < 0)
392 continue;
67656ffc 393 if (do_file(ac, deleting, buf) == -1)
e0543e42 394 ret = 1;
256debd0 395 else
396 count++;
e0543e42 397 }
256debd0 398 if (count == 0)
399 ret = 1;
34e02b83 400 } else {
67656ffc 401 for(i = 0; i < argc; i++) {
0e0bba68 402 if (do_file(ac, deleting, argv[i]) == -1)
67656ffc 403 ret = 1;
34e02b83 404 }
8efc0c15 405 }
a8666d84 406 clear_pass();
34e02b83 407
408done:
5260325f 409 ssh_close_authentication_connection(ac);
e0543e42 410 return ret;
8efc0c15 411}
This page took 0.230979 seconds and 5 git commands to generate.