1 /* $OpenBSD: ssh-add.c,v 1.85 2006/07/22 20:48:23 stevesk Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Adds an identity to the authentication server, or removes an identity.
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".
14 * SSH2 implementation,
15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
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.
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.
40 #include <sys/types.h>
43 #include <openssl/evp.h>
57 #include "pathnames.h"
61 extern char *__progname
;
63 /* Default files to add */
64 static char *default_files
[] = {
65 _PATH_SSH_CLIENT_ID_RSA
,
66 _PATH_SSH_CLIENT_ID_DSA
,
67 _PATH_SSH_CLIENT_IDENTITY
,
71 /* Default lifetime (0 == forever) */
72 static int lifetime
= 0;
74 /* User has to confirm key use */
75 static int confirm
= 0;
77 /* we keep a cache of one passphrases */
78 static char *pass
= NULL
;
83 memset(pass
, 0, strlen(pass
));
90 delete_file(AuthenticationConnection
*ac
, const char *filename
)
96 public = key_load_public(filename
, &comment
);
98 printf("Bad key file %s\n", filename
);
101 if (ssh_remove_identity(ac
, public)) {
102 fprintf(stderr
, "Identity removed: %s (%s)\n", filename
, comment
);
105 fprintf(stderr
, "Could not remove identity: %s\n", filename
);
113 /* Send a request to remove all identities. */
115 delete_all(AuthenticationConnection
*ac
)
119 if (ssh_remove_all_identities(ac
, 1))
121 /* ignore error-code for ssh2 */
122 ssh_remove_all_identities(ac
, 2);
125 fprintf(stderr
, "All identities removed.\n");
127 fprintf(stderr
, "Failed to remove all identities.\n");
133 add_file(AuthenticationConnection
*ac
, const char *filename
)
136 char *comment
= NULL
;
138 int fd
, perms_ok
, ret
= -1;
140 if ((fd
= open(filename
, O_RDONLY
)) < 0) {
146 * Since we'll try to load a keyfile multiple times, permission errors
147 * will occur multiple times, so check perms first and bail if wrong.
149 perms_ok
= key_perm_ok(fd
, filename
);
154 /* At first, try empty passphrase */
155 private = key_load_private(filename
, "", &comment
);
157 comment
= xstrdup(filename
);
159 if (private == NULL
&& pass
!= NULL
)
160 private = key_load_private(filename
, pass
, NULL
);
161 if (private == NULL
) {
162 /* clear passphrase since it did not work */
164 snprintf(msg
, sizeof msg
, "Enter passphrase for %.200s: ",
167 pass
= read_passphrase(msg
, RP_ALLOW_STDIN
);
168 if (strcmp(pass
, "") == 0) {
173 private = key_load_private(filename
, pass
, &comment
);
177 snprintf(msg
, sizeof msg
,
178 "Bad passphrase, try again for %.200s: ", comment
);
182 if (ssh_add_identity_constrained(ac
, private, comment
, lifetime
,
184 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
188 "Lifetime set to %d seconds\n", lifetime
);
191 "The user has to confirm each use of the key\n");
192 } else if (ssh_add_identity(ac
, private, comment
)) {
193 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
196 fprintf(stderr
, "Could not add identity: %s\n", filename
);
206 update_card(AuthenticationConnection
*ac
, int add
, const char *id
)
211 pin
= read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN
);
215 if (ssh_update_card(ac
, add
, id
, pin
, lifetime
, confirm
)) {
216 fprintf(stderr
, "Card %s: %s\n",
217 add
? "added" : "removed", id
);
220 fprintf(stderr
, "Could not %s card: %s\n",
221 add
? "add" : "remove", id
);
229 list_identities(AuthenticationConnection
*ac
, int do_fp
)
233 int had_identities
= 0;
236 for (version
= 1; version
<= 2; version
++) {
237 for (key
= ssh_get_first_identity(ac
, &comment
, version
);
239 key
= ssh_get_next_identity(ac
, &comment
, version
)) {
242 fp
= key_fingerprint(key
, SSH_FP_MD5
,
244 printf("%d %s %s (%s)\n",
245 key_size(key
), fp
, comment
, key_type(key
));
248 if (!key_write(key
, stdout
))
249 fprintf(stderr
, "key_write failed");
250 fprintf(stdout
, " %s\n", comment
);
256 if (!had_identities
) {
257 printf("The agent has no identities.\n");
264 lock_agent(AuthenticationConnection
*ac
, int lock
)
266 char prompt
[100], *p1
, *p2
;
267 int passok
= 1, ret
= -1;
269 strlcpy(prompt
, "Enter lock password: ", sizeof(prompt
));
270 p1
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
272 strlcpy(prompt
, "Again: ", sizeof prompt
);
273 p2
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
274 if (strcmp(p1
, p2
) != 0) {
275 fprintf(stderr
, "Passwords do not match.\n");
278 memset(p2
, 0, strlen(p2
));
281 if (passok
&& ssh_lock_agent(ac
, lock
, p1
)) {
282 fprintf(stderr
, "Agent %slocked.\n", lock
? "" : "un");
285 fprintf(stderr
, "Failed to %slock agent.\n", lock
? "" : "un");
286 memset(p1
, 0, strlen(p1
));
292 do_file(AuthenticationConnection
*ac
, int deleting
, char *file
)
295 if (delete_file(ac
, file
) == -1)
298 if (add_file(ac
, file
) == -1)
307 fprintf(stderr
, "Usage: %s [options] [file ...]\n", __progname
);
308 fprintf(stderr
, "Options:\n");
309 fprintf(stderr
, " -l List fingerprints of all identities.\n");
310 fprintf(stderr
, " -L List public key parameters of all identities.\n");
311 fprintf(stderr
, " -d Delete identity.\n");
312 fprintf(stderr
, " -D Delete all identities.\n");
313 fprintf(stderr
, " -x Lock agent.\n");
314 fprintf(stderr
, " -X Unlock agent.\n");
315 fprintf(stderr
, " -t life Set lifetime (in seconds) when adding identities.\n");
316 fprintf(stderr
, " -c Require confirmation to sign using identities\n");
318 fprintf(stderr
, " -s reader Add key in smartcard reader.\n");
319 fprintf(stderr
, " -e reader Remove key in smartcard reader.\n");
324 main(int argc
, char **argv
)
328 AuthenticationConnection
*ac
= NULL
;
329 char *sc_reader_id
= NULL
;
330 int i
, ch
, deleting
= 0, ret
= 0;
332 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
335 __progname
= ssh_get_progname(argv
[0]);
339 SSLeay_add_all_algorithms();
341 /* At first, get a connection to the authentication agent. */
342 ac
= ssh_get_authentication_connection();
345 "Could not open a connection to your authentication agent.\n");
348 while ((ch
= getopt(argc
, argv
, "lLcdDxXe:s:t:")) != -1) {
352 if (list_identities(ac
, ch
== 'l' ? 1 : 0) == -1)
357 if (lock_agent(ac
, ch
== 'x' ? 1 : 0) == -1)
367 if (delete_all(ac
) == -1)
371 sc_reader_id
= optarg
;
375 sc_reader_id
= optarg
;
378 if ((lifetime
= convtime(optarg
)) == -1) {
379 fprintf(stderr
, "Invalid lifetime\n");
392 if (sc_reader_id
!= NULL
) {
393 if (update_card(ac
, !deleting
, sc_reader_id
) == -1)
398 char buf
[MAXPATHLEN
];
403 if ((pw
= getpwuid(getuid())) == NULL
) {
404 fprintf(stderr
, "No user found with uid %u\n",
410 for (i
= 0; default_files
[i
]; i
++) {
411 snprintf(buf
, sizeof(buf
), "%s/%s", pw
->pw_dir
,
413 if (stat(buf
, &st
) < 0)
415 if (do_file(ac
, deleting
, buf
) == -1)
423 for (i
= 0; i
< argc
; i
++) {
424 if (do_file(ac
, deleting
, argv
[i
]) == -1)
431 ssh_close_authentication_connection(ac
);