2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * Adds an identity to the authentication server, or removes an identity.
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
13 * SSH2 implementation,
14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 RCSID("$OpenBSD: ssh-add.c,v 1.71 2005/03/10 22:01:06 deraadt Exp $");
40 #include <openssl/evp.h>
49 #include "pathnames.h"
53 extern char *__progname
;
55 /* Default files to add */
56 static char *default_files
[] = {
57 _PATH_SSH_CLIENT_ID_RSA
,
58 _PATH_SSH_CLIENT_ID_DSA
,
59 _PATH_SSH_CLIENT_IDENTITY
,
63 /* Default lifetime (0 == forever) */
64 static int lifetime
= 0;
66 /* User has to confirm key use */
67 static int confirm
= 0;
69 /* we keep a cache of one passphrases */
70 static char *pass
= NULL
;
75 memset(pass
, 0, strlen(pass
));
82 delete_file(AuthenticationConnection
*ac
, const char *filename
)
88 public = key_load_public(filename
, &comment
);
90 printf("Bad key file %s\n", filename
);
93 if (ssh_remove_identity(ac
, public)) {
94 fprintf(stderr
, "Identity removed: %s (%s)\n", filename
, comment
);
97 fprintf(stderr
, "Could not remove identity: %s\n", filename
);
105 /* Send a request to remove all identities. */
107 delete_all(AuthenticationConnection
*ac
)
111 if (ssh_remove_all_identities(ac
, 1))
113 /* ignore error-code for ssh2 */
114 ssh_remove_all_identities(ac
, 2);
117 fprintf(stderr
, "All identities removed.\n");
119 fprintf(stderr
, "Failed to remove all identities.\n");
125 add_file(AuthenticationConnection
*ac
, const char *filename
)
129 char *comment
= NULL
;
133 if (stat(filename
, &st
) < 0) {
137 /* At first, try empty passphrase */
138 private = key_load_private(filename
, "", &comment
);
140 comment
= xstrdup(filename
);
142 if (private == NULL
&& pass
!= NULL
)
143 private = key_load_private(filename
, pass
, NULL
);
144 if (private == NULL
) {
145 /* clear passphrase since it did not work */
147 snprintf(msg
, sizeof msg
, "Enter passphrase for %.200s: ",
150 pass
= read_passphrase(msg
, RP_ALLOW_STDIN
);
151 if (strcmp(pass
, "") == 0) {
156 private = key_load_private(filename
, pass
, &comment
);
160 snprintf(msg
, sizeof msg
,
161 "Bad passphrase, try again for %.200s: ", comment
);
165 if (ssh_add_identity_constrained(ac
, private, comment
, lifetime
,
167 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
171 "Lifetime set to %d seconds\n", lifetime
);
174 "The user has to confirm each use of the key\n");
175 } else if (ssh_add_identity(ac
, private, comment
)) {
176 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
179 fprintf(stderr
, "Could not add identity: %s\n", filename
);
189 update_card(AuthenticationConnection
*ac
, int add
, const char *id
)
194 pin
= read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN
);
198 if (ssh_update_card(ac
, add
, id
, pin
, lifetime
, confirm
)) {
199 fprintf(stderr
, "Card %s: %s\n",
200 add
? "added" : "removed", id
);
203 fprintf(stderr
, "Could not %s card: %s\n",
204 add
? "add" : "remove", id
);
212 list_identities(AuthenticationConnection
*ac
, int do_fp
)
216 int had_identities
= 0;
219 for (version
= 1; version
<= 2; version
++) {
220 for (key
= ssh_get_first_identity(ac
, &comment
, version
);
222 key
= ssh_get_next_identity(ac
, &comment
, version
)) {
225 fp
= key_fingerprint(key
, SSH_FP_MD5
,
227 printf("%d %s %s (%s)\n",
228 key_size(key
), fp
, comment
, key_type(key
));
231 if (!key_write(key
, stdout
))
232 fprintf(stderr
, "key_write failed");
233 fprintf(stdout
, " %s\n", comment
);
239 if (!had_identities
) {
240 printf("The agent has no identities.\n");
247 lock_agent(AuthenticationConnection
*ac
, int lock
)
249 char prompt
[100], *p1
, *p2
;
250 int passok
= 1, ret
= -1;
252 strlcpy(prompt
, "Enter lock password: ", sizeof(prompt
));
253 p1
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
255 strlcpy(prompt
, "Again: ", sizeof prompt
);
256 p2
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
257 if (strcmp(p1
, p2
) != 0) {
258 fprintf(stderr
, "Passwords do not match.\n");
261 memset(p2
, 0, strlen(p2
));
264 if (passok
&& ssh_lock_agent(ac
, lock
, p1
)) {
265 fprintf(stderr
, "Agent %slocked.\n", lock
? "" : "un");
268 fprintf(stderr
, "Failed to %slock agent.\n", lock
? "" : "un");
269 memset(p1
, 0, strlen(p1
));
275 do_file(AuthenticationConnection
*ac
, int deleting
, char *file
)
278 if (delete_file(ac
, file
) == -1)
281 if (add_file(ac
, file
) == -1)
290 fprintf(stderr
, "Usage: %s [options]\n", __progname
);
291 fprintf(stderr
, "Options:\n");
292 fprintf(stderr
, " -l List fingerprints of all identities.\n");
293 fprintf(stderr
, " -L List public key parameters of all identities.\n");
294 fprintf(stderr
, " -d Delete identity.\n");
295 fprintf(stderr
, " -D Delete all identities.\n");
296 fprintf(stderr
, " -x Lock agent.\n");
297 fprintf(stderr
, " -X Unlock agent.\n");
298 fprintf(stderr
, " -t life Set lifetime (in seconds) when adding identities.\n");
299 fprintf(stderr
, " -c Require confirmation to sign using identities\n");
301 fprintf(stderr
, " -s reader Add key in smartcard reader.\n");
302 fprintf(stderr
, " -e reader Remove key in smartcard reader.\n");
307 main(int argc
, char **argv
)
311 AuthenticationConnection
*ac
= NULL
;
312 char *sc_reader_id
= NULL
;
313 int i
, ch
, deleting
= 0, ret
= 0;
315 __progname
= ssh_get_progname(argv
[0]);
319 SSLeay_add_all_algorithms();
321 /* At first, get a connection to the authentication agent. */
322 ac
= ssh_get_authentication_connection();
324 fprintf(stderr
, "Could not open a connection to your authentication agent.\n");
327 while ((ch
= getopt(argc
, argv
, "lLcdDxXe:s:t:")) != -1) {
331 if (list_identities(ac
, ch
== 'l' ? 1 : 0) == -1)
337 if (lock_agent(ac
, ch
== 'x' ? 1 : 0) == -1)
348 if (delete_all(ac
) == -1)
353 sc_reader_id
= optarg
;
357 sc_reader_id
= optarg
;
360 if ((lifetime
= convtime(optarg
)) == -1) {
361 fprintf(stderr
, "Invalid lifetime\n");
374 if (sc_reader_id
!= NULL
) {
375 if (update_card(ac
, !deleting
, sc_reader_id
) == -1)
380 char buf
[MAXPATHLEN
];
385 if ((pw
= getpwuid(getuid())) == NULL
) {
386 fprintf(stderr
, "No user found with uid %u\n",
392 for (i
= 0; default_files
[i
]; i
++) {
393 snprintf(buf
, sizeof(buf
), "%s/%s", pw
->pw_dir
,
395 if (stat(buf
, &st
) < 0)
397 if (do_file(ac
, deleting
, buf
) == -1)
405 for (i
= 0; i
< argc
; i
++) {
406 if (do_file(ac
, deleting
, argv
[i
]) == -1)
413 ssh_close_authentication_connection(ac
);