1 /* $OpenBSD: monitor.c,v 1.100 2008/11/04 08:22:13 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"
52 #include <openssl/dh.h>
54 #include "openbsd-compat/sys-queue.h"
64 #ifdef TARGET_OS_MAC /* XXX Broken krb5 headers on Mac */
67 #define TARGET_OS_MAC 1
72 #include "auth-options.h"
81 #include "monitor_mm.h"
85 #include "monitor_wrap.h"
86 #include "monitor_fdpass.h"
93 static Gssctxt
*gsscontext
= NULL
;
97 extern ServerOptions options
;
98 extern u_int utmp_len
;
99 extern Newkeys
*current_keys
[];
100 extern z_stream incoming_stream
;
101 extern z_stream outgoing_stream
;
102 extern u_char session_id
[];
103 extern Buffer input
, output
;
104 extern Buffer auth_debug
;
105 extern int auth_debug_init
;
106 extern Buffer loginmsg
;
108 /* State exported from the child */
131 /* Functions on the monitor that answer unprivileged requests */
133 int mm_answer_moduli(int, Buffer
*);
134 int mm_answer_sign(int, Buffer
*);
135 int mm_answer_pwnamallow(int, Buffer
*);
136 int mm_answer_auth2_read_banner(int, Buffer
*);
137 int mm_answer_authserv(int, Buffer
*);
138 int mm_answer_authpassword(int, Buffer
*);
139 int mm_answer_bsdauthquery(int, Buffer
*);
140 int mm_answer_bsdauthrespond(int, Buffer
*);
141 int mm_answer_skeyquery(int, Buffer
*);
142 int mm_answer_skeyrespond(int, Buffer
*);
143 int mm_answer_keyallowed(int, Buffer
*);
144 int mm_answer_keyverify(int, Buffer
*);
145 int mm_answer_pty(int, Buffer
*);
146 int mm_answer_pty_cleanup(int, Buffer
*);
147 int mm_answer_term(int, Buffer
*);
148 int mm_answer_rsa_keyallowed(int, Buffer
*);
149 int mm_answer_rsa_challenge(int, Buffer
*);
150 int mm_answer_rsa_response(int, Buffer
*);
151 int mm_answer_sesskey(int, Buffer
*);
152 int mm_answer_sessid(int, Buffer
*);
153 int mm_answer_jpake_get_pwdata(int, Buffer
*);
154 int mm_answer_jpake_step1(int, Buffer
*);
155 int mm_answer_jpake_step2(int, Buffer
*);
156 int mm_answer_jpake_key_confirm(int, Buffer
*);
157 int mm_answer_jpake_check_confirm(int, Buffer
*);
160 int mm_answer_pam_start(int, Buffer
*);
161 int mm_answer_pam_account(int, Buffer
*);
162 int mm_answer_pam_init_ctx(int, Buffer
*);
163 int mm_answer_pam_query(int, Buffer
*);
164 int mm_answer_pam_respond(int, Buffer
*);
165 int mm_answer_pam_free_ctx(int, Buffer
*);
169 int mm_answer_gss_setup_ctx(int, Buffer
*);
170 int mm_answer_gss_accept_ctx(int, Buffer
*);
171 int mm_answer_gss_userok(int, Buffer
*);
172 int mm_answer_gss_checkmic(int, Buffer
*);
175 #ifdef SSH_AUDIT_EVENTS
176 int mm_answer_audit_event(int, Buffer
*);
177 int mm_answer_audit_command(int, Buffer
*);
180 static Authctxt
*authctxt
;
181 static BIGNUM
*ssh1_challenge
= NULL
; /* used for ssh1 rsa auth */
183 /* local state for key verify */
184 static u_char
*key_blob
= NULL
;
185 static u_int key_bloblen
= 0;
186 static int key_blobtype
= MM_NOKEY
;
187 static char *hostbased_cuser
= NULL
;
188 static char *hostbased_chost
= NULL
;
189 static char *auth_method
= "unknown";
190 static u_int session_id2_len
= 0;
191 static u_char
*session_id2
= NULL
;
192 static pid_t monitor_child_pid
;
195 enum monitor_reqtype type
;
197 int (*f
)(int, Buffer
*);
200 #define MON_ISAUTH 0x0004 /* Required for Authentication */
201 #define MON_AUTHDECIDE 0x0008 /* Decides Authentication */
202 #define MON_ONCE 0x0010 /* Disable after calling */
203 #define MON_ALOG 0x0020 /* Log auth attempt without authenticating */
205 #define MON_AUTH (MON_ISAUTH|MON_AUTHDECIDE)
207 #define MON_PERMIT 0x1000 /* Request is permitted */
209 struct mon_table mon_dispatch_proto20
[] = {
210 {MONITOR_REQ_MODULI
, MON_ONCE
, mm_answer_moduli
},
211 {MONITOR_REQ_SIGN
, MON_ONCE
, mm_answer_sign
},
212 {MONITOR_REQ_PWNAM
, MON_ONCE
, mm_answer_pwnamallow
},
213 {MONITOR_REQ_AUTHSERV
, MON_ONCE
, mm_answer_authserv
},
214 {MONITOR_REQ_AUTH2_READ_BANNER
, MON_ONCE
, mm_answer_auth2_read_banner
},
215 {MONITOR_REQ_AUTHPASSWORD
, MON_AUTH
, mm_answer_authpassword
},
217 {MONITOR_REQ_PAM_START
, MON_ONCE
, mm_answer_pam_start
},
218 {MONITOR_REQ_PAM_ACCOUNT
, 0, mm_answer_pam_account
},
219 {MONITOR_REQ_PAM_INIT_CTX
, MON_ISAUTH
, mm_answer_pam_init_ctx
},
220 {MONITOR_REQ_PAM_QUERY
, MON_ISAUTH
, mm_answer_pam_query
},
221 {MONITOR_REQ_PAM_RESPOND
, MON_ISAUTH
, mm_answer_pam_respond
},
222 {MONITOR_REQ_PAM_FREE_CTX
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_pam_free_ctx
},
224 #ifdef SSH_AUDIT_EVENTS
225 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
228 {MONITOR_REQ_BSDAUTHQUERY
, MON_ISAUTH
, mm_answer_bsdauthquery
},
229 {MONITOR_REQ_BSDAUTHRESPOND
, MON_AUTH
, mm_answer_bsdauthrespond
},
232 {MONITOR_REQ_SKEYQUERY
, MON_ISAUTH
, mm_answer_skeyquery
},
233 {MONITOR_REQ_SKEYRESPOND
, MON_AUTH
, mm_answer_skeyrespond
},
235 {MONITOR_REQ_KEYALLOWED
, MON_ISAUTH
, mm_answer_keyallowed
},
236 {MONITOR_REQ_KEYVERIFY
, MON_AUTH
, mm_answer_keyverify
},
238 {MONITOR_REQ_GSSSETUP
, MON_ISAUTH
, mm_answer_gss_setup_ctx
},
239 {MONITOR_REQ_GSSSTEP
, MON_ISAUTH
, mm_answer_gss_accept_ctx
},
240 {MONITOR_REQ_GSSUSEROK
, MON_AUTH
, mm_answer_gss_userok
},
241 {MONITOR_REQ_GSSCHECKMIC
, MON_ISAUTH
, mm_answer_gss_checkmic
},
244 {MONITOR_REQ_JPAKE_GET_PWDATA
, MON_ONCE
, mm_answer_jpake_get_pwdata
},
245 {MONITOR_REQ_JPAKE_STEP1
, MON_ISAUTH
, mm_answer_jpake_step1
},
246 {MONITOR_REQ_JPAKE_STEP2
, MON_ONCE
, mm_answer_jpake_step2
},
247 {MONITOR_REQ_JPAKE_KEY_CONFIRM
, MON_ONCE
, mm_answer_jpake_key_confirm
},
248 {MONITOR_REQ_JPAKE_CHECK_CONFIRM
, MON_AUTH
, mm_answer_jpake_check_confirm
},
253 struct mon_table mon_dispatch_postauth20
[] = {
254 {MONITOR_REQ_MODULI
, 0, mm_answer_moduli
},
255 {MONITOR_REQ_SIGN
, 0, mm_answer_sign
},
256 {MONITOR_REQ_PTY
, 0, mm_answer_pty
},
257 {MONITOR_REQ_PTYCLEANUP
, 0, mm_answer_pty_cleanup
},
258 {MONITOR_REQ_TERM
, 0, mm_answer_term
},
259 #ifdef SSH_AUDIT_EVENTS
260 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
261 {MONITOR_REQ_AUDIT_COMMAND
, MON_PERMIT
, mm_answer_audit_command
},
266 struct mon_table mon_dispatch_proto15
[] = {
267 {MONITOR_REQ_PWNAM
, MON_ONCE
, mm_answer_pwnamallow
},
268 {MONITOR_REQ_SESSKEY
, MON_ONCE
, mm_answer_sesskey
},
269 {MONITOR_REQ_SESSID
, MON_ONCE
, mm_answer_sessid
},
270 {MONITOR_REQ_AUTHPASSWORD
, MON_AUTH
, mm_answer_authpassword
},
271 {MONITOR_REQ_RSAKEYALLOWED
, MON_ISAUTH
|MON_ALOG
, mm_answer_rsa_keyallowed
},
272 {MONITOR_REQ_KEYALLOWED
, MON_ISAUTH
|MON_ALOG
, mm_answer_keyallowed
},
273 {MONITOR_REQ_RSACHALLENGE
, MON_ONCE
, mm_answer_rsa_challenge
},
274 {MONITOR_REQ_RSARESPONSE
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_rsa_response
},
276 {MONITOR_REQ_BSDAUTHQUERY
, MON_ISAUTH
, mm_answer_bsdauthquery
},
277 {MONITOR_REQ_BSDAUTHRESPOND
, MON_AUTH
, mm_answer_bsdauthrespond
},
280 {MONITOR_REQ_SKEYQUERY
, MON_ISAUTH
, mm_answer_skeyquery
},
281 {MONITOR_REQ_SKEYRESPOND
, MON_AUTH
, mm_answer_skeyrespond
},
284 {MONITOR_REQ_PAM_START
, MON_ONCE
, mm_answer_pam_start
},
285 {MONITOR_REQ_PAM_ACCOUNT
, 0, mm_answer_pam_account
},
286 {MONITOR_REQ_PAM_INIT_CTX
, MON_ISAUTH
, mm_answer_pam_init_ctx
},
287 {MONITOR_REQ_PAM_QUERY
, MON_ISAUTH
, mm_answer_pam_query
},
288 {MONITOR_REQ_PAM_RESPOND
, MON_ISAUTH
, mm_answer_pam_respond
},
289 {MONITOR_REQ_PAM_FREE_CTX
, MON_ONCE
|MON_AUTHDECIDE
, mm_answer_pam_free_ctx
},
291 #ifdef SSH_AUDIT_EVENTS
292 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
297 struct mon_table mon_dispatch_postauth15
[] = {
298 {MONITOR_REQ_PTY
, MON_ONCE
, mm_answer_pty
},
299 {MONITOR_REQ_PTYCLEANUP
, MON_ONCE
, mm_answer_pty_cleanup
},
300 {MONITOR_REQ_TERM
, 0, mm_answer_term
},
301 #ifdef SSH_AUDIT_EVENTS
302 {MONITOR_REQ_AUDIT_EVENT
, MON_PERMIT
, mm_answer_audit_event
},
303 {MONITOR_REQ_AUDIT_COMMAND
, MON_PERMIT
|MON_ONCE
, mm_answer_audit_command
},
308 struct mon_table
*mon_dispatch
;
310 /* Specifies if a certain message is allowed at the moment */
313 monitor_permit(struct mon_table
*ent
, enum monitor_reqtype type
, int permit
)
315 while (ent
->f
!= NULL
) {
316 if (ent
->type
== type
) {
317 ent
->flags
&= ~MON_PERMIT
;
318 ent
->flags
|= permit
? MON_PERMIT
: 0;
326 monitor_permit_authentications(int permit
)
328 struct mon_table
*ent
= mon_dispatch
;
330 while (ent
->f
!= NULL
) {
331 if (ent
->flags
& MON_AUTH
) {
332 ent
->flags
&= ~MON_PERMIT
;
333 ent
->flags
|= permit
? MON_PERMIT
: 0;
340 monitor_child_preauth(Authctxt
*_authctxt
, struct monitor
*pmonitor
)
342 struct mon_table
*ent
;
343 int authenticated
= 0;
345 debug3("preauth child monitor started");
347 authctxt
= _authctxt
;
348 memset(authctxt
, 0, sizeof(*authctxt
));
350 authctxt
->loginmsg
= &loginmsg
;
353 mon_dispatch
= mon_dispatch_proto20
;
355 /* Permit requests for moduli and signatures */
356 monitor_permit(mon_dispatch
, MONITOR_REQ_MODULI
, 1);
357 monitor_permit(mon_dispatch
, MONITOR_REQ_SIGN
, 1);
359 mon_dispatch
= mon_dispatch_proto15
;
361 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSKEY
, 1);
364 /* The first few requests do not require asynchronous access */
365 while (!authenticated
) {
366 auth_method
= "unknown";
367 authenticated
= (monitor_read(pmonitor
, mon_dispatch
, &ent
) == 1);
369 if (!(ent
->flags
& MON_AUTHDECIDE
))
370 fatal("%s: unexpected authentication from %d",
371 __func__
, ent
->type
);
372 if (authctxt
->pw
->pw_uid
== 0 &&
373 !auth_root_allowed(auth_method
))
376 /* PAM needs to perform account checks after auth */
377 if (options
.use_pam
&& authenticated
) {
381 mm_request_receive_expect(pmonitor
->m_sendfd
,
382 MONITOR_REQ_PAM_ACCOUNT
, &m
);
383 authenticated
= mm_answer_pam_account(pmonitor
->m_sendfd
, &m
);
389 if (ent
->flags
& (MON_AUTHDECIDE
|MON_ALOG
)) {
390 auth_log(authctxt
, authenticated
, auth_method
,
391 compat20
? " ssh2" : "");
393 authctxt
->failures
++;
396 /* Cleanup JPAKE context after authentication */
397 if (ent
->flags
& MON_AUTHDECIDE
) {
398 if (authctxt
->jpake_ctx
!= NULL
) {
399 jpake_free(authctxt
->jpake_ctx
);
400 authctxt
->jpake_ctx
= NULL
;
406 if (!authctxt
->valid
)
407 fatal("%s: authenticated invalid user", __func__
);
408 if (strcmp(auth_method
, "unknown") == 0)
409 fatal("%s: authentication method name unknown", __func__
);
411 debug("%s: %s has been authenticated by privileged process",
412 __func__
, authctxt
->user
);
414 mm_get_keystate(pmonitor
);
418 monitor_set_child_handler(pid_t pid
)
420 monitor_child_pid
= pid
;
424 monitor_child_handler(int sig
)
426 kill(monitor_child_pid
, sig
);
430 monitor_child_postauth(struct monitor
*pmonitor
)
432 monitor_set_child_handler(pmonitor
->m_pid
);
433 signal(SIGHUP
, &monitor_child_handler
);
434 signal(SIGTERM
, &monitor_child_handler
);
435 signal(SIGINT
, &monitor_child_handler
);
438 mon_dispatch
= mon_dispatch_postauth20
;
440 /* Permit requests for moduli and signatures */
441 monitor_permit(mon_dispatch
, MONITOR_REQ_MODULI
, 1);
442 monitor_permit(mon_dispatch
, MONITOR_REQ_SIGN
, 1);
443 monitor_permit(mon_dispatch
, MONITOR_REQ_TERM
, 1);
445 mon_dispatch
= mon_dispatch_postauth15
;
446 monitor_permit(mon_dispatch
, MONITOR_REQ_TERM
, 1);
449 monitor_permit(mon_dispatch
, MONITOR_REQ_PTY
, 1);
450 monitor_permit(mon_dispatch
, MONITOR_REQ_PTYCLEANUP
, 1);
454 monitor_read(pmonitor
, mon_dispatch
, NULL
);
458 monitor_sync(struct monitor
*pmonitor
)
460 if (options
.compression
) {
461 /* The member allocation is not visible, so sync it */
462 mm_share_sync(&pmonitor
->m_zlib
, &pmonitor
->m_zback
);
467 monitor_read(struct monitor
*pmonitor
, struct mon_table
*ent
,
468 struct mon_table
**pent
)
476 mm_request_receive(pmonitor
->m_sendfd
, &m
);
477 type
= buffer_get_char(&m
);
479 debug3("%s: checking request %d", __func__
, type
);
481 while (ent
->f
!= NULL
) {
482 if (ent
->type
== type
)
487 if (ent
->f
!= NULL
) {
488 if (!(ent
->flags
& MON_PERMIT
))
489 fatal("%s: unpermitted request %d", __func__
,
491 ret
= (*ent
->f
)(pmonitor
->m_sendfd
, &m
);
494 /* The child may use this request only once, disable it */
495 if (ent
->flags
& MON_ONCE
) {
496 debug2("%s: %d used once, disabling now", __func__
,
498 ent
->flags
&= ~MON_PERMIT
;
507 fatal("%s: unsupported request: %d", __func__
, type
);
513 /* allowed key state */
515 monitor_allowed_key(u_char
*blob
, u_int bloblen
)
517 /* make sure key is allowed */
518 if (key_blob
== NULL
|| key_bloblen
!= bloblen
||
519 memcmp(key_blob
, blob
, key_bloblen
))
525 monitor_reset_key_state(void)
528 if (key_blob
!= NULL
)
530 if (hostbased_cuser
!= NULL
)
531 xfree(hostbased_cuser
);
532 if (hostbased_chost
!= NULL
)
533 xfree(hostbased_chost
);
536 key_blobtype
= MM_NOKEY
;
537 hostbased_cuser
= NULL
;
538 hostbased_chost
= NULL
;
542 mm_answer_moduli(int sock
, Buffer
*m
)
547 min
= buffer_get_int(m
);
548 want
= buffer_get_int(m
);
549 max
= buffer_get_int(m
);
551 debug3("%s: got parameters: %d %d %d",
552 __func__
, min
, want
, max
);
553 /* We need to check here, too, in case the child got corrupted */
554 if (max
< min
|| want
< min
|| max
< want
)
555 fatal("%s: bad parameters: %d %d %d",
556 __func__
, min
, want
, max
);
560 dh
= choose_dh(min
, want
, max
);
562 buffer_put_char(m
, 0);
565 /* Send first bignum */
566 buffer_put_char(m
, 1);
567 buffer_put_bignum2(m
, dh
->p
);
568 buffer_put_bignum2(m
, dh
->g
);
572 mm_request_send(sock
, MONITOR_ANS_MODULI
, m
);
577 mm_answer_sign(int sock
, Buffer
*m
)
582 u_int siglen
, datlen
;
585 debug3("%s", __func__
);
587 keyid
= buffer_get_int(m
);
588 p
= buffer_get_string(m
, &datlen
);
591 * Supported KEX types will only return SHA1 (20 byte) or
592 * SHA256 (32 byte) hashes
594 if (datlen
!= 20 && datlen
!= 32)
595 fatal("%s: data length incorrect: %u", __func__
, datlen
);
597 /* save session id, it will be passed on the first call */
598 if (session_id2_len
== 0) {
599 session_id2_len
= datlen
;
600 session_id2
= xmalloc(session_id2_len
);
601 memcpy(session_id2
, p
, session_id2_len
);
604 if ((key
= get_hostkey_by_index(keyid
)) == NULL
)
605 fatal("%s: no hostkey from index %d", __func__
, keyid
);
606 if (key_sign(key
, &signature
, &siglen
, p
, datlen
) < 0)
607 fatal("%s: key_sign failed", __func__
);
609 debug3("%s: signature %p(%u)", __func__
, signature
, siglen
);
612 buffer_put_string(m
, signature
, siglen
);
617 mm_request_send(sock
, MONITOR_ANS_SIGN
, m
);
619 /* Turn on permissions for getpwnam */
620 monitor_permit(mon_dispatch
, MONITOR_REQ_PWNAM
, 1);
625 /* Retrieves the password entry and also checks if the user is permitted */
628 mm_answer_pwnamallow(int sock
, Buffer
*m
)
631 struct passwd
*pwent
;
634 debug3("%s", __func__
);
636 if (authctxt
->attempt
++ != 0)
637 fatal("%s: multiple attempts for getpwnam", __func__
);
639 username
= buffer_get_string(m
, NULL
);
641 pwent
= getpwnamallow(username
);
643 authctxt
->user
= xstrdup(username
);
644 setproctitle("%s [priv]", pwent
? username
: "unknown");
650 buffer_put_char(m
, 0);
651 authctxt
->pw
= fakepw();
656 authctxt
->pw
= pwent
;
659 buffer_put_char(m
, 1);
660 buffer_put_string(m
, pwent
, sizeof(struct passwd
));
661 buffer_put_cstring(m
, pwent
->pw_name
);
662 buffer_put_cstring(m
, "*");
663 buffer_put_cstring(m
, pwent
->pw_gecos
);
664 #ifdef HAVE_PW_CLASS_IN_PASSWD
665 buffer_put_cstring(m
, pwent
->pw_class
);
667 buffer_put_cstring(m
, pwent
->pw_dir
);
668 buffer_put_cstring(m
, pwent
->pw_shell
);
671 buffer_put_string(m
, &options
, sizeof(options
));
672 if (options
.banner
!= NULL
)
673 buffer_put_cstring(m
, options
.banner
);
674 debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__
, allowed
);
675 mm_request_send(sock
, MONITOR_ANS_PWNAM
, m
);
677 /* For SSHv1 allow authentication now */
679 monitor_permit_authentications(1);
681 /* Allow service/style information on the auth context */
682 monitor_permit(mon_dispatch
, MONITOR_REQ_AUTHSERV
, 1);
683 monitor_permit(mon_dispatch
, MONITOR_REQ_AUTH2_READ_BANNER
, 1);
688 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_START
, 1);
694 int mm_answer_auth2_read_banner(int sock
, Buffer
*m
)
699 banner
= auth2_read_banner();
700 buffer_put_cstring(m
, banner
!= NULL
? banner
: "");
701 mm_request_send(sock
, MONITOR_ANS_AUTH2_READ_BANNER
, m
);
710 mm_answer_authserv(int sock
, Buffer
*m
)
712 monitor_permit_authentications(1);
714 authctxt
->service
= buffer_get_string(m
, NULL
);
715 authctxt
->style
= buffer_get_string(m
, NULL
);
716 debug3("%s: service=%s, style=%s",
717 __func__
, authctxt
->service
, authctxt
->style
);
719 if (strlen(authctxt
->style
) == 0) {
720 xfree(authctxt
->style
);
721 authctxt
->style
= NULL
;
728 mm_answer_authpassword(int sock
, Buffer
*m
)
730 static int call_count
;
735 passwd
= buffer_get_string(m
, &plen
);
736 /* Only authenticate if the context is valid */
737 authenticated
= options
.password_authentication
&&
738 auth_password(authctxt
, passwd
);
739 memset(passwd
, 0, strlen(passwd
));
743 buffer_put_int(m
, authenticated
);
745 debug3("%s: sending result %d", __func__
, authenticated
);
746 mm_request_send(sock
, MONITOR_ANS_AUTHPASSWORD
, m
);
749 if (plen
== 0 && call_count
== 1)
750 auth_method
= "none";
752 auth_method
= "password";
754 /* Causes monitor loop to terminate if authenticated */
755 return (authenticated
);
760 mm_answer_bsdauthquery(int sock
, Buffer
*m
)
762 char *name
, *infotxt
;
768 success
= bsdauth_query(authctxt
, &name
, &infotxt
, &numprompts
,
769 &prompts
, &echo_on
) < 0 ? 0 : 1;
772 buffer_put_int(m
, success
);
774 buffer_put_cstring(m
, prompts
[0]);
776 debug3("%s: sending challenge success: %u", __func__
, success
);
777 mm_request_send(sock
, MONITOR_ANS_BSDAUTHQUERY
, m
);
790 mm_answer_bsdauthrespond(int sock
, Buffer
*m
)
795 if (authctxt
->as
== 0)
796 fatal("%s: no bsd auth session", __func__
);
798 response
= buffer_get_string(m
, NULL
);
799 authok
= options
.challenge_response_authentication
&&
800 auth_userresponse(authctxt
->as
, response
, 0);
802 debug3("%s: <%s> = <%d>", __func__
, response
, authok
);
806 buffer_put_int(m
, authok
);
808 debug3("%s: sending authenticated: %d", __func__
, authok
);
809 mm_request_send(sock
, MONITOR_ANS_BSDAUTHRESPOND
, m
);
811 auth_method
= "bsdauth";
813 return (authok
!= 0);
819 mm_answer_skeyquery(int sock
, Buffer
*m
)
822 char challenge
[1024];
825 success
= _compat_skeychallenge(&skey
, authctxt
->user
, challenge
,
826 sizeof(challenge
)) < 0 ? 0 : 1;
829 buffer_put_int(m
, success
);
831 buffer_put_cstring(m
, challenge
);
833 debug3("%s: sending challenge success: %u", __func__
, success
);
834 mm_request_send(sock
, MONITOR_ANS_SKEYQUERY
, m
);
840 mm_answer_skeyrespond(int sock
, Buffer
*m
)
845 response
= buffer_get_string(m
, NULL
);
847 authok
= (options
.challenge_response_authentication
&&
849 skey_haskey(authctxt
->pw
->pw_name
) == 0 &&
850 skey_passcheck(authctxt
->pw
->pw_name
, response
) != -1);
855 buffer_put_int(m
, authok
);
857 debug3("%s: sending authenticated: %d", __func__
, authok
);
858 mm_request_send(sock
, MONITOR_ANS_SKEYRESPOND
, m
);
860 auth_method
= "skey";
862 return (authok
!= 0);
868 mm_answer_pam_start(int sock
, Buffer
*m
)
870 if (!options
.use_pam
)
871 fatal("UsePAM not set, but ended up in %s anyway", __func__
);
875 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_ACCOUNT
, 1);
881 mm_answer_pam_account(int sock
, Buffer
*m
)
885 if (!options
.use_pam
)
886 fatal("UsePAM not set, but ended up in %s anyway", __func__
);
888 ret
= do_pam_account();
890 buffer_put_int(m
, ret
);
891 buffer_put_string(m
, buffer_ptr(&loginmsg
), buffer_len(&loginmsg
));
893 mm_request_send(sock
, MONITOR_ANS_PAM_ACCOUNT
, m
);
898 static void *sshpam_ctxt
, *sshpam_authok
;
899 extern KbdintDevice sshpam_device
;
902 mm_answer_pam_init_ctx(int sock
, Buffer
*m
)
905 debug3("%s", __func__
);
906 authctxt
->user
= buffer_get_string(m
, NULL
);
907 sshpam_ctxt
= (sshpam_device
.init_ctx
)(authctxt
);
908 sshpam_authok
= NULL
;
910 if (sshpam_ctxt
!= NULL
) {
911 monitor_permit(mon_dispatch
, MONITOR_REQ_PAM_FREE_CTX
, 1);
912 buffer_put_int(m
, 1);
914 buffer_put_int(m
, 0);
916 mm_request_send(sock
, MONITOR_ANS_PAM_INIT_CTX
, m
);
921 mm_answer_pam_query(int sock
, Buffer
*m
)
923 char *name
, *info
, **prompts
;
924 u_int i
, num
, *echo_on
;
927 debug3("%s", __func__
);
928 sshpam_authok
= NULL
;
929 ret
= (sshpam_device
.query
)(sshpam_ctxt
, &name
, &info
, &num
, &prompts
, &echo_on
);
930 if (ret
== 0 && num
== 0)
931 sshpam_authok
= sshpam_ctxt
;
932 if (num
> 1 || name
== NULL
|| info
== NULL
)
935 buffer_put_int(m
, ret
);
936 buffer_put_cstring(m
, name
);
938 buffer_put_cstring(m
, info
);
940 buffer_put_int(m
, num
);
941 for (i
= 0; i
< num
; ++i
) {
942 buffer_put_cstring(m
, prompts
[i
]);
944 buffer_put_int(m
, echo_on
[i
]);
950 auth_method
= "keyboard-interactive/pam";
951 mm_request_send(sock
, MONITOR_ANS_PAM_QUERY
, m
);
956 mm_answer_pam_respond(int sock
, Buffer
*m
)
962 debug3("%s", __func__
);
963 sshpam_authok
= NULL
;
964 num
= buffer_get_int(m
);
966 resp
= xcalloc(num
, sizeof(char *));
967 for (i
= 0; i
< num
; ++i
)
968 resp
[i
] = buffer_get_string(m
, NULL
);
969 ret
= (sshpam_device
.respond
)(sshpam_ctxt
, num
, resp
);
970 for (i
= 0; i
< num
; ++i
)
974 ret
= (sshpam_device
.respond
)(sshpam_ctxt
, num
, NULL
);
977 buffer_put_int(m
, ret
);
978 mm_request_send(sock
, MONITOR_ANS_PAM_RESPOND
, m
);
979 auth_method
= "keyboard-interactive/pam";
981 sshpam_authok
= sshpam_ctxt
;
986 mm_answer_pam_free_ctx(int sock
, Buffer
*m
)
989 debug3("%s", __func__
);
990 (sshpam_device
.free_ctx
)(sshpam_ctxt
);
992 mm_request_send(sock
, MONITOR_ANS_PAM_FREE_CTX
, m
);
993 auth_method
= "keyboard-interactive/pam";
994 return (sshpam_authok
== sshpam_ctxt
);
999 mm_append_debug(Buffer
*m
)
1001 if (auth_debug_init
&& buffer_len(&auth_debug
)) {
1002 debug3("%s: Appending debug messages for child", __func__
);
1003 buffer_append(m
, buffer_ptr(&auth_debug
),
1004 buffer_len(&auth_debug
));
1005 buffer_clear(&auth_debug
);
1010 mm_answer_keyallowed(int sock
, Buffer
*m
)
1013 char *cuser
, *chost
;
1016 enum mm_keytype type
= 0;
1019 debug3("%s entering", __func__
);
1021 type
= buffer_get_int(m
);
1022 cuser
= buffer_get_string(m
, NULL
);
1023 chost
= buffer_get_string(m
, NULL
);
1024 blob
= buffer_get_string(m
, &bloblen
);
1026 key
= key_from_blob(blob
, bloblen
);
1028 if ((compat20
&& type
== MM_RSAHOSTKEY
) ||
1029 (!compat20
&& type
!= MM_RSAHOSTKEY
))
1030 fatal("%s: key type and protocol mismatch", __func__
);
1032 debug3("%s: key_from_blob: %p", __func__
, key
);
1034 if (key
!= NULL
&& authctxt
->valid
) {
1037 allowed
= options
.pubkey_authentication
&&
1038 user_key_allowed(authctxt
->pw
, key
);
1039 auth_method
= "publickey";
1040 if (options
.pubkey_authentication
&& allowed
!= 1)
1041 auth_clear_options();
1044 allowed
= options
.hostbased_authentication
&&
1045 hostbased_key_allowed(authctxt
->pw
,
1047 auth_method
= "hostbased";
1050 key
->type
= KEY_RSA1
; /* XXX */
1051 allowed
= options
.rhosts_rsa_authentication
&&
1052 auth_rhosts_rsa_key_allowed(authctxt
->pw
,
1054 if (options
.rhosts_rsa_authentication
&& allowed
!= 1)
1055 auth_clear_options();
1056 auth_method
= "rsa";
1059 fatal("%s: unknown key type %d", __func__
, type
);
1066 /* clear temporarily storage (used by verify) */
1067 monitor_reset_key_state();
1070 /* Save temporarily for comparison in verify */
1072 key_bloblen
= bloblen
;
1073 key_blobtype
= type
;
1074 hostbased_cuser
= cuser
;
1075 hostbased_chost
= chost
;
1077 /* Log failed attempt */
1078 auth_log(authctxt
, 0, auth_method
, compat20
? " ssh2" : "");
1084 debug3("%s: key %p is %s",
1085 __func__
, key
, allowed
? "allowed" : "not allowed");
1088 buffer_put_int(m
, allowed
);
1089 buffer_put_int(m
, forced_command
!= NULL
);
1093 mm_request_send(sock
, MONITOR_ANS_KEYALLOWED
, m
);
1095 if (type
== MM_RSAHOSTKEY
)
1096 monitor_permit(mon_dispatch
, MONITOR_REQ_RSACHALLENGE
, allowed
);
1102 monitor_valid_userblob(u_char
*data
, u_int datalen
)
1110 buffer_append(&b
, data
, datalen
);
1112 if (datafellows
& SSH_OLD_SESSIONID
) {
1114 len
= buffer_len(&b
);
1115 if ((session_id2
== NULL
) ||
1116 (len
< session_id2_len
) ||
1117 (memcmp(p
, session_id2
, session_id2_len
) != 0))
1119 buffer_consume(&b
, session_id2_len
);
1121 p
= buffer_get_string(&b
, &len
);
1122 if ((session_id2
== NULL
) ||
1123 (len
!= session_id2_len
) ||
1124 (memcmp(p
, session_id2
, session_id2_len
) != 0))
1128 if (buffer_get_char(&b
) != SSH2_MSG_USERAUTH_REQUEST
)
1130 p
= buffer_get_string(&b
, NULL
);
1131 if (strcmp(authctxt
->user
, p
) != 0) {
1132 logit("wrong user name passed to monitor: expected %s != %.100s",
1137 buffer_skip_string(&b
);
1138 if (datafellows
& SSH_BUG_PKAUTH
) {
1139 if (!buffer_get_char(&b
))
1142 p
= buffer_get_string(&b
, NULL
);
1143 if (strcmp("publickey", p
) != 0)
1146 if (!buffer_get_char(&b
))
1148 buffer_skip_string(&b
);
1150 buffer_skip_string(&b
);
1151 if (buffer_len(&b
) != 0)
1158 monitor_valid_hostbasedblob(u_char
*data
, u_int datalen
, char *cuser
,
1167 buffer_append(&b
, data
, datalen
);
1169 p
= buffer_get_string(&b
, &len
);
1170 if ((session_id2
== NULL
) ||
1171 (len
!= session_id2_len
) ||
1172 (memcmp(p
, session_id2
, session_id2_len
) != 0))
1176 if (buffer_get_char(&b
) != SSH2_MSG_USERAUTH_REQUEST
)
1178 p
= buffer_get_string(&b
, NULL
);
1179 if (strcmp(authctxt
->user
, p
) != 0) {
1180 logit("wrong user name passed to monitor: expected %s != %.100s",
1185 buffer_skip_string(&b
); /* service */
1186 p
= buffer_get_string(&b
, NULL
);
1187 if (strcmp(p
, "hostbased") != 0)
1190 buffer_skip_string(&b
); /* pkalg */
1191 buffer_skip_string(&b
); /* pkblob */
1193 /* verify client host, strip trailing dot if necessary */
1194 p
= buffer_get_string(&b
, NULL
);
1195 if (((len
= strlen(p
)) > 0) && p
[len
- 1] == '.')
1197 if (strcmp(p
, chost
) != 0)
1201 /* verify client user */
1202 p
= buffer_get_string(&b
, NULL
);
1203 if (strcmp(p
, cuser
) != 0)
1207 if (buffer_len(&b
) != 0)
1214 mm_answer_keyverify(int sock
, Buffer
*m
)
1217 u_char
*signature
, *data
, *blob
;
1218 u_int signaturelen
, datalen
, bloblen
;
1222 blob
= buffer_get_string(m
, &bloblen
);
1223 signature
= buffer_get_string(m
, &signaturelen
);
1224 data
= buffer_get_string(m
, &datalen
);
1226 if (hostbased_cuser
== NULL
|| hostbased_chost
== NULL
||
1227 !monitor_allowed_key(blob
, bloblen
))
1228 fatal("%s: bad key, not previously allowed", __func__
);
1230 key
= key_from_blob(blob
, bloblen
);
1232 fatal("%s: bad public key blob", __func__
);
1234 switch (key_blobtype
) {
1236 valid_data
= monitor_valid_userblob(data
, datalen
);
1239 valid_data
= monitor_valid_hostbasedblob(data
, datalen
,
1240 hostbased_cuser
, hostbased_chost
);
1247 fatal("%s: bad signature data blob", __func__
);
1249 verified
= key_verify(key
, signature
, signaturelen
, data
, datalen
);
1250 debug3("%s: key %p signature %s",
1251 __func__
, key
, (verified
== 1) ? "verified" : "unverified");
1258 auth_method
= key_blobtype
== MM_USERKEY
? "publickey" : "hostbased";
1260 monitor_reset_key_state();
1263 buffer_put_int(m
, verified
);
1264 mm_request_send(sock
, MONITOR_ANS_KEYVERIFY
, m
);
1266 return (verified
== 1);
1270 mm_record_login(Session
*s
, struct passwd
*pw
)
1273 struct sockaddr_storage from
;
1276 * Get IP address of client. If the connection is not a socket, let
1277 * the address be 0.0.0.0.
1279 memset(&from
, 0, sizeof(from
));
1280 fromlen
= sizeof(from
);
1281 if (packet_connection_is_on_socket()) {
1282 if (getpeername(packet_get_connection_in(),
1283 (struct sockaddr
*)&from
, &fromlen
) < 0) {
1284 debug("getpeername: %.100s", strerror(errno
));
1288 /* Record that there was a login on that tty from the remote host. */
1289 record_login(s
->pid
, s
->tty
, pw
->pw_name
, pw
->pw_uid
,
1290 get_remote_name_or_ip(utmp_len
, options
.use_dns
),
1291 (struct sockaddr
*)&from
, fromlen
);
1295 mm_session_close(Session
*s
)
1297 debug3("%s: session %d pid %ld", __func__
, s
->self
, (long)s
->pid
);
1298 if (s
->ttyfd
!= -1) {
1299 debug3("%s: tty %s ptyfd %d", __func__
, s
->tty
, s
->ptyfd
);
1300 session_pty_cleanup2(s
);
1302 session_unused(s
->self
);
1306 mm_answer_pty(int sock
, Buffer
*m
)
1308 extern struct monitor
*pmonitor
;
1312 debug3("%s entering", __func__
);
1318 s
->authctxt
= authctxt
;
1319 s
->pw
= authctxt
->pw
;
1320 s
->pid
= pmonitor
->m_pid
;
1321 res
= pty_allocate(&s
->ptyfd
, &s
->ttyfd
, s
->tty
, sizeof(s
->tty
));
1324 pty_setowner(authctxt
->pw
, s
->tty
);
1326 buffer_put_int(m
, 1);
1327 buffer_put_cstring(m
, s
->tty
);
1329 /* We need to trick ttyslot */
1330 if (dup2(s
->ttyfd
, 0) == -1)
1331 fatal("%s: dup2", __func__
);
1333 mm_record_login(s
, authctxt
->pw
);
1335 /* Now we can close the file descriptor again */
1338 /* send messages generated by record_login */
1339 buffer_put_string(m
, buffer_ptr(&loginmsg
), buffer_len(&loginmsg
));
1340 buffer_clear(&loginmsg
);
1342 mm_request_send(sock
, MONITOR_ANS_PTY
, m
);
1344 if (mm_send_fd(sock
, s
->ptyfd
) == -1 ||
1345 mm_send_fd(sock
, s
->ttyfd
) == -1)
1346 fatal("%s: send fds failed", __func__
);
1348 /* make sure nothing uses fd 0 */
1349 if ((fd0
= open(_PATH_DEVNULL
, O_RDONLY
)) < 0)
1350 fatal("%s: open(/dev/null): %s", __func__
, strerror(errno
));
1352 error("%s: fd0 %d != 0", __func__
, fd0
);
1354 /* slave is not needed */
1356 s
->ttyfd
= s
->ptyfd
;
1357 /* no need to dup() because nobody closes ptyfd */
1358 s
->ptymaster
= s
->ptyfd
;
1360 debug3("%s: tty %s ptyfd %d", __func__
, s
->tty
, s
->ttyfd
);
1366 mm_session_close(s
);
1367 buffer_put_int(m
, 0);
1368 mm_request_send(sock
, MONITOR_ANS_PTY
, m
);
1373 mm_answer_pty_cleanup(int sock
, Buffer
*m
)
1378 debug3("%s entering", __func__
);
1380 tty
= buffer_get_string(m
, NULL
);
1381 if ((s
= session_by_tty(tty
)) != NULL
)
1382 mm_session_close(s
);
1389 mm_answer_sesskey(int sock
, Buffer
*m
)
1394 /* Turn off permissions */
1395 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSKEY
, 0);
1397 if ((p
= BN_new()) == NULL
)
1398 fatal("%s: BN_new", __func__
);
1400 buffer_get_bignum2(m
, p
);
1402 rsafail
= ssh1_session_key(p
);
1405 buffer_put_int(m
, rsafail
);
1406 buffer_put_bignum2(m
, p
);
1410 mm_request_send(sock
, MONITOR_ANS_SESSKEY
, m
);
1412 /* Turn on permissions for sessid passing */
1413 monitor_permit(mon_dispatch
, MONITOR_REQ_SESSID
, 1);
1419 mm_answer_sessid(int sock
, Buffer
*m
)
1423 debug3("%s entering", __func__
);
1425 if (buffer_len(m
) != 16)
1426 fatal("%s: bad ssh1 session id", __func__
);
1427 for (i
= 0; i
< 16; i
++)
1428 session_id
[i
] = buffer_get_char(m
);
1430 /* Turn on permissions for getpwnam */
1431 monitor_permit(mon_dispatch
, MONITOR_REQ_PWNAM
, 1);
1437 mm_answer_rsa_keyallowed(int sock
, Buffer
*m
)
1441 u_char
*blob
= NULL
;
1445 debug3("%s entering", __func__
);
1447 auth_method
= "rsa";
1448 if (options
.rsa_authentication
&& authctxt
->valid
) {
1449 if ((client_n
= BN_new()) == NULL
)
1450 fatal("%s: BN_new", __func__
);
1451 buffer_get_bignum2(m
, client_n
);
1452 allowed
= auth_rsa_key_allowed(authctxt
->pw
, client_n
, &key
);
1453 BN_clear_free(client_n
);
1456 buffer_put_int(m
, allowed
);
1457 buffer_put_int(m
, forced_command
!= NULL
);
1459 /* clear temporarily storage (used by generate challenge) */
1460 monitor_reset_key_state();
1462 if (allowed
&& key
!= NULL
) {
1463 key
->type
= KEY_RSA
; /* cheat for key_to_blob */
1464 if (key_to_blob(key
, &blob
, &blen
) == 0)
1465 fatal("%s: key_to_blob failed", __func__
);
1466 buffer_put_string(m
, blob
, blen
);
1468 /* Save temporarily for comparison in verify */
1471 key_blobtype
= MM_RSAUSERKEY
;
1478 mm_request_send(sock
, MONITOR_ANS_RSAKEYALLOWED
, m
);
1480 monitor_permit(mon_dispatch
, MONITOR_REQ_RSACHALLENGE
, allowed
);
1481 monitor_permit(mon_dispatch
, MONITOR_REQ_RSARESPONSE
, 0);
1486 mm_answer_rsa_challenge(int sock
, Buffer
*m
)
1492 debug3("%s entering", __func__
);
1494 if (!authctxt
->valid
)
1495 fatal("%s: authctxt not valid", __func__
);
1496 blob
= buffer_get_string(m
, &blen
);
1497 if (!monitor_allowed_key(blob
, blen
))
1498 fatal("%s: bad key, not previously allowed", __func__
);
1499 if (key_blobtype
!= MM_RSAUSERKEY
&& key_blobtype
!= MM_RSAHOSTKEY
)
1500 fatal("%s: key type mismatch", __func__
);
1501 if ((key
= key_from_blob(blob
, blen
)) == NULL
)
1502 fatal("%s: received bad key", __func__
);
1505 BN_clear_free(ssh1_challenge
);
1506 ssh1_challenge
= auth_rsa_generate_challenge(key
);
1509 buffer_put_bignum2(m
, ssh1_challenge
);
1511 debug3("%s sending reply", __func__
);
1512 mm_request_send(sock
, MONITOR_ANS_RSACHALLENGE
, m
);
1514 monitor_permit(mon_dispatch
, MONITOR_REQ_RSARESPONSE
, 1);
1522 mm_answer_rsa_response(int sock
, Buffer
*m
)
1525 u_char
*blob
, *response
;
1529 debug3("%s entering", __func__
);
1531 if (!authctxt
->valid
)
1532 fatal("%s: authctxt not valid", __func__
);
1533 if (ssh1_challenge
== NULL
)
1534 fatal("%s: no ssh1_challenge", __func__
);
1536 blob
= buffer_get_string(m
, &blen
);
1537 if (!monitor_allowed_key(blob
, blen
))
1538 fatal("%s: bad key, not previously allowed", __func__
);
1539 if (key_blobtype
!= MM_RSAUSERKEY
&& key_blobtype
!= MM_RSAHOSTKEY
)
1540 fatal("%s: key type mismatch: %d", __func__
, key_blobtype
);
1541 if ((key
= key_from_blob(blob
, blen
)) == NULL
)
1542 fatal("%s: received bad key", __func__
);
1543 response
= buffer_get_string(m
, &len
);
1545 fatal("%s: received bad response to challenge", __func__
);
1546 success
= auth_rsa_verify_response(key
, ssh1_challenge
, response
);
1552 auth_method
= key_blobtype
== MM_RSAUSERKEY
? "rsa" : "rhosts-rsa";
1555 BN_clear_free(ssh1_challenge
);
1556 ssh1_challenge
= NULL
;
1557 monitor_reset_key_state();
1560 buffer_put_int(m
, success
);
1561 mm_request_send(sock
, MONITOR_ANS_RSARESPONSE
, m
);
1567 mm_answer_term(int sock
, Buffer
*req
)
1569 extern struct monitor
*pmonitor
;
1572 debug3("%s: tearing down sessions", __func__
);
1574 /* The child is terminating */
1575 session_destroy_all(&mm_session_close
);
1578 if (options
.use_pam
)
1582 while (waitpid(pmonitor
->m_pid
, &status
, 0) == -1)
1586 res
= WIFEXITED(status
) ? WEXITSTATUS(status
) : 1;
1588 /* Terminate process */
1592 #ifdef SSH_AUDIT_EVENTS
1593 /* Report that an audit event occurred */
1595 mm_answer_audit_event(int socket
, Buffer
*m
)
1597 ssh_audit_event_t event
;
1599 debug3("%s entering", __func__
);
1601 event
= buffer_get_int(m
);
1603 case SSH_AUTH_FAIL_PUBKEY
:
1604 case SSH_AUTH_FAIL_HOSTBASED
:
1605 case SSH_AUTH_FAIL_GSSAPI
:
1606 case SSH_LOGIN_EXCEED_MAXTRIES
:
1607 case SSH_LOGIN_ROOT_DENIED
:
1608 case SSH_CONNECTION_CLOSE
:
1609 case SSH_INVALID_USER
:
1613 fatal("Audit event type %d not permitted", event
);
1620 mm_answer_audit_command(int socket
, Buffer
*m
)
1625 debug3("%s entering", __func__
);
1626 cmd
= buffer_get_string(m
, &len
);
1627 /* sanity check command, if so how? */
1628 audit_run_command(cmd
);
1632 #endif /* SSH_AUDIT_EVENTS */
1635 monitor_apply_keystate(struct monitor
*pmonitor
)
1638 set_newkeys(MODE_IN
);
1639 set_newkeys(MODE_OUT
);
1641 packet_set_protocol_flags(child_state
.ssh1protoflags
);
1642 packet_set_encryption_key(child_state
.ssh1key
,
1643 child_state
.ssh1keylen
, child_state
.ssh1cipher
);
1644 xfree(child_state
.ssh1key
);
1647 /* for rc4 and other stateful ciphers */
1648 packet_set_keycontext(MODE_OUT
, child_state
.keyout
);
1649 xfree(child_state
.keyout
);
1650 packet_set_keycontext(MODE_IN
, child_state
.keyin
);
1651 xfree(child_state
.keyin
);
1654 packet_set_iv(MODE_OUT
, child_state
.ivout
);
1655 xfree(child_state
.ivout
);
1656 packet_set_iv(MODE_IN
, child_state
.ivin
);
1657 xfree(child_state
.ivin
);
1660 memcpy(&incoming_stream
, &child_state
.incoming
,
1661 sizeof(incoming_stream
));
1662 memcpy(&outgoing_stream
, &child_state
.outgoing
,
1663 sizeof(outgoing_stream
));
1665 /* Update with new address */
1666 if (options
.compression
)
1667 mm_init_compression(pmonitor
->m_zlib
);
1669 /* Network I/O buffers */
1670 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1671 buffer_clear(&input
);
1672 buffer_append(&input
, child_state
.input
, child_state
.ilen
);
1673 memset(child_state
.input
, 0, child_state
.ilen
);
1674 xfree(child_state
.input
);
1676 buffer_clear(&output
);
1677 buffer_append(&output
, child_state
.output
, child_state
.olen
);
1678 memset(child_state
.output
, 0, child_state
.olen
);
1679 xfree(child_state
.output
);
1683 mm_get_kex(Buffer
*m
)
1689 kex
= xcalloc(1, sizeof(*kex
));
1690 kex
->session_id
= buffer_get_string(m
, &kex
->session_id_len
);
1691 if ((session_id2
== NULL
) ||
1692 (kex
->session_id_len
!= session_id2_len
) ||
1693 (memcmp(kex
->session_id
, session_id2
, session_id2_len
) != 0))
1694 fatal("mm_get_get: internal error: bad session id");
1695 kex
->we_need
= buffer_get_int(m
);
1696 kex
->kex
[KEX_DH_GRP1_SHA1
] = kexdh_server
;
1697 kex
->kex
[KEX_DH_GRP14_SHA1
] = kexdh_server
;
1698 kex
->kex
[KEX_DH_GEX_SHA1
] = kexgex_server
;
1699 kex
->kex
[KEX_DH_GEX_SHA256
] = kexgex_server
;
1701 kex
->hostkey_type
= buffer_get_int(m
);
1702 kex
->kex_type
= buffer_get_int(m
);
1703 blob
= buffer_get_string(m
, &bloblen
);
1704 buffer_init(&kex
->my
);
1705 buffer_append(&kex
->my
, blob
, bloblen
);
1707 blob
= buffer_get_string(m
, &bloblen
);
1708 buffer_init(&kex
->peer
);
1709 buffer_append(&kex
->peer
, blob
, bloblen
);
1712 kex
->flags
= buffer_get_int(m
);
1713 kex
->client_version_string
= buffer_get_string(m
, NULL
);
1714 kex
->server_version_string
= buffer_get_string(m
, NULL
);
1715 kex
->load_host_key
=&get_hostkey_by_type
;
1716 kex
->host_key_index
=&get_hostkey_index
;
1721 /* This function requries careful sanity checking */
1724 mm_get_keystate(struct monitor
*pmonitor
)
1728 u_int bloblen
, plen
;
1729 u_int32_t seqnr
, packets
;
1730 u_int64_t blocks
, bytes
;
1732 debug3("%s: Waiting for new keys", __func__
);
1735 mm_request_receive_expect(pmonitor
->m_sendfd
, MONITOR_REQ_KEYEXPORT
, &m
);
1737 child_state
.ssh1protoflags
= buffer_get_int(&m
);
1738 child_state
.ssh1cipher
= buffer_get_int(&m
);
1739 child_state
.ssh1key
= buffer_get_string(&m
,
1740 &child_state
.ssh1keylen
);
1741 child_state
.ivout
= buffer_get_string(&m
,
1742 &child_state
.ivoutlen
);
1743 child_state
.ivin
= buffer_get_string(&m
, &child_state
.ivinlen
);
1746 /* Get the Kex for rekeying */
1747 *pmonitor
->m_pkex
= mm_get_kex(&m
);
1750 blob
= buffer_get_string(&m
, &bloblen
);
1751 current_keys
[MODE_OUT
] = mm_newkeys_from_blob(blob
, bloblen
);
1754 debug3("%s: Waiting for second key", __func__
);
1755 blob
= buffer_get_string(&m
, &bloblen
);
1756 current_keys
[MODE_IN
] = mm_newkeys_from_blob(blob
, bloblen
);
1759 /* Now get sequence numbers for the packets */
1760 seqnr
= buffer_get_int(&m
);
1761 blocks
= buffer_get_int64(&m
);
1762 packets
= buffer_get_int(&m
);
1763 bytes
= buffer_get_int64(&m
);
1764 packet_set_state(MODE_OUT
, seqnr
, blocks
, packets
, bytes
);
1765 seqnr
= buffer_get_int(&m
);
1766 blocks
= buffer_get_int64(&m
);
1767 packets
= buffer_get_int(&m
);
1768 bytes
= buffer_get_int64(&m
);
1769 packet_set_state(MODE_IN
, seqnr
, blocks
, packets
, bytes
);
1772 /* Get the key context */
1773 child_state
.keyout
= buffer_get_string(&m
, &child_state
.keyoutlen
);
1774 child_state
.keyin
= buffer_get_string(&m
, &child_state
.keyinlen
);
1776 debug3("%s: Getting compression state", __func__
);
1777 /* Get compression state */
1778 p
= buffer_get_string(&m
, &plen
);
1779 if (plen
!= sizeof(child_state
.outgoing
))
1780 fatal("%s: bad request size", __func__
);
1781 memcpy(&child_state
.outgoing
, p
, sizeof(child_state
.outgoing
));
1784 p
= buffer_get_string(&m
, &plen
);
1785 if (plen
!= sizeof(child_state
.incoming
))
1786 fatal("%s: bad request size", __func__
);
1787 memcpy(&child_state
.incoming
, p
, sizeof(child_state
.incoming
));
1790 /* Network I/O buffers */
1791 debug3("%s: Getting Network I/O buffers", __func__
);
1792 child_state
.input
= buffer_get_string(&m
, &child_state
.ilen
);
1793 child_state
.output
= buffer_get_string(&m
, &child_state
.olen
);
1799 /* Allocation functions for zlib */
1801 mm_zalloc(struct mm_master
*mm
, u_int ncount
, u_int size
)
1803 size_t len
= (size_t) size
* ncount
;
1806 if (len
== 0 || ncount
> SIZE_T_MAX
/ size
)
1807 fatal("%s: mm_zalloc(%u, %u)", __func__
, ncount
, size
);
1809 address
= mm_malloc(mm
, len
);
1815 mm_zfree(struct mm_master
*mm
, void *address
)
1817 mm_free(mm
, address
);
1821 mm_init_compression(struct mm_master
*mm
)
1823 outgoing_stream
.zalloc
= (alloc_func
)mm_zalloc
;
1824 outgoing_stream
.zfree
= (free_func
)mm_zfree
;
1825 outgoing_stream
.opaque
= mm
;
1827 incoming_stream
.zalloc
= (alloc_func
)mm_zalloc
;
1828 incoming_stream
.zfree
= (free_func
)mm_zfree
;
1829 incoming_stream
.opaque
= mm
;
1834 #define FD_CLOSEONEXEC(x) do { \
1835 if (fcntl(x, F_SETFD, 1) == -1) \
1836 fatal("fcntl(%d, F_SETFD)", x); \
1840 monitor_socketpair(int *pair
)
1842 #ifdef HAVE_SOCKETPAIR
1843 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, pair
) == -1)
1844 fatal("%s: socketpair", __func__
);
1846 fatal("%s: UsePrivilegeSeparation=yes not supported",
1849 FD_CLOSEONEXEC(pair
[0]);
1850 FD_CLOSEONEXEC(pair
[1]);
1853 #define MM_MEMSIZE 65536
1858 struct monitor
*mon
;
1861 mon
= xcalloc(1, sizeof(*mon
));
1863 monitor_socketpair(pair
);
1865 mon
->m_recvfd
= pair
[0];
1866 mon
->m_sendfd
= pair
[1];
1868 /* Used to share zlib space across processes */
1869 if (options
.compression
) {
1870 mon
->m_zback
= mm_create(NULL
, MM_MEMSIZE
);
1871 mon
->m_zlib
= mm_create(mon
->m_zback
, 20 * MM_MEMSIZE
);
1873 /* Compression needs to share state across borders */
1874 mm_init_compression(mon
->m_zlib
);
1881 monitor_reinit(struct monitor
*mon
)
1885 monitor_socketpair(pair
);
1887 mon
->m_recvfd
= pair
[0];
1888 mon
->m_sendfd
= pair
[1];
1893 mm_answer_gss_setup_ctx(int sock
, Buffer
*m
)
1899 goid
.elements
= buffer_get_string(m
, &len
);
1902 major
= ssh_gssapi_server_ctx(&gsscontext
, &goid
);
1904 xfree(goid
.elements
);
1907 buffer_put_int(m
, major
);
1909 mm_request_send(sock
, MONITOR_ANS_GSSSETUP
, m
);
1911 /* Now we have a context, enable the step */
1912 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSSTEP
, 1);
1918 mm_answer_gss_accept_ctx(int sock
, Buffer
*m
)
1921 gss_buffer_desc out
= GSS_C_EMPTY_BUFFER
;
1922 OM_uint32 major
, minor
;
1923 OM_uint32 flags
= 0; /* GSI needs this */
1926 in
.value
= buffer_get_string(m
, &len
);
1928 major
= ssh_gssapi_accept_ctx(gsscontext
, &in
, &out
, &flags
);
1932 buffer_put_int(m
, major
);
1933 buffer_put_string(m
, out
.value
, out
.length
);
1934 buffer_put_int(m
, flags
);
1935 mm_request_send(sock
, MONITOR_ANS_GSSSTEP
, m
);
1937 gss_release_buffer(&minor
, &out
);
1939 if (major
== GSS_S_COMPLETE
) {
1940 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSSTEP
, 0);
1941 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSUSEROK
, 1);
1942 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSCHECKMIC
, 1);
1948 mm_answer_gss_checkmic(int sock
, Buffer
*m
)
1950 gss_buffer_desc gssbuf
, mic
;
1954 gssbuf
.value
= buffer_get_string(m
, &len
);
1955 gssbuf
.length
= len
;
1956 mic
.value
= buffer_get_string(m
, &len
);
1959 ret
= ssh_gssapi_checkmic(gsscontext
, &gssbuf
, &mic
);
1961 xfree(gssbuf
.value
);
1965 buffer_put_int(m
, ret
);
1967 mm_request_send(sock
, MONITOR_ANS_GSSCHECKMIC
, m
);
1969 if (!GSS_ERROR(ret
))
1970 monitor_permit(mon_dispatch
, MONITOR_REQ_GSSUSEROK
, 1);
1976 mm_answer_gss_userok(int sock
, Buffer
*m
)
1980 authenticated
= authctxt
->valid
&& ssh_gssapi_userok(authctxt
->user
);
1983 buffer_put_int(m
, authenticated
);
1985 debug3("%s: sending result %d", __func__
, authenticated
);
1986 mm_request_send(sock
, MONITOR_ANS_GSSUSEROK
, m
);
1988 auth_method
= "gssapi-with-mic";
1990 /* Monitor loop will terminate if authenticated */
1991 return (authenticated
);
1997 mm_answer_jpake_step1(int sock
, Buffer
*m
)
1999 struct jpake_ctx
*pctx
;
2000 u_char
*x3_proof
, *x4_proof
;
2001 u_int x3_proof_len
, x4_proof_len
;
2003 if (!options
.zero_knowledge_password_authentication
)
2004 fatal("zero_knowledge_password_authentication disabled");
2006 if (authctxt
->jpake_ctx
!= NULL
)
2007 fatal("%s: authctxt->jpake_ctx already set (%p)",
2008 __func__
, authctxt
->jpake_ctx
);
2009 authctxt
->jpake_ctx
= pctx
= jpake_new();
2011 jpake_step1(pctx
->grp
,
2012 &pctx
->server_id
, &pctx
->server_id_len
,
2013 &pctx
->x3
, &pctx
->x4
, &pctx
->g_x3
, &pctx
->g_x4
,
2014 &x3_proof
, &x3_proof_len
,
2015 &x4_proof
, &x4_proof_len
);
2017 JPAKE_DEBUG_CTX((pctx
, "step1 done in %s", __func__
));
2021 buffer_put_string(m
, pctx
->server_id
, pctx
->server_id_len
);
2022 buffer_put_bignum2(m
, pctx
->g_x3
);
2023 buffer_put_bignum2(m
, pctx
->g_x4
);
2024 buffer_put_string(m
, x3_proof
, x3_proof_len
);
2025 buffer_put_string(m
, x4_proof
, x4_proof_len
);
2027 debug3("%s: sending step1", __func__
);
2028 mm_request_send(sock
, MONITOR_ANS_JPAKE_STEP1
, m
);
2030 bzero(x3_proof
, x3_proof_len
);
2031 bzero(x4_proof
, x4_proof_len
);
2035 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_GET_PWDATA
, 1);
2036 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP1
, 0);
2042 mm_answer_jpake_get_pwdata(int sock
, Buffer
*m
)
2044 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2045 char *hash_scheme
, *salt
;
2048 fatal("%s: pctx == NULL", __func__
);
2050 auth2_jpake_get_pwdata(authctxt
, &pctx
->s
, &hash_scheme
, &salt
);
2053 /* pctx->s is sensitive, not returned to slave */
2054 buffer_put_cstring(m
, hash_scheme
);
2055 buffer_put_cstring(m
, salt
);
2057 debug3("%s: sending pwdata", __func__
);
2058 mm_request_send(sock
, MONITOR_ANS_JPAKE_GET_PWDATA
, m
);
2060 bzero(hash_scheme
, strlen(hash_scheme
));
2061 bzero(salt
, strlen(salt
));
2065 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP2
, 1);
2071 mm_answer_jpake_step2(int sock
, Buffer
*m
)
2073 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2074 u_char
*x1_proof
, *x2_proof
, *x4_s_proof
;
2075 u_int x1_proof_len
, x2_proof_len
, x4_s_proof_len
;
2078 fatal("%s: pctx == NULL", __func__
);
2080 if ((pctx
->g_x1
= BN_new()) == NULL
||
2081 (pctx
->g_x2
= BN_new()) == NULL
)
2082 fatal("%s: BN_new", __func__
);
2083 buffer_get_bignum2(m
, pctx
->g_x1
);
2084 buffer_get_bignum2(m
, pctx
->g_x2
);
2085 pctx
->client_id
= buffer_get_string(m
, &pctx
->client_id_len
);
2086 x1_proof
= buffer_get_string(m
, &x1_proof_len
);
2087 x2_proof
= buffer_get_string(m
, &x2_proof_len
);
2089 jpake_step2(pctx
->grp
, pctx
->s
, pctx
->g_x3
,
2090 pctx
->g_x1
, pctx
->g_x2
, pctx
->x4
,
2091 pctx
->client_id
, pctx
->client_id_len
,
2092 pctx
->server_id
, pctx
->server_id_len
,
2093 x1_proof
, x1_proof_len
,
2094 x2_proof
, x2_proof_len
,
2096 &x4_s_proof
, &x4_s_proof_len
);
2098 JPAKE_DEBUG_CTX((pctx
, "step2 done in %s", __func__
));
2100 bzero(x1_proof
, x1_proof_len
);
2101 bzero(x2_proof
, x2_proof_len
);
2107 buffer_put_bignum2(m
, pctx
->b
);
2108 buffer_put_string(m
, x4_s_proof
, x4_s_proof_len
);
2110 debug3("%s: sending step2", __func__
);
2111 mm_request_send(sock
, MONITOR_ANS_JPAKE_STEP2
, m
);
2113 bzero(x4_s_proof
, x4_s_proof_len
);
2116 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_KEY_CONFIRM
, 1);
2122 mm_answer_jpake_key_confirm(int sock
, Buffer
*m
)
2124 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2126 u_int x2_s_proof_len
;
2129 fatal("%s: pctx == NULL", __func__
);
2131 if ((pctx
->a
= BN_new()) == NULL
)
2132 fatal("%s: BN_new", __func__
);
2133 buffer_get_bignum2(m
, pctx
->a
);
2134 x2_s_proof
= buffer_get_string(m
, &x2_s_proof_len
);
2136 jpake_key_confirm(pctx
->grp
, pctx
->s
, pctx
->a
,
2137 pctx
->x4
, pctx
->g_x3
, pctx
->g_x4
, pctx
->g_x1
, pctx
->g_x2
,
2138 pctx
->server_id
, pctx
->server_id_len
,
2139 pctx
->client_id
, pctx
->client_id_len
,
2140 session_id2
, session_id2_len
,
2141 x2_s_proof
, x2_s_proof_len
,
2143 &pctx
->h_k_sid_sessid
, &pctx
->h_k_sid_sessid_len
);
2145 JPAKE_DEBUG_CTX((pctx
, "key_confirm done in %s", __func__
));
2147 bzero(x2_s_proof
, x2_s_proof_len
);
2150 /* pctx->k is sensitive, not sent */
2151 buffer_put_string(m
, pctx
->h_k_sid_sessid
, pctx
->h_k_sid_sessid_len
);
2153 debug3("%s: sending confirmation hash", __func__
);
2154 mm_request_send(sock
, MONITOR_ANS_JPAKE_KEY_CONFIRM
, m
);
2156 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_CHECK_CONFIRM
, 1);
2162 mm_answer_jpake_check_confirm(int sock
, Buffer
*m
)
2164 int authenticated
= 0;
2165 u_char
*peer_confirm_hash
;
2166 u_int peer_confirm_hash_len
;
2167 struct jpake_ctx
*pctx
= authctxt
->jpake_ctx
;
2170 fatal("%s: pctx == NULL", __func__
);
2172 peer_confirm_hash
= buffer_get_string(m
, &peer_confirm_hash_len
);
2174 authenticated
= jpake_check_confirm(pctx
->k
,
2175 pctx
->client_id
, pctx
->client_id_len
,
2176 session_id2
, session_id2_len
,
2177 peer_confirm_hash
, peer_confirm_hash_len
) && authctxt
->valid
;
2179 JPAKE_DEBUG_CTX((pctx
, "check_confirm done in %s", __func__
));
2181 bzero(peer_confirm_hash
, peer_confirm_hash_len
);
2182 xfree(peer_confirm_hash
);
2185 buffer_put_int(m
, authenticated
);
2187 debug3("%s: sending result %d", __func__
, authenticated
);
2188 mm_request_send(sock
, MONITOR_ANS_JPAKE_CHECK_CONFIRM
, m
);
2190 monitor_permit(mon_dispatch
, MONITOR_REQ_JPAKE_STEP1
, 1);
2192 auth_method
= "jpake-01@openssh.com";
2193 return authenticated
;