1 /* $OpenBSD: session.c,v 1.333 2023/01/06 02:42:34 djm Exp $ */ 2 /* 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * All rights reserved 5 * 6 * As far as I am concerned, the code I have written for this software 7 * can be used freely for any purpose. Any derived versions of this 8 * software must be clearly marked as such, and if the derived work is 9 * incompatible with the protocol description in the RFC file, it must be 10 * called by a name other than "ssh" or "Secure Shell". 11 * 12 * SSH2 support by Markus Friedl. 13 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 14 * 15 * Redistribution and use in source and binary forms, with or without 16 * modification, are permitted provided that the following conditions 17 * are met: 18 * 1. Redistributions of source code must retain the above copyright 19 * notice, this list of conditions and the following disclaimer. 20 * 2. Redistributions in binary form must reproduce the above copyright 21 * notice, this list of conditions and the following disclaimer in the 22 * documentation and/or other materials provided with the distribution. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34 */ 35 36 #include "includes.h" 37 38 #include <sys/types.h> 39 #ifdef HAVE_SYS_STAT_H 40 # include <sys/stat.h> 41 #endif 42 #include <sys/socket.h> 43 #include <sys/un.h> 44 #include <sys/wait.h> 45 46 #include <arpa/inet.h> 47 48 #include <ctype.h> 49 #include <errno.h> 50 #include <fcntl.h> 51 #include <grp.h> 52 #include <netdb.h> 53 #ifdef HAVE_PATHS_H 54 #include <paths.h> 55 #endif 56 #include <pwd.h> 57 #include <signal.h> 58 #include <stdio.h> 59 #include <stdlib.h> 60 #include <string.h> 61 #include <stdarg.h> 62 #include <unistd.h> 63 #include <limits.h> 64 65 #include "openbsd-compat/sys-queue.h" 66 #include "xmalloc.h" 67 #include "ssh.h" 68 #include "ssh2.h" 69 #include "sshpty.h" 70 #include "packet.h" 71 #include "sshbuf.h" 72 #include "ssherr.h" 73 #include "match.h" 74 #include "uidswap.h" 75 #include "compat.h" 76 #include "channels.h" 77 #include "sshkey.h" 78 #include "cipher.h" 79 #ifdef GSSAPI 80 #include "ssh-gss.h" 81 #endif 82 #include "hostfile.h" 83 #include "auth.h" 84 #include "auth-options.h" 85 #include "authfd.h" 86 #include "pathnames.h" 87 #include "log.h" 88 #include "misc.h" 89 #include "servconf.h" 90 #include "sshlogin.h" 91 #include "serverloop.h" 92 #include "canohost.h" 93 #include "session.h" 94 #include "kex.h" 95 #include "monitor_wrap.h" 96 #include "sftp.h" 97 #include "atomicio.h" 98 99 #if defined(KRB5) && defined(USE_AFS) 100 #include <kafs.h> 101 #endif 102 103 #ifdef WITH_SELINUX 104 #include <selinux/selinux.h> 105 #endif 106 107 #define IS_INTERNAL_SFTP(c) \ 108 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \ 109 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \ 110 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \ 111 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t')) 112 113 /* func */ 114 115 Session *session_new(void); 116 void session_set_fds(struct ssh *, Session *, int, int, int, int, int); 117 void session_pty_cleanup(Session *); 118 void session_proctitle(Session *); 119 int session_setup_x11fwd(struct ssh *, Session *); 120 int do_exec_pty(struct ssh *, Session *, const char *); 121 int do_exec_no_pty(struct ssh *, Session *, const char *); 122 int do_exec(struct ssh *, Session *, const char *); 123 void do_login(struct ssh *, Session *, const char *); 124 void do_child(struct ssh *, Session *, const char *); 125 void do_motd(void); 126 int check_quietlogin(Session *, const char *); 127 128 static void do_authenticated2(struct ssh *, Authctxt *); 129 130 static int session_pty_req(struct ssh *, Session *); 131 132 /* import */ 133 extern ServerOptions options; 134 extern char *__progname; 135 extern int debug_flag; 136 extern u_int utmp_len; 137 extern int startup_pipe; 138 extern void destroy_sensitive_data(void); 139 extern struct sshbuf *loginmsg; 140 extern struct sshauthopt *auth_opts; 141 extern char *tun_fwd_ifnames; /* serverloop.c */ 142 143 /* original command from peer. */ 144 const char *original_command = NULL; 145 146 /* data */ 147 static int sessions_first_unused = -1; 148 static int sessions_nalloc = 0; 149 static Session *sessions = NULL; 150 151 #define SUBSYSTEM_NONE 0 152 #define SUBSYSTEM_EXT 1 153 #define SUBSYSTEM_INT_SFTP 2 154 #define SUBSYSTEM_INT_SFTP_ERROR 3 155 156 #ifdef HAVE_LOGIN_CAP 157 login_cap_t *lc; 158 #endif 159 160 static int is_child = 0; 161 static int in_chroot = 0; 162 163 /* File containing userauth info, if ExposeAuthInfo set */ 164 static char *auth_info_file = NULL; 165 166 /* Name and directory of socket for authentication agent forwarding. */ 167 static char *auth_sock_name = NULL; 168 static char *auth_sock_dir = NULL; 169 170 /* removes the agent forwarding socket */ 171 172 static void 173 auth_sock_cleanup_proc(struct passwd *pw) 174 { 175 if (auth_sock_name != NULL) { 176 temporarily_use_uid(pw); 177 unlink(auth_sock_name); 178 rmdir(auth_sock_dir); 179 auth_sock_name = NULL; 180 restore_uid(); 181 } 182 } 183 184 static int 185 auth_input_request_forwarding(struct ssh *ssh, struct passwd * pw) 186 { 187 Channel *nc; 188 int sock = -1; 189 190 if (auth_sock_name != NULL) { 191 error("authentication forwarding requested twice."); 192 return 0; 193 } 194 195 /* Temporarily drop privileged uid for mkdir/bind. */ 196 temporarily_use_uid(pw); 197 198 /* Allocate a buffer for the socket name, and format the name. */ 199 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX"); 200 201 /* Create private directory for socket */ 202 if (mkdtemp(auth_sock_dir) == NULL) { 203 ssh_packet_send_debug(ssh, "Agent forwarding disabled: " 204 "mkdtemp() failed: %.100s", strerror(errno)); 205 restore_uid(); 206 free(auth_sock_dir); 207 auth_sock_dir = NULL; 208 goto authsock_err; 209 } 210 211 xasprintf(&auth_sock_name, "%s/agent.%ld", 212 auth_sock_dir, (long) getpid()); 213 214 /* Start a Unix listener on auth_sock_name. */ 215 sock = unix_listener(auth_sock_name, SSH_LISTEN_BACKLOG, 0); 216 217 /* Restore the privileged uid. */ 218 restore_uid(); 219 220 /* Check for socket/bind/listen failure. */ 221 if (sock < 0) 222 goto authsock_err; 223 224 /* Allocate a channel for the authentication agent socket. */ 225 nc = channel_new(ssh, "auth-listener", 226 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1, 227 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 228 0, "auth socket", 1); 229 nc->path = xstrdup(auth_sock_name); 230 return 1; 231 232 authsock_err: 233 free(auth_sock_name); 234 if (auth_sock_dir != NULL) { 235 temporarily_use_uid(pw); 236 rmdir(auth_sock_dir); 237 restore_uid(); 238 free(auth_sock_dir); 239 } 240 if (sock != -1) 241 close(sock); 242 auth_sock_name = NULL; 243 auth_sock_dir = NULL; 244 return 0; 245 } 246 247 static void 248 display_loginmsg(void) 249 { 250 int r; 251 252 if (sshbuf_len(loginmsg) == 0) 253 return; 254 if ((r = sshbuf_put_u8(loginmsg, 0)) != 0) 255 fatal_fr(r, "sshbuf_put_u8"); 256 printf("%s", (char *)sshbuf_ptr(loginmsg)); 257 sshbuf_reset(loginmsg); 258 } 259 260 static void 261 prepare_auth_info_file(struct passwd *pw, struct sshbuf *info) 262 { 263 int fd = -1, success = 0; 264 265 if (!options.expose_userauth_info || info == NULL) 266 return; 267 268 temporarily_use_uid(pw); 269 auth_info_file = xstrdup("/tmp/sshauth.XXXXXXXXXXXXXXX"); 270 if ((fd = mkstemp(auth_info_file)) == -1) { 271 error_f("mkstemp: %s", strerror(errno)); 272 goto out; 273 } 274 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(info), 275 sshbuf_len(info)) != sshbuf_len(info)) { 276 error_f("write: %s", strerror(errno)); 277 goto out; 278 } 279 if (close(fd) != 0) { 280 error_f("close: %s", strerror(errno)); 281 goto out; 282 } 283 success = 1; 284 out: 285 if (!success) { 286 if (fd != -1) 287 close(fd); 288 free(auth_info_file); 289 auth_info_file = NULL; 290 } 291 restore_uid(); 292 } 293 294 static void 295 set_fwdpermit_from_authopts(struct ssh *ssh, const struct sshauthopt *opts) 296 { 297 char *tmp, *cp, *host; 298 int port; 299 size_t i; 300 301 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0) { 302 channel_clear_permission(ssh, FORWARD_USER, FORWARD_LOCAL); 303 for (i = 0; i < auth_opts->npermitopen; i++) { 304 tmp = cp = xstrdup(auth_opts->permitopen[i]); 305 /* This shouldn't fail as it has already been checked */ 306 if ((host = hpdelim2(&cp, NULL)) == NULL) 307 fatal_f("internal error: hpdelim"); 308 host = cleanhostname(host); 309 if (cp == NULL || (port = permitopen_port(cp)) < 0) 310 fatal_f("internal error: permitopen port"); 311 channel_add_permission(ssh, 312 FORWARD_USER, FORWARD_LOCAL, host, port); 313 free(tmp); 314 } 315 } 316 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) != 0) { 317 channel_clear_permission(ssh, FORWARD_USER, FORWARD_REMOTE); 318 for (i = 0; i < auth_opts->npermitlisten; i++) { 319 tmp = cp = xstrdup(auth_opts->permitlisten[i]); 320 /* This shouldn't fail as it has already been checked */ 321 if ((host = hpdelim(&cp)) == NULL) 322 fatal_f("internal error: hpdelim"); 323 host = cleanhostname(host); 324 if (cp == NULL || (port = permitopen_port(cp)) < 0) 325 fatal_f("internal error: permitlisten port"); 326 channel_add_permission(ssh, 327 FORWARD_USER, FORWARD_REMOTE, host, port); 328 free(tmp); 329 } 330 } 331 } 332 333 void 334 do_authenticated(struct ssh *ssh, Authctxt *authctxt) 335 { 336 setproctitle("%s", authctxt->pw->pw_name); 337 338 auth_log_authopts("active", auth_opts, 0); 339 340 /* setup the channel layer */ 341 /* XXX - streamlocal? */ 342 set_fwdpermit_from_authopts(ssh, auth_opts); 343 344 if (!auth_opts->permit_port_forwarding_flag || 345 options.disable_forwarding) { 346 channel_disable_admin(ssh, FORWARD_LOCAL); 347 channel_disable_admin(ssh, FORWARD_REMOTE); 348 } else { 349 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) == 0) 350 channel_disable_admin(ssh, FORWARD_LOCAL); 351 else 352 channel_permit_all(ssh, FORWARD_LOCAL); 353 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0) 354 channel_disable_admin(ssh, FORWARD_REMOTE); 355 else 356 channel_permit_all(ssh, FORWARD_REMOTE); 357 } 358 auth_debug_send(ssh); 359 360 prepare_auth_info_file(authctxt->pw, authctxt->session_info); 361 362 do_authenticated2(ssh, authctxt); 363 364 do_cleanup(ssh, authctxt); 365 } 366 367 /* Check untrusted xauth strings for metacharacters */ 368 static int 369 xauth_valid_string(const char *s) 370 { 371 size_t i; 372 373 for (i = 0; s[i] != '\0'; i++) { 374 if (!isalnum((u_char)s[i]) && 375 s[i] != '.' && s[i] != ':' && s[i] != '/' && 376 s[i] != '-' && s[i] != '_') 377 return 0; 378 } 379 return 1; 380 } 381 382 #define USE_PIPES 1 383 /* 384 * This is called to fork and execute a command when we have no tty. This 385 * will call do_child from the child, and server_loop from the parent after 386 * setting up file descriptors and such. 387 */ 388 int 389 do_exec_no_pty(struct ssh *ssh, Session *s, const char *command) 390 { 391 pid_t pid; 392 #ifdef USE_PIPES 393 int pin[2], pout[2], perr[2]; 394 395 if (s == NULL) 396 fatal("do_exec_no_pty: no session"); 397 398 /* Allocate pipes for communicating with the program. */ 399 if (pipe(pin) == -1) { 400 error_f("pipe in: %.100s", strerror(errno)); 401 return -1; 402 } 403 if (pipe(pout) == -1) { 404 error_f("pipe out: %.100s", strerror(errno)); 405 close(pin[0]); 406 close(pin[1]); 407 return -1; 408 } 409 if (pipe(perr) == -1) { 410 error_f("pipe err: %.100s", strerror(errno)); 411 close(pin[0]); 412 close(pin[1]); 413 close(pout[0]); 414 close(pout[1]); 415 return -1; 416 } 417 #else 418 int inout[2], err[2]; 419 420 if (s == NULL) 421 fatal("do_exec_no_pty: no session"); 422 423 /* Uses socket pairs to communicate with the program. */ 424 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1) { 425 error_f("socketpair #1: %.100s", strerror(errno)); 426 return -1; 427 } 428 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) == -1) { 429 error_f("socketpair #2: %.100s", strerror(errno)); 430 close(inout[0]); 431 close(inout[1]); 432 return -1; 433 } 434 #endif 435 436 session_proctitle(s); 437 438 /* Fork the child. */ 439 switch ((pid = fork())) { 440 case -1: 441 error_f("fork: %.100s", strerror(errno)); 442 #ifdef USE_PIPES 443 close(pin[0]); 444 close(pin[1]); 445 close(pout[0]); 446 close(pout[1]); 447 close(perr[0]); 448 close(perr[1]); 449 #else 450 close(inout[0]); 451 close(inout[1]); 452 close(err[0]); 453 close(err[1]); 454 #endif 455 return -1; 456 case 0: 457 is_child = 1; 458 459 /* 460 * Create a new session and process group since the 4.4BSD 461 * setlogin() affects the entire process group. 462 */ 463 if (setsid() == -1) 464 error("setsid failed: %.100s", strerror(errno)); 465 466 #ifdef USE_PIPES 467 /* 468 * Redirect stdin. We close the parent side of the socket 469 * pair, and make the child side the standard input. 470 */ 471 close(pin[1]); 472 if (dup2(pin[0], 0) == -1) 473 perror("dup2 stdin"); 474 close(pin[0]); 475 476 /* Redirect stdout. */ 477 close(pout[0]); 478 if (dup2(pout[1], 1) == -1) 479 perror("dup2 stdout"); 480 close(pout[1]); 481 482 /* Redirect stderr. */ 483 close(perr[0]); 484 if (dup2(perr[1], 2) == -1) 485 perror("dup2 stderr"); 486 close(perr[1]); 487 #else 488 /* 489 * Redirect stdin, stdout, and stderr. Stdin and stdout will 490 * use the same socket, as some programs (particularly rdist) 491 * seem to depend on it. 492 */ 493 close(inout[1]); 494 close(err[1]); 495 if (dup2(inout[0], 0) == -1) /* stdin */ 496 perror("dup2 stdin"); 497 if (dup2(inout[0], 1) == -1) /* stdout (same as stdin) */ 498 perror("dup2 stdout"); 499 close(inout[0]); 500 if (dup2(err[0], 2) == -1) /* stderr */ 501 perror("dup2 stderr"); 502 close(err[0]); 503 #endif 504 505 /* Do processing for the child (exec command etc). */ 506 do_child(ssh, s, command); 507 /* NOTREACHED */ 508 default: 509 break; 510 } 511 512 #ifdef HAVE_CYGWIN 513 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE); 514 #endif 515 516 s->pid = pid; 517 /* Set interactive/non-interactive mode. */ 518 ssh_packet_set_interactive(ssh, s->display != NULL, 519 options.ip_qos_interactive, options.ip_qos_bulk); 520 521 /* 522 * Clear loginmsg, since it's the child's responsibility to display 523 * it to the user, otherwise multiple sessions may accumulate 524 * multiple copies of the login messages. 525 */ 526 sshbuf_reset(loginmsg); 527 528 #ifdef USE_PIPES 529 /* We are the parent. Close the child sides of the pipes. */ 530 close(pin[0]); 531 close(pout[1]); 532 close(perr[1]); 533 534 session_set_fds(ssh, s, pin[1], pout[0], perr[0], 535 s->is_subsystem, 0); 536 #else 537 /* We are the parent. Close the child sides of the socket pairs. */ 538 close(inout[0]); 539 close(err[0]); 540 541 /* 542 * Enter the interactive session. Note: server_loop must be able to 543 * handle the case that fdin and fdout are the same. 544 */ 545 session_set_fds(ssh, s, inout[1], inout[1], err[1], 546 s->is_subsystem, 0); 547 #endif 548 return 0; 549 } 550 551 /* 552 * This is called to fork and execute a command when we have a tty. This 553 * will call do_child from the child, and server_loop from the parent after 554 * setting up file descriptors, controlling tty, updating wtmp, utmp, 555 * lastlog, and other such operations. 556 */ 557 int 558 do_exec_pty(struct ssh *ssh, Session *s, const char *command) 559 { 560 int fdout, ptyfd, ttyfd, ptymaster; 561 pid_t pid; 562 563 if (s == NULL) 564 fatal("do_exec_pty: no session"); 565 ptyfd = s->ptyfd; 566 ttyfd = s->ttyfd; 567 568 /* 569 * Create another descriptor of the pty master side for use as the 570 * standard input. We could use the original descriptor, but this 571 * simplifies code in server_loop. The descriptor is bidirectional. 572 * Do this before forking (and cleanup in the child) so as to 573 * detect and gracefully fail out-of-fd conditions. 574 */ 575 if ((fdout = dup(ptyfd)) == -1) { 576 error_f("dup #1: %s", strerror(errno)); 577 close(ttyfd); 578 close(ptyfd); 579 return -1; 580 } 581 /* we keep a reference to the pty master */ 582 if ((ptymaster = dup(ptyfd)) == -1) { 583 error_f("dup #2: %s", strerror(errno)); 584 close(ttyfd); 585 close(ptyfd); 586 close(fdout); 587 return -1; 588 } 589 590 /* Fork the child. */ 591 switch ((pid = fork())) { 592 case -1: 593 error_f("fork: %.100s", strerror(errno)); 594 close(fdout); 595 close(ptymaster); 596 close(ttyfd); 597 close(ptyfd); 598 return -1; 599 case 0: 600 is_child = 1; 601 602 close(fdout); 603 close(ptymaster); 604 605 /* Close the master side of the pseudo tty. */ 606 close(ptyfd); 607 608 /* Make the pseudo tty our controlling tty. */ 609 pty_make_controlling_tty(&ttyfd, s->tty); 610 611 /* Redirect stdin/stdout/stderr from the pseudo tty. */ 612 if (dup2(ttyfd, 0) == -1) 613 error("dup2 stdin: %s", strerror(errno)); 614 if (dup2(ttyfd, 1) == -1) 615 error("dup2 stdout: %s", strerror(errno)); 616 if (dup2(ttyfd, 2) == -1) 617 error("dup2 stderr: %s", strerror(errno)); 618 619 /* Close the extra descriptor for the pseudo tty. */ 620 close(ttyfd); 621 622 /* record login, etc. similar to login(1) */ 623 #ifndef HAVE_OSF_SIA 624 do_login(ssh, s, command); 625 #endif 626 /* 627 * Do common processing for the child, such as execing 628 * the command. 629 */ 630 do_child(ssh, s, command); 631 /* NOTREACHED */ 632 default: 633 break; 634 } 635 636 #ifdef HAVE_CYGWIN 637 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE); 638 #endif 639 640 s->pid = pid; 641 642 /* Parent. Close the slave side of the pseudo tty. */ 643 close(ttyfd); 644 645 /* Enter interactive session. */ 646 s->ptymaster = ptymaster; 647 ssh_packet_set_interactive(ssh, 1, 648 options.ip_qos_interactive, options.ip_qos_bulk); 649 session_set_fds(ssh, s, ptyfd, fdout, -1, 1, 1); 650 return 0; 651 } 652 653 /* 654 * This is called to fork and execute a command. If another command is 655 * to be forced, execute that instead. 656 */ 657 int 658 do_exec(struct ssh *ssh, Session *s, const char *command) 659 { 660 int ret; 661 const char *forced = NULL, *tty = NULL; 662 char session_type[1024]; 663 664 if (options.adm_forced_command) { 665 original_command = command; 666 command = options.adm_forced_command; 667 forced = "(config)"; 668 } else if (auth_opts->force_command != NULL) { 669 original_command = command; 670 command = auth_opts->force_command; 671 forced = "(key-option)"; 672 } 673 s->forced = 0; 674 if (forced != NULL) { 675 s->forced = 1; 676 if (IS_INTERNAL_SFTP(command)) { 677 s->is_subsystem = s->is_subsystem ? 678 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR; 679 } else if (s->is_subsystem) 680 s->is_subsystem = SUBSYSTEM_EXT; 681 snprintf(session_type, sizeof(session_type), 682 "forced-command %s '%.900s'", forced, command); 683 } else if (s->is_subsystem) { 684 snprintf(session_type, sizeof(session_type), 685 "subsystem '%.900s'", s->subsys); 686 } else if (command == NULL) { 687 snprintf(session_type, sizeof(session_type), "shell"); 688 } else { 689 /* NB. we don't log unforced commands to preserve privacy */ 690 snprintf(session_type, sizeof(session_type), "command"); 691 } 692 693 if (s->ttyfd != -1) { 694 tty = s->tty; 695 if (strncmp(tty, "/dev/", 5) == 0) 696 tty += 5; 697 } 698 699 verbose("Starting session: %s%s%s for %s from %.200s port %d id %d", 700 session_type, 701 tty == NULL ? "" : " on ", 702 tty == NULL ? "" : tty, 703 s->pw->pw_name, 704 ssh_remote_ipaddr(ssh), 705 ssh_remote_port(ssh), 706 s->self); 707 708 #ifdef SSH_AUDIT_EVENTS 709 if (command != NULL) 710 PRIVSEP(audit_run_command(command)); 711 else if (s->ttyfd == -1) { 712 char *shell = s->pw->pw_shell; 713 714 if (shell[0] == '\0') /* empty shell means /bin/sh */ 715 shell =_PATH_BSHELL; 716 PRIVSEP(audit_run_command(shell)); 717 } 718 #endif 719 if (s->ttyfd != -1) 720 ret = do_exec_pty(ssh, s, command); 721 else 722 ret = do_exec_no_pty(ssh, s, command); 723 724 original_command = NULL; 725 726 /* 727 * Clear loginmsg: it's the child's responsibility to display 728 * it to the user, otherwise multiple sessions may accumulate 729 * multiple copies of the login messages. 730 */ 731 sshbuf_reset(loginmsg); 732 733 return ret; 734 } 735 736 /* administrative, login(1)-like work */ 737 void 738 do_login(struct ssh *ssh, Session *s, const char *command) 739 { 740 socklen_t fromlen; 741 struct sockaddr_storage from; 742 struct passwd * pw = s->pw; 743 pid_t pid = getpid(); 744 745 /* 746 * Get IP address of client. If the connection is not a socket, let 747 * the address be 0.0.0.0. 748 */ 749 memset(&from, 0, sizeof(from)); 750 fromlen = sizeof(from); 751 if (ssh_packet_connection_is_on_socket(ssh)) { 752 if (getpeername(ssh_packet_get_connection_in(ssh), 753 (struct sockaddr *)&from, &fromlen) == -1) { 754 debug("getpeername: %.100s", strerror(errno)); 755 cleanup_exit(255); 756 } 757 } 758 759 /* Record that there was a login on that tty from the remote host. */ 760 if (!use_privsep) 761 record_login(pid, s->tty, pw->pw_name, pw->pw_uid, 762 session_get_remote_name_or_ip(ssh, utmp_len, 763 options.use_dns), 764 (struct sockaddr *)&from, fromlen); 765 766 #ifdef USE_PAM 767 /* 768 * If password change is needed, do it now. 769 * This needs to occur before the ~/.hushlogin check. 770 */ 771 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) { 772 display_loginmsg(); 773 do_pam_chauthtok(); 774 s->authctxt->force_pwchange = 0; 775 /* XXX - signal [net] parent to enable forwardings */ 776 } 777 #endif 778 779 if (check_quietlogin(s, command)) 780 return; 781 782 display_loginmsg(); 783 784 do_motd(); 785 } 786 787 /* 788 * Display the message of the day. 789 */ 790 void 791 do_motd(void) 792 { 793 FILE *f; 794 char buf[256]; 795 796 if (options.print_motd) { 797 #ifdef HAVE_LOGIN_CAP 798 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd", 799 "/etc/motd"), "r"); 800 #else 801 f = fopen("/etc/motd", "r"); 802 #endif 803 if (f) { 804 while (fgets(buf, sizeof(buf), f)) 805 fputs(buf, stdout); 806 fclose(f); 807 } 808 } 809 } 810 811 812 /* 813 * Check for quiet login, either .hushlogin or command given. 814 */ 815 int 816 check_quietlogin(Session *s, const char *command) 817 { 818 char buf[256]; 819 struct passwd *pw = s->pw; 820 struct stat st; 821 822 /* Return 1 if .hushlogin exists or a command given. */ 823 if (command != NULL) 824 return 1; 825 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir); 826 #ifdef HAVE_LOGIN_CAP 827 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0) 828 return 1; 829 #else 830 if (stat(buf, &st) >= 0) 831 return 1; 832 #endif 833 return 0; 834 } 835 836 /* 837 * Reads environment variables from the given file and adds/overrides them 838 * into the environment. If the file does not exist, this does nothing. 839 * Otherwise, it must consist of empty lines, comments (line starts with '#') 840 * and assignments of the form name=value. No other forms are allowed. 841 * If allowlist is not NULL, then it is interpreted as a pattern list and 842 * only variable names that match it will be accepted. 843 */ 844 static void 845 read_environment_file(char ***env, u_int *envsize, 846 const char *filename, const char *allowlist) 847 { 848 FILE *f; 849 char *line = NULL, *cp, *value; 850 size_t linesize = 0; 851 u_int lineno = 0; 852 853 f = fopen(filename, "r"); 854 if (!f) 855 return; 856 857 while (getline(&line, &linesize, f) != -1) { 858 if (++lineno > 1000) 859 fatal("Too many lines in environment file %s", filename); 860 for (cp = line; *cp == ' ' || *cp == '\t'; cp++) 861 ; 862 if (!*cp || *cp == '#' || *cp == '\n') 863 continue; 864 865 cp[strcspn(cp, "\n")] = '\0'; 866 867 value = strchr(cp, '='); 868 if (value == NULL) { 869 fprintf(stderr, "Bad line %u in %.100s\n", lineno, 870 filename); 871 continue; 872 } 873 /* 874 * Replace the equals sign by nul, and advance value to 875 * the value string. 876 */ 877 *value = '\0'; 878 value++; 879 if (allowlist != NULL && 880 match_pattern_list(cp, allowlist, 0) != 1) 881 continue; 882 child_set_env(env, envsize, cp, value); 883 } 884 free(line); 885 fclose(f); 886 } 887 888 #ifdef HAVE_ETC_DEFAULT_LOGIN 889 /* 890 * Return named variable from specified environment, or NULL if not present. 891 */ 892 static char * 893 child_get_env(char **env, const char *name) 894 { 895 int i; 896 size_t len; 897 898 len = strlen(name); 899 for (i=0; env[i] != NULL; i++) 900 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=') 901 return(env[i] + len + 1); 902 return NULL; 903 } 904 905 /* 906 * Read /etc/default/login. 907 * We pick up the PATH (or SUPATH for root) and UMASK. 908 */ 909 static void 910 read_etc_default_login(char ***env, u_int *envsize, uid_t uid) 911 { 912 char **tmpenv = NULL, *var; 913 u_int i, tmpenvsize = 0; 914 u_long mask; 915 916 /* 917 * We don't want to copy the whole file to the child's environment, 918 * so we use a temporary environment and copy the variables we're 919 * interested in. 920 */ 921 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login", 922 options.permit_user_env_allowlist); 923 924 if (tmpenv == NULL) 925 return; 926 927 if (uid == 0) 928 var = child_get_env(tmpenv, "SUPATH"); 929 else 930 var = child_get_env(tmpenv, "PATH"); 931 if (var != NULL) 932 child_set_env(env, envsize, "PATH", var); 933 934 if ((var = child_get_env(tmpenv, "UMASK")) != NULL) 935 if (sscanf(var, "%5lo", &mask) == 1) 936 umask((mode_t)mask); 937 938 for (i = 0; tmpenv[i] != NULL; i++) 939 free(tmpenv[i]); 940 free(tmpenv); 941 } 942 #endif /* HAVE_ETC_DEFAULT_LOGIN */ 943 944 #if defined(USE_PAM) || defined(HAVE_CYGWIN) 945 static void 946 copy_environment_denylist(char **source, char ***env, u_int *envsize, 947 const char *denylist) 948 { 949 char *var_name, *var_val; 950 int i; 951 952 if (source == NULL) 953 return; 954 955 for(i = 0; source[i] != NULL; i++) { 956 var_name = xstrdup(source[i]); 957 if ((var_val = strstr(var_name, "=")) == NULL) { 958 free(var_name); 959 continue; 960 } 961 *var_val++ = '\0'; 962 963 if (denylist == NULL || 964 match_pattern_list(var_name, denylist, 0) != 1) { 965 debug3("Copy environment: %s=%s", var_name, var_val); 966 child_set_env(env, envsize, var_name, var_val); 967 } 968 969 free(var_name); 970 } 971 } 972 #endif /* defined(USE_PAM) || defined(HAVE_CYGWIN) */ 973 974 #ifdef HAVE_CYGWIN 975 static void 976 copy_environment(char **source, char ***env, u_int *envsize) 977 { 978 copy_environment_denylist(source, env, envsize, NULL); 979 } 980 #endif 981 982 static char ** 983 do_setup_env(struct ssh *ssh, Session *s, const char *shell) 984 { 985 char buf[256]; 986 size_t n; 987 u_int i, envsize; 988 char *ocp, *cp, *value, **env, *laddr; 989 struct passwd *pw = s->pw; 990 #if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN) 991 char *path = NULL; 992 #else 993 extern char **environ; 994 char **senv, **var, *val; 995 #endif 996 997 /* Initialize the environment. */ 998 envsize = 100; 999 env = xcalloc(envsize, sizeof(char *)); 1000 env[0] = NULL; 1001 1002 #ifdef HAVE_CYGWIN 1003 /* 1004 * The Windows environment contains some setting which are 1005 * important for a running system. They must not be dropped. 1006 */ 1007 { 1008 char **p; 1009 1010 p = fetch_windows_environment(); 1011 copy_environment(p, &env, &envsize); 1012 free_windows_environment(p); 1013 } 1014 #endif 1015 1016 if (getenv("TZ")) 1017 child_set_env(&env, &envsize, "TZ", getenv("TZ")); 1018 1019 #ifdef GSSAPI 1020 /* Allow any GSSAPI methods that we've used to alter 1021 * the child's environment as they see fit 1022 */ 1023 ssh_gssapi_do_child(&env, &envsize); 1024 #endif 1025 1026 /* Set basic environment. */ 1027 for (i = 0; i < s->num_env; i++) 1028 child_set_env(&env, &envsize, s->env[i].name, s->env[i].val); 1029 1030 child_set_env(&env, &envsize, "USER", pw->pw_name); 1031 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name); 1032 #ifdef _AIX 1033 child_set_env(&env, &envsize, "LOGIN", pw->pw_name); 1034 #endif 1035 child_set_env(&env, &envsize, "HOME", pw->pw_dir); 1036 snprintf(buf, sizeof buf, "%.200s/%.50s", _PATH_MAILDIR, pw->pw_name); 1037 child_set_env(&env, &envsize, "MAIL", buf); 1038 #ifdef HAVE_LOGIN_CAP 1039 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH); 1040 child_set_env(&env, &envsize, "TERM", "su"); 1041 /* 1042 * Temporarily swap out our real environment with an empty one, 1043 * let setusercontext() apply any environment variables defined 1044 * for the user's login class, copy those variables to the child, 1045 * free the temporary environment, and restore the original. 1046 */ 1047 senv = environ; 1048 environ = xmalloc(sizeof(*environ)); 1049 *environ = NULL; 1050 (void)setusercontext(lc, pw, pw->pw_uid, LOGIN_SETENV|LOGIN_SETPATH); 1051 for (var = environ; *var != NULL; ++var) { 1052 if ((val = strchr(*var, '=')) != NULL) { 1053 *val++ = '\0'; 1054 child_set_env(&env, &envsize, *var, val); 1055 } 1056 free(*var); 1057 } 1058 free(environ); 1059 environ = senv; 1060 #else /* HAVE_LOGIN_CAP */ 1061 # ifndef HAVE_CYGWIN 1062 /* 1063 * There's no standard path on Windows. The path contains 1064 * important components pointing to the system directories, 1065 * needed for loading shared libraries. So the path better 1066 * remains intact here. 1067 */ 1068 # ifdef HAVE_ETC_DEFAULT_LOGIN 1069 read_etc_default_login(&env, &envsize, pw->pw_uid); 1070 path = child_get_env(env, "PATH"); 1071 # endif /* HAVE_ETC_DEFAULT_LOGIN */ 1072 if (path == NULL || *path == '\0') { 1073 child_set_env(&env, &envsize, "PATH", 1074 s->pw->pw_uid == 0 ? SUPERUSER_PATH : _PATH_STDPATH); 1075 } 1076 # endif /* HAVE_CYGWIN */ 1077 #endif /* HAVE_LOGIN_CAP */ 1078 1079 /* Normal systems set SHELL by default. */ 1080 child_set_env(&env, &envsize, "SHELL", shell); 1081 1082 if (s->term) 1083 child_set_env(&env, &envsize, "TERM", s->term); 1084 if (s->display) 1085 child_set_env(&env, &envsize, "DISPLAY", s->display); 1086 1087 /* 1088 * Since we clear KRB5CCNAME at startup, if it's set now then it 1089 * must have been set by a native authentication method (eg AIX or 1090 * SIA), so copy it to the child. 1091 */ 1092 { 1093 char *cp; 1094 1095 if ((cp = getenv("KRB5CCNAME")) != NULL) 1096 child_set_env(&env, &envsize, "KRB5CCNAME", cp); 1097 } 1098 1099 #ifdef _AIX 1100 { 1101 char *cp; 1102 1103 if ((cp = getenv("AUTHSTATE")) != NULL) 1104 child_set_env(&env, &envsize, "AUTHSTATE", cp); 1105 read_environment_file(&env, &envsize, "/etc/environment", 1106 options.permit_user_env_allowlist); 1107 } 1108 #endif 1109 #ifdef KRB5 1110 if (s->authctxt->krb5_ccname) 1111 child_set_env(&env, &envsize, "KRB5CCNAME", 1112 s->authctxt->krb5_ccname); 1113 #endif 1114 if (auth_sock_name != NULL) 1115 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME, 1116 auth_sock_name); 1117 1118 1119 /* Set custom environment options from pubkey authentication. */ 1120 if (options.permit_user_env) { 1121 for (n = 0 ; n < auth_opts->nenv; n++) { 1122 ocp = xstrdup(auth_opts->env[n]); 1123 cp = strchr(ocp, '='); 1124 if (cp != NULL) { 1125 *cp = '\0'; 1126 /* Apply PermitUserEnvironment allowlist */ 1127 if (options.permit_user_env_allowlist == NULL || 1128 match_pattern_list(ocp, 1129 options.permit_user_env_allowlist, 0) == 1) 1130 child_set_env(&env, &envsize, 1131 ocp, cp + 1); 1132 } 1133 free(ocp); 1134 } 1135 } 1136 1137 /* read $HOME/.ssh/environment. */ 1138 if (options.permit_user_env) { 1139 snprintf(buf, sizeof buf, "%.200s/%s/environment", 1140 pw->pw_dir, _PATH_SSH_USER_DIR); 1141 read_environment_file(&env, &envsize, buf, 1142 options.permit_user_env_allowlist); 1143 } 1144 1145 #ifdef USE_PAM 1146 /* 1147 * Pull in any environment variables that may have 1148 * been set by PAM. 1149 */ 1150 if (options.use_pam) { 1151 char **p; 1152 1153 /* 1154 * Don't allow PAM-internal env vars to leak 1155 * back into the session environment. 1156 */ 1157 #define PAM_ENV_DENYLIST "SSH_AUTH_INFO*,SSH_CONNECTION*" 1158 p = fetch_pam_child_environment(); 1159 copy_environment_denylist(p, &env, &envsize, 1160 PAM_ENV_DENYLIST); 1161 free_pam_environment(p); 1162 1163 p = fetch_pam_environment(); 1164 copy_environment_denylist(p, &env, &envsize, 1165 PAM_ENV_DENYLIST); 1166 free_pam_environment(p); 1167 } 1168 #endif /* USE_PAM */ 1169 1170 /* Environment specified by admin */ 1171 for (i = 0; i < options.num_setenv; i++) { 1172 cp = xstrdup(options.setenv[i]); 1173 if ((value = strchr(cp, '=')) == NULL) { 1174 /* shouldn't happen; vars are checked in servconf.c */ 1175 fatal("Invalid config SetEnv: %s", options.setenv[i]); 1176 } 1177 *value++ = '\0'; 1178 child_set_env(&env, &envsize, cp, value); 1179 } 1180 1181 /* SSH_CLIENT deprecated */ 1182 snprintf(buf, sizeof buf, "%.50s %d %d", 1183 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), 1184 ssh_local_port(ssh)); 1185 child_set_env(&env, &envsize, "SSH_CLIENT", buf); 1186 1187 laddr = get_local_ipaddr(ssh_packet_get_connection_in(ssh)); 1188 snprintf(buf, sizeof buf, "%.50s %d %.50s %d", 1189 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), 1190 laddr, ssh_local_port(ssh)); 1191 free(laddr); 1192 child_set_env(&env, &envsize, "SSH_CONNECTION", buf); 1193 1194 if (tun_fwd_ifnames != NULL) 1195 child_set_env(&env, &envsize, "SSH_TUNNEL", tun_fwd_ifnames); 1196 if (auth_info_file != NULL) 1197 child_set_env(&env, &envsize, "SSH_USER_AUTH", auth_info_file); 1198 if (s->ttyfd != -1) 1199 child_set_env(&env, &envsize, "SSH_TTY", s->tty); 1200 if (original_command) 1201 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND", 1202 original_command); 1203 1204 if (debug_flag) { 1205 /* dump the environment */ 1206 fprintf(stderr, "Environment:\n"); 1207 for (i = 0; env[i]; i++) 1208 fprintf(stderr, " %.200s\n", env[i]); 1209 } 1210 return env; 1211 } 1212 1213 /* 1214 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found 1215 * first in this order). 1216 */ 1217 static void 1218 do_rc_files(struct ssh *ssh, Session *s, const char *shell) 1219 { 1220 FILE *f = NULL; 1221 char *cmd = NULL, *user_rc = NULL; 1222 int do_xauth; 1223 struct stat st; 1224 1225 do_xauth = 1226 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL; 1227 xasprintf(&user_rc, "%s/%s", s->pw->pw_dir, _PATH_SSH_USER_RC); 1228 1229 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */ 1230 if (!s->is_subsystem && options.adm_forced_command == NULL && 1231 auth_opts->permit_user_rc && options.permit_user_rc && 1232 stat(user_rc, &st) >= 0) { 1233 if (xasprintf(&cmd, "%s -c '%s %s'", shell, _PATH_BSHELL, 1234 user_rc) == -1) 1235 fatal_f("xasprintf: %s", strerror(errno)); 1236 if (debug_flag) 1237 fprintf(stderr, "Running %s\n", cmd); 1238 f = popen(cmd, "w"); 1239 if (f) { 1240 if (do_xauth) 1241 fprintf(f, "%s %s\n", s->auth_proto, 1242 s->auth_data); 1243 pclose(f); 1244 } else 1245 fprintf(stderr, "Could not run %s\n", 1246 user_rc); 1247 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) { 1248 if (debug_flag) 1249 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL, 1250 _PATH_SSH_SYSTEM_RC); 1251 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w"); 1252 if (f) { 1253 if (do_xauth) 1254 fprintf(f, "%s %s\n", s->auth_proto, 1255 s->auth_data); 1256 pclose(f); 1257 } else 1258 fprintf(stderr, "Could not run %s\n", 1259 _PATH_SSH_SYSTEM_RC); 1260 } else if (do_xauth && options.xauth_location != NULL) { 1261 /* Add authority data to .Xauthority if appropriate. */ 1262 if (debug_flag) { 1263 fprintf(stderr, 1264 "Running %.500s remove %.100s\n", 1265 options.xauth_location, s->auth_display); 1266 fprintf(stderr, 1267 "%.500s add %.100s %.100s %.100s\n", 1268 options.xauth_location, s->auth_display, 1269 s->auth_proto, s->auth_data); 1270 } 1271 if (xasprintf(&cmd, "%s -q -", options.xauth_location) == -1) 1272 fatal_f("xasprintf: %s", strerror(errno)); 1273 f = popen(cmd, "w"); 1274 if (f) { 1275 fprintf(f, "remove %s\n", 1276 s->auth_display); 1277 fprintf(f, "add %s %s %s\n", 1278 s->auth_display, s->auth_proto, 1279 s->auth_data); 1280 pclose(f); 1281 } else { 1282 fprintf(stderr, "Could not run %s\n", 1283 cmd); 1284 } 1285 } 1286 free(cmd); 1287 free(user_rc); 1288 } 1289 1290 static void 1291 do_nologin(struct passwd *pw) 1292 { 1293 FILE *f = NULL; 1294 const char *nl; 1295 char buf[1024], *def_nl = _PATH_NOLOGIN; 1296 struct stat sb; 1297 1298 #ifdef HAVE_LOGIN_CAP 1299 if (login_getcapbool(lc, "ignorenologin", 0) || pw->pw_uid == 0) 1300 return; 1301 nl = login_getcapstr(lc, "nologin", def_nl, def_nl); 1302 #else 1303 if (pw->pw_uid == 0) 1304 return; 1305 nl = def_nl; 1306 #endif 1307 if (stat(nl, &sb) == -1) 1308 return; 1309 1310 /* /etc/nologin exists. Print its contents if we can and exit. */ 1311 logit("User %.100s not allowed because %s exists", pw->pw_name, nl); 1312 if ((f = fopen(nl, "r")) != NULL) { 1313 while (fgets(buf, sizeof(buf), f)) 1314 fputs(buf, stderr); 1315 fclose(f); 1316 } 1317 exit(254); 1318 } 1319 1320 /* 1321 * Chroot into a directory after checking it for safety: all path components 1322 * must be root-owned directories with strict permissions. 1323 */ 1324 static void 1325 safely_chroot(const char *path, uid_t uid) 1326 { 1327 const char *cp; 1328 char component[PATH_MAX]; 1329 struct stat st; 1330 1331 if (!path_absolute(path)) 1332 fatal("chroot path does not begin at root"); 1333 if (strlen(path) >= sizeof(component)) 1334 fatal("chroot path too long"); 1335 1336 /* 1337 * Descend the path, checking that each component is a 1338 * root-owned directory with strict permissions. 1339 */ 1340 for (cp = path; cp != NULL;) { 1341 if ((cp = strchr(cp, '/')) == NULL) 1342 strlcpy(component, path, sizeof(component)); 1343 else { 1344 cp++; 1345 memcpy(component, path, cp - path); 1346 component[cp - path] = '\0'; 1347 } 1348 1349 debug3_f("checking '%s'", component); 1350 1351 if (stat(component, &st) != 0) 1352 fatal_f("stat(\"%s\"): %s", 1353 component, strerror(errno)); 1354 if (st.st_uid != 0 || (st.st_mode & 022) != 0) 1355 fatal("bad ownership or modes for chroot " 1356 "directory %s\"%s\"", 1357 cp == NULL ? "" : "component ", component); 1358 if (!S_ISDIR(st.st_mode)) 1359 fatal("chroot path %s\"%s\" is not a directory", 1360 cp == NULL ? "" : "component ", component); 1361 1362 } 1363 1364 if (chdir(path) == -1) 1365 fatal("Unable to chdir to chroot path \"%s\": " 1366 "%s", path, strerror(errno)); 1367 if (chroot(path) == -1) 1368 fatal("chroot(\"%s\"): %s", path, strerror(errno)); 1369 if (chdir("/") == -1) 1370 fatal_f("chdir(/) after chroot: %s", strerror(errno)); 1371 verbose("Changed root directory to \"%s\"", path); 1372 } 1373 1374 /* Set login name, uid, gid, and groups. */ 1375 void 1376 do_setusercontext(struct passwd *pw) 1377 { 1378 char uidstr[32], *chroot_path, *tmp; 1379 1380 platform_setusercontext(pw); 1381 1382 if (platform_privileged_uidswap()) { 1383 #ifdef HAVE_LOGIN_CAP 1384 if (setusercontext(lc, pw, pw->pw_uid, 1385 (LOGIN_SETALL & ~(LOGIN_SETENV|LOGIN_SETPATH|LOGIN_SETUSER))) < 0) { 1386 perror("unable to set user context"); 1387 exit(1); 1388 } 1389 #else 1390 if (setlogin(pw->pw_name) < 0) 1391 error("setlogin failed: %s", strerror(errno)); 1392 if (setgid(pw->pw_gid) < 0) { 1393 perror("setgid"); 1394 exit(1); 1395 } 1396 /* Initialize the group list. */ 1397 if (initgroups(pw->pw_name, pw->pw_gid) < 0) { 1398 perror("initgroups"); 1399 exit(1); 1400 } 1401 endgrent(); 1402 #endif 1403 1404 platform_setusercontext_post_groups(pw); 1405 1406 if (!in_chroot && options.chroot_directory != NULL && 1407 strcasecmp(options.chroot_directory, "none") != 0) { 1408 tmp = tilde_expand_filename(options.chroot_directory, 1409 pw->pw_uid); 1410 snprintf(uidstr, sizeof(uidstr), "%llu", 1411 (unsigned long long)pw->pw_uid); 1412 chroot_path = percent_expand(tmp, "h", pw->pw_dir, 1413 "u", pw->pw_name, "U", uidstr, (char *)NULL); 1414 safely_chroot(chroot_path, pw->pw_uid); 1415 free(tmp); 1416 free(chroot_path); 1417 /* Make sure we don't attempt to chroot again */ 1418 free(options.chroot_directory); 1419 options.chroot_directory = NULL; 1420 in_chroot = 1; 1421 } 1422 1423 #ifdef HAVE_LOGIN_CAP 1424 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) { 1425 perror("unable to set user context (setuser)"); 1426 exit(1); 1427 } 1428 /* 1429 * FreeBSD's setusercontext() will not apply the user's 1430 * own umask setting unless running with the user's UID. 1431 */ 1432 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK); 1433 #else 1434 # ifdef USE_LIBIAF 1435 /* 1436 * In a chroot environment, the set_id() will always fail; 1437 * typically because of the lack of necessary authentication 1438 * services and runtime such as ./usr/lib/libiaf.so, 1439 * ./usr/lib/libpam.so.1, and ./etc/passwd We skip it in the 1440 * internal sftp chroot case. We'll lose auditing and ACLs but 1441 * permanently_set_uid will take care of the rest. 1442 */ 1443 if (!in_chroot && set_id(pw->pw_name) != 0) 1444 fatal("set_id(%s) Failed", pw->pw_name); 1445 # endif /* USE_LIBIAF */ 1446 /* Permanently switch to the desired uid. */ 1447 permanently_set_uid(pw); 1448 #endif 1449 } else if (options.chroot_directory != NULL && 1450 strcasecmp(options.chroot_directory, "none") != 0) { 1451 fatal("server lacks privileges to chroot to ChrootDirectory"); 1452 } 1453 1454 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) 1455 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid); 1456 } 1457 1458 static void 1459 do_pwchange(Session *s) 1460 { 1461 fflush(NULL); 1462 fprintf(stderr, "WARNING: Your password has expired.\n"); 1463 if (s->ttyfd != -1) { 1464 fprintf(stderr, 1465 "You must change your password now and login again!\n"); 1466 #ifdef WITH_SELINUX 1467 setexeccon(NULL); 1468 #endif 1469 #ifdef PASSWD_NEEDS_USERNAME 1470 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name, 1471 (char *)NULL); 1472 #else 1473 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL); 1474 #endif 1475 perror("passwd"); 1476 } else { 1477 fprintf(stderr, 1478 "Password change required but no TTY available.\n"); 1479 } 1480 exit(1); 1481 } 1482 1483 static void 1484 child_close_fds(struct ssh *ssh) 1485 { 1486 extern int auth_sock; 1487 1488 if (auth_sock != -1) { 1489 close(auth_sock); 1490 auth_sock = -1; 1491 } 1492 1493 if (ssh_packet_get_connection_in(ssh) == 1494 ssh_packet_get_connection_out(ssh)) 1495 close(ssh_packet_get_connection_in(ssh)); 1496 else { 1497 close(ssh_packet_get_connection_in(ssh)); 1498 close(ssh_packet_get_connection_out(ssh)); 1499 } 1500 /* 1501 * Close all descriptors related to channels. They will still remain 1502 * open in the parent. 1503 */ 1504 /* XXX better use close-on-exec? -markus */ 1505 channel_close_all(ssh); 1506 1507 /* 1508 * Close any extra file descriptors. Note that there may still be 1509 * descriptors left by system functions. They will be closed later. 1510 */ 1511 endpwent(); 1512 1513 /* Stop directing logs to a high-numbered fd before we close it */ 1514 log_redirect_stderr_to(NULL); 1515 1516 /* 1517 * Close any extra open file descriptors so that we don't have them 1518 * hanging around in clients. Note that we want to do this after 1519 * initgroups, because at least on Solaris 2.3 it leaves file 1520 * descriptors open. 1521 */ 1522 closefrom(STDERR_FILENO + 1); 1523 } 1524 1525 /* 1526 * Performs common processing for the child, such as setting up the 1527 * environment, closing extra file descriptors, setting the user and group 1528 * ids, and executing the command or shell. 1529 */ 1530 #define ARGV_MAX 10 1531 void 1532 do_child(struct ssh *ssh, Session *s, const char *command) 1533 { 1534 extern char **environ; 1535 char **env, *argv[ARGV_MAX], remote_id[512]; 1536 const char *shell, *shell0; 1537 struct passwd *pw = s->pw; 1538 int r = 0; 1539 1540 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id)); 1541 1542 /* remove hostkey from the child's memory */ 1543 destroy_sensitive_data(); 1544 ssh_packet_clear_keys(ssh); 1545 1546 /* Force a password change */ 1547 if (s->authctxt->force_pwchange) { 1548 do_setusercontext(pw); 1549 child_close_fds(ssh); 1550 do_pwchange(s); 1551 exit(1); 1552 } 1553 1554 /* 1555 * Login(1) does this as well, and it needs uid 0 for the "-h" 1556 * switch, so we let login(1) to this for us. 1557 */ 1558 #ifdef HAVE_OSF_SIA 1559 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty); 1560 if (!check_quietlogin(s, command)) 1561 do_motd(); 1562 #else /* HAVE_OSF_SIA */ 1563 /* When PAM is enabled we rely on it to do the nologin check */ 1564 if (!options.use_pam) 1565 do_nologin(pw); 1566 do_setusercontext(pw); 1567 /* 1568 * PAM session modules in do_setusercontext may have 1569 * generated messages, so if this in an interactive 1570 * login then display them too. 1571 */ 1572 if (!check_quietlogin(s, command)) 1573 display_loginmsg(); 1574 #endif /* HAVE_OSF_SIA */ 1575 1576 #ifdef USE_PAM 1577 if (options.use_pam && !is_pam_session_open()) { 1578 debug3("PAM session not opened, exiting"); 1579 display_loginmsg(); 1580 exit(254); 1581 } 1582 #endif 1583 1584 /* 1585 * Get the shell from the password data. An empty shell field is 1586 * legal, and means /bin/sh. 1587 */ 1588 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell; 1589 1590 /* 1591 * Make sure $SHELL points to the shell from the password file, 1592 * even if shell is overridden from login.conf 1593 */ 1594 env = do_setup_env(ssh, s, shell); 1595 1596 #ifdef HAVE_LOGIN_CAP 1597 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell); 1598 #endif 1599 1600 /* 1601 * Close the connection descriptors; note that this is the child, and 1602 * the server will still have the socket open, and it is important 1603 * that we do not shutdown it. Note that the descriptors cannot be 1604 * closed before building the environment, as we call 1605 * ssh_remote_ipaddr there. 1606 */ 1607 child_close_fds(ssh); 1608 1609 /* 1610 * Must take new environment into use so that .ssh/rc, 1611 * /etc/ssh/sshrc and xauth are run in the proper environment. 1612 */ 1613 environ = env; 1614 1615 #if defined(KRB5) && defined(USE_AFS) 1616 /* 1617 * At this point, we check to see if AFS is active and if we have 1618 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see 1619 * if we can (and need to) extend the ticket into an AFS token. If 1620 * we don't do this, we run into potential problems if the user's 1621 * home directory is in AFS and it's not world-readable. 1622 */ 1623 1624 if (options.kerberos_get_afs_token && k_hasafs() && 1625 (s->authctxt->krb5_ctx != NULL)) { 1626 char cell[64]; 1627 1628 debug("Getting AFS token"); 1629 1630 k_setpag(); 1631 1632 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0) 1633 krb5_afslog(s->authctxt->krb5_ctx, 1634 s->authctxt->krb5_fwd_ccache, cell, NULL); 1635 1636 krb5_afslog_home(s->authctxt->krb5_ctx, 1637 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir); 1638 } 1639 #endif 1640 1641 /* Change current directory to the user's home directory. */ 1642 if (chdir(pw->pw_dir) == -1) { 1643 /* Suppress missing homedir warning for chroot case */ 1644 #ifdef HAVE_LOGIN_CAP 1645 r = login_getcapbool(lc, "requirehome", 0); 1646 #endif 1647 if (r || !in_chroot) { 1648 fprintf(stderr, "Could not chdir to home " 1649 "directory %s: %s\n", pw->pw_dir, 1650 strerror(errno)); 1651 } 1652 if (r) 1653 exit(1); 1654 } 1655 1656 closefrom(STDERR_FILENO + 1); 1657 1658 do_rc_files(ssh, s, shell); 1659 1660 /* restore SIGPIPE for child */ 1661 ssh_signal(SIGPIPE, SIG_DFL); 1662 1663 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) { 1664 error("Connection from %s: refusing non-sftp session", 1665 remote_id); 1666 printf("This service allows sftp connections only.\n"); 1667 fflush(NULL); 1668 exit(1); 1669 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) { 1670 extern int optind, optreset; 1671 int i; 1672 char *p, *args; 1673 1674 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME); 1675 args = xstrdup(command ? command : "sftp-server"); 1676 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " "))) 1677 if (i < ARGV_MAX - 1) 1678 argv[i++] = p; 1679 argv[i] = NULL; 1680 optind = optreset = 1; 1681 __progname = argv[0]; 1682 #ifdef WITH_SELINUX 1683 ssh_selinux_change_context("sftpd_t"); 1684 #endif 1685 exit(sftp_server_main(i, argv, s->pw)); 1686 } 1687 1688 fflush(NULL); 1689 1690 /* Get the last component of the shell name. */ 1691 if ((shell0 = strrchr(shell, '/')) != NULL) 1692 shell0++; 1693 else 1694 shell0 = shell; 1695 1696 /* 1697 * If we have no command, execute the shell. In this case, the shell 1698 * name to be passed in argv[0] is preceded by '-' to indicate that 1699 * this is a login shell. 1700 */ 1701 if (!command) { 1702 char argv0[256]; 1703 1704 /* Start the shell. Set initial character to '-'. */ 1705 argv0[0] = '-'; 1706 1707 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1) 1708 >= sizeof(argv0) - 1) { 1709 errno = EINVAL; 1710 perror(shell); 1711 exit(1); 1712 } 1713 1714 /* Execute the shell. */ 1715 argv[0] = argv0; 1716 argv[1] = NULL; 1717 execve(shell, argv, env); 1718 1719 /* Executing the shell failed. */ 1720 perror(shell); 1721 exit(1); 1722 } 1723 /* 1724 * Execute the command using the user's shell. This uses the -c 1725 * option to execute the command. 1726 */ 1727 argv[0] = (char *) shell0; 1728 argv[1] = "-c"; 1729 argv[2] = (char *) command; 1730 argv[3] = NULL; 1731 execve(shell, argv, env); 1732 perror(shell); 1733 exit(1); 1734 } 1735 1736 void 1737 session_unused(int id) 1738 { 1739 debug3_f("session id %d unused", id); 1740 if (id >= options.max_sessions || 1741 id >= sessions_nalloc) { 1742 fatal_f("insane session id %d (max %d nalloc %d)", 1743 id, options.max_sessions, sessions_nalloc); 1744 } 1745 memset(&sessions[id], 0, sizeof(*sessions)); 1746 sessions[id].self = id; 1747 sessions[id].used = 0; 1748 sessions[id].chanid = -1; 1749 sessions[id].ptyfd = -1; 1750 sessions[id].ttyfd = -1; 1751 sessions[id].ptymaster = -1; 1752 sessions[id].x11_chanids = NULL; 1753 sessions[id].next_unused = sessions_first_unused; 1754 sessions_first_unused = id; 1755 } 1756 1757 Session * 1758 session_new(void) 1759 { 1760 Session *s, *tmp; 1761 1762 if (sessions_first_unused == -1) { 1763 if (sessions_nalloc >= options.max_sessions) 1764 return NULL; 1765 debug2_f("allocate (allocated %d max %d)", 1766 sessions_nalloc, options.max_sessions); 1767 tmp = xrecallocarray(sessions, sessions_nalloc, 1768 sessions_nalloc + 1, sizeof(*sessions)); 1769 if (tmp == NULL) { 1770 error_f("cannot allocate %d sessions", 1771 sessions_nalloc + 1); 1772 return NULL; 1773 } 1774 sessions = tmp; 1775 session_unused(sessions_nalloc++); 1776 } 1777 1778 if (sessions_first_unused >= sessions_nalloc || 1779 sessions_first_unused < 0) { 1780 fatal_f("insane first_unused %d max %d nalloc %d", 1781 sessions_first_unused, options.max_sessions, 1782 sessions_nalloc); 1783 } 1784 1785 s = &sessions[sessions_first_unused]; 1786 if (s->used) 1787 fatal_f("session %d already used", sessions_first_unused); 1788 sessions_first_unused = s->next_unused; 1789 s->used = 1; 1790 s->next_unused = -1; 1791 debug("session_new: session %d", s->self); 1792 1793 return s; 1794 } 1795 1796 static void 1797 session_dump(void) 1798 { 1799 int i; 1800 for (i = 0; i < sessions_nalloc; i++) { 1801 Session *s = &sessions[i]; 1802 1803 debug("dump: used %d next_unused %d session %d " 1804 "channel %d pid %ld", 1805 s->used, 1806 s->next_unused, 1807 s->self, 1808 s->chanid, 1809 (long)s->pid); 1810 } 1811 } 1812 1813 int 1814 session_open(Authctxt *authctxt, int chanid) 1815 { 1816 Session *s = session_new(); 1817 debug("session_open: channel %d", chanid); 1818 if (s == NULL) { 1819 error("no more sessions"); 1820 return 0; 1821 } 1822 s->authctxt = authctxt; 1823 s->pw = authctxt->pw; 1824 if (s->pw == NULL || !authctxt->valid) 1825 fatal("no user for session %d", s->self); 1826 debug("session_open: session %d: link with channel %d", s->self, chanid); 1827 s->chanid = chanid; 1828 return 1; 1829 } 1830 1831 Session * 1832 session_by_tty(char *tty) 1833 { 1834 int i; 1835 for (i = 0; i < sessions_nalloc; i++) { 1836 Session *s = &sessions[i]; 1837 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) { 1838 debug("session_by_tty: session %d tty %s", i, tty); 1839 return s; 1840 } 1841 } 1842 debug("session_by_tty: unknown tty %.100s", tty); 1843 session_dump(); 1844 return NULL; 1845 } 1846 1847 static Session * 1848 session_by_channel(int id) 1849 { 1850 int i; 1851 for (i = 0; i < sessions_nalloc; i++) { 1852 Session *s = &sessions[i]; 1853 if (s->used && s->chanid == id) { 1854 debug("session_by_channel: session %d channel %d", 1855 i, id); 1856 return s; 1857 } 1858 } 1859 debug("session_by_channel: unknown channel %d", id); 1860 session_dump(); 1861 return NULL; 1862 } 1863 1864 static Session * 1865 session_by_x11_channel(int id) 1866 { 1867 int i, j; 1868 1869 for (i = 0; i < sessions_nalloc; i++) { 1870 Session *s = &sessions[i]; 1871 1872 if (s->x11_chanids == NULL || !s->used) 1873 continue; 1874 for (j = 0; s->x11_chanids[j] != -1; j++) { 1875 if (s->x11_chanids[j] == id) { 1876 debug("session_by_x11_channel: session %d " 1877 "channel %d", s->self, id); 1878 return s; 1879 } 1880 } 1881 } 1882 debug("session_by_x11_channel: unknown channel %d", id); 1883 session_dump(); 1884 return NULL; 1885 } 1886 1887 static Session * 1888 session_by_pid(pid_t pid) 1889 { 1890 int i; 1891 debug("session_by_pid: pid %ld", (long)pid); 1892 for (i = 0; i < sessions_nalloc; i++) { 1893 Session *s = &sessions[i]; 1894 if (s->used && s->pid == pid) 1895 return s; 1896 } 1897 error("session_by_pid: unknown pid %ld", (long)pid); 1898 session_dump(); 1899 return NULL; 1900 } 1901 1902 static int 1903 session_window_change_req(struct ssh *ssh, Session *s) 1904 { 1905 int r; 1906 1907 if ((r = sshpkt_get_u32(ssh, &s->col)) != 0 || 1908 (r = sshpkt_get_u32(ssh, &s->row)) != 0 || 1909 (r = sshpkt_get_u32(ssh, &s->xpixel)) != 0 || 1910 (r = sshpkt_get_u32(ssh, &s->ypixel)) != 0 || 1911 (r = sshpkt_get_end(ssh)) != 0) 1912 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 1913 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel); 1914 return 1; 1915 } 1916 1917 static int 1918 session_pty_req(struct ssh *ssh, Session *s) 1919 { 1920 int r; 1921 1922 if (!auth_opts->permit_pty_flag || !options.permit_tty) { 1923 debug("Allocating a pty not permitted for this connection."); 1924 return 0; 1925 } 1926 if (s->ttyfd != -1) { 1927 ssh_packet_disconnect(ssh, "Protocol error: you already have a pty."); 1928 return 0; 1929 } 1930 1931 if ((r = sshpkt_get_cstring(ssh, &s->term, NULL)) != 0 || 1932 (r = sshpkt_get_u32(ssh, &s->col)) != 0 || 1933 (r = sshpkt_get_u32(ssh, &s->row)) != 0 || 1934 (r = sshpkt_get_u32(ssh, &s->xpixel)) != 0 || 1935 (r = sshpkt_get_u32(ssh, &s->ypixel)) != 0) 1936 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 1937 1938 if (strcmp(s->term, "") == 0) { 1939 free(s->term); 1940 s->term = NULL; 1941 } 1942 1943 /* Allocate a pty and open it. */ 1944 debug("Allocating pty."); 1945 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, 1946 sizeof(s->tty)))) { 1947 free(s->term); 1948 s->term = NULL; 1949 s->ptyfd = -1; 1950 s->ttyfd = -1; 1951 error("session_pty_req: session %d alloc failed", s->self); 1952 return 0; 1953 } 1954 debug("session_pty_req: session %d alloc %s", s->self, s->tty); 1955 1956 ssh_tty_parse_modes(ssh, s->ttyfd); 1957 1958 if ((r = sshpkt_get_end(ssh)) != 0) 1959 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 1960 1961 if (!use_privsep) 1962 pty_setowner(s->pw, s->tty); 1963 1964 /* Set window size from the packet. */ 1965 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel); 1966 1967 session_proctitle(s); 1968 return 1; 1969 } 1970 1971 static int 1972 session_subsystem_req(struct ssh *ssh, Session *s) 1973 { 1974 struct stat st; 1975 int r, success = 0; 1976 char *prog, *cmd, *type; 1977 u_int i; 1978 1979 if ((r = sshpkt_get_cstring(ssh, &s->subsys, NULL)) != 0 || 1980 (r = sshpkt_get_end(ssh)) != 0) 1981 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 1982 debug2("subsystem request for %.100s by user %s", s->subsys, 1983 s->pw->pw_name); 1984 1985 for (i = 0; i < options.num_subsystems; i++) { 1986 if (strcmp(s->subsys, options.subsystem_name[i]) == 0) { 1987 prog = options.subsystem_command[i]; 1988 cmd = options.subsystem_args[i]; 1989 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) { 1990 s->is_subsystem = SUBSYSTEM_INT_SFTP; 1991 debug("subsystem: %s", prog); 1992 } else { 1993 if (stat(prog, &st) == -1) 1994 debug("subsystem: cannot stat %s: %s", 1995 prog, strerror(errno)); 1996 s->is_subsystem = SUBSYSTEM_EXT; 1997 debug("subsystem: exec() %s", cmd); 1998 } 1999 xasprintf(&type, "session:subsystem:%s", 2000 options.subsystem_name[i]); 2001 channel_set_xtype(ssh, s->chanid, type); 2002 free(type); 2003 success = do_exec(ssh, s, cmd) == 0; 2004 break; 2005 } 2006 } 2007 2008 if (!success) 2009 logit("subsystem request for %.100s by user %s failed, " 2010 "subsystem not found", s->subsys, s->pw->pw_name); 2011 2012 return success; 2013 } 2014 2015 static int 2016 session_x11_req(struct ssh *ssh, Session *s) 2017 { 2018 int r, success; 2019 u_char single_connection = 0; 2020 2021 if (s->auth_proto != NULL || s->auth_data != NULL) { 2022 error("session_x11_req: session %d: " 2023 "x11 forwarding already active", s->self); 2024 return 0; 2025 } 2026 if ((r = sshpkt_get_u8(ssh, &single_connection)) != 0 || 2027 (r = sshpkt_get_cstring(ssh, &s->auth_proto, NULL)) != 0 || 2028 (r = sshpkt_get_cstring(ssh, &s->auth_data, NULL)) != 0 || 2029 (r = sshpkt_get_u32(ssh, &s->screen)) != 0 || 2030 (r = sshpkt_get_end(ssh)) != 0) 2031 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2032 2033 s->single_connection = single_connection; 2034 2035 if (xauth_valid_string(s->auth_proto) && 2036 xauth_valid_string(s->auth_data)) 2037 success = session_setup_x11fwd(ssh, s); 2038 else { 2039 success = 0; 2040 error("Invalid X11 forwarding data"); 2041 } 2042 if (!success) { 2043 free(s->auth_proto); 2044 free(s->auth_data); 2045 s->auth_proto = NULL; 2046 s->auth_data = NULL; 2047 } 2048 return success; 2049 } 2050 2051 static int 2052 session_shell_req(struct ssh *ssh, Session *s) 2053 { 2054 int r; 2055 2056 if ((r = sshpkt_get_end(ssh)) != 0) 2057 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2058 2059 channel_set_xtype(ssh, s->chanid, "session:shell"); 2060 2061 return do_exec(ssh, s, NULL) == 0; 2062 } 2063 2064 static int 2065 session_exec_req(struct ssh *ssh, Session *s) 2066 { 2067 u_int success; 2068 int r; 2069 char *command = NULL; 2070 2071 if ((r = sshpkt_get_cstring(ssh, &command, NULL)) != 0 || 2072 (r = sshpkt_get_end(ssh)) != 0) 2073 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2074 2075 channel_set_xtype(ssh, s->chanid, "session:command"); 2076 2077 success = do_exec(ssh, s, command) == 0; 2078 free(command); 2079 return success; 2080 } 2081 2082 static int 2083 session_break_req(struct ssh *ssh, Session *s) 2084 { 2085 int r; 2086 2087 if ((r = sshpkt_get_u32(ssh, NULL)) != 0 || /* ignore */ 2088 (r = sshpkt_get_end(ssh)) != 0) 2089 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2090 2091 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) == -1) 2092 return 0; 2093 return 1; 2094 } 2095 2096 static int 2097 session_env_req(struct ssh *ssh, Session *s) 2098 { 2099 char *name, *val; 2100 u_int i; 2101 int r; 2102 2103 if ((r = sshpkt_get_cstring(ssh, &name, NULL)) != 0 || 2104 (r = sshpkt_get_cstring(ssh, &val, NULL)) != 0 || 2105 (r = sshpkt_get_end(ssh)) != 0) 2106 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2107 2108 /* Don't set too many environment variables */ 2109 if (s->num_env > 128) { 2110 debug2("Ignoring env request %s: too many env vars", name); 2111 goto fail; 2112 } 2113 2114 for (i = 0; i < options.num_accept_env; i++) { 2115 if (match_pattern(name, options.accept_env[i])) { 2116 debug2("Setting env %d: %s=%s", s->num_env, name, val); 2117 s->env = xrecallocarray(s->env, s->num_env, 2118 s->num_env + 1, sizeof(*s->env)); 2119 s->env[s->num_env].name = name; 2120 s->env[s->num_env].val = val; 2121 s->num_env++; 2122 return (1); 2123 } 2124 } 2125 debug2("Ignoring env request %s: disallowed name", name); 2126 2127 fail: 2128 free(name); 2129 free(val); 2130 return (0); 2131 } 2132 2133 /* 2134 * Conversion of signals from ssh channel request names. 2135 * Subset of signals from RFC 4254 section 6.10C, with SIGINFO as 2136 * local extension. 2137 */ 2138 static int 2139 name2sig(char *name) 2140 { 2141 #define SSH_SIG(x) if (strcmp(name, #x) == 0) return SIG ## x 2142 SSH_SIG(HUP); 2143 SSH_SIG(INT); 2144 SSH_SIG(KILL); 2145 SSH_SIG(QUIT); 2146 SSH_SIG(TERM); 2147 SSH_SIG(USR1); 2148 SSH_SIG(USR2); 2149 #undef SSH_SIG 2150 #ifdef SIGINFO 2151 if (strcmp(name, "INFO@openssh.com") == 0) 2152 return SIGINFO; 2153 #endif 2154 return -1; 2155 } 2156 2157 static int 2158 session_signal_req(struct ssh *ssh, Session *s) 2159 { 2160 char *signame = NULL; 2161 int r, sig, success = 0; 2162 2163 if ((r = sshpkt_get_cstring(ssh, &signame, NULL)) != 0 || 2164 (r = sshpkt_get_end(ssh)) != 0) { 2165 error_fr(r, "parse"); 2166 goto out; 2167 } 2168 if ((sig = name2sig(signame)) == -1) { 2169 error_f("unsupported signal \"%s\"", signame); 2170 goto out; 2171 } 2172 if (s->pid <= 0) { 2173 error_f("no pid for session %d", s->self); 2174 goto out; 2175 } 2176 if (s->forced || s->is_subsystem) { 2177 error_f("refusing to send signal %s to %s session", 2178 signame, s->forced ? "forced-command" : "subsystem"); 2179 goto out; 2180 } 2181 if (!use_privsep || mm_is_monitor()) { 2182 error_f("session signalling requires privilege separation"); 2183 goto out; 2184 } 2185 2186 debug_f("signal %s, killpg(%ld, %d)", signame, (long)s->pid, sig); 2187 temporarily_use_uid(s->pw); 2188 r = killpg(s->pid, sig); 2189 restore_uid(); 2190 if (r != 0) { 2191 error_f("killpg(%ld, %d): %s", (long)s->pid, 2192 sig, strerror(errno)); 2193 goto out; 2194 } 2195 2196 /* success */ 2197 success = 1; 2198 out: 2199 free(signame); 2200 return success; 2201 } 2202 2203 static int 2204 session_auth_agent_req(struct ssh *ssh, Session *s) 2205 { 2206 static int called = 0; 2207 int r; 2208 2209 if ((r = sshpkt_get_end(ssh)) != 0) 2210 sshpkt_fatal(ssh, r, "%s: parse packet", __func__); 2211 if (!auth_opts->permit_agent_forwarding_flag || 2212 !options.allow_agent_forwarding) { 2213 debug_f("agent forwarding disabled"); 2214 return 0; 2215 } 2216 if (called) { 2217 return 0; 2218 } else { 2219 called = 1; 2220 return auth_input_request_forwarding(ssh, s->pw); 2221 } 2222 } 2223 2224 int 2225 session_input_channel_req(struct ssh *ssh, Channel *c, const char *rtype) 2226 { 2227 int success = 0; 2228 Session *s; 2229 2230 if ((s = session_by_channel(c->self)) == NULL) { 2231 logit_f("no session %d req %.100s", c->self, rtype); 2232 return 0; 2233 } 2234 debug_f("session %d req %s", s->self, rtype); 2235 2236 /* 2237 * a session is in LARVAL state until a shell, a command 2238 * or a subsystem is executed 2239 */ 2240 if (c->type == SSH_CHANNEL_LARVAL) { 2241 if (strcmp(rtype, "shell") == 0) { 2242 success = session_shell_req(ssh, s); 2243 } else if (strcmp(rtype, "exec") == 0) { 2244 success = session_exec_req(ssh, s); 2245 } else if (strcmp(rtype, "pty-req") == 0) { 2246 success = session_pty_req(ssh, s); 2247 } else if (strcmp(rtype, "x11-req") == 0) { 2248 success = session_x11_req(ssh, s); 2249 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) { 2250 success = session_auth_agent_req(ssh, s); 2251 } else if (strcmp(rtype, "subsystem") == 0) { 2252 success = session_subsystem_req(ssh, s); 2253 } else if (strcmp(rtype, "env") == 0) { 2254 success = session_env_req(ssh, s); 2255 } 2256 } 2257 if (strcmp(rtype, "window-change") == 0) { 2258 success = session_window_change_req(ssh, s); 2259 } else if (strcmp(rtype, "break") == 0) { 2260 success = session_break_req(ssh, s); 2261 } else if (strcmp(rtype, "signal") == 0) { 2262 success = session_signal_req(ssh, s); 2263 } 2264 2265 return success; 2266 } 2267 2268 void 2269 session_set_fds(struct ssh *ssh, Session *s, 2270 int fdin, int fdout, int fderr, int ignore_fderr, int is_tty) 2271 { 2272 /* 2273 * now that have a child and a pipe to the child, 2274 * we can activate our channel and register the fd's 2275 */ 2276 if (s->chanid == -1) 2277 fatal("no channel for session %d", s->self); 2278 channel_set_fds(ssh, s->chanid, 2279 fdout, fdin, fderr, 2280 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ, 2281 1, is_tty, CHAN_SES_WINDOW_DEFAULT); 2282 } 2283 2284 /* 2285 * Function to perform pty cleanup. Also called if we get aborted abnormally 2286 * (e.g., due to a dropped connection). 2287 */ 2288 void 2289 session_pty_cleanup2(Session *s) 2290 { 2291 if (s == NULL) { 2292 error_f("no session"); 2293 return; 2294 } 2295 if (s->ttyfd == -1) 2296 return; 2297 2298 debug_f("session %d release %s", s->self, s->tty); 2299 2300 /* Record that the user has logged out. */ 2301 if (s->pid != 0) 2302 record_logout(s->pid, s->tty, s->pw->pw_name); 2303 2304 /* Release the pseudo-tty. */ 2305 if (getuid() == 0) 2306 pty_release(s->tty); 2307 2308 /* 2309 * Close the server side of the socket pairs. We must do this after 2310 * the pty cleanup, so that another process doesn't get this pty 2311 * while we're still cleaning up. 2312 */ 2313 if (s->ptymaster != -1 && close(s->ptymaster) == -1) 2314 error("close(s->ptymaster/%d): %s", 2315 s->ptymaster, strerror(errno)); 2316 2317 /* unlink pty from session */ 2318 s->ttyfd = -1; 2319 } 2320 2321 void 2322 session_pty_cleanup(Session *s) 2323 { 2324 PRIVSEP(session_pty_cleanup2(s)); 2325 } 2326 2327 static char * 2328 sig2name(int sig) 2329 { 2330 #define SSH_SIG(x) if (sig == SIG ## x) return #x 2331 SSH_SIG(ABRT); 2332 SSH_SIG(ALRM); 2333 SSH_SIG(FPE); 2334 SSH_SIG(HUP); 2335 SSH_SIG(ILL); 2336 SSH_SIG(INT); 2337 SSH_SIG(KILL); 2338 SSH_SIG(PIPE); 2339 SSH_SIG(QUIT); 2340 SSH_SIG(SEGV); 2341 SSH_SIG(TERM); 2342 SSH_SIG(USR1); 2343 SSH_SIG(USR2); 2344 #undef SSH_SIG 2345 return "SIG@openssh.com"; 2346 } 2347 2348 static void 2349 session_close_x11(struct ssh *ssh, int id) 2350 { 2351 Channel *c; 2352 2353 if ((c = channel_by_id(ssh, id)) == NULL) { 2354 debug_f("x11 channel %d missing", id); 2355 } else { 2356 /* Detach X11 listener */ 2357 debug_f("detach x11 channel %d", id); 2358 channel_cancel_cleanup(ssh, id); 2359 if (c->ostate != CHAN_OUTPUT_CLOSED) 2360 chan_mark_dead(ssh, c); 2361 } 2362 } 2363 2364 static void 2365 session_close_single_x11(struct ssh *ssh, int id, int force, void *arg) 2366 { 2367 Session *s; 2368 u_int i; 2369 2370 debug3_f("channel %d", id); 2371 channel_cancel_cleanup(ssh, id); 2372 if ((s = session_by_x11_channel(id)) == NULL) 2373 fatal_f("no x11 channel %d", id); 2374 for (i = 0; s->x11_chanids[i] != -1; i++) { 2375 debug_f("session %d: closing channel %d", 2376 s->self, s->x11_chanids[i]); 2377 /* 2378 * The channel "id" is already closing, but make sure we 2379 * close all of its siblings. 2380 */ 2381 if (s->x11_chanids[i] != id) 2382 session_close_x11(ssh, s->x11_chanids[i]); 2383 } 2384 free(s->x11_chanids); 2385 s->x11_chanids = NULL; 2386 free(s->display); 2387 s->display = NULL; 2388 free(s->auth_proto); 2389 s->auth_proto = NULL; 2390 free(s->auth_data); 2391 s->auth_data = NULL; 2392 free(s->auth_display); 2393 s->auth_display = NULL; 2394 } 2395 2396 static void 2397 session_exit_message(struct ssh *ssh, Session *s, int status) 2398 { 2399 Channel *c; 2400 int r; 2401 2402 if ((c = channel_lookup(ssh, s->chanid)) == NULL) 2403 fatal_f("session %d: no channel %d", s->self, s->chanid); 2404 debug_f("session %d channel %d pid %ld", 2405 s->self, s->chanid, (long)s->pid); 2406 2407 if (WIFEXITED(status)) { 2408 channel_request_start(ssh, s->chanid, "exit-status", 0); 2409 if ((r = sshpkt_put_u32(ssh, WEXITSTATUS(status))) != 0 || 2410 (r = sshpkt_send(ssh)) != 0) 2411 sshpkt_fatal(ssh, r, "%s: exit reply", __func__); 2412 } else if (WIFSIGNALED(status)) { 2413 channel_request_start(ssh, s->chanid, "exit-signal", 0); 2414 #ifndef WCOREDUMP 2415 # define WCOREDUMP(x) (0) 2416 #endif 2417 if ((r = sshpkt_put_cstring(ssh, sig2name(WTERMSIG(status)))) != 0 || 2418 (r = sshpkt_put_u8(ssh, WCOREDUMP(status)? 1 : 0)) != 0 || 2419 (r = sshpkt_put_cstring(ssh, "")) != 0 || 2420 (r = sshpkt_put_cstring(ssh, "")) != 0 || 2421 (r = sshpkt_send(ssh)) != 0) 2422 sshpkt_fatal(ssh, r, "%s: exit reply", __func__); 2423 } else { 2424 /* Some weird exit cause. Just exit. */ 2425 ssh_packet_disconnect(ssh, "wait returned status %04x.", status); 2426 } 2427 2428 /* disconnect channel */ 2429 debug_f("release channel %d", s->chanid); 2430 2431 /* 2432 * Adjust cleanup callback attachment to send close messages when 2433 * the channel gets EOF. The session will be then be closed 2434 * by session_close_by_channel when the child sessions close their fds. 2435 */ 2436 channel_register_cleanup(ssh, c->self, session_close_by_channel, 1); 2437 2438 /* 2439 * emulate a write failure with 'chan_write_failed', nobody will be 2440 * interested in data we write. 2441 * Note that we must not call 'chan_read_failed', since there could 2442 * be some more data waiting in the pipe. 2443 */ 2444 if (c->ostate != CHAN_OUTPUT_CLOSED) 2445 chan_write_failed(ssh, c); 2446 } 2447 2448 void 2449 session_close(struct ssh *ssh, Session *s) 2450 { 2451 u_int i; 2452 2453 verbose("Close session: user %s from %.200s port %d id %d", 2454 s->pw->pw_name, 2455 ssh_remote_ipaddr(ssh), 2456 ssh_remote_port(ssh), 2457 s->self); 2458 2459 if (s->ttyfd != -1) 2460 session_pty_cleanup(s); 2461 free(s->term); 2462 free(s->display); 2463 free(s->x11_chanids); 2464 free(s->auth_display); 2465 free(s->auth_data); 2466 free(s->auth_proto); 2467 free(s->subsys); 2468 if (s->env != NULL) { 2469 for (i = 0; i < s->num_env; i++) { 2470 free(s->env[i].name); 2471 free(s->env[i].val); 2472 } 2473 free(s->env); 2474 } 2475 session_proctitle(s); 2476 session_unused(s->self); 2477 } 2478 2479 void 2480 session_close_by_pid(struct ssh *ssh, pid_t pid, int status) 2481 { 2482 Session *s = session_by_pid(pid); 2483 if (s == NULL) { 2484 debug_f("no session for pid %ld", (long)pid); 2485 return; 2486 } 2487 if (s->chanid != -1) 2488 session_exit_message(ssh, s, status); 2489 if (s->ttyfd != -1) 2490 session_pty_cleanup(s); 2491 s->pid = 0; 2492 } 2493 2494 /* 2495 * this is called when a channel dies before 2496 * the session 'child' itself dies 2497 */ 2498 void 2499 session_close_by_channel(struct ssh *ssh, int id, int force, void *arg) 2500 { 2501 Session *s = session_by_channel(id); 2502 u_int i; 2503 2504 if (s == NULL) { 2505 debug_f("no session for id %d", id); 2506 return; 2507 } 2508 debug_f("channel %d child %ld", id, (long)s->pid); 2509 if (s->pid != 0) { 2510 debug_f("channel %d: has child, ttyfd %d", id, s->ttyfd); 2511 /* 2512 * delay detach of session (unless this is a forced close), 2513 * but release pty, since the fd's to the child are already 2514 * closed 2515 */ 2516 if (s->ttyfd != -1) 2517 session_pty_cleanup(s); 2518 if (!force) 2519 return; 2520 } 2521 /* detach by removing callback */ 2522 channel_cancel_cleanup(ssh, s->chanid); 2523 2524 /* Close any X11 listeners associated with this session */ 2525 if (s->x11_chanids != NULL) { 2526 for (i = 0; s->x11_chanids[i] != -1; i++) { 2527 session_close_x11(ssh, s->x11_chanids[i]); 2528 s->x11_chanids[i] = -1; 2529 } 2530 } 2531 2532 s->chanid = -1; 2533 session_close(ssh, s); 2534 } 2535 2536 void 2537 session_destroy_all(struct ssh *ssh, void (*closefunc)(Session *)) 2538 { 2539 int i; 2540 for (i = 0; i < sessions_nalloc; i++) { 2541 Session *s = &sessions[i]; 2542 if (s->used) { 2543 if (closefunc != NULL) 2544 closefunc(s); 2545 else 2546 session_close(ssh, s); 2547 } 2548 } 2549 } 2550 2551 static char * 2552 session_tty_list(void) 2553 { 2554 static char buf[1024]; 2555 int i; 2556 char *cp; 2557 2558 buf[0] = '\0'; 2559 for (i = 0; i < sessions_nalloc; i++) { 2560 Session *s = &sessions[i]; 2561 if (s->used && s->ttyfd != -1) { 2562 2563 if (strncmp(s->tty, "/dev/", 5) != 0) { 2564 cp = strrchr(s->tty, '/'); 2565 cp = (cp == NULL) ? s->tty : cp + 1; 2566 } else 2567 cp = s->tty + 5; 2568 2569 if (buf[0] != '\0') 2570 strlcat(buf, ",", sizeof buf); 2571 strlcat(buf, cp, sizeof buf); 2572 } 2573 } 2574 if (buf[0] == '\0') 2575 strlcpy(buf, "notty", sizeof buf); 2576 return buf; 2577 } 2578 2579 void 2580 session_proctitle(Session *s) 2581 { 2582 if (s->pw == NULL) 2583 error("no user for session %d", s->self); 2584 else 2585 setproctitle("%s@%s", s->pw->pw_name, session_tty_list()); 2586 } 2587 2588 int 2589 session_setup_x11fwd(struct ssh *ssh, Session *s) 2590 { 2591 struct stat st; 2592 char display[512], auth_display[512]; 2593 char hostname[NI_MAXHOST]; 2594 u_int i; 2595 2596 if (!auth_opts->permit_x11_forwarding_flag) { 2597 ssh_packet_send_debug(ssh, "X11 forwarding disabled by key options."); 2598 return 0; 2599 } 2600 if (!options.x11_forwarding) { 2601 debug("X11 forwarding disabled in server configuration file."); 2602 return 0; 2603 } 2604 if (options.xauth_location == NULL || 2605 (stat(options.xauth_location, &st) == -1)) { 2606 ssh_packet_send_debug(ssh, "No xauth program; cannot forward X11."); 2607 return 0; 2608 } 2609 if (s->display != NULL) { 2610 debug("X11 display already set."); 2611 return 0; 2612 } 2613 if (x11_create_display_inet(ssh, options.x11_display_offset, 2614 options.x11_use_localhost, s->single_connection, 2615 &s->display_number, &s->x11_chanids) == -1) { 2616 debug("x11_create_display_inet failed."); 2617 return 0; 2618 } 2619 for (i = 0; s->x11_chanids[i] != -1; i++) { 2620 channel_register_cleanup(ssh, s->x11_chanids[i], 2621 session_close_single_x11, 0); 2622 } 2623 2624 /* Set up a suitable value for the DISPLAY variable. */ 2625 if (gethostname(hostname, sizeof(hostname)) == -1) 2626 fatal("gethostname: %.100s", strerror(errno)); 2627 /* 2628 * auth_display must be used as the displayname when the 2629 * authorization entry is added with xauth(1). This will be 2630 * different than the DISPLAY string for localhost displays. 2631 */ 2632 if (options.x11_use_localhost) { 2633 snprintf(display, sizeof display, "localhost:%u.%u", 2634 s->display_number, s->screen); 2635 snprintf(auth_display, sizeof auth_display, "unix:%u.%u", 2636 s->display_number, s->screen); 2637 s->display = xstrdup(display); 2638 s->auth_display = xstrdup(auth_display); 2639 } else { 2640 #ifdef IPADDR_IN_DISPLAY 2641 struct hostent *he; 2642 struct in_addr my_addr; 2643 2644 he = gethostbyname(hostname); 2645 if (he == NULL) { 2646 error("Can't get IP address for X11 DISPLAY."); 2647 ssh_packet_send_debug(ssh, "Can't get IP address for X11 DISPLAY."); 2648 return 0; 2649 } 2650 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr)); 2651 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr), 2652 s->display_number, s->screen); 2653 #else 2654 snprintf(display, sizeof display, "%.400s:%u.%u", hostname, 2655 s->display_number, s->screen); 2656 #endif 2657 s->display = xstrdup(display); 2658 s->auth_display = xstrdup(display); 2659 } 2660 2661 return 1; 2662 } 2663 2664 static void 2665 do_authenticated2(struct ssh *ssh, Authctxt *authctxt) 2666 { 2667 server_loop2(ssh, authctxt); 2668 } 2669 2670 void 2671 do_cleanup(struct ssh *ssh, Authctxt *authctxt) 2672 { 2673 static int called = 0; 2674 2675 debug("do_cleanup"); 2676 2677 /* no cleanup if we're in the child for login shell */ 2678 if (is_child) 2679 return; 2680 2681 /* avoid double cleanup */ 2682 if (called) 2683 return; 2684 called = 1; 2685 2686 if (authctxt == NULL) 2687 return; 2688 2689 #ifdef USE_PAM 2690 if (options.use_pam) { 2691 sshpam_cleanup(); 2692 sshpam_thread_cleanup(); 2693 } 2694 #endif 2695 2696 if (!authctxt->authenticated) 2697 return; 2698 2699 #ifdef KRB5 2700 if (options.kerberos_ticket_cleanup && 2701 authctxt->krb5_ctx) 2702 krb5_cleanup_proc(authctxt); 2703 #endif 2704 2705 #ifdef GSSAPI 2706 if (options.gss_cleanup_creds) 2707 ssh_gssapi_cleanup_creds(); 2708 #endif 2709 2710 /* remove agent socket */ 2711 auth_sock_cleanup_proc(authctxt->pw); 2712 2713 /* remove userauth info */ 2714 if (auth_info_file != NULL) { 2715 temporarily_use_uid(authctxt->pw); 2716 unlink(auth_info_file); 2717 restore_uid(); 2718 free(auth_info_file); 2719 auth_info_file = NULL; 2720 } 2721 2722 /* 2723 * Cleanup ptys/utmp only if privsep is disabled, 2724 * or if running in monitor. 2725 */ 2726 if (!use_privsep || mm_is_monitor()) 2727 session_destroy_all(ssh, session_pty_cleanup2); 2728 } 2729 2730 /* Return a name for the remote host that fits inside utmp_size */ 2731 2732 const char * 2733 session_get_remote_name_or_ip(struct ssh *ssh, u_int utmp_size, int use_dns) 2734 { 2735 const char *remote = ""; 2736 2737 if (utmp_size > 0) 2738 remote = auth_get_canonical_hostname(ssh, use_dns); 2739 if (utmp_size == 0 || strlen(remote) > utmp_size) 2740 remote = ssh_remote_ipaddr(ssh); 2741 return remote; 2742 } 2743 2744