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