blob: 433623ef71991a5f2f2ecf6019701edd53d83834 [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"
Damien Miller62cee002000-09-23 17:15:56 +110038RCSID("$OpenBSD: authfd.c,v 1.28 2000/09/21 11:07:50 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "ssh.h"
41#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "buffer.h"
43#include "bufaux.h"
44#include "xmalloc.h"
45#include "getput.h"
46
47#include <openssl/rsa.h>
Damien Miller994cf142000-07-21 10:19:44 +100048#include <openssl/dsa.h>
49#include <openssl/evp.h>
50#include "key.h"
51#include "authfd.h"
52#include "kex.h"
Damien Millerad833b32000-08-23 10:46:23 +100053#include "dsa.h"
Damien Miller62cee002000-09-23 17:15:56 +110054#include "compat.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
Damien Miller37023962000-07-11 17:31:38 +100056/* helper */
Damien Miller942da032000-08-18 13:59:06 +100057int decode_reply(int type);
Damien Miller37023962000-07-11 17:31:38 +100058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059/* Returns the number of the authentication fd, or -1 if there is none. */
60
61int
62ssh_get_authentication_socket()
63{
Damien Miller95def091999-11-25 00:26:21 +110064 const char *authsocket;
Damien Miller942da032000-08-18 13:59:06 +100065 int sock, len;
Damien Miller95def091999-11-25 00:26:21 +110066 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller95def091999-11-25 00:26:21 +110068 authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
69 if (!authsocket)
70 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller95def091999-11-25 00:26:21 +110072 sunaddr.sun_family = AF_UNIX;
73 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
Damien Miller942da032000-08-18 13:59:06 +100074#ifdef HAVE_SUN_LEN_IN_SOCKADDR_UN
75 sunaddr.sun_len = len = SUN_LEN(&sunaddr)+1;
76#else /* HAVE_SUN_LEN_IN_SOCKADDR_UN */
77 len = SUN_LEN(&sunaddr)+1;
78#endif /* HAVE_SUN_LEN_IN_SOCKADDR_UN */
Damien Miller10f6f6b1999-11-17 17:29:08 +110079
Damien Miller95def091999-11-25 00:26:21 +110080 sock = socket(AF_UNIX, SOCK_STREAM, 0);
81 if (sock < 0)
82 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller95def091999-11-25 00:26:21 +110084 /* close on exec */
85 if (fcntl(sock, F_SETFD, 1) == -1) {
86 close(sock);
87 return -1;
88 }
Damien Miller942da032000-08-18 13:59:06 +100089 if (connect(sock, (struct sockaddr *) & sunaddr, len) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110090 close(sock);
91 return -1;
92 }
93 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094}
95
Damien Miller942da032000-08-18 13:59:06 +100096int
Damien Millerad833b32000-08-23 10:46:23 +100097ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
Damien Miller942da032000-08-18 13:59:06 +100098{
99 int l, len;
100 char buf[1024];
101
102 /* Get the length of the message, and format it in the buffer. */
103 len = buffer_len(request);
104 PUT_32BIT(buf, len);
105
106 /* Send the length and then the packet to the agent. */
107 if (atomicio(write, auth->fd, buf, 4) != 4 ||
108 atomicio(write, auth->fd, buffer_ptr(request),
109 buffer_len(request)) != buffer_len(request)) {
110 error("Error writing to authentication socket.");
111 return 0;
112 }
113 /*
114 * Wait for response from the agent. First read the length of the
115 * response packet.
116 */
117 len = 4;
118 while (len > 0) {
119 l = read(auth->fd, buf + 4 - len, len);
120 if (l <= 0) {
121 error("Error reading response length from authentication socket.");
122 return 0;
123 }
124 len -= l;
125 }
126
127 /* Extract the length, and check it for sanity. */
128 len = GET_32BIT(buf);
129 if (len > 256 * 1024)
130 fatal("Authentication response too long: %d", len);
131
132 /* Read the rest of the response in to the buffer. */
133 buffer_clear(reply);
134 while (len > 0) {
135 l = len;
136 if (l > sizeof(buf))
137 l = sizeof(buf);
138 l = read(auth->fd, buf, l);
139 if (l <= 0) {
140 error("Error reading response from authentication socket.");
141 return 0;
142 }
143 buffer_append(reply, (char *) buf, l);
144 len -= l;
145 }
146 return 1;
147}
148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * Closes the agent socket if it should be closed (depends on how it was
151 * obtained). The argument must have been returned by
152 * ssh_get_authentication_socket().
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller4af51302000-04-16 11:18:38 +1000155void
Damien Miller95def091999-11-25 00:26:21 +1100156ssh_close_authentication_socket(int sock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157{
Damien Miller95def091999-11-25 00:26:21 +1100158 if (getenv(SSH_AUTHSOCKET_ENV_NAME))
159 close(sock);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160}
161
Damien Miller5428f641999-11-25 11:54:57 +1100162/*
163 * Opens and connects a private socket for communication with the
164 * authentication agent. Returns the file descriptor (which must be
165 * shut down and closed by the caller when no longer needed).
166 * Returns NULL if an error occurred and the connection could not be
167 * opened.
168 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Damien Miller95def091999-11-25 00:26:21 +1100170AuthenticationConnection *
171ssh_get_authentication_connection()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172{
Damien Miller95def091999-11-25 00:26:21 +1100173 AuthenticationConnection *auth;
174 int sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller95def091999-11-25 00:26:21 +1100176 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
Damien Miller5428f641999-11-25 11:54:57 +1100178 /*
179 * Fail if we couldn't obtain a connection. This happens if we
180 * exited due to a timeout.
181 */
Damien Miller95def091999-11-25 00:26:21 +1100182 if (sock < 0)
183 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Damien Miller95def091999-11-25 00:26:21 +1100185 auth = xmalloc(sizeof(*auth));
186 auth->fd = sock;
Damien Miller95def091999-11-25 00:26:21 +1100187 buffer_init(&auth->identities);
188 auth->howmany = 0;
189
190 return auth;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191}
192
Damien Miller5428f641999-11-25 11:54:57 +1100193/*
194 * Closes the connection to the authentication agent and frees any associated
195 * memory.
196 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197
Damien Miller4af51302000-04-16 11:18:38 +1000198void
Damien Millerad833b32000-08-23 10:46:23 +1000199ssh_close_authentication_connection(AuthenticationConnection *auth)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200{
Damien Millerad833b32000-08-23 10:46:23 +1000201 buffer_free(&auth->identities);
202 close(auth->fd);
203 xfree(auth);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204}
205
Damien Miller5428f641999-11-25 11:54:57 +1100206/*
207 * Returns the first authentication identity held by the agent.
Damien Miller5428f641999-11-25 11:54:57 +1100208 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209
Damien Millerad833b32000-08-23 10:46:23 +1000210Key *
211ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Damien Millerad833b32000-08-23 10:46:23 +1000213 int type, code1 = 0, code2 = 0;
Damien Miller942da032000-08-18 13:59:06 +1000214 Buffer request;
Damien Millerad833b32000-08-23 10:46:23 +1000215
216 switch(version){
217 case 1:
218 code1 = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
219 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER;
220 break;
221 case 2:
222 code1 = SSH2_AGENTC_REQUEST_IDENTITIES;
223 code2 = SSH2_AGENT_IDENTITIES_ANSWER;
224 break;
225 default:
226 return NULL;
227 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller5428f641999-11-25 11:54:57 +1100229 /*
230 * Send a message to the agent requesting for a list of the
231 * identities it can represent.
232 */
Damien Miller942da032000-08-18 13:59:06 +1000233 buffer_init(&request);
Damien Millerad833b32000-08-23 10:46:23 +1000234 buffer_put_char(&request, code1);
Damien Miller942da032000-08-18 13:59:06 +1000235
236 buffer_clear(&auth->identities);
237 if (ssh_request_reply(auth, &request, &auth->identities) == 0) {
238 buffer_free(&request);
Damien Millerad833b32000-08-23 10:46:23 +1000239 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240 }
Damien Miller942da032000-08-18 13:59:06 +1000241 buffer_free(&request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242
Damien Miller95def091999-11-25 00:26:21 +1100243 /* Get message type, and verify that we got a proper answer. */
Damien Miller942da032000-08-18 13:59:06 +1000244 type = buffer_get_char(&auth->identities);
Damien Millerad833b32000-08-23 10:46:23 +1000245 if (type == SSH_AGENT_FAILURE) {
246 return NULL;
247 } else if (type != code2) {
Damien Miller942da032000-08-18 13:59:06 +1000248 fatal("Bad authentication reply message type: %d", type);
Damien Millerad833b32000-08-23 10:46:23 +1000249 }
Damien Miller95def091999-11-25 00:26:21 +1100250
251 /* Get the number of entries in the response and check it for sanity. */
252 auth->howmany = buffer_get_int(&auth->identities);
253 if (auth->howmany > 1024)
Damien Miller942da032000-08-18 13:59:06 +1000254 fatal("Too many identities in authentication reply: %d\n",
255 auth->howmany);
Damien Miller95def091999-11-25 00:26:21 +1100256
257 /* Return the first entry (if any). */
Damien Millerad833b32000-08-23 10:46:23 +1000258 return ssh_get_next_identity(auth, comment, version);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259}
260
Damien Millerad833b32000-08-23 10:46:23 +1000261Key *
262ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263{
Damien Miller95def091999-11-25 00:26:21 +1100264 unsigned int bits;
Damien Millerad833b32000-08-23 10:46:23 +1000265 unsigned char *blob;
266 unsigned int blen;
267 Key *key = NULL;
Damien Miller7e8e8201999-11-16 13:37:16 +1100268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Return failure if no more entries. */
270 if (auth->howmany <= 0)
Damien Millerad833b32000-08-23 10:46:23 +1000271 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller5428f641999-11-25 11:54:57 +1100273 /*
274 * Get the next entry from the packet. These will abort with a fatal
275 * error if the packet is too short or contains corrupt data.
276 */
Damien Millerad833b32000-08-23 10:46:23 +1000277 switch(version){
278 case 1:
279 key = key_new(KEY_RSA);
280 bits = buffer_get_int(&auth->identities);
281 buffer_get_bignum(&auth->identities, key->rsa->e);
282 buffer_get_bignum(&auth->identities, key->rsa->n);
283 *comment = buffer_get_string(&auth->identities, NULL);
284 if (bits != BN_num_bits(key->rsa->n))
285 log("Warning: identity keysize mismatch: actual %d, announced %u",
286 BN_num_bits(key->rsa->n), bits);
287 break;
288 case 2:
289 blob = buffer_get_string(&auth->identities, &blen);
290 *comment = buffer_get_string(&auth->identities, NULL);
291 key = dsa_key_from_blob(blob, blen);
292 xfree(blob);
293 break;
294 default:
295 return NULL;
296 break;
297 }
Damien Miller95def091999-11-25 00:26:21 +1100298 /* Decrement the number of remaining entries. */
299 auth->howmany--;
Damien Millerad833b32000-08-23 10:46:23 +1000300 return key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301}
302
Damien Miller5428f641999-11-25 11:54:57 +1100303/*
304 * Generates a random challenge, sends it to the agent, and waits for
305 * response from the agent. Returns true (non-zero) if the agent gave the
306 * correct answer, zero otherwise. Response type selects the style of
307 * response desired, with 0 corresponding to protocol version 1.0 (no longer
308 * supported) and 1 corresponding to protocol version 1.1.
309 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
311int
312ssh_decrypt_challenge(AuthenticationConnection *auth,
Damien Millerad833b32000-08-23 10:46:23 +1000313 Key* key, BIGNUM *challenge,
Damien Miller942da032000-08-18 13:59:06 +1000314 unsigned char session_id[16],
315 unsigned int response_type,
316 unsigned char response[16])
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317{
Damien Miller95def091999-11-25 00:26:21 +1100318 Buffer buffer;
Damien Miller942da032000-08-18 13:59:06 +1000319 int success = 0;
320 int i;
321 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Millerad833b32000-08-23 10:46:23 +1000323 if (key->type != KEY_RSA)
324 return 0;
325 if (response_type == 0) {
326 log("Compatibility with ssh protocol version 1.0 no longer supported.");
327 return 0;
328 }
Damien Miller95def091999-11-25 00:26:21 +1100329 buffer_init(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000330 buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
Damien Millerad833b32000-08-23 10:46:23 +1000331 buffer_put_int(&buffer, BN_num_bits(key->rsa->n));
332 buffer_put_bignum(&buffer, key->rsa->e);
333 buffer_put_bignum(&buffer, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100334 buffer_put_bignum(&buffer, challenge);
335 buffer_append(&buffer, (char *) session_id, 16);
336 buffer_put_int(&buffer, response_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337
Damien Miller942da032000-08-18 13:59:06 +1000338 if (ssh_request_reply(auth, &buffer, &buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100339 buffer_free(&buffer);
340 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341 }
Damien Miller942da032000-08-18 13:59:06 +1000342 type = buffer_get_char(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller942da032000-08-18 13:59:06 +1000344 if (type == SSH_AGENT_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100345 log("Agent admitted failure to authenticate using the key.");
Damien Miller942da032000-08-18 13:59:06 +1000346 } else if (type != SSH_AGENT_RSA_RESPONSE) {
347 fatal("Bad authentication response: %d", type);
348 } else {
349 success = 1;
350 /*
351 * Get the response from the packet. This will abort with a
352 * fatal error if the packet is corrupt.
353 */
354 for (i = 0; i < 16; i++)
355 response[i] = buffer_get_char(&buffer);
Damien Miller95def091999-11-25 00:26:21 +1100356 }
Damien Miller95def091999-11-25 00:26:21 +1100357 buffer_free(&buffer);
Damien Miller942da032000-08-18 13:59:06 +1000358 return success;
Damien Miller95def091999-11-25 00:26:21 +1100359}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360
Damien Millerad833b32000-08-23 10:46:23 +1000361/* ask agent to sign data, returns -1 on error, 0 on success */
362int
363ssh_agent_sign(AuthenticationConnection *auth,
364 Key *key,
365 unsigned char **sigp, int *lenp,
366 unsigned char *data, int datalen)
367{
Damien Miller62cee002000-09-23 17:15:56 +1100368 extern int datafellows;
Damien Millerad833b32000-08-23 10:46:23 +1000369 Buffer msg;
370 unsigned char *blob;
371 unsigned int blen;
Damien Miller62cee002000-09-23 17:15:56 +1100372 int type, flags = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000373 int ret = -1;
374
375 if (dsa_make_key_blob(key, &blob, &blen) == 0)
376 return -1;
377
Damien Miller62cee002000-09-23 17:15:56 +1100378 if (datafellows & SSH_BUG_SIGBLOB)
379 flags = SSH_AGENT_OLD_SIGNATURE;
380
Damien Millerad833b32000-08-23 10:46:23 +1000381 buffer_init(&msg);
382 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
383 buffer_put_string(&msg, blob, blen);
384 buffer_put_string(&msg, data, datalen);
Damien Miller62cee002000-09-23 17:15:56 +1100385 buffer_put_int(&msg, flags);
Damien Millerad833b32000-08-23 10:46:23 +1000386 xfree(blob);
387
388 if (ssh_request_reply(auth, &msg, &msg) == 0) {
389 buffer_free(&msg);
390 return -1;
391 }
392 type = buffer_get_char(&msg);
393 if (type == SSH_AGENT_FAILURE) {
394 log("Agent admitted failure to sign using the key.");
395 } else if (type != SSH2_AGENT_SIGN_RESPONSE) {
396 fatal("Bad authentication response: %d", type);
397 } else {
398 ret = 0;
399 *sigp = buffer_get_string(&msg, lenp);
400 }
401 buffer_free(&msg);
402 return ret;
403}
404
Damien Miller994cf142000-07-21 10:19:44 +1000405/* Encode key for a message to the agent. */
406
407void
408ssh_encode_identity_rsa(Buffer *b, RSA *key, const char *comment)
409{
410 buffer_clear(b);
411 buffer_put_char(b, SSH_AGENTC_ADD_RSA_IDENTITY);
412 buffer_put_int(b, BN_num_bits(key->n));
413 buffer_put_bignum(b, key->n);
414 buffer_put_bignum(b, key->e);
415 buffer_put_bignum(b, key->d);
416 /* To keep within the protocol: p < q for ssh. in SSL p > q */
417 buffer_put_bignum(b, key->iqmp); /* ssh key->u */
418 buffer_put_bignum(b, key->q); /* ssh key->p, SSL key->q */
419 buffer_put_bignum(b, key->p); /* ssh key->q, SSL key->p */
420 buffer_put_string(b, comment, strlen(comment));
421}
422
423void
424ssh_encode_identity_dsa(Buffer *b, DSA *key, const char *comment)
425{
426 buffer_clear(b);
427 buffer_put_char(b, SSH2_AGENTC_ADD_IDENTITY);
428 buffer_put_cstring(b, KEX_DSS);
429 buffer_put_bignum2(b, key->p);
430 buffer_put_bignum2(b, key->q);
431 buffer_put_bignum2(b, key->g);
432 buffer_put_bignum2(b, key->pub_key);
433 buffer_put_bignum2(b, key->priv_key);
434 buffer_put_string(b, comment, strlen(comment));
435}
436
Damien Miller5428f641999-11-25 11:54:57 +1100437/*
438 * Adds an identity to the authentication server. This call is not meant to
439 * be used by normal applications.
440 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Damien Miller4af51302000-04-16 11:18:38 +1000442int
Damien Miller994cf142000-07-21 10:19:44 +1000443ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444{
Damien Millerad833b32000-08-23 10:46:23 +1000445 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000446 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447
Damien Millerad833b32000-08-23 10:46:23 +1000448 buffer_init(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000449
450 switch (key->type) {
451 case KEY_RSA:
Damien Millerad833b32000-08-23 10:46:23 +1000452 ssh_encode_identity_rsa(&msg, key->rsa, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000453 break;
454 case KEY_DSA:
Damien Millerad833b32000-08-23 10:46:23 +1000455 ssh_encode_identity_dsa(&msg, key->dsa, comment);
Damien Miller994cf142000-07-21 10:19:44 +1000456 break;
457 default:
Damien Millerad833b32000-08-23 10:46:23 +1000458 buffer_free(&msg);
Damien Miller994cf142000-07-21 10:19:44 +1000459 return 0;
460 break;
461 }
Damien Millerad833b32000-08-23 10:46:23 +1000462 if (ssh_request_reply(auth, &msg, &msg) == 0) {
463 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100464 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465 }
Damien Millerad833b32000-08-23 10:46:23 +1000466 type = buffer_get_char(&msg);
467 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000468 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100469}
470
Damien Miller5428f641999-11-25 11:54:57 +1100471/*
472 * Removes an identity from the authentication server. This call is not
473 * meant to be used by normal applications.
474 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475
Damien Miller4af51302000-04-16 11:18:38 +1000476int
Damien Millerad833b32000-08-23 10:46:23 +1000477ssh_remove_identity(AuthenticationConnection *auth, Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000478{
Damien Millerad833b32000-08-23 10:46:23 +1000479 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000480 int type;
Damien Millerad833b32000-08-23 10:46:23 +1000481 unsigned char *blob;
482 unsigned int blen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000483
Damien Millerad833b32000-08-23 10:46:23 +1000484 buffer_init(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Damien Millerad833b32000-08-23 10:46:23 +1000486 if (key->type == KEY_RSA) {
487 buffer_put_char(&msg, SSH_AGENTC_REMOVE_RSA_IDENTITY);
488 buffer_put_int(&msg, BN_num_bits(key->rsa->n));
489 buffer_put_bignum(&msg, key->rsa->e);
490 buffer_put_bignum(&msg, key->rsa->n);
491 } else if (key->type == KEY_DSA) {
492 dsa_make_key_blob(key, &blob, &blen);
493 buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
494 buffer_put_string(&msg, blob, blen);
495 xfree(blob);
496 } else {
497 buffer_free(&msg);
Damien Miller95def091999-11-25 00:26:21 +1100498 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499 }
Damien Millerad833b32000-08-23 10:46:23 +1000500 if (ssh_request_reply(auth, &msg, &msg) == 0) {
501 buffer_free(&msg);
502 return 0;
503 }
504 type = buffer_get_char(&msg);
505 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000506 return decode_reply(type);
Damien Miller95def091999-11-25 00:26:21 +1100507}
508
Damien Miller5428f641999-11-25 11:54:57 +1100509/*
510 * Removes all identities from the agent. This call is not meant to be used
511 * by normal applications.
512 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513
Damien Miller4af51302000-04-16 11:18:38 +1000514int
Damien Millerad833b32000-08-23 10:46:23 +1000515ssh_remove_all_identities(AuthenticationConnection *auth, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516{
Damien Millerad833b32000-08-23 10:46:23 +1000517 Buffer msg;
Damien Miller942da032000-08-18 13:59:06 +1000518 int type;
Damien Millerad833b32000-08-23 10:46:23 +1000519 int code = (version==1) ?
520 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
521 SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Damien Millerad833b32000-08-23 10:46:23 +1000523 buffer_init(&msg);
524 buffer_put_char(&msg, code);
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);
Damien Miller95def091999-11-25 00:26:21 +1100528 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529 }
Damien Millerad833b32000-08-23 10:46:23 +1000530 type = buffer_get_char(&msg);
531 buffer_free(&msg);
Damien Miller942da032000-08-18 13:59:06 +1000532 return decode_reply(type);
533}
534
535int
536decode_reply(int type)
537{
Damien Miller95def091999-11-25 00:26:21 +1100538 switch (type) {
539 case SSH_AGENT_FAILURE:
Damien Miller942da032000-08-18 13:59:06 +1000540 log("SSH_AGENT_FAILURE");
Damien Miller95def091999-11-25 00:26:21 +1100541 return 0;
542 case SSH_AGENT_SUCCESS:
Damien Miller95def091999-11-25 00:26:21 +1100543 return 1;
544 default:
Damien Miller37023962000-07-11 17:31:38 +1000545 fatal("Bad response from authentication agent: %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100546 }
547 /* NOTREACHED */
548 return 0;
549}