]> andersk Git - openssh.git/blame - authfd.c
- stevesk@cvs.openbsd.org 2006/07/22 19:08:54
[openssh.git] / authfd.c
CommitLineData
5188ba17 1/* $OpenBSD: authfd.c,v 1.77 2006/07/17 01:31:09 stevesk Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * Functions for connecting the local authentication agent.
6ae2364d 7 *
bcbf86ec 8 * 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".
13 *
2e73a022 14 * SSH2 implementation,
bcbf86ec 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.
2e73a022 25 *
bcbf86ec 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.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
cebb4c24 39
40#include <sys/types.h>
41#include <sys/un.h>
5b04a8bf 42#include <sys/socket.h>
42f11eb2 43
44#include <openssl/evp.h>
8efc0c15 45
d3221cca 46#include <fcntl.h>
5188ba17 47#include <unistd.h>
d3221cca 48
8efc0c15 49#include "ssh.h"
50#include "rsa.h"
8efc0c15 51#include "buffer.h"
52#include "bufaux.h"
53#include "xmalloc.h"
4c8722d9 54#include "key.h"
55#include "authfd.h"
42f11eb2 56#include "cipher.h"
4c8722d9 57#include "kex.h"
188adeb2 58#include "compat.h"
42f11eb2 59#include "log.h"
60#include "atomicio.h"
51e7a012 61#include "misc.h"
8efc0c15 62
8b10e20e 63static int agent_present = 0;
64
089fbbd2 65/* helper */
c345cf9d 66int decode_reply(int type);
089fbbd2 67
94ec8c6b 68/* macro to check for "agent failure" message */
69#define agent_failed(x) \
65e683bd 70 ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE) || \
7203d6bb 71 (x == SSH2_AGENT_FAILURE))
94ec8c6b 72
8b10e20e 73int
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
8efc0c15 88/* Returns the number of the authentication fd, or -1 if there is none. */
89
90int
1e3b8b07 91ssh_get_authentication_socket(void)
8efc0c15 92{
5260325f 93 const char *authsocket;
f34f05d5 94 int sock;
5260325f 95 struct sockaddr_un sunaddr;
96
97 authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
98 if (!authsocket)
99 return -1;
100
101 sunaddr.sun_family = AF_UNIX;
102 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
103
104 sock = socket(AF_UNIX, SOCK_STREAM, 0);
105 if (sock < 0)
106 return -1;
107
108 /* close on exec */
109 if (fcntl(sock, F_SETFD, 1) == -1) {
110 close(sock);
111 return -1;
112 }
c8e9c167 113 if (connect(sock, (struct sockaddr *)&sunaddr, sizeof sunaddr) < 0) {
5260325f 114 close(sock);
115 return -1;
116 }
8b10e20e 117 agent_present = 1;
5260325f 118 return sock;
8efc0c15 119}
120
396c147e 121static int
2e73a022 122ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
c345cf9d 123{
2ceb8101 124 u_int l, len;
c345cf9d 125 char buf[1024];
126
127 /* Get the length of the message, and format it in the buffer. */
128 len = buffer_len(request);
51e7a012 129 put_u32(buf, len);
c345cf9d 130
131 /* Send the length and then the packet to the agent. */
dc54438a 132 if (atomicio(vwrite, auth->fd, buf, 4) != 4 ||
133 atomicio(vwrite, auth->fd, buffer_ptr(request),
c345cf9d 134 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 */
f581b6e8 142 if (atomicio(read, auth->fd, buf, 4) != 4) {
143 error("Error reading response length from authentication socket.");
144 return 0;
c345cf9d 145 }
146
147 /* Extract the length, and check it for sanity. */
51e7a012 148 len = get_u32(buf);
c345cf9d 149 if (len > 256 * 1024)
bb92e5cc 150 fatal("Authentication response too long: %u", len);
c345cf9d 151
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);
05624c18 158 if (atomicio(read, auth->fd, buf, l) != l) {
c345cf9d 159 error("Error reading response from authentication socket.");
160 return 0;
161 }
6c69a6a9 162 buffer_append(reply, buf, l);
c345cf9d 163 len -= l;
164 }
165 return 1;
166}
167
aa3378df 168/*
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 */
8efc0c15 173
6ae2364d 174void
5260325f 175ssh_close_authentication_socket(int sock)
8efc0c15 176{
5260325f 177 if (getenv(SSH_AUTHSOCKET_ENV_NAME))
178 close(sock);
8efc0c15 179}
180
aa3378df 181/*
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 */
8efc0c15 188
5260325f 189AuthenticationConnection *
1e3b8b07 190ssh_get_authentication_connection(void)
8efc0c15 191{
5260325f 192 AuthenticationConnection *auth;
193 int sock;
194
195 sock = ssh_get_authentication_socket();
196
aa3378df 197 /*
198 * Fail if we couldn't obtain a connection. This happens if we
199 * exited due to a timeout.
200 */
5260325f 201 if (sock < 0)
202 return NULL;
203
5260325f 204 auth = xmalloc(sizeof(*auth));
205 auth->fd = sock;
5260325f 206 buffer_init(&auth->identities);
207 auth->howmany = 0;
208
209 return auth;
8efc0c15 210}
211
aa3378df 212/*
213 * Closes the connection to the authentication agent and frees any associated
214 * memory.
215 */
8efc0c15 216
6ae2364d 217void
2e73a022 218ssh_close_authentication_connection(AuthenticationConnection *auth)
8efc0c15 219{
2e73a022 220 buffer_free(&auth->identities);
221 close(auth->fd);
222 xfree(auth);
8efc0c15 223}
224
3db7f994 225/* 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
aa3378df 245/*
246 * Returns the first authentication identity held by the agent.
aa3378df 247 */
8efc0c15 248
fa08c86b 249int
250ssh_get_num_identities(AuthenticationConnection *auth, int version)
8efc0c15 251{
2e73a022 252 int type, code1 = 0, code2 = 0;
c345cf9d 253 Buffer request;
2e73a022 254
6aacefa7 255 switch (version) {
2e73a022 256 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:
fa08c86b 265 return 0;
2e73a022 266 }
5260325f 267
aa3378df 268 /*
269 * Send a message to the agent requesting for a list of the
270 * identities it can represent.
271 */
c345cf9d 272 buffer_init(&request);
2e73a022 273 buffer_put_char(&request, code1);
5260325f 274
5260325f 275 buffer_clear(&auth->identities);
c345cf9d 276 if (ssh_request_reply(auth, &request, &auth->identities) == 0) {
277 buffer_free(&request);
fa08c86b 278 return 0;
8efc0c15 279 }
c345cf9d 280 buffer_free(&request);
5260325f 281
282 /* Get message type, and verify that we got a proper answer. */
c345cf9d 283 type = buffer_get_char(&auth->identities);
94ec8c6b 284 if (agent_failed(type)) {
fa08c86b 285 return 0;
2e73a022 286 } else if (type != code2) {
c345cf9d 287 fatal("Bad authentication reply message type: %d", type);
2e73a022 288 }
5260325f 289
290 /* Get the number of entries in the response and check it for sanity. */
291 auth->howmany = buffer_get_int(&auth->identities);
bb92e5cc 292 if ((u_int)auth->howmany > 1024)
54b974dc 293 fatal("Too many identities in authentication reply: %d",
c345cf9d 294 auth->howmany);
5260325f 295
fa08c86b 296 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;
8efc0c15 306}
307
2e73a022 308Key *
309ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version)
8efc0c15 310{
2ceb8101 311 int keybits;
1e3b8b07 312 u_int bits;
313 u_char *blob;
314 u_int blen;
2e73a022 315 Key *key = NULL;
4d195447 316
5260325f 317 /* Return failure if no more entries. */
318 if (auth->howmany <= 0)
2e73a022 319 return NULL;
8efc0c15 320
aa3378df 321 /*
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 */
6aacefa7 325 switch (version) {
2e73a022 326 case 1:
fa08c86b 327 key = key_new(KEY_RSA1);
2e73a022 328 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);
2ceb8101 332 keybits = BN_num_bits(key->rsa->n);
333 if (keybits < 0 || bits != (u_int)keybits)
bbe88b6d 334 logit("Warning: identity keysize mismatch: actual %d, announced %u",
2e73a022 335 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);
fa08c86b 340 key = key_from_blob(blob, blen);
2e73a022 341 xfree(blob);
342 break;
343 default:
344 return NULL;
2e73a022 345 }
5260325f 346 /* Decrement the number of remaining entries. */
347 auth->howmany--;
2e73a022 348 return key;
8efc0c15 349}
350
aa3378df 351/*
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 */
8efc0c15 358
359int
360ssh_decrypt_challenge(AuthenticationConnection *auth,
2e73a022 361 Key* key, BIGNUM *challenge,
1e3b8b07 362 u_char session_id[16],
363 u_int response_type,
364 u_char response[16])
8efc0c15 365{
5260325f 366 Buffer buffer;
c345cf9d 367 int success = 0;
368 int i;
369 int type;
5260325f 370
fa08c86b 371 if (key->type != KEY_RSA1)
2e73a022 372 return 0;
373 if (response_type == 0) {
bbe88b6d 374 logit("Compatibility with ssh protocol version 1.0 no longer supported.");
2e73a022 375 return 0;
376 }
5260325f 377 buffer_init(&buffer);
c345cf9d 378 buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
2e73a022 379 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);
5260325f 382 buffer_put_bignum(&buffer, challenge);
e6207598 383 buffer_append(&buffer, session_id, 16);
5260325f 384 buffer_put_int(&buffer, response_type);
385
c345cf9d 386 if (ssh_request_reply(auth, &buffer, &buffer) == 0) {
5260325f 387 buffer_free(&buffer);
388 return 0;
389 }
c345cf9d 390 type = buffer_get_char(&buffer);
5260325f 391
94ec8c6b 392 if (agent_failed(type)) {
bbe88b6d 393 logit("Agent admitted failure to authenticate using the key.");
c345cf9d 394 } 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++)
febd6f21 403 response[i] = (u_char)buffer_get_char(&buffer);
8efc0c15 404 }
5260325f 405 buffer_free(&buffer);
c345cf9d 406 return success;
5260325f 407}
8efc0c15 408
2e73a022 409/* ask agent to sign data, returns -1 on error, 0 on success */
410int
411ssh_agent_sign(AuthenticationConnection *auth,
412 Key *key,
c66f9d0e 413 u_char **sigp, u_int *lenp,
414 u_char *data, u_int datalen)
2e73a022 415{
188adeb2 416 extern int datafellows;
2e73a022 417 Buffer msg;
1e3b8b07 418 u_char *blob;
419 u_int blen;
188adeb2 420 int type, flags = 0;
2e73a022 421 int ret = -1;
422
fa08c86b 423 if (key_to_blob(key, &blob, &blen) == 0)
2e73a022 424 return -1;
425
188adeb2 426 if (datafellows & SSH_BUG_SIGBLOB)
427 flags = SSH_AGENT_OLD_SIGNATURE;
428
2e73a022 429 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);
188adeb2 433 buffer_put_int(&msg, flags);
2e73a022 434 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);
94ec8c6b 441 if (agent_failed(type)) {
bbe88b6d 442 logit("Agent admitted failure to sign using the key.");
2e73a022 443 } 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
4c8722d9 453/* Encode key for a message to the agent. */
454
396c147e 455static void
fa08c86b 456ssh_encode_identity_rsa1(Buffer *b, RSA *key, const char *comment)
4c8722d9 457{
4c8722d9 458 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 */
449c5ba5 466 buffer_put_cstring(b, comment);
4c8722d9 467}
468
396c147e 469static void
fa08c86b 470ssh_encode_identity_ssh2(Buffer *b, Key *key, const char *comment)
4c8722d9 471{
fa08c86b 472 buffer_put_cstring(b, key_ssh_name(key));
6aacefa7 473 switch (key->type) {
fa08c86b 474 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);
4c8722d9 491}
492
aa3378df 493/*
494 * Adds an identity to the authentication server. This call is not meant to
495 * be used by normal applications.
496 */
8efc0c15 497
6ae2364d 498int
ee900f87 499ssh_add_identity_constrained(AuthenticationConnection *auth, Key *key,
c4087616 500 const char *comment, u_int life, u_int confirm)
8efc0c15 501{
2e73a022 502 Buffer msg;
c4087616 503 int type, constrained = (life || confirm);
5260325f 504
2e73a022 505 buffer_init(&msg);
4c8722d9 506
507 switch (key->type) {
fa08c86b 508 case KEY_RSA1:
ee900f87 509 type = constrained ?
510 SSH_AGENTC_ADD_RSA_ID_CONSTRAINED :
511 SSH_AGENTC_ADD_RSA_IDENTITY;
512 buffer_put_char(&msg, type);
fa08c86b 513 ssh_encode_identity_rsa1(&msg, key->rsa, comment);
4c8722d9 514 break;
fa08c86b 515 case KEY_RSA:
4c8722d9 516 case KEY_DSA:
ee900f87 517 type = constrained ?
518 SSH2_AGENTC_ADD_ID_CONSTRAINED :
519 SSH2_AGENTC_ADD_IDENTITY;
520 buffer_put_char(&msg, type);
fa08c86b 521 ssh_encode_identity_ssh2(&msg, key, comment);
4c8722d9 522 break;
523 default:
2e73a022 524 buffer_free(&msg);
4c8722d9 525 return 0;
4c8722d9 526 }
ee900f87 527 if (constrained) {
528 if (life != 0) {
529 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_LIFETIME);
530 buffer_put_int(&msg, life);
531 }
c4087616 532 if (confirm != 0)
533 buffer_put_char(&msg, SSH_AGENT_CONSTRAIN_CONFIRM);
ee900f87 534 }
2e73a022 535 if (ssh_request_reply(auth, &msg, &msg) == 0) {
536 buffer_free(&msg);
5260325f 537 return 0;
538 }
2e73a022 539 type = buffer_get_char(&msg);
540 buffer_free(&msg);
c345cf9d 541 return decode_reply(type);
5260325f 542}
543
ee900f87 544int
545ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
546{
c4087616 547 return ssh_add_identity_constrained(auth, key, comment, 0, 0);
ee900f87 548}
549
aa3378df 550/*
551 * Removes an identity from the authentication server. This call is not
552 * meant to be used by normal applications.
553 */
8efc0c15 554
6ae2364d 555int
2e73a022 556ssh_remove_identity(AuthenticationConnection *auth, Key *key)
8efc0c15 557{
2e73a022 558 Buffer msg;
c345cf9d 559 int type;
1e3b8b07 560 u_char *blob;
561 u_int blen;
2e73a022 562
563 buffer_init(&msg);
564
fa08c86b 565 if (key->type == KEY_RSA1) {
2e73a022 566 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);
fa08c86b 570 } else if (key->type == KEY_DSA || key->type == KEY_RSA) {
571 key_to_blob(key, &blob, &blen);
2e73a022 572 buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
573 buffer_put_string(&msg, blob, blen);
574 xfree(blob);
575 } else {
576 buffer_free(&msg);
5260325f 577 return 0;
578 }
2e73a022 579 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);
c345cf9d 585 return decode_reply(type);
5260325f 586}
587
983def13 588int
aff51935 589ssh_update_card(AuthenticationConnection *auth, int add,
ca719034 590 const char *reader_id, const char *pin, u_int life, u_int confirm)
983def13 591{
592 Buffer msg;
ca719034 593 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;
983def13 601
602 buffer_init(&msg);
ca719034 603 buffer_put_char(&msg, type);
9ff6f66f 604 buffer_put_cstring(&msg, reader_id);
76139bd8 605 buffer_put_cstring(&msg, pin);
b6453d99 606
ca719034 607 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
983def13 616 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
aa3378df 625/*
626 * Removes all identities from the agent. This call is not meant to be used
627 * by normal applications.
628 */
8efc0c15 629
6ae2364d 630int
2e73a022 631ssh_remove_all_identities(AuthenticationConnection *auth, int version)
8efc0c15 632{
2e73a022 633 Buffer msg;
c345cf9d 634 int type;
2e73a022 635 int code = (version==1) ?
636 SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
637 SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
5260325f 638
2e73a022 639 buffer_init(&msg);
640 buffer_put_char(&msg, code);
5260325f 641
2e73a022 642 if (ssh_request_reply(auth, &msg, &msg) == 0) {
643 buffer_free(&msg);
5260325f 644 return 0;
645 }
2e73a022 646 type = buffer_get_char(&msg);
647 buffer_free(&msg);
c345cf9d 648 return decode_reply(type);
089fbbd2 649}
650
2b87da3b 651int
c345cf9d 652decode_reply(int type)
089fbbd2 653{
5260325f 654 switch (type) {
655 case SSH_AGENT_FAILURE:
94ec8c6b 656 case SSH_COM_AGENT2_FAILURE:
65e683bd 657 case SSH2_AGENT_FAILURE:
bbe88b6d 658 logit("SSH_AGENT_FAILURE");
5260325f 659 return 0;
660 case SSH_AGENT_SUCCESS:
5260325f 661 return 1;
662 default:
089fbbd2 663 fatal("Bad response from authentication agent: %d", type);
8efc0c15 664 }
5260325f 665 /* NOTREACHED */
666 return 0;
667}
This page took 0.394117 seconds and 5 git commands to generate.