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