1 /* $OpenBSD: monitor.c,v 1.115 2011/06/23 23:35:42 djm Exp $ */
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * Copyright 2002 Markus Friedl <markus@openbsd.org>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <sys/types.h>
31 #include <sys/param.h>
32 #include <sys/socket.h>
33 #include "openbsd-compat/sys-tree.h"
50 # ifdef HAVE_SYS_POLL_H
51 # include <sys/poll.h>
59 #include <openssl/dh.h>
61 #include "openbsd-compat/sys-queue.h"
72 #ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
75 #define TARGET_OS_MAC 1
80 #include "auth-options.h"
89 #include "monitor_mm.h"
93 #include "monitor_wrap.h"
94 #include "monitor_fdpass.h"
102 static Gssctxt
*gsscontext
= NULL
;
106 extern ServerOptions options
;
107 extern u_int utmp_len
;
108 extern Newkeys
*current_keys
[];
109 extern z_stream incoming_stream
;
110 extern z_stream outgoing_stream
;
111 extern u_char session_id
[];
112 extern Buffer auth_debug
;
113 extern int auth_debug_init
;
114 extern Buffer loginmsg
;
116 /* State exported from the child */
137 u_int64_t sent_bytes
;
138 u_int64_t recv_bytes
;
141 /* Functions on the monitor that answer unprivileged requests */
143 int mm_answer_moduli(int, Buffer
*);
144 int mm_answer_sign(int, Buffer
*);
145 int mm_answer_pwnamallow(int, Buffer
*);
146 int mm_answer_auth2_read_banner(int, Buffer
*);
147 int mm_answer_authserv(int, Buffer
*);
148 int mm_answer_authpassword(int, Buffer
*);
149 int mm_answer_bsdauthquery(int, Buffer
*);
150 int mm_answer_bsdauthrespond(int, Buffer
*);
151 int mm_answer_skeyquery(int, Buffer
*);
152 int mm_answer_skeyrespond(int, Buffer
*);
153 int mm_answer_keyallowed(int, Buffer
*);
154 int mm_answer_keyverify(int, Buffer
*);
155 int mm_answer_pty(int, Buffer
*);
156 int mm_answer_pty_cleanup(int, Buffer
*);
157 int mm_answer_term(int, Buffer
*);
158 int mm_answer_rsa_keyallowed(int, Buffer
*);
159 int mm_answer_rsa_challenge(int, Buffer
*);
160 int mm_answer_rsa_response(int, Buffer
*);
161 int mm_answer_sesskey(int, Buffer
*);
162 int mm_answer_sessid(int, Buffer
*);
163 int mm_answer_jpake_get_pwdata(int, Buffer
*);
164 int mm_answer_jpake_step1(int, Buffer
*);
165 int mm_answer_jpake_step2(int, Buffer
*);
166 int mm_answer_jpake_key_confirm(int, Buffer
*);
167 int mm_answer_jpake_check_confirm(int, Buffer
*);
170 int mm_answer_pam_start(int, Buffer
*);
171 int mm_answer_pam_account(int, Buffer
*);
172 int mm_answer_pam_init_ctx(int, Buffer
*);
173 int mm_answer_pam_query(int, Buffer
*);
174 int mm_answer_pam_respond(int, Buffer
*);
175 int mm_answer_pam_free_ctx(int, Buffer
*);
179 int mm_answer_gss_setup_ctx(int, Buffer
*);
180 int mm_answer_gss_accept_ctx(int, Buffer
*);
181 int mm_answer_gss_userok(int, Buffer
*);
182 int mm_answer_gss_checkmic(int, Buffer
*);
185 #ifdef SSH_AUDIT_EVENTS
186 int mm_answer_audit_event(int, Buffer
*);
187 int mm_answer_audit_command(int, Buffer
*);
190 static int monitor_read_log(struct monitor
*);
192 static Authctxt
*authctxt
;
193 static BIGNUM
*ssh1_challenge
= NULL
; /* used for ssh1 rsa auth */
195 /* local state for key verify */
196 static u_char
*key_blob
= NULL
;
197 static u_int key_bloblen
= 0;
198 static int key_blobtype
= MM_NOKEY
;
199 static char *hostbased_cuser
= NULL
;
200 static char *hostbased_chost
= NULL
;
201 static char *auth_method
= "unknown";
202 static u_int session_id2_len
= 0;
203 static u_char
*session_id2
= NULL
;
204 static pid_t monitor_child_pid
;
207 enum monitor_reqtype type
;
209 int (*f
)(int, Buffer
*);
212 #define MON_ISAUTH 0x0004 /* Required for Authentication */
213 #define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
214 #define MON_ONCE 0x0010 /* Disable after calling */
215 #define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
217 #define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
219 #define MON_PERMIT 0x1000 /* Request is permitted */
221 struct mon_table mon_dispatch_proto20
[] = {
222 {MONITOR_REQ_MODULI
, MON_ONCE
, mm_answer_moduli
},
223 {MONITOR_REQ_SIGN
, MON_ONCE
, mm_answer_sign
},
224 {MONITOR_REQ_PWNAM
, MON_ONCE
, mm_answer_pwnamallow
},
225 {MONITOR_REQ_AUTHSERV
, MON_ONCE
, mm_answer_authserv
},
226 {MONITOR_REQ_AUTH2_READ_BANNER
, MON_ONCE
, mm_answer_auth2_read_banner
},
227 {MONITOR_REQ_AUTHPASSWORD
, MON_AUTH
, mm_answer_authpassword
},
229 {MONITOR_REQ_PAM_START
, MON_ONCE
, mm_answer_pam_start
},
230 {MONITOR_REQ_PAM_ACCOUNT
, 0, mm_answer_pam_account
},
231 {MONITOR_REQ_PAM_INIT_CTX
, MON_ISAUTH
, mm_answer_pam_init_ctx
},
232 {MONITOR_REQ_PAM_QUERY
, MON_ISAUTH
, mm_answer_pam_query
},
233 {MONITOR_REQ_PAM_RESPOND
, MON_ISAUTH
, mm_answer_pam_respond
},
234 {MONITOR_REQ_PAM_FREE_CTX
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_pam_free_ctx
},
236 #ifdef SSH_AUDIT_EVENTS
237 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
240 {MONITOR_REQ_BSDAUTHQUERY
, MON_ISAUTH
, mm_answer_bsdauthquery
},
241 {MONITOR_REQ_BSDAUTHRESPOND
, MON_AUTH
, mm_answer_bsdauthrespond
},
244 {MONITOR_REQ_SKEYQUERY
, MON_ISAUTH
, mm_answer_skeyquery
},
245 {MONITOR_REQ_SKEYRESPOND
, MON_AUTH
, mm_answer_skeyrespond
},
247 {MONITOR_REQ_KEYALLOWED
, MON_ISAUTH
, mm_answer_keyallowed
},
248 {MONITOR_REQ_KEYVERIFY
, MON_AUTH
, mm_answer_keyverify
},
250 {MONITOR_REQ_GSSSETUP
, MON_ISAUTH
, mm_answer_gss_setup_ctx
},
251 {MONITOR_REQ_GSSSTEP
, MON_ISAUTH
, mm_answer_gss_accept_ctx
},
252 {MONITOR_REQ_GSSUSEROK
, MON_AUTH
, mm_answer_gss_userok
},
253 {MONITOR_REQ_GSSCHECKMIC
, MON_ISAUTH
, mm_answer_gss_checkmic
},
256 {MONITOR_REQ_JPAKE_GET_PWDATA
, MON_ONCE
, mm_answer_jpake_get_pwdata
},
257 {MONITOR_REQ_JPAKE_STEP1
, MON_ISAUTH
, mm_answer_jpake_step1
},
258 {MONITOR_REQ_JPAKE_STEP2
, MON_ONCE
, mm_answer_jpake_step2
},
259 {MONITOR_REQ_JPAKE_KEY_CONFIRM
, MON_ONCE
, mm_answer_jpake_key_confirm
},
260 {MONITOR_REQ_JPAKE_CHECK_CONFIRM
, MON_AUTH
, mm_answer_jpake_check_confirm
},
265 struct mon_table mon_dispatch_postauth20
[] = {
266 {MONITOR_REQ_MODULI
, 0, mm_answer_moduli
},
267 {MONITOR_REQ_SIGN
, 0, mm_answer_sign
},
268 {MONITOR_REQ_PTY
, 0, mm_answer_pty
},
269 {MONITOR_REQ_PTYCLEANUP
, 0, mm_answer_pty_cleanup
},
270 {MONITOR_REQ_TERM
, 0, mm_answer_term
},
271 #ifdef SSH_AUDIT_EVENTS
272 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
273 {MONITOR_REQ_AUDIT_COMMAND
, MON_PERMIT
, mm_answer_audit_command
},
278 struct mon_table mon_dispatch_proto15
[] = {
279 {MONITOR_REQ_PWNAM
, MON_ONCE
, mm_answer_pwnamallow
},
280 {MONITOR_REQ_SESSKEY
, MON_ONCE
, mm_answer_sesskey
},
281 {MONITOR_REQ_SESSID
, MON_ONCE
, mm_answer_sessid
},
282 {MONITOR_REQ_AUTHPASSWORD
, MON_AUTH
, mm_answer_authpassword
},
283 {MONITOR_REQ_RSAKEYALLOWED
, MON_ISAUTH
|MON_ALOG
, mm_answer_rsa_keyallowed
},
284 {MONITOR_REQ_KEYALLOWED
, MON_ISAUTH
|MON_ALOG
, mm_answer_keyallowed
},
285 {MONITOR_REQ_RSACHALLENGE
, MON_ONCE
, mm_answer_rsa_challenge
},
286 {MONITOR_REQ_RSARESPONSE
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_rsa_response
},
288 {MONITOR_REQ_BSDAUTHQUERY
, MON_ISAUTH
, mm_answer_bsdauthquery
},
289 {MONITOR_REQ_BSDAUTHRESPOND
, MON_AUTH
, mm_answer_bsdauthrespond
},
292 {MONITOR_REQ_SKEYQUERY
, MON_ISAUTH
, mm_answer_skeyquery
},
293 {MONITOR_REQ_SKEYRESPOND
, MON_AUTH
, mm_answer_skeyrespond
},
296 {MONITOR_REQ_PAM_START
, MON_ONCE
, mm_answer_pam_start
},
297 {MONITOR_REQ_PAM_ACCOUNT
, 0, mm_answer_pam_account
},
298 {MONITOR_REQ_PAM_INIT_CTX
, MON_ISAUTH
, mm_answer_pam_init_ctx
},
299 {MONITOR_REQ_PAM_QUERY
, MON_ISAUTH
, mm_answer_pam_query
},
300 {MONITOR_REQ_PAM_RESPOND
, MON_ISAUTH
, mm_answer_pam_respond
},
301 {MONITOR_REQ_PAM_FREE_CTX
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_pam_free_ctx
},
303 #ifdef SSH_AUDIT_EVENTS
304 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
309 struct mon_table mon_dispatch_postauth15
[] = {
310 {MONITOR_REQ_PTY
, MON_ONCE
, mm_answer_pty
},
311 {MONITOR_REQ_PTYCLEANUP
, MON_ONCE
, mm_answer_pty_cleanup
},
312 {MONITOR_REQ_TERM
, 0, mm_answer_term
},
313 #ifdef SSH_AUDIT_EVENTS
314 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
315 {MONITOR_REQ_AUDIT_COMMAND
, MON_PERMIT
|MON_ONCE
, mm_answer_audit_command
},
320 struct mon_table
*mon_dispatch
;
322 /* Specifies if a certain message is allowed at the moment */
325 monitor_permit(struct mon_table
*ent
, enum monitor_reqtype type
, int permit
)
327 while (ent
->f
!= NULL
) {
328 if (ent
->type
== type
) {
329 ent
->flags
&= ~MON_PERMIT
;
330 ent
->flags
|= permit
? MON_PERMIT
: 0;
338 monitor_permit_authentications(int permit
)
340 struct mon_table
*ent
= mon_dispatch
;
342 while (ent
->f
!= NULL
) {
343 if (ent
->flags
& MON_AUTH
) {
344 ent
->flags
&= ~MON_PERMIT
;
345 ent
->flags
|= permit
? MON_PERMIT
: 0;
352 monitor_child_preauth(Authctxt
*_authctxt
, struct monitor
*pmonitor
)
354 struct mon_table
*ent
;
355 int authenticated
= 0;
357 debug3("preauth child monitor started");
359 close(pmonitor
->m_recvfd
);
360 close(pmonitor
->m_log_sendfd
);
361 pmonitor
->m_log_sendfd
= pmonitor
->m_recvfd
= -1;
363 authctxt
= _authctxt
;
364 memset(authctxt
, 0, sizeof(*authctxt
));
366 authctxt
->loginmsg
= &loginmsg
;
369 mon_dispatch
= mon_dispatch_proto20
;
371 /* Permit requests for moduli and signatures */
372 monitor_permit(mon_dispatch
, MONITOR_REQ_MODULI
, 1);
373 monitor_permit(mon_dispatch
, MONITOR_REQ_SIGN
, 1);
375 mon_dispatch
= mon_dispatch_proto15
;
377 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSKEY
, 1);
380 /* The first few requests do not require asynchronous access */
381 while (!authenticated
) {
382 auth_method
= "unknown";
383 authenticated
= (monitor_read(pmonitor
, mon_dispatch
, &ent
) == 1);
385 if (!(ent
->flags
& MON_AUTHDECIDE
))
386 fatal("%s: unexpected authentication from %d",
387 __func__
, ent
->type
);
388 if (authctxt
->pw
->pw_uid
== 0 &&
389 !auth_root_allowed(auth_method
))
392 /* PAM needs to perform account checks after auth */
393 if (options
.use_pam
&& authenticated
) {
397 mm_request_receive_expect(pmonitor
->m_sendfd
,
398 MONITOR_REQ_PAM_ACCOUNT
, &m
);
399 authenticated
= mm_answer_pam_account(pmonitor
->m_sendfd
, &m
);
405 if (ent
->flags
& (MON_AUTHDECIDE
|MON_ALOG
)) {
406 auth_log(authctxt
, authenticated
, auth_method
,
407 compat20
? " ssh2" : "");
409 authctxt
->failures
++;
412 /* Cleanup JPAKE context after authentication */
413 if (ent
->flags
& MON_AUTHDECIDE
) {
414 if (authctxt
->jpake_ctx
!= NULL
) {
415 jpake_free(authctxt
->jpake_ctx
);
416 authctxt
->jpake_ctx
= NULL
;
422 /* Drain any buffered messages from the child */
423 while (pmonitor
->m_log_recvfd
!= -1 && monitor_read_log(pmonitor
) == 0)
426 if (!authctxt
->valid
)
427 fatal("%s: authenticated invalid user", __func__
);
428 if (strcmp(auth_method
, "unknown") == 0)
429 fatal("%s: authentication method name unknown", __func__
);
431 debug("%s: %s has been authenticated by privileged process",
432 __func__
, authctxt
->user
);
434 mm_get_keystate(pmonitor
);
436 close(pmonitor
->m_sendfd
);
437 close(pmonitor
->m_log_recvfd
);
438 pmonitor
->m_sendfd
= pmonitor
->m_log_recvfd
= -1;
442 monitor_set_child_handler(pid_t pid
)
444 monitor_child_pid
= pid
;
448 monitor_child_handler(int sig
)
450 kill(monitor_child_pid
, sig
);
454 monitor_child_postauth(struct monitor
*pmonitor
)
456 close(pmonitor
->m_recvfd
);
457 pmonitor
->m_recvfd
= -1;
459 monitor_set_child_handler(pmonitor
->m_pid
);
460 signal(SIGHUP
, &monitor_child_handler
);
461 signal(SIGTERM
, &monitor_child_handler
);
462 signal(SIGINT
, &monitor_child_handler
);
465 mon_dispatch
= mon_dispatch_postauth20
;
467 /* Permit requests for moduli and signatures */
468 monitor_permit(mon_dispatch
, MONITOR_REQ_MODULI
, 1);
469 monitor_permit(mon_dispatch
, MONITOR_REQ_SIGN
, 1);
470 monitor_permit(mon_dispatch
, MONITOR_REQ_TERM
, 1);
472 mon_dispatch
= mon_dispatch_postauth15
;
473 monitor_permit(mon_dispatch
, MONITOR_REQ_TERM
, 1);
476 monitor_permit(mon_dispatch
, MONITOR_REQ_PTY
, 1);
477 monitor_permit(mon_dispatch
, MONITOR_REQ_PTYCLEANUP
, 1);
481 monitor_read(pmonitor
, mon_dispatch
, NULL
);
483 close(pmonitor
->m_sendfd
);
484 pmonitor
->m_sendfd
= -1;
488 monitor_sync(struct monitor
*pmonitor
)
490 if (options
.compression
) {
491 /* The member allocation is not visible, so sync it */
492 mm_share_sync(&pmonitor
->m_zlib
, &pmonitor
->m_zback
);
497 monitor_read_log(struct monitor
*pmonitor
)
503 buffer_init(&logmsg
);
506 buffer_append_space(&logmsg
, 4);
507 if (atomicio(read
, pmonitor
->m_log_recvfd
,
508 buffer_ptr(&logmsg
), buffer_len(&logmsg
)) != buffer_len(&logmsg
)) {
509 if (errno
== EPIPE
) {
510 debug("%s: child log fd closed", __func__
);
511 close(pmonitor
->m_log_recvfd
);
512 pmonitor
->m_log_recvfd
= -1;
515 fatal("%s: log fd read: %s", __func__
, strerror(errno
));
517 len
= buffer_get_int(&logmsg
);
518 if (len
<= 4 || len
> 8192)
519 fatal("%s: invalid log message length %u", __func__
, len
);
521 /* Read severity, message */
522 buffer_clear(&logmsg
);
523 buffer_append_space(&logmsg
, len
);
524 if (atomicio(read
, pmonitor
->m_log_recvfd
,
525 buffer_ptr(&logmsg
), buffer_len(&logmsg
)) != buffer_len(&logmsg
))
526 fatal("%s: log fd read: %s", __func__
, strerror(errno
));
529 level
= buffer_get_int(&logmsg
);
530 msg
= buffer_get_string(&logmsg
, NULL
);
531 if (log_level_name(level
) == NULL
)
532 fatal("%s: invalid log level %u (corrupted message?)",
534 do_log2(level
, "%s [preauth]", msg
);
536 buffer_free(&logmsg
);
543 monitor_read(struct monitor
*pmonitor
, struct mon_table
*ent
,
544 struct mon_table
**pent
)
549 struct pollfd pfd
[2];
552 bzero(&pfd
, sizeof(pfd
));
553 pfd
[0].fd
= pmonitor
->m_sendfd
;
554 pfd
[0].events
= POLLIN
;
555 pfd
[1].fd
= pmonitor
->m_log_recvfd
;
556 pfd
[1].events
= pfd
[1].fd
== -1 ? 0 : POLLIN
;
557 if (poll(pfd
, pfd
[1].fd
== -1 ? 1 : 2, -1) == -1) {
558 if (errno
== EINTR
|| errno
== EAGAIN
)
560 fatal("%s: poll: %s", __func__
, strerror(errno
));
562 if (pfd
[1].revents
) {
564 * Drain all log messages before processing next
567 monitor_read_log(pmonitor
);
571 break; /* Continues below */
576 mm_request_receive(pmonitor
->m_sendfd
, &m
);
577 type
= buffer_get_char(&m
);
579 debug3("%s: checking request %d", __func__
, type
);
581 while (ent
->f
!= NULL
) {
582 if (ent
->type
== type
)
587 if (ent
->f
!= NULL
) {
588 if (!(ent
->flags
& MON_PERMIT
))
589 fatal("%s: unpermitted request %d", __func__
,
591 ret
= (*ent
->f
)(pmonitor
->m_sendfd
, &m
);
594 /* The child may use this request only once, disable it */
595 if (ent
->flags
& MON_ONCE
) {
596 debug2("%s: %d used once, disabling now", __func__
,
598 ent
->flags
&= ~MON_PERMIT
;
607 fatal("%s: unsupported request: %d", __func__
, type
);
613 /* allowed key state */
615 monitor_allowed_key(u_char
*blob
, u_int bloblen
)
617 /* make sure key is allowed */
618 if (key_blob
== NULL
|| key_bloblen
!= bloblen
||
619 timingsafe_bcmp(key_blob
, blob
, key_bloblen
))
625 monitor_reset_key_state(void)
628 if (key_blob
!= NULL
)
630 if (hostbased_cuser
!= NULL
)
631 xfree(hostbased_cuser
);
632 if (hostbased_chost
!= NULL
)
633 xfree(hostbased_chost
);
636 key_blobtype
= MM_NOKEY
;
637 hostbased_cuser
= NULL
;
638 hostbased_chost
= NULL
;
642 mm_answer_moduli(int sock
, Buffer
*m
)
647 min
= buffer_get_int(m
);
648 want
= buffer_get_int(m
);
649 max
= buffer_get_int(m
);
651 debug3("%s: got parameters: %d %d %d",
652 __func__
, min
, want
, max
);
653 /* We need to check here, too, in case the child got corrupted */
654 if (max
< min
|| want
< min
|| max
< want
)
655 fatal("%s: bad parameters: %d %d %d",
656 __func__
, min
, want
, max
);
660 dh
= choose_dh(min
, want
, max
);
662 buffer_put_char(m
, 0);
665 /* Send first bignum */
666 buffer_put_char(m
, 1);
667 buffer_put_bignum2(m
, dh
->p
);
668 buffer_put_bignum2(m
, dh
->g
);
672 mm_request_send(sock
, MONITOR_ANS_MODULI
, m
);
677 mm_answer_sign(int sock
, Buffer
*m
)
682 u_int siglen
, datlen
;
685 debug3("%s", __func__
);
687 keyid
= buffer_get_int(m
);
688 p
= buffer_get_string(m
, &datlen
);
691 * Supported KEX types use SHA1 (20 bytes), SHA256 (32 bytes),
692 * SHA384 (48 bytes) and SHA512 (64 bytes).
694 if (datlen
!= 20 && datlen
!= 32 && datlen
!= 48 && datlen
!= 64)
695 fatal("%s: data length incorrect: %u", __func__
, datlen
);
697 /* save session id, it will be passed on the first call */
698 if (session_id2_len
== 0) {
699 session_id2_len
= datlen
;
700 session_id2
= xmalloc(session_id2_len
);
701 memcpy(session_id2
, p
, session_id2_len
);
704 if ((key
= get_hostkey_by_index(keyid
)) == NULL
)
705 fatal("%s: no hostkey from index %d", __func__
, keyid
);
706 if (key_sign(key
, &signature
, &siglen
, p
, datlen
) < 0)
707 fatal("%s: key_sign failed", __func__
);
709 debug3("%s: signature %p(%u)", __func__
, signature
, siglen
);
712 buffer_put_string(m
, signature
, siglen
);
717 mm_request_send(sock
, MONITOR_ANS_SIGN
, m
);
719 /* Turn on permissions for getpwnam */
720 monitor_permit(mon_dispatch
, MONITOR_REQ_PWNAM
, 1);
725 /* Retrieves the password entry and also checks if the user is permitted */
728 mm_answer_pwnamallow(int sock
, Buffer
*m
)
731 struct passwd
*pwent
;
735 debug3("%s", __func__
);
737 if (authctxt
->attempt
++ != 0)
738 fatal("%s: multiple attempts for getpwnam", __func__
);
740 username
= buffer_get_string(m
, NULL
);
742 pwent
= getpwnamallow(username
);
744 authctxt
->user
= xstrdup(username
);
745 setproctitle("%s [priv]", pwent
? username
: "unknown");
751 buffer_put_char(m
, 0);
752 authctxt
->pw
= fakepw();
757 authctxt
->pw
= pwent
;
760 buffer_put_char(m
, 1);
761 buffer_put_string(m
, pwent
, sizeof(struct passwd
));
762 buffer_put_cstring(m
, pwent
->pw_name
);
763 buffer_put_cstring(m
, "*");
764 buffer_put_cstring(m
, pwent
->pw_gecos
);
765 #ifdef HAVE_PW_CLASS_IN_PASSWD
766 buffer_put_cstring(m
, pwent
->pw_class
);
768 buffer_put_cstring(m
, pwent
->pw_dir
);
769 buffer_put_cstring(m
, pwent
->pw_shell
);
772 buffer_put_string(m
, &options
, sizeof(options
));
774 #define M_CP_STROPT(x) do { \
775 if (options.x != NULL) \
776 buffer_put_cstring(m, options.x); \
778 #define M_CP_STRARRAYOPT(x, nx) do { \
779 for (i = 0; i < options.nx; i++) \
780 buffer_put_cstring(m, options.x[i]); \
782 /* See comment in servconf.h */
783 COPY_MATCH_STRING_OPTS();
785 #undef M_CP_STRARRAYOPT
787 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__
, allowed
);
788 mm_request_send(sock
, MONITOR_ANS_PWNAM
, m
);
790 /* For SSHv1 allow authentication now */
792 monitor_permit_authentications(1);
794 /* Allow service/style information on the auth context */
795 monitor_permit(mon_dispatch
, MONITOR_REQ_AUTHSERV
, 1);
796 monitor_permit(mon_dispatch
, MONITOR_REQ_AUTH2_READ_BANNER
, 1);
800 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_START
, 1);
806 int mm_answer_auth2_read_banner(int sock
, Buffer
*m
)
811 banner
= auth2_read_banner();
812 buffer_put_cstring(m
, banner
!= NULL
? banner
: "");
813 mm_request_send(sock
, MONITOR_ANS_AUTH2_READ_BANNER
, m
);
822 mm_answer_authserv(int sock
, Buffer
*m
)
824 monitor_permit_authentications(1);
826 authctxt
->service
= buffer_get_string(m
, NULL
);
827 authctxt
->style
= buffer_get_string(m
, NULL
);
828 debug3("%s: service=%s, style=%s",
829 __func__
, authctxt
->service
, authctxt
->style
);
831 if (strlen(authctxt
->style
) == 0) {
832 xfree(authctxt
->style
);
833 authctxt
->style
= NULL
;
840 mm_answer_authpassword(int sock
, Buffer
*m
)
842 static int call_count
;
847 passwd
= buffer_get_string(m
, &plen
);
848 /* Only authenticate if the context is valid */
849 authenticated
= options
.password_authentication
&&
850 auth_password(authctxt
, passwd
);
851 memset(passwd
, 0, strlen(passwd
));
855 buffer_put_int(m
, authenticated
);
857 debug3("%s: sending result %d", __func__
, authenticated
);
858 mm_request_send(sock
, MONITOR_ANS_AUTHPASSWORD
, m
);
861 if (plen
== 0 && call_count
== 1)
862 auth_method
= "none";
864 auth_method
= "password";
866 /* Causes monitor loop to terminate if authenticated */
867 return (authenticated
);
872 mm_answer_bsdauthquery(int sock
, Buffer
*m
)
874 char *name
, *infotxt
;
880 success
= bsdauth_query(authctxt
, &name
, &infotxt
, &numprompts
,
881 &prompts
, &echo_on
) < 0 ? 0 : 1;
884 buffer_put_int(m
, success
);
886 buffer_put_cstring(m
, prompts
[0]);
888 debug3("%s: sending challenge success: %u", __func__
, success
);
889 mm_request_send(sock
, MONITOR_ANS_BSDAUTHQUERY
, m
);
902 mm_answer_bsdauthrespond(int sock
, Buffer
*m
)
907 if (authctxt
->as
== 0)
908 fatal("%s: no bsd auth session", __func__
);
910 response
= buffer_get_string(m
, NULL
);
911 authok
= options
.challenge_response_authentication
&&
912 auth_userresponse(authctxt
->as
, response
, 0);
914 debug3("%s: <%s> = <%d>", __func__
, response
, authok
);
918 buffer_put_int(m
, authok
);
920 debug3("%s: sending authenticated: %d", __func__
, authok
);
921 mm_request_send(sock
, MONITOR_ANS_BSDAUTHRESPOND
, m
);
923 auth_method
= "bsdauth";
925 return (authok
!= 0);
931 mm_answer_skeyquery(int sock
, Buffer
*m
)
934 char challenge
[1024];
937 success
= _compat_skeychallenge(&skey
, authctxt
->user
, challenge
,
938 sizeof(challenge
)) < 0 ? 0 : 1;
941 buffer_put_int(m
, success
);
943 buffer_put_cstring(m
, challenge
);
945 debug3("%s: sending challenge success: %u", __func__
, success
);
946 mm_request_send(sock
, MONITOR_ANS_SKEYQUERY
, m
);
952 mm_answer_skeyrespond(int sock
, Buffer
*m
)
957 response
= buffer_get_string(m
, NULL
);
959 authok
= (options
.challenge_response_authentication
&&
961 skey_haskey(authctxt
->pw
->pw_name
) == 0 &&
962 skey_passcheck(authctxt
->pw
->pw_name
, response
) != -1);
967 buffer_put_int(m
, authok
);
969 debug3("%s: sending authenticated: %d", __func__
, authok
);
970 mm_request_send(sock
, MONITOR_ANS_SKEYRESPOND
, m
);
972 auth_method
= "skey";
974 return (authok
!= 0);
980 mm_answer_pam_start(int sock
, Buffer
*m
)
982 if (!options
.use_pam
)
983 fatal("UsePAM not set, but ended up in %s anyway", __func__
);
987 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_ACCOUNT
, 1);
993 mm_answer_pam_account(int sock
, Buffer
*m
)
997 if (!options
.use_pam
)
998 fatal("UsePAM not set, but ended up in %s anyway", __func__
);
1000 ret
= do_pam_account();
1002 buffer_put_int(m
, ret
);
1003 buffer_put_string(m
, buffer_ptr(&loginmsg
), buffer_len(&loginmsg
));
1005 mm_request_send(sock
, MONITOR_ANS_PAM_ACCOUNT
, m
);
1010 static void *sshpam_ctxt
, *sshpam_authok
;
1011 extern KbdintDevice sshpam_device
;
1014 mm_answer_pam_init_ctx(int sock
, Buffer
*m
)
1017 debug3("%s", __func__
);
1018 authctxt
->user
= buffer_get_string(m
, NULL
);
1019 sshpam_ctxt
= (sshpam_device
.init_ctx
)(authctxt
);
1020 sshpam_authok
= NULL
;
1022 if (sshpam_ctxt
!= NULL
) {
1023 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_FREE_CTX
, 1);
1024 buffer_put_int(m
, 1);
1026 buffer_put_int(m
, 0);
1028 mm_request_send(sock
, MONITOR_ANS_PAM_INIT_CTX
, m
);
1033 mm_answer_pam_query(int sock
, Buffer
*m
)
1035 char *name
= NULL
, *info
= NULL
, **prompts
= NULL
;
1036 u_int i
, num
= 0, *echo_on
= 0;
1039 debug3("%s", __func__
);
1040 sshpam_authok
= NULL
;
1041 ret
= (sshpam_device
.query
)(sshpam_ctxt
, &name
, &info
, &num
, &prompts
, &echo_on
);
1042 if (ret
== 0 && num
== 0)
1043 sshpam_authok
= sshpam_ctxt
;
1044 if (num
> 1 || name
== NULL
|| info
== NULL
)
1047 buffer_put_int(m
, ret
);
1048 buffer_put_cstring(m
, name
);
1050 buffer_put_cstring(m
, info
);
1052 buffer_put_int(m
, num
);
1053 for (i
= 0; i
< num
; ++i
) {
1054 buffer_put_cstring(m
, prompts
[i
]);
1056 buffer_put_int(m
, echo_on
[i
]);
1058 if (prompts
!= NULL
)
1060 if (echo_on
!= NULL
)
1062 auth_method
= "keyboard-interactive/pam";
1063 mm_request_send(sock
, MONITOR_ANS_PAM_QUERY
, m
);
1068 mm_answer_pam_respond(int sock
, Buffer
*m
)
1074 debug3("%s", __func__
);
1075 sshpam_authok
= NULL
;
1076 num
= buffer_get_int(m
);
1078 resp
= xcalloc(num
, sizeof(char *));
1079 for (i
= 0; i
< num
; ++i
)
1080 resp
[i
] = buffer_get_string(m
, NULL
);
1081 ret
= (sshpam_device
.respond
)(sshpam_ctxt
, num
, resp
);
1082 for (i
= 0; i
< num
; ++i
)
1086 ret
= (sshpam_device
.respond
)(sshpam_ctxt
, num
, NULL
);
1089 buffer_put_int(m
, ret
);
1090 mm_request_send(sock
, MONITOR_ANS_PAM_RESPOND
, m
);
1091 auth_method
= "keyboard-interactive/pam";
1093 sshpam_authok
= sshpam_ctxt
;
1098 mm_answer_pam_free_ctx(int sock
, Buffer
*m
)
1101 debug3("%s", __func__
);
1102 (sshpam_device
.free_ctx
)(sshpam_ctxt
);
1104 mm_request_send(sock
, MONITOR_ANS_PAM_FREE_CTX
, m
);
1105 auth_method
= "keyboard-interactive/pam";
1106 return (sshpam_authok
== sshpam_ctxt
);
1111 mm_answer_keyallowed(int sock
, Buffer
*m
)
1114 char *cuser
, *chost
;
1117 enum mm_keytype type
= 0;
1120 debug3("%s entering", __func__
);
1122 type
= buffer_get_int(m
);
1123 cuser
= buffer_get_string(m
, NULL
);
1124 chost
= buffer_get_string(m
, NULL
);
1125 blob
= buffer_get_string(m
, &bloblen
);
1127 key
= key_from_blob(blob
, bloblen
);
1129 if ((compat20
&& type
== MM_RSAHOSTKEY
) ||
1130 (!compat20
&& type
!= MM_RSAHOSTKEY
))
1131 fatal("%s: key type and protocol mismatch", __func__
);
1133 debug3("%s: key_from_blob: %p", __func__
, key
);
1135 if (key
!= NULL
&& authctxt
->valid
) {
1138 allowed
= options
.pubkey_authentication
&&
1139 user_key_allowed(authctxt
->pw
, key
);
1140 auth_method
= "publickey";
1141 if (options
.pubkey_authentication
&& allowed
!= 1)
1142 auth_clear_options();
1145 allowed
= options
.hostbased_authentication
&&
1146 hostbased_key_allowed(authctxt
->pw
,
1148 auth_method
= "hostbased";
1151 key
->type
= KEY_RSA1
; /* XXX */
1152 allowed
= options
.rhosts_rsa_authentication
&&
1153 auth_rhosts_rsa_key_allowed(authctxt
->pw
,
1155 if (options
.rhosts_rsa_authentication
&& allowed
!= 1)
1156 auth_clear_options();
1157 auth_method
= "rsa";
1160 fatal("%s: unknown key type %d", __func__
, type
);
1167 /* clear temporarily storage (used by verify) */
1168 monitor_reset_key_state();
1171 /* Save temporarily for comparison in verify */
1173 key_bloblen
= bloblen
;
1174 key_blobtype
= type
;
1175 hostbased_cuser
= cuser
;
1176 hostbased_chost
= chost
;
1178 /* Log failed attempt */
1179 auth_log(authctxt
, 0, auth_method
, compat20
? " ssh2" : "");
1185 debug3("%s: key %p is %s",
1186 __func__
, key
, allowed
? "allowed" : "not allowed");
1189 buffer_put_int(m
, allowed
);
1190 buffer_put_int(m
, forced_command
!= NULL
);
1192 mm_request_send(sock
, MONITOR_ANS_KEYALLOWED
, m
);
1194 if (type
== MM_RSAHOSTKEY
)
1195 monitor_permit(mon_dispatch
, MONITOR_REQ_RSACHALLENGE
, allowed
);
1201 monitor_valid_userblob(u_char
*data
, u_int datalen
)
1209 buffer_append(&b
, data
, datalen
);
1211 if (datafellows
& SSH_OLD_SESSIONID
) {
1213 len
= buffer_len(&b
);
1214 if ((session_id2
== NULL
) ||
1215 (len
< session_id2_len
) ||
1216 (timingsafe_bcmp(p
, session_id2
, session_id2_len
) != 0))
1218 buffer_consume(&b
, session_id2_len
);
1220 p
= buffer_get_string(&b
, &len
);
1221 if ((session_id2
== NULL
) ||
1222 (len
!= session_id2_len
) ||
1223 (timingsafe_bcmp(p
, session_id2
, session_id2_len
) != 0))
1227 if (buffer_get_char(&b
) != SSH2_MSG_USERAUTH_REQUEST
)
1229 p
= buffer_get_string(&b
, NULL
);
1230 if (strcmp(authctxt
->user
, p
) != 0) {
1231 logit("wrong user name passed to monitor: expected %s != %.100s",
1236 buffer_skip_string(&b
);
1237 if (datafellows
& SSH_BUG_PKAUTH
) {
1238 if (!buffer_get_char(&b
))
1241 p
= buffer_get_string(&b
, NULL
);
1242 if (strcmp("publickey", p
) != 0)
1245 if (!buffer_get_char(&b
))
1247 buffer_skip_string(&b
);
1249 buffer_skip_string(&b
);
1250 if (buffer_len(&b
) != 0)
1257 monitor_valid_hostbasedblob(u_char
*data
, u_int datalen
, char *cuser
,
1266 buffer_append(&b
, data
, datalen
);
1268 p
= buffer_get_string(&b
, &len
);
1269 if ((session_id2
== NULL
) ||
1270 (len
!= session_id2_len
) ||
1271 (timingsafe_bcmp(p
, session_id2
, session_id2_len
) != 0))
1275 if (buffer_get_char(&b
) != SSH2_MSG_USERAUTH_REQUEST
)
1277 p
= buffer_get_string(&b
, NULL
);
1278 if (strcmp(authctxt
->user
, p
) != 0) {
1279 logit("wrong user name passed to monitor: expected %s != %.100s",
1284 buffer_skip_string(&b
); /* service */
1285 p
= buffer_get_string(&b
, NULL
);
1286 if (strcmp(p
, "hostbased") != 0)
1289 buffer_skip_string(&b
); /* pkalg */
1290 buffer_skip_string(&b
); /* pkblob */
1292 /* verify client host, strip trailing dot if necessary */
1293 p
= buffer_get_string(&b
, NULL
);
1294 if (((len
= strlen(p
)) > 0) && p
[len
- 1] == '.')
1296 if (strcmp(p
, chost
) != 0)
1300 /* verify client user */
1301 p
= buffer_get_string(&b
, NULL
);
1302 if (strcmp(p
, cuser
) != 0)
1306 if (buffer_len(&b
) != 0)
1313 mm_answer_keyverify(int sock
, Buffer
*m
)
1316 u_char
*signature
, *data
, *blob
;
1317 u_int signaturelen
, datalen
, bloblen
;
1321 blob
= buffer_get_string(m
, &bloblen
);
1322 signature
= buffer_get_string(m
, &signaturelen
);
1323 data
= buffer_get_string(m
, &datalen
);
1325 if (hostbased_cuser
== NULL
|| hostbased_chost
== NULL
||
1326 !monitor_allowed_key(blob
, bloblen
))
1327 fatal("%s: bad key, not previously allowed", __func__
);
1329 key
= key_from_blob(blob
, bloblen
);
1331 fatal("%s: bad public key blob", __func__
);
1333 switch (key_blobtype
) {
1335 valid_data
= monitor_valid_userblob(data
, datalen
);
1338 valid_data
= monitor_valid_hostbasedblob(data
, datalen
,
1339 hostbased_cuser
, hostbased_chost
);
1346 fatal("%s: bad signature data blob", __func__
);
1348 verified
= key_verify(key
, signature
, signaturelen
, data
, datalen
);
1349 debug3("%s: key %p signature %s",
1350 __func__
, key
, (verified
== 1) ? "verified" : "unverified");
1357 auth_method
= key_blobtype
== MM_USERKEY
? "publickey" : "hostbased";
1359 monitor_reset_key_state();
1362 buffer_put_int(m
, verified
);
1363 mm_request_send(sock
, MONITOR_ANS_KEYVERIFY
, m
);
1365 return (verified
== 1);
1369 mm_record_login(Session
*s
, struct passwd
*pw
)
1372 struct sockaddr_storage from
;
1375 * Get IP address of client. If the connection is not a socket, let
1376 * the address be 0.0.0.0.
1378 memset(&from
, 0, sizeof(from
));
1379 fromlen
= sizeof(from
);
1380 if (packet_connection_is_on_socket()) {
1381 if (getpeername(packet_get_connection_in(),
1382 (struct sockaddr
*)&from
, &fromlen
) < 0) {
1383 debug("getpeername: %.100s", strerror(errno
));
1387 /* Record that there was a login on that tty from the remote host. */
1388 record_login(s
->pid
, s
->tty
, pw
->pw_name
, pw
->pw_uid
,
1389 get_remote_name_or_ip(utmp_len
, options
.use_dns
),
1390 (struct sockaddr
*)&from
, fromlen
);
1394 mm_session_close(Session
*s
)
1396 debug3("%s: session %d pid %ld", __func__
, s
->self
, (long)s
->pid
);
1397 if (s
->ttyfd
!= -1) {
1398 debug3("%s: tty %s ptyfd %d", __func__
, s
->tty
, s
->ptyfd
);
1399 session_pty_cleanup2(s
);
1401 session_unused(s
->self
);
1405 mm_answer_pty(int sock
, Buffer
*m
)
1407 extern struct monitor
*pmonitor
;
1411 debug3("%s entering", __func__
);
1417 s
->authctxt
= authctxt
;
1418 s
->pw
= authctxt
->pw
;
1419 s
->pid
= pmonitor
->m_pid
;
1420 res
= pty_allocate(&s
->ptyfd
, &s
->ttyfd
, s
->tty
, sizeof(s
->tty
));
1423 pty_setowner(authctxt
->pw
, s
->tty
);
1425 buffer_put_int(m
, 1);
1426 buffer_put_cstring(m
, s
->tty
);
1428 /* We need to trick ttyslot */
1429 if (dup2(s
->ttyfd
, 0) == -1)
1430 fatal("%s: dup2", __func__
);
1432 mm_record_login(s
, authctxt
->pw
);
1434 /* Now we can close the file descriptor again */
1437 /* send messages generated by record_login */
1438 buffer_put_string(m
, buffer_ptr(&loginmsg
), buffer_len(&loginmsg
));
1439 buffer_clear(&loginmsg
);
1441 mm_request_send(sock
, MONITOR_ANS_PTY
, m
);
1443 if (mm_send_fd(sock
, s
->ptyfd
) == -1 ||
1444 mm_send_fd(sock
, s
->ttyfd
) == -1)
1445 fatal("%s: send fds failed", __func__
);
1447 /* make sure nothing uses fd 0 */
1448 if ((fd0
= open(_PATH_DEVNULL
, O_RDONLY
)) < 0)
1449 fatal("%s: open(/dev/null): %s", __func__
, strerror(errno
));
1451 error("%s: fd0 %d != 0", __func__
, fd0
);
1453 /* slave is not needed */
1455 s
->ttyfd
= s
->ptyfd
;
1456 /* no need to dup() because nobody closes ptyfd */
1457 s
->ptymaster
= s
->ptyfd
;
1459 debug3("%s: tty %s ptyfd %d", __func__
, s
->tty
, s
->ttyfd
);
1465 mm_session_close(s
);
1466 buffer_put_int(m
, 0);
1467 mm_request_send(sock
, MONITOR_ANS_PTY
, m
);
1472 mm_answer_pty_cleanup(int sock
, Buffer
*m
)
1477 debug3("%s entering", __func__
);
1479 tty
= buffer_get_string(m
, NULL
);
1480 if ((s
= session_by_tty(tty
)) != NULL
)
1481 mm_session_close(s
);
1488 mm_answer_sesskey(int sock
, Buffer
*m
)
1493 /* Turn off permissions */
1494 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSKEY
, 0);
1496 if ((p
= BN_new()) == NULL
)
1497 fatal("%s: BN_new", __func__
);
1499 buffer_get_bignum2(m
, p
);
1501 rsafail
= ssh1_session_key(p
);
1504 buffer_put_int(m
, rsafail
);
1505 buffer_put_bignum2(m
, p
);
1509 mm_request_send(sock
, MONITOR_ANS_SESSKEY
, m
);
1511 /* Turn on permissions for sessid passing */
1512 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSID
, 1);
1518 mm_answer_sessid(int sock
, Buffer
*m
)
1522 debug3("%s entering", __func__
);
1524 if (buffer_len(m
) != 16)
1525 fatal("%s: bad ssh1 session id", __func__
);
1526 for (i
= 0; i
< 16; i
++)
1527 session_id
[i
] = buffer_get_char(m
);
1529 /* Turn on permissions for getpwnam */
1530 monitor_permit(mon_dispatch
, MONITOR_REQ_PWNAM
, 1);
1536 mm_answer_rsa_keyallowed(int sock
, Buffer
*m
)
1540 u_char
*blob
= NULL
;
1544 debug3("%s entering", __func__
);
1546 auth_method
= "rsa";
1547 if (options
.rsa_authentication
&& authctxt
->valid
) {
1548 if ((client_n
= BN_new()) == NULL
)
1549 fatal("%s: BN_new", __func__
);
1550 buffer_get_bignum2(m
, client_n
);
1551 allowed
= auth_rsa_key_allowed(authctxt
->pw
, client_n
, &key
);
1552 BN_clear_free(client_n
);
1555 buffer_put_int(m
, allowed
);
1556 buffer_put_int(m
, forced_command
!= NULL
);
1558 /* clear temporarily storage (used by generate challenge) */
1559 monitor_reset_key_state();
1561 if (allowed
&& key
!= NULL
) {
1562 key
->type
= KEY_RSA
; /* cheat for key_to_blob */
1563 if (key_to_blob(key
, &blob
, &blen
) == 0)
1564 fatal("%s: key_to_blob failed", __func__
);
1565 buffer_put_string(m
, blob
, blen
);
1567 /* Save temporarily for comparison in verify */
1570 key_blobtype
= MM_RSAUSERKEY
;
1575 mm_request_send(sock
, MONITOR_ANS_RSAKEYALLOWED
, m
);
1577 monitor_permit(mon_dispatch
, MONITOR_REQ_RSACHALLENGE
, allowed
);
1578 monitor_permit(mon_dispatch
, MONITOR_REQ_RSARESPONSE
, 0);
1583 mm_answer_rsa_challenge(int sock
, Buffer
*m
)
1589 debug3("%s entering", __func__
);
1591 if (!authctxt
->valid
)
1592 fatal("%s: authctxt not valid", __func__
);
1593 blob
= buffer_get_string(m
, &blen
);
1594 if (!monitor_allowed_key(blob
, blen
))
1595 fatal("%s: bad key, not previously allowed", __func__
);
1596 if (key_blobtype
!= MM_RSAUSERKEY
&& key_blobtype
!= MM_RSAHOSTKEY
)
1597 fatal("%s: key type mismatch", __func__
);
1598 if ((key
= key_from_blob(blob
, blen
)) == NULL
)
1599 fatal("%s: received bad key", __func__
);
1600 if (key
->type
!= KEY_RSA
)
1601 fatal("%s: received bad key type %d", __func__
, key
->type
);
1602 key
->type
= KEY_RSA1
;
1604 BN_clear_free(ssh1_challenge
);
1605 ssh1_challenge
= auth_rsa_generate_challenge(key
);
1608 buffer_put_bignum2(m
, ssh1_challenge
);
1610 debug3("%s sending reply", __func__
);
1611 mm_request_send(sock
, MONITOR_ANS_RSACHALLENGE
, m
);
1613 monitor_permit(mon_dispatch
, MONITOR_REQ_RSARESPONSE
, 1);
1621 mm_answer_rsa_response(int sock
, Buffer
*m
)
1624 u_char
*blob
, *response
;
1628 debug3("%s entering", __func__
);
1630 if (!authctxt
->valid
)
1631 fatal("%s: authctxt not valid", __func__
);
1632 if (ssh1_challenge
== NULL
)
1633 fatal("%s: no ssh1_challenge", __func__
);
1635 blob
= buffer_get_string(m
, &blen
);
1636 if (!monitor_allowed_key(blob
, blen
))
1637 fatal("%s: bad key, not previously allowed", __func__
);
1638 if (key_blobtype
!= MM_RSAUSERKEY
&& key_blobtype
!= MM_RSAHOSTKEY
)
1639 fatal("%s: key type mismatch: %d", __func__
, key_blobtype
);
1640 if ((key
= key_from_blob(blob
, blen
)) == NULL
)
1641 fatal("%s: received bad key", __func__
);
1642 response
= buffer_get_string(m
, &len
);
1644 fatal("%s: received bad response to challenge", __func__
);
1645 success
= auth_rsa_verify_response(key
, ssh1_challenge
, response
);
1651 auth_method
= key_blobtype
== MM_RSAUSERKEY
? "rsa" : "rhosts-rsa";
1654 BN_clear_free(ssh1_challenge
);
1655 ssh1_challenge
= NULL
;
1656 monitor_reset_key_state();
1659 buffer_put_int(m
, success
);
1660 mm_request_send(sock
, MONITOR_ANS_RSARESPONSE
, m
);
1666 mm_answer_term(int sock
, Buffer
*req
)
1668 extern struct monitor
*pmonitor
;
1671 debug3("%s: tearing down sessions", __func__
);
1673 /* The child is terminating */
1674 session_destroy_all(&mm_session_close
);
1677 if (options
.use_pam
)
1681 while (waitpid(pmonitor
->m_pid
, &status
, 0) == -1)
1685 res
= WIFEXITED(status
) ? WEXITSTATUS(status
) : 1;
1687 /* Terminate process */
1691 #ifdef SSH_AUDIT_EVENTS
1692 /* Report that an audit event occurred */
1694 mm_answer_audit_event(int socket
, Buffer
*m
)
1696 ssh_audit_event_t event
;
1698 debug3("%s entering", __func__
);
1700 event
= buffer_get_int(m
);
1702 case SSH_AUTH_FAIL_PUBKEY
:
1703 case SSH_AUTH_FAIL_HOSTBASED
:
1704 case SSH_AUTH_FAIL_GSSAPI
:
1705 case SSH_LOGIN_EXCEED_MAXTRIES
:
1706 case SSH_LOGIN_ROOT_DENIED
:
1707 case SSH_CONNECTION_CLOSE
:
1708 case SSH_INVALID_USER
:
1712 fatal("Audit event type %d not permitted", event
);
1719 mm_answer_audit_command(int socket
, Buffer
*m
)
1724 debug3("%s entering", __func__
);
1725 cmd
= buffer_get_string(m
, &len
);
1726 /* sanity check command, if so how? */
1727 audit_run_command(cmd
);
1731 #endif /* SSH_AUDIT_EVENTS */
1734 monitor_apply_keystate(struct monitor
*pmonitor
)
1737 set_newkeys(MODE_IN
);
1738 set_newkeys(MODE_OUT
);
1740 packet_set_protocol_flags(child_state
.ssh1protoflags
);
1741 packet_set_encryption_key(child_state
.ssh1key
,
1742 child_state
.ssh1keylen
, child_state
.ssh1cipher
);
1743 xfree(child_state
.ssh1key
);
1746 /* for rc4 and other stateful ciphers */
1747 packet_set_keycontext(MODE_OUT
, child_state
.keyout
);
1748 xfree(child_state
.keyout
);
1749 packet_set_keycontext(MODE_IN
, child_state
.keyin
);
1750 xfree(child_state
.keyin
);
1753 packet_set_iv(MODE_OUT
, child_state
.ivout
);
1754 xfree(child_state
.ivout
);
1755 packet_set_iv(MODE_IN
, child_state
.ivin
);
1756 xfree(child_state
.ivin
);
1759 memcpy(&incoming_stream
, &child_state
.incoming
,
1760 sizeof(incoming_stream
));
1761 memcpy(&outgoing_stream
, &child_state
.outgoing
,
1762 sizeof(outgoing_stream
));
1764 /* Update with new address */
1765 if (options
.compression
)
1766 mm_init_compression(pmonitor
->m_zlib
);
1768 /* Network I/O buffers */
1769 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1770 buffer_clear(packet_get_input());
1771 buffer_append(packet_get_input(), child_state
.input
, child_state
.ilen
);
1772 memset(child_state
.input
, 0, child_state
.ilen
);
1773 xfree(child_state
.input
);
1775 buffer_clear(packet_get_output());
1776 buffer_append(packet_get_output(), child_state
.output
,
1778 memset(child_state
.output
, 0, child_state
.olen
);
1779 xfree(child_state
.output
);
1783 roam_set_bytes(child_state
.sent_bytes
, child_state
.recv_bytes
);
1787 mm_get_kex(Buffer
*m
)
1793 kex
= xcalloc(1, sizeof(*kex
));
1794 kex
->session_id
= buffer_get_string(m
, &kex
->session_id_len
);
1795 if (session_id2
== NULL
||
1796 kex
->session_id_len
!= session_id2_len
||
1797 timingsafe_bcmp(kex
->session_id
, session_id2
, session_id2_len
) != 0)
1798 fatal("mm_get_get: internal error: bad session id");
1799 kex
->we_need
= buffer_get_int(m
);
1800 kex
->kex
[KEX_DH_GRP1_SHA1
] = kexdh_server
;
1801 kex
->kex
[KEX_DH_GRP14_SHA1
] = kexdh_server
;
1802 kex
->kex
[KEX_DH_GEX_SHA1
] = kexgex_server
;
1803 kex
->kex
[KEX_DH_GEX_SHA256
] = kexgex_server
;
1804 kex
->kex
[KEX_ECDH_SHA2
] = kexecdh_server
;
1806 kex
->hostkey_type
= buffer_get_int(m
);
1807 kex
->kex_type
= buffer_get_int(m
);
1808 blob
= buffer_get_string(m
, &bloblen
);
1809 buffer_init(&kex
->my
);
1810 buffer_append(&kex
->my
, blob
, bloblen
);
1812 blob
= buffer_get_string(m
, &bloblen
);
1813 buffer_init(&kex
->peer
);
1814 buffer_append(&kex
->peer
, blob
, bloblen
);
1817 kex
->flags
= buffer_get_int(m
);
1818 kex
->client_version_string
= buffer_get_string(m
, NULL
);
1819 kex
->server_version_string
= buffer_get_string(m
, NULL
);
1820 kex
->load_host_public_key
=&get_hostkey_public_by_type
;
1821 kex
->load_host_private_key
=&get_hostkey_private_by_type
;
1822 kex
->host_key_index
=&get_hostkey_index
;
1827 /* This function requries careful sanity checking */
1830 mm_get_keystate(struct monitor
*pmonitor
)
1834 u_int bloblen
, plen
;
1835 u_int32_t seqnr
, packets
;
1836 u_int64_t blocks
, bytes
;
1838 debug3("%s: Waiting for new keys", __func__
);
1841 mm_request_receive_expect(pmonitor
->m_sendfd
, MONITOR_REQ_KEYEXPORT
, &m
);
1843 child_state
.ssh1protoflags
= buffer_get_int(&m
);
1844 child_state
.ssh1cipher
= buffer_get_int(&m
);
1845 child_state
.ssh1key
= buffer_get_string(&m
,
1846 &child_state
.ssh1keylen
);
1847 child_state
.ivout
= buffer_get_string(&m
,
1848 &child_state
.ivoutlen
);
1849 child_state
.ivin
= buffer_get_string(&m
, &child_state
.ivinlen
);
1852 /* Get the Kex for rekeying */
1853 *pmonitor
->m_pkex
= mm_get_kex(&m
);
1856 blob
= buffer_get_string(&m
, &bloblen
);
1857 current_keys
[MODE_OUT
] = mm_newkeys_from_blob(blob
, bloblen
);
1860 debug3("%s: Waiting for second key", __func__
);
1861 blob
= buffer_get_string(&m
, &bloblen
);
1862 current_keys
[MODE_IN
] = mm_newkeys_from_blob(blob
, bloblen
);
1865 /* Now get sequence numbers for the packets */
1866 seqnr
= buffer_get_int(&m
);
1867 blocks
= buffer_get_int64(&m
);
1868 packets
= buffer_get_int(&m
);
1869 bytes
= buffer_get_int64(&m
);
1870 packet_set_state(MODE_OUT
, seqnr
, blocks
, packets
, bytes
);
1871 seqnr
= buffer_get_int(&m
);
1872 blocks
= buffer_get_int64(&m
);
1873 packets
= buffer_get_int(&m
);
1874 bytes
= buffer_get_int64(&m
);
1875 packet_set_state(MODE_IN
, seqnr
, blocks
, packets
, bytes
);
1878 /* Get the key context */
1879 child_state
.keyout
= buffer_get_string(&m
, &child_state
.keyoutlen
);
1880 child_state
.keyin
= buffer_get_string(&m
, &child_state
.keyinlen
);
1882 debug3("%s: Getting compression state", __func__
);
1883 /* Get compression state */
1884 p
= buffer_get_string(&m
, &plen
);
1885 if (plen
!= sizeof(child_state
.outgoing
))
1886 fatal("%s: bad request size", __func__
);
1887 memcpy(&child_state
.outgoing
, p
, sizeof(child_state
.outgoing
));
1890 p
= buffer_get_string(&m
, &plen
);
1891 if (plen
!= sizeof(child_state
.incoming
))
1892 fatal("%s: bad request size", __func__
);
1893 memcpy(&child_state
.incoming
, p
, sizeof(child_state
.incoming
));
1896 /* Network I/O buffers */
1897 debug3("%s: Getting Network I/O buffers", __func__
);
1898 child_state
.input
= buffer_get_string(&m
, &child_state
.ilen
);
1899 child_state
.output
= buffer_get_string(&m
, &child_state
.olen
);
1903 child_state
.sent_bytes
= buffer_get_int64(&m
);
1904 child_state
.recv_bytes
= buffer_get_int64(&m
);
1911 /* Allocation functions for zlib */
1913 mm_zalloc(struct mm_master
*mm
, u_int ncount
, u_int size
)
1915 size_t len
= (size_t) size
* ncount
;
1918 if (len
== 0 || ncount
> SIZE_T_MAX
/ size
)
1919 fatal("%s: mm_zalloc(%u, %u)", __func__
, ncount
, size
);
1921 address
= mm_malloc(mm
, len
);
1927 mm_zfree(struct mm_master
*mm
, void *address
)
1929 mm_free(mm
, address
);
1933 mm_init_compression(struct mm_master
*mm
)
1935 outgoing_stream
.zalloc
= (alloc_func
)mm_zalloc
;
1936 outgoing_stream
.zfree
= (free_func
)mm_zfree
;
1937 outgoing_stream
.opaque
= mm
;
1939 incoming_stream
.zalloc
= (alloc_func
)mm_zalloc
;
1940 incoming_stream
.zfree
= (free_func
)mm_zfree
;
1941 incoming_stream
.opaque
= mm
;
1946 #define FD_CLOSEONEXEC(x) do { \
1947 if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
1948 fatal("fcntl(%d, F_SETFD)", x); \
1952 monitor_openfds(struct monitor
*mon
, int do_logfds
)
1956 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, pair
) == -1)
1957 fatal("%s: socketpair: %s", __func__
, strerror(errno
));
1958 FD_CLOSEONEXEC(pair
[0]);
1959 FD_CLOSEONEXEC(pair
[1]);
1960 mon
->m_recvfd
= pair
[0];
1961 mon
->m_sendfd
= pair
[1];
1964 if (pipe(pair
) == -1)
1965 fatal("%s: pipe: %s", __func__
, strerror(errno
));
1966 FD_CLOSEONEXEC(pair
[0]);
1967 FD_CLOSEONEXEC(pair
[1]);
1968 mon
->m_log_recvfd
= pair
[0];
1969 mon
->m_log_sendfd
= pair
[1];
1971 mon
->m_log_recvfd
= mon
->m_log_sendfd
= -1;
1974 #define MM_MEMSIZE 65536
1979 struct monitor
*mon
;
1981 mon
= xcalloc(1, sizeof(*mon
));
1983 monitor_openfds(mon
, 1);
1985 /* Used to share zlib space across processes */
1986 if (options
.compression
) {
1987 mon
->m_zback
= mm_create(NULL
, MM_MEMSIZE
);
1988 mon
->m_zlib
= mm_create(mon
->m_zback
, 20 * MM_MEMSIZE
);
1990 /* Compression needs to share state across borders */
1991 mm_init_compression(mon
->m_zlib
);
1998 monitor_reinit(struct monitor
*mon
)
2000 monitor_openfds(mon
, 0);
2005 mm_answer_gss_setup_ctx(int sock
, Buffer
*m
)
2011 goid
.elements
= buffer_get_string(m
, &len
);
2014 major
= ssh_gssapi_server_ctx(&gsscontext
, &goid
);
2016 xfree(goid
.elements
);
2019 buffer_put_int(m
, major
);
2021 mm_request_send(sock
, MONITOR_ANS_GSSSETUP
, m
);
2023 /* Now we have a context, enable the step */
2024 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSSTEP
, 1);
2030 mm_answer_gss_accept_ctx(int sock
, Buffer
*m
)
2033 gss_buffer_desc out
= GSS_C_EMPTY_BUFFER
;
2034 OM_uint32 major
, minor
;
2035 OM_uint32 flags
= 0; /* GSI needs this */
2038 in
.value
= buffer_get_string(m
, &len
);
2040 major
= ssh_gssapi_accept_ctx(gsscontext
, &in
, &out
, &flags
);
2044 buffer_put_int(m
, major
);
2045 buffer_put_string(m
, out
.value
, out
.length
);
2046 buffer_put_int(m
, flags
);
2047 mm_request_send(sock
, MONITOR_ANS_GSSSTEP
, m
);
2049 gss_release_buffer(&minor
, &out
);
2051 if (major
== GSS_S_COMPLETE
) {
2052 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSSTEP
, 0);
2053 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSUSEROK
, 1);
2054 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSCHECKMIC
, 1);
2060 mm_answer_gss_checkmic(int sock
, Buffer
*m
)
2062 gss_buffer_desc gssbuf
, mic
;
2066 gssbuf
.value
= buffer_get_string(m
, &len
);
2067 gssbuf
.length
= len
;
2068 mic
.value
= buffer_get_string(m
, &len
);
2071 ret
= ssh_gssapi_checkmic(gsscontext
, &gssbuf
, &mic
);
2073 xfree(gssbuf
.value
);
2077 buffer_put_int(m
, ret
);
2079 mm_request_send(sock
, MONITOR_ANS_GSSCHECKMIC
, m
);
2081 if (!GSS_ERROR(ret
))
2082 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSUSEROK
, 1);
2088 mm_answer_gss_userok(int sock
, Buffer
*m
)
2092 authenticated
= authctxt
->valid
&& ssh_gssapi_userok(authctxt
->user
);
2095 buffer_put_int(m
, authenticated
);
2097 debug3("%s: sending result %d", __func__
, authenticated
);
2098 mm_request_send(sock
, MONITOR_ANS_GSSUSEROK
, m
);
2100 auth_method
= "gssapi-with-mic";
2102 /* Monitor loop will terminate if authenticated */
2103 return (authenticated
);
2109 mm_answer_jpake_step1(int sock
, Buffer
*m
)
2111 struct jpake_ctx
*pctx
;
2112 u_char
*x3_proof
, *x4_proof
;
2113 u_int x3_proof_len
, x4_proof_len
;
2115 if (!options
.zero_knowledge_password_authentication
)
2116 fatal("zero_knowledge_password_authentication disabled");
2118 if (authctxt
->jpake_ctx
!= NULL
)
2119 fatal("%s: authctxt->jpake_ctx already set (%p)",
2120 __func__
, authctxt
->jpake_ctx
);
2121 authctxt
->jpake_ctx
= pctx
= jpake_new();
2123 jpake_step1(pctx
->grp
,
2124 &pctx
->server_id
, &pctx
->server_id_len
,
2125 &pctx
->x3
, &pctx
->x4
, &pctx
->g_x3
, &pctx
->g_x4
,
2126 &x3_proof
, &x3_proof_len
,
2127 &x4_proof
, &x4_proof_len
);
2129 JPAKE_DEBUG_CTX((pctx
, "step1 done in %s", __func__
));
2133 buffer_put_string(m
, pctx
->server_id
, pctx
->server_id_len
);
2134 buffer_put_bignum2(m
, pctx
->g_x3
);
2135 buffer_put_bignum2(m
, pctx
->g_x4
);
2136 buffer_put_string(m
, x3_proof
, x3_proof_len
);
2137 buffer_put_string(m
, x4_proof
, x4_proof_len
);
2139 debug3("%s: sending step1", __func__
);
2140 mm_request_send(sock
, MONITOR_ANS_JPAKE_STEP1
, m
);
2142 bzero(x3_proof
, x3_proof_len
);
2143 bzero(x4_proof
, x4_proof_len
);
2147 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_GET_PWDATA
, 1);
2148 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP1
, 0);
2154 mm_answer_jpake_get_pwdata(int sock
, Buffer
*m
)
2156 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2157 char *hash_scheme
, *salt
;
2160 fatal("%s: pctx == NULL", __func__
);
2162 auth2_jpake_get_pwdata(authctxt
, &pctx
->s
, &hash_scheme
, &salt
);
2165 /* pctx->s is sensitive, not returned to slave */
2166 buffer_put_cstring(m
, hash_scheme
);
2167 buffer_put_cstring(m
, salt
);
2169 debug3("%s: sending pwdata", __func__
);
2170 mm_request_send(sock
, MONITOR_ANS_JPAKE_GET_PWDATA
, m
);
2172 bzero(hash_scheme
, strlen(hash_scheme
));
2173 bzero(salt
, strlen(salt
));
2177 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP2
, 1);
2183 mm_answer_jpake_step2(int sock
, Buffer
*m
)
2185 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2186 u_char
*x1_proof
, *x2_proof
, *x4_s_proof
;
2187 u_int x1_proof_len
, x2_proof_len
, x4_s_proof_len
;
2190 fatal("%s: pctx == NULL", __func__
);
2192 if ((pctx
->g_x1
= BN_new()) == NULL
||
2193 (pctx
->g_x2
= BN_new()) == NULL
)
2194 fatal("%s: BN_new", __func__
);
2195 buffer_get_bignum2(m
, pctx
->g_x1
);
2196 buffer_get_bignum2(m
, pctx
->g_x2
);
2197 pctx
->client_id
= buffer_get_string(m
, &pctx
->client_id_len
);
2198 x1_proof
= buffer_get_string(m
, &x1_proof_len
);
2199 x2_proof
= buffer_get_string(m
, &x2_proof_len
);
2201 jpake_step2(pctx
->grp
, pctx
->s
, pctx
->g_x3
,
2202 pctx
->g_x1
, pctx
->g_x2
, pctx
->x4
,
2203 pctx
->client_id
, pctx
->client_id_len
,
2204 pctx
->server_id
, pctx
->server_id_len
,
2205 x1_proof
, x1_proof_len
,
2206 x2_proof
, x2_proof_len
,
2208 &x4_s_proof
, &x4_s_proof_len
);
2210 JPAKE_DEBUG_CTX((pctx
, "step2 done in %s", __func__
));
2212 bzero(x1_proof
, x1_proof_len
);
2213 bzero(x2_proof
, x2_proof_len
);
2219 buffer_put_bignum2(m
, pctx
->b
);
2220 buffer_put_string(m
, x4_s_proof
, x4_s_proof_len
);
2222 debug3("%s: sending step2", __func__
);
2223 mm_request_send(sock
, MONITOR_ANS_JPAKE_STEP2
, m
);
2225 bzero(x4_s_proof
, x4_s_proof_len
);
2228 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_KEY_CONFIRM
, 1);
2234 mm_answer_jpake_key_confirm(int sock
, Buffer
*m
)
2236 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2238 u_int x2_s_proof_len
;
2241 fatal("%s: pctx == NULL", __func__
);
2243 if ((pctx
->a
= BN_new()) == NULL
)
2244 fatal("%s: BN_new", __func__
);
2245 buffer_get_bignum2(m
, pctx
->a
);
2246 x2_s_proof
= buffer_get_string(m
, &x2_s_proof_len
);
2248 jpake_key_confirm(pctx
->grp
, pctx
->s
, pctx
->a
,
2249 pctx
->x4
, pctx
->g_x3
, pctx
->g_x4
, pctx
->g_x1
, pctx
->g_x2
,
2250 pctx
->server_id
, pctx
->server_id_len
,
2251 pctx
->client_id
, pctx
->client_id_len
,
2252 session_id2
, session_id2_len
,
2253 x2_s_proof
, x2_s_proof_len
,
2255 &pctx
->h_k_sid_sessid
, &pctx
->h_k_sid_sessid_len
);
2257 JPAKE_DEBUG_CTX((pctx
, "key_confirm done in %s", __func__
));
2259 bzero(x2_s_proof
, x2_s_proof_len
);
2262 /* pctx->k is sensitive, not sent */
2263 buffer_put_string(m
, pctx
->h_k_sid_sessid
, pctx
->h_k_sid_sessid_len
);
2265 debug3("%s: sending confirmation hash", __func__
);
2266 mm_request_send(sock
, MONITOR_ANS_JPAKE_KEY_CONFIRM
, m
);
2268 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_CHECK_CONFIRM
, 1);
2274 mm_answer_jpake_check_confirm(int sock
, Buffer
*m
)
2276 int authenticated
= 0;
2277 u_char
*peer_confirm_hash
;
2278 u_int peer_confirm_hash_len
;
2279 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2282 fatal("%s: pctx == NULL", __func__
);
2284 peer_confirm_hash
= buffer_get_string(m
, &peer_confirm_hash_len
);
2286 authenticated
= jpake_check_confirm(pctx
->k
,
2287 pctx
->client_id
, pctx
->client_id_len
,
2288 session_id2
, session_id2_len
,
2289 peer_confirm_hash
, peer_confirm_hash_len
) && authctxt
->valid
;
2291 JPAKE_DEBUG_CTX((pctx
, "check_confirm done in %s", __func__
));
2293 bzero(peer_confirm_hash
, peer_confirm_hash_len
);
2294 xfree(peer_confirm_hash
);
2297 buffer_put_int(m
, authenticated
);
2299 debug3("%s: sending result %d", __func__
, authenticated
);
2300 mm_request_send(sock
, MONITOR_ANS_JPAKE_CHECK_CONFIRM
, m
);
2302 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP1
, 1);
2304 auth_method
= "jpake-01@openssh.com";
2305 return authenticated
;