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