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