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