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