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