blob: d98f1184e3da33448ae0930e838a85d4138c5d2f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for connecting the local authentication agent.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Millerad833b32000-08-23 10:46:23 +100012 *
Damien Millere4340be2000-09-16 13:29:08 +110013 * SSH2 implementation,
14 * Copyright (c) 2000 Markus Friedl. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110035 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37#include "includes.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038RCSID("$OpenBSD: authfd.c,v 1.33 2001/01/21 19:05:44 markus Exp $");
39
40#include <openssl/evp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "ssh.h"
43#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044#include "buffer.h"
45#include "bufaux.h"
46#include "xmalloc.h"
47#include "getput.h"
Damien Miller994cf142000-07-21 10:19:44 +100048#include "key.h"
49#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "cipher.h"
Damien Miller994cf142000-07-21 10:19:44 +100051#include "kex.h"
Damien Miller62cee002000-09-23 17:15:56 +110052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "log.h"
54#include "atomicio.h"
55#include "authfd.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Damien Miller37023962000-07-11 17:31:38 +100057/* helper */
Damien Miller942da032000-08-18 13:59:06 +100058int decode_reply(int type);
Damien Miller37023962000-07-11 17:31:38 +100059
Damien Miller874d77b2000-10-14 16:23:11 +110060/* macro to check for "agent failure" message */
61#define agent_failed(x) \
62 ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE))
63
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064/* Returns the number of the authentication fd, or -1 if there is none. */
65
66int
Ben Lindstrom46c16222000-12-22 01:43:59 +000067ssh_get_authentication_socket(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068{
Damien Miller95def091999-11-25 00:26:21 +110069 const char *authsocket;
Damien Miller942da032000-08-18 13:59:06 +100070 int sock, len;
Damien Miller95def091999-11-25 00:26:21 +110071 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Miller95def091999-11-25 00:26:21 +110073 authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
74 if (!authsocket)
75 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
Damien Miller95def091999-11-25 00:26:21 +110077 sunaddr.sun_family = AF_UNIX;
78 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
Damien Miller942da032000-08-18 13:59:06 +100079#ifdef HAVE_SUN_LEN_IN_SOCKADDR_UN
80 sunaddr.sun_len = len = SUN_LEN(&sunaddr)+1;
81#else /* HAVE_SUN_LEN_IN_SOCKADDR_UN */
82 len = SUN_LEN(&sunaddr)+1;
83#endif /* HAVE_SUN_LEN_IN_SOCKADDR_UN */
Damien Miller10f6f6b1999-11-17 17:29:08 +110084
Damien Miller95def091999-11-25 00:26:21 +110085 sock = socket(AF_UNIX, SOCK_STREAM, 0);
86 if (sock < 0)
87 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller95def091999-11-25 00:26:21 +110089 /* close on exec */
90 if (fcntl(sock, F_SETFD, 1) == -1) {
91 close(sock);
92 return -1;
93 }
Damien Miller942da032000-08-18 13:59:06 +100094 if (connect(sock, (struct sockaddr *) & sunaddr, len) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110095 close(sock);
96 return -1;
97 }
98 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099}
100
Damien Miller942da032000-08-18 13:59:06 +1000101int
Damien Millerad833b32000-08-23 10:46:23 +1000102ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
Damien Miller942da032000-08-18 13:59:06 +1000103{
104 int l, len;
105 char buf[1024];
106
107 /* Get the length of the message, and format it in the buffer. */
108 len = buffer_len(request);
109 PUT_32BIT(buf, len);
110
111 /* Send the length and then the packet to the agent. */
112 if (atomicio(write, auth->fd, buf, 4) != 4 ||
113 atomicio(write, auth->fd, buffer_ptr(request),
114 buffer_len(request)) != buffer_len(request)) {
115 error("Error writing to authentication socket.");
116 return 0;
117 }
118 /*
119 * Wait for response from the agent. First read the length of the
120 * response packet.
121 */
122 len = 4;
123 while (len > 0) {
124 l = read(auth->fd, buf + 4 - len, len);
125 if (l <= 0) {
126 error("Error reading response length from authentication socket.");
127 return 0;
128 }
129 len -= l;
130 }
131
132 /* Extract the length, and check it for sanity. */
133 len = GET_32BIT(buf);
134 if (len > 256 * 1024)
135 fatal("Authentication response too long: %d", len);
136
137 /* Read the rest of the response in to the buffer. */
138 buffer_clear(reply);
139 while (len > 0) {
140 l = len;
141 if (l > sizeof(buf))
142 l = sizeof(buf);
143 l = read(auth->fd, buf, l);
144 if (l <= 0) {
145 error("Error reading response from authentication socket.");
146 return 0;
147 }
148 buffer_append(reply, (char *) buf, l);
149 len -= l;
150 }
151 return 1;
152}
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * Closes the agent socket if it should be closed (depends on how it was
156 * obtained). The argument must have been returned by
157 * ssh_get_authentication_socket().
158 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller4af51302000-04-16 11:18:38 +1000160void
Damien Miller95def091999-11-25 00:26:21 +1100161ssh_close_authentication_socket(int sock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162{
Damien Miller95def091999-11-25 00:26:21 +1100163 if (getenv(SSH_AUTHSOCKET_ENV_NAME))
164 close(sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165}
166
Damien Miller5428f641999-11-25 11:54:57 +1100167/*
168 * Opens and connects a private socket for communication with the
169 * authentication agent. Returns the file descriptor (which must be
170 * shut down and closed by the caller when no longer needed).
171 * Returns NULL if an error occurred and the connection could not be
172 * opened.
173 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller95def091999-11-25 00:26:21 +1100175AuthenticationConnection *
Ben Lindstrom46c16222000-12-22 01:43:59 +0000176ssh_get_authentication_connection(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177{
Damien Miller95def091999-11-25 00:26:21 +1100178 AuthenticationConnection *auth;
179 int sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
Damien Miller95def091999-11-25 00:26:21 +1100181 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Miller5428f641999-11-25 11:54:57 +1100183 /*
184 * Fail if we couldn't obtain a connection. This happens if we
185 * exited due to a timeout.
186 */
Damien Miller95def091999-11-25 00:26:21 +1100187 if (sock < 0)
188 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Miller95def091999-11-25 00:26:21 +1100190 auth = xmalloc(sizeof(*auth));
191 auth->fd = sock;
Damien Miller95def091999-11-25 00:26:21 +1100192 buffer_init(&auth->identities);
193 auth->howmany = 0;
194
195 return auth;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Damien Miller5428f641999-11-25 11:54:57 +1100198/*
199 * Closes the connection to the authentication agent and frees any associated
200 * memory.
201 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Damien Miller4af51302000-04-16 11:18:38 +1000203void
Damien Millerad833b32000-08-23 10:46:23 +1000204ssh_close_authentication_connection(AuthenticationConnection *auth)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Millerad833b32000-08-23 10:46:23 +1000206 buffer_free(&auth->identities);
207 close(auth->fd);
208 xfree(auth);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller5428f641999-11-25 11:54:57 +1100211/*
212 * Returns the first authentication identity held by the agent.
Damien Miller5428f641999-11-25 11:54:57 +1100213 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Damien Miller0bc1bd82000-11-13 22:57:25 +1100215int
216ssh_get_num_identities(AuthenticationConnection *auth, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Damien Millerad833b32000-08-23 10:46:23 +1000218 int type, code1 = 0, code2 = 0;
Damien Miller942da032000-08-18 13:59:06 +1000219 Buffer request;
Damien Millerad833b32000-08-23 10:46:23 +1000220
221 switch(version){
222 case 1:
223 code1 = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
224 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER;
225 break;
226 case 2:
227 code1 = SSH2_AGENTC_REQUEST_IDENTITIES;
228 code2 = SSH2_AGENT_IDENTITIES_ANSWER;
229 break;
230 default:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100231 return 0;
Damien Millerad833b32000-08-23 10:46:23 +1000232 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller5428f641999-11-25 11:54:57 +1100234 /*
235 * Send a message to the agent requesting for a list of the
236 * identities it can represent.
237 */
Damien Miller942da032000-08-18 13:59:06 +1000238 buffer_init(&request);
Damien Millerad833b32000-08-23 10:46:23 +1000239 buffer_put_char(&request, code1);
Damien Miller942da032000-08-18 13:59:06 +1000240
241 buffer_clear(&auth->identities);
242 if (ssh_request_reply(auth, &request, &auth->identities) == 0) {
243 buffer_free(&request);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100244 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245 }
Damien Miller942da032000-08-18 13:59:06 +1000246 buffer_free(&request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller95def091999-11-25 00:26:21 +1100248 /* Get message type, and verify that we got a proper answer. */
Damien Miller942da032000-08-18 13:59:06 +1000249 type = buffer_get_char(&auth->identities);
Damien Miller874d77b2000-10-14 16:23:11 +1100250 if (agent_failed(type)) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100251 return 0;
Damien Millerad833b32000-08-23 10:46:23 +1000252 } else if (type != code2) {
Damien Miller942da032000-08-18 13:59:06 +1000253 fatal("Bad authentication reply message type: %d", type);
Damien Millerad833b32000-08-23 10:46:23 +1000254 }
Damien Miller95def091999-11-25 00:26:21 +1100255
256 /* Get the number of entries in the response and check it for sanity. */
257 auth->howmany = buffer_get_int(&auth->identities);
258 if (auth->howmany > 1024)
Damien Miller942da032000-08-18 13:59:06 +1000259 fatal("Too many identities in authentication reply: %d\n",
260 auth->howmany);
Damien Miller95def091999-11-25 00:26:21 +1100261
Damien Miller0bc1bd82000-11-13 22:57:25 +1100262 return auth->howmany;
263}
264
265Key *
266ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version)
267{
268 /* get number of identities and return the first entry (if any). */
269 if (ssh_get_num_identities(auth, version) > 0)
270 return ssh_get_next_identity(auth, comment, version);
271 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272}
273
Damien Millerad833b32000-08-23 10:46:23 +1000274Key *
275ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000277 u_int bits;
278 u_char *blob;
279 u_int blen;
Damien Millerad833b32000-08-23 10:46:23 +1000280 Key *key = NULL;
Damien Miller7e8e8201999-11-16 13:37:16 +1100281
Damien Miller95def091999-11-25 00:26:21 +1100282 /* Return failure if no more entries. */
283 if (auth->howmany <= 0)
Damien Millerad833b32000-08-23 10:46:23 +1000284 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller5428f641999-11-25 11:54:57 +1100286 /*
287 * Get the next entry from the packet. These will abort with a fatal
288 * error if the packet is too short or contains corrupt data.
289 */
Damien Millerad833b32000-08-23 10:46:23 +1000290 switch(version){
291 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100292 key = key_new(KEY_RSA1);
Damien Millerad833b32000-08-23 10:46:23 +1000293 bits = buffer_get_int(&auth->identities);
294 buffer_get_bignum(&auth->identities, key->rsa->e);
295 buffer_get_bignum(&auth->identities, key->rsa->n);
296 *comment = buffer_get_string(&auth->identities, NULL);
297 if (bits != BN_num_bits(key->rsa->n))
298 log("Warning: identity keysize mismatch: actual %d, announced %u",
299 BN_num_bits(key->rsa->n), bits);
300 break;
301 case 2:
302 blob = buffer_get_string(&auth->identities, &blen);
303 *comment = buffer_get_string(&auth->identities, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100304 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000305 xfree(blob);
306 break;
307 default:
308 return NULL;
309 break;
310 }
Damien Miller95def091999-11-25 00:26:21 +1100311 /* Decrement the number of remaining entries. */
312 auth->howmany--;
Damien Millerad833b32000-08-23 10:46:23 +1000313 return key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314}
315
Damien Miller5428f641999-11-25 11:54:57 +1100316/*
317 * Generates a random challenge, sends it to the agent, and waits for
318 * response from the agent. Returns true (non-zero) if the agent gave the
319 * correct answer, zero otherwise. Response type selects the style of
320 * response desired, with 0 corresponding to protocol version 1.0 (no longer
321 * supported) and 1 corresponding to protocol version 1.1.
322 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323
324int
325ssh_decrypt_challenge(AuthenticationConnection *auth,
Damien Millerad833b32000-08-23 10:46:23 +1000326 Key* key, BIGNUM *challenge,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000327 u_char session_id[16],
328 u_int response_type,
329 u_char response[16])
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330{
Damien Miller95def091999-11-25 00:26:21 +1100331 Buffer buffer;
Damien Miller942da032000-08-18 13:59:06 +1000332 int success = 0;
333 int i;
334 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000335
Damien Miller0bc1bd82000-11-13 22:57:25 +1100336 if (key->type != KEY_RSA1)
Damien Millerad833b32000-08-23 10:46:23 +1000337 return 0;
338 if (response_type == 0) {
339 log("Compatibility with ssh protocol version 1.0 no longer supported.");
340 return 0;
341 }
Damien Miller95def091999-11-25 00:26:21 +1100342 buffer_init(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000343 buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
Damien Millerad833b32000-08-23 10:46:23 +1000344 buffer_put_int(&buffer, BN_num_bits(key->rsa->n));
345 buffer_put_bignum(&buffer, key->rsa->e);
346 buffer_put_bignum(&buffer, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100347 buffer_put_bignum(&buffer, challenge);
348 buffer_append(&buffer, (char *) session_id, 16);
349 buffer_put_int(&buffer, response_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350
Damien Miller942da032000-08-18 13:59:06 +1000351 if (ssh_request_reply(auth, &buffer, &buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100352 buffer_free(&buffer);
353 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354 }
Damien Miller942da032000-08-18 13:59:06 +1000355 type = buffer_get_char(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356
Damien Miller874d77b2000-10-14 16:23:11 +1100357 if (agent_failed(type)) {
Damien Miller95def091999-11-25 00:26:21 +1100358 log("Agent admitted failure to authenticate using the key.");
Damien Miller942da032000-08-18 13:59:06 +1000359 } else if (type != SSH_AGENT_RSA_RESPONSE) {
360 fatal("Bad authentication response: %d", type);
361 } else {
362 success = 1;
363 /*
364 * Get the response from the packet. This will abort with a
365 * fatal error if the packet is corrupt.
366 */
367 for (i = 0; i < 16; i++)
368 response[i] = buffer_get_char(&buffer);
Damien Miller95def091999-11-25 00:26:21 +1100369 }
Damien Miller95def091999-11-25 00:26:21 +1100370 buffer_free(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000371 return success;
Damien Miller95def091999-11-25 00:26:21 +1100372}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000373
Damien Millerad833b32000-08-23 10:46:23 +1000374/* ask agent to sign data, returns -1 on error, 0 on success */
375int
376ssh_agent_sign(AuthenticationConnection *auth,
377 Key *key,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000378 u_char **sigp, int *lenp,
379 u_char *data, int datalen)
Damien Millerad833b32000-08-23 10:46:23 +1000380{
Damien Miller62cee002000-09-23 17:15:56 +1100381 extern int datafellows;
Damien Millerad833b32000-08-23 10:46:23 +1000382 Buffer msg;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000383 u_char *blob;
384 u_int blen;
Damien Miller62cee002000-09-23 17:15:56 +1100385 int type, flags = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000386 int ret = -1;
387
Damien Miller0bc1bd82000-11-13 22:57:25 +1100388 if (key_to_blob(key, &blob, &blen) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000389 return -1;
390
Damien Miller62cee002000-09-23 17:15:56 +1100391 if (datafellows & SSH_BUG_SIGBLOB)
392 flags = SSH_AGENT_OLD_SIGNATURE;
393
Damien Millerad833b32000-08-23 10:46:23 +1000394 buffer_init(&msg);
395 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
396 buffer_put_string(&msg, blob, blen);
397 buffer_put_string(&msg, data, datalen);
Damien Miller62cee002000-09-23 17:15:56 +1100398 buffer_put_int(&msg, flags);
Damien Millerad833b32000-08-23 10:46:23 +1000399 xfree(blob);
400
401 if (ssh_request_reply(auth, &msg, &msg) == 0) {
402 buffer_free(&msg);
403 return -1;
404 }
405 type = buffer_get_char(&msg);
Damien Miller874d77b2000-10-14 16:23:11 +1100406 if (agent_failed(type)) {
Damien Millerad833b32000-08-23 10:46:23 +1000407 log("Agent admitted failure to sign using the key.");
408 } else if (type != SSH2_AGENT_SIGN_RESPONSE) {
409 fatal("Bad authentication response: %d", type);
410 } else {
411 ret = 0;
412 *sigp = buffer_get_string(&msg, lenp);
413 }
414 buffer_free(&msg);
415 return ret;
416}
417
Damien Miller994cf142000-07-21 10:19:44 +1000418/* Encode key for a message to the agent. */
419
420void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100421ssh_encode_identity_rsa1(Buffer *b, RSA *key, const char *comment)
Damien Miller994cf142000-07-21 10:19:44 +1000422{
423 buffer_clear(b);
424 buffer_put_char(b, SSH_AGENTC_ADD_RSA_IDENTITY);
425 buffer_put_int(b, BN_num_bits(key->n));
426 buffer_put_bignum(b, key->n);
427 buffer_put_bignum(b, key->e);
428 buffer_put_bignum(b, key->d);
429 /* To keep within the protocol: p < q for ssh. in SSL p > q */
430 buffer_put_bignum(b, key->iqmp); /* ssh key->u */
431 buffer_put_bignum(b, key->q); /* ssh key->p, SSL key->q */
432 buffer_put_bignum(b, key->p); /* ssh key->q, SSL key->p */
433 buffer_put_string(b, comment, strlen(comment));
434}
435
436void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100437ssh_encode_identity_ssh2(Buffer *b, Key *key, const char *comment)
Damien Miller994cf142000-07-21 10:19:44 +1000438{
439 buffer_clear(b);
440 buffer_put_char(b, SSH2_AGENTC_ADD_IDENTITY);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100441 buffer_put_cstring(b, key_ssh_name(key));
442 switch(key->type){
443 case KEY_RSA:
444 buffer_put_bignum2(b, key->rsa->n);
445 buffer_put_bignum2(b, key->rsa->e);
446 buffer_put_bignum2(b, key->rsa->d);
447 buffer_put_bignum2(b, key->rsa->iqmp);
448 buffer_put_bignum2(b, key->rsa->p);
449 buffer_put_bignum2(b, key->rsa->q);
450 break;
451 case KEY_DSA:
452 buffer_put_bignum2(b, key->dsa->p);
453 buffer_put_bignum2(b, key->dsa->q);
454 buffer_put_bignum2(b, key->dsa->g);
455 buffer_put_bignum2(b, key->dsa->pub_key);
456 buffer_put_bignum2(b, key->dsa->priv_key);
457 break;
458 }
459 buffer_put_cstring(b, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000460}
461
Damien Miller5428f641999-11-25 11:54:57 +1100462/*
463 * Adds an identity to the authentication server. This call is not meant to
464 * be used by normal applications.
465 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466
Damien Miller4af51302000-04-16 11:18:38 +1000467int
Damien Miller994cf142000-07-21 10:19:44 +1000468ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000469{
Damien Millerad833b32000-08-23 10:46:23 +1000470 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000471 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472
Damien Millerad833b32000-08-23 10:46:23 +1000473 buffer_init(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000474
475 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100476 case KEY_RSA1:
477 ssh_encode_identity_rsa1(&msg, key->rsa, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000478 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100479 case KEY_RSA:
Damien Miller994cf142000-07-21 10:19:44 +1000480 case KEY_DSA:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100481 ssh_encode_identity_ssh2(&msg, key, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000482 break;
483 default:
Damien Millerad833b32000-08-23 10:46:23 +1000484 buffer_free(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000485 return 0;
486 break;
487 }
Damien Millerad833b32000-08-23 10:46:23 +1000488 if (ssh_request_reply(auth, &msg, &msg) == 0) {
489 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100490 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491 }
Damien Millerad833b32000-08-23 10:46:23 +1000492 type = buffer_get_char(&msg);
493 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000494 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100495}
496
Damien Miller5428f641999-11-25 11:54:57 +1100497/*
498 * Removes an identity from the authentication server. This call is not
499 * meant to be used by normal applications.
500 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller4af51302000-04-16 11:18:38 +1000502int
Damien Millerad833b32000-08-23 10:46:23 +1000503ssh_remove_identity(AuthenticationConnection *auth, Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504{
Damien Millerad833b32000-08-23 10:46:23 +1000505 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000506 int type;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000507 u_char *blob;
508 u_int blen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
Damien Millerad833b32000-08-23 10:46:23 +1000510 buffer_init(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
Damien Miller0bc1bd82000-11-13 22:57:25 +1100512 if (key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000513 buffer_put_char(&msg, SSH_AGENTC_REMOVE_RSA_IDENTITY);
514 buffer_put_int(&msg, BN_num_bits(key->rsa->n));
515 buffer_put_bignum(&msg, key->rsa->e);
516 buffer_put_bignum(&msg, key->rsa->n);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100517 } else if (key->type == KEY_DSA || key->type == KEY_RSA) {
518 key_to_blob(key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000519 buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
520 buffer_put_string(&msg, blob, blen);
521 xfree(blob);
522 } else {
523 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100524 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525 }
Damien Millerad833b32000-08-23 10:46:23 +1000526 if (ssh_request_reply(auth, &msg, &msg) == 0) {
527 buffer_free(&msg);
528 return 0;
529 }
530 type = buffer_get_char(&msg);
531 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000532 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100533}
534
Damien Miller5428f641999-11-25 11:54:57 +1100535/*
536 * Removes all identities from the agent. This call is not meant to be used
537 * by normal applications.
538 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Damien Miller4af51302000-04-16 11:18:38 +1000540int
Damien Millerad833b32000-08-23 10:46:23 +1000541ssh_remove_all_identities(AuthenticationConnection *auth, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542{
Damien Millerad833b32000-08-23 10:46:23 +1000543 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000544 int type;
Damien Millerad833b32000-08-23 10:46:23 +1000545 int code = (version==1) ?
546 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
547 SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548
Damien Millerad833b32000-08-23 10:46:23 +1000549 buffer_init(&msg);
550 buffer_put_char(&msg, code);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Millerad833b32000-08-23 10:46:23 +1000552 if (ssh_request_reply(auth, &msg, &msg) == 0) {
553 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100554 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555 }
Damien Millerad833b32000-08-23 10:46:23 +1000556 type = buffer_get_char(&msg);
557 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000558 return decode_reply(type);
559}
560
Kevin Stevesef4eea92001-02-05 12:42:17 +0000561int
Damien Miller942da032000-08-18 13:59:06 +1000562decode_reply(int type)
563{
Damien Miller95def091999-11-25 00:26:21 +1100564 switch (type) {
565 case SSH_AGENT_FAILURE:
Damien Miller874d77b2000-10-14 16:23:11 +1100566 case SSH_COM_AGENT2_FAILURE:
Damien Miller942da032000-08-18 13:59:06 +1000567 log("SSH_AGENT_FAILURE");
Damien Miller95def091999-11-25 00:26:21 +1100568 return 0;
569 case SSH_AGENT_SUCCESS:
Damien Miller95def091999-11-25 00:26:21 +1100570 return 1;
571 default:
Damien Miller37023962000-07-11 17:31:38 +1000572 fatal("Bad response from authentication agent: %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100573 }
574 /* NOTREACHED */
575 return 0;
576}