blob: 915a6da48de9eaec5a115a022be987d909df107d [file] [log] [blame]
djm@openbsd.org56912de2017-04-30 23:10:43 +00001/* $OpenBSD: authfd.c,v 1.101 2017/04/30 23:10:43 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Functions for connecting the local authentication agent.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * 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".
Damien Millerad833b32000-08-23 10:46:23 +100013 *
Damien Millere4340be2000-09-16 13:29:08 +110014 * SSH2 implementation,
15 * Copyright (c) 2000 Markus Friedl. All rights reserved.
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.
Damien Miller95def091999-11-25 00:26:21 +110036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Damien Miller574c41f2006-03-15 11:40:10 +110039
40#include <sys/types.h>
41#include <sys/un.h>
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/socket.h>
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043
Damien Miller57cf6382006-07-10 21:13:46 +100044#include <fcntl.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100045#include <stdlib.h>
Damien Millerd7834352006-08-05 12:39:39 +100046#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100047#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100048#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100049#include <unistd.h>
djm@openbsd.org141efe42015-01-14 20:05:27 +000050#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100051
Damien Millerd7834352006-08-05 12:39:39 +100052#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "ssh.h"
54#include "rsa.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +000055#include "sshbuf.h"
56#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100057#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058#include "cipher.h"
Damien Miller62cee002000-09-23 17:15:56 +110059#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "log.h"
61#include "atomicio.h"
Damien Miller3f941882006-03-31 23:13:02 +110062#include "misc.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +000063#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
djm@openbsd.org141efe42015-01-14 20:05:27 +000065#define MAX_AGENT_IDENTITIES 2048 /* Max keys in agent reply */
66#define MAX_AGENT_REPLY_LEN (256 * 1024) /* Max bytes in agent reply */
Damien Miller37023962000-07-11 17:31:38 +100067
Damien Miller874d77b2000-10-14 16:23:11 +110068/* macro to check for "agent failure" message */
69#define agent_failed(x) \
djm@openbsd.org141efe42015-01-14 20:05:27 +000070 ((x == SSH_AGENT_FAILURE) || \
71 (x == SSH_COM_AGENT2_FAILURE) || \
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000072 (x == SSH2_AGENT_FAILURE))
Damien Miller874d77b2000-10-14 16:23:11 +110073
djm@openbsd.org141efe42015-01-14 20:05:27 +000074/* Convert success/failure response from agent to a err.h status */
75static int
76decode_reply(u_char type)
Damien Miller789e95d2002-09-12 09:52:46 +100077{
djm@openbsd.org141efe42015-01-14 20:05:27 +000078 if (agent_failed(type))
79 return SSH_ERR_AGENT_FAILURE;
80 else if (type == SSH_AGENT_SUCCESS)
Damien Miller789e95d2002-09-12 09:52:46 +100081 return 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +000082 else
83 return SSH_ERR_INVALID_FORMAT;
Damien Miller789e95d2002-09-12 09:52:46 +100084}
85
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086/* Returns the number of the authentication fd, or -1 if there is none. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087int
djm@openbsd.org141efe42015-01-14 20:05:27 +000088ssh_get_authentication_socket(int *fdp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089{
Damien Miller95def091999-11-25 00:26:21 +110090 const char *authsocket;
djm@openbsd.org141efe42015-01-14 20:05:27 +000091 int sock, oerrno;
Damien Miller95def091999-11-25 00:26:21 +110092 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
djm@openbsd.org141efe42015-01-14 20:05:27 +000094 if (fdp != NULL)
95 *fdp = -1;
96
Damien Miller95def091999-11-25 00:26:21 +110097 authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
98 if (!authsocket)
djm@openbsd.org141efe42015-01-14 20:05:27 +000099 return SSH_ERR_AGENT_NOT_PRESENT;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Miller1d2c4562014-02-04 11:18:20 +1100101 memset(&sunaddr, 0, sizeof(sunaddr));
Damien Miller95def091999-11-25 00:26:21 +1100102 sunaddr.sun_family = AF_UNIX;
103 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
Damien Miller10f6f6b1999-11-17 17:29:08 +1100104
djm@openbsd.org141efe42015-01-14 20:05:27 +0000105 if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
106 return SSH_ERR_SYSTEM_ERROR;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller95def091999-11-25 00:26:21 +1100108 /* close on exec */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000109 if (fcntl(sock, F_SETFD, FD_CLOEXEC) == -1 ||
110 connect(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
111 oerrno = errno;
Damien Miller95def091999-11-25 00:26:21 +1100112 close(sock);
djm@openbsd.org141efe42015-01-14 20:05:27 +0000113 errno = oerrno;
114 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +1100115 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000116 if (fdp != NULL)
117 *fdp = sock;
118 else
Damien Miller95def091999-11-25 00:26:21 +1100119 close(sock);
djm@openbsd.org141efe42015-01-14 20:05:27 +0000120 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121}
122
djm@openbsd.org141efe42015-01-14 20:05:27 +0000123/* Communicate with agent: send request and read reply */
Ben Lindstrombba81212001-06-25 05:01:22 +0000124static int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000125ssh_request_reply(int sock, struct sshbuf *request, struct sshbuf *reply)
Damien Miller942da032000-08-18 13:59:06 +1000126{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000127 int r;
128 size_t l, len;
Damien Miller942da032000-08-18 13:59:06 +1000129 char buf[1024];
130
131 /* Get the length of the message, and format it in the buffer. */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000132 len = sshbuf_len(request);
Damien Miller3f941882006-03-31 23:13:02 +1100133 put_u32(buf, len);
Damien Miller942da032000-08-18 13:59:06 +1000134
135 /* Send the length and then the packet to the agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000136 if (atomicio(vwrite, sock, buf, 4) != 4 ||
137 atomicio(vwrite, sock, (u_char *)sshbuf_ptr(request),
138 sshbuf_len(request)) != sshbuf_len(request))
139 return SSH_ERR_AGENT_COMMUNICATION;
Damien Miller942da032000-08-18 13:59:06 +1000140 /*
141 * Wait for response from the agent. First read the length of the
142 * response packet.
143 */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000144 if (atomicio(read, sock, buf, 4) != 4)
145 return SSH_ERR_AGENT_COMMUNICATION;
Damien Miller942da032000-08-18 13:59:06 +1000146
147 /* Extract the length, and check it for sanity. */
Damien Miller3f941882006-03-31 23:13:02 +1100148 len = get_u32(buf);
djm@openbsd.org141efe42015-01-14 20:05:27 +0000149 if (len > MAX_AGENT_REPLY_LEN)
150 return SSH_ERR_INVALID_FORMAT;
Damien Miller942da032000-08-18 13:59:06 +1000151
152 /* Read the rest of the response in to the buffer. */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000153 sshbuf_reset(reply);
Damien Miller942da032000-08-18 13:59:06 +1000154 while (len > 0) {
155 l = len;
156 if (l > sizeof(buf))
157 l = sizeof(buf);
djm@openbsd.org141efe42015-01-14 20:05:27 +0000158 if (atomicio(read, sock, buf, l) != l)
159 return SSH_ERR_AGENT_COMMUNICATION;
160 if ((r = sshbuf_put(reply, buf, l)) != 0)
161 return r;
Damien Miller942da032000-08-18 13:59:06 +1000162 len -= l;
163 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000164 return 0;
Damien Miller942da032000-08-18 13:59:06 +1000165}
166
Damien Miller5428f641999-11-25 11:54:57 +1100167/*
168 * Closes the agent socket if it should be closed (depends on how it was
169 * obtained). The argument must have been returned by
170 * ssh_get_authentication_socket().
171 */
Damien Miller4af51302000-04-16 11:18:38 +1000172void
Damien Miller95def091999-11-25 00:26:21 +1100173ssh_close_authentication_socket(int sock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174{
Damien Miller95def091999-11-25 00:26:21 +1100175 if (getenv(SSH_AUTHSOCKET_ENV_NAME))
176 close(sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177}
178
Ben Lindstrom2f717042002-06-06 21:52:03 +0000179/* Lock/unlock agent */
180int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000181ssh_lock_agent(int sock, int lock, const char *password)
Ben Lindstrom2f717042002-06-06 21:52:03 +0000182{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000183 int r;
184 u_char type = lock ? SSH_AGENTC_LOCK : SSH_AGENTC_UNLOCK;
185 struct sshbuf *msg;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000186
djm@openbsd.org141efe42015-01-14 20:05:27 +0000187 if ((msg = sshbuf_new()) == NULL)
188 return SSH_ERR_ALLOC_FAIL;
189 if ((r = sshbuf_put_u8(msg, type)) != 0 ||
190 (r = sshbuf_put_cstring(msg, password)) != 0)
191 goto out;
192 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
193 goto out;
194 if ((r = sshbuf_get_u8(msg, &type)) != 0)
195 goto out;
196 r = decode_reply(type);
197 out:
198 sshbuf_free(msg);
199 return r;
200}
Ben Lindstrom2f717042002-06-06 21:52:03 +0000201
djm@openbsd.org141efe42015-01-14 20:05:27 +0000202
203static int
204deserialise_identity2(struct sshbuf *ids, struct sshkey **keyp, char **commentp)
205{
206 int r;
207 char *comment = NULL;
208 const u_char *blob;
209 size_t blen;
210
211 if ((r = sshbuf_get_string_direct(ids, &blob, &blen)) != 0 ||
212 (r = sshbuf_get_cstring(ids, &comment, NULL)) != 0)
213 goto out;
214 if ((r = sshkey_from_blob(blob, blen, keyp)) != 0)
215 goto out;
216 if (commentp != NULL) {
217 *commentp = comment;
218 comment = NULL;
219 }
220 r = 0;
221 out:
222 free(comment);
223 return r;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000224}
225
Damien Miller5428f641999-11-25 11:54:57 +1100226/*
djm@openbsd.org141efe42015-01-14 20:05:27 +0000227 * Fetch list of identities held by the agent.
Damien Miller5428f641999-11-25 11:54:57 +1100228 */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100229int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000230ssh_fetch_identitylist(int sock, int version, struct ssh_identitylist **idlp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000232 u_char type, code1 = 0, code2 = 0;
233 u_int32_t num, i;
234 struct sshbuf *msg;
235 struct ssh_identitylist *idl = NULL;
236 int r;
Damien Millerad833b32000-08-23 10:46:23 +1000237
djm@openbsd.org141efe42015-01-14 20:05:27 +0000238 /* Determine request and expected response types */
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000239 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000240 case 1:
241 code1 = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
242 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER;
243 break;
244 case 2:
245 code1 = SSH2_AGENTC_REQUEST_IDENTITIES;
246 code2 = SSH2_AGENT_IDENTITIES_ANSWER;
247 break;
248 default:
djm@openbsd.org141efe42015-01-14 20:05:27 +0000249 return SSH_ERR_INVALID_ARGUMENT;
Damien Millerad833b32000-08-23 10:46:23 +1000250 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Damien Miller5428f641999-11-25 11:54:57 +1100252 /*
253 * Send a message to the agent requesting for a list of the
254 * identities it can represent.
255 */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000256 if ((msg = sshbuf_new()) == NULL)
257 return SSH_ERR_ALLOC_FAIL;
258 if ((r = sshbuf_put_u8(msg, code1)) != 0)
259 goto out;
Damien Miller942da032000-08-18 13:59:06 +1000260
djm@openbsd.org141efe42015-01-14 20:05:27 +0000261 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
262 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263
Damien Miller95def091999-11-25 00:26:21 +1100264 /* Get message type, and verify that we got a proper answer. */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000265 if ((r = sshbuf_get_u8(msg, &type)) != 0)
266 goto out;
Damien Miller874d77b2000-10-14 16:23:11 +1100267 if (agent_failed(type)) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000268 r = SSH_ERR_AGENT_FAILURE;
269 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000270 } else if (type != code2) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000271 r = SSH_ERR_INVALID_FORMAT;
272 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000273 }
Damien Miller95def091999-11-25 00:26:21 +1100274
275 /* Get the number of entries in the response and check it for sanity. */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000276 if ((r = sshbuf_get_u32(msg, &num)) != 0)
277 goto out;
278 if (num > MAX_AGENT_IDENTITIES) {
279 r = SSH_ERR_INVALID_FORMAT;
280 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000281 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000282 if (num == 0) {
283 r = SSH_ERR_AGENT_NO_IDENTITIES;
284 goto out;
285 }
286
287 /* Deserialise the response into a list of keys/comments */
288 if ((idl = calloc(1, sizeof(*idl))) == NULL ||
289 (idl->keys = calloc(num, sizeof(*idl->keys))) == NULL ||
290 (idl->comments = calloc(num, sizeof(*idl->comments))) == NULL) {
291 r = SSH_ERR_ALLOC_FAIL;
292 goto out;
293 }
294 for (i = 0; i < num;) {
295 switch (version) {
296 case 1:
djm@openbsd.org141efe42015-01-14 20:05:27 +0000297 break;
298 case 2:
299 if ((r = deserialise_identity2(msg,
300 &(idl->keys[i]), &(idl->comments[i]))) != 0) {
301 if (r == SSH_ERR_KEY_TYPE_UNKNOWN) {
302 /* Gracefully skip unknown key types */
303 num--;
304 continue;
305 } else
306 goto out;
307 }
308 break;
309 }
310 i++;
311 }
312 idl->nkeys = num;
313 *idlp = idl;
314 idl = NULL;
315 r = 0;
316 out:
317 sshbuf_free(msg);
318 if (idl != NULL)
319 ssh_free_identitylist(idl);
320 return r;
321}
322
323void
324ssh_free_identitylist(struct ssh_identitylist *idl)
325{
326 size_t i;
327
328 if (idl == NULL)
329 return;
330 for (i = 0; i < idl->nkeys; i++) {
331 if (idl->keys != NULL)
332 sshkey_free(idl->keys[i]);
333 if (idl->comments != NULL)
334 free(idl->comments[i]);
335 }
336 free(idl);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337}
338
Damien Miller5428f641999-11-25 11:54:57 +1100339/*
djm@openbsd.org141efe42015-01-14 20:05:27 +0000340 * Sends a challenge (typically from a server via ssh(1)) to the agent,
341 * and waits for a response from the agent.
342 * Returns true (non-zero) if the agent gave the correct answer, zero
343 * otherwise.
Damien Miller5428f641999-11-25 11:54:57 +1100344 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000347/* encode signature algoritm in flag bits, so we can keep the msg format */
348static u_int
349agent_encode_alg(struct sshkey *key, const char *alg)
350{
351 if (alg != NULL && key->type == KEY_RSA) {
352 if (strcmp(alg, "rsa-sha2-256") == 0)
353 return SSH_AGENT_RSA_SHA2_256;
354 else if (strcmp(alg, "rsa-sha2-512") == 0)
355 return SSH_AGENT_RSA_SHA2_512;
356 }
357 return 0;
358}
359
djm@openbsd.org141efe42015-01-14 20:05:27 +0000360/* ask agent to sign data, returns err.h code on error, 0 on success */
Damien Millerad833b32000-08-23 10:46:23 +1000361int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000362ssh_agent_sign(int sock, struct sshkey *key,
363 u_char **sigp, size_t *lenp,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000364 const u_char *data, size_t datalen, const char *alg, u_int compat)
Damien Millerad833b32000-08-23 10:46:23 +1000365{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000366 struct sshbuf *msg;
367 u_char *blob = NULL, type;
368 size_t blen = 0, len = 0;
369 u_int flags = 0;
370 int r = SSH_ERR_INTERNAL_ERROR;
Damien Millerad833b32000-08-23 10:46:23 +1000371
markus@openbsd.orgfecede02015-03-26 19:32:19 +0000372 *sigp = NULL;
373 *lenp = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000374
djm@openbsd.org141efe42015-01-14 20:05:27 +0000375 if (datalen > SSH_KEY_MAX_SIGN_DATA_SIZE)
376 return SSH_ERR_INVALID_ARGUMENT;
377 if (compat & SSH_BUG_SIGBLOB)
378 flags |= SSH_AGENT_OLD_SIGNATURE;
379 if ((msg = sshbuf_new()) == NULL)
380 return SSH_ERR_ALLOC_FAIL;
381 if ((r = sshkey_to_blob(key, &blob, &blen)) != 0)
382 goto out;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000383 flags |= agent_encode_alg(key, alg);
djm@openbsd.org141efe42015-01-14 20:05:27 +0000384 if ((r = sshbuf_put_u8(msg, SSH2_AGENTC_SIGN_REQUEST)) != 0 ||
385 (r = sshbuf_put_string(msg, blob, blen)) != 0 ||
386 (r = sshbuf_put_string(msg, data, datalen)) != 0 ||
387 (r = sshbuf_put_u32(msg, flags)) != 0)
388 goto out;
jsg@openbsd.orgf3a3ea12015-09-02 07:51:12 +0000389 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
djm@openbsd.org141efe42015-01-14 20:05:27 +0000390 goto out;
391 if ((r = sshbuf_get_u8(msg, &type)) != 0)
392 goto out;
Damien Miller874d77b2000-10-14 16:23:11 +1100393 if (agent_failed(type)) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000394 r = SSH_ERR_AGENT_FAILURE;
395 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000396 } else if (type != SSH2_AGENT_SIGN_RESPONSE) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000397 r = SSH_ERR_INVALID_FORMAT;
398 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000399 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000400 if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
401 goto out;
markus@openbsd.orgfecede02015-03-26 19:32:19 +0000402 *lenp = len;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000403 r = 0;
404 out:
405 if (blob != NULL) {
406 explicit_bzero(blob, blen);
407 free(blob);
408 }
409 sshbuf_free(msg);
410 return r;
Damien Millerad833b32000-08-23 10:46:23 +1000411}
412
Damien Miller994cf142000-07-21 10:19:44 +1000413/* Encode key for a message to the agent. */
414
Damien Miller994cf142000-07-21 10:19:44 +1000415
djm@openbsd.org141efe42015-01-14 20:05:27 +0000416static int
417ssh_encode_identity_ssh2(struct sshbuf *b, struct sshkey *key,
418 const char *comment)
Damien Miller994cf142000-07-21 10:19:44 +1000419{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000420 int r;
421
422 if ((r = sshkey_private_serialize(key, b)) != 0 ||
423 (r = sshbuf_put_cstring(b, comment)) != 0)
424 return r;
425 return 0;
426}
427
428static int
429encode_constraints(struct sshbuf *m, u_int life, u_int confirm)
430{
431 int r;
432
433 if (life != 0) {
434 if ((r = sshbuf_put_u8(m, SSH_AGENT_CONSTRAIN_LIFETIME)) != 0 ||
435 (r = sshbuf_put_u32(m, life)) != 0)
436 goto out;
437 }
438 if (confirm != 0) {
439 if ((r = sshbuf_put_u8(m, SSH_AGENT_CONSTRAIN_CONFIRM)) != 0)
440 goto out;
441 }
442 r = 0;
443 out:
444 return r;
Damien Miller994cf142000-07-21 10:19:44 +1000445}
446
Damien Miller5428f641999-11-25 11:54:57 +1100447/*
djm@openbsd.org141efe42015-01-14 20:05:27 +0000448 * Adds an identity to the authentication server.
449 * This call is intended only for use by ssh-add(1) and like applications.
Damien Miller5428f641999-11-25 11:54:57 +1100450 */
Damien Miller4af51302000-04-16 11:18:38 +1000451int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000452ssh_add_identity_constrained(int sock, struct sshkey *key, const char *comment,
453 u_int life, u_int confirm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000455 struct sshbuf *msg;
456 int r, constrained = (life || confirm);
457 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458
djm@openbsd.org141efe42015-01-14 20:05:27 +0000459 if ((msg = sshbuf_new()) == NULL)
460 return SSH_ERR_ALLOC_FAIL;
Damien Miller994cf142000-07-21 10:19:44 +1000461
462 switch (key->type) {
Damien Miller1f0311c2014-05-15 14:24:09 +1000463#ifdef WITH_OPENSSL
Damien Miller0bc1bd82000-11-13 22:57:25 +1100464 case KEY_RSA:
Damien Miller0a80ca12010-02-27 07:55:05 +1100465 case KEY_RSA_CERT:
Damien Miller994cf142000-07-21 10:19:44 +1000466 case KEY_DSA:
Damien Miller0a80ca12010-02-27 07:55:05 +1100467 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000468 case KEY_ECDSA:
469 case KEY_ECDSA_CERT:
Damien Miller1f0311c2014-05-15 14:24:09 +1000470#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +1100471 case KEY_ED25519:
472 case KEY_ED25519_CERT:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000473 type = constrained ?
474 SSH2_AGENTC_ADD_ID_CONSTRAINED :
475 SSH2_AGENTC_ADD_IDENTITY;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000476 if ((r = sshbuf_put_u8(msg, type)) != 0 ||
477 (r = ssh_encode_identity_ssh2(msg, key, comment)) != 0)
478 goto out;
Damien Miller994cf142000-07-21 10:19:44 +1000479 break;
480 default:
djm@openbsd.org141efe42015-01-14 20:05:27 +0000481 r = SSH_ERR_INVALID_ARGUMENT;
482 goto out;
Damien Miller994cf142000-07-21 10:19:44 +1000483 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000484 if (constrained &&
485 (r = encode_constraints(msg, life, confirm)) != 0)
486 goto out;
487 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
488 goto out;
489 if ((r = sshbuf_get_u8(msg, &type)) != 0)
490 goto out;
491 r = decode_reply(type);
492 out:
493 sshbuf_free(msg);
494 return r;
Damien Miller95def091999-11-25 00:26:21 +1100495}
496
Damien Miller5428f641999-11-25 11:54:57 +1100497/*
djm@openbsd.org141efe42015-01-14 20:05:27 +0000498 * Removes an identity from the authentication server.
499 * This call is intended only for use by ssh-add(1) and like applications.
Damien Miller5428f641999-11-25 11:54:57 +1100500 */
Damien Miller4af51302000-04-16 11:18:38 +1000501int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000502ssh_remove_identity(int sock, struct sshkey *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000504 struct sshbuf *msg;
505 int r;
506 u_char type, *blob = NULL;
507 size_t blen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508
djm@openbsd.org141efe42015-01-14 20:05:27 +0000509 if ((msg = sshbuf_new()) == NULL)
510 return SSH_ERR_ALLOC_FAIL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
Damien Miller1f0311c2014-05-15 14:24:09 +1000512 if (key->type != KEY_UNSPEC) {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000513 if ((r = sshkey_to_blob(key, &blob, &blen)) != 0)
514 goto out;
515 if ((r = sshbuf_put_u8(msg,
516 SSH2_AGENTC_REMOVE_IDENTITY)) != 0 ||
517 (r = sshbuf_put_string(msg, blob, blen)) != 0)
518 goto out;
Damien Millerad833b32000-08-23 10:46:23 +1000519 } else {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000520 r = SSH_ERR_INVALID_ARGUMENT;
521 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000523 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
524 goto out;
525 if ((r = sshbuf_get_u8(msg, &type)) != 0)
526 goto out;
527 r = decode_reply(type);
528 out:
529 if (blob != NULL) {
530 explicit_bzero(blob, blen);
531 free(blob);
Damien Millerad833b32000-08-23 10:46:23 +1000532 }
djm@openbsd.org141efe42015-01-14 20:05:27 +0000533 sshbuf_free(msg);
534 return r;
Damien Miller95def091999-11-25 00:26:21 +1100535}
536
djm@openbsd.org141efe42015-01-14 20:05:27 +0000537/*
538 * Add/remove an token-based identity from the authentication server.
539 * This call is intended only for use by ssh-add(1) and like applications.
540 */
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000541int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000542ssh_update_card(int sock, int add, const char *reader_id, const char *pin,
543 u_int life, u_int confirm)
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000544{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000545 struct sshbuf *msg;
546 int r, constrained = (life || confirm);
547 u_char type;
Damien Millerd94f20d2003-06-11 22:06:33 +1000548
549 if (add) {
550 type = constrained ?
551 SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED :
552 SSH_AGENTC_ADD_SMARTCARD_KEY;
553 } else
554 type = SSH_AGENTC_REMOVE_SMARTCARD_KEY;
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000555
djm@openbsd.org141efe42015-01-14 20:05:27 +0000556 if ((msg = sshbuf_new()) == NULL)
557 return SSH_ERR_ALLOC_FAIL;
558 if ((r = sshbuf_put_u8(msg, type)) != 0 ||
559 (r = sshbuf_put_cstring(msg, reader_id)) != 0 ||
560 (r = sshbuf_put_cstring(msg, pin)) != 0)
561 goto out;
562 if (constrained &&
563 (r = encode_constraints(msg, life, confirm)) != 0)
564 goto out;
565 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
566 goto out;
567 if ((r = sshbuf_get_u8(msg, &type)) != 0)
568 goto out;
569 r = decode_reply(type);
570 out:
571 sshbuf_free(msg);
572 return r;
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000573}
574
Damien Miller5428f641999-11-25 11:54:57 +1100575/*
djm@openbsd.org141efe42015-01-14 20:05:27 +0000576 * Removes all identities from the agent.
577 * This call is intended only for use by ssh-add(1) and like applications.
Damien Miller5428f641999-11-25 11:54:57 +1100578 */
Damien Miller4af51302000-04-16 11:18:38 +1000579int
djm@openbsd.org141efe42015-01-14 20:05:27 +0000580ssh_remove_all_identities(int sock, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000582 struct sshbuf *msg;
583 u_char type = (version == 1) ?
584 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
585 SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
586 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
djm@openbsd.org141efe42015-01-14 20:05:27 +0000588 if ((msg = sshbuf_new()) == NULL)
589 return SSH_ERR_ALLOC_FAIL;
590 if ((r = sshbuf_put_u8(msg, type)) != 0)
591 goto out;
592 if ((r = ssh_request_reply(sock, msg, msg)) != 0)
593 goto out;
594 if ((r = sshbuf_get_u8(msg, &type)) != 0)
595 goto out;
596 r = decode_reply(type);
597 out:
598 sshbuf_free(msg);
599 return r;
Damien Miller95def091999-11-25 00:26:21 +1100600}