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