]> andersk Git - openssh.git/blame - monitor.c
- dtucker@cvs.openbsd.org 2004/07/17 05:31:41
[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);
813
8b3ec5fd 814 mm_request_send(sock, MONITOR_ANS_PAM_ACCOUNT, m);
5b9e2464 815
816 return (ret);
817}
818
05114c74 819static void *sshpam_ctxt, *sshpam_authok;
820extern KbdintDevice sshpam_device;
821
822int
8b3ec5fd 823mm_answer_pam_init_ctx(int sock, Buffer *m)
05114c74 824{
825
826 debug3("%s", __func__);
827 authctxt->user = buffer_get_string(m, NULL);
828 sshpam_ctxt = (sshpam_device.init_ctx)(authctxt);
829 sshpam_authok = NULL;
830 buffer_clear(m);
831 if (sshpam_ctxt != NULL) {
832 monitor_permit(mon_dispatch, MONITOR_REQ_PAM_FREE_CTX, 1);
833 buffer_put_int(m, 1);
834 } else {
835 buffer_put_int(m, 0);
836 }
8b3ec5fd 837 mm_request_send(sock, MONITOR_ANS_PAM_INIT_CTX, m);
05114c74 838 return (0);
839}
840
841int
8b3ec5fd 842mm_answer_pam_query(int sock, Buffer *m)
05114c74 843{
844 char *name, *info, **prompts;
845 u_int num, *echo_on;
846 int i, ret;
847
848 debug3("%s", __func__);
849 sshpam_authok = NULL;
850 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on);
851 if (ret == 0 && num == 0)
852 sshpam_authok = sshpam_ctxt;
853 if (num > 1 || name == NULL || info == NULL)
854 ret = -1;
855 buffer_clear(m);
856 buffer_put_int(m, ret);
857 buffer_put_cstring(m, name);
858 xfree(name);
859 buffer_put_cstring(m, info);
860 xfree(info);
861 buffer_put_int(m, num);
862 for (i = 0; i < num; ++i) {
863 buffer_put_cstring(m, prompts[i]);
864 xfree(prompts[i]);
865 buffer_put_int(m, echo_on[i]);
866 }
867 if (prompts != NULL)
868 xfree(prompts);
869 if (echo_on != NULL)
870 xfree(echo_on);
8b3ec5fd 871 mm_request_send(sock, MONITOR_ANS_PAM_QUERY, m);
05114c74 872 return (0);
873}
874
875int
8b3ec5fd 876mm_answer_pam_respond(int sock, Buffer *m)
05114c74 877{
878 char **resp;
879 u_int num;
880 int i, ret;
881
882 debug3("%s", __func__);
883 sshpam_authok = NULL;
884 num = buffer_get_int(m);
885 if (num > 0) {
886 resp = xmalloc(num * sizeof(char *));
887 for (i = 0; i < num; ++i)
888 resp[i] = buffer_get_string(m, NULL);
889 ret = (sshpam_device.respond)(sshpam_ctxt, num, resp);
890 for (i = 0; i < num; ++i)
891 xfree(resp[i]);
892 xfree(resp);
893 } else {
894 ret = (sshpam_device.respond)(sshpam_ctxt, num, NULL);
895 }
896 buffer_clear(m);
897 buffer_put_int(m, ret);
8b3ec5fd 898 mm_request_send(sock, MONITOR_ANS_PAM_RESPOND, m);
05114c74 899 auth_method = "keyboard-interactive/pam";
900 if (ret == 0)
901 sshpam_authok = sshpam_ctxt;
902 return (0);
903}
904
905int
8b3ec5fd 906mm_answer_pam_free_ctx(int sock, Buffer *m)
05114c74 907{
908
909 debug3("%s", __func__);
910 (sshpam_device.free_ctx)(sshpam_ctxt);
911 buffer_clear(m);
8b3ec5fd 912 mm_request_send(sock, MONITOR_ANS_PAM_FREE_CTX, m);
05114c74 913 return (sshpam_authok == sshpam_ctxt);
914}
ad200abb 915#endif
916
1853d1ef 917static void
918mm_append_debug(Buffer *m)
919{
920 if (auth_debug_init && buffer_len(&auth_debug)) {
1588c277 921 debug3("%s: Appending debug messages for child", __func__);
1853d1ef 922 buffer_append(m, buffer_ptr(&auth_debug),
923 buffer_len(&auth_debug));
924 buffer_clear(&auth_debug);
925 }
926}
927
928int
ca75d7de 929mm_answer_keyallowed(int sock, Buffer *m)
1853d1ef 930{
931 Key *key;
661e45a0 932 char *cuser, *chost;
933 u_char *blob;
1853d1ef 934 u_int bloblen;
935 enum mm_keytype type = 0;
936 int allowed = 0;
937
1588c277 938 debug3("%s entering", __func__);
1853d1ef 939
940 type = buffer_get_int(m);
941 cuser = buffer_get_string(m, NULL);
942 chost = buffer_get_string(m, NULL);
943 blob = buffer_get_string(m, &bloblen);
944
945 key = key_from_blob(blob, bloblen);
946
947 if ((compat20 && type == MM_RSAHOSTKEY) ||
948 (!compat20 && type != MM_RSAHOSTKEY))
1588c277 949 fatal("%s: key type and protocol mismatch", __func__);
1853d1ef 950
1588c277 951 debug3("%s: key_from_blob: %p", __func__, key);
1853d1ef 952
fdaef11e 953 if (key != NULL && authctxt->valid) {
1853d1ef 954 switch(type) {
955 case MM_USERKEY:
aa586f8e 956 allowed = options.pubkey_authentication &&
957 user_key_allowed(authctxt->pw, key);
1853d1ef 958 break;
959 case MM_HOSTKEY:
aa586f8e 960 allowed = options.hostbased_authentication &&
961 hostbased_key_allowed(authctxt->pw,
1853d1ef 962 cuser, chost, key);
963 break;
964 case MM_RSAHOSTKEY:
965 key->type = KEY_RSA1; /* XXX */
aa586f8e 966 allowed = options.rhosts_rsa_authentication &&
967 auth_rhosts_rsa_key_allowed(authctxt->pw,
1853d1ef 968 cuser, chost, key);
969 break;
970 default:
1588c277 971 fatal("%s: unknown key type %d", __func__, type);
1853d1ef 972 break;
973 }
1853d1ef 974 }
3e2f2431 975 if (key != NULL)
976 key_free(key);
1853d1ef 977
978 /* clear temporarily storage (used by verify) */
979 monitor_reset_key_state();
980
981 if (allowed) {
982 /* Save temporarily for comparison in verify */
983 key_blob = blob;
984 key_bloblen = bloblen;
985 key_blobtype = type;
986 hostbased_cuser = cuser;
987 hostbased_chost = chost;
988 }
989
990 debug3("%s: key %p is %s",
1588c277 991 __func__, key, allowed ? "allowed" : "disallowed");
1853d1ef 992
993 buffer_clear(m);
994 buffer_put_int(m, allowed);
92e15201 995 buffer_put_int(m, forced_command != NULL);
1853d1ef 996
997 mm_append_debug(m);
998
ca75d7de 999 mm_request_send(sock, MONITOR_ANS_KEYALLOWED, m);
1853d1ef 1000
1001 if (type == MM_RSAHOSTKEY)
1002 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1003
1004 return (0);
1005}
1006
1007static int
1008monitor_valid_userblob(u_char *data, u_int datalen)
1009{
1010 Buffer b;
661e45a0 1011 char *p;
1853d1ef 1012 u_int len;
1013 int fail = 0;
1853d1ef 1014
1015 buffer_init(&b);
1016 buffer_append(&b, data, datalen);
1017
1018 if (datafellows & SSH_OLD_SESSIONID) {
521d606b 1019 p = buffer_ptr(&b);
1020 len = buffer_len(&b);
1021 if ((session_id2 == NULL) ||
1022 (len < session_id2_len) ||
1023 (memcmp(p, session_id2, session_id2_len) != 0))
1024 fail++;
1853d1ef 1025 buffer_consume(&b, session_id2_len);
1026 } else {
521d606b 1027 p = buffer_get_string(&b, &len);
1028 if ((session_id2 == NULL) ||
1029 (len != session_id2_len) ||
1030 (memcmp(p, session_id2, session_id2_len) != 0))
1853d1ef 1031 fail++;
521d606b 1032 xfree(p);
1853d1ef 1033 }
1034 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1035 fail++;
1036 p = buffer_get_string(&b, NULL);
1037 if (strcmp(authctxt->user, p) != 0) {
bbe88b6d 1038 logit("wrong user name passed to monitor: expected %s != %.100s",
1853d1ef 1039 authctxt->user, p);
1040 fail++;
1041 }
1042 xfree(p);
1043 buffer_skip_string(&b);
1044 if (datafellows & SSH_BUG_PKAUTH) {
1045 if (!buffer_get_char(&b))
1046 fail++;
1047 } else {
1048 p = buffer_get_string(&b, NULL);
1049 if (strcmp("publickey", p) != 0)
1050 fail++;
1051 xfree(p);
1052 if (!buffer_get_char(&b))
1053 fail++;
1054 buffer_skip_string(&b);
1055 }
1056 buffer_skip_string(&b);
1057 if (buffer_len(&b) != 0)
1058 fail++;
1059 buffer_free(&b);
1060 return (fail == 0);
1061}
1062
1063static int
661e45a0 1064monitor_valid_hostbasedblob(u_char *data, u_int datalen, char *cuser,
1065 char *chost)
1853d1ef 1066{
1067 Buffer b;
661e45a0 1068 char *p;
1853d1ef 1069 u_int len;
1070 int fail = 0;
1853d1ef 1071
1072 buffer_init(&b);
1073 buffer_append(&b, data, datalen);
1074
521d606b 1075 p = buffer_get_string(&b, &len);
1076 if ((session_id2 == NULL) ||
1077 (len != session_id2_len) ||
1078 (memcmp(p, session_id2, session_id2_len) != 0))
1853d1ef 1079 fail++;
521d606b 1080 xfree(p);
1081
1853d1ef 1082 if (buffer_get_char(&b) != SSH2_MSG_USERAUTH_REQUEST)
1083 fail++;
1084 p = buffer_get_string(&b, NULL);
1085 if (strcmp(authctxt->user, p) != 0) {
bbe88b6d 1086 logit("wrong user name passed to monitor: expected %s != %.100s",
1853d1ef 1087 authctxt->user, p);
1088 fail++;
1089 }
1090 xfree(p);
1091 buffer_skip_string(&b); /* service */
1092 p = buffer_get_string(&b, NULL);
1093 if (strcmp(p, "hostbased") != 0)
1094 fail++;
1095 xfree(p);
1096 buffer_skip_string(&b); /* pkalg */
1097 buffer_skip_string(&b); /* pkblob */
1098
1099 /* verify client host, strip trailing dot if necessary */
1100 p = buffer_get_string(&b, NULL);
1101 if (((len = strlen(p)) > 0) && p[len - 1] == '.')
1102 p[len - 1] = '\0';
1103 if (strcmp(p, chost) != 0)
1104 fail++;
1105 xfree(p);
1106
1107 /* verify client user */
1108 p = buffer_get_string(&b, NULL);
1109 if (strcmp(p, cuser) != 0)
1110 fail++;
1111 xfree(p);
1112
1113 if (buffer_len(&b) != 0)
1114 fail++;
1115 buffer_free(&b);
1116 return (fail == 0);
1117}
1118
1119int
ca75d7de 1120mm_answer_keyverify(int sock, Buffer *m)
1853d1ef 1121{
1122 Key *key;
1123 u_char *signature, *data, *blob;
1124 u_int signaturelen, datalen, bloblen;
1125 int verified = 0;
1126 int valid_data = 0;
1127
1128 blob = buffer_get_string(m, &bloblen);
1129 signature = buffer_get_string(m, &signaturelen);
1130 data = buffer_get_string(m, &datalen);
1131
1132 if (hostbased_cuser == NULL || hostbased_chost == NULL ||
300e01c4 1133 !monitor_allowed_key(blob, bloblen))
1588c277 1134 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 1135
1136 key = key_from_blob(blob, bloblen);
1137 if (key == NULL)
1588c277 1138 fatal("%s: bad public key blob", __func__);
1853d1ef 1139
1140 switch (key_blobtype) {
1141 case MM_USERKEY:
1142 valid_data = monitor_valid_userblob(data, datalen);
1143 break;
1144 case MM_HOSTKEY:
1145 valid_data = monitor_valid_hostbasedblob(data, datalen,
1146 hostbased_cuser, hostbased_chost);
1147 break;
1148 default:
1149 valid_data = 0;
1150 break;
1151 }
1152 if (!valid_data)
1588c277 1153 fatal("%s: bad signature data blob", __func__);
1853d1ef 1154
1155 verified = key_verify(key, signature, signaturelen, data, datalen);
1156 debug3("%s: key %p signature %s",
1588c277 1157 __func__, key, verified ? "verified" : "unverified");
1853d1ef 1158
1159 key_free(key);
1160 xfree(blob);
1161 xfree(signature);
1162 xfree(data);
1163
d17ef027 1164 auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased";
1165
1853d1ef 1166 monitor_reset_key_state();
1167
1168 buffer_clear(m);
1169 buffer_put_int(m, verified);
ca75d7de 1170 mm_request_send(sock, MONITOR_ANS_KEYVERIFY, m);
1853d1ef 1171
1853d1ef 1172 return (verified);
1173}
1174
1175static void
1176mm_record_login(Session *s, struct passwd *pw)
1177{
1178 socklen_t fromlen;
1179 struct sockaddr_storage from;
1180
1181 /*
1182 * Get IP address of client. If the connection is not a socket, let
1183 * the address be 0.0.0.0.
1184 */
1185 memset(&from, 0, sizeof(from));
ba1566dd 1186 fromlen = sizeof(from);
1853d1ef 1187 if (packet_connection_is_on_socket()) {
1853d1ef 1188 if (getpeername(packet_get_connection_in(),
1189 (struct sockaddr *) & from, &fromlen) < 0) {
1190 debug("getpeername: %.100s", strerror(errno));
2362db19 1191 cleanup_exit(255);
1853d1ef 1192 }
1193 }
1194 /* Record that there was a login on that tty from the remote host. */
1195 record_login(s->pid, s->tty, pw->pw_name, pw->pw_uid,
c5a7d788 1196 get_remote_name_or_ip(utmp_len, options.use_dns),
ba1566dd 1197 (struct sockaddr *)&from, fromlen);
1853d1ef 1198}
1199
1200static void
1201mm_session_close(Session *s)
1202{
b9ed513a 1203 debug3("%s: session %d pid %ld", __func__, s->self, (long)s->pid);
1853d1ef 1204 if (s->ttyfd != -1) {
1588c277 1205 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ptyfd);
1853d1ef 1206 session_pty_cleanup2(s);
1207 }
1208 s->used = 0;
1209}
1210
1211int
ca75d7de 1212mm_answer_pty(int sock, Buffer *m)
1853d1ef 1213{
b5a28cbc 1214 extern struct monitor *pmonitor;
1853d1ef 1215 Session *s;
1216 int res, fd0;
1217
1588c277 1218 debug3("%s entering", __func__);
1853d1ef 1219
1220 buffer_clear(m);
1221 s = session_new();
1222 if (s == NULL)
1223 goto error;
1224 s->authctxt = authctxt;
1225 s->pw = authctxt->pw;
b5a28cbc 1226 s->pid = pmonitor->m_pid;
1853d1ef 1227 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1228 if (res == 0)
1229 goto error;
1853d1ef 1230 pty_setowner(authctxt->pw, s->tty);
1231
1232 buffer_put_int(m, 1);
1233 buffer_put_cstring(m, s->tty);
1853d1ef 1234
1235 /* We need to trick ttyslot */
1236 if (dup2(s->ttyfd, 0) == -1)
1588c277 1237 fatal("%s: dup2", __func__);
1853d1ef 1238
1239 mm_record_login(s, authctxt->pw);
1240
1241 /* Now we can close the file descriptor again */
1242 close(0);
1243
be2ca0c9 1244 /* send messages generated by record_login */
1245 buffer_put_string(m, buffer_ptr(&loginmsg), buffer_len(&loginmsg));
1246 buffer_clear(&loginmsg);
1247
1248 mm_request_send(sock, MONITOR_ANS_PTY, m);
1249
1250 mm_send_fd(sock, s->ptyfd);
1251 mm_send_fd(sock, s->ttyfd);
1252
1853d1ef 1253 /* make sure nothing uses fd 0 */
1254 if ((fd0 = open(_PATH_DEVNULL, O_RDONLY)) < 0)
1588c277 1255 fatal("%s: open(/dev/null): %s", __func__, strerror(errno));
1853d1ef 1256 if (fd0 != 0)
1588c277 1257 error("%s: fd0 %d != 0", __func__, fd0);
1853d1ef 1258
1259 /* slave is not needed */
1260 close(s->ttyfd);
1261 s->ttyfd = s->ptyfd;
1262 /* no need to dup() because nobody closes ptyfd */
1263 s->ptymaster = s->ptyfd;
1264
1588c277 1265 debug3("%s: tty %s ptyfd %d", __func__, s->tty, s->ttyfd);
1853d1ef 1266
1267 return (0);
1268
1269 error:
1270 if (s != NULL)
1271 mm_session_close(s);
1272 buffer_put_int(m, 0);
ca75d7de 1273 mm_request_send(sock, MONITOR_ANS_PTY, m);
1853d1ef 1274 return (0);
1275}
1276
1277int
ca75d7de 1278mm_answer_pty_cleanup(int sock, Buffer *m)
1853d1ef 1279{
1280 Session *s;
1281 char *tty;
1282
1588c277 1283 debug3("%s entering", __func__);
1853d1ef 1284
1285 tty = buffer_get_string(m, NULL);
1286 if ((s = session_by_tty(tty)) != NULL)
1287 mm_session_close(s);
1288 buffer_clear(m);
1289 xfree(tty);
1290 return (0);
1291}
1292
1293int
ca75d7de 1294mm_answer_sesskey(int sock, Buffer *m)
1853d1ef 1295{
1296 BIGNUM *p;
1297 int rsafail;
1298
1299 /* Turn off permissions */
1300 monitor_permit(mon_dispatch, MONITOR_REQ_SESSKEY, 1);
1301
1302 if ((p = BN_new()) == NULL)
1588c277 1303 fatal("%s: BN_new", __func__);
1853d1ef 1304
1305 buffer_get_bignum2(m, p);
1306
1307 rsafail = ssh1_session_key(p);
1308
1309 buffer_clear(m);
1310 buffer_put_int(m, rsafail);
1311 buffer_put_bignum2(m, p);
1312
1313 BN_clear_free(p);
1314
ca75d7de 1315 mm_request_send(sock, MONITOR_ANS_SESSKEY, m);
1853d1ef 1316
1317 /* Turn on permissions for sessid passing */
1318 monitor_permit(mon_dispatch, MONITOR_REQ_SESSID, 1);
1319
1320 return (0);
1321}
1322
1323int
ca75d7de 1324mm_answer_sessid(int sock, Buffer *m)
1853d1ef 1325{
1326 int i;
1327
1588c277 1328 debug3("%s entering", __func__);
1853d1ef 1329
1330 if (buffer_len(m) != 16)
1588c277 1331 fatal("%s: bad ssh1 session id", __func__);
1853d1ef 1332 for (i = 0; i < 16; i++)
1333 session_id[i] = buffer_get_char(m);
1334
1335 /* Turn on permissions for getpwnam */
1336 monitor_permit(mon_dispatch, MONITOR_REQ_PWNAM, 1);
1337
1338 return (0);
1339}
1340
1341int
ca75d7de 1342mm_answer_rsa_keyallowed(int sock, Buffer *m)
1853d1ef 1343{
1344 BIGNUM *client_n;
1345 Key *key = NULL;
1346 u_char *blob = NULL;
1347 u_int blen = 0;
1348 int allowed = 0;
1349
1588c277 1350 debug3("%s entering", __func__);
1853d1ef 1351
aa586f8e 1352 if (options.rsa_authentication && authctxt->valid) {
1853d1ef 1353 if ((client_n = BN_new()) == NULL)
1588c277 1354 fatal("%s: BN_new", __func__);
1853d1ef 1355 buffer_get_bignum2(m, client_n);
1356 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key);
1357 BN_clear_free(client_n);
1358 }
1359 buffer_clear(m);
1360 buffer_put_int(m, allowed);
92e15201 1361 buffer_put_int(m, forced_command != NULL);
1853d1ef 1362
1363 /* clear temporarily storage (used by generate challenge) */
1364 monitor_reset_key_state();
1365
1366 if (allowed && key != NULL) {
1367 key->type = KEY_RSA; /* cheat for key_to_blob */
1368 if (key_to_blob(key, &blob, &blen) == 0)
1588c277 1369 fatal("%s: key_to_blob failed", __func__);
1853d1ef 1370 buffer_put_string(m, blob, blen);
1371
1372 /* Save temporarily for comparison in verify */
1373 key_blob = blob;
1374 key_bloblen = blen;
1375 key_blobtype = MM_RSAUSERKEY;
1853d1ef 1376 }
3e2f2431 1377 if (key != NULL)
1378 key_free(key);
1853d1ef 1379
1380 mm_append_debug(m);
1381
ca75d7de 1382 mm_request_send(sock, MONITOR_ANS_RSAKEYALLOWED, m);
1853d1ef 1383
1384 monitor_permit(mon_dispatch, MONITOR_REQ_RSACHALLENGE, allowed);
1385 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 0);
1386 return (0);
1387}
1388
1389int
ca75d7de 1390mm_answer_rsa_challenge(int sock, Buffer *m)
1853d1ef 1391{
1392 Key *key = NULL;
1393 u_char *blob;
1394 u_int blen;
1395
1588c277 1396 debug3("%s entering", __func__);
1853d1ef 1397
1398 if (!authctxt->valid)
1588c277 1399 fatal("%s: authctxt not valid", __func__);
1853d1ef 1400 blob = buffer_get_string(m, &blen);
1401 if (!monitor_allowed_key(blob, blen))
1588c277 1402 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 1403 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1588c277 1404 fatal("%s: key type mismatch", __func__);
1853d1ef 1405 if ((key = key_from_blob(blob, blen)) == NULL)
1588c277 1406 fatal("%s: received bad key", __func__);
1853d1ef 1407
1408 if (ssh1_challenge)
1409 BN_clear_free(ssh1_challenge);
1410 ssh1_challenge = auth_rsa_generate_challenge(key);
1411
1412 buffer_clear(m);
1413 buffer_put_bignum2(m, ssh1_challenge);
1414
1588c277 1415 debug3("%s sending reply", __func__);
ca75d7de 1416 mm_request_send(sock, MONITOR_ANS_RSACHALLENGE, m);
1853d1ef 1417
1418 monitor_permit(mon_dispatch, MONITOR_REQ_RSARESPONSE, 1);
3e2f2431 1419
1420 xfree(blob);
1421 key_free(key);
1853d1ef 1422 return (0);
1423}
1424
1425int
ca75d7de 1426mm_answer_rsa_response(int sock, Buffer *m)
1853d1ef 1427{
1428 Key *key = NULL;
1429 u_char *blob, *response;
1430 u_int blen, len;
1431 int success;
1432
1588c277 1433 debug3("%s entering", __func__);
1853d1ef 1434
1435 if (!authctxt->valid)
1588c277 1436 fatal("%s: authctxt not valid", __func__);
1853d1ef 1437 if (ssh1_challenge == NULL)
1588c277 1438 fatal("%s: no ssh1_challenge", __func__);
1853d1ef 1439
1440 blob = buffer_get_string(m, &blen);
1441 if (!monitor_allowed_key(blob, blen))
1588c277 1442 fatal("%s: bad key, not previously allowed", __func__);
1853d1ef 1443 if (key_blobtype != MM_RSAUSERKEY && key_blobtype != MM_RSAHOSTKEY)
1588c277 1444 fatal("%s: key type mismatch: %d", __func__, key_blobtype);
1853d1ef 1445 if ((key = key_from_blob(blob, blen)) == NULL)
1588c277 1446 fatal("%s: received bad key", __func__);
1853d1ef 1447 response = buffer_get_string(m, &len);
1448 if (len != 16)
1588c277 1449 fatal("%s: received bad response to challenge", __func__);
1853d1ef 1450 success = auth_rsa_verify_response(key, ssh1_challenge, response);
1451
3e2f2431 1452 xfree(blob);
1853d1ef 1453 key_free(key);
1454 xfree(response);
1455
1456 auth_method = key_blobtype == MM_RSAUSERKEY ? "rsa" : "rhosts-rsa";
1457
1458 /* reset state */
1459 BN_clear_free(ssh1_challenge);
1460 ssh1_challenge = NULL;
1461 monitor_reset_key_state();
1462
1463 buffer_clear(m);
1464 buffer_put_int(m, success);
ca75d7de 1465 mm_request_send(sock, MONITOR_ANS_RSARESPONSE, m);
1853d1ef 1466
1467 return (success);
1468}
1469
1470int
ca75d7de 1471mm_answer_term(int sock, Buffer *req)
1853d1ef 1472{
b5a28cbc 1473 extern struct monitor *pmonitor;
1853d1ef 1474 int res, status;
1475
1588c277 1476 debug3("%s: tearing down sessions", __func__);
1853d1ef 1477
1478 /* The child is terminating */
1479 session_destroy_all(&mm_session_close);
1480
b5a28cbc 1481 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
8c38e88b 1482 if (errno != EINTR)
1483 exit(1);
1853d1ef 1484
1485 res = WIFEXITED(status) ? WEXITSTATUS(status) : 1;
1486
1487 /* Terminate process */
f6be21a0 1488 exit(res);
1853d1ef 1489}
1490
1491void
b5a28cbc 1492monitor_apply_keystate(struct monitor *pmonitor)
1853d1ef 1493{
1494 if (compat20) {
1495 set_newkeys(MODE_IN);
1496 set_newkeys(MODE_OUT);
1497 } else {
1853d1ef 1498 packet_set_protocol_flags(child_state.ssh1protoflags);
9459414c 1499 packet_set_encryption_key(child_state.ssh1key,
1500 child_state.ssh1keylen, child_state.ssh1cipher);
1501 xfree(child_state.ssh1key);
1853d1ef 1502 }
1503
9459414c 1504 /* for rc4 and other stateful ciphers */
1853d1ef 1505 packet_set_keycontext(MODE_OUT, child_state.keyout);
1506 xfree(child_state.keyout);
1507 packet_set_keycontext(MODE_IN, child_state.keyin);
1508 xfree(child_state.keyin);
1509
1510 if (!compat20) {
1511 packet_set_iv(MODE_OUT, child_state.ivout);
1512 xfree(child_state.ivout);
1513 packet_set_iv(MODE_IN, child_state.ivin);
1514 xfree(child_state.ivin);
1515 }
1516
1517 memcpy(&incoming_stream, &child_state.incoming,
1518 sizeof(incoming_stream));
1519 memcpy(&outgoing_stream, &child_state.outgoing,
1520 sizeof(outgoing_stream));
1521
1522 /* Update with new address */
0496cf34 1523 if (options.compression)
1524 mm_init_compression(pmonitor->m_zlib);
1853d1ef 1525
1526 /* Network I/O buffers */
1527 /* XXX inefficient for large buffers, need: buffer_init_from_string */
1528 buffer_clear(&input);
1529 buffer_append(&input, child_state.input, child_state.ilen);
1530 memset(child_state.input, 0, child_state.ilen);
1531 xfree(child_state.input);
1532
1533 buffer_clear(&output);
1534 buffer_append(&output, child_state.output, child_state.olen);
1535 memset(child_state.output, 0, child_state.olen);
1536 xfree(child_state.output);
1537}
1538
1539static Kex *
1540mm_get_kex(Buffer *m)
1541{
1542 Kex *kex;
1543 void *blob;
1544 u_int bloblen;
1545
1546 kex = xmalloc(sizeof(*kex));
1547 memset(kex, 0, sizeof(*kex));
1548 kex->session_id = buffer_get_string(m, &kex->session_id_len);
521d606b 1549 if ((session_id2 == NULL) ||
1550 (kex->session_id_len != session_id2_len) ||
1551 (memcmp(kex->session_id, session_id2, session_id2_len) != 0))
1552 fatal("mm_get_get: internal error: bad session id");
1853d1ef 1553 kex->we_need = buffer_get_int(m);
cdb64c4d 1554 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
41e5bd9a 1555 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
cdb64c4d 1556 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1853d1ef 1557 kex->server = 1;
1558 kex->hostkey_type = buffer_get_int(m);
1559 kex->kex_type = buffer_get_int(m);
1560 blob = buffer_get_string(m, &bloblen);
1561 buffer_init(&kex->my);
1562 buffer_append(&kex->my, blob, bloblen);
1563 xfree(blob);
1564 blob = buffer_get_string(m, &bloblen);
1565 buffer_init(&kex->peer);
1566 buffer_append(&kex->peer, blob, bloblen);
1567 xfree(blob);
1568 kex->done = 1;
1569 kex->flags = buffer_get_int(m);
1570 kex->client_version_string = buffer_get_string(m, NULL);
1571 kex->server_version_string = buffer_get_string(m, NULL);
1572 kex->load_host_key=&get_hostkey_by_type;
1573 kex->host_key_index=&get_hostkey_index;
1574
1575 return (kex);
1576}
1577
1578/* This function requries careful sanity checking */
1579
1580void
b5a28cbc 1581mm_get_keystate(struct monitor *pmonitor)
1853d1ef 1582{
1583 Buffer m;
1584 u_char *blob, *p;
1585 u_int bloblen, plen;
ffd7b36b 1586 u_int32_t seqnr, packets;
1587 u_int64_t blocks;
1853d1ef 1588
1588c277 1589 debug3("%s: Waiting for new keys", __func__);
1853d1ef 1590
1591 buffer_init(&m);
b5a28cbc 1592 mm_request_receive_expect(pmonitor->m_sendfd, MONITOR_REQ_KEYEXPORT, &m);
1853d1ef 1593 if (!compat20) {
1594 child_state.ssh1protoflags = buffer_get_int(&m);
1595 child_state.ssh1cipher = buffer_get_int(&m);
9459414c 1596 child_state.ssh1key = buffer_get_string(&m,
1597 &child_state.ssh1keylen);
1853d1ef 1598 child_state.ivout = buffer_get_string(&m,
1599 &child_state.ivoutlen);
1600 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1601 goto skip;
1602 } else {
1603 /* Get the Kex for rekeying */
b5a28cbc 1604 *pmonitor->m_pkex = mm_get_kex(&m);
1853d1ef 1605 }
1606
1607 blob = buffer_get_string(&m, &bloblen);
1608 current_keys[MODE_OUT] = mm_newkeys_from_blob(blob, bloblen);
1609 xfree(blob);
1610
1588c277 1611 debug3("%s: Waiting for second key", __func__);
1853d1ef 1612 blob = buffer_get_string(&m, &bloblen);
1613 current_keys[MODE_IN] = mm_newkeys_from_blob(blob, bloblen);
1614 xfree(blob);
1615
1616 /* Now get sequence numbers for the packets */
ffd7b36b 1617 seqnr = buffer_get_int(&m);
1618 blocks = buffer_get_int64(&m);
1619 packets = buffer_get_int(&m);
1620 packet_set_state(MODE_OUT, seqnr, blocks, packets);
1621 seqnr = buffer_get_int(&m);
1622 blocks = buffer_get_int64(&m);
1623 packets = buffer_get_int(&m);
1624 packet_set_state(MODE_IN, seqnr, blocks, packets);
1853d1ef 1625
1626 skip:
1627 /* Get the key context */
1628 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1629 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1630
1588c277 1631 debug3("%s: Getting compression state", __func__);
1853d1ef 1632 /* Get compression state */
1633 p = buffer_get_string(&m, &plen);
1634 if (plen != sizeof(child_state.outgoing))
1588c277 1635 fatal("%s: bad request size", __func__);
1853d1ef 1636 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1637 xfree(p);
1638
1639 p = buffer_get_string(&m, &plen);
1640 if (plen != sizeof(child_state.incoming))
1588c277 1641 fatal("%s: bad request size", __func__);
1853d1ef 1642 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1643 xfree(p);
1644
1645 /* Network I/O buffers */
1588c277 1646 debug3("%s: Getting Network I/O buffers", __func__);
1853d1ef 1647 child_state.input = buffer_get_string(&m, &child_state.ilen);
1648 child_state.output = buffer_get_string(&m, &child_state.olen);
1649
1650 buffer_free(&m);
1651}
1652
1653
1654/* Allocation functions for zlib */
1655void *
1656mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
1657{
39e71188 1658 size_t len = (size_t) size * ncount;
1853d1ef 1659 void *address;
1660
b85698ab 1661 if (len == 0 || ncount > SIZE_T_MAX / size)
2f095a0e 1662 fatal("%s: mm_zalloc(%u, %u)", __func__, ncount, size);
1663
1664 address = mm_malloc(mm, len);
1853d1ef 1665
1666 return (address);
1667}
1668
1669void
1670mm_zfree(struct mm_master *mm, void *address)
1671{
1672 mm_free(mm, address);
1673}
1674
1675void
1676mm_init_compression(struct mm_master *mm)
1677{
1678 outgoing_stream.zalloc = (alloc_func)mm_zalloc;
1679 outgoing_stream.zfree = (free_func)mm_zfree;
1680 outgoing_stream.opaque = mm;
1681
1682 incoming_stream.zalloc = (alloc_func)mm_zalloc;
1683 incoming_stream.zfree = (free_func)mm_zfree;
1684 incoming_stream.opaque = mm;
1685}
1686
1687/* XXX */
1688
1689#define FD_CLOSEONEXEC(x) do { \
1690 if (fcntl(x, F_SETFD, 1) == -1) \
1691 fatal("fcntl(%d, F_SETFD)", x); \
1692} while (0)
1693
1694static void
1695monitor_socketpair(int *pair)
1696{
f1af2dbf 1697#ifdef HAVE_SOCKETPAIR
1853d1ef 1698 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
1588c277 1699 fatal("%s: socketpair", __func__);
f1af2dbf 1700#else
1701 fatal("%s: UsePrivilegeSeparation=yes not supported",
1588c277 1702 __func__);
f1af2dbf 1703#endif
1853d1ef 1704 FD_CLOSEONEXEC(pair[0]);
1705 FD_CLOSEONEXEC(pair[1]);
1706}
1707
1708#define MM_MEMSIZE 65536
1709
1710struct monitor *
1711monitor_init(void)
1712{
1713 struct monitor *mon;
1714 int pair[2];
1715
1716 mon = xmalloc(sizeof(*mon));
1717
a9b33b95 1718 mon->m_pid = 0;
1853d1ef 1719 monitor_socketpair(pair);
1720
1721 mon->m_recvfd = pair[0];
1722 mon->m_sendfd = pair[1];
1723
1724 /* Used to share zlib space across processes */
0496cf34 1725 if (options.compression) {
1726 mon->m_zback = mm_create(NULL, MM_MEMSIZE);
1727 mon->m_zlib = mm_create(mon->m_zback, 20 * MM_MEMSIZE);
1853d1ef 1728
0496cf34 1729 /* Compression needs to share state across borders */
1730 mm_init_compression(mon->m_zlib);
1731 }
1853d1ef 1732
1733 return mon;
1734}
1735
1736void
1737monitor_reinit(struct monitor *mon)
1738{
1739 int pair[2];
1740
1741 monitor_socketpair(pair);
1742
1743 mon->m_recvfd = pair[0];
1744 mon->m_sendfd = pair[1];
1745}
7364bd04 1746
1747#ifdef GSSAPI
1748int
ca75d7de 1749mm_answer_gss_setup_ctx(int sock, Buffer *m)
7364bd04 1750{
ca75d7de 1751 gss_OID_desc goid;
7364bd04 1752 OM_uint32 major;
1753 u_int len;
1754
ca75d7de 1755 goid.elements = buffer_get_string(m, &len);
1756 goid.length = len;
7364bd04 1757
ca75d7de 1758 major = ssh_gssapi_server_ctx(&gsscontext, &goid);
7364bd04 1759
ca75d7de 1760 xfree(goid.elements);
7364bd04 1761
1762 buffer_clear(m);
1763 buffer_put_int(m, major);
1764
ca75d7de 1765 mm_request_send(sock,MONITOR_ANS_GSSSETUP, m);
7364bd04 1766
1767 /* Now we have a context, enable the step */
1768 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 1);
1769
1770 return (0);
1771}
1772
1773int
ca75d7de 1774mm_answer_gss_accept_ctx(int sock, Buffer *m)
7364bd04 1775{
1776 gss_buffer_desc in;
1777 gss_buffer_desc out = GSS_C_EMPTY_BUFFER;
1778 OM_uint32 major,minor;
1779 OM_uint32 flags = 0; /* GSI needs this */
f99e1ca4 1780 u_int len;
7364bd04 1781
f99e1ca4 1782 in.value = buffer_get_string(m, &len);
1783 in.length = len;
7364bd04 1784 major = ssh_gssapi_accept_ctx(gsscontext, &in, &out, &flags);
1785 xfree(in.value);
1786
1787 buffer_clear(m);
1788 buffer_put_int(m, major);
1789 buffer_put_string(m, out.value, out.length);
1790 buffer_put_int(m, flags);
ca75d7de 1791 mm_request_send(sock, MONITOR_ANS_GSSSTEP, m);
7364bd04 1792
1793 gss_release_buffer(&minor, &out);
1794
7364bd04 1795 if (major==GSS_S_COMPLETE) {
1796 monitor_permit(mon_dispatch, MONITOR_REQ_GSSSTEP, 0);
1797 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
0789992b 1798 monitor_permit(mon_dispatch, MONITOR_REQ_GSSCHECKMIC, 1);
7364bd04 1799 }
1800 return (0);
1801}
1802
0789992b 1803int
ca75d7de 1804mm_answer_gss_checkmic(int sock, Buffer *m)
0789992b 1805{
1806 gss_buffer_desc gssbuf, mic;
1807 OM_uint32 ret;
1808 u_int len;
b6453d99 1809
0789992b 1810 gssbuf.value = buffer_get_string(m, &len);
1811 gssbuf.length = len;
1812 mic.value = buffer_get_string(m, &len);
1813 mic.length = len;
b6453d99 1814
0789992b 1815 ret = ssh_gssapi_checkmic(gsscontext, &gssbuf, &mic);
b6453d99 1816
0789992b 1817 xfree(gssbuf.value);
1818 xfree(mic.value);
b6453d99 1819
0789992b 1820 buffer_clear(m);
1821 buffer_put_int(m, ret);
b6453d99 1822
ca75d7de 1823 mm_request_send(sock, MONITOR_ANS_GSSCHECKMIC, m);
b6453d99 1824
0789992b 1825 if (!GSS_ERROR(ret))
1826 monitor_permit(mon_dispatch, MONITOR_REQ_GSSUSEROK, 1);
b6453d99 1827
0789992b 1828 return (0);
1829}
1830
7364bd04 1831int
ca75d7de 1832mm_answer_gss_userok(int sock, Buffer *m)
7364bd04 1833{
1834 int authenticated;
1835
1836 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
1837
1838 buffer_clear(m);
1839 buffer_put_int(m, authenticated);
1840
1841 debug3("%s: sending result %d", __func__, authenticated);
ca75d7de 1842 mm_request_send(sock, MONITOR_ANS_GSSUSEROK, m);
7364bd04 1843
0789992b 1844 auth_method="gssapi-with-mic";
7364bd04 1845
1846 /* Monitor loop will terminate if authenticated */
1847 return (authenticated);
1848}
1849#endif /* GSSAPI */
This page took 0.411511 seconds and 5 git commands to generate.