]> andersk Git - openssh.git/blame - ssh-add.c
- stevesk@cvs.openbsd.org 2006/08/01 23:22:48
[openssh.git] / ssh-add.c
CommitLineData
cf851879 1/* $OpenBSD: ssh-add.c,v 1.88 2006/08/01 23:22:47 stevesk Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * Adds an identity to the authentication server, or removes an identity.
2e73a022 7 *
bcbf86ec 8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
2e73a022 14 * SSH2 implementation,
a96070d4 15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
4095f623 39
40#include <sys/types.h>
41#include <sys/stat.h>
536c14e8 42#include <sys/param.h>
8efc0c15 43
2e73a022 44#include <openssl/evp.h>
a306f2dd 45
d3221cca 46#include <fcntl.h>
b1842393 47#include <pwd.h>
cf851879 48#include <stdio.h>
ffa517a8 49#include <stdlib.h>
00146caa 50#include <string.h>
5188ba17 51#include <unistd.h>
b1842393 52
8efc0c15 53#include "ssh.h"
42f11eb2 54#include "rsa.h"
55#include "log.h"
8efc0c15 56#include "xmalloc.h"
a306f2dd 57#include "key.h"
4c8722d9 58#include "authfd.h"
a306f2dd 59#include "authfile.h"
42f11eb2 60#include "pathnames.h"
c3baacd1 61#include "misc.h"
8efc0c15 62
33e766d2 63/* argv0 */
64extern char *__progname;
65
67656ffc 66/* Default files to add */
67static char *default_files[] = {
68 _PATH_SSH_CLIENT_ID_RSA,
69 _PATH_SSH_CLIENT_ID_DSA,
762715ce 70 _PATH_SSH_CLIENT_IDENTITY,
67656ffc 71 NULL
72};
73
264572cc 74/* Default lifetime (0 == forever) */
c3baacd1 75static int lifetime = 0;
67656ffc 76
c4087616 77/* User has to confirm key use */
78static int confirm = 0;
79
a8666d84 80/* we keep a cache of one passphrases */
81static char *pass = NULL;
396c147e 82static void
a8666d84 83clear_pass(void)
84{
85 if (pass) {
86 memset(pass, 0, strlen(pass));
87 xfree(pass);
88 pass = NULL;
89 }
90}
91
e0543e42 92static int
5068f573 93delete_file(AuthenticationConnection *ac, const char *filename)
8efc0c15 94{
a306f2dd 95 Key *public;
d64050ef 96 char *comment = NULL;
e0543e42 97 int ret = -1;
5260325f 98
aeaa3d9e 99 public = key_load_public(filename, &comment);
100 if (public == NULL) {
101 printf("Bad key file %s\n", filename);
e0543e42 102 return -1;
5260325f 103 }
e0543e42 104 if (ssh_remove_identity(ac, public)) {
5260325f 105 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
e0543e42 106 ret = 0;
107 } else
5260325f 108 fprintf(stderr, "Could not remove identity: %s\n", filename);
e0543e42 109
a306f2dd 110 key_free(public);
5260325f 111 xfree(comment);
184eed6a 112
e0543e42 113 return ret;
8efc0c15 114}
115
2e73a022 116/* Send a request to remove all identities. */
e0543e42 117static int
5068f573 118delete_all(AuthenticationConnection *ac)
8efc0c15 119{
e0543e42 120 int ret = -1;
2e73a022 121
e0543e42 122 if (ssh_remove_all_identities(ac, 1))
123 ret = 0;
2e73a022 124 /* ignore error-code for ssh2 */
125 ssh_remove_all_identities(ac, 2);
126
e0543e42 127 if (ret == 0)
5260325f 128 fprintf(stderr, "All identities removed.\n");
129 else
b5c334cc 130 fprintf(stderr, "Failed to remove all identities.\n");
e0543e42 131
132 return ret;
8efc0c15 133}
134
e0543e42 135static int
5068f573 136add_file(AuthenticationConnection *ac, const char *filename)
8efc0c15 137{
a306f2dd 138 Key *private;
561e5254 139 char *comment = NULL;
140 char msg[1024];
45660a22 141 int fd, perms_ok, ret = -1;
5260325f 142
657939aa 143 if ((fd = open(filename, O_RDONLY)) < 0) {
2e73a022 144 perror(filename);
e0543e42 145 return -1;
2e73a022 146 }
45660a22 147
148 /*
149 * Since we'll try to load a keyfile multiple times, permission errors
150 * will occur multiple times, so check perms first and bail if wrong.
151 */
152 perms_ok = key_perm_ok(fd, filename);
153 close(fd);
154 if (!perms_ok)
155 return -1;
156
5260325f 157 /* At first, try empty passphrase */
aeaa3d9e 158 private = key_load_private(filename, "", &comment);
159 if (comment == NULL)
160 comment = xstrdup(filename);
a8666d84 161 /* try last */
162 if (private == NULL && pass != NULL)
163 private = key_load_private(filename, pass, NULL);
aeaa3d9e 164 if (private == NULL) {
a8666d84 165 /* clear passphrase since it did not work */
166 clear_pass();
065604bb 167 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
4e2e5cfd 168 comment);
aa3378df 169 for (;;) {
1843a425 170 pass = read_passphrase(msg, RP_ALLOW_STDIN);
5260325f 171 if (strcmp(pass, "") == 0) {
eae942e2 172 clear_pass();
aeaa3d9e 173 xfree(comment);
e0543e42 174 return -1;
5260325f 175 }
aeaa3d9e 176 private = key_load_private(filename, pass, &comment);
aeaa3d9e 177 if (private != NULL)
5260325f 178 break;
a8666d84 179 clear_pass();
360a4aae 180 snprintf(msg, sizeof msg,
181 "Bad passphrase, try again for %.200s: ", comment);
5260325f 182 }
183 }
ee900f87 184
aff51935 185 if (ssh_add_identity_constrained(ac, private, comment, lifetime,
186 confirm)) {
aeaa3d9e 187 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
e0543e42 188 ret = 0;
ee900f87 189 if (lifetime != 0)
b77a87e5 190 fprintf(stderr,
ee900f87 191 "Lifetime set to %d seconds\n", lifetime);
aff51935 192 if (confirm != 0)
c4087616 193 fprintf(stderr,
194 "The user has to confirm each use of the key\n");
ee900f87 195 } else if (ssh_add_identity(ac, private, comment)) {
196 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
197 ret = 0;
198 } else {
5260325f 199 fprintf(stderr, "Could not add identity: %s\n", filename);
264572cc 200 }
201
aeaa3d9e 202 xfree(comment);
a306f2dd 203 key_free(private);
184eed6a 204
e0543e42 205 return ret;
8efc0c15 206}
207
e0543e42 208static int
9ff6f66f 209update_card(AuthenticationConnection *ac, int add, const char *id)
983def13 210{
76139bd8 211 char *pin;
3e2f2431 212 int ret = -1;
76139bd8 213
214 pin = read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN);
215 if (pin == NULL)
216 return -1;
217
ca719034 218 if (ssh_update_card(ac, add, id, pin, lifetime, confirm)) {
9ff6f66f 219 fprintf(stderr, "Card %s: %s\n",
184eed6a 220 add ? "added" : "removed", id);
3e2f2431 221 ret = 0;
e0543e42 222 } else {
9ff6f66f 223 fprintf(stderr, "Could not %s card: %s\n",
184eed6a 224 add ? "add" : "remove", id);
3e2f2431 225 ret = -1;
e0543e42 226 }
3e2f2431 227 xfree(pin);
228 return ret;
983def13 229}
230
a2863956 231static int
22138a36 232list_identities(AuthenticationConnection *ac, int do_fp)
8efc0c15 233{
2e73a022 234 Key *key;
22138a36 235 char *comment, *fp;
2e73a022 236 int had_identities = 0;
237 int version;
238
239 for (version = 1; version <= 2; version++) {
240 for (key = ssh_get_first_identity(ac, &comment, version);
184eed6a 241 key != NULL;
242 key = ssh_get_next_identity(ac, &comment, version)) {
2e73a022 243 had_identities = 1;
22138a36 244 if (do_fp) {
245 fp = key_fingerprint(key, SSH_FP_MD5,
246 SSH_FP_HEX);
fa08c86b 247 printf("%d %s %s (%s)\n",
22138a36 248 key_size(key), fp, comment, key_type(key));
249 xfree(fp);
5260325f 250 } else {
2e73a022 251 if (!key_write(key, stdout))
252 fprintf(stderr, "key_write failed");
253 fprintf(stdout, " %s\n", comment);
5260325f 254 }
2e73a022 255 key_free(key);
256 xfree(comment);
5260325f 257 }
f095fcc7 258 }
a2863956 259 if (!had_identities) {
5260325f 260 printf("The agent has no identities.\n");
a2863956 261 return -1;
262 }
263 return 0;
8efc0c15 264}
265
3db7f994 266static int
267lock_agent(AuthenticationConnection *ac, int lock)
268{
269 char prompt[100], *p1, *p2;
270 int passok = 1, ret = -1;
7203d6bb 271
3db7f994 272 strlcpy(prompt, "Enter lock password: ", sizeof(prompt));
273 p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
274 if (lock) {
275 strlcpy(prompt, "Again: ", sizeof prompt);
276 p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
277 if (strcmp(p1, p2) != 0) {
278 fprintf(stderr, "Passwords do not match.\n");
279 passok = 0;
280 }
281 memset(p2, 0, strlen(p2));
282 xfree(p2);
283 }
284 if (passok && ssh_lock_agent(ac, lock, p1)) {
285 fprintf(stderr, "Agent %slocked.\n", lock ? "" : "un");
286 ret = 0;
287 } else
288 fprintf(stderr, "Failed to %slock agent.\n", lock ? "" : "un");
289 memset(p1, 0, strlen(p1));
290 xfree(p1);
1431a900 291 return (ret);
3db7f994 292}
293
67656ffc 294static int
295do_file(AuthenticationConnection *ac, int deleting, char *file)
296{
297 if (deleting) {
298 if (delete_file(ac, file) == -1)
299 return -1;
300 } else {
301 if (add_file(ac, file) == -1)
302 return -1;
303 }
304 return 0;
305}
306
983def13 307static void
308usage(void)
309{
f9579ee9 310 fprintf(stderr, "Usage: %s [options] [file ...]\n", __progname);
33e766d2 311 fprintf(stderr, "Options:\n");
312 fprintf(stderr, " -l List fingerprints of all identities.\n");
313 fprintf(stderr, " -L List public key parameters of all identities.\n");
314 fprintf(stderr, " -d Delete identity.\n");
315 fprintf(stderr, " -D Delete all identities.\n");
73861c4e 316 fprintf(stderr, " -x Lock agent.\n");
c7724abb 317 fprintf(stderr, " -X Unlock agent.\n");
264572cc 318 fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
c4087616 319 fprintf(stderr, " -c Require confirmation to sign using identities\n");
33e766d2 320#ifdef SMARTCARD
321 fprintf(stderr, " -s reader Add key in smartcard reader.\n");
322 fprintf(stderr, " -e reader Remove key in smartcard reader.\n");
323#endif
983def13 324}
325
8efc0c15 326int
5068f573 327main(int argc, char **argv)
8efc0c15 328{
34e02b83 329 extern char *optarg;
330 extern int optind;
5260325f 331 AuthenticationConnection *ac = NULL;
9ff6f66f 332 char *sc_reader_id = NULL;
e0543e42 333 int i, ch, deleting = 0, ret = 0;
5260325f 334
fd6168c1 335 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
336 sanitise_stdfd();
337
fda04d7d 338 __progname = ssh_get_progname(argv[0]);
264dce47 339 init_rng();
044b0662 340 seed_rng();
264dce47 341
2b87da3b 342 SSLeay_add_all_algorithms();
2e73a022 343
5260325f 344 /* At first, get a connection to the authentication agent. */
345 ac = ssh_get_authentication_connection();
346 if (ac == NULL) {
932ab351 347 fprintf(stderr,
348 "Could not open a connection to your authentication agent.\n");
a2863956 349 exit(2);
8efc0c15 350 }
c4087616 351 while ((ch = getopt(argc, argv, "lLcdDxXe:s:t:")) != -1) {
34e02b83 352 switch (ch) {
353 case 'l':
354 case 'L':
a2863956 355 if (list_identities(ac, ch == 'l' ? 1 : 0) == -1)
356 ret = 1;
34e02b83 357 goto done;
3db7f994 358 case 'x':
359 case 'X':
360 if (lock_agent(ac, ch == 'x' ? 1 : 0) == -1)
361 ret = 1;
362 goto done;
c4087616 363 case 'c':
364 confirm = 1;
365 break;
34e02b83 366 case 'd':
5260325f 367 deleting = 1;
34e02b83 368 break;
369 case 'D':
e0543e42 370 if (delete_all(ac) == -1)
371 ret = 1;
34e02b83 372 goto done;
34e02b83 373 case 's':
9ff6f66f 374 sc_reader_id = optarg;
34e02b83 375 break;
376 case 'e':
184eed6a 377 deleting = 1;
9ff6f66f 378 sc_reader_id = optarg;
34e02b83 379 break;
264572cc 380 case 't':
c3baacd1 381 if ((lifetime = convtime(optarg)) == -1) {
382 fprintf(stderr, "Invalid lifetime\n");
383 ret = 1;
384 goto done;
385 }
264572cc 386 break;
34e02b83 387 default:
388 usage();
e0543e42 389 ret = 1;
390 goto done;
983def13 391 }
8efc0c15 392 }
34e02b83 393 argc -= optind;
394 argv += optind;
9ff6f66f 395 if (sc_reader_id != NULL) {
e0543e42 396 if (update_card(ac, !deleting, sc_reader_id) == -1)
397 ret = 1;
34e02b83 398 goto done;
983def13 399 }
34e02b83 400 if (argc == 0) {
67656ffc 401 char buf[MAXPATHLEN];
402 struct passwd *pw;
256debd0 403 struct stat st;
404 int count = 0;
67656ffc 405
406 if ((pw = getpwuid(getuid())) == NULL) {
14a9a859 407 fprintf(stderr, "No user found with uid %u\n",
408 (u_int)getuid());
e0543e42 409 ret = 1;
410 goto done;
5260325f 411 }
67656ffc 412
f8cc7664 413 for (i = 0; default_files[i]; i++) {
762715ce 414 snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir,
67656ffc 415 default_files[i]);
256debd0 416 if (stat(buf, &st) < 0)
417 continue;
67656ffc 418 if (do_file(ac, deleting, buf) == -1)
e0543e42 419 ret = 1;
256debd0 420 else
421 count++;
e0543e42 422 }
256debd0 423 if (count == 0)
424 ret = 1;
34e02b83 425 } else {
f8cc7664 426 for (i = 0; i < argc; i++) {
0e0bba68 427 if (do_file(ac, deleting, argv[i]) == -1)
67656ffc 428 ret = 1;
34e02b83 429 }
8efc0c15 430 }
a8666d84 431 clear_pass();
34e02b83 432
433done:
5260325f 434 ssh_close_authentication_connection(ac);
e0543e42 435 return ret;
8efc0c15 436}
This page took 0.343807 seconds and 5 git commands to generate.