]> andersk Git - openssh.git/blame - monitor_wrap.c
- markus@cvs.openbsd.org 2003/04/01 10:10:23
[openssh.git] / monitor_wrap.c
CommitLineData
1853d1ef 1/*
2 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
3 * Copyright 2002 Markus Friedl <markus@openbsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
177f584b 28RCSID("$OpenBSD: monitor_wrap.c,v 1.24 2003/04/01 10:22:21 markus Exp $");
1853d1ef 29
30#include <openssl/bn.h>
31#include <openssl/dh.h>
32
33#include "ssh.h"
34#include "dh.h"
35#include "kex.h"
36#include "auth.h"
92e15201 37#include "auth-options.h"
1853d1ef 38#include "buffer.h"
39#include "bufaux.h"
40#include "packet.h"
41#include "mac.h"
42#include "log.h"
43#include "zlib.h"
44#include "monitor.h"
45#include "monitor_wrap.h"
46#include "xmalloc.h"
47#include "atomicio.h"
48#include "monitor_fdpass.h"
49#include "getput.h"
50
51#include "auth.h"
52#include "channels.h"
53#include "session.h"
54
55/* Imports */
56extern int compat20;
57extern Newkeys *newkeys[];
58extern z_stream incoming_stream;
59extern z_stream outgoing_stream;
b5a28cbc 60extern struct monitor *pmonitor;
1853d1ef 61extern Buffer input, output;
62
63void
64mm_request_send(int socket, enum monitor_reqtype type, Buffer *m)
65{
1853d1ef 66 u_int mlen = buffer_len(m);
405a0d43 67 u_char buf[5];
1853d1ef 68
1588c277 69 debug3("%s entering: type %d", __func__, type);
1853d1ef 70
71 PUT_32BIT(buf, mlen + 1);
7203d6bb 72 buf[4] = (u_char) type; /* 1st byte of payload is mesg-type */
1853d1ef 73 if (atomicio(write, socket, buf, sizeof(buf)) != sizeof(buf))
1588c277 74 fatal("%s: write", __func__);
1853d1ef 75 if (atomicio(write, socket, buffer_ptr(m), mlen) != mlen)
1588c277 76 fatal("%s: write", __func__);
1853d1ef 77}
78
79void
80mm_request_receive(int socket, Buffer *m)
81{
82 u_char buf[4];
1853d1ef 83 u_int msg_len;
405a0d43 84 ssize_t res;
1853d1ef 85
1588c277 86 debug3("%s entering", __func__);
1853d1ef 87
88 res = atomicio(read, socket, buf, sizeof(buf));
89 if (res != sizeof(buf)) {
90 if (res == 0)
91 fatal_cleanup();
1588c277 92 fatal("%s: read: %ld", __func__, (long)res);
1853d1ef 93 }
94 msg_len = GET_32BIT(buf);
95 if (msg_len > 256 * 1024)
1588c277 96 fatal("%s: read: bad msg_len %d", __func__, msg_len);
1853d1ef 97 buffer_clear(m);
98 buffer_append_space(m, msg_len);
99 res = atomicio(read, socket, buffer_ptr(m), msg_len);
100 if (res != msg_len)
1588c277 101 fatal("%s: read: %ld != msg_len", __func__, (long)res);
1853d1ef 102}
103
104void
105mm_request_receive_expect(int socket, enum monitor_reqtype type, Buffer *m)
106{
107 u_char rtype;
108
1588c277 109 debug3("%s entering: type %d", __func__, type);
1853d1ef 110
111 mm_request_receive(socket, m);
112 rtype = buffer_get_char(m);
113 if (rtype != type)
1588c277 114 fatal("%s: read: rtype %d != type %d", __func__,
1853d1ef 115 rtype, type);
116}
117
118DH *
119mm_choose_dh(int min, int nbits, int max)
120{
121 BIGNUM *p, *g;
122 int success = 0;
123 Buffer m;
124
125 buffer_init(&m);
126 buffer_put_int(&m, min);
127 buffer_put_int(&m, nbits);
128 buffer_put_int(&m, max);
129
b5a28cbc 130 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_MODULI, &m);
1853d1ef 131
1588c277 132 debug3("%s: waiting for MONITOR_ANS_MODULI", __func__);
b5a28cbc 133 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_MODULI, &m);
1853d1ef 134
135 success = buffer_get_char(&m);
136 if (success == 0)
1588c277 137 fatal("%s: MONITOR_ANS_MODULI failed", __func__);
1853d1ef 138
139 if ((p = BN_new()) == NULL)
1588c277 140 fatal("%s: BN_new failed", __func__);
1853d1ef 141 if ((g = BN_new()) == NULL)
1588c277 142 fatal("%s: BN_new failed", __func__);
1853d1ef 143 buffer_get_bignum2(&m, p);
144 buffer_get_bignum2(&m, g);
145
1588c277 146 debug3("%s: remaining %d", __func__, buffer_len(&m));
1853d1ef 147 buffer_free(&m);
148
149 return (dh_new_group(g, p));
150}
151
152int
153mm_key_sign(Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen)
154{
b5a28cbc 155 Kex *kex = *pmonitor->m_pkex;
1853d1ef 156 Buffer m;
157
1588c277 158 debug3("%s entering", __func__);
1853d1ef 159
160 buffer_init(&m);
161 buffer_put_int(&m, kex->host_key_index(key));
162 buffer_put_string(&m, data, datalen);
163
b5a28cbc 164 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SIGN, &m);
1853d1ef 165
1588c277 166 debug3("%s: waiting for MONITOR_ANS_SIGN", __func__);
b5a28cbc 167 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SIGN, &m);
1853d1ef 168 *sigp = buffer_get_string(&m, lenp);
169 buffer_free(&m);
170
171 return (0);
172}
173
174struct passwd *
175mm_getpwnamallow(const char *login)
176{
177 Buffer m;
178 struct passwd *pw;
179 u_int pwlen;
180
1588c277 181 debug3("%s entering", __func__);
1853d1ef 182
183 buffer_init(&m);
184 buffer_put_cstring(&m, login);
185
b5a28cbc 186 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PWNAM, &m);
1853d1ef 187
1588c277 188 debug3("%s: waiting for MONITOR_ANS_PWNAM", __func__);
b5a28cbc 189 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PWNAM, &m);
1853d1ef 190
191 if (buffer_get_char(&m) == 0) {
192 buffer_free(&m);
193 return (NULL);
194 }
195 pw = buffer_get_string(&m, &pwlen);
196 if (pwlen != sizeof(struct passwd))
1588c277 197 fatal("%s: struct passwd size mismatch", __func__);
1853d1ef 198 pw->pw_name = buffer_get_string(&m, NULL);
199 pw->pw_passwd = buffer_get_string(&m, NULL);
200 pw->pw_gecos = buffer_get_string(&m, NULL);
7b18c353 201#ifdef HAVE_PW_CLASS_IN_PASSWD
1853d1ef 202 pw->pw_class = buffer_get_string(&m, NULL);
7b18c353 203#endif
1853d1ef 204 pw->pw_dir = buffer_get_string(&m, NULL);
205 pw->pw_shell = buffer_get_string(&m, NULL);
206 buffer_free(&m);
207
208 return (pw);
209}
210
343288b8 211char *mm_auth2_read_banner(void)
94a73cdc 212{
213 Buffer m;
214 char *banner;
215
1588c277 216 debug3("%s entering", __func__);
94a73cdc 217
218 buffer_init(&m);
b5a28cbc 219 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTH2_READ_BANNER, &m);
94a73cdc 220 buffer_clear(&m);
221
b5a28cbc 222 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTH2_READ_BANNER, &m);
94a73cdc 223 banner = buffer_get_string(&m, NULL);
224 buffer_free(&m);
7203d6bb 225
94a73cdc 226 return (banner);
227}
228
1853d1ef 229/* Inform the privileged process about service and style */
230
231void
232mm_inform_authserv(char *service, char *style)
233{
234 Buffer m;
235
1588c277 236 debug3("%s entering", __func__);
1853d1ef 237
238 buffer_init(&m);
239 buffer_put_cstring(&m, service);
240 buffer_put_cstring(&m, style ? style : "");
241
b5a28cbc 242 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m);
1853d1ef 243
244 buffer_free(&m);
245}
246
247/* Do the password authentication */
248int
249mm_auth_password(Authctxt *authctxt, char *password)
250{
251 Buffer m;
252 int authenticated = 0;
253
1588c277 254 debug3("%s entering", __func__);
1853d1ef 255
256 buffer_init(&m);
257 buffer_put_cstring(&m, password);
b5a28cbc 258 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHPASSWORD, &m);
1853d1ef 259
1588c277 260 debug3("%s: waiting for MONITOR_ANS_AUTHPASSWORD", __func__);
b5a28cbc 261 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTHPASSWORD, &m);
1853d1ef 262
263 authenticated = buffer_get_int(&m);
264
265 buffer_free(&m);
266
267 debug3("%s: user %sauthenticated",
1588c277 268 __func__, authenticated ? "" : "not ");
1853d1ef 269 return (authenticated);
270}
271
272int
273mm_user_key_allowed(struct passwd *pw, Key *key)
274{
275 return (mm_key_allowed(MM_USERKEY, NULL, NULL, key));
276}
277
278int
279mm_hostbased_key_allowed(struct passwd *pw, char *user, char *host,
280 Key *key)
281{
282 return (mm_key_allowed(MM_HOSTKEY, user, host, key));
283}
284
285int
286mm_auth_rhosts_rsa_key_allowed(struct passwd *pw, char *user,
287 char *host, Key *key)
288{
289 int ret;
290
291 key->type = KEY_RSA; /* XXX hack for key_to_blob */
292 ret = mm_key_allowed(MM_RSAHOSTKEY, user, host, key);
293 key->type = KEY_RSA1;
294 return (ret);
295}
296
297static void
298mm_send_debug(Buffer *m)
299{
300 char *msg;
301
302 while (buffer_len(m)) {
303 msg = buffer_get_string(m, NULL);
1588c277 304 debug3("%s: Sending debug: %s", __func__, msg);
1853d1ef 305 packet_send_debug("%s", msg);
306 xfree(msg);
307 }
308}
309
310int
311mm_key_allowed(enum mm_keytype type, char *user, char *host, Key *key)
312{
313 Buffer m;
314 u_char *blob;
315 u_int len;
92e15201 316 int allowed = 0, have_forced = 0;
1853d1ef 317
1588c277 318 debug3("%s entering", __func__);
1853d1ef 319
320 /* Convert the key to a blob and the pass it over */
321 if (!key_to_blob(key, &blob, &len))
322 return (0);
323
324 buffer_init(&m);
325 buffer_put_int(&m, type);
326 buffer_put_cstring(&m, user ? user : "");
327 buffer_put_cstring(&m, host ? host : "");
328 buffer_put_string(&m, blob, len);
329 xfree(blob);
330
b5a28cbc 331 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYALLOWED, &m);
1853d1ef 332
1588c277 333 debug3("%s: waiting for MONITOR_ANS_KEYALLOWED", __func__);
b5a28cbc 334 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYALLOWED, &m);
1853d1ef 335
336 allowed = buffer_get_int(&m);
337
92e15201 338 /* fake forced command */
339 auth_clear_options();
340 have_forced = buffer_get_int(&m);
341 forced_command = have_forced ? xstrdup("true") : NULL;
342
1853d1ef 343 /* Send potential debug messages */
344 mm_send_debug(&m);
345
346 buffer_free(&m);
347
348 return (allowed);
349}
350
351/*
352 * This key verify needs to send the key type along, because the
353 * privileged parent makes the decision if the key is allowed
354 * for authentication.
355 */
356
357int
358mm_key_verify(Key *key, u_char *sig, u_int siglen, u_char *data, u_int datalen)
359{
360 Buffer m;
361 u_char *blob;
362 u_int len;
363 int verified = 0;
364
1588c277 365 debug3("%s entering", __func__);
1853d1ef 366
367 /* Convert the key to a blob and the pass it over */
368 if (!key_to_blob(key, &blob, &len))
369 return (0);
370
371 buffer_init(&m);
372 buffer_put_string(&m, blob, len);
373 buffer_put_string(&m, sig, siglen);
374 buffer_put_string(&m, data, datalen);
375 xfree(blob);
376
b5a28cbc 377 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m);
1853d1ef 378
1588c277 379 debug3("%s: waiting for MONITOR_ANS_KEYVERIFY", __func__);
b5a28cbc 380 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYVERIFY, &m);
1853d1ef 381
382 verified = buffer_get_int(&m);
383
384 buffer_free(&m);
385
386 return (verified);
387}
388
389/* Export key state after authentication */
390Newkeys *
391mm_newkeys_from_blob(u_char *blob, int blen)
392{
393 Buffer b;
394 u_int len;
395 Newkeys *newkey = NULL;
396 Enc *enc;
397 Mac *mac;
398 Comp *comp;
399
1588c277 400 debug3("%s: %p(%d)", __func__, blob, blen);
1853d1ef 401#ifdef DEBUG_PK
402 dump_base64(stderr, blob, blen);
403#endif
404 buffer_init(&b);
405 buffer_append(&b, blob, blen);
406
407 newkey = xmalloc(sizeof(*newkey));
408 enc = &newkey->enc;
409 mac = &newkey->mac;
410 comp = &newkey->comp;
411
412 /* Enc structure */
413 enc->name = buffer_get_string(&b, NULL);
414 buffer_get(&b, &enc->cipher, sizeof(enc->cipher));
415 enc->enabled = buffer_get_int(&b);
416 enc->block_size = buffer_get_int(&b);
417 enc->key = buffer_get_string(&b, &enc->key_len);
418 enc->iv = buffer_get_string(&b, &len);
419 if (len != enc->block_size)
bb0640b2 420 fatal("%s: bad ivlen: expected %u != %u", __func__,
1853d1ef 421 enc->block_size, len);
422
423 if (enc->name == NULL || cipher_by_name(enc->name) != enc->cipher)
1588c277 424 fatal("%s: bad cipher name %s or pointer %p", __func__,
1853d1ef 425 enc->name, enc->cipher);
426
427 /* Mac structure */
428 mac->name = buffer_get_string(&b, NULL);
429 if (mac->name == NULL || mac_init(mac, mac->name) == -1)
1588c277 430 fatal("%s: can not init mac %s", __func__, mac->name);
1853d1ef 431 mac->enabled = buffer_get_int(&b);
432 mac->key = buffer_get_string(&b, &len);
433 if (len > mac->key_len)
bb0640b2 434 fatal("%s: bad mac key length: %u > %d", __func__, len,
1853d1ef 435 mac->key_len);
436 mac->key_len = len;
437
438 /* Comp structure */
439 comp->type = buffer_get_int(&b);
440 comp->enabled = buffer_get_int(&b);
441 comp->name = buffer_get_string(&b, NULL);
442
443 len = buffer_len(&b);
444 if (len != 0)
bb0640b2 445 error("newkeys_from_blob: remaining bytes in blob %u", len);
1853d1ef 446 buffer_free(&b);
447 return (newkey);
448}
449
450int
451mm_newkeys_to_blob(int mode, u_char **blobp, u_int *lenp)
452{
453 Buffer b;
454 int len;
1853d1ef 455 Enc *enc;
456 Mac *mac;
457 Comp *comp;
458 Newkeys *newkey = newkeys[mode];
459
1588c277 460 debug3("%s: converting %p", __func__, newkey);
1853d1ef 461
462 if (newkey == NULL) {
1588c277 463 error("%s: newkey == NULL", __func__);
1853d1ef 464 return 0;
465 }
466 enc = &newkey->enc;
467 mac = &newkey->mac;
468 comp = &newkey->comp;
469
470 buffer_init(&b);
471 /* Enc structure */
472 buffer_put_cstring(&b, enc->name);
473 /* The cipher struct is constant and shared, you export pointer */
474 buffer_append(&b, &enc->cipher, sizeof(enc->cipher));
475 buffer_put_int(&b, enc->enabled);
476 buffer_put_int(&b, enc->block_size);
477 buffer_put_string(&b, enc->key, enc->key_len);
478 packet_get_keyiv(mode, enc->iv, enc->block_size);
479 buffer_put_string(&b, enc->iv, enc->block_size);
480
481 /* Mac structure */
482 buffer_put_cstring(&b, mac->name);
483 buffer_put_int(&b, mac->enabled);
484 buffer_put_string(&b, mac->key, mac->key_len);
485
486 /* Comp structure */
487 buffer_put_int(&b, comp->type);
488 buffer_put_int(&b, comp->enabled);
489 buffer_put_cstring(&b, comp->name);
490
491 len = buffer_len(&b);
1853d1ef 492 if (lenp != NULL)
493 *lenp = len;
eb9f2fab 494 if (blobp != NULL) {
495 *blobp = xmalloc(len);
496 memcpy(*blobp, buffer_ptr(&b), len);
497 }
498 memset(buffer_ptr(&b), 0, len);
499 buffer_free(&b);
1853d1ef 500 return len;
501}
502
503static void
504mm_send_kex(Buffer *m, Kex *kex)
505{
506 buffer_put_string(m, kex->session_id, kex->session_id_len);
507 buffer_put_int(m, kex->we_need);
508 buffer_put_int(m, kex->hostkey_type);
509 buffer_put_int(m, kex->kex_type);
510 buffer_put_string(m, buffer_ptr(&kex->my), buffer_len(&kex->my));
511 buffer_put_string(m, buffer_ptr(&kex->peer), buffer_len(&kex->peer));
512 buffer_put_int(m, kex->flags);
513 buffer_put_cstring(m, kex->client_version_string);
514 buffer_put_cstring(m, kex->server_version_string);
515}
516
517void
b5a28cbc 518mm_send_keystate(struct monitor *pmonitor)
1853d1ef 519{
520 Buffer m;
521 u_char *blob, *p;
522 u_int bloblen, plen;
523
524 buffer_init(&m);
525
526 if (!compat20) {
527 u_char iv[24];
9459414c 528 u_char *key;
529 u_int ivlen, keylen;
1853d1ef 530
531 buffer_put_int(&m, packet_get_protocol_flags());
532
533 buffer_put_int(&m, packet_get_ssh1_cipher());
534
9459414c 535 debug3("%s: Sending ssh1 KEY+IV", __func__);
536 keylen = packet_get_encryption_key(NULL);
537 key = xmalloc(keylen+1); /* add 1 if keylen == 0 */
538 keylen = packet_get_encryption_key(key);
539 buffer_put_string(&m, key, keylen);
540 memset(key, 0, keylen);
541 xfree(key);
542
1853d1ef 543 ivlen = packet_get_keyiv_len(MODE_OUT);
544 packet_get_keyiv(MODE_OUT, iv, ivlen);
545 buffer_put_string(&m, iv, ivlen);
546 ivlen = packet_get_keyiv_len(MODE_OUT);
547 packet_get_keyiv(MODE_IN, iv, ivlen);
548 buffer_put_string(&m, iv, ivlen);
549 goto skip;
550 } else {
551 /* Kex for rekeying */
b5a28cbc 552 mm_send_kex(&m, *pmonitor->m_pkex);
1853d1ef 553 }
554
555 debug3("%s: Sending new keys: %p %p",
1588c277 556 __func__, newkeys[MODE_OUT], newkeys[MODE_IN]);
1853d1ef 557
558 /* Keys from Kex */
559 if (!mm_newkeys_to_blob(MODE_OUT, &blob, &bloblen))
1588c277 560 fatal("%s: conversion of newkeys failed", __func__);
1853d1ef 561
562 buffer_put_string(&m, blob, bloblen);
563 xfree(blob);
564
565 if (!mm_newkeys_to_blob(MODE_IN, &blob, &bloblen))
1588c277 566 fatal("%s: conversion of newkeys failed", __func__);
1853d1ef 567
568 buffer_put_string(&m, blob, bloblen);
569 xfree(blob);
570
571 buffer_put_int(&m, packet_get_seqnr(MODE_OUT));
572 buffer_put_int(&m, packet_get_seqnr(MODE_IN));
573
1588c277 574 debug3("%s: New keys have been sent", __func__);
1853d1ef 575 skip:
576 /* More key context */
577 plen = packet_get_keycontext(MODE_OUT, NULL);
578 p = xmalloc(plen+1);
579 packet_get_keycontext(MODE_OUT, p);
580 buffer_put_string(&m, p, plen);
581 xfree(p);
582
583 plen = packet_get_keycontext(MODE_IN, NULL);
584 p = xmalloc(plen+1);
585 packet_get_keycontext(MODE_IN, p);
586 buffer_put_string(&m, p, plen);
587 xfree(p);
588
589 /* Compression state */
1588c277 590 debug3("%s: Sending compression state", __func__);
1853d1ef 591 buffer_put_string(&m, &outgoing_stream, sizeof(outgoing_stream));
592 buffer_put_string(&m, &incoming_stream, sizeof(incoming_stream));
593
594 /* Network I/O buffers */
595 buffer_put_string(&m, buffer_ptr(&input), buffer_len(&input));
596 buffer_put_string(&m, buffer_ptr(&output), buffer_len(&output));
597
b5a28cbc 598 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYEXPORT, &m);
1588c277 599 debug3("%s: Finished sending state", __func__);
1853d1ef 600
601 buffer_free(&m);
602}
603
604int
605mm_pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
606{
607 Buffer m;
661e45a0 608 char *p;
1853d1ef 609 int success = 0;
610
611 buffer_init(&m);
b5a28cbc 612 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTY, &m);
1853d1ef 613
1588c277 614 debug3("%s: waiting for MONITOR_ANS_PTY", __func__);
b5a28cbc 615 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PTY, &m);
1853d1ef 616
617 success = buffer_get_int(&m);
618 if (success == 0) {
1588c277 619 debug3("%s: pty alloc failed", __func__);
1853d1ef 620 buffer_free(&m);
621 return (0);
622 }
623 p = buffer_get_string(&m, NULL);
624 buffer_free(&m);
625
626 strlcpy(namebuf, p, namebuflen); /* Possible truncation */
627 xfree(p);
628
b5a28cbc 629 *ptyfd = mm_receive_fd(pmonitor->m_recvfd);
630 *ttyfd = mm_receive_fd(pmonitor->m_recvfd);
1853d1ef 631
632 /* Success */
633 return (1);
634}
635
636void
637mm_session_pty_cleanup2(void *session)
638{
639 Session *s = session;
640 Buffer m;
641
642 if (s->ttyfd == -1)
643 return;
644 buffer_init(&m);
645 buffer_put_cstring(&m, s->tty);
b5a28cbc 646 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PTYCLEANUP, &m);
1853d1ef 647 buffer_free(&m);
648
649 /* closed dup'ed master */
650 if (close(s->ptymaster) < 0)
651 error("close(s->ptymaster): %s", strerror(errno));
652
653 /* unlink pty from session */
654 s->ttyfd = -1;
655}
656
ad200abb 657#ifdef USE_PAM
658void
659mm_start_pam(char *user)
660{
661 Buffer m;
662
1588c277 663 debug3("%s entering", __func__);
ad200abb 664
665 buffer_init(&m);
666 buffer_put_cstring(&m, user);
667
b5a28cbc 668 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_START, &m);
ad200abb 669
670 buffer_free(&m);
671}
672#endif /* USE_PAM */
673
1853d1ef 674/* Request process termination */
675
676void
677mm_terminate(void)
678{
679 Buffer m;
680
681 buffer_init(&m);
b5a28cbc 682 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_TERM, &m);
1853d1ef 683 buffer_free(&m);
684}
685
686int
687mm_ssh1_session_key(BIGNUM *num)
688{
689 int rsafail;
690 Buffer m;
691
692 buffer_init(&m);
693 buffer_put_bignum2(&m, num);
b5a28cbc 694 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSKEY, &m);
1853d1ef 695
b5a28cbc 696 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SESSKEY, &m);
1853d1ef 697
698 rsafail = buffer_get_int(&m);
699 buffer_get_bignum2(&m, num);
700
701 buffer_free(&m);
702
703 return (rsafail);
704}
705
706static void
707mm_chall_setup(char **name, char **infotxt, u_int *numprompts,
708 char ***prompts, u_int **echo_on)
709{
7203d6bb 710 *name = xstrdup("");
711 *infotxt = xstrdup("");
1853d1ef 712 *numprompts = 1;
343288b8 713 *prompts = xmalloc(*numprompts * sizeof(char *));
1853d1ef 714 *echo_on = xmalloc(*numprompts * sizeof(u_int));
715 (*echo_on)[0] = 0;
716}
717
718int
719mm_bsdauth_query(void *ctx, char **name, char **infotxt,
720 u_int *numprompts, char ***prompts, u_int **echo_on)
721{
722 Buffer m;
6d6c25e3 723 u_int success;
1853d1ef 724 char *challenge;
725
1588c277 726 debug3("%s: entering", __func__);
1853d1ef 727
728 buffer_init(&m);
b5a28cbc 729 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHQUERY, &m);
1853d1ef 730
b5a28cbc 731 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_BSDAUTHQUERY,
1853d1ef 732 &m);
6d6c25e3 733 success = buffer_get_int(&m);
734 if (success == 0) {
1588c277 735 debug3("%s: no challenge", __func__);
1853d1ef 736 buffer_free(&m);
737 return (-1);
738 }
739
740 /* Get the challenge, and format the response */
741 challenge = buffer_get_string(&m, NULL);
742 buffer_free(&m);
743
744 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
745 (*prompts)[0] = challenge;
746
1588c277 747 debug3("%s: received challenge: %s", __func__, challenge);
1853d1ef 748
749 return (0);
750}
751
752int
753mm_bsdauth_respond(void *ctx, u_int numresponses, char **responses)
754{
755 Buffer m;
756 int authok;
757
1588c277 758 debug3("%s: entering", __func__);
1853d1ef 759 if (numresponses != 1)
760 return (-1);
761
762 buffer_init(&m);
763 buffer_put_cstring(&m, responses[0]);
b5a28cbc 764 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_BSDAUTHRESPOND, &m);
1853d1ef 765
b5a28cbc 766 mm_request_receive_expect(pmonitor->m_recvfd,
1853d1ef 767 MONITOR_ANS_BSDAUTHRESPOND, &m);
768
769 authok = buffer_get_int(&m);
770 buffer_free(&m);
771
772 return ((authok == 0) ? -1 : 0);
773}
774
775int
776mm_skey_query(void *ctx, char **name, char **infotxt,
777 u_int *numprompts, char ***prompts, u_int **echo_on)
778{
779 Buffer m;
6d6c25e3 780 int len;
781 u_int success;
1853d1ef 782 char *p, *challenge;
783
1588c277 784 debug3("%s: entering", __func__);
1853d1ef 785
786 buffer_init(&m);
b5a28cbc 787 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYQUERY, &m);
1853d1ef 788
b5a28cbc 789 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SKEYQUERY,
1853d1ef 790 &m);
6d6c25e3 791 success = buffer_get_int(&m);
792 if (success == 0) {
1588c277 793 debug3("%s: no challenge", __func__);
1853d1ef 794 buffer_free(&m);
795 return (-1);
796 }
797
798 /* Get the challenge, and format the response */
799 challenge = buffer_get_string(&m, NULL);
800 buffer_free(&m);
801
1588c277 802 debug3("%s: received challenge: %s", __func__, challenge);
1853d1ef 803
804 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
805
806 len = strlen(challenge) + strlen(SKEY_PROMPT) + 1;
807 p = xmalloc(len);
808 strlcpy(p, challenge, len);
809 strlcat(p, SKEY_PROMPT, len);
810 (*prompts)[0] = p;
811 xfree(challenge);
812
813 return (0);
814}
815
816int
817mm_skey_respond(void *ctx, u_int numresponses, char **responses)
818{
819 Buffer m;
820 int authok;
821
1588c277 822 debug3("%s: entering", __func__);
1853d1ef 823 if (numresponses != 1)
824 return (-1);
825
826 buffer_init(&m);
827 buffer_put_cstring(&m, responses[0]);
b5a28cbc 828 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SKEYRESPOND, &m);
1853d1ef 829
b5a28cbc 830 mm_request_receive_expect(pmonitor->m_recvfd,
1853d1ef 831 MONITOR_ANS_SKEYRESPOND, &m);
832
833 authok = buffer_get_int(&m);
834 buffer_free(&m);
835
836 return ((authok == 0) ? -1 : 0);
837}
838
839void
840mm_ssh1_session_id(u_char session_id[16])
841{
842 Buffer m;
843 int i;
844
1588c277 845 debug3("%s entering", __func__);
1853d1ef 846
847 buffer_init(&m);
848 for (i = 0; i < 16; i++)
849 buffer_put_char(&m, session_id[i]);
850
b5a28cbc 851 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SESSID, &m);
1853d1ef 852 buffer_free(&m);
853}
854
855int
856mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
857{
858 Buffer m;
859 Key *key;
860 u_char *blob;
861 u_int blen;
92e15201 862 int allowed = 0, have_forced = 0;
1853d1ef 863
1588c277 864 debug3("%s entering", __func__);
1853d1ef 865
866 buffer_init(&m);
867 buffer_put_bignum2(&m, client_n);
868
b5a28cbc 869 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSAKEYALLOWED, &m);
870 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSAKEYALLOWED, &m);
1853d1ef 871
872 allowed = buffer_get_int(&m);
873
92e15201 874 /* fake forced command */
875 auth_clear_options();
876 have_forced = buffer_get_int(&m);
877 forced_command = have_forced ? xstrdup("true") : NULL;
878
1853d1ef 879 if (allowed && rkey != NULL) {
880 blob = buffer_get_string(&m, &blen);
881 if ((key = key_from_blob(blob, blen)) == NULL)
1588c277 882 fatal("%s: key_from_blob failed", __func__);
1853d1ef 883 *rkey = key;
884 xfree(blob);
885 }
886 mm_send_debug(&m);
887 buffer_free(&m);
888
889 return (allowed);
890}
891
892BIGNUM *
893mm_auth_rsa_generate_challenge(Key *key)
894{
895 Buffer m;
896 BIGNUM *challenge;
897 u_char *blob;
898 u_int blen;
899
1588c277 900 debug3("%s entering", __func__);
1853d1ef 901
902 if ((challenge = BN_new()) == NULL)
1588c277 903 fatal("%s: BN_new failed", __func__);
1853d1ef 904
905 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
906 if (key_to_blob(key, &blob, &blen) == 0)
1588c277 907 fatal("%s: key_to_blob failed", __func__);
1853d1ef 908 key->type = KEY_RSA1;
909
910 buffer_init(&m);
911 buffer_put_string(&m, blob, blen);
912 xfree(blob);
913
b5a28cbc 914 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSACHALLENGE, &m);
915 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSACHALLENGE, &m);
1853d1ef 916
917 buffer_get_bignum2(&m, challenge);
918 buffer_free(&m);
919
920 return (challenge);
921}
922
923int
924mm_auth_rsa_verify_response(Key *key, BIGNUM *p, u_char response[16])
925{
926 Buffer m;
927 u_char *blob;
928 u_int blen;
929 int success = 0;
930
1588c277 931 debug3("%s entering", __func__);
1853d1ef 932
933 key->type = KEY_RSA; /* XXX cheat for key_to_blob */
934 if (key_to_blob(key, &blob, &blen) == 0)
1588c277 935 fatal("%s: key_to_blob failed", __func__);
1853d1ef 936 key->type = KEY_RSA1;
937
938 buffer_init(&m);
939 buffer_put_string(&m, blob, blen);
940 buffer_put_string(&m, response, 16);
941 xfree(blob);
942
b5a28cbc 943 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_RSARESPONSE, &m);
944 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_RSARESPONSE, &m);
1853d1ef 945
946 success = buffer_get_int(&m);
947 buffer_free(&m);
948
949 return (success);
950}
696f6bef 951
2db9d8aa 952#ifdef KRB4
953int
954mm_auth_krb4(Authctxt *authctxt, void *_auth, char **client, void *_reply)
955{
956 KTEXT auth, reply;
957 Buffer m;
958 u_int rlen;
959 int success = 0;
960 char *p;
961
962 debug3("%s entering", __func__);
963 auth = _auth;
964 reply = _reply;
965
966 buffer_init(&m);
967 buffer_put_string(&m, auth->dat, auth->length);
968
969 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB4, &m);
970 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB4, &m);
971
972 success = buffer_get_int(&m);
973 if (success) {
974 *client = buffer_get_string(&m, NULL);
975 p = buffer_get_string(&m, &rlen);
976 if (rlen >= MAX_KTXT_LEN)
977 fatal("%s: reply from monitor too large", __func__);
978 reply->length = rlen;
979 memcpy(reply->dat, p, rlen);
980 memset(p, 0, rlen);
981 xfree(p);
982 }
983 buffer_free(&m);
b77a87e5 984 return (success);
2db9d8aa 985}
986#endif
987
696f6bef 988#ifdef KRB5
989int
990mm_auth_krb5(void *ctx, void *argp, char **userp, void *resp)
991{
992 krb5_data *tkt, *reply;
993 Buffer m;
994 int success;
995
996 debug3("%s entering", __func__);
997 tkt = (krb5_data *) argp;
998 reply = (krb5_data *) resp;
999
1000 buffer_init(&m);
1001 buffer_put_string(&m, tkt->data, tkt->length);
1002
1003 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KRB5, &m);
1004 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KRB5, &m);
1005
1006 success = buffer_get_int(&m);
1007 if (success) {
1008 u_int len;
1009
1010 *userp = buffer_get_string(&m, NULL);
1011 reply->data = buffer_get_string(&m, &len);
1012 reply->length = len;
1013 } else {
1014 memset(reply, 0, sizeof(*reply));
1015 *userp = NULL;
1016 }
1017
1018 buffer_free(&m);
1019 return (success);
1020}
1021#endif
This page took 0.233792 seconds and 5 git commands to generate.