]> andersk Git - openssh.git/blame - monitor.c
- (djm) OpenBSD CVS Sync
[openssh.git] / monitor.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"
ba1566dd 28RCSID("$OpenBSD: monitor.c,v 1.24 2002/08/29 15:57:25 stevesk Exp $");
1853d1ef 29
30#include <openssl/dh.h>
31
32#ifdef SKEY
33#include <skey.h>
34#endif
35
36#include "ssh.h"
37#include "auth.h"
38#include "kex.h"
39#include "dh.h"
40#include "zlib.h"
41#include "packet.h"
42#include "auth-options.h"
43#include "sshpty.h"
44#include "channels.h"
45#include "session.h"
46#include "sshlogin.h"
47#include "canohost.h"
48#include "log.h"
49#include "servconf.h"
50#include "monitor.h"
51#include "monitor_mm.h"
52#include "monitor_wrap.h"
53#include "monitor_fdpass.h"
54#include "xmalloc.h"
55#include "misc.h"
56#include "buffer.h"
57#include "bufaux.h"
58#include "compat.h"
59#include "ssh2.h"
60#include "mpaux.h"
61
62/* Imports */
63extern ServerOptions options;
64extern u_int utmp_len;
65extern Newkeys *current_keys[];
66extern z_stream incoming_stream;
67extern z_stream outgoing_stream;
68extern u_char session_id[];
69extern Buffer input, output;
70extern Buffer auth_debug;
71extern int auth_debug_init;
72
73/* State exported from the child */
74
75struct {
76 z_stream incoming;
77 z_stream outgoing;
78 u_char *keyin;
79 u_int keyinlen;
80 u_char *keyout;
81 u_int keyoutlen;
82 u_char *ivin;
83 u_int ivinlen;
84 u_char *ivout;
85 u_int ivoutlen;
9459414c 86 u_char *ssh1key;
87 u_int ssh1keylen;
1853d1ef 88 int ssh1cipher;
89 int ssh1protoflags;
90 u_char *input;
91 u_int ilen;
92 u_char *output;
93 u_int olen;
94} child_state;
95
96/* Functions on the montior that answer unprivileged requests */
97
98int mm_answer_moduli(int, Buffer *);
99int mm_answer_sign(int, Buffer *);
100int mm_answer_pwnamallow(int, Buffer *);
94a73cdc 101int mm_answer_auth2_read_banner(int, Buffer *);
1853d1ef 102int mm_answer_authserv(int, Buffer *);
103int mm_answer_authpassword(int, Buffer *);
104int mm_answer_bsdauthquery(int, Buffer *);
105int mm_answer_bsdauthrespond(int, Buffer *);
106int mm_answer_skeyquery(int, Buffer *);
107int mm_answer_skeyrespond(int, Buffer *);
108int mm_answer_keyallowed(int, Buffer *);
109int mm_answer_keyverify(int, Buffer *);
110int mm_answer_pty(int, Buffer *);
111int mm_answer_pty_cleanup(int, Buffer *);
112int mm_answer_term(int, Buffer *);
113int mm_answer_rsa_keyallowed(int, Buffer *);
114int mm_answer_rsa_challenge(int, Buffer *);
115int mm_answer_rsa_response(int, Buffer *);
116int mm_answer_sesskey(int, Buffer *);
117int mm_answer_sessid(int, Buffer *);
118
ad200abb 119#ifdef USE_PAM
120int mm_answer_pam_start(int, Buffer *);
121#endif
122
1853d1ef 123static Authctxt *authctxt;
124static BIGNUM *ssh1_challenge = NULL; /* used for ssh1 rsa auth */
125
126/* local state for key verify */
127static u_char *key_blob = NULL;
128static u_int key_bloblen = 0;
129static int key_blobtype = MM_NOKEY;
130static u_char *hostbased_cuser = NULL;
131static u_char *hostbased_chost = NULL;
132static char *auth_method = "unknown";
521d606b 133static int session_id2_len = 0;
134static u_char *session_id2 = NULL;
1853d1ef 135
136struct mon_table {
137 enum monitor_reqtype type;
138 int flags;
139 int (*f)(int, Buffer *);
140};
141
142#define MON_ISAUTH 0x0004 /* Required for Authentication */
143#define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
144#define MON_ONCE 0x0010 /* Disable after calling */
145
146#define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
147
148#define MON_PERMIT 0x1000 /* Request is permitted */
149
150struct mon_table mon_dispatch_proto20[] = {
151 {MONITOR_REQ_MODULI, MON_ONCE, mm_answer_moduli},
152 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
153 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
154 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
94a73cdc 155 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
1853d1ef 156 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
ad200abb 157#ifdef USE_PAM
158 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
8b314ec9 159#endif
1853d1ef 160#ifdef BSD_AUTH
161 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
162 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH,mm_answer_bsdauthrespond},
163#endif
164#ifdef SKEY
165 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
166 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
167#endif
168 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
169 {MONITOR_REQ_KEYVERIFY, MON_AUTH, mm_answer_keyverify},
170 {0, 0, NULL}
171};
172
173struct mon_table mon_dispatch_postauth20[] = {
174 {MONITOR_REQ_MODULI, 0, mm_answer_moduli},
175 {MONITOR_REQ_SIGN, 0, mm_answer_sign},
176 {MONITOR_REQ_PTY, 0, mm_answer_pty},
177 {MONITOR_REQ_PTYCLEANUP, 0, mm_answer_pty_cleanup},
178 {MONITOR_REQ_TERM, 0, mm_answer_term},
179 {0, 0, NULL}
180};
181
182struct mon_table mon_dispatch_proto15[] = {
183 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
184 {MONITOR_REQ_SESSKEY, MON_ONCE, mm_answer_sesskey},
185 {MONITOR_REQ_SESSID, MON_ONCE, mm_answer_sessid},
186 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
187 {MONITOR_REQ_RSAKEYALLOWED, MON_ISAUTH, mm_answer_rsa_keyallowed},
188 {MONITOR_REQ_KEYALLOWED, MON_ISAUTH, mm_answer_keyallowed},
189 {MONITOR_REQ_RSACHALLENGE, MON_ONCE, mm_answer_rsa_challenge},
190 {MONITOR_REQ_RSARESPONSE, MON_ONCE|MON_AUTHDECIDE, mm_answer_rsa_response},
191#ifdef BSD_AUTH
192 {MONITOR_REQ_BSDAUTHQUERY, MON_ISAUTH, mm_answer_bsdauthquery},
193 {MONITOR_REQ_BSDAUTHRESPOND, MON_AUTH,mm_answer_bsdauthrespond},
194#endif
195#ifdef SKEY
196 {MONITOR_REQ_SKEYQUERY, MON_ISAUTH, mm_answer_skeyquery},
197 {MONITOR_REQ_SKEYRESPOND, MON_AUTH, mm_answer_skeyrespond},
efe44db6 198#endif
199#ifdef USE_PAM
200 {MONITOR_REQ_PAM_START, MON_ONCE, mm_answer_pam_start},
1853d1ef 201#endif
202 {0, 0, NULL}
203};
204
205struct mon_table mon_dispatch_postauth15[] = {
206 {MONITOR_REQ_PTY, MON_ONCE, mm_answer_pty},
207 {MONITOR_REQ_PTYCLEANUP, MON_ONCE, mm_answer_pty_cleanup},
208 {MONITOR_REQ_TERM, 0, mm_answer_term},
209 {0, 0, NULL}
210};
211
212struct mon_table *mon_dispatch;
213
214/* Specifies if a certain message is allowed at the moment */
215
216static void
217monitor_permit(struct mon_table *ent, enum monitor_reqtype type, int permit)
218{
219 while (ent->f != NULL) {
220 if (ent->type == type) {
221 ent->flags &= ~MON_PERMIT;
222 ent->flags |= permit ? MON_PERMIT : 0;
223 return;
224 }
225 ent++;
226 }
227}
228
229static void
230monitor_permit_authentications(int permit)
231{
232 struct mon_table *ent = mon_dispatch;
233
234 while (ent->f != NULL) {
235 if (ent->flags & MON_AUTH) {
236 ent->flags &= ~MON_PERMIT;
237 ent->flags |= permit ? MON_PERMIT : 0;
238 }
239 ent++;
240 }
241}
242
243Authctxt *
b5a28cbc 244monitor_child_preauth(struct monitor *pmonitor)
1853d1ef 245{
246 struct mon_table *ent;
247 int authenticated = 0;
248
249 debug3("preauth child monitor started");
250
251 if (compat20) {
252 mon_dispatch = mon_dispatch_proto20;
253
254 /* Permit requests for moduli and signatures */
255 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
256 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
257 } else {
258 mon_dispatch = mon_dispatch_proto15;
259
260 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
261 }
262
263 authctxt = authctxt_new();
264
265 /* The first few requests do not require asynchronous access */
266 while (!authenticated) {
b5a28cbc 267 authenticated = monitor_read(pmonitor, mon_dispatch, &ent);
1853d1ef 268 if (authenticated) {
269 if (!(ent->flags & MON_AUTHDECIDE))
270 fatal("%s: unexpected authentication from %d",
1588c277 271 __func__, ent->type);
1853d1ef 272 if (authctxt->pw->pw_uid == 0 &&
273 !auth_root_allowed(auth_method))
274 authenticated = 0;
ad200abb 275#ifdef USE_PAM
276 if (!do_pam_account(authctxt->pw->pw_name, NULL))
277 authenticated = 0;
278#endif
1853d1ef 279 }
280
281 if (ent->flags & MON_AUTHDECIDE) {
282 auth_log(authctxt, authenticated, auth_method,
283 compat20 ? " ssh2" : "");
284 if (!authenticated)
285 authctxt->failures++;
286 }
287 }
288
289 if (!authctxt->valid)
1588c277 290 fatal("%s: authenticated invalid user", __func__);
1853d1ef 291
292 debug("%s: %s has been authenticated by privileged process",
1588c277 293 __func__, authctxt->user);
1853d1ef 294
b5a28cbc 295 mm_get_keystate(pmonitor);
1853d1ef 296
297 return (authctxt);
298}
299
300void
b5a28cbc 301monitor_child_postauth(struct monitor *pmonitor)
1853d1ef 302{
303 if (compat20) {
304 mon_dispatch = mon_dispatch_postauth20;
305
306 /* Permit requests for moduli and signatures */
307 monitor_permit(mon_dispatch, MONITOR_REQ_MODULI, 1);
308 monitor_permit(mon_dispatch, MONITOR_REQ_SIGN, 1);
309 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
310
311 } else {
312 mon_dispatch = mon_dispatch_postauth15;
313 monitor_permit(mon_dispatch, MONITOR_REQ_TERM, 1);
314 }
315 if (!no_pty_flag) {
316 monitor_permit(mon_dispatch, MONITOR_REQ_PTY, 1);
317 monitor_permit(mon_dispatch, MONITOR_REQ_PTYCLEANUP, 1);
318 }
319
320 for (;;)
b5a28cbc 321 monitor_read(pmonitor, mon_dispatch, NULL);
1853d1ef 322}
323
324void
b5a28cbc 325monitor_sync(struct monitor *pmonitor)
1853d1ef 326{
0496cf34 327 if (options.compression) {
328 /* The member allocation is not visible, so sync it */
329 mm_share_sync(&pmonitor->m_zlib, &pmonitor->m_zback);
330 }
1853d1ef 331}
332
333int
b5a28cbc 334monitor_read(struct monitor *pmonitor, struct mon_table *ent,
1853d1ef 335 struct mon_table **pent)
336{
337 Buffer m;
338 int ret;
339 u_char type;
340
341 buffer_init(&m);
342
b5a28cbc 343 mm_request_receive(pmonitor->m_sendfd, &m);
1853d1ef 344 type = buffer_get_char(&m);
345
1588c277 346 debug3("%s: checking request %d", __func__, type);
1853d1ef 347
348 while (ent->f != NULL) {
349 if (ent->type == type)
350 break;
351 ent++;
352 }
353
354 if (ent->f != NULL) {
355 if (!(ent->flags & MON_PERMIT))
1588c277 356 fatal("%s: unpermitted request %d", __func__,
1853d1ef 357 type);
b5a28cbc 358 ret = (*ent->f)(pmonitor->m_sendfd, &m);
1853d1ef 359 buffer_free(&m);
360
361 /* The child may use this request only once, disable it */
362 if (ent->flags & MON_ONCE) {
1588c277 363 debug2("%s: %d used once, disabling now", __func__,
1853d1ef 364 type);
365 ent->flags &= ~MON_PERMIT;
366 }
367
368 if (pent != NULL)
369 *pent = ent;
370
371 return ret;
372 }
373
1588c277 374 fatal("%s: unsupported request: %d", __func__, type);
1853d1ef 375
376 /* NOTREACHED */
377 return (-1);
378}
379
380/* allowed key state */
381static int
382monitor_allowed_key(u_char *blob, u_int bloblen)
383{
384 /* make sure key is allowed */
385 if (key_blob == NULL || key_bloblen != bloblen ||
386 memcmp(key_blob, blob, key_bloblen))
387 return (0);
388 return (1);
389}
390
391static void
392monitor_reset_key_state(void)
393{
394 /* reset state */
395 if (key_blob != NULL)
396 xfree(key_blob);
397 if (hostbased_cuser != NULL)
398 xfree(hostbased_cuser);
399 if (hostbased_chost != NULL)
400 xfree(hostbased_chost);
401 key_blob = NULL;
402 key_bloblen = 0;
403 key_blobtype = MM_NOKEY;
404 hostbased_cuser = NULL;
405 hostbased_chost = NULL;
406}
407
408int
409mm_answer_moduli(int socket, Buffer *m)
410{
411 DH *dh;
412 int min, want, max;
413
414 min = buffer_get_int(m);
415 want = buffer_get_int(m);
416 max = buffer_get_int(m);
417
418 debug3("%s: got parameters: %d %d %d",
1588c277 419 __func__, min, want, max);
1853d1ef 420 /* We need to check here, too, in case the child got corrupted */
421 if (max < min || want < min || max < want)
422 fatal("%s: bad parameters: %d %d %d",
1588c277 423 __func__, min, want, max);
1853d1ef 424
425 buffer_clear(m);
426
427 dh = choose_dh(min, want, max);
428 if (dh == NULL) {
429 buffer_put_char(m, 0);
430 return (0);
431 } else {
432 /* Send first bignum */
433 buffer_put_char(m, 1);
434 buffer_put_bignum2(m, dh->p);
435 buffer_put_bignum2(m, dh->g);
436
437 DH_free(dh);
438 }
439 mm_request_send(socket, MONITOR_ANS_MODULI, m);
440 return (0);
441}
442
443int
444mm_answer_sign(int socket, Buffer *m)
445{
446 Key *key;
447 u_char *p;
448 u_char *signature;
449 u_int siglen, datlen;
450 int keyid;
451
1588c277 452 debug3("%s", __func__);
1853d1ef 453
454 keyid = buffer_get_int(m);
455 p = buffer_get_string(m, &datlen);
456
457 if (datlen != 20)
d1ff09ba 458 fatal("%s: data length incorrect: %u", __func__, datlen);
1853d1ef 459
521d606b 460 /* save session id, it will be passed on the first call */
461 if (session_id2_len == 0) {
462 session_id2_len = datlen;
463 session_id2 = xmalloc(session_id2_len);
464 memcpy(session_id2, p, session_id2_len);
465 }
466
1853d1ef 467 if ((key = get_hostkey_by_index(keyid)) == NULL)
1588c277 468 fatal("%s: no hostkey from index %d", __func__, keyid);
1853d1ef 469 if (key_sign(key, &signature, &siglen, p, datlen) < 0)
1588c277 470 fatal("%s: key_sign failed", __func__);
1853d1ef 471
d1ff09ba 472 debug3("%s: signature %p(%u)", __func__, signature, siglen);
1853d1ef 473
474 buffer_clear(m);
475 buffer_put_string(m, signature, siglen);
476
477 xfree(p);
478 xfree(signature);
479
480 mm_request_send(socket, MONITOR_ANS_SIGN, m);
481
482 /* Turn on permissions for getpwnam */
483 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
484
485 return (0);
486}
487
488/* Retrieves the password entry and also checks if the user is permitted */
489
490int
491mm_answer_pwnamallow(int socket, Buffer *m)
492{
493 char *login;
494 struct passwd *pwent;
495 int allowed = 0;
496
1588c277 497 debug3("%s", __func__);
1853d1ef 498
499 if (authctxt->attempt++ != 0)
1588c277 500 fatal("%s: multiple attempts for getpwnam", __func__);
1853d1ef 501
502 login = buffer_get_string(m, NULL);
503
504 pwent = getpwnamallow(login);
505
506 authctxt->user = xstrdup(login);
507 setproctitle("%s [priv]", pwent ? login : "unknown");
508 xfree(login);
509
510 buffer_clear(m);
511
512 if (pwent == NULL) {
513 buffer_put_char(m, 0);
514 goto out;
515 }
516
517 allowed = 1;
518 authctxt->pw = pwent;
519 authctxt->valid = 1;
520
521 buffer_put_char(m, 1);
522 buffer_put_string(m, pwent, sizeof(struct passwd));
523 buffer_put_cstring(m, pwent->pw_name);
524 buffer_put_cstring(m, "*");
525 buffer_put_cstring(m, pwent->pw_gecos);
7b18c353 526#ifdef HAVE_PW_CLASS_IN_PASSWD
1853d1ef 527 buffer_put_cstring(m, pwent->pw_class);
7b18c353 528#endif
1853d1ef 529 buffer_put_cstring(m, pwent->pw_dir);
530 buffer_put_cstring(m, pwent->pw_shell);
531
532 out:
1588c277 533 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
1853d1ef 534 mm_request_send(socket, MONITOR_ANS_PWNAM, m);
535
536 /* For SSHv1 allow authentication now */
537 if (!compat20)
538 monitor_permit_authentications(1);
94a73cdc 539 else {
1853d1ef 540 /* Allow service/style information on the auth context */
541 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
94a73cdc 542 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
543 }
1853d1ef 544
efe44db6 545#ifdef USE_PAM
546 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_START, 1);
547#endif
1853d1ef 548
549 return (0);
550}
551
94a73cdc 552int mm_answer_auth2_read_banner(int socket, Buffer *m)
553{
554 char *banner;
555
556 buffer_clear(m);
557 banner = auth2_read_banner();
558 buffer_put_cstring(m, banner != NULL ? banner : "");
559 mm_request_send(socket, MONITOR_ANS_AUTH2_READ_BANNER, m);
560
561 if (banner != NULL)
30e37ee6 562 xfree(banner);
94a73cdc 563
564 return (0);
565}
566
1853d1ef 567int
568mm_answer_authserv(int socket, Buffer *m)
569{
570 monitor_permit_authentications(1);
571
572 authctxt->service = buffer_get_string(m, NULL);
573 authctxt->style = buffer_get_string(m, NULL);
574 debug3("%s: service=%s, style=%s",
1588c277 575 __func__, authctxt->service, authctxt->style);
1853d1ef 576
577 if (strlen(authctxt->style) == 0) {
578 xfree(authctxt->style);
579 authctxt->style = NULL;
580 }
581
582 return (0);
583}
584
585int
586mm_answer_authpassword(int socket, Buffer *m)
587{
588 static int call_count;
589 char *passwd;
d341742a 590 int authenticated;
591 u_int plen;
1853d1ef 592
593 passwd = buffer_get_string(m, &plen);
594 /* Only authenticate if the context is valid */
aa586f8e 595 authenticated = options.password_authentication &&
596 authctxt->valid && auth_password(authctxt, passwd);
1853d1ef 597 memset(passwd, 0, strlen(passwd));
598 xfree(passwd);
599
600 buffer_clear(m);
601 buffer_put_int(m, authenticated);
602
1588c277 603 debug3("%s: sending result %d", __func__, authenticated);
1853d1ef 604 mm_request_send(socket, MONITOR_ANS_AUTHPASSWORD, m);
605
606 call_count++;
607 if (plen == 0 && call_count == 1)
608 auth_method = "none";
609 else
610 auth_method = "password";
611
612 /* Causes monitor loop to terminate if authenticated */
613 return (authenticated);
614}
615
616#ifdef BSD_AUTH
617int
618mm_answer_bsdauthquery(int socket, Buffer *m)
619{
620 char *name, *infotxt;
621 u_int numprompts;
622 u_int *echo_on;
623 char **prompts;
624 int res;
625
626 res = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
627 &prompts, &echo_on);
628
629 buffer_clear(m);
630 buffer_put_int(m, res);
631 if (res != -1)
632 buffer_put_cstring(m, prompts[0]);
633
1588c277 634 debug3("%s: sending challenge res: %d", __func__, res);
1853d1ef 635 mm_request_send(socket, MONITOR_ANS_BSDAUTHQUERY, m);
636
637 if (res != -1) {
638 xfree(name);
639 xfree(infotxt);
640 xfree(prompts);
641 xfree(echo_on);
642 }
643
644 return (0);
645}
646
647int
648mm_answer_bsdauthrespond(int socket, Buffer *m)
649{
650 char *response;
651 int authok;
652
653 if (authctxt->as == 0)
1588c277 654 fatal("%s: no bsd auth session", __func__);
1853d1ef 655
656 response = buffer_get_string(m, NULL);
aa586f8e 657 authok = options.challenge_response_authentication &&
658 auth_userresponse(authctxt->as, response, 0);
1853d1ef 659 authctxt->as = NULL;
1588c277 660 debug3("%s: <%s> = <%d>", __func__, response, authok);
1853d1ef 661 xfree(response);
662
663 buffer_clear(m);
664 buffer_put_int(m, authok);
665
1588c277 666 debug3("%s: sending authenticated: %d", __func__, authok);
1853d1ef 667 mm_request_send(socket, MONITOR_ANS_BSDAUTHRESPOND, m);
668
669 auth_method = "bsdauth";
670
671 return (authok != 0);
672}
673#endif
674
675#ifdef SKEY
676int
677mm_answer_skeyquery(int socket, Buffer *m)
678{
679 struct skey skey;
680 char challenge[1024];
681 int res;
682
683 res = skeychallenge(&skey, authctxt->user, challenge);
684
685 buffer_clear(m);
686 buffer_put_int(m, res);
687 if (res != -1)
688 buffer_put_cstring(m, challenge);
689
1588c277 690 debug3("%s: sending challenge res: %d", __func__, res);
1853d1ef 691 mm_request_send(socket, MONITOR_ANS_SKEYQUERY, m);
692
693 return (0);
694}
695
696int
697mm_answer_skeyrespond(int socket, Buffer *m)
698{
699 char *response;
700 int authok;
701
702 response = buffer_get_string(m, NULL);
703
aa586f8e 704 authok = (options.challenge_response_authentication &&
705 authctxt->valid &&
1853d1ef 706 skey_haskey(authctxt->pw->pw_name) == 0 &&
707 skey_passcheck(authctxt->pw->pw_name, response) != -1);
708
709 xfree(response);
710
711 buffer_clear(m);
712 buffer_put_int(m, authok);
713
1588c277 714 debug3("%s: sending authenticated: %d", __func__, authok);
1853d1ef 715 mm_request_send(socket, MONITOR_ANS_SKEYRESPOND, m);
716
717 auth_method = "skey";
718
719 return (authok != 0);
720}
721#endif
722
ad200abb 723#ifdef USE_PAM
724int
725mm_answer_pam_start(int socket, Buffer *m)
726{
727 char *user;
728
729 user = buffer_get_string(m, NULL);
730
731 start_pam(user);
732
733 xfree(user);
734
735 return (0);
736}
737#endif
738
1853d1ef 739static void
740mm_append_debug(Buffer *m)
741{
742 if (auth_debug_init && buffer_len(&auth_debug)) {
1588c277 743 debug3("%s: Appending debug messages for child", __func__);
1853d1ef 744 buffer_append(m, buffer_ptr(&auth_debug),
745 buffer_len(&auth_debug));
746 buffer_clear(&auth_debug);
747 }
748}
749
750int
751mm_answer_keyallowed(int socket, Buffer *m)
752{
753 Key *key;
754 u_char *cuser, *chost, *blob;
755 u_int bloblen;
756 enum mm_keytype type = 0;
757 int allowed = 0;
758
1588c277 759 debug3("%s entering", __func__);
1853d1ef 760
761 type = buffer_get_int(m);
762 cuser = buffer_get_string(m, NULL);
763 chost = buffer_get_string(m, NULL);
764 blob = buffer_get_string(m, &bloblen);
765
766 key = key_from_blob(blob, bloblen);
767
768 if ((compat20 && type == MM_RSAHOSTKEY) ||
769 (!compat20 && type != MM_RSAHOSTKEY))
1588c277 770 fatal("%s: key type and protocol mismatch", __func__);
1853d1ef 771
1588c277 772 debug3("%s: key_from_blob: %p", __func__, key);
1853d1ef 773
774 if (key != NULL && authctxt->pw != NULL) {
775 switch(type) {
776 case MM_USERKEY:
aa586f8e 777 allowed = options.pubkey_authentication &&
778 user_key_allowed(authctxt->pw, key);
1853d1ef 779 break;
780 case MM_HOSTKEY:
aa586f8e 781 allowed = options.hostbased_authentication &&
782 hostbased_key_allowed(authctxt->pw,
1853d1ef 783 cuser, chost, key);
784 break;
785 case MM_RSAHOSTKEY:
786 key->type = KEY_RSA1; /* XXX */
aa586f8e 787 allowed = options.rhosts_rsa_authentication &&
788 auth_rhosts_rsa_key_allowed(authctxt->pw,
1853d1ef 789 cuser, chost, key);
790 break;
791 default:
1588c277 792 fatal("%s: unknown key type %d", __func__, type);
1853d1ef 793 break;
794 }
795 key_free(key);
796 }
797
798 /* clear temporarily storage (used by verify) */
799 monitor_reset_key_state();
800
801 if (allowed) {
802 /* Save temporarily for comparison in verify */
803 key_blob = blob;
804 key_bloblen = bloblen;
805 key_blobtype = type;
806 hostbased_cuser = cuser;
807 hostbased_chost = chost;
808 }
809
810 debug3("%s: key %p is %s",
1588c277 811 __func__, key, allowed ? "allowed" : "disallowed");
1853d1ef 812
813 buffer_clear(m);
814 buffer_put_int(m, allowed);
815
816 mm_append_debug(m);
817
818 mm_request_send(socket, MONITOR_ANS_KEYALLOWED, m);
819
820 if (type == MM_RSAHOSTKEY)
821 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
822
823 return (0);
824}
825
826static int
827monitor_valid_userblob(u_char *data, u_int datalen)
828{
829 Buffer b;
830 u_char *p;
831 u_int len;
832 int fail = 0;
1853d1ef 833
834 buffer_init(&b);
835 buffer_append(&b, data, datalen);
836
837 if (datafellows & SSH_OLD_SESSIONID) {
521d606b 838 p = buffer_ptr(&b);
839 len = buffer_len(&b);
840 if ((session_id2 == NULL) ||
841 (len < session_id2_len) ||
842 (memcmp(p, session_id2, session_id2_len) != 0))
843 fail++;
1853d1ef 844 buffer_consume(&b, session_id2_len);
845 } else {
521d606b 846 p = buffer_get_string(&b, &len);
847 if ((session_id2 == NULL) ||
848 (len != session_id2_len) ||
849 (memcmp(p, session_id2, session_id2_len) != 0))
1853d1ef 850 fail++;
521d606b 851 xfree(p);
1853d1ef 852 }
853 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
854 fail++;
855 p = buffer_get_string(&b, NULL);
856 if (strcmp(authctxt->user, p) != 0) {
857 log("wrong user name passed to monitor: expected %s != %.100s",
858 authctxt->user, p);
859 fail++;
860 }
861 xfree(p);
862 buffer_skip_string(&b);
863 if (datafellows & SSH_BUG_PKAUTH) {
864 if (!buffer_get_char(&b))
865 fail++;
866 } else {
867 p = buffer_get_string(&b, NULL);
868 if (strcmp("publickey", p) != 0)
869 fail++;
870 xfree(p);
871 if (!buffer_get_char(&b))
872 fail++;
873 buffer_skip_string(&b);
874 }
875 buffer_skip_string(&b);
876 if (buffer_len(&b) != 0)
877 fail++;
878 buffer_free(&b);
879 return (fail == 0);
880}
881
882static int
883monitor_valid_hostbasedblob(u_char *data, u_int datalen, u_char *cuser,
884 u_char *chost)
885{
886 Buffer b;
887 u_char *p;
888 u_int len;
889 int fail = 0;
1853d1ef 890
891 buffer_init(&b);
892 buffer_append(&b, data, datalen);
893
521d606b 894 p = buffer_get_string(&b, &len);
895 if ((session_id2 == NULL) ||
896 (len != session_id2_len) ||
897 (memcmp(p, session_id2, session_id2_len) != 0))
1853d1ef 898 fail++;
521d606b 899 xfree(p);
900
1853d1ef 901 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
902 fail++;
903 p = buffer_get_string(&b, NULL);
904 if (strcmp(authctxt->user, p) != 0) {
905 log("wrong user name passed to monitor: expected %s != %.100s",
906 authctxt->user, p);
907 fail++;
908 }
909 xfree(p);
910 buffer_skip_string(&b); /* service */
911 p = buffer_get_string(&b, NULL);
912 if (strcmp(p, "hostbased") != 0)
913 fail++;
914 xfree(p);
915 buffer_skip_string(&b); /* pkalg */
916 buffer_skip_string(&b); /* pkblob */
917
918 /* verify client host, strip trailing dot if necessary */
919 p = buffer_get_string(&b, NULL);
920 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
921 p[len - 1] = '\0';
922 if (strcmp(p, chost) != 0)
923 fail++;
924 xfree(p);
925
926 /* verify client user */
927 p = buffer_get_string(&b, NULL);
928 if (strcmp(p, cuser) != 0)
929 fail++;
930 xfree(p);
931
932 if (buffer_len(&b) != 0)
933 fail++;
934 buffer_free(&b);
935 return (fail == 0);
936}
937
938int
939mm_answer_keyverify(int socket, Buffer *m)
940{
941 Key *key;
942 u_char *signature, *data, *blob;
943 u_int signaturelen, datalen, bloblen;
944 int verified = 0;
945 int valid_data = 0;
946
947 blob = buffer_get_string(m, &bloblen);
948 signature = buffer_get_string(m, &signaturelen);
949 data = buffer_get_string(m, &datalen);
950
951 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
300e01c4 952 !monitor_allowed_key(blob, bloblen))
1588c277 953 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 954
955 key = key_from_blob(blob, bloblen);
956 if (key == NULL)
1588c277 957 fatal("%s: bad public key blob", __func__);
1853d1ef 958
959 switch (key_blobtype) {
960 case MM_USERKEY:
961 valid_data = monitor_valid_userblob(data, datalen);
962 break;
963 case MM_HOSTKEY:
964 valid_data = monitor_valid_hostbasedblob(data, datalen,
965 hostbased_cuser, hostbased_chost);
966 break;
967 default:
968 valid_data = 0;
969 break;
970 }
971 if (!valid_data)
1588c277 972 fatal("%s: bad signature data blob", __func__);
1853d1ef 973
974 verified = key_verify(key, signature, signaturelen, data, datalen);
975 debug3("%s: key %p signature %s",
1588c277 976 __func__, key, verified ? "verified" : "unverified");
1853d1ef 977
978 key_free(key);
979 xfree(blob);
980 xfree(signature);
981 xfree(data);
982
d17ef027 983 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
984
1853d1ef 985 monitor_reset_key_state();
986
987 buffer_clear(m);
988 buffer_put_int(m, verified);
989 mm_request_send(socket, MONITOR_ANS_KEYVERIFY, m);
990
1853d1ef 991 return (verified);
992}
993
994static void
995mm_record_login(Session *s, struct passwd *pw)
996{
997 socklen_t fromlen;
998 struct sockaddr_storage from;
999
1000 /*
1001 * Get IP address of client. If the connection is not a socket, let
1002 * the address be 0.0.0.0.
1003 */
1004 memset(&from, 0, sizeof(from));
ba1566dd 1005 fromlen = sizeof(from);
1853d1ef 1006 if (packet_connection_is_on_socket()) {
1853d1ef 1007 if (getpeername(packet_get_connection_in(),
1008 (struct sockaddr *) & from, &fromlen) < 0) {
1009 debug("getpeername: %.100s", strerror(errno));
1010 fatal_cleanup();
1011 }
1012 }
1013 /* Record that there was a login on that tty from the remote host. */
1014 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
1015 get_remote_name_or_ip(utmp_len, options.verify_reverse_mapping),
ba1566dd 1016 (struct sockaddr *)&from, fromlen);
1853d1ef 1017}
1018
1019static void
1020mm_session_close(Session *s)
1021{
1588c277 1022 debug3("%s: session %d pid %d", __func__, s->self, s->pid);
1853d1ef 1023 if (s->ttyfd != -1) {
1588c277 1024 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
1853d1ef 1025 fatal_remove_cleanup(session_pty_cleanup2, (void *)s);
1026 session_pty_cleanup2(s);
1027 }
1028 s->used = 0;
1029}
1030
1031int
1032mm_answer_pty(int socket, Buffer *m)
1033{
b5a28cbc 1034 extern struct monitor *pmonitor;
1853d1ef 1035 Session *s;
1036 int res, fd0;
1037
1588c277 1038 debug3("%s entering", __func__);
1853d1ef 1039
1040 buffer_clear(m);
1041 s = session_new();
1042 if (s == NULL)
1043 goto error;
1044 s->authctxt = authctxt;
1045 s->pw = authctxt->pw;
b5a28cbc 1046 s->pid = pmonitor->m_pid;
1853d1ef 1047 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1048 if (res == 0)
1049 goto error;
1050 fatal_add_cleanup(session_pty_cleanup2, (void *)s);
1051 pty_setowner(authctxt->pw, s->tty);
1052
1053 buffer_put_int(m, 1);
1054 buffer_put_cstring(m, s->tty);
1055 mm_request_send(socket, MONITOR_ANS_PTY, m);
1056
1057 mm_send_fd(socket, s->ptyfd);
1058 mm_send_fd(socket, s->ttyfd);
1059
1060 /* We need to trick ttyslot */
1061 if (dup2(s->ttyfd, 0) == -1)
1588c277 1062 fatal("%s: dup2", __func__);
1853d1ef 1063
1064 mm_record_login(s, authctxt->pw);
1065
1066 /* Now we can close the file descriptor again */
1067 close(0);
1068
1069 /* make sure nothing uses fd 0 */
1070 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
1588c277 1071 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
1853d1ef 1072 if (fd0 != 0)
1588c277 1073 error("%s: fd0 %d != 0", __func__, fd0);
1853d1ef 1074
1075 /* slave is not needed */
1076 close(s->ttyfd);
1077 s->ttyfd = s->ptyfd;
1078 /* no need to dup() because nobody closes ptyfd */
1079 s->ptymaster = s->ptyfd;
1080
1588c277 1081 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
1853d1ef 1082
1083 return (0);
1084
1085 error:
1086 if (s != NULL)
1087 mm_session_close(s);
1088 buffer_put_int(m, 0);
1089 mm_request_send(socket, MONITOR_ANS_PTY, m);
1090 return (0);
1091}
1092
1093int
1094mm_answer_pty_cleanup(int socket, Buffer *m)
1095{
1096 Session *s;
1097 char *tty;
1098
1588c277 1099 debug3("%s entering", __func__);
1853d1ef 1100
1101 tty = buffer_get_string(m, NULL);
1102 if ((s = session_by_tty(tty)) != NULL)
1103 mm_session_close(s);
1104 buffer_clear(m);
1105 xfree(tty);
1106 return (0);
1107}
1108
1109int
1110mm_answer_sesskey(int socket, Buffer *m)
1111{
1112 BIGNUM *p;
1113 int rsafail;
1114
1115 /* Turn off permissions */
1116 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
1117
1118 if ((p = BN_new()) == NULL)
1588c277 1119 fatal("%s: BN_new", __func__);
1853d1ef 1120
1121 buffer_get_bignum2(m, p);
1122
1123 rsafail = ssh1_session_key(p);
1124
1125 buffer_clear(m);
1126 buffer_put_int(m, rsafail);
1127 buffer_put_bignum2(m, p);
1128
1129 BN_clear_free(p);
1130
1131 mm_request_send(socket, MONITOR_ANS_SESSKEY, m);
1132
1133 /* Turn on permissions for sessid passing */
1134 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1135
1136 return (0);
1137}
1138
1139int
1140mm_answer_sessid(int socket, Buffer *m)
1141{
1142 int i;
1143
1588c277 1144 debug3("%s entering", __func__);
1853d1ef 1145
1146 if (buffer_len(m) != 16)
1588c277 1147 fatal("%s: bad ssh1 session id", __func__);
1853d1ef 1148 for (i = 0; i < 16; i++)
1149 session_id[i] = buffer_get_char(m);
1150
1151 /* Turn on permissions for getpwnam */
1152 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1153
1154 return (0);
1155}
1156
1157int
1158mm_answer_rsa_keyallowed(int socket, Buffer *m)
1159{
1160 BIGNUM *client_n;
1161 Key *key = NULL;
1162 u_char *blob = NULL;
1163 u_int blen = 0;
1164 int allowed = 0;
1165
1588c277 1166 debug3("%s entering", __func__);
1853d1ef 1167
aa586f8e 1168 if (options.rsa_authentication && authctxt->valid) {
1853d1ef 1169 if ((client_n = BN_new()) == NULL)
1588c277 1170 fatal("%s: BN_new", __func__);
1853d1ef 1171 buffer_get_bignum2(m, client_n);
1172 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1173 BN_clear_free(client_n);
1174 }
1175 buffer_clear(m);
1176 buffer_put_int(m, allowed);
1177
1178 /* clear temporarily storage (used by generate challenge) */
1179 monitor_reset_key_state();
1180
1181 if (allowed && key != NULL) {
1182 key->type = KEY_RSA; /* cheat for key_to_blob */
1183 if (key_to_blob(key, &blob, &blen) == 0)
1588c277 1184 fatal("%s: key_to_blob failed", __func__);
1853d1ef 1185 buffer_put_string(m, blob, blen);
1186
1187 /* Save temporarily for comparison in verify */
1188 key_blob = blob;
1189 key_bloblen = blen;
1190 key_blobtype = MM_RSAUSERKEY;
1191 key_free(key);
1192 }
1193
1194 mm_append_debug(m);
1195
1196 mm_request_send(socket, MONITOR_ANS_RSAKEYALLOWED, m);
1197
1198 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1199 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1200 return (0);
1201}
1202
1203int
1204mm_answer_rsa_challenge(int socket, Buffer *m)
1205{
1206 Key *key = NULL;
1207 u_char *blob;
1208 u_int blen;
1209
1588c277 1210 debug3("%s entering", __func__);
1853d1ef 1211
1212 if (!authctxt->valid)
1588c277 1213 fatal("%s: authctxt not valid", __func__);
1853d1ef 1214 blob = buffer_get_string(m, &blen);
1215 if (!monitor_allowed_key(blob, blen))
1588c277 1216 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 1217 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1588c277 1218 fatal("%s: key type mismatch", __func__);
1853d1ef 1219 if ((key = key_from_blob(blob, blen)) == NULL)
1588c277 1220 fatal("%s: received bad key", __func__);
1853d1ef 1221
1222 if (ssh1_challenge)
1223 BN_clear_free(ssh1_challenge);
1224 ssh1_challenge = auth_rsa_generate_challenge(key);
1225
1226 buffer_clear(m);
1227 buffer_put_bignum2(m, ssh1_challenge);
1228
1588c277 1229 debug3("%s sending reply", __func__);
1853d1ef 1230 mm_request_send(socket, MONITOR_ANS_RSACHALLENGE, m);
1231
1232 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
1233 return (0);
1234}
1235
1236int
1237mm_answer_rsa_response(int socket, Buffer *m)
1238{
1239 Key *key = NULL;
1240 u_char *blob, *response;
1241 u_int blen, len;
1242 int success;
1243
1588c277 1244 debug3("%s entering", __func__);
1853d1ef 1245
1246 if (!authctxt->valid)
1588c277 1247 fatal("%s: authctxt not valid", __func__);
1853d1ef 1248 if (ssh1_challenge == NULL)
1588c277 1249 fatal("%s: no ssh1_challenge", __func__);
1853d1ef 1250
1251 blob = buffer_get_string(m, &blen);
1252 if (!monitor_allowed_key(blob, blen))
1588c277 1253 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 1254 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1588c277 1255 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
1853d1ef 1256 if ((key = key_from_blob(blob, blen)) == NULL)
1588c277 1257 fatal("%s: received bad key", __func__);
1853d1ef 1258 response = buffer_get_string(m, &len);
1259 if (len != 16)
1588c277 1260 fatal("%s: received bad response to challenge", __func__);
1853d1ef 1261 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1262
1263 key_free(key);
1264 xfree(response);
1265
1266 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1267
1268 /* reset state */
1269 BN_clear_free(ssh1_challenge);
1270 ssh1_challenge = NULL;
1271 monitor_reset_key_state();
1272
1273 buffer_clear(m);
1274 buffer_put_int(m, success);
1275 mm_request_send(socket, MONITOR_ANS_RSARESPONSE, m);
1276
1277 return (success);
1278}
1279
1280int
1281mm_answer_term(int socket, Buffer *req)
1282{
b5a28cbc 1283 extern struct monitor *pmonitor;
1853d1ef 1284 int res, status;
1285
1588c277 1286 debug3("%s: tearing down sessions", __func__);
1853d1ef 1287
1288 /* The child is terminating */
1289 session_destroy_all(&mm_session_close);
1290
b5a28cbc 1291 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
8c38e88b 1292 if (errno != EINTR)
1293 exit(1);
1853d1ef 1294
1295 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1296
1297 /* Terminate process */
1298 exit (res);
1299}
1300
1301void
b5a28cbc 1302monitor_apply_keystate(struct monitor *pmonitor)
1853d1ef 1303{
1304 if (compat20) {
1305 set_newkeys(MODE_IN);
1306 set_newkeys(MODE_OUT);
1307 } else {
1853d1ef 1308 packet_set_protocol_flags(child_state.ssh1protoflags);
9459414c 1309 packet_set_encryption_key(child_state.ssh1key,
1310 child_state.ssh1keylen, child_state.ssh1cipher);
1311 xfree(child_state.ssh1key);
1853d1ef 1312 }
1313
9459414c 1314 /* for rc4 and other stateful ciphers */
1853d1ef 1315 packet_set_keycontext(MODE_OUT, child_state.keyout);
1316 xfree(child_state.keyout);
1317 packet_set_keycontext(MODE_IN, child_state.keyin);
1318 xfree(child_state.keyin);
1319
1320 if (!compat20) {
1321 packet_set_iv(MODE_OUT, child_state.ivout);
1322 xfree(child_state.ivout);
1323 packet_set_iv(MODE_IN, child_state.ivin);
1324 xfree(child_state.ivin);
1325 }
1326
1327 memcpy(&incoming_stream, &child_state.incoming,
1328 sizeof(incoming_stream));
1329 memcpy(&outgoing_stream, &child_state.outgoing,
1330 sizeof(outgoing_stream));
1331
1332 /* Update with new address */
0496cf34 1333 if (options.compression)
1334 mm_init_compression(pmonitor->m_zlib);
1853d1ef 1335
1336 /* Network I/O buffers */
1337 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1338 buffer_clear(&input);
1339 buffer_append(&input, child_state.input, child_state.ilen);
1340 memset(child_state.input, 0, child_state.ilen);
1341 xfree(child_state.input);
1342
1343 buffer_clear(&output);
1344 buffer_append(&output, child_state.output, child_state.olen);
1345 memset(child_state.output, 0, child_state.olen);
1346 xfree(child_state.output);
1347}
1348
1349static Kex *
1350mm_get_kex(Buffer *m)
1351{
1352 Kex *kex;
1353 void *blob;
1354 u_int bloblen;
1355
1356 kex = xmalloc(sizeof(*kex));
1357 memset(kex, 0, sizeof(*kex));
1358 kex->session_id = buffer_get_string(m, &kex->session_id_len);
521d606b 1359 if ((session_id2 == NULL) ||
1360 (kex->session_id_len != session_id2_len) ||
1361 (memcmp(kex->session_id, session_id2, session_id2_len) != 0))
1362 fatal("mm_get_get: internal error: bad session id");
1853d1ef 1363 kex->we_need = buffer_get_int(m);
1364 kex->server = 1;
1365 kex->hostkey_type = buffer_get_int(m);
1366 kex->kex_type = buffer_get_int(m);
1367 blob = buffer_get_string(m, &bloblen);
1368 buffer_init(&kex->my);
1369 buffer_append(&kex->my, blob, bloblen);
1370 xfree(blob);
1371 blob = buffer_get_string(m, &bloblen);
1372 buffer_init(&kex->peer);
1373 buffer_append(&kex->peer, blob, bloblen);
1374 xfree(blob);
1375 kex->done = 1;
1376 kex->flags = buffer_get_int(m);
1377 kex->client_version_string = buffer_get_string(m, NULL);
1378 kex->server_version_string = buffer_get_string(m, NULL);
1379 kex->load_host_key=&get_hostkey_by_type;
1380 kex->host_key_index=&get_hostkey_index;
1381
1382 return (kex);
1383}
1384
1385/* This function requries careful sanity checking */
1386
1387void
b5a28cbc 1388mm_get_keystate(struct monitor *pmonitor)
1853d1ef 1389{
1390 Buffer m;
1391 u_char *blob, *p;
1392 u_int bloblen, plen;
1393
1588c277 1394 debug3("%s: Waiting for new keys", __func__);
1853d1ef 1395
1396 buffer_init(&m);
b5a28cbc 1397 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
1853d1ef 1398 if (!compat20) {
1399 child_state.ssh1protoflags = buffer_get_int(&m);
1400 child_state.ssh1cipher = buffer_get_int(&m);
9459414c 1401 child_state.ssh1key = buffer_get_string(&m,
1402 &child_state.ssh1keylen);
1853d1ef 1403 child_state.ivout = buffer_get_string(&m,
1404 &child_state.ivoutlen);
1405 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1406 goto skip;
1407 } else {
1408 /* Get the Kex for rekeying */
b5a28cbc 1409 *pmonitor->m_pkex = mm_get_kex(&m);
1853d1ef 1410 }
1411
1412 blob = buffer_get_string(&m, &bloblen);
1413 current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
1414 xfree(blob);
1415
1588c277 1416 debug3("%s: Waiting for second key", __func__);
1853d1ef 1417 blob = buffer_get_string(&m, &bloblen);
1418 current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
1419 xfree(blob);
1420
1421 /* Now get sequence numbers for the packets */
1422 packet_set_seqnr(MODE_OUT, buffer_get_int(&m));
1423 packet_set_seqnr(MODE_IN, buffer_get_int(&m));
1424
1425 skip:
1426 /* Get the key context */
1427 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1428 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1429
1588c277 1430 debug3("%s: Getting compression state", __func__);
1853d1ef 1431 /* Get compression state */
1432 p = buffer_get_string(&m, &plen);
1433 if (plen != sizeof(child_state.outgoing))
1588c277 1434 fatal("%s: bad request size", __func__);
1853d1ef 1435 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1436 xfree(p);
1437
1438 p = buffer_get_string(&m, &plen);
1439 if (plen != sizeof(child_state.incoming))
1588c277 1440 fatal("%s: bad request size", __func__);
1853d1ef 1441 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1442 xfree(p);
1443
1444 /* Network I/O buffers */
1588c277 1445 debug3("%s: Getting Network I/O buffers", __func__);
1853d1ef 1446 child_state.input = buffer_get_string(&m, &child_state.ilen);
1447 child_state.output = buffer_get_string(&m, &child_state.olen);
1448
1449 buffer_free(&m);
1450}
1451
1452
1453/* Allocation functions for zlib */
1454void *
1455mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1456{
b85698ab 1457 size_t len = size * ncount;
1853d1ef 1458 void *address;
1459
b85698ab 1460 if (len == 0 || ncount > SIZE_T_MAX / size)
2f095a0e 1461 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1462
1463 address = mm_malloc(mm, len);
1853d1ef 1464
1465 return (address);
1466}
1467
1468void
1469mm_zfree(struct mm_master *mm, void *address)
1470{
1471 mm_free(mm, address);
1472}
1473
1474void
1475mm_init_compression(struct mm_master *mm)
1476{
1477 outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1478 outgoing_stream.zfree = (free_func)mm_zfree;
1479 outgoing_stream.opaque = mm;
1480
1481 incoming_stream.zalloc = (alloc_func)mm_zalloc;
1482 incoming_stream.zfree = (free_func)mm_zfree;
1483 incoming_stream.opaque = mm;
1484}
1485
1486/* XXX */
1487
1488#define FD_CLOSEONEXEC(x) do { \
1489 if (fcntl(x, F_SETFD, 1) == -1) \
1490 fatal("fcntl(%d, F_SETFD)", x); \
1491} while (0)
1492
1493static void
1494monitor_socketpair(int *pair)
1495{
f1af2dbf 1496#ifdef HAVE_SOCKETPAIR
1853d1ef 1497 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
1588c277 1498 fatal("%s: socketpair", __func__);
f1af2dbf 1499#else
1500 fatal("%s: UsePrivilegeSeparation=yes not supported",
1588c277 1501 __func__);
f1af2dbf 1502#endif
1853d1ef 1503 FD_CLOSEONEXEC(pair[0]);
1504 FD_CLOSEONEXEC(pair[1]);
1505}
1506
1507#define MM_MEMSIZE 65536
1508
1509struct monitor *
1510monitor_init(void)
1511{
1512 struct monitor *mon;
1513 int pair[2];
1514
1515 mon = xmalloc(sizeof(*mon));
1516
1517 monitor_socketpair(pair);
1518
1519 mon->m_recvfd = pair[0];
1520 mon->m_sendfd = pair[1];
1521
1522 /* Used to share zlib space across processes */
0496cf34 1523 if (options.compression) {
1524 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1525 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
1853d1ef 1526
0496cf34 1527 /* Compression needs to share state across borders */
1528 mm_init_compression(mon->m_zlib);
1529 }
1853d1ef 1530
1531 return mon;
1532}
1533
1534void
1535monitor_reinit(struct monitor *mon)
1536{
1537 int pair[2];
1538
1539 monitor_socketpair(pair);
1540
1541 mon->m_recvfd = pair[0];
1542 mon->m_sendfd = pair[1];
1543}
This page took 2.763329 seconds and 5 git commands to generate.