]> andersk Git - openssh.git/blame - ssh-agent.c
- (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
[openssh.git] / ssh-agent.c
CommitLineData
c56969f9 1/* $OpenBSD: ssh-agent.c,v 1.152 2006/08/04 20:46:05 stevesk Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * The authentication agent program.
2e73a022 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 *
a96070d4 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 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.
5260325f 35 */
8efc0c15 36
37#include "includes.h"
cebb4c24 38
39#include <sys/types.h>
536c14e8 40#include <sys/param.h>
41#include <sys/resource.h>
3e598f1a 42#include <sys/stat.h>
5b04a8bf 43#include <sys/socket.h>
e264ac72 44#ifdef HAVE_SYS_TIME_H
45# include <sys/time.h>
46#endif
cebb4c24 47#ifdef HAVE_SYS_UN_H
48# include <sys/un.h>
49#endif
9fd2a215 50#include "openbsd-compat/sys-queue.h"
5b04a8bf 51
00146caa 52#include <openssl/evp.h>
53#include <openssl/md5.h>
54
028094f4 55#include <errno.h>
d3221cca 56#include <fcntl.h>
a75f5360 57#ifdef HAVE_PATHS_H
6f61e0ec 58# include <paths.h>
a75f5360 59#endif
ada68823 60#include <signal.h>
24436b92 61#include <stdarg.h>
cf851879 62#include <stdio.h>
ffa517a8 63#include <stdlib.h>
b0f6943a 64#include <time.h>
00146caa 65#include <string.h>
5188ba17 66#include <unistd.h>
ada68823 67
31652869 68#include "xmalloc.h"
8efc0c15 69#include "ssh.h"
70#include "rsa.h"
8efc0c15 71#include "buffer.h"
4c8722d9 72#include "key.h"
73#include "authfd.h"
188adeb2 74#include "compat.h"
42f11eb2 75#include "log.h"
c4087616 76#include "misc.h"
8efc0c15 77
2b5fe3b8 78#ifdef SMARTCARD
2b5fe3b8 79#include "scard.h"
dd2495cb 80#endif
2b5fe3b8 81
e7f6070d 82#if defined(HAVE_SYS_PRCTL_H)
83#include <sys/prctl.h> /* For prctl() and PR_SET_DUMPABLE */
84#endif
85
17a3011c 86typedef enum {
87 AUTH_UNUSED,
88 AUTH_SOCKET,
89 AUTH_CONNECTION
90} sock_type;
91
5260325f 92typedef struct {
93 int fd;
17a3011c 94 sock_type type;
5260325f 95 Buffer input;
96 Buffer output;
b9dd5ca1 97 Buffer request;
8efc0c15 98} SocketEntry;
99
1e3b8b07 100u_int sockets_alloc = 0;
8efc0c15 101SocketEntry *sockets = NULL;
102
95f0a918 103typedef struct identity {
104 TAILQ_ENTRY(identity) next;
2e73a022 105 Key *key;
5260325f 106 char *comment;
264572cc 107 u_int death;
c4087616 108 u_int confirm;
8efc0c15 109} Identity;
110
2e73a022 111typedef struct {
112 int nentries;
95f0a918 113 TAILQ_HEAD(idqueue, identity) idlist;
2e73a022 114} Idtab;
115
116/* private key table, one per protocol version */
117Idtab idtable[3];
8efc0c15 118
119int max_fd = 0;
120
121/* pid of shell == parent of agent */
9da5c3c9 122pid_t parent_pid = -1;
8efc0c15 123
124/* pathname and directory for AUTH_SOCKET */
52e3daed 125char socket_name[MAXPATHLEN];
126char socket_dir[MAXPATHLEN];
8efc0c15 127
3db7f994 128/* locking */
129int locked = 0;
130char *lock_passwd = NULL;
131
5260325f 132extern char *__progname;
5260325f 133
494b267f 134/* Default lifetime (0 == forever) */
135static int lifetime = 0;
136
c1a4eef1 137static void
138close_socket(SocketEntry *e)
139{
c1a4eef1 140 close(e->fd);
141 e->fd = -1;
142 e->type = AUTH_UNUSED;
143 buffer_free(&e->input);
144 buffer_free(&e->output);
145 buffer_free(&e->request);
146}
147
396c147e 148static void
2e73a022 149idtab_init(void)
150{
151 int i;
e424e241 152
6aacefa7 153 for (i = 0; i <=2; i++) {
95f0a918 154 TAILQ_INIT(&idtable[i].idlist);
2e73a022 155 idtable[i].nentries = 0;
156 }
157}
158
159/* return private key table for requested protocol version */
396c147e 160static Idtab *
2e73a022 161idtab_lookup(int version)
162{
163 if (version < 1 || version > 2)
164 fatal("internal error, bad protocol version %d", version);
165 return &idtable[version];
166}
167
264572cc 168static void
169free_identity(Identity *id)
170{
171 key_free(id->key);
172 xfree(id->comment);
173 xfree(id);
174}
175
2e73a022 176/* return matching private key for given public key */
95f0a918 177static Identity *
178lookup_identity(Key *key, int version)
2e73a022 179{
95f0a918 180 Identity *id;
181
2e73a022 182 Idtab *tab = idtab_lookup(version);
95f0a918 183 TAILQ_FOREACH(id, &tab->idlist, next) {
184 if (key_equal(key, id->key))
185 return (id);
2e73a022 186 }
95f0a918 187 return (NULL);
188}
189
c4087616 190/* Check confirmation of keysign request */
191static int
192confirm_key(Identity *id)
193{
7a9c7a0b 194 char *p;
c4087616 195 int ret = -1;
196
197 p = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
7a9c7a0b 198 if (ask_permission("Allow use of key %s?\nKey fingerprint %s.",
199 id->comment, p))
200 ret = 0;
c4087616 201 xfree(p);
7a9c7a0b 202
c4087616 203 return (ret);
204}
205
2e73a022 206/* send list of supported public keys to 'client' */
396c147e 207static void
2e73a022 208process_request_identities(SocketEntry *e, int version)
8efc0c15 209{
2e73a022 210 Idtab *tab = idtab_lookup(version);
95f0a918 211 Identity *id;
e424e241 212 Buffer msg;
5260325f 213
214 buffer_init(&msg);
2e73a022 215 buffer_put_char(&msg, (version == 1) ?
216 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
217 buffer_put_int(&msg, tab->nentries);
95f0a918 218 TAILQ_FOREACH(id, &tab->idlist, next) {
fa08c86b 219 if (id->key->type == KEY_RSA1) {
2e73a022 220 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
221 buffer_put_bignum(&msg, id->key->rsa->e);
222 buffer_put_bignum(&msg, id->key->rsa->n);
223 } else {
1e3b8b07 224 u_char *blob;
225 u_int blen;
fa08c86b 226 key_to_blob(id->key, &blob, &blen);
2e73a022 227 buffer_put_string(&msg, blob, blen);
228 xfree(blob);
229 }
230 buffer_put_cstring(&msg, id->comment);
5260325f 231 }
232 buffer_put_int(&e->output, buffer_len(&msg));
233 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
234 buffer_free(&msg);
8efc0c15 235}
236
2e73a022 237/* ssh1 only */
396c147e 238static void
2e73a022 239process_authentication_challenge1(SocketEntry *e)
8efc0c15 240{
e424e241 241 u_char buf[32], mdbuf[16], session_id[16];
242 u_int response_type;
2e73a022 243 BIGNUM *challenge;
e424e241 244 Identity *id;
2e73a022 245 int i, len;
5260325f 246 Buffer msg;
247 MD5_CTX md;
e424e241 248 Key *key;
5260325f 249
250 buffer_init(&msg);
fa08c86b 251 key = key_new(KEY_RSA1);
b775c6f2 252 if ((challenge = BN_new()) == NULL)
253 fatal("process_authentication_challenge1: BN_new failed");
5260325f 254
1169c3df 255 (void) buffer_get_int(&e->request); /* ignored */
b9dd5ca1 256 buffer_get_bignum(&e->request, key->rsa->e);
257 buffer_get_bignum(&e->request, key->rsa->n);
258 buffer_get_bignum(&e->request, challenge);
5260325f 259
2e73a022 260 /* Only protocol 1.1 is supported */
b9dd5ca1 261 if (buffer_len(&e->request) == 0)
2e73a022 262 goto failure;
b9dd5ca1 263 buffer_get(&e->request, session_id, 16);
264 response_type = buffer_get_int(&e->request);
2e73a022 265 if (response_type != 1)
266 goto failure;
267
95f0a918 268 id = lookup_identity(key, 1);
c4087616 269 if (id != NULL && (!id->confirm || confirm_key(id) == 0)) {
95f0a918 270 Key *private = id->key;
2e73a022 271 /* Decrypt the challenge using the private key. */
46aa2d1f 272 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
273 goto failure;
2e73a022 274
275 /* The response is MD5 of decrypted challenge plus session id. */
276 len = BN_num_bytes(challenge);
277 if (len <= 0 || len > 32) {
bbe88b6d 278 logit("process_authentication_challenge: bad challenge length %d", len);
2e73a022 279 goto failure;
5260325f 280 }
2e73a022 281 memset(buf, 0, 32);
282 BN_bn2bin(challenge, buf + 32 - len);
283 MD5_Init(&md);
284 MD5_Update(&md, buf, 32);
285 MD5_Update(&md, session_id, 16);
286 MD5_Final(mdbuf, &md);
287
288 /* Send the response. */
289 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
290 for (i = 0; i < 16; i++)
291 buffer_put_char(&msg, mdbuf[i]);
292 goto send;
293 }
294
295failure:
296 /* Unknown identity or protocol error. Send failure. */
5260325f 297 buffer_put_char(&msg, SSH_AGENT_FAILURE);
298send:
2e73a022 299 buffer_put_int(&e->output, buffer_len(&msg));
300 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
301 key_free(key);
302 BN_clear_free(challenge);
303 buffer_free(&msg);
304}
305
306/* ssh2 only */
396c147e 307static void
2e73a022 308process_sign_request2(SocketEntry *e)
309{
1e3b8b07 310 u_char *blob, *data, *signature = NULL;
311 u_int blen, dlen, slen = 0;
e424e241 312 extern int datafellows;
313 int ok = -1, flags;
2e73a022 314 Buffer msg;
e424e241 315 Key *key;
2e73a022 316
317 datafellows = 0;
227e8e86 318
b9dd5ca1 319 blob = buffer_get_string(&e->request, &blen);
320 data = buffer_get_string(&e->request, &dlen);
188adeb2 321
b9dd5ca1 322 flags = buffer_get_int(&e->request);
188adeb2 323 if (flags & SSH_AGENT_OLD_SIGNATURE)
324 datafellows = SSH_BUG_SIGBLOB;
2e73a022 325
fa08c86b 326 key = key_from_blob(blob, blen);
2e73a022 327 if (key != NULL) {
95f0a918 328 Identity *id = lookup_identity(key, 2);
c4087616 329 if (id != NULL && (!id->confirm || confirm_key(id) == 0))
95f0a918 330 ok = key_sign(id->key, &signature, &slen, data, dlen);
2b8dc5e3 331 key_free(key);
2e73a022 332 }
2e73a022 333 buffer_init(&msg);
334 if (ok == 0) {
335 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
336 buffer_put_string(&msg, signature, slen);
337 } else {
338 buffer_put_char(&msg, SSH_AGENT_FAILURE);
339 }
5260325f 340 buffer_put_int(&e->output, buffer_len(&msg));
341 buffer_append(&e->output, buffer_ptr(&msg),
2e73a022 342 buffer_len(&msg));
5260325f 343 buffer_free(&msg);
2e73a022 344 xfree(data);
345 xfree(blob);
346 if (signature != NULL)
347 xfree(signature);
8efc0c15 348}
349
2e73a022 350/* shared */
396c147e 351static void
2e73a022 352process_remove_identity(SocketEntry *e, int version)
8efc0c15 353{
e424e241 354 u_int blen, bits;
355 int success = 0;
95f0a918 356 Key *key = NULL;
1e3b8b07 357 u_char *blob;
2e73a022 358
6aacefa7 359 switch (version) {
2e73a022 360 case 1:
fa08c86b 361 key = key_new(KEY_RSA1);
b9dd5ca1 362 bits = buffer_get_int(&e->request);
363 buffer_get_bignum(&e->request, key->rsa->e);
364 buffer_get_bignum(&e->request, key->rsa->n);
2e73a022 365
366 if (bits != key_size(key))
bbe88b6d 367 logit("Warning: identity keysize mismatch: actual %u, announced %u",
42f11eb2 368 key_size(key), bits);
2e73a022 369 break;
370 case 2:
b9dd5ca1 371 blob = buffer_get_string(&e->request, &blen);
fa08c86b 372 key = key_from_blob(blob, blen);
2e73a022 373 xfree(blob);
374 break;
375 }
376 if (key != NULL) {
95f0a918 377 Identity *id = lookup_identity(key, version);
378 if (id != NULL) {
aa3378df 379 /*
380 * We have this key. Free the old key. Since we
7b9b0103 381 * don't want to leave empty slots in the middle of
d343d900 382 * the array, we actually free the key there and move
383 * all the entries between the empty slot and the end
384 * of the array.
aa3378df 385 */
2e73a022 386 Idtab *tab = idtab_lookup(version);
fa08c86b 387 if (tab->nentries < 1)
388 fatal("process_remove_identity: "
389 "internal error: tab->nentries %d",
390 tab->nentries);
95f0a918 391 TAILQ_REMOVE(&tab->idlist, id, next);
392 free_identity(id);
2e73a022 393 tab->nentries--;
394 success = 1;
5260325f 395 }
2e73a022 396 key_free(key);
397 }
8efc0c15 398 buffer_put_int(&e->output, 1);
2e73a022 399 buffer_put_char(&e->output,
400 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 401}
402
396c147e 403static void
2e73a022 404process_remove_all_identities(SocketEntry *e, int version)
8efc0c15 405{
2e73a022 406 Idtab *tab = idtab_lookup(version);
95f0a918 407 Identity *id;
8efc0c15 408
5260325f 409 /* Loop over all identities and clear the keys. */
95f0a918 410 for (id = TAILQ_FIRST(&tab->idlist); id;
411 id = TAILQ_FIRST(&tab->idlist)) {
412 TAILQ_REMOVE(&tab->idlist, id, next);
413 free_identity(id);
5260325f 414 }
8efc0c15 415
5260325f 416 /* Mark that there are no identities. */
2e73a022 417 tab->nentries = 0;
8efc0c15 418
419 /* Send success. */
420 buffer_put_int(&e->output, 1);
421 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
5260325f 422}
423
264572cc 424static void
425reaper(void)
426{
e424e241 427 u_int now = time(NULL);
264572cc 428 Identity *id, *nxt;
429 int version;
e424e241 430 Idtab *tab;
264572cc 431
432 for (version = 1; version < 3; version++) {
433 tab = idtab_lookup(version);
434 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
435 nxt = TAILQ_NEXT(id, next);
436 if (id->death != 0 && now >= id->death) {
437 TAILQ_REMOVE(&tab->idlist, id, next);
438 free_identity(id);
439 tab->nentries--;
440 }
441 }
442 }
443}
444
396c147e 445static void
fa08c86b 446process_add_identity(SocketEntry *e, int version)
447{
2e73a022 448 Idtab *tab = idtab_lookup(version);
c4087616 449 int type, success = 0, death = 0, confirm = 0;
e424e241 450 char *type_name, *comment;
451 Key *k = NULL;
5260325f 452
2e73a022 453 switch (version) {
454 case 1:
fa08c86b 455 k = key_new_private(KEY_RSA1);
1169c3df 456 (void) buffer_get_int(&e->request); /* ignored */
b9dd5ca1 457 buffer_get_bignum(&e->request, k->rsa->n);
458 buffer_get_bignum(&e->request, k->rsa->e);
459 buffer_get_bignum(&e->request, k->rsa->d);
460 buffer_get_bignum(&e->request, k->rsa->iqmp);
2e73a022 461
462 /* SSH and SSL have p and q swapped */
b9dd5ca1 463 buffer_get_bignum(&e->request, k->rsa->q); /* p */
464 buffer_get_bignum(&e->request, k->rsa->p); /* q */
2e73a022 465
466 /* Generate additional parameters */
2b63e803 467 rsa_generate_additional_parameters(k->rsa);
2e73a022 468 break;
469 case 2:
b9dd5ca1 470 type_name = buffer_get_string(&e->request, NULL);
42f11eb2 471 type = key_type_from_name(type_name);
fa08c86b 472 xfree(type_name);
6aacefa7 473 switch (type) {
fa08c86b 474 case KEY_DSA:
475 k = key_new_private(type);
b9dd5ca1 476 buffer_get_bignum2(&e->request, k->dsa->p);
477 buffer_get_bignum2(&e->request, k->dsa->q);
478 buffer_get_bignum2(&e->request, k->dsa->g);
479 buffer_get_bignum2(&e->request, k->dsa->pub_key);
480 buffer_get_bignum2(&e->request, k->dsa->priv_key);
fa08c86b 481 break;
482 case KEY_RSA:
483 k = key_new_private(type);
b9dd5ca1 484 buffer_get_bignum2(&e->request, k->rsa->n);
485 buffer_get_bignum2(&e->request, k->rsa->e);
486 buffer_get_bignum2(&e->request, k->rsa->d);
487 buffer_get_bignum2(&e->request, k->rsa->iqmp);
488 buffer_get_bignum2(&e->request, k->rsa->p);
489 buffer_get_bignum2(&e->request, k->rsa->q);
fa08c86b 490
491 /* Generate additional parameters */
2b63e803 492 rsa_generate_additional_parameters(k->rsa);
fa08c86b 493 break;
494 default:
b9dd5ca1 495 buffer_clear(&e->request);
2e73a022 496 goto send;
5260325f 497 }
2e73a022 498 break;
499 }
cb0e1d67 500 /* enable blinding */
501 switch (k->type) {
502 case KEY_RSA:
503 case KEY_RSA1:
504 if (RSA_blinding_on(k->rsa, NULL) != 1) {
505 error("process_add_identity: RSA_blinding_on failed");
506 key_free(k);
507 goto send;
508 }
509 break;
510 }
b9dd5ca1 511 comment = buffer_get_string(&e->request, NULL);
2e73a022 512 if (k == NULL) {
513 xfree(comment);
514 goto send;
515 }
516 success = 1;
ee900f87 517 while (buffer_len(&e->request)) {
518 switch (buffer_get_char(&e->request)) {
519 case SSH_AGENT_CONSTRAIN_LIFETIME:
520 death = time(NULL) + buffer_get_int(&e->request);
521 break;
c4087616 522 case SSH_AGENT_CONSTRAIN_CONFIRM:
523 confirm = 1;
524 break;
ee900f87 525 default:
526 break;
527 }
528 }
494b267f 529 if (lifetime && !death)
530 death = time(NULL) + lifetime;
95f0a918 531 if (lookup_identity(k, version) == NULL) {
532 Identity *id = xmalloc(sizeof(Identity));
533 id->key = k;
534 id->comment = comment;
ee900f87 535 id->death = death;
c4087616 536 id->confirm = confirm;
95f0a918 537 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
2e73a022 538 /* Increment the number of identities. */
539 tab->nentries++;
540 } else {
541 key_free(k);
542 xfree(comment);
543 }
544send:
5260325f 545 buffer_put_int(&e->output, 1);
2e73a022 546 buffer_put_char(&e->output,
547 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 548}
549
3db7f994 550/* XXX todo: encrypt sensitive data with passphrase */
551static void
552process_lock_agent(SocketEntry *e, int lock)
553{
3db7f994 554 int success = 0;
e424e241 555 char *passwd;
3db7f994 556
557 passwd = buffer_get_string(&e->request, NULL);
558 if (locked && !lock && strcmp(passwd, lock_passwd) == 0) {
559 locked = 0;
560 memset(lock_passwd, 0, strlen(lock_passwd));
561 xfree(lock_passwd);
562 lock_passwd = NULL;
563 success = 1;
564 } else if (!locked && lock) {
565 locked = 1;
566 lock_passwd = xstrdup(passwd);
567 success = 1;
568 }
569 memset(passwd, 0, strlen(passwd));
570 xfree(passwd);
7203d6bb 571
3db7f994 572 buffer_put_int(&e->output, 1);
573 buffer_put_char(&e->output,
574 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
3db7f994 575}
576
577static void
578no_identities(SocketEntry *e, u_int type)
579{
580 Buffer msg;
581
582 buffer_init(&msg);
583 buffer_put_char(&msg,
584 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
585 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
586 buffer_put_int(&msg, 0);
587 buffer_put_int(&e->output, buffer_len(&msg));
588 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
589 buffer_free(&msg);
590}
2b5fe3b8 591
592#ifdef SMARTCARD
593static void
594process_add_smartcard_key (SocketEntry *e)
595{
76139bd8 596 char *sc_reader_id = NULL, *pin;
ca719034 597 int i, version, success = 0, death = 0, confirm = 0;
e424e241 598 Key **keys, *k;
599 Identity *id;
600 Idtab *tab;
184eed6a 601
b9dd5ca1 602 sc_reader_id = buffer_get_string(&e->request, NULL);
603 pin = buffer_get_string(&e->request, NULL);
ca719034 604
605 while (buffer_len(&e->request)) {
606 switch (buffer_get_char(&e->request)) {
607 case SSH_AGENT_CONSTRAIN_LIFETIME:
608 death = time(NULL) + buffer_get_int(&e->request);
609 break;
610 case SSH_AGENT_CONSTRAIN_CONFIRM:
611 confirm = 1;
612 break;
613 default:
614 break;
615 }
616 }
617 if (lifetime && !death)
618 death = time(NULL) + lifetime;
619
0659cace 620 keys = sc_get_keys(sc_reader_id, pin);
9ff6f66f 621 xfree(sc_reader_id);
76139bd8 622 xfree(pin);
2b5fe3b8 623
0659cace 624 if (keys == NULL || keys[0] == NULL) {
625 error("sc_get_keys failed");
2b5fe3b8 626 goto send;
627 }
0659cace 628 for (i = 0; keys[i] != NULL; i++) {
629 k = keys[i];
630 version = k->type == KEY_RSA1 ? 1 : 2;
631 tab = idtab_lookup(version);
632 if (lookup_identity(k, version) == NULL) {
633 id = xmalloc(sizeof(Identity));
634 id->key = k;
244e796f 635 id->comment = sc_get_key_label(k);
ca719034 636 id->death = death;
637 id->confirm = confirm;
0659cace 638 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
639 tab->nentries++;
640 success = 1;
641 } else {
642 key_free(k);
643 }
644 keys[i] = NULL;
2b5fe3b8 645 }
0659cace 646 xfree(keys);
2b5fe3b8 647send:
648 buffer_put_int(&e->output, 1);
649 buffer_put_char(&e->output,
650 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
651}
652
653static void
654process_remove_smartcard_key(SocketEntry *e)
655{
76139bd8 656 char *sc_reader_id = NULL, *pin;
0659cace 657 int i, version, success = 0;
e424e241 658 Key **keys, *k = NULL;
659 Identity *id;
660 Idtab *tab;
2b5fe3b8 661
b9dd5ca1 662 sc_reader_id = buffer_get_string(&e->request, NULL);
663 pin = buffer_get_string(&e->request, NULL);
0659cace 664 keys = sc_get_keys(sc_reader_id, pin);
9ff6f66f 665 xfree(sc_reader_id);
76139bd8 666 xfree(pin);
2b5fe3b8 667
0659cace 668 if (keys == NULL || keys[0] == NULL) {
669 error("sc_get_keys failed");
670 goto send;
671 }
672 for (i = 0; keys[i] != NULL; i++) {
673 k = keys[i];
674 version = k->type == KEY_RSA1 ? 1 : 2;
675 if ((id = lookup_identity(k, version)) != NULL) {
676 tab = idtab_lookup(version);
875ec275 677 TAILQ_REMOVE(&tab->idlist, id, next);
2b5fe3b8 678 tab->nentries--;
95f0a918 679 free_identity(id);
2b5fe3b8 680 success = 1;
681 }
682 key_free(k);
0659cace 683 keys[i] = NULL;
2b5fe3b8 684 }
0659cace 685 xfree(keys);
686send:
2b5fe3b8 687 buffer_put_int(&e->output, 1);
688 buffer_put_char(&e->output,
689 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
690}
3e984472 691#endif /* SMARTCARD */
2b5fe3b8 692
2e73a022 693/* dispatch incoming messages */
694
396c147e 695static void
8efc0c15 696process_message(SocketEntry *e)
697{
e424e241 698 u_int msg_len, type;
1e3b8b07 699 u_char *cp;
264572cc 700
701 /* kill dead keys */
702 reaper();
703
5260325f 704 if (buffer_len(&e->input) < 5)
705 return; /* Incomplete message. */
20905a8e 706 cp = buffer_ptr(&e->input);
51e7a012 707 msg_len = get_u32(cp);
5260325f 708 if (msg_len > 256 * 1024) {
c1a4eef1 709 close_socket(e);
5260325f 710 return;
711 }
712 if (buffer_len(&e->input) < msg_len + 4)
713 return;
b9dd5ca1 714
715 /* move the current input to e->request */
5260325f 716 buffer_consume(&e->input, 4);
b9dd5ca1 717 buffer_clear(&e->request);
718 buffer_append(&e->request, buffer_ptr(&e->input), msg_len);
719 buffer_consume(&e->input, msg_len);
720 type = buffer_get_char(&e->request);
5260325f 721
3db7f994 722 /* check wheter agent is locked */
723 if (locked && type != SSH_AGENTC_UNLOCK) {
724 buffer_clear(&e->request);
725 switch (type) {
726 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
727 case SSH2_AGENTC_REQUEST_IDENTITIES:
728 /* send empty lists */
729 no_identities(e, type);
730 break;
731 default:
732 /* send a fail message for all other request types */
733 buffer_put_int(&e->output, 1);
734 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
735 }
736 return;
737 }
738
2b5fe3b8 739 debug("type %d", type);
5260325f 740 switch (type) {
3db7f994 741 case SSH_AGENTC_LOCK:
742 case SSH_AGENTC_UNLOCK:
743 process_lock_agent(e, type == SSH_AGENTC_LOCK);
744 break;
2e73a022 745 /* ssh1 */
5260325f 746 case SSH_AGENTC_RSA_CHALLENGE:
2e73a022 747 process_authentication_challenge1(e);
748 break;
749 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
750 process_request_identities(e, 1);
5260325f 751 break;
752 case SSH_AGENTC_ADD_RSA_IDENTITY:
ee900f87 753 case SSH_AGENTC_ADD_RSA_ID_CONSTRAINED:
2e73a022 754 process_add_identity(e, 1);
5260325f 755 break;
756 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
2e73a022 757 process_remove_identity(e, 1);
5260325f 758 break;
759 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
2e73a022 760 process_remove_all_identities(e, 1);
761 break;
762 /* ssh2 */
763 case SSH2_AGENTC_SIGN_REQUEST:
764 process_sign_request2(e);
765 break;
766 case SSH2_AGENTC_REQUEST_IDENTITIES:
767 process_request_identities(e, 2);
768 break;
769 case SSH2_AGENTC_ADD_IDENTITY:
ee900f87 770 case SSH2_AGENTC_ADD_ID_CONSTRAINED:
2e73a022 771 process_add_identity(e, 2);
772 break;
773 case SSH2_AGENTC_REMOVE_IDENTITY:
774 process_remove_identity(e, 2);
775 break;
776 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
777 process_remove_all_identities(e, 2);
5260325f 778 break;
2b5fe3b8 779#ifdef SMARTCARD
780 case SSH_AGENTC_ADD_SMARTCARD_KEY:
ca719034 781 case SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED:
2b5fe3b8 782 process_add_smartcard_key(e);
184eed6a 783 break;
2b5fe3b8 784 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
785 process_remove_smartcard_key(e);
184eed6a 786 break;
3e984472 787#endif /* SMARTCARD */
5260325f 788 default:
789 /* Unknown message. Respond with failure. */
790 error("Unknown message %d", type);
b9dd5ca1 791 buffer_clear(&e->request);
5260325f 792 buffer_put_int(&e->output, 1);
793 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
794 break;
795 }
8efc0c15 796}
797
396c147e 798static void
17a3011c 799new_socket(sock_type type, int fd)
8efc0c15 800{
c46e584f 801 u_int i, old_alloc, new_alloc;
e424e241 802
170694d7 803 set_nonblock(fd);
5260325f 804
805 if (fd > max_fd)
806 max_fd = fd;
807
808 for (i = 0; i < sockets_alloc; i++)
809 if (sockets[i].type == AUTH_UNUSED) {
810 sockets[i].fd = fd;
5260325f 811 buffer_init(&sockets[i].input);
812 buffer_init(&sockets[i].output);
b9dd5ca1 813 buffer_init(&sockets[i].request);
c46e584f 814 sockets[i].type = type;
5260325f 815 return;
816 }
817 old_alloc = sockets_alloc;
c46e584f 818 new_alloc = sockets_alloc + 10;
c5d10563 819 sockets = xrealloc(sockets, new_alloc, sizeof(sockets[0]));
c46e584f 820 for (i = old_alloc; i < new_alloc; i++)
5260325f 821 sockets[i].type = AUTH_UNUSED;
c46e584f 822 sockets_alloc = new_alloc;
5260325f 823 sockets[old_alloc].fd = fd;
824 buffer_init(&sockets[old_alloc].input);
825 buffer_init(&sockets[old_alloc].output);
b9dd5ca1 826 buffer_init(&sockets[old_alloc].request);
c46e584f 827 sockets[old_alloc].type = type;
8efc0c15 828}
829
396c147e 830static int
9a995072 831prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp)
8efc0c15 832{
42f11eb2 833 u_int i, sz;
834 int n = 0;
835
836 for (i = 0; i < sockets_alloc; i++) {
5260325f 837 switch (sockets[i].type) {
838 case AUTH_SOCKET:
839 case AUTH_CONNECTION:
42f11eb2 840 n = MAX(n, sockets[i].fd);
5260325f 841 break;
842 case AUTH_UNUSED:
843 break;
844 default:
845 fatal("Unknown socket type %d", sockets[i].type);
846 break;
847 }
42f11eb2 848 }
849
850 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
e364646f 851 if (*fdrp == NULL || sz > *nallocp) {
42f11eb2 852 if (*fdrp)
894c5fa6 853 xfree(*fdrp);
42f11eb2 854 if (*fdwp)
894c5fa6 855 xfree(*fdwp);
42f11eb2 856 *fdrp = xmalloc(sz);
857 *fdwp = xmalloc(sz);
e364646f 858 *nallocp = sz;
42f11eb2 859 }
e364646f 860 if (n < *fdl)
861 debug("XXX shrink: %d < %d", n, *fdl);
862 *fdl = n;
42f11eb2 863 memset(*fdrp, 0, sz);
864 memset(*fdwp, 0, sz);
865
866 for (i = 0; i < sockets_alloc; i++) {
867 switch (sockets[i].type) {
868 case AUTH_SOCKET:
869 case AUTH_CONNECTION:
870 FD_SET(sockets[i].fd, *fdrp);
871 if (buffer_len(&sockets[i].output) > 0)
872 FD_SET(sockets[i].fd, *fdwp);
873 break;
874 default:
875 break;
876 }
877 }
878 return (1);
8efc0c15 879}
880
396c147e 881static void
5260325f 882after_select(fd_set *readset, fd_set *writeset)
8efc0c15 883{
e424e241 884 struct sockaddr_un sunaddr;
610cd5c6 885 socklen_t slen;
5260325f 886 char buf[1024];
e424e241 887 int len, sock;
888 u_int i;
87f4111f 889 uid_t euid;
890 gid_t egid;
5260325f 891
892 for (i = 0; i < sockets_alloc; i++)
893 switch (sockets[i].type) {
894 case AUTH_UNUSED:
895 break;
896 case AUTH_SOCKET:
897 if (FD_ISSET(sockets[i].fd, readset)) {
610cd5c6 898 slen = sizeof(sunaddr);
42f11eb2 899 sock = accept(sockets[i].fd,
32596c7b 900 (struct sockaddr *)&sunaddr, &slen);
5260325f 901 if (sock < 0) {
fccfbe3b 902 error("accept from AUTH_SOCKET: %s",
903 strerror(errno));
5260325f 904 break;
905 }
87f4111f 906 if (getpeereid(sock, &euid, &egid) < 0) {
907 error("getpeereid %d failed: %s",
908 sock, strerror(errno));
909 close(sock);
910 break;
911 }
e139021d 912 if ((euid != 0) && (getuid() != euid)) {
87f4111f 913 error("uid mismatch: "
792e7d2d 914 "peer euid %u != uid %u",
915 (u_int) euid, (u_int) getuid());
87f4111f 916 close(sock);
917 break;
918 }
5260325f 919 new_socket(AUTH_CONNECTION, sock);
920 }
921 break;
922 case AUTH_CONNECTION:
923 if (buffer_len(&sockets[i].output) > 0 &&
924 FD_ISSET(sockets[i].fd, writeset)) {
bbc62e59 925 do {
926 len = write(sockets[i].fd,
927 buffer_ptr(&sockets[i].output),
928 buffer_len(&sockets[i].output));
929 if (len == -1 && (errno == EAGAIN ||
930 errno == EINTR))
931 continue;
932 break;
933 } while (1);
5260325f 934 if (len <= 0) {
c1a4eef1 935 close_socket(&sockets[i]);
5260325f 936 break;
937 }
938 buffer_consume(&sockets[i].output, len);
939 }
940 if (FD_ISSET(sockets[i].fd, readset)) {
bbc62e59 941 do {
942 len = read(sockets[i].fd, buf, sizeof(buf));
943 if (len == -1 && (errno == EAGAIN ||
944 errno == EINTR))
945 continue;
946 break;
947 } while (1);
5260325f 948 if (len <= 0) {
c1a4eef1 949 close_socket(&sockets[i]);
5260325f 950 break;
951 }
952 buffer_append(&sockets[i].input, buf, len);
953 process_message(&sockets[i]);
954 }
955 break;
956 default:
957 fatal("Unknown type %d", sockets[i].type);
958 }
8efc0c15 959}
960
396c147e 961static void
cd25664d 962cleanup_socket(void)
dae3fa13 963{
2f4b2e38 964 if (socket_name[0])
965 unlink(socket_name);
966 if (socket_dir[0])
967 rmdir(socket_dir);
8efc0c15 968}
969
2362db19 970void
dae3fa13 971cleanup_exit(int i)
972{
cd25664d 973 cleanup_socket();
974 _exit(i);
dae3fa13 975}
976
8d0b0353 977/*ARGSUSED*/
396c147e 978static void
2f4b2e38 979cleanup_handler(int sig)
980{
cd25664d 981 cleanup_socket();
2f4b2e38 982 _exit(2);
983}
984
8d0b0353 985/*ARGSUSED*/
7efa8482 986static void
987check_parent_exists(int sig)
988{
989 int save_errno = errno;
990
991 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
992 /* printf("Parent has died - Authentication agent exiting.\n"); */
993 cleanup_handler(sig); /* safe */
994 }
8d9bb5dd 995 mysignal(SIGALRM, check_parent_exists);
7efa8482 996 alarm(10);
997 errno = save_errno;
998}
999
396c147e 1000static void
cc8aca8a 1001usage(void)
dae3fa13 1002{
33e766d2 1003 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
0e3c1f95 1004 __progname);
33e766d2 1005 fprintf(stderr, "Options:\n");
1006 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
1007 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
1008 fprintf(stderr, " -k Kill the current agent.\n");
1009 fprintf(stderr, " -d Debug mode.\n");
3e7efb37 1010 fprintf(stderr, " -a socket Bind agent socket to given name.\n");
494b267f 1011 fprintf(stderr, " -t life Default identity lifetime (seconds).\n");
5260325f 1012 exit(1);
dae3fa13 1013}
1014
8efc0c15 1015int
1016main(int ac, char **av)
1017{
c4087616 1018 int c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0;
c56969f9 1019 int sock, fd, ch;
9a995072 1020 u_int nalloc;
e424e241 1021 char *shell, *format, *pidstr, *agentsocket = NULL;
1022 fd_set *readsetp = NULL, *writesetp = NULL;
5260325f 1023 struct sockaddr_un sunaddr;
b03bd394 1024#ifdef HAVE_SETRLIMIT
0b6fbf03 1025 struct rlimit rlim;
c7ccfd39 1026#endif
c7ccfd39 1027 int prev_mask;
c04f75f1 1028 extern int optind;
ef3912be 1029 extern char *optarg;
e424e241 1030 pid_t pid;
1031 char pidstrbuf[1 + 3 * sizeof pid];
fcb975eb 1032
fd6168c1 1033 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1034 sanitise_stdfd();
1035
954640a4 1036 /* drop */
1037 setegid(getgid());
1038 setgid(getgid());
1039
e7f6070d 1040#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
1041 /* Disable ptrace on Linux without sgid bit */
1042 prctl(PR_SET_DUMPABLE, 0);
1043#endif
1044
457fc0c6 1045 SSLeay_add_all_algorithms();
1046
fda04d7d 1047 __progname = ssh_get_progname(av[0]);
264dce47 1048 init_rng();
e339aa53 1049 seed_rng();
2b87da3b 1050
494b267f 1051 while ((ch = getopt(ac, av, "cdksa:t:")) != -1) {
5260325f 1052 switch (ch) {
1053 case 'c':
1054 if (s_flag)
1055 usage();
1056 c_flag++;
1057 break;
1058 case 'k':
1059 k_flag++;
1060 break;
1061 case 's':
1062 if (c_flag)
1063 usage();
1064 s_flag++;
1065 break;
ffdb5d70 1066 case 'd':
1067 if (d_flag)
1068 usage();
1069 d_flag++;
1070 break;
3e7efb37 1071 case 'a':
1072 agentsocket = optarg;
1073 break;
494b267f 1074 case 't':
1075 if ((lifetime = convtime(optarg)) == -1) {
1076 fprintf(stderr, "Invalid lifetime\n");
1077 usage();
1078 }
1079 break;
5260325f 1080 default:
1081 usage();
1082 }
dae3fa13 1083 }
5260325f 1084 ac -= optind;
1085 av += optind;
1086
ffdb5d70 1087 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
5260325f 1088 usage();
1089
b745a2f2 1090 if (ac == 0 && !c_flag && !s_flag) {
5260325f 1091 shell = getenv("SHELL");
cfaa5405 1092 if (shell != NULL &&
1093 strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
5260325f 1094 c_flag = 1;
dae3fa13 1095 }
5260325f 1096 if (k_flag) {
cfaa5405 1097 const char *errstr = NULL;
1098
5260325f 1099 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1100 if (pidstr == NULL) {
1101 fprintf(stderr, "%s not set, cannot kill agent\n",
42f11eb2 1102 SSH_AGENTPID_ENV_NAME);
5260325f 1103 exit(1);
1104 }
cfaa5405 1105 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1106 if (errstr) {
1107 fprintf(stderr,
1108 "%s=\"%s\", which is not a good PID: %s\n",
1109 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
5260325f 1110 exit(1);
1111 }
1112 if (kill(pid, SIGTERM) == -1) {
1113 perror("kill");
1114 exit(1);
1115 }
1116 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1117 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1118 printf(format, SSH_AGENTPID_ENV_NAME);
c457707e 1119 printf("echo Agent pid %ld killed;\n", (long)pid);
5260325f 1120 exit(0);
dae3fa13 1121 }
5260325f 1122 parent_pid = getpid();
1123
3e7efb37 1124 if (agentsocket == NULL) {
1125 /* Create private directory for agent socket */
c88de854 1126 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXXXX", sizeof socket_dir);
3e7efb37 1127 if (mkdtemp(socket_dir) == NULL) {
1128 perror("mkdtemp: private socket dir");
1129 exit(1);
1130 }
c457707e 1131 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1132 (long)parent_pid);
3e7efb37 1133 } else {
1134 /* Try to use specified agent socket */
1135 socket_dir[0] = '\0';
1136 strlcpy(socket_name, agentsocket, sizeof socket_name);
5260325f 1137 }
5260325f 1138
aa3378df 1139 /*
1140 * Create socket early so it will exist before command gets run from
1141 * the parent.
1142 */
5260325f 1143 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1144 if (sock < 0) {
1145 perror("socket");
8e8d8c82 1146 *socket_name = '\0'; /* Don't unlink any existing file */
5260325f 1147 cleanup_exit(1);
1148 }
1149 memset(&sunaddr, 0, sizeof(sunaddr));
1150 sunaddr.sun_family = AF_UNIX;
1151 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
c7ccfd39 1152 prev_mask = umask(0177);
32596c7b 1153 if (bind(sock, (struct sockaddr *) &sunaddr, sizeof(sunaddr)) < 0) {
5260325f 1154 perror("bind");
8e8d8c82 1155 *socket_name = '\0'; /* Don't unlink any existing file */
c7ccfd39 1156 umask(prev_mask);
5260325f 1157 cleanup_exit(1);
1158 }
c7ccfd39 1159 umask(prev_mask);
fce39749 1160 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
5260325f 1161 perror("listen");
1162 cleanup_exit(1);
dae3fa13 1163 }
42f11eb2 1164
aa3378df 1165 /*
1166 * Fork, and have the parent execute the command, if any, or present
1167 * the socket data. The child continues as the authentication agent.
1168 */
ffdb5d70 1169 if (d_flag) {
1170 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
1171 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1172 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1173 SSH_AUTHSOCKET_ENV_NAME);
c457707e 1174 printf("echo Agent pid %ld;\n", (long)parent_pid);
ffdb5d70 1175 goto skip;
1176 }
5260325f 1177 pid = fork();
1178 if (pid == -1) {
1179 perror("fork");
fccfbe3b 1180 cleanup_exit(1);
dae3fa13 1181 }
5260325f 1182 if (pid != 0) { /* Parent - execute the given command. */
1183 close(sock);
c457707e 1184 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
5260325f 1185 if (ac == 0) {
1186 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1187 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
42f11eb2 1188 SSH_AUTHSOCKET_ENV_NAME);
5260325f 1189 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
42f11eb2 1190 SSH_AGENTPID_ENV_NAME);
c457707e 1191 printf("echo Agent pid %ld;\n", (long)pid);
5260325f 1192 exit(0);
1193 }
bcbf86ec 1194 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1195 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1196 perror("setenv");
1197 exit(1);
1198 }
5260325f 1199 execvp(av[0], av);
1200 perror(av[0]);
1201 exit(1);
1202 }
fccfbe3b 1203 /* child */
1204 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
ec9f3450 1205
1206 if (setsid() == -1) {
fccfbe3b 1207 error("setsid: %s", strerror(errno));
ec9f3450 1208 cleanup_exit(1);
1209 }
1210
1211 (void)chdir("/");
c4087616 1212 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1213 /* XXX might close listen socket */
1214 (void)dup2(fd, STDIN_FILENO);
1215 (void)dup2(fd, STDOUT_FILENO);
1216 (void)dup2(fd, STDERR_FILENO);
1217 if (fd > 2)
1218 close(fd);
1219 }
dae3fa13 1220
b03bd394 1221#ifdef HAVE_SETRLIMIT
0b6fbf03 1222 /* deny core dumps, since memory contains unencrypted private keys */
1223 rlim.rlim_cur = rlim.rlim_max = 0;
1224 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
fccfbe3b 1225 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
0b6fbf03 1226 cleanup_exit(1);
1227 }
b03bd394 1228#endif
ffdb5d70 1229
1230skip:
5260325f 1231 new_socket(AUTH_SOCKET, sock);
1232 if (ac > 0) {
8d9bb5dd 1233 mysignal(SIGALRM, check_parent_exists);
5260325f 1234 alarm(10);
1235 }
2e73a022 1236 idtab_init();
1ee482c5 1237 if (!d_flag)
ffdb5d70 1238 signal(SIGINT, SIG_IGN);
1ee482c5 1239 signal(SIGPIPE, SIG_IGN);
2f4b2e38 1240 signal(SIGHUP, cleanup_handler);
1241 signal(SIGTERM, cleanup_handler);
e364646f 1242 nalloc = 0;
1243
5260325f 1244 while (1) {
e364646f 1245 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
42f11eb2 1246 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
5260325f 1247 if (errno == EINTR)
1248 continue;
fccfbe3b 1249 fatal("select: %s", strerror(errno));
5260325f 1250 }
42f11eb2 1251 after_select(readsetp, writesetp);
8efc0c15 1252 }
5260325f 1253 /* NOTREACHED */
8efc0c15 1254}
This page took 0.522767 seconds and 5 git commands to generate.