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