2 /* $OpenBSD: ssh-add.c,v 1.90 2007/09/09 11:38:01 sobrado Exp $ */
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * Adds an identity to the authentication server, or removes an identity.
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
15 * SSH2 implementation,
16 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 __RCSID("$NetBSD: ssh-add.c,v 1.25 2008/04/06 23:38:19 christos Exp $");
41 #include <sys/types.h>
43 #include <sys/param.h>
45 #include <openssl/evp.h>
62 #include "pathnames.h"
66 extern char *__progname
;
68 /* Default files to add */
69 static char *default_files
[] = {
70 _PATH_SSH_CLIENT_ID_RSA
,
71 _PATH_SSH_CLIENT_ID_DSA
,
72 _PATH_SSH_CLIENT_IDENTITY
,
76 /* Default lifetime (0 == forever) */
77 static int lifetime
= 0;
79 /* User has to confirm key use */
80 static int confirm
= 0;
82 /* we keep a cache of one passphrases */
83 static char *pass
= NULL
;
88 memset(pass
, 0, strlen(pass
));
95 delete_file(AuthenticationConnection
*ac
, const char *filename
)
101 public = key_load_public(filename
, &comment
);
102 if (public == NULL
) {
103 printf("Bad key file %s\n", filename
);
106 if (ssh_remove_identity(ac
, public)) {
107 fprintf(stderr
, "Identity removed: %s (%s)\n", filename
, comment
);
110 fprintf(stderr
, "Could not remove identity: %s\n", filename
);
118 /* Send a request to remove all identities. */
120 delete_all(AuthenticationConnection
*ac
)
124 if (ssh_remove_all_identities(ac
, 1))
126 /* ignore error-code for ssh2 */
127 ssh_remove_all_identities(ac
, 2);
130 fprintf(stderr
, "All identities removed.\n");
132 fprintf(stderr
, "Failed to remove all identities.\n");
138 add_file(AuthenticationConnection
*ac
, const char *filename
)
141 char *comment
= NULL
;
143 int fd
, perms_ok
, ret
= -1;
145 if ((fd
= open(filename
, O_RDONLY
)) < 0) {
151 * Since we'll try to load a keyfile multiple times, permission errors
152 * will occur multiple times, so check perms first and bail if wrong.
154 perms_ok
= key_perm_ok(fd
, filename
);
159 /* At first, try empty passphrase */
160 private = key_load_private(filename
, "", &comment
);
162 comment
= xstrdup(filename
);
164 if (private == NULL
&& pass
!= NULL
)
165 private = key_load_private(filename
, pass
, NULL
);
166 if (private == NULL
) {
167 /* clear passphrase since it did not work */
169 snprintf(msg
, sizeof msg
, "Enter passphrase for %.200s: ",
172 pass
= read_passphrase(msg
, RP_ALLOW_STDIN
);
173 if (strcmp(pass
, "") == 0) {
178 private = key_load_private(filename
, pass
, &comment
);
182 snprintf(msg
, sizeof msg
,
183 "Bad passphrase, try again for %.200s: ", comment
);
187 if (ssh_add_identity_constrained(ac
, private, comment
, lifetime
,
189 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
193 "Lifetime set to %d seconds\n", lifetime
);
196 "The user has to confirm each use of the key\n");
197 } else if (ssh_add_identity(ac
, private, comment
)) {
198 fprintf(stderr
, "Identity added: %s (%s)\n", filename
, comment
);
201 fprintf(stderr
, "Could not add identity: %s\n", filename
);
211 update_card(AuthenticationConnection
*ac
, int add
, const char *id
)
216 pin
= read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN
);
220 if (ssh_update_card(ac
, add
, id
, pin
, lifetime
, confirm
)) {
221 fprintf(stderr
, "Card %s: %s\n",
222 add
? "added" : "removed", id
);
225 fprintf(stderr
, "Could not %s card: %s\n",
226 add
? "add" : "remove", id
);
234 list_identities(AuthenticationConnection
*ac
, int do_fp
)
238 int had_identities
= 0;
241 for (version
= 1; version
<= 2; version
++) {
242 for (key
= ssh_get_first_identity(ac
, &comment
, version
);
244 key
= ssh_get_next_identity(ac
, &comment
, version
)) {
247 fp
= key_fingerprint(key
, SSH_FP_MD5
,
249 printf("%d %s %s (%s)\n",
250 key_size(key
), fp
, comment
, key_type(key
));
253 if (!key_write(key
, stdout
))
254 fprintf(stderr
, "key_write failed");
255 fprintf(stdout
, " %s\n", comment
);
261 if (!had_identities
) {
262 printf("The agent has no identities.\n");
269 lock_agent(AuthenticationConnection
*ac
, int lock
)
271 char prompt
[100], *p1
, *p2
;
272 int passok
= 1, ret
= -1;
274 strlcpy(prompt
, "Enter lock password: ", sizeof(prompt
));
275 p1
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
277 strlcpy(prompt
, "Again: ", sizeof prompt
);
278 p2
= read_passphrase(prompt
, RP_ALLOW_STDIN
);
279 if (strcmp(p1
, p2
) != 0) {
280 fprintf(stderr
, "Passwords do not match.\n");
283 memset(p2
, 0, strlen(p2
));
286 if (passok
&& ssh_lock_agent(ac
, lock
, p1
)) {
287 fprintf(stderr
, "Agent %slocked.\n", lock
? "" : "un");
290 fprintf(stderr
, "Failed to %slock agent.\n", lock
? "" : "un");
291 memset(p1
, 0, strlen(p1
));
297 do_file(AuthenticationConnection
*ac
, int deleting
, char *file
)
300 if (delete_file(ac
, file
) == -1)
303 if (add_file(ac
, file
) == -1)
312 fprintf(stderr
, "usage: %s [options] [file ...]\n", __progname
);
313 fprintf(stderr
, "Options:\n");
314 fprintf(stderr
, " -l List fingerprints of all identities.\n");
315 fprintf(stderr
, " -L List public key parameters of all identities.\n");
316 fprintf(stderr
, " -d Delete identity.\n");
317 fprintf(stderr
, " -D Delete all identities.\n");
318 fprintf(stderr
, " -x Lock agent.\n");
319 fprintf(stderr
, " -X Unlock agent.\n");
320 fprintf(stderr
, " -t life Set lifetime (in seconds) when adding identities.\n");
321 fprintf(stderr
, " -c Require confirmation to sign using identities\n");
323 fprintf(stderr
, " -s reader Add key in smartcard reader.\n");
324 fprintf(stderr
, " -e reader Remove key in smartcard reader.\n");
329 main(int argc
, char **argv
)
333 AuthenticationConnection
*ac
= NULL
;
334 char *sc_reader_id
= NULL
;
335 int i
, ch
, deleting
= 0, ret
= 0;
337 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
340 SSLeay_add_all_algorithms();
342 /* At first, get a connection to the authentication agent. */
343 ac
= ssh_get_authentication_connection();
346 "Could not open a connection to your authentication agent.\n");
349 while ((ch
= getopt(argc
, argv
, "lLcdDxXe:s:t:")) != -1) {
353 if (list_identities(ac
, ch
== 'l' ? 1 : 0) == -1)
358 if (lock_agent(ac
, ch
== 'x' ? 1 : 0) == -1)
368 if (delete_all(ac
) == -1)
372 sc_reader_id
= optarg
;
376 sc_reader_id
= optarg
;
379 if ((lifetime
= convtime(optarg
)) == -1) {
380 fprintf(stderr
, "Invalid lifetime\n");
393 if (sc_reader_id
!= NULL
) {
394 if (update_card(ac
, !deleting
, sc_reader_id
) == -1)
399 char buf
[MAXPATHLEN
];
404 if ((pw
= getpwuid(getuid())) == NULL
) {
405 fprintf(stderr
, "No user found with uid %u\n",
411 for (i
= 0; default_files
[i
]; i
++) {
412 snprintf(buf
, sizeof(buf
), "%s/%s", pw
->pw_dir
,
414 if (stat(buf
, &st
) < 0)
416 if (do_file(ac
, deleting
, buf
) == -1)
424 for (i
= 0; i
< argc
; i
++) {
425 if (do_file(ac
, deleting
, argv
[i
]) == -1)
432 ssh_close_authentication_connection(ac
);