2015-01-14 21:05:27 +01:00
|
|
|
/* $OpenBSD: ssh-add.c,v 1.116 2015/01/14 20:05:27 djm Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Adds an identity to the authentication server, or removes an identity.
|
2000-08-23 02:46:23 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*
|
2000-08-23 02:46:23 +02:00
|
|
|
* SSH2 implementation,
|
2001-07-04 05:32:30 +02:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 01:45:54 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2006-08-05 03:02:17 +02:00
|
|
|
#include <sys/param.h>
|
2000-04-29 15:57:08 +02:00
|
|
|
|
2000-08-23 02:46:23 +02:00
|
|
|
#include <openssl/evp.h>
|
2008-02-28 09:13:52 +01:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
#include <errno.h>
|
2006-07-10 13:13:46 +02:00
|
|
|
#include <fcntl.h>
|
2006-07-10 12:53:08 +02:00
|
|
|
#include <pwd.h>
|
2006-09-01 07:38:36 +02:00
|
|
|
#include <stdarg.h>
|
2006-08-05 03:37:59 +02:00
|
|
|
#include <stdio.h>
|
2006-08-05 03:34:19 +02:00
|
|
|
#include <stdlib.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-07-24 06:01:23 +02:00
|
|
|
#include <unistd.h>
|
2006-07-10 12:53:08 +02:00
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "ssh.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "rsa.h"
|
|
|
|
#include "log.h"
|
2015-01-14 21:05:27 +01:00
|
|
|
#include "sshkey.h"
|
|
|
|
#include "sshbuf.h"
|
2000-07-21 02:19:44 +02:00
|
|
|
#include "authfd.h"
|
2000-04-29 15:57:08 +02:00
|
|
|
#include "authfile.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "pathnames.h"
|
2002-06-11 17:51:54 +02:00
|
|
|
#include "misc.h"
|
2014-07-02 07:28:02 +02:00
|
|
|
#include "ssherr.h"
|
2014-12-21 23:27:55 +01:00
|
|
|
#include "digest.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-08-07 00:06:35 +02:00
|
|
|
/* argv0 */
|
|
|
|
extern char *__progname;
|
|
|
|
|
2002-01-22 13:05:59 +01:00
|
|
|
/* Default files to add */
|
|
|
|
static char *default_files[] = {
|
2015-01-14 16:21:31 +01:00
|
|
|
#ifdef WITH_OPENSSL
|
2002-01-22 13:05:59 +01:00
|
|
|
_PATH_SSH_CLIENT_ID_RSA,
|
|
|
|
_PATH_SSH_CLIENT_ID_DSA,
|
2010-11-11 04:17:02 +01:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-08-31 14:41:14 +02:00
|
|
|
_PATH_SSH_CLIENT_ID_ECDSA,
|
2010-11-11 04:17:02 +01:00
|
|
|
#endif
|
2015-01-14 16:21:31 +01:00
|
|
|
#endif /* WITH_OPENSSL */
|
2013-12-18 07:49:48 +01:00
|
|
|
_PATH_SSH_CLIENT_ID_ED25519,
|
2002-03-22 03:54:23 +01:00
|
|
|
_PATH_SSH_CLIENT_IDENTITY,
|
2002-01-22 13:05:59 +01:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2014-12-21 23:27:55 +01:00
|
|
|
static int fingerprint_hash = SSH_FP_HASH_DEFAULT;
|
|
|
|
|
2002-06-06 23:54:57 +02:00
|
|
|
/* Default lifetime (0 == forever) */
|
2002-06-11 17:51:54 +02:00
|
|
|
static int lifetime = 0;
|
2002-01-22 13:05:59 +01:00
|
|
|
|
2003-01-24 01:36:23 +01:00
|
|
|
/* User has to confirm key use */
|
|
|
|
static int confirm = 0;
|
|
|
|
|
2001-04-10 04:45:32 +02:00
|
|
|
/* we keep a cache of one passphrases */
|
|
|
|
static char *pass = NULL;
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-04-10 04:45:32 +02:00
|
|
|
clear_pass(void)
|
|
|
|
{
|
|
|
|
if (pass) {
|
2014-02-04 01:20:14 +01:00
|
|
|
explicit_bzero(pass, strlen(pass));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(pass);
|
2001-04-10 04:45:32 +02:00
|
|
|
pass = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
delete_file(int agent_fd, const char *filename, int key_only)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2015-01-14 21:05:27 +01:00
|
|
|
struct sshkey *public, *cert = NULL;
|
2012-12-02 23:50:24 +01:00
|
|
|
char *certpath = NULL, *comment = NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, ret = -1;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_load_public(filename, &public, &comment)) != 0) {
|
|
|
|
printf("Bad key file %s: %s\n", filename, ssh_err(r));
|
2001-10-03 19:43:01 +02:00
|
|
|
return -1;
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_remove_identity(agent_fd, public)) == 0) {
|
1999-11-24 14:26:21 +01:00
|
|
|
fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 0;
|
|
|
|
} else
|
2015-01-14 21:05:27 +01:00
|
|
|
fprintf(stderr, "Could not remove identity \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
2001-10-03 19:43:01 +02:00
|
|
|
|
2012-12-02 23:50:24 +01:00
|
|
|
if (key_only)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Now try to delete the corresponding certificate too */
|
|
|
|
free(comment);
|
2012-12-07 03:07:02 +01:00
|
|
|
comment = NULL;
|
2012-12-02 23:50:24 +01:00
|
|
|
xasprintf(&certpath, "%s-cert.pub", filename);
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_load_public(certpath, &cert, &comment)) == 0)
|
2012-12-02 23:50:24 +01:00
|
|
|
goto out;
|
2015-01-14 21:05:27 +01:00
|
|
|
if (!sshkey_equal_public(cert, public))
|
2012-12-02 23:50:24 +01:00
|
|
|
fatal("Certificate %s does not match private key %s",
|
|
|
|
certpath, filename);
|
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if (ssh_remove_identity(agent_fd, cert)) {
|
2012-12-02 23:50:24 +01:00
|
|
|
fprintf(stderr, "Identity removed: %s (%s)\n", certpath,
|
|
|
|
comment);
|
|
|
|
ret = 0;
|
|
|
|
} else
|
|
|
|
fprintf(stderr, "Could not remove identity: %s\n", certpath);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (cert != NULL)
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_free(cert);
|
2012-12-02 23:50:24 +01:00
|
|
|
if (public != NULL)
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_free(public);
|
2012-12-02 23:50:24 +01:00
|
|
|
free(certpath);
|
|
|
|
free(comment);
|
2001-12-21 04:45:46 +01:00
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
return ret;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2000-08-23 02:46:23 +02:00
|
|
|
/* Send a request to remove all identities. */
|
2001-10-03 19:43:01 +02:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
delete_all(int agent_fd)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-10-03 19:43:01 +02:00
|
|
|
int ret = -1;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if (ssh_remove_all_identities(agent_fd, 1) == 0)
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 0;
|
2000-08-23 02:46:23 +02:00
|
|
|
/* ignore error-code for ssh2 */
|
2015-01-14 21:05:27 +01:00
|
|
|
/* XXX revisit */
|
|
|
|
ssh_remove_all_identities(agent_fd, 2);
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
if (ret == 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
fprintf(stderr, "All identities removed.\n");
|
|
|
|
else
|
2001-01-18 03:04:35 +01:00
|
|
|
fprintf(stderr, "Failed to remove all identities.\n");
|
2001-10-03 19:43:01 +02:00
|
|
|
|
|
|
|
return ret;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
add_file(int agent_fd, const char *filename, int key_only)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2015-01-14 21:05:27 +01:00
|
|
|
struct sshkey *private, *cert;
|
2001-04-19 22:33:07 +02:00
|
|
|
char *comment = NULL;
|
2011-10-18 07:06:33 +02:00
|
|
|
char msg[1024], *certpath = NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, fd, ret = -1;
|
|
|
|
struct sshbuf *keyblob;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2011-05-05 06:17:18 +02:00
|
|
|
if (strcmp(filename, "-") == 0) {
|
|
|
|
fd = STDIN_FILENO;
|
|
|
|
filename = "(stdin)";
|
|
|
|
} else if ((fd = open(filename, O_RDONLY)) < 0) {
|
2000-08-23 02:46:23 +02:00
|
|
|
perror(filename);
|
2001-10-03 19:43:01 +02:00
|
|
|
return -1;
|
2000-08-23 02:46:23 +02:00
|
|
|
}
|
2006-03-15 02:06:23 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Since we'll try to load a keyfile multiple times, permission errors
|
|
|
|
* will occur multiple times, so check perms first and bail if wrong.
|
|
|
|
*/
|
2011-05-05 06:17:18 +02:00
|
|
|
if (fd != STDIN_FILENO) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (sshkey_perm_ok(fd, filename) != 0) {
|
2011-05-05 06:17:18 +02:00
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((keyblob = sshbuf_new()) == NULL)
|
|
|
|
fatal("%s: sshbuf_new failed", __func__);
|
|
|
|
if ((r = sshkey_load_file(fd, keyblob)) != 0) {
|
|
|
|
fprintf(stderr, "Error loading key \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
|
|
|
sshbuf_free(keyblob);
|
2011-05-05 06:17:18 +02:00
|
|
|
close(fd);
|
2006-03-15 02:06:23 +01:00
|
|
|
return -1;
|
2011-05-05 06:17:18 +02:00
|
|
|
}
|
|
|
|
close(fd);
|
2006-03-15 02:06:23 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* At first, try empty passphrase */
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_parse_private_fileblob(keyblob, "", filename,
|
|
|
|
&private, &comment)) != 0 && r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
|
|
|
|
fprintf(stderr, "Error loading key \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
|
|
|
goto fail_load;
|
|
|
|
}
|
2001-04-10 04:45:32 +02:00
|
|
|
/* try last */
|
2014-07-02 07:28:02 +02:00
|
|
|
if (private == NULL && pass != NULL) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_parse_private_fileblob(keyblob, pass, filename,
|
2014-07-02 07:28:02 +02:00
|
|
|
&private, &comment)) != 0 &&
|
2015-01-14 21:05:27 +01:00
|
|
|
r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
|
|
|
|
fprintf(stderr, "Error loading key \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
|
|
|
goto fail_load;
|
|
|
|
}
|
2014-07-02 07:28:02 +02:00
|
|
|
}
|
2014-07-11 01:19:04 +02:00
|
|
|
if (comment == NULL)
|
|
|
|
comment = xstrdup(filename);
|
2001-03-26 15:44:06 +02:00
|
|
|
if (private == NULL) {
|
2001-04-10 04:45:32 +02:00
|
|
|
/* clear passphrase since it did not work */
|
|
|
|
clear_pass();
|
2001-05-03 00:40:12 +02:00
|
|
|
snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
|
2005-07-17 09:22:45 +02:00
|
|
|
comment);
|
1999-11-25 01:54:57 +01:00
|
|
|
for (;;) {
|
2001-06-25 07:20:31 +02:00
|
|
|
pass = read_passphrase(msg, RP_ALLOW_STDIN);
|
2015-01-14 21:05:27 +01:00
|
|
|
if (strcmp(pass, "") == 0)
|
|
|
|
goto fail_load;
|
|
|
|
if ((r = sshkey_parse_private_fileblob(keyblob, pass,
|
|
|
|
filename, &private, NULL)) == 0)
|
|
|
|
break;
|
|
|
|
else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Error loading key \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
|
|
|
fail_load:
|
2001-04-15 01:10:09 +02:00
|
|
|
clear_pass();
|
2013-06-01 23:31:17 +02:00
|
|
|
free(comment);
|
2015-01-14 21:05:27 +01:00
|
|
|
sshbuf_free(keyblob);
|
2001-10-03 19:43:01 +02:00
|
|
|
return -1;
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2001-04-10 04:45:32 +02:00
|
|
|
clear_pass();
|
2003-06-18 12:29:18 +02:00
|
|
|
snprintf(msg, sizeof msg,
|
|
|
|
"Bad passphrase, try again for %.200s: ", comment);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
sshbuf_free(keyblob);
|
2002-06-21 02:08:39 +02:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_add_identity_constrained(agent_fd, private, comment,
|
|
|
|
lifetime, confirm)) == 0) {
|
2001-03-26 15:44:06 +02:00
|
|
|
fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 0;
|
2002-06-21 02:08:39 +02:00
|
|
|
if (lifetime != 0)
|
2002-12-23 03:06:19 +01:00
|
|
|
fprintf(stderr,
|
2002-06-21 02:08:39 +02:00
|
|
|
"Lifetime set to %d seconds\n", lifetime);
|
2003-11-21 13:48:55 +01:00
|
|
|
if (confirm != 0)
|
2003-01-24 01:36:23 +01:00
|
|
|
fprintf(stderr,
|
2010-05-21 06:56:47 +02:00
|
|
|
"The user must confirm each use of the key\n");
|
2002-06-21 02:08:39 +02:00
|
|
|
} else {
|
2015-01-14 21:05:27 +01:00
|
|
|
fprintf(stderr, "Could not add identity \"%s\": %s\n",
|
|
|
|
filename, ssh_err(r));
|
2002-06-06 23:54:57 +02:00
|
|
|
}
|
|
|
|
|
2011-10-18 07:06:33 +02:00
|
|
|
/* Skip trying to load the cert if requested */
|
|
|
|
if (key_only)
|
|
|
|
goto out;
|
2010-02-26 21:55:05 +01:00
|
|
|
|
|
|
|
/* Now try to add the certificate flavour too */
|
|
|
|
xasprintf(&certpath, "%s-cert.pub", filename);
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_load_public(certpath, &cert, NULL)) != 0) {
|
|
|
|
if (r != SSH_ERR_SYSTEM_ERROR || errno != ENOENT)
|
|
|
|
error("Failed to load certificate \"%s\": %s",
|
|
|
|
certpath, ssh_err(r));
|
2010-05-21 06:56:47 +02:00
|
|
|
goto out;
|
2015-01-14 21:05:27 +01:00
|
|
|
}
|
2010-05-21 06:56:47 +02:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if (!sshkey_equal_public(cert, private)) {
|
2010-05-21 06:56:47 +02:00
|
|
|
error("Certificate %s does not match private key %s",
|
|
|
|
certpath, filename);
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_free(cert);
|
2010-05-21 06:56:47 +02:00
|
|
|
goto out;
|
|
|
|
}
|
2010-02-26 21:55:05 +01:00
|
|
|
|
2010-05-21 06:56:47 +02:00
|
|
|
/* Graft with private bits */
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_to_certified(private,
|
|
|
|
sshkey_cert_is_legacy(cert))) != 0) {
|
|
|
|
error("%s: sshkey_to_certified: %s", __func__, ssh_err(r));
|
|
|
|
sshkey_free(cert);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if ((r = sshkey_cert_copy(cert, private)) != 0) {
|
|
|
|
error("%s: key_cert_copy: %s", __func__, ssh_err(r));
|
|
|
|
sshkey_free(cert);
|
2010-05-21 06:56:47 +02:00
|
|
|
goto out;
|
2010-03-03 00:25:41 +01:00
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_free(cert);
|
2010-02-26 21:55:05 +01:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_add_identity_constrained(agent_fd, private, comment,
|
|
|
|
lifetime, confirm)) != 0) {
|
|
|
|
error("Certificate %s (%s) add failed: %s", certpath,
|
|
|
|
private->cert->key_id, ssh_err(r));
|
|
|
|
goto out;
|
2010-05-21 06:56:47 +02:00
|
|
|
}
|
|
|
|
fprintf(stderr, "Certificate added: %s (%s)\n", certpath,
|
|
|
|
private->cert->key_id);
|
|
|
|
if (lifetime != 0)
|
|
|
|
fprintf(stderr, "Lifetime set to %d seconds\n", lifetime);
|
|
|
|
if (confirm != 0)
|
|
|
|
fprintf(stderr, "The user must confirm each use of the key\n");
|
|
|
|
out:
|
2015-01-14 21:05:27 +01:00
|
|
|
free(certpath);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(comment);
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_free(private);
|
2001-12-21 04:45:46 +01:00
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
return ret;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2001-10-03 19:43:01 +02:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
update_card(int agent_fd, int add, const char *id)
|
2001-07-04 05:50:02 +02:00
|
|
|
{
|
2013-12-29 07:44:07 +01:00
|
|
|
char *pin = NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, ret = -1;
|
2002-03-22 04:51:06 +01:00
|
|
|
|
2013-12-29 07:44:07 +01:00
|
|
|
if (add) {
|
|
|
|
if ((pin = read_passphrase("Enter passphrase for PKCS#11: ",
|
|
|
|
RP_ALLOW_STDIN)) == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
2002-03-22 04:51:06 +01:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_update_card(agent_fd, add, id, pin == NULL ? "" : pin,
|
|
|
|
lifetime, confirm)) == 0) {
|
2001-08-06 23:35:51 +02:00
|
|
|
fprintf(stderr, "Card %s: %s\n",
|
2001-12-21 04:45:46 +01:00
|
|
|
add ? "added" : "removed", id);
|
2003-03-10 01:21:17 +01:00
|
|
|
ret = 0;
|
2001-10-03 19:43:01 +02:00
|
|
|
} else {
|
2015-01-14 21:05:27 +01:00
|
|
|
fprintf(stderr, "Could not %s card \"%s\": %s\n",
|
|
|
|
add ? "add" : "remove", id, ssh_err(r));
|
2003-03-10 01:21:17 +01:00
|
|
|
ret = -1;
|
2001-10-03 19:43:01 +02:00
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(pin);
|
2003-03-10 01:21:17 +01:00
|
|
|
return ret;
|
2001-07-04 05:50:02 +02:00
|
|
|
}
|
|
|
|
|
2002-02-05 02:12:49 +01:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
list_identities(int agent_fd, int do_fp)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2015-01-14 21:05:27 +01:00
|
|
|
char *fp;
|
|
|
|
int version, r, had_identities = 0;
|
|
|
|
struct ssh_identitylist *idlist;
|
|
|
|
size_t i;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
|
|
|
for (version = 1; version <= 2; version++) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_fetch_identitylist(agent_fd, version,
|
|
|
|
&idlist)) != 0) {
|
|
|
|
if (r != SSH_ERR_AGENT_NO_IDENTITIES)
|
|
|
|
fprintf(stderr, "error fetching identities for "
|
|
|
|
"protocol %d: %s\n", version, ssh_err(r));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (i = 0; i < idlist->nkeys; i++) {
|
2000-08-23 02:46:23 +02:00
|
|
|
had_identities = 1;
|
2001-03-13 05:57:58 +01:00
|
|
|
if (do_fp) {
|
2015-01-14 21:05:27 +01:00
|
|
|
fp = sshkey_fingerprint(idlist->keys[i],
|
|
|
|
fingerprint_hash, SSH_FP_DEFAULT);
|
2000-11-13 12:57:25 +01:00
|
|
|
printf("%d %s %s (%s)\n",
|
2015-01-14 21:05:27 +01:00
|
|
|
sshkey_size(idlist->keys[i]), fp,
|
|
|
|
idlist->comments[i],
|
|
|
|
sshkey_type(idlist->keys[i]));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(fp);
|
1999-11-24 14:26:21 +01:00
|
|
|
} else {
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = sshkey_write(idlist->keys[i],
|
|
|
|
stdout)) != 0) {
|
|
|
|
fprintf(stderr, "sshkey_write: %s\n",
|
|
|
|
ssh_err(r));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fprintf(stdout, " %s\n", idlist->comments[i]);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
ssh_free_identitylist(idlist);
|
1999-11-17 07:29:08 +01:00
|
|
|
}
|
2002-02-05 02:12:49 +01:00
|
|
|
if (!had_identities) {
|
1999-11-24 14:26:21 +01:00
|
|
|
printf("The agent has no identities.\n");
|
2002-02-05 02:12:49 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2002-06-06 23:52:03 +02:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
lock_agent(int agent_fd, int lock)
|
2002-06-06 23:52:03 +02:00
|
|
|
{
|
|
|
|
char prompt[100], *p1, *p2;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, passok = 1, ret = -1;
|
2002-06-21 02:41:51 +02:00
|
|
|
|
2002-06-06 23:52:03 +02:00
|
|
|
strlcpy(prompt, "Enter lock password: ", sizeof(prompt));
|
|
|
|
p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
|
|
|
|
if (lock) {
|
|
|
|
strlcpy(prompt, "Again: ", sizeof prompt);
|
|
|
|
p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
|
|
|
|
if (strcmp(p1, p2) != 0) {
|
|
|
|
fprintf(stderr, "Passwords do not match.\n");
|
|
|
|
passok = 0;
|
|
|
|
}
|
2014-02-04 01:20:14 +01:00
|
|
|
explicit_bzero(p2, strlen(p2));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(p2);
|
2002-06-06 23:52:03 +02:00
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
if (passok) {
|
|
|
|
if ((r = ssh_lock_agent(agent_fd, lock, p1)) == 0) {
|
|
|
|
fprintf(stderr, "Agent %slocked.\n", lock ? "" : "un");
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Failed to %slock agent: %s\n",
|
|
|
|
lock ? "" : "un", ssh_err(r));
|
|
|
|
}
|
|
|
|
}
|
2014-02-04 01:20:14 +01:00
|
|
|
explicit_bzero(p1, strlen(p1));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(p1);
|
2002-06-27 02:21:59 +02:00
|
|
|
return (ret);
|
2002-06-06 23:52:03 +02:00
|
|
|
}
|
|
|
|
|
2002-01-22 13:05:59 +01:00
|
|
|
static int
|
2015-01-14 21:05:27 +01:00
|
|
|
do_file(int agent_fd, int deleting, int key_only, char *file)
|
2002-01-22 13:05:59 +01:00
|
|
|
{
|
|
|
|
if (deleting) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (delete_file(agent_fd, file, key_only) == -1)
|
2002-01-22 13:05:59 +01:00
|
|
|
return -1;
|
|
|
|
} else {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (add_file(agent_fd, file, key_only) == -1)
|
2002-01-22 13:05:59 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-04 05:50:02 +02:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2007-09-17 08:05:50 +02:00
|
|
|
fprintf(stderr, "usage: %s [options] [file ...]\n", __progname);
|
2001-08-07 00:06:35 +02:00
|
|
|
fprintf(stderr, "Options:\n");
|
|
|
|
fprintf(stderr, " -l List fingerprints of all identities.\n");
|
2014-12-21 23:27:55 +01:00
|
|
|
fprintf(stderr, " -E hash Specify hash algorithm used for fingerprints.\n");
|
2001-08-07 00:06:35 +02:00
|
|
|
fprintf(stderr, " -L List public key parameters of all identities.\n");
|
2011-11-04 00:51:51 +01:00
|
|
|
fprintf(stderr, " -k Load only keys and not certificates.\n");
|
|
|
|
fprintf(stderr, " -c Require confirmation to sign using identities\n");
|
|
|
|
fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
|
2001-08-07 00:06:35 +02:00
|
|
|
fprintf(stderr, " -d Delete identity.\n");
|
|
|
|
fprintf(stderr, " -D Delete all identities.\n");
|
2002-06-06 23:53:11 +02:00
|
|
|
fprintf(stderr, " -x Lock agent.\n");
|
2002-09-21 17:26:00 +02:00
|
|
|
fprintf(stderr, " -X Unlock agent.\n");
|
2010-02-11 23:21:02 +01:00
|
|
|
fprintf(stderr, " -s pkcs11 Add keys from PKCS#11 provider.\n");
|
|
|
|
fprintf(stderr, " -e pkcs11 Remove keys provided by PKCS#11 provider.\n");
|
2001-07-04 05:50:02 +02:00
|
|
|
}
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
int
|
1999-10-28 07:23:30 +02:00
|
|
|
main(int argc, char **argv)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-07-04 07:03:51 +02:00
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
2015-01-14 21:05:27 +01:00
|
|
|
int agent_fd;
|
2010-02-11 23:21:02 +01:00
|
|
|
char *pkcs11provider = NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, i, ch, deleting = 0, ret = 0, key_only = 0;
|
2014-12-21 23:27:55 +01:00
|
|
|
int xflag = 0, lflag = 0, Dflag = 0;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2005-10-03 10:11:24 +02:00
|
|
|
/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
|
|
|
|
sanitise_stdfd();
|
|
|
|
|
2003-08-22 01:34:41 +02:00
|
|
|
__progname = ssh_get_progname(argv[0]);
|
2001-05-06 04:57:20 +02:00
|
|
|
seed_rng();
|
2000-07-09 14:42:32 +02:00
|
|
|
|
2015-01-14 16:21:31 +01:00
|
|
|
#ifdef WITH_OPENSSL
|
2010-09-10 03:12:09 +02:00
|
|
|
OpenSSL_add_all_algorithms();
|
2015-01-14 16:21:31 +01:00
|
|
|
#endif
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2014-11-26 19:34:51 +01:00
|
|
|
setvbuf(stdout, NULL, _IOLBF, 0);
|
2014-07-03 13:23:01 +02:00
|
|
|
|
2015-01-14 21:05:27 +01:00
|
|
|
/* First, get a connection to the authentication agent. */
|
|
|
|
switch (r = ssh_get_authentication_socket(&agent_fd)) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case SSH_ERR_AGENT_NOT_PRESENT:
|
|
|
|
fprintf(stderr, "Could not open a connection to your "
|
|
|
|
"authentication agent.\n");
|
|
|
|
exit(2);
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Error connecting to agent: %s\n", ssh_err(r));
|
2002-02-05 02:12:49 +01:00
|
|
|
exit(2);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
|
2014-12-21 23:27:55 +01:00
|
|
|
while ((ch = getopt(argc, argv, "klLcdDxXE:e:s:t:")) != -1) {
|
2001-07-04 07:03:51 +02:00
|
|
|
switch (ch) {
|
2014-12-21 23:27:55 +01:00
|
|
|
case 'E':
|
|
|
|
fingerprint_hash = ssh_digest_alg_by_name(optarg);
|
|
|
|
if (fingerprint_hash == -1)
|
|
|
|
fatal("Invalid hash algorithm \"%s\"", optarg);
|
|
|
|
break;
|
2011-10-18 07:06:33 +02:00
|
|
|
case 'k':
|
|
|
|
key_only = 1;
|
|
|
|
break;
|
2001-07-04 07:03:51 +02:00
|
|
|
case 'l':
|
|
|
|
case 'L':
|
2014-12-21 23:27:55 +01:00
|
|
|
if (lflag != 0)
|
|
|
|
fatal("-%c flag already specified", lflag);
|
|
|
|
lflag = ch;
|
|
|
|
break;
|
2002-06-06 23:52:03 +02:00
|
|
|
case 'x':
|
|
|
|
case 'X':
|
2014-12-21 23:27:55 +01:00
|
|
|
if (xflag != 0)
|
|
|
|
fatal("-%c flag already specified", xflag);
|
|
|
|
xflag = ch;
|
|
|
|
break;
|
2003-01-24 01:36:23 +01:00
|
|
|
case 'c':
|
|
|
|
confirm = 1;
|
|
|
|
break;
|
2001-07-04 07:03:51 +02:00
|
|
|
case 'd':
|
1999-11-24 14:26:21 +01:00
|
|
|
deleting = 1;
|
2001-07-04 07:03:51 +02:00
|
|
|
break;
|
|
|
|
case 'D':
|
2014-12-21 23:27:55 +01:00
|
|
|
Dflag = 1;
|
|
|
|
break;
|
2001-07-04 07:03:51 +02:00
|
|
|
case 's':
|
2010-02-11 23:21:02 +01:00
|
|
|
pkcs11provider = optarg;
|
2001-07-04 07:03:51 +02:00
|
|
|
break;
|
|
|
|
case 'e':
|
2001-12-21 04:45:46 +01:00
|
|
|
deleting = 1;
|
2010-02-11 23:21:02 +01:00
|
|
|
pkcs11provider = optarg;
|
2001-07-04 07:03:51 +02:00
|
|
|
break;
|
2002-06-06 23:54:57 +02:00
|
|
|
case 't':
|
2002-06-11 17:51:54 +02:00
|
|
|
if ((lifetime = convtime(optarg)) == -1) {
|
|
|
|
fprintf(stderr, "Invalid lifetime\n");
|
|
|
|
ret = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
2002-06-06 23:54:57 +02:00
|
|
|
break;
|
2001-07-04 07:03:51 +02:00
|
|
|
default:
|
|
|
|
usage();
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
2001-07-04 05:50:02 +02:00
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2014-12-21 23:27:55 +01:00
|
|
|
|
|
|
|
if ((xflag != 0) + (lflag != 0) + (Dflag != 0) > 1)
|
|
|
|
fatal("Invalid combination of actions");
|
|
|
|
else if (xflag) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (lock_agent(agent_fd, xflag == 'x' ? 1 : 0) == -1)
|
2014-12-21 23:27:55 +01:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
|
|
|
} else if (lflag) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (list_identities(agent_fd, lflag == 'l' ? 1 : 0) == -1)
|
2014-12-21 23:27:55 +01:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
|
|
|
} else if (Dflag) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (delete_all(agent_fd) == -1)
|
2014-12-21 23:27:55 +01:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-07-04 07:03:51 +02:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2010-02-11 23:21:02 +01:00
|
|
|
if (pkcs11provider != NULL) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (update_card(agent_fd, !deleting, pkcs11provider) == -1)
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 1;
|
2001-07-04 07:03:51 +02:00
|
|
|
goto done;
|
2001-07-04 05:50:02 +02:00
|
|
|
}
|
2001-07-04 07:03:51 +02:00
|
|
|
if (argc == 0) {
|
2002-01-22 13:05:59 +01:00
|
|
|
char buf[MAXPATHLEN];
|
|
|
|
struct passwd *pw;
|
2002-03-22 04:21:16 +01:00
|
|
|
struct stat st;
|
|
|
|
int count = 0;
|
2002-01-22 13:05:59 +01:00
|
|
|
|
|
|
|
if ((pw = getpwuid(getuid())) == NULL) {
|
2000-08-29 02:33:50 +02:00
|
|
|
fprintf(stderr, "No user found with uid %u\n",
|
|
|
|
(u_int)getuid());
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 1;
|
|
|
|
goto done;
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2002-01-22 13:05:59 +01:00
|
|
|
|
2005-03-14 13:08:12 +01:00
|
|
|
for (i = 0; default_files[i]; i++) {
|
2002-03-22 03:54:23 +01:00
|
|
|
snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir,
|
2002-01-22 13:05:59 +01:00
|
|
|
default_files[i]);
|
2002-03-22 04:21:16 +01:00
|
|
|
if (stat(buf, &st) < 0)
|
|
|
|
continue;
|
2015-01-14 21:05:27 +01:00
|
|
|
if (do_file(agent_fd, deleting, key_only, buf) == -1)
|
2001-10-03 19:43:01 +02:00
|
|
|
ret = 1;
|
2002-03-22 04:21:16 +01:00
|
|
|
else
|
|
|
|
count++;
|
2001-10-03 19:43:01 +02:00
|
|
|
}
|
2002-03-22 04:21:16 +01:00
|
|
|
if (count == 0)
|
|
|
|
ret = 1;
|
2001-07-04 07:03:51 +02:00
|
|
|
} else {
|
2005-03-14 13:08:12 +01:00
|
|
|
for (i = 0; i < argc; i++) {
|
2015-01-14 21:05:27 +01:00
|
|
|
if (do_file(agent_fd, deleting, key_only,
|
|
|
|
argv[i]) == -1)
|
2002-01-22 13:05:59 +01:00
|
|
|
ret = 1;
|
2001-07-04 07:03:51 +02:00
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2001-04-10 04:45:32 +02:00
|
|
|
clear_pass();
|
2001-07-04 07:03:51 +02:00
|
|
|
|
|
|
|
done:
|
2015-01-14 21:05:27 +01:00
|
|
|
ssh_close_authentication_socket(agent_fd);
|
2001-10-03 19:43:01 +02:00
|
|
|
return ret;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|