blob: f8b7ed71fa4bd90ec8fc00d2a6d140f963eabe67 [file] [log] [blame]
Damien Millere6b3b612006-07-24 14:01:23 +10001/* $OpenBSD: authfd.c,v 1.77 2006/07/17 01:31:09 stevesk 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
44#include <openssl/evp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller57cf6382006-07-10 21:13:46 +100046#include <fcntl.h>
Damien Millere6b3b612006-07-24 14:01:23 +100047#include <unistd.h>
Damien Miller57cf6382006-07-10 21:13:46 +100048
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "ssh.h"
50#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "buffer.h"
52#include "bufaux.h"
53#include "xmalloc.h"
Damien Miller994cf142000-07-21 10:19:44 +100054#include "key.h"
55#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "cipher.h"
Damien Miller994cf142000-07-21 10:19:44 +100057#include "kex.h"
Damien Miller62cee002000-09-23 17:15:56 +110058#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059#include "log.h"
60#include "atomicio.h"
Damien Miller3f941882006-03-31 23:13:02 +110061#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller789e95d2002-09-12 09:52:46 +100063static int agent_present = 0;
64
Damien Miller37023962000-07-11 17:31:38 +100065/* helper */
Damien Miller942da032000-08-18 13:59:06 +100066int decode_reply(int type);
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) \
Ben Lindstromc9a26362001-08-15 23:04:50 +000070 ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE) || \
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000071 (x == SSH2_AGENT_FAILURE))
Damien Miller874d77b2000-10-14 16:23:11 +110072
Damien Miller789e95d2002-09-12 09:52:46 +100073int
74ssh_agent_present(void)
75{
76 int authfd;
77
78 if (agent_present)
79 return 1;
80 if ((authfd = ssh_get_authentication_socket()) == -1)
81 return 0;
82 else {
83 ssh_close_authentication_socket(authfd);
84 return 1;
85 }
86}
87
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088/* Returns the number of the authentication fd, or -1 if there is none. */
89
90int
Ben Lindstrom46c16222000-12-22 01:43:59 +000091ssh_get_authentication_socket(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092{
Damien Miller95def091999-11-25 00:26:21 +110093 const char *authsocket;
Ben Lindstromb1d822c2001-09-20 01:03:31 +000094 int sock;
Damien Miller95def091999-11-25 00:26:21 +110095 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller95def091999-11-25 00:26:21 +110097 authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
98 if (!authsocket)
99 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Miller95def091999-11-25 00:26:21 +1100101 sunaddr.sun_family = AF_UNIX;
102 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
Damien Miller10f6f6b1999-11-17 17:29:08 +1100103
Damien Miller95def091999-11-25 00:26:21 +1100104 sock = socket(AF_UNIX, SOCK_STREAM, 0);
105 if (sock < 0)
106 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller95def091999-11-25 00:26:21 +1100108 /* close on exec */
109 if (fcntl(sock, F_SETFD, 1) == -1) {
110 close(sock);
111 return -1;
112 }
Damien Millerd62f2ca2006-03-26 13:57:41 +1100113 if (connect(sock, (struct sockaddr *)&sunaddr, sizeof sunaddr) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100114 close(sock);
115 return -1;
116 }
Damien Miller789e95d2002-09-12 09:52:46 +1000117 agent_present = 1;
Damien Miller95def091999-11-25 00:26:21 +1100118 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119}
120
Ben Lindstrombba81212001-06-25 05:01:22 +0000121static int
Damien Millerad833b32000-08-23 10:46:23 +1000122ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
Damien Miller942da032000-08-18 13:59:06 +1000123{
Damien Millereccb9de2005-06-17 12:59:34 +1000124 u_int l, len;
Damien Miller942da032000-08-18 13:59:06 +1000125 char buf[1024];
126
127 /* Get the length of the message, and format it in the buffer. */
128 len = buffer_len(request);
Damien Miller3f941882006-03-31 23:13:02 +1100129 put_u32(buf, len);
Damien Miller942da032000-08-18 13:59:06 +1000130
131 /* Send the length and then the packet to the agent. */
Darren Tucker9f63f222003-07-03 13:46:56 +1000132 if (atomicio(vwrite, auth->fd, buf, 4) != 4 ||
133 atomicio(vwrite, auth->fd, buffer_ptr(request),
Damien Miller942da032000-08-18 13:59:06 +1000134 buffer_len(request)) != buffer_len(request)) {
135 error("Error writing to authentication socket.");
136 return 0;
137 }
138 /*
139 * Wait for response from the agent. First read the length of the
140 * response packet.
141 */
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000142 if (atomicio(read, auth->fd, buf, 4) != 4) {
143 error("Error reading response length from authentication socket.");
144 return 0;
Damien Miller942da032000-08-18 13:59:06 +1000145 }
146
147 /* Extract the length, and check it for sanity. */
Damien Miller3f941882006-03-31 23:13:02 +1100148 len = get_u32(buf);
Damien Miller942da032000-08-18 13:59:06 +1000149 if (len > 256 * 1024)
Darren Tuckerc0815c92003-09-22 21:05:50 +1000150 fatal("Authentication response too long: %u", len);
Damien Miller942da032000-08-18 13:59:06 +1000151
152 /* Read the rest of the response in to the buffer. */
153 buffer_clear(reply);
154 while (len > 0) {
155 l = len;
156 if (l > sizeof(buf))
157 l = sizeof(buf);
Damien Millerb253cc42005-05-26 12:23:44 +1000158 if (atomicio(read, auth->fd, buf, l) != l) {
Damien Miller942da032000-08-18 13:59:06 +1000159 error("Error reading response from authentication socket.");
160 return 0;
161 }
Ben Lindstrom6398a0e2002-06-25 23:22:54 +0000162 buffer_append(reply, buf, l);
Damien Miller942da032000-08-18 13:59:06 +1000163 len -= l;
164 }
165 return 1;
166}
167
Damien Miller5428f641999-11-25 11:54:57 +1100168/*
169 * Closes the agent socket if it should be closed (depends on how it was
170 * obtained). The argument must have been returned by
171 * ssh_get_authentication_socket().
172 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Damien Miller4af51302000-04-16 11:18:38 +1000174void
Damien Miller95def091999-11-25 00:26:21 +1100175ssh_close_authentication_socket(int sock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176{
Damien Miller95def091999-11-25 00:26:21 +1100177 if (getenv(SSH_AUTHSOCKET_ENV_NAME))
178 close(sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179}
180
Damien Miller5428f641999-11-25 11:54:57 +1100181/*
182 * Opens and connects a private socket for communication with the
183 * authentication agent. Returns the file descriptor (which must be
184 * shut down and closed by the caller when no longer needed).
185 * Returns NULL if an error occurred and the connection could not be
186 * opened.
187 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188
Damien Miller95def091999-11-25 00:26:21 +1100189AuthenticationConnection *
Ben Lindstrom46c16222000-12-22 01:43:59 +0000190ssh_get_authentication_connection(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191{
Damien Miller95def091999-11-25 00:26:21 +1100192 AuthenticationConnection *auth;
193 int sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194
Damien Miller95def091999-11-25 00:26:21 +1100195 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Damien Miller5428f641999-11-25 11:54:57 +1100197 /*
198 * Fail if we couldn't obtain a connection. This happens if we
199 * exited due to a timeout.
200 */
Damien Miller95def091999-11-25 00:26:21 +1100201 if (sock < 0)
202 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller95def091999-11-25 00:26:21 +1100204 auth = xmalloc(sizeof(*auth));
205 auth->fd = sock;
Damien Miller95def091999-11-25 00:26:21 +1100206 buffer_init(&auth->identities);
207 auth->howmany = 0;
208
209 return auth;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210}
211
Damien Miller5428f641999-11-25 11:54:57 +1100212/*
213 * Closes the connection to the authentication agent and frees any associated
214 * memory.
215 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Damien Miller4af51302000-04-16 11:18:38 +1000217void
Damien Millerad833b32000-08-23 10:46:23 +1000218ssh_close_authentication_connection(AuthenticationConnection *auth)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219{
Damien Millerad833b32000-08-23 10:46:23 +1000220 buffer_free(&auth->identities);
221 close(auth->fd);
222 xfree(auth);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Ben Lindstrom2f717042002-06-06 21:52:03 +0000225/* Lock/unlock agent */
226int
227ssh_lock_agent(AuthenticationConnection *auth, int lock, const char *password)
228{
229 int type;
230 Buffer msg;
231
232 buffer_init(&msg);
233 buffer_put_char(&msg, lock ? SSH_AGENTC_LOCK : SSH_AGENTC_UNLOCK);
234 buffer_put_cstring(&msg, password);
235
236 if (ssh_request_reply(auth, &msg, &msg) == 0) {
237 buffer_free(&msg);
238 return 0;
239 }
240 type = buffer_get_char(&msg);
241 buffer_free(&msg);
242 return decode_reply(type);
243}
244
Damien Miller5428f641999-11-25 11:54:57 +1100245/*
246 * Returns the first authentication identity held by the agent.
Damien Miller5428f641999-11-25 11:54:57 +1100247 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248
Damien Miller0bc1bd82000-11-13 22:57:25 +1100249int
250ssh_get_num_identities(AuthenticationConnection *auth, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251{
Damien Millerad833b32000-08-23 10:46:23 +1000252 int type, code1 = 0, code2 = 0;
Damien Miller942da032000-08-18 13:59:06 +1000253 Buffer request;
Damien Millerad833b32000-08-23 10:46:23 +1000254
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000255 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000256 case 1:
257 code1 = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
258 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER;
259 break;
260 case 2:
261 code1 = SSH2_AGENTC_REQUEST_IDENTITIES;
262 code2 = SSH2_AGENT_IDENTITIES_ANSWER;
263 break;
264 default:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100265 return 0;
Damien Millerad833b32000-08-23 10:46:23 +1000266 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267
Damien Miller5428f641999-11-25 11:54:57 +1100268 /*
269 * Send a message to the agent requesting for a list of the
270 * identities it can represent.
271 */
Damien Miller942da032000-08-18 13:59:06 +1000272 buffer_init(&request);
Damien Millerad833b32000-08-23 10:46:23 +1000273 buffer_put_char(&request, code1);
Damien Miller942da032000-08-18 13:59:06 +1000274
275 buffer_clear(&auth->identities);
276 if (ssh_request_reply(auth, &request, &auth->identities) == 0) {
277 buffer_free(&request);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100278 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279 }
Damien Miller942da032000-08-18 13:59:06 +1000280 buffer_free(&request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Damien Miller95def091999-11-25 00:26:21 +1100282 /* Get message type, and verify that we got a proper answer. */
Damien Miller942da032000-08-18 13:59:06 +1000283 type = buffer_get_char(&auth->identities);
Damien Miller874d77b2000-10-14 16:23:11 +1100284 if (agent_failed(type)) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100285 return 0;
Damien Millerad833b32000-08-23 10:46:23 +1000286 } else if (type != code2) {
Damien Miller942da032000-08-18 13:59:06 +1000287 fatal("Bad authentication reply message type: %d", type);
Damien Millerad833b32000-08-23 10:46:23 +1000288 }
Damien Miller95def091999-11-25 00:26:21 +1100289
290 /* Get the number of entries in the response and check it for sanity. */
291 auth->howmany = buffer_get_int(&auth->identities);
Darren Tuckerc0815c92003-09-22 21:05:50 +1000292 if ((u_int)auth->howmany > 1024)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000293 fatal("Too many identities in authentication reply: %d",
Damien Miller942da032000-08-18 13:59:06 +1000294 auth->howmany);
Damien Miller95def091999-11-25 00:26:21 +1100295
Damien Miller0bc1bd82000-11-13 22:57:25 +1100296 return auth->howmany;
297}
298
299Key *
300ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version)
301{
302 /* get number of identities and return the first entry (if any). */
303 if (ssh_get_num_identities(auth, version) > 0)
304 return ssh_get_next_identity(auth, comment, version);
305 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306}
307
Damien Millerad833b32000-08-23 10:46:23 +1000308Key *
309ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
Damien Millereccb9de2005-06-17 12:59:34 +1000311 int keybits;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000312 u_int bits;
313 u_char *blob;
314 u_int blen;
Damien Millerad833b32000-08-23 10:46:23 +1000315 Key *key = NULL;
Damien Miller7e8e8201999-11-16 13:37:16 +1100316
Damien Miller95def091999-11-25 00:26:21 +1100317 /* Return failure if no more entries. */
318 if (auth->howmany <= 0)
Damien Millerad833b32000-08-23 10:46:23 +1000319 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320
Damien Miller5428f641999-11-25 11:54:57 +1100321 /*
322 * Get the next entry from the packet. These will abort with a fatal
323 * error if the packet is too short or contains corrupt data.
324 */
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000325 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000326 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100327 key = key_new(KEY_RSA1);
Damien Millerad833b32000-08-23 10:46:23 +1000328 bits = buffer_get_int(&auth->identities);
329 buffer_get_bignum(&auth->identities, key->rsa->e);
330 buffer_get_bignum(&auth->identities, key->rsa->n);
331 *comment = buffer_get_string(&auth->identities, NULL);
Damien Millereccb9de2005-06-17 12:59:34 +1000332 keybits = BN_num_bits(key->rsa->n);
333 if (keybits < 0 || bits != (u_int)keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000334 logit("Warning: identity keysize mismatch: actual %d, announced %u",
Damien Millerad833b32000-08-23 10:46:23 +1000335 BN_num_bits(key->rsa->n), bits);
336 break;
337 case 2:
338 blob = buffer_get_string(&auth->identities, &blen);
339 *comment = buffer_get_string(&auth->identities, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100340 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000341 xfree(blob);
342 break;
343 default:
344 return NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000345 }
Damien Miller95def091999-11-25 00:26:21 +1100346 /* Decrement the number of remaining entries. */
347 auth->howmany--;
Damien Millerad833b32000-08-23 10:46:23 +1000348 return key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349}
350
Damien Miller5428f641999-11-25 11:54:57 +1100351/*
352 * Generates a random challenge, sends it to the agent, and waits for
353 * response from the agent. Returns true (non-zero) if the agent gave the
354 * correct answer, zero otherwise. Response type selects the style of
355 * response desired, with 0 corresponding to protocol version 1.0 (no longer
356 * supported) and 1 corresponding to protocol version 1.1.
357 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
359int
360ssh_decrypt_challenge(AuthenticationConnection *auth,
Damien Millerad833b32000-08-23 10:46:23 +1000361 Key* key, BIGNUM *challenge,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000362 u_char session_id[16],
363 u_int response_type,
364 u_char response[16])
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365{
Damien Miller95def091999-11-25 00:26:21 +1100366 Buffer buffer;
Damien Miller942da032000-08-18 13:59:06 +1000367 int success = 0;
368 int i;
369 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370
Damien Miller0bc1bd82000-11-13 22:57:25 +1100371 if (key->type != KEY_RSA1)
Damien Millerad833b32000-08-23 10:46:23 +1000372 return 0;
373 if (response_type == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000374 logit("Compatibility with ssh protocol version 1.0 no longer supported.");
Damien Millerad833b32000-08-23 10:46:23 +1000375 return 0;
376 }
Damien Miller95def091999-11-25 00:26:21 +1100377 buffer_init(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000378 buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
Damien Millerad833b32000-08-23 10:46:23 +1000379 buffer_put_int(&buffer, BN_num_bits(key->rsa->n));
380 buffer_put_bignum(&buffer, key->rsa->e);
381 buffer_put_bignum(&buffer, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100382 buffer_put_bignum(&buffer, challenge);
Damien Miller4a8ed542002-01-22 23:33:31 +1100383 buffer_append(&buffer, session_id, 16);
Damien Miller95def091999-11-25 00:26:21 +1100384 buffer_put_int(&buffer, response_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385
Damien Miller942da032000-08-18 13:59:06 +1000386 if (ssh_request_reply(auth, &buffer, &buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100387 buffer_free(&buffer);
388 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389 }
Damien Miller942da032000-08-18 13:59:06 +1000390 type = buffer_get_char(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Damien Miller874d77b2000-10-14 16:23:11 +1100392 if (agent_failed(type)) {
Damien Miller996acd22003-04-09 20:59:48 +1000393 logit("Agent admitted failure to authenticate using the key.");
Damien Miller942da032000-08-18 13:59:06 +1000394 } else if (type != SSH_AGENT_RSA_RESPONSE) {
395 fatal("Bad authentication response: %d", type);
396 } else {
397 success = 1;
398 /*
399 * Get the response from the packet. This will abort with a
400 * fatal error if the packet is corrupt.
401 */
402 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100403 response[i] = (u_char)buffer_get_char(&buffer);
Damien Miller95def091999-11-25 00:26:21 +1100404 }
Damien Miller95def091999-11-25 00:26:21 +1100405 buffer_free(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000406 return success;
Damien Miller95def091999-11-25 00:26:21 +1100407}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408
Damien Millerad833b32000-08-23 10:46:23 +1000409/* ask agent to sign data, returns -1 on error, 0 on success */
410int
411ssh_agent_sign(AuthenticationConnection *auth,
412 Key *key,
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000413 u_char **sigp, u_int *lenp,
414 u_char *data, u_int datalen)
Damien Millerad833b32000-08-23 10:46:23 +1000415{
Damien Miller62cee002000-09-23 17:15:56 +1100416 extern int datafellows;
Damien Millerad833b32000-08-23 10:46:23 +1000417 Buffer msg;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000418 u_char *blob;
419 u_int blen;
Damien Miller62cee002000-09-23 17:15:56 +1100420 int type, flags = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000421 int ret = -1;
422
Damien Miller0bc1bd82000-11-13 22:57:25 +1100423 if (key_to_blob(key, &blob, &blen) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000424 return -1;
425
Damien Miller62cee002000-09-23 17:15:56 +1100426 if (datafellows & SSH_BUG_SIGBLOB)
427 flags = SSH_AGENT_OLD_SIGNATURE;
428
Damien Millerad833b32000-08-23 10:46:23 +1000429 buffer_init(&msg);
430 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
431 buffer_put_string(&msg, blob, blen);
432 buffer_put_string(&msg, data, datalen);
Damien Miller62cee002000-09-23 17:15:56 +1100433 buffer_put_int(&msg, flags);
Damien Millerad833b32000-08-23 10:46:23 +1000434 xfree(blob);
435
436 if (ssh_request_reply(auth, &msg, &msg) == 0) {
437 buffer_free(&msg);
438 return -1;
439 }
440 type = buffer_get_char(&msg);
Damien Miller874d77b2000-10-14 16:23:11 +1100441 if (agent_failed(type)) {
Damien Miller996acd22003-04-09 20:59:48 +1000442 logit("Agent admitted failure to sign using the key.");
Damien Millerad833b32000-08-23 10:46:23 +1000443 } else if (type != SSH2_AGENT_SIGN_RESPONSE) {
444 fatal("Bad authentication response: %d", type);
445 } else {
446 ret = 0;
447 *sigp = buffer_get_string(&msg, lenp);
448 }
449 buffer_free(&msg);
450 return ret;
451}
452
Damien Miller994cf142000-07-21 10:19:44 +1000453/* Encode key for a message to the agent. */
454
Ben Lindstrombba81212001-06-25 05:01:22 +0000455static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100456ssh_encode_identity_rsa1(Buffer *b, RSA *key, const char *comment)
Damien Miller994cf142000-07-21 10:19:44 +1000457{
Damien Miller994cf142000-07-21 10:19:44 +1000458 buffer_put_int(b, BN_num_bits(key->n));
459 buffer_put_bignum(b, key->n);
460 buffer_put_bignum(b, key->e);
461 buffer_put_bignum(b, key->d);
462 /* To keep within the protocol: p < q for ssh. in SSL p > q */
463 buffer_put_bignum(b, key->iqmp); /* ssh key->u */
464 buffer_put_bignum(b, key->q); /* ssh key->p, SSL key->q */
465 buffer_put_bignum(b, key->p); /* ssh key->q, SSL key->p */
Ben Lindstrom664408d2001-06-09 01:42:01 +0000466 buffer_put_cstring(b, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000467}
468
Ben Lindstrombba81212001-06-25 05:01:22 +0000469static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100470ssh_encode_identity_ssh2(Buffer *b, Key *key, const char *comment)
Damien Miller994cf142000-07-21 10:19:44 +1000471{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100472 buffer_put_cstring(b, key_ssh_name(key));
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000473 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100474 case KEY_RSA:
475 buffer_put_bignum2(b, key->rsa->n);
476 buffer_put_bignum2(b, key->rsa->e);
477 buffer_put_bignum2(b, key->rsa->d);
478 buffer_put_bignum2(b, key->rsa->iqmp);
479 buffer_put_bignum2(b, key->rsa->p);
480 buffer_put_bignum2(b, key->rsa->q);
481 break;
482 case KEY_DSA:
483 buffer_put_bignum2(b, key->dsa->p);
484 buffer_put_bignum2(b, key->dsa->q);
485 buffer_put_bignum2(b, key->dsa->g);
486 buffer_put_bignum2(b, key->dsa->pub_key);
487 buffer_put_bignum2(b, key->dsa->priv_key);
488 break;
489 }
490 buffer_put_cstring(b, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000491}
492
Damien Miller5428f641999-11-25 11:54:57 +1100493/*
494 * Adds an identity to the authentication server. This call is not meant to
495 * be used by normal applications.
496 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497
Damien Miller4af51302000-04-16 11:18:38 +1000498int
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000499ssh_add_identity_constrained(AuthenticationConnection *auth, Key *key,
Damien Miller6c711792003-01-24 11:36:23 +1100500 const char *comment, u_int life, u_int confirm)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501{
Damien Millerad833b32000-08-23 10:46:23 +1000502 Buffer msg;
Damien Miller6c711792003-01-24 11:36:23 +1100503 int type, constrained = (life || confirm);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
Damien Millerad833b32000-08-23 10:46:23 +1000505 buffer_init(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000506
507 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100508 case KEY_RSA1:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000509 type = constrained ?
510 SSH_AGENTC_ADD_RSA_ID_CONSTRAINED :
511 SSH_AGENTC_ADD_RSA_IDENTITY;
512 buffer_put_char(&msg, type);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100513 ssh_encode_identity_rsa1(&msg, key->rsa, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000514 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100515 case KEY_RSA:
Damien Miller994cf142000-07-21 10:19:44 +1000516 case KEY_DSA:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000517 type = constrained ?
518 SSH2_AGENTC_ADD_ID_CONSTRAINED :
519 SSH2_AGENTC_ADD_IDENTITY;
520 buffer_put_char(&msg, type);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100521 ssh_encode_identity_ssh2(&msg, key, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000522 break;
523 default:
Damien Millerad833b32000-08-23 10:46:23 +1000524 buffer_free(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000525 return 0;
Damien Miller994cf142000-07-21 10:19:44 +1000526 }
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000527 if (constrained) {
528 if (life != 0) {
529 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_LIFETIME);
530 buffer_put_int(&msg, life);
531 }
Damien Miller6c711792003-01-24 11:36:23 +1100532 if (confirm != 0)
533 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_CONFIRM);
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000534 }
Damien Millerad833b32000-08-23 10:46:23 +1000535 if (ssh_request_reply(auth, &msg, &msg) == 0) {
536 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100537 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000538 }
Damien Millerad833b32000-08-23 10:46:23 +1000539 type = buffer_get_char(&msg);
540 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000541 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100542}
543
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000544int
545ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
546{
Damien Miller6c711792003-01-24 11:36:23 +1100547 return ssh_add_identity_constrained(auth, key, comment, 0, 0);
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000548}
549
Damien Miller5428f641999-11-25 11:54:57 +1100550/*
551 * Removes an identity from the authentication server. This call is not
552 * meant to be used by normal applications.
553 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Damien Miller4af51302000-04-16 11:18:38 +1000555int
Damien Millerad833b32000-08-23 10:46:23 +1000556ssh_remove_identity(AuthenticationConnection *auth, Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557{
Damien Millerad833b32000-08-23 10:46:23 +1000558 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000559 int type;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000560 u_char *blob;
561 u_int blen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Millerad833b32000-08-23 10:46:23 +1000563 buffer_init(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller0bc1bd82000-11-13 22:57:25 +1100565 if (key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000566 buffer_put_char(&msg, SSH_AGENTC_REMOVE_RSA_IDENTITY);
567 buffer_put_int(&msg, BN_num_bits(key->rsa->n));
568 buffer_put_bignum(&msg, key->rsa->e);
569 buffer_put_bignum(&msg, key->rsa->n);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100570 } else if (key->type == KEY_DSA || key->type == KEY_RSA) {
571 key_to_blob(key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000572 buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
573 buffer_put_string(&msg, blob, blen);
574 xfree(blob);
575 } else {
576 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100577 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578 }
Damien Millerad833b32000-08-23 10:46:23 +1000579 if (ssh_request_reply(auth, &msg, &msg) == 0) {
580 buffer_free(&msg);
581 return 0;
582 }
583 type = buffer_get_char(&msg);
584 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000585 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100586}
587
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000588int
Damien Millera8e06ce2003-11-21 23:48:55 +1100589ssh_update_card(AuthenticationConnection *auth, int add,
Damien Millerd94f20d2003-06-11 22:06:33 +1000590 const char *reader_id, const char *pin, u_int life, u_int confirm)
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000591{
592 Buffer msg;
Damien Millerd94f20d2003-06-11 22:06:33 +1000593 int type, constrained = (life || confirm);
594
595 if (add) {
596 type = constrained ?
597 SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED :
598 SSH_AGENTC_ADD_SMARTCARD_KEY;
599 } else
600 type = SSH_AGENTC_REMOVE_SMARTCARD_KEY;
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000601
602 buffer_init(&msg);
Damien Millerd94f20d2003-06-11 22:06:33 +1000603 buffer_put_char(&msg, type);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000604 buffer_put_cstring(&msg, reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000605 buffer_put_cstring(&msg, pin);
Damien Miller787b2ec2003-11-21 23:56:47 +1100606
Damien Millerd94f20d2003-06-11 22:06:33 +1000607 if (constrained) {
608 if (life != 0) {
609 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_LIFETIME);
610 buffer_put_int(&msg, life);
611 }
612 if (confirm != 0)
613 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_CONFIRM);
614 }
615
Ben Lindstrom036a6b22001-07-04 03:50:02 +0000616 if (ssh_request_reply(auth, &msg, &msg) == 0) {
617 buffer_free(&msg);
618 return 0;
619 }
620 type = buffer_get_char(&msg);
621 buffer_free(&msg);
622 return decode_reply(type);
623}
624
Damien Miller5428f641999-11-25 11:54:57 +1100625/*
626 * Removes all identities from the agent. This call is not meant to be used
627 * by normal applications.
628 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller4af51302000-04-16 11:18:38 +1000630int
Damien Millerad833b32000-08-23 10:46:23 +1000631ssh_remove_all_identities(AuthenticationConnection *auth, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632{
Damien Millerad833b32000-08-23 10:46:23 +1000633 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000634 int type;
Damien Millerad833b32000-08-23 10:46:23 +1000635 int code = (version==1) ?
636 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
637 SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Damien Millerad833b32000-08-23 10:46:23 +1000639 buffer_init(&msg);
640 buffer_put_char(&msg, code);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Millerad833b32000-08-23 10:46:23 +1000642 if (ssh_request_reply(auth, &msg, &msg) == 0) {
643 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100644 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000645 }
Damien Millerad833b32000-08-23 10:46:23 +1000646 type = buffer_get_char(&msg);
647 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000648 return decode_reply(type);
649}
650
Kevin Stevesef4eea92001-02-05 12:42:17 +0000651int
Damien Miller942da032000-08-18 13:59:06 +1000652decode_reply(int type)
653{
Damien Miller95def091999-11-25 00:26:21 +1100654 switch (type) {
655 case SSH_AGENT_FAILURE:
Damien Miller874d77b2000-10-14 16:23:11 +1100656 case SSH_COM_AGENT2_FAILURE:
Ben Lindstromc9a26362001-08-15 23:04:50 +0000657 case SSH2_AGENT_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +1000658 logit("SSH_AGENT_FAILURE");
Damien Miller95def091999-11-25 00:26:21 +1100659 return 0;
660 case SSH_AGENT_SUCCESS:
Damien Miller95def091999-11-25 00:26:21 +1100661 return 1;
662 default:
Damien Miller37023962000-07-11 17:31:38 +1000663 fatal("Bad response from authentication agent: %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100664 }
665 /* NOTREACHED */
666 return 0;
667}