- (dtucker) [platform.c platform.h session.c] Move the Cygwin special-case
[openssh-git.git] / session.c
blob58e68128260b0bc28594549b64f8f0ee1d3c73d6
1 /* $OpenBSD: session.c,v 1.256 2010/06/25 07:20:04 djm Exp $ */
2 /*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
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".
12 * SSH2 support by Markus Friedl.
13 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
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.
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.
36 #include "includes.h"
38 #include <sys/types.h>
39 #include <sys/param.h>
40 #ifdef HAVE_SYS_STAT_H
41 # include <sys/stat.h>
42 #endif
43 #include <sys/socket.h>
44 #include <sys/un.h>
45 #include <sys/wait.h>
47 #include <arpa/inet.h>
49 #include <errno.h>
50 #include <fcntl.h>
51 #include <grp.h>
52 #ifdef HAVE_PATHS_H
53 #include <paths.h>
54 #endif
55 #include <pwd.h>
56 #include <signal.h>
57 #include <stdarg.h>
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include <unistd.h>
63 #include "openbsd-compat/sys-queue.h"
64 #include "xmalloc.h"
65 #include "ssh.h"
66 #include "ssh1.h"
67 #include "ssh2.h"
68 #include "sshpty.h"
69 #include "packet.h"
70 #include "buffer.h"
71 #include "match.h"
72 #include "uidswap.h"
73 #include "compat.h"
74 #include "channels.h"
75 #include "key.h"
76 #include "cipher.h"
77 #ifdef GSSAPI
78 #include "ssh-gss.h"
79 #endif
80 #include "hostfile.h"
81 #include "auth.h"
82 #include "auth-options.h"
83 #include "pathnames.h"
84 #include "log.h"
85 #include "servconf.h"
86 #include "sshlogin.h"
87 #include "serverloop.h"
88 #include "canohost.h"
89 #include "misc.h"
90 #include "session.h"
91 #include "kex.h"
92 #include "monitor_wrap.h"
93 #include "sftp.h"
95 #if defined(KRB5) && defined(USE_AFS)
96 #include <kafs.h>
97 #endif
99 #define IS_INTERNAL_SFTP(c) \
100 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
101 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
102 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
103 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
105 /* func */
107 Session *session_new(void);
108 void session_set_fds(Session *, int, int, int, int, int);
109 void session_pty_cleanup(Session *);
110 void session_proctitle(Session *);
111 int session_setup_x11fwd(Session *);
112 int do_exec_pty(Session *, const char *);
113 int do_exec_no_pty(Session *, const char *);
114 int do_exec(Session *, const char *);
115 void do_login(Session *, const char *);
116 #ifdef LOGIN_NEEDS_UTMPX
117 static void do_pre_login(Session *s);
118 #endif
119 void do_child(Session *, const char *);
120 void do_motd(void);
121 int check_quietlogin(Session *, const char *);
123 static void do_authenticated1(Authctxt *);
124 static void do_authenticated2(Authctxt *);
126 static int session_pty_req(Session *);
128 /* import */
129 extern ServerOptions options;
130 extern char *__progname;
131 extern int log_stderr;
132 extern int debug_flag;
133 extern u_int utmp_len;
134 extern int startup_pipe;
135 extern void destroy_sensitive_data(void);
136 extern Buffer loginmsg;
138 /* original command from peer. */
139 const char *original_command = NULL;
141 /* data */
142 static int sessions_first_unused = -1;
143 static int sessions_nalloc = 0;
144 static Session *sessions = NULL;
146 #define SUBSYSTEM_NONE 0
147 #define SUBSYSTEM_EXT 1
148 #define SUBSYSTEM_INT_SFTP 2
149 #define SUBSYSTEM_INT_SFTP_ERROR 3
151 #ifdef HAVE_LOGIN_CAP
152 login_cap_t *lc;
153 #endif
155 static int is_child = 0;
157 /* Name and directory of socket for authentication agent forwarding. */
158 static char *auth_sock_name = NULL;
159 static char *auth_sock_dir = NULL;
161 /* removes the agent forwarding socket */
163 static void
164 auth_sock_cleanup_proc(struct passwd *pw)
166 if (auth_sock_name != NULL) {
167 temporarily_use_uid(pw);
168 unlink(auth_sock_name);
169 rmdir(auth_sock_dir);
170 auth_sock_name = NULL;
171 restore_uid();
175 static int
176 auth_input_request_forwarding(struct passwd * pw)
178 Channel *nc;
179 int sock = -1;
180 struct sockaddr_un sunaddr;
182 if (auth_sock_name != NULL) {
183 error("authentication forwarding requested twice.");
184 return 0;
187 /* Temporarily drop privileged uid for mkdir/bind. */
188 temporarily_use_uid(pw);
190 /* Allocate a buffer for the socket name, and format the name. */
191 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
193 /* Create private directory for socket */
194 if (mkdtemp(auth_sock_dir) == NULL) {
195 packet_send_debug("Agent forwarding disabled: "
196 "mkdtemp() failed: %.100s", strerror(errno));
197 restore_uid();
198 xfree(auth_sock_dir);
199 auth_sock_dir = NULL;
200 goto authsock_err;
203 xasprintf(&auth_sock_name, "%s/agent.%ld",
204 auth_sock_dir, (long) getpid());
206 /* Create the socket. */
207 sock = socket(AF_UNIX, SOCK_STREAM, 0);
208 if (sock < 0) {
209 error("socket: %.100s", strerror(errno));
210 restore_uid();
211 goto authsock_err;
214 /* Bind it to the name. */
215 memset(&sunaddr, 0, sizeof(sunaddr));
216 sunaddr.sun_family = AF_UNIX;
217 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
219 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
220 error("bind: %.100s", strerror(errno));
221 restore_uid();
222 goto authsock_err;
225 /* Restore the privileged uid. */
226 restore_uid();
228 /* Start listening on the socket. */
229 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
230 error("listen: %.100s", strerror(errno));
231 goto authsock_err;
234 /* Allocate a channel for the authentication agent socket. */
235 nc = channel_new("auth socket",
236 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
237 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
238 0, "auth socket", 1);
239 nc->path = xstrdup(auth_sock_name);
240 return 1;
242 authsock_err:
243 if (auth_sock_name != NULL)
244 xfree(auth_sock_name);
245 if (auth_sock_dir != NULL) {
246 rmdir(auth_sock_dir);
247 xfree(auth_sock_dir);
249 if (sock != -1)
250 close(sock);
251 auth_sock_name = NULL;
252 auth_sock_dir = NULL;
253 return 0;
256 static void
257 display_loginmsg(void)
259 if (buffer_len(&loginmsg) > 0) {
260 buffer_append(&loginmsg, "\0", 1);
261 printf("%s", (char *)buffer_ptr(&loginmsg));
262 buffer_clear(&loginmsg);
266 void
267 do_authenticated(Authctxt *authctxt)
269 setproctitle("%s", authctxt->pw->pw_name);
271 /* setup the channel layer */
272 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
273 channel_permit_all_opens();
275 auth_debug_send();
277 if (compat20)
278 do_authenticated2(authctxt);
279 else
280 do_authenticated1(authctxt);
282 do_cleanup(authctxt);
286 * Prepares for an interactive session. This is called after the user has
287 * been successfully authenticated. During this message exchange, pseudo
288 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
289 * are requested, etc.
291 static void
292 do_authenticated1(Authctxt *authctxt)
294 Session *s;
295 char *command;
296 int success, type, screen_flag;
297 int enable_compression_after_reply = 0;
298 u_int proto_len, data_len, dlen, compression_level = 0;
300 s = session_new();
301 if (s == NULL) {
302 error("no more sessions");
303 return;
305 s->authctxt = authctxt;
306 s->pw = authctxt->pw;
309 * We stay in this loop until the client requests to execute a shell
310 * or a command.
312 for (;;) {
313 success = 0;
315 /* Get a packet from the client. */
316 type = packet_read();
318 /* Process the packet. */
319 switch (type) {
320 case SSH_CMSG_REQUEST_COMPRESSION:
321 compression_level = packet_get_int();
322 packet_check_eom();
323 if (compression_level < 1 || compression_level > 9) {
324 packet_send_debug("Received invalid compression level %d.",
325 compression_level);
326 break;
328 if (options.compression == COMP_NONE) {
329 debug2("compression disabled");
330 break;
332 /* Enable compression after we have responded with SUCCESS. */
333 enable_compression_after_reply = 1;
334 success = 1;
335 break;
337 case SSH_CMSG_REQUEST_PTY:
338 success = session_pty_req(s);
339 break;
341 case SSH_CMSG_X11_REQUEST_FORWARDING:
342 s->auth_proto = packet_get_string(&proto_len);
343 s->auth_data = packet_get_string(&data_len);
345 screen_flag = packet_get_protocol_flags() &
346 SSH_PROTOFLAG_SCREEN_NUMBER;
347 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
349 if (packet_remaining() == 4) {
350 if (!screen_flag)
351 debug2("Buggy client: "
352 "X11 screen flag missing");
353 s->screen = packet_get_int();
354 } else {
355 s->screen = 0;
357 packet_check_eom();
358 success = session_setup_x11fwd(s);
359 if (!success) {
360 xfree(s->auth_proto);
361 xfree(s->auth_data);
362 s->auth_proto = NULL;
363 s->auth_data = NULL;
365 break;
367 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
368 if (!options.allow_agent_forwarding ||
369 no_agent_forwarding_flag || compat13) {
370 debug("Authentication agent forwarding not permitted for this authentication.");
371 break;
373 debug("Received authentication agent forwarding request.");
374 success = auth_input_request_forwarding(s->pw);
375 break;
377 case SSH_CMSG_PORT_FORWARD_REQUEST:
378 if (no_port_forwarding_flag) {
379 debug("Port forwarding not permitted for this authentication.");
380 break;
382 if (!options.allow_tcp_forwarding) {
383 debug("Port forwarding not permitted.");
384 break;
386 debug("Received TCP/IP port forwarding request.");
387 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
388 options.gateway_ports) < 0) {
389 debug("Port forwarding failed.");
390 break;
392 success = 1;
393 break;
395 case SSH_CMSG_MAX_PACKET_SIZE:
396 if (packet_set_maxsize(packet_get_int()) > 0)
397 success = 1;
398 break;
400 case SSH_CMSG_EXEC_SHELL:
401 case SSH_CMSG_EXEC_CMD:
402 if (type == SSH_CMSG_EXEC_CMD) {
403 command = packet_get_string(&dlen);
404 debug("Exec command '%.500s'", command);
405 if (do_exec(s, command) != 0)
406 packet_disconnect(
407 "command execution failed");
408 xfree(command);
409 } else {
410 if (do_exec(s, NULL) != 0)
411 packet_disconnect(
412 "shell execution failed");
414 packet_check_eom();
415 session_close(s);
416 return;
418 default:
420 * Any unknown messages in this phase are ignored,
421 * and a failure message is returned.
423 logit("Unknown packet type received after authentication: %d", type);
425 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
426 packet_send();
427 packet_write_wait();
429 /* Enable compression now that we have replied if appropriate. */
430 if (enable_compression_after_reply) {
431 enable_compression_after_reply = 0;
432 packet_start_compression(compression_level);
437 #define USE_PIPES
439 * This is called to fork and execute a command when we have no tty. This
440 * will call do_child from the child, and server_loop from the parent after
441 * setting up file descriptors and such.
444 do_exec_no_pty(Session *s, const char *command)
446 pid_t pid;
448 #ifdef USE_PIPES
449 int pin[2], pout[2], perr[2];
451 if (s == NULL)
452 fatal("do_exec_no_pty: no session");
454 /* Allocate pipes for communicating with the program. */
455 if (pipe(pin) < 0) {
456 error("%s: pipe in: %.100s", __func__, strerror(errno));
457 return -1;
459 if (pipe(pout) < 0) {
460 error("%s: pipe out: %.100s", __func__, strerror(errno));
461 close(pin[0]);
462 close(pin[1]);
463 return -1;
465 if (pipe(perr) < 0) {
466 error("%s: pipe err: %.100s", __func__,
467 strerror(errno));
468 close(pin[0]);
469 close(pin[1]);
470 close(pout[0]);
471 close(pout[1]);
472 return -1;
474 #else
475 int inout[2], err[2];
477 if (s == NULL)
478 fatal("do_exec_no_pty: no session");
480 /* Uses socket pairs to communicate with the program. */
481 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
482 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
483 return -1;
485 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
486 error("%s: socketpair #2: %.100s", __func__,
487 strerror(errno));
488 close(inout[0]);
489 close(inout[1]);
490 return -1;
492 #endif
494 session_proctitle(s);
496 /* Fork the child. */
497 switch ((pid = fork())) {
498 case -1:
499 error("%s: fork: %.100s", __func__, strerror(errno));
500 #ifdef USE_PIPES
501 close(pin[0]);
502 close(pin[1]);
503 close(pout[0]);
504 close(pout[1]);
505 close(perr[0]);
506 close(perr[1]);
507 #else
508 close(inout[0]);
509 close(inout[1]);
510 close(err[0]);
511 close(err[1]);
512 #endif
513 return -1;
514 case 0:
515 is_child = 1;
517 /* Child. Reinitialize the log since the pid has changed. */
518 log_init(__progname, options.log_level,
519 options.log_facility, log_stderr);
522 * Create a new session and process group since the 4.4BSD
523 * setlogin() affects the entire process group.
525 if (setsid() < 0)
526 error("setsid failed: %.100s", strerror(errno));
528 #ifdef USE_PIPES
530 * Redirect stdin. We close the parent side of the socket
531 * pair, and make the child side the standard input.
533 close(pin[1]);
534 if (dup2(pin[0], 0) < 0)
535 perror("dup2 stdin");
536 close(pin[0]);
538 /* Redirect stdout. */
539 close(pout[0]);
540 if (dup2(pout[1], 1) < 0)
541 perror("dup2 stdout");
542 close(pout[1]);
544 /* Redirect stderr. */
545 close(perr[0]);
546 if (dup2(perr[1], 2) < 0)
547 perror("dup2 stderr");
548 close(perr[1]);
549 #else
551 * Redirect stdin, stdout, and stderr. Stdin and stdout will
552 * use the same socket, as some programs (particularly rdist)
553 * seem to depend on it.
555 close(inout[1]);
556 close(err[1]);
557 if (dup2(inout[0], 0) < 0) /* stdin */
558 perror("dup2 stdin");
559 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
560 perror("dup2 stdout");
561 close(inout[0]);
562 if (dup2(err[0], 2) < 0) /* stderr */
563 perror("dup2 stderr");
564 close(err[0]);
565 #endif
568 #ifdef _UNICOS
569 cray_init_job(s->pw); /* set up cray jid and tmpdir */
570 #endif
572 /* Do processing for the child (exec command etc). */
573 do_child(s, command);
574 /* NOTREACHED */
575 default:
576 break;
579 #ifdef _UNICOS
580 signal(WJSIGNAL, cray_job_termination_handler);
581 #endif /* _UNICOS */
582 #ifdef HAVE_CYGWIN
583 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
584 #endif
586 s->pid = pid;
587 /* Set interactive/non-interactive mode. */
588 packet_set_interactive(s->display != NULL);
591 * Clear loginmsg, since it's the child's responsibility to display
592 * it to the user, otherwise multiple sessions may accumulate
593 * multiple copies of the login messages.
595 buffer_clear(&loginmsg);
597 #ifdef USE_PIPES
598 /* We are the parent. Close the child sides of the pipes. */
599 close(pin[0]);
600 close(pout[1]);
601 close(perr[1]);
603 if (compat20) {
604 session_set_fds(s, pin[1], pout[0], perr[0],
605 s->is_subsystem, 0);
606 } else {
607 /* Enter the interactive session. */
608 server_loop(pid, pin[1], pout[0], perr[0]);
609 /* server_loop has closed pin[1], pout[0], and perr[0]. */
611 #else
612 /* We are the parent. Close the child sides of the socket pairs. */
613 close(inout[0]);
614 close(err[0]);
617 * Enter the interactive session. Note: server_loop must be able to
618 * handle the case that fdin and fdout are the same.
620 if (compat20) {
621 session_set_fds(s, inout[1], inout[1], err[1],
622 s->is_subsystem, 0);
623 } else {
624 server_loop(pid, inout[1], inout[1], err[1]);
625 /* server_loop has closed inout[1] and err[1]. */
627 #endif
628 return 0;
632 * This is called to fork and execute a command when we have a tty. This
633 * will call do_child from the child, and server_loop from the parent after
634 * setting up file descriptors, controlling tty, updating wtmp, utmp,
635 * lastlog, and other such operations.
638 do_exec_pty(Session *s, const char *command)
640 int fdout, ptyfd, ttyfd, ptymaster;
641 pid_t pid;
643 if (s == NULL)
644 fatal("do_exec_pty: no session");
645 ptyfd = s->ptyfd;
646 ttyfd = s->ttyfd;
649 * Create another descriptor of the pty master side for use as the
650 * standard input. We could use the original descriptor, but this
651 * simplifies code in server_loop. The descriptor is bidirectional.
652 * Do this before forking (and cleanup in the child) so as to
653 * detect and gracefully fail out-of-fd conditions.
655 if ((fdout = dup(ptyfd)) < 0) {
656 error("%s: dup #1: %s", __func__, strerror(errno));
657 close(ttyfd);
658 close(ptyfd);
659 return -1;
661 /* we keep a reference to the pty master */
662 if ((ptymaster = dup(ptyfd)) < 0) {
663 error("%s: dup #2: %s", __func__, strerror(errno));
664 close(ttyfd);
665 close(ptyfd);
666 close(fdout);
667 return -1;
670 /* Fork the child. */
671 switch ((pid = fork())) {
672 case -1:
673 error("%s: fork: %.100s", __func__, strerror(errno));
674 close(fdout);
675 close(ptymaster);
676 close(ttyfd);
677 close(ptyfd);
678 return -1;
679 case 0:
680 is_child = 1;
682 close(fdout);
683 close(ptymaster);
685 /* Child. Reinitialize the log because the pid has changed. */
686 log_init(__progname, options.log_level,
687 options.log_facility, log_stderr);
688 /* Close the master side of the pseudo tty. */
689 close(ptyfd);
691 /* Make the pseudo tty our controlling tty. */
692 pty_make_controlling_tty(&ttyfd, s->tty);
694 /* Redirect stdin/stdout/stderr from the pseudo tty. */
695 if (dup2(ttyfd, 0) < 0)
696 error("dup2 stdin: %s", strerror(errno));
697 if (dup2(ttyfd, 1) < 0)
698 error("dup2 stdout: %s", strerror(errno));
699 if (dup2(ttyfd, 2) < 0)
700 error("dup2 stderr: %s", strerror(errno));
702 /* Close the extra descriptor for the pseudo tty. */
703 close(ttyfd);
705 /* record login, etc. similar to login(1) */
706 #ifndef HAVE_OSF_SIA
707 if (!(options.use_login && command == NULL)) {
708 #ifdef _UNICOS
709 cray_init_job(s->pw); /* set up cray jid and tmpdir */
710 #endif /* _UNICOS */
711 do_login(s, command);
713 # ifdef LOGIN_NEEDS_UTMPX
714 else
715 do_pre_login(s);
716 # endif
717 #endif
719 * Do common processing for the child, such as execing
720 * the command.
722 do_child(s, command);
723 /* NOTREACHED */
724 default:
725 break;
728 #ifdef _UNICOS
729 signal(WJSIGNAL, cray_job_termination_handler);
730 #endif /* _UNICOS */
731 #ifdef HAVE_CYGWIN
732 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
733 #endif
735 s->pid = pid;
737 /* Parent. Close the slave side of the pseudo tty. */
738 close(ttyfd);
740 /* Enter interactive session. */
741 s->ptymaster = ptymaster;
742 packet_set_interactive(1);
743 if (compat20) {
744 session_set_fds(s, ptyfd, fdout, -1, 1, 1);
745 } else {
746 server_loop(pid, ptyfd, fdout, -1);
747 /* server_loop _has_ closed ptyfd and fdout. */
749 return 0;
752 #ifdef LOGIN_NEEDS_UTMPX
753 static void
754 do_pre_login(Session *s)
756 socklen_t fromlen;
757 struct sockaddr_storage from;
758 pid_t pid = getpid();
761 * Get IP address of client. If the connection is not a socket, let
762 * the address be 0.0.0.0.
764 memset(&from, 0, sizeof(from));
765 fromlen = sizeof(from);
766 if (packet_connection_is_on_socket()) {
767 if (getpeername(packet_get_connection_in(),
768 (struct sockaddr *)&from, &fromlen) < 0) {
769 debug("getpeername: %.100s", strerror(errno));
770 cleanup_exit(255);
774 record_utmp_only(pid, s->tty, s->pw->pw_name,
775 get_remote_name_or_ip(utmp_len, options.use_dns),
776 (struct sockaddr *)&from, fromlen);
778 #endif
781 * This is called to fork and execute a command. If another command is
782 * to be forced, execute that instead.
785 do_exec(Session *s, const char *command)
787 int ret;
789 if (options.adm_forced_command) {
790 original_command = command;
791 command = options.adm_forced_command;
792 if (IS_INTERNAL_SFTP(command)) {
793 s->is_subsystem = s->is_subsystem ?
794 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
795 } else if (s->is_subsystem)
796 s->is_subsystem = SUBSYSTEM_EXT;
797 debug("Forced command (config) '%.900s'", command);
798 } else if (forced_command) {
799 original_command = command;
800 command = forced_command;
801 if (IS_INTERNAL_SFTP(command)) {
802 s->is_subsystem = s->is_subsystem ?
803 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
804 } else if (s->is_subsystem)
805 s->is_subsystem = SUBSYSTEM_EXT;
806 debug("Forced command (key option) '%.900s'", command);
809 #ifdef SSH_AUDIT_EVENTS
810 if (command != NULL)
811 PRIVSEP(audit_run_command(command));
812 else if (s->ttyfd == -1) {
813 char *shell = s->pw->pw_shell;
815 if (shell[0] == '\0') /* empty shell means /bin/sh */
816 shell =_PATH_BSHELL;
817 PRIVSEP(audit_run_command(shell));
819 #endif
820 if (s->ttyfd != -1)
821 ret = do_exec_pty(s, command);
822 else
823 ret = do_exec_no_pty(s, command);
825 original_command = NULL;
828 * Clear loginmsg: it's the child's responsibility to display
829 * it to the user, otherwise multiple sessions may accumulate
830 * multiple copies of the login messages.
832 buffer_clear(&loginmsg);
834 return ret;
837 /* administrative, login(1)-like work */
838 void
839 do_login(Session *s, const char *command)
841 socklen_t fromlen;
842 struct sockaddr_storage from;
843 struct passwd * pw = s->pw;
844 pid_t pid = getpid();
847 * Get IP address of client. If the connection is not a socket, let
848 * the address be 0.0.0.0.
850 memset(&from, 0, sizeof(from));
851 fromlen = sizeof(from);
852 if (packet_connection_is_on_socket()) {
853 if (getpeername(packet_get_connection_in(),
854 (struct sockaddr *)&from, &fromlen) < 0) {
855 debug("getpeername: %.100s", strerror(errno));
856 cleanup_exit(255);
860 /* Record that there was a login on that tty from the remote host. */
861 if (!use_privsep)
862 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
863 get_remote_name_or_ip(utmp_len,
864 options.use_dns),
865 (struct sockaddr *)&from, fromlen);
867 #ifdef USE_PAM
869 * If password change is needed, do it now.
870 * This needs to occur before the ~/.hushlogin check.
872 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
873 display_loginmsg();
874 do_pam_chauthtok();
875 s->authctxt->force_pwchange = 0;
876 /* XXX - signal [net] parent to enable forwardings */
878 #endif
880 if (check_quietlogin(s, command))
881 return;
883 display_loginmsg();
885 do_motd();
889 * Display the message of the day.
891 void
892 do_motd(void)
894 FILE *f;
895 char buf[256];
897 if (options.print_motd) {
898 #ifdef HAVE_LOGIN_CAP
899 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
900 "/etc/motd"), "r");
901 #else
902 f = fopen("/etc/motd", "r");
903 #endif
904 if (f) {
905 while (fgets(buf, sizeof(buf), f))
906 fputs(buf, stdout);
907 fclose(f);
914 * Check for quiet login, either .hushlogin or command given.
917 check_quietlogin(Session *s, const char *command)
919 char buf[256];
920 struct passwd *pw = s->pw;
921 struct stat st;
923 /* Return 1 if .hushlogin exists or a command given. */
924 if (command != NULL)
925 return 1;
926 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
927 #ifdef HAVE_LOGIN_CAP
928 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
929 return 1;
930 #else
931 if (stat(buf, &st) >= 0)
932 return 1;
933 #endif
934 return 0;
938 * Sets the value of the given variable in the environment. If the variable
939 * already exists, its value is overridden.
941 void
942 child_set_env(char ***envp, u_int *envsizep, const char *name,
943 const char *value)
945 char **env;
946 u_int envsize;
947 u_int i, namelen;
950 * If we're passed an uninitialized list, allocate a single null
951 * entry before continuing.
953 if (*envp == NULL && *envsizep == 0) {
954 *envp = xmalloc(sizeof(char *));
955 *envp[0] = NULL;
956 *envsizep = 1;
960 * Find the slot where the value should be stored. If the variable
961 * already exists, we reuse the slot; otherwise we append a new slot
962 * at the end of the array, expanding if necessary.
964 env = *envp;
965 namelen = strlen(name);
966 for (i = 0; env[i]; i++)
967 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
968 break;
969 if (env[i]) {
970 /* Reuse the slot. */
971 xfree(env[i]);
972 } else {
973 /* New variable. Expand if necessary. */
974 envsize = *envsizep;
975 if (i >= envsize - 1) {
976 if (envsize >= 1000)
977 fatal("child_set_env: too many env vars");
978 envsize += 50;
979 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
980 *envsizep = envsize;
982 /* Need to set the NULL pointer at end of array beyond the new slot. */
983 env[i + 1] = NULL;
986 /* Allocate space and format the variable in the appropriate slot. */
987 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
988 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
992 * Reads environment variables from the given file and adds/overrides them
993 * into the environment. If the file does not exist, this does nothing.
994 * Otherwise, it must consist of empty lines, comments (line starts with '#')
995 * and assignments of the form name=value. No other forms are allowed.
997 static void
998 read_environment_file(char ***env, u_int *envsize,
999 const char *filename)
1001 FILE *f;
1002 char buf[4096];
1003 char *cp, *value;
1004 u_int lineno = 0;
1006 f = fopen(filename, "r");
1007 if (!f)
1008 return;
1010 while (fgets(buf, sizeof(buf), f)) {
1011 if (++lineno > 1000)
1012 fatal("Too many lines in environment file %s", filename);
1013 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1015 if (!*cp || *cp == '#' || *cp == '\n')
1016 continue;
1018 cp[strcspn(cp, "\n")] = '\0';
1020 value = strchr(cp, '=');
1021 if (value == NULL) {
1022 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1023 filename);
1024 continue;
1027 * Replace the equals sign by nul, and advance value to
1028 * the value string.
1030 *value = '\0';
1031 value++;
1032 child_set_env(env, envsize, cp, value);
1034 fclose(f);
1037 #ifdef HAVE_ETC_DEFAULT_LOGIN
1039 * Return named variable from specified environment, or NULL if not present.
1041 static char *
1042 child_get_env(char **env, const char *name)
1044 int i;
1045 size_t len;
1047 len = strlen(name);
1048 for (i=0; env[i] != NULL; i++)
1049 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1050 return(env[i] + len + 1);
1051 return NULL;
1055 * Read /etc/default/login.
1056 * We pick up the PATH (or SUPATH for root) and UMASK.
1058 static void
1059 read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1061 char **tmpenv = NULL, *var;
1062 u_int i, tmpenvsize = 0;
1063 u_long mask;
1066 * We don't want to copy the whole file to the child's environment,
1067 * so we use a temporary environment and copy the variables we're
1068 * interested in.
1070 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1072 if (tmpenv == NULL)
1073 return;
1075 if (uid == 0)
1076 var = child_get_env(tmpenv, "SUPATH");
1077 else
1078 var = child_get_env(tmpenv, "PATH");
1079 if (var != NULL)
1080 child_set_env(env, envsize, "PATH", var);
1082 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1083 if (sscanf(var, "%5lo", &mask) == 1)
1084 umask((mode_t)mask);
1086 for (i = 0; tmpenv[i] != NULL; i++)
1087 xfree(tmpenv[i]);
1088 xfree(tmpenv);
1090 #endif /* HAVE_ETC_DEFAULT_LOGIN */
1092 void
1093 copy_environment(char **source, char ***env, u_int *envsize)
1095 char *var_name, *var_val;
1096 int i;
1098 if (source == NULL)
1099 return;
1101 for(i = 0; source[i] != NULL; i++) {
1102 var_name = xstrdup(source[i]);
1103 if ((var_val = strstr(var_name, "=")) == NULL) {
1104 xfree(var_name);
1105 continue;
1107 *var_val++ = '\0';
1109 debug3("Copy environment: %s=%s", var_name, var_val);
1110 child_set_env(env, envsize, var_name, var_val);
1112 xfree(var_name);
1116 static char **
1117 do_setup_env(Session *s, const char *shell)
1119 char buf[256];
1120 u_int i, envsize;
1121 char **env, *laddr;
1122 struct passwd *pw = s->pw;
1123 #if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
1124 char *path = NULL;
1125 #endif
1127 /* Initialize the environment. */
1128 envsize = 100;
1129 env = xcalloc(envsize, sizeof(char *));
1130 env[0] = NULL;
1132 #ifdef HAVE_CYGWIN
1134 * The Windows environment contains some setting which are
1135 * important for a running system. They must not be dropped.
1138 char **p;
1140 p = fetch_windows_environment();
1141 copy_environment(p, &env, &envsize);
1142 free_windows_environment(p);
1144 #endif
1146 #ifdef GSSAPI
1147 /* Allow any GSSAPI methods that we've used to alter
1148 * the childs environment as they see fit
1150 ssh_gssapi_do_child(&env, &envsize);
1151 #endif
1153 if (!options.use_login) {
1154 /* Set basic environment. */
1155 for (i = 0; i < s->num_env; i++)
1156 child_set_env(&env, &envsize, s->env[i].name,
1157 s->env[i].val);
1159 child_set_env(&env, &envsize, "USER", pw->pw_name);
1160 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1161 #ifdef _AIX
1162 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1163 #endif
1164 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
1165 #ifdef HAVE_LOGIN_CAP
1166 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1167 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1168 else
1169 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
1170 #else /* HAVE_LOGIN_CAP */
1171 # ifndef HAVE_CYGWIN
1173 * There's no standard path on Windows. The path contains
1174 * important components pointing to the system directories,
1175 * needed for loading shared libraries. So the path better
1176 * remains intact here.
1178 # ifdef HAVE_ETC_DEFAULT_LOGIN
1179 read_etc_default_login(&env, &envsize, pw->pw_uid);
1180 path = child_get_env(env, "PATH");
1181 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1182 if (path == NULL || *path == '\0') {
1183 child_set_env(&env, &envsize, "PATH",
1184 s->pw->pw_uid == 0 ?
1185 SUPERUSER_PATH : _PATH_STDPATH);
1187 # endif /* HAVE_CYGWIN */
1188 #endif /* HAVE_LOGIN_CAP */
1190 snprintf(buf, sizeof buf, "%.200s/%.50s",
1191 _PATH_MAILDIR, pw->pw_name);
1192 child_set_env(&env, &envsize, "MAIL", buf);
1194 /* Normal systems set SHELL by default. */
1195 child_set_env(&env, &envsize, "SHELL", shell);
1197 if (getenv("TZ"))
1198 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1200 /* Set custom environment options from RSA authentication. */
1201 if (!options.use_login) {
1202 while (custom_environment) {
1203 struct envstring *ce = custom_environment;
1204 char *str = ce->s;
1206 for (i = 0; str[i] != '=' && str[i]; i++)
1208 if (str[i] == '=') {
1209 str[i] = 0;
1210 child_set_env(&env, &envsize, str, str + i + 1);
1212 custom_environment = ce->next;
1213 xfree(ce->s);
1214 xfree(ce);
1218 /* SSH_CLIENT deprecated */
1219 snprintf(buf, sizeof buf, "%.50s %d %d",
1220 get_remote_ipaddr(), get_remote_port(), get_local_port());
1221 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1223 laddr = get_local_ipaddr(packet_get_connection_in());
1224 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
1225 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1226 xfree(laddr);
1227 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1229 if (s->ttyfd != -1)
1230 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1231 if (s->term)
1232 child_set_env(&env, &envsize, "TERM", s->term);
1233 if (s->display)
1234 child_set_env(&env, &envsize, "DISPLAY", s->display);
1235 if (original_command)
1236 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1237 original_command);
1239 #ifdef _UNICOS
1240 if (cray_tmpdir[0] != '\0')
1241 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1242 #endif /* _UNICOS */
1245 * Since we clear KRB5CCNAME at startup, if it's set now then it
1246 * must have been set by a native authentication method (eg AIX or
1247 * SIA), so copy it to the child.
1250 char *cp;
1252 if ((cp = getenv("KRB5CCNAME")) != NULL)
1253 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1256 #ifdef _AIX
1258 char *cp;
1260 if ((cp = getenv("AUTHSTATE")) != NULL)
1261 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1262 read_environment_file(&env, &envsize, "/etc/environment");
1264 #endif
1265 #ifdef KRB5
1266 if (s->authctxt->krb5_ccname)
1267 child_set_env(&env, &envsize, "KRB5CCNAME",
1268 s->authctxt->krb5_ccname);
1269 #endif
1270 #ifdef USE_PAM
1272 * Pull in any environment variables that may have
1273 * been set by PAM.
1275 if (options.use_pam) {
1276 char **p;
1278 p = fetch_pam_child_environment();
1279 copy_environment(p, &env, &envsize);
1280 free_pam_environment(p);
1282 p = fetch_pam_environment();
1283 copy_environment(p, &env, &envsize);
1284 free_pam_environment(p);
1286 #endif /* USE_PAM */
1288 if (auth_sock_name != NULL)
1289 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1290 auth_sock_name);
1292 /* read $HOME/.ssh/environment. */
1293 if (options.permit_user_env && !options.use_login) {
1294 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1295 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
1296 read_environment_file(&env, &envsize, buf);
1298 if (debug_flag) {
1299 /* dump the environment */
1300 fprintf(stderr, "Environment:\n");
1301 for (i = 0; env[i]; i++)
1302 fprintf(stderr, " %.200s\n", env[i]);
1304 return env;
1308 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1309 * first in this order).
1311 static void
1312 do_rc_files(Session *s, const char *shell)
1314 FILE *f = NULL;
1315 char cmd[1024];
1316 int do_xauth;
1317 struct stat st;
1319 do_xauth =
1320 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1322 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
1323 if (!s->is_subsystem && options.adm_forced_command == NULL &&
1324 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
1325 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1326 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1327 if (debug_flag)
1328 fprintf(stderr, "Running %s\n", cmd);
1329 f = popen(cmd, "w");
1330 if (f) {
1331 if (do_xauth)
1332 fprintf(f, "%s %s\n", s->auth_proto,
1333 s->auth_data);
1334 pclose(f);
1335 } else
1336 fprintf(stderr, "Could not run %s\n",
1337 _PATH_SSH_USER_RC);
1338 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1339 if (debug_flag)
1340 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1341 _PATH_SSH_SYSTEM_RC);
1342 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1343 if (f) {
1344 if (do_xauth)
1345 fprintf(f, "%s %s\n", s->auth_proto,
1346 s->auth_data);
1347 pclose(f);
1348 } else
1349 fprintf(stderr, "Could not run %s\n",
1350 _PATH_SSH_SYSTEM_RC);
1351 } else if (do_xauth && options.xauth_location != NULL) {
1352 /* Add authority data to .Xauthority if appropriate. */
1353 if (debug_flag) {
1354 fprintf(stderr,
1355 "Running %.500s remove %.100s\n",
1356 options.xauth_location, s->auth_display);
1357 fprintf(stderr,
1358 "%.500s add %.100s %.100s %.100s\n",
1359 options.xauth_location, s->auth_display,
1360 s->auth_proto, s->auth_data);
1362 snprintf(cmd, sizeof cmd, "%s -q -",
1363 options.xauth_location);
1364 f = popen(cmd, "w");
1365 if (f) {
1366 fprintf(f, "remove %s\n",
1367 s->auth_display);
1368 fprintf(f, "add %s %s %s\n",
1369 s->auth_display, s->auth_proto,
1370 s->auth_data);
1371 pclose(f);
1372 } else {
1373 fprintf(stderr, "Could not run %s\n",
1374 cmd);
1379 static void
1380 do_nologin(struct passwd *pw)
1382 FILE *f = NULL;
1383 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1384 struct stat sb;
1386 #ifdef HAVE_LOGIN_CAP
1387 if (login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1388 return;
1389 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
1390 #else
1391 if (pw->pw_uid == 0)
1392 return;
1393 nl = def_nl;
1394 #endif
1395 if (stat(nl, &sb) == -1) {
1396 if (nl != def_nl)
1397 xfree(nl);
1398 return;
1401 /* /etc/nologin exists. Print its contents if we can and exit. */
1402 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1403 if ((f = fopen(nl, "r")) != NULL) {
1404 while (fgets(buf, sizeof(buf), f))
1405 fputs(buf, stderr);
1406 fclose(f);
1408 exit(254);
1412 * Chroot into a directory after checking it for safety: all path components
1413 * must be root-owned directories with strict permissions.
1415 static void
1416 safely_chroot(const char *path, uid_t uid)
1418 const char *cp;
1419 char component[MAXPATHLEN];
1420 struct stat st;
1422 if (*path != '/')
1423 fatal("chroot path does not begin at root");
1424 if (strlen(path) >= sizeof(component))
1425 fatal("chroot path too long");
1428 * Descend the path, checking that each component is a
1429 * root-owned directory with strict permissions.
1431 for (cp = path; cp != NULL;) {
1432 if ((cp = strchr(cp, '/')) == NULL)
1433 strlcpy(component, path, sizeof(component));
1434 else {
1435 cp++;
1436 memcpy(component, path, cp - path);
1437 component[cp - path] = '\0';
1440 debug3("%s: checking '%s'", __func__, component);
1442 if (stat(component, &st) != 0)
1443 fatal("%s: stat(\"%s\"): %s", __func__,
1444 component, strerror(errno));
1445 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1446 fatal("bad ownership or modes for chroot "
1447 "directory %s\"%s\"",
1448 cp == NULL ? "" : "component ", component);
1449 if (!S_ISDIR(st.st_mode))
1450 fatal("chroot path %s\"%s\" is not a directory",
1451 cp == NULL ? "" : "component ", component);
1455 if (chdir(path) == -1)
1456 fatal("Unable to chdir to chroot path \"%s\": "
1457 "%s", path, strerror(errno));
1458 if (chroot(path) == -1)
1459 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1460 if (chdir("/") == -1)
1461 fatal("%s: chdir(/) after chroot: %s",
1462 __func__, strerror(errno));
1463 verbose("Changed root directory to \"%s\"", path);
1466 /* Set login name, uid, gid, and groups. */
1467 void
1468 do_setusercontext(struct passwd *pw)
1470 char *chroot_path, *tmp;
1472 platform_setusercontext(pw);
1474 if (platform_privileged_uidswap()) {
1475 #ifdef HAVE_LOGIN_CAP
1476 if (setusercontext(lc, pw, pw->pw_uid,
1477 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
1478 perror("unable to set user context");
1479 exit(1);
1481 #else
1482 # if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1483 /* Sets login uid for accounting */
1484 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1485 error("setluid: %s", strerror(errno));
1486 # endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1488 if (setlogin(pw->pw_name) < 0)
1489 error("setlogin failed: %s", strerror(errno));
1490 if (setgid(pw->pw_gid) < 0) {
1491 perror("setgid");
1492 exit(1);
1494 /* Initialize the group list. */
1495 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1496 perror("initgroups");
1497 exit(1);
1499 endgrent();
1500 #endif
1502 platform_setusercontext_post_groups(pw);
1504 if (options.chroot_directory != NULL &&
1505 strcasecmp(options.chroot_directory, "none") != 0) {
1506 tmp = tilde_expand_filename(options.chroot_directory,
1507 pw->pw_uid);
1508 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1509 "u", pw->pw_name, (char *)NULL);
1510 safely_chroot(chroot_path, pw->pw_uid);
1511 free(tmp);
1512 free(chroot_path);
1515 #ifdef HAVE_LOGIN_CAP
1516 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1517 perror("unable to set user context (setuser)");
1518 exit(1);
1520 #else
1521 /* Permanently switch to the desired uid. */
1522 permanently_set_uid(pw);
1523 #endif
1526 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1527 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1530 static void
1531 do_pwchange(Session *s)
1533 fflush(NULL);
1534 fprintf(stderr, "WARNING: Your password has expired.\n");
1535 if (s->ttyfd != -1) {
1536 fprintf(stderr,
1537 "You must change your password now and login again!\n");
1538 #ifdef PASSWD_NEEDS_USERNAME
1539 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1540 (char *)NULL);
1541 #else
1542 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1543 #endif
1544 perror("passwd");
1545 } else {
1546 fprintf(stderr,
1547 "Password change required but no TTY available.\n");
1549 exit(1);
1552 static void
1553 launch_login(struct passwd *pw, const char *hostname)
1555 /* Launch login(1). */
1557 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1558 #ifdef xxxLOGIN_NEEDS_TERM
1559 (s->term ? s->term : "unknown"),
1560 #endif /* LOGIN_NEEDS_TERM */
1561 #ifdef LOGIN_NO_ENDOPT
1562 "-p", "-f", pw->pw_name, (char *)NULL);
1563 #else
1564 "-p", "-f", "--", pw->pw_name, (char *)NULL);
1565 #endif
1567 /* Login couldn't be executed, die. */
1569 perror("login");
1570 exit(1);
1573 static void
1574 child_close_fds(void)
1576 int i;
1578 if (packet_get_connection_in() == packet_get_connection_out())
1579 close(packet_get_connection_in());
1580 else {
1581 close(packet_get_connection_in());
1582 close(packet_get_connection_out());
1585 * Close all descriptors related to channels. They will still remain
1586 * open in the parent.
1588 /* XXX better use close-on-exec? -markus */
1589 channel_close_all();
1592 * Close any extra file descriptors. Note that there may still be
1593 * descriptors left by system functions. They will be closed later.
1595 endpwent();
1598 * Close any extra open file descriptors so that we don't have them
1599 * hanging around in clients. Note that we want to do this after
1600 * initgroups, because at least on Solaris 2.3 it leaves file
1601 * descriptors open.
1603 for (i = 3; i < 64; i++)
1604 close(i);
1608 * Performs common processing for the child, such as setting up the
1609 * environment, closing extra file descriptors, setting the user and group
1610 * ids, and executing the command or shell.
1612 #define ARGV_MAX 10
1613 void
1614 do_child(Session *s, const char *command)
1616 extern char **environ;
1617 char **env;
1618 char *argv[ARGV_MAX];
1619 const char *shell, *shell0, *hostname = NULL;
1620 struct passwd *pw = s->pw;
1621 int r = 0;
1623 /* remove hostkey from the child's memory */
1624 destroy_sensitive_data();
1626 /* Force a password change */
1627 if (s->authctxt->force_pwchange) {
1628 do_setusercontext(pw);
1629 child_close_fds();
1630 do_pwchange(s);
1631 exit(1);
1634 /* login(1) is only called if we execute the login shell */
1635 if (options.use_login && command != NULL)
1636 options.use_login = 0;
1638 #ifdef _UNICOS
1639 cray_setup(pw->pw_uid, pw->pw_name, command);
1640 #endif /* _UNICOS */
1643 * Login(1) does this as well, and it needs uid 0 for the "-h"
1644 * switch, so we let login(1) to this for us.
1646 if (!options.use_login) {
1647 #ifdef HAVE_OSF_SIA
1648 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
1649 if (!check_quietlogin(s, command))
1650 do_motd();
1651 #else /* HAVE_OSF_SIA */
1652 /* When PAM is enabled we rely on it to do the nologin check */
1653 if (!options.use_pam)
1654 do_nologin(pw);
1655 do_setusercontext(pw);
1657 * PAM session modules in do_setusercontext may have
1658 * generated messages, so if this in an interactive
1659 * login then display them too.
1661 if (!check_quietlogin(s, command))
1662 display_loginmsg();
1663 #endif /* HAVE_OSF_SIA */
1666 #ifdef USE_PAM
1667 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1668 debug3("PAM session not opened, exiting");
1669 display_loginmsg();
1670 exit(254);
1672 #endif
1675 * Get the shell from the password data. An empty shell field is
1676 * legal, and means /bin/sh.
1678 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1681 * Make sure $SHELL points to the shell from the password file,
1682 * even if shell is overridden from login.conf
1684 env = do_setup_env(s, shell);
1686 #ifdef HAVE_LOGIN_CAP
1687 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1688 #endif
1690 /* we have to stash the hostname before we close our socket. */
1691 if (options.use_login)
1692 hostname = get_remote_name_or_ip(utmp_len,
1693 options.use_dns);
1695 * Close the connection descriptors; note that this is the child, and
1696 * the server will still have the socket open, and it is important
1697 * that we do not shutdown it. Note that the descriptors cannot be
1698 * closed before building the environment, as we call
1699 * get_remote_ipaddr there.
1701 child_close_fds();
1704 * Must take new environment into use so that .ssh/rc,
1705 * /etc/ssh/sshrc and xauth are run in the proper environment.
1707 environ = env;
1709 #if defined(KRB5) && defined(USE_AFS)
1711 * At this point, we check to see if AFS is active and if we have
1712 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1713 * if we can (and need to) extend the ticket into an AFS token. If
1714 * we don't do this, we run into potential problems if the user's
1715 * home directory is in AFS and it's not world-readable.
1718 if (options.kerberos_get_afs_token && k_hasafs() &&
1719 (s->authctxt->krb5_ctx != NULL)) {
1720 char cell[64];
1722 debug("Getting AFS token");
1724 k_setpag();
1726 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1727 krb5_afslog(s->authctxt->krb5_ctx,
1728 s->authctxt->krb5_fwd_ccache, cell, NULL);
1730 krb5_afslog_home(s->authctxt->krb5_ctx,
1731 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1733 #endif
1735 /* Change current directory to the user's home directory. */
1736 if (chdir(pw->pw_dir) < 0) {
1737 /* Suppress missing homedir warning for chroot case */
1738 #ifdef HAVE_LOGIN_CAP
1739 r = login_getcapbool(lc, "requirehome", 0);
1740 #endif
1741 if (r || options.chroot_directory == NULL ||
1742 strcasecmp(options.chroot_directory, "none") == 0)
1743 fprintf(stderr, "Could not chdir to home "
1744 "directory %s: %s\n", pw->pw_dir,
1745 strerror(errno));
1746 if (r)
1747 exit(1);
1750 closefrom(STDERR_FILENO + 1);
1752 if (!options.use_login)
1753 do_rc_files(s, shell);
1755 /* restore SIGPIPE for child */
1756 signal(SIGPIPE, SIG_DFL);
1758 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1759 printf("This service allows sftp connections only.\n");
1760 fflush(NULL);
1761 exit(1);
1762 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1763 extern int optind, optreset;
1764 int i;
1765 char *p, *args;
1767 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
1768 args = xstrdup(command ? command : "sftp-server");
1769 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1770 if (i < ARGV_MAX - 1)
1771 argv[i++] = p;
1772 argv[i] = NULL;
1773 optind = optreset = 1;
1774 __progname = argv[0];
1775 #ifdef WITH_SELINUX
1776 ssh_selinux_change_context("sftpd_t");
1777 #endif
1778 exit(sftp_server_main(i, argv, s->pw));
1781 fflush(NULL);
1783 if (options.use_login) {
1784 launch_login(pw, hostname);
1785 /* NEVERREACHED */
1788 /* Get the last component of the shell name. */
1789 if ((shell0 = strrchr(shell, '/')) != NULL)
1790 shell0++;
1791 else
1792 shell0 = shell;
1795 * If we have no command, execute the shell. In this case, the shell
1796 * name to be passed in argv[0] is preceded by '-' to indicate that
1797 * this is a login shell.
1799 if (!command) {
1800 char argv0[256];
1802 /* Start the shell. Set initial character to '-'. */
1803 argv0[0] = '-';
1805 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1806 >= sizeof(argv0) - 1) {
1807 errno = EINVAL;
1808 perror(shell);
1809 exit(1);
1812 /* Execute the shell. */
1813 argv[0] = argv0;
1814 argv[1] = NULL;
1815 execve(shell, argv, env);
1817 /* Executing the shell failed. */
1818 perror(shell);
1819 exit(1);
1822 * Execute the command using the user's shell. This uses the -c
1823 * option to execute the command.
1825 argv[0] = (char *) shell0;
1826 argv[1] = "-c";
1827 argv[2] = (char *) command;
1828 argv[3] = NULL;
1829 execve(shell, argv, env);
1830 perror(shell);
1831 exit(1);
1834 void
1835 session_unused(int id)
1837 debug3("%s: session id %d unused", __func__, id);
1838 if (id >= options.max_sessions ||
1839 id >= sessions_nalloc) {
1840 fatal("%s: insane session id %d (max %d nalloc %d)",
1841 __func__, id, options.max_sessions, sessions_nalloc);
1843 bzero(&sessions[id], sizeof(*sessions));
1844 sessions[id].self = id;
1845 sessions[id].used = 0;
1846 sessions[id].chanid = -1;
1847 sessions[id].ptyfd = -1;
1848 sessions[id].ttyfd = -1;
1849 sessions[id].ptymaster = -1;
1850 sessions[id].x11_chanids = NULL;
1851 sessions[id].next_unused = sessions_first_unused;
1852 sessions_first_unused = id;
1855 Session *
1856 session_new(void)
1858 Session *s, *tmp;
1860 if (sessions_first_unused == -1) {
1861 if (sessions_nalloc >= options.max_sessions)
1862 return NULL;
1863 debug2("%s: allocate (allocated %d max %d)",
1864 __func__, sessions_nalloc, options.max_sessions);
1865 tmp = xrealloc(sessions, sessions_nalloc + 1,
1866 sizeof(*sessions));
1867 if (tmp == NULL) {
1868 error("%s: cannot allocate %d sessions",
1869 __func__, sessions_nalloc + 1);
1870 return NULL;
1872 sessions = tmp;
1873 session_unused(sessions_nalloc++);
1876 if (sessions_first_unused >= sessions_nalloc ||
1877 sessions_first_unused < 0) {
1878 fatal("%s: insane first_unused %d max %d nalloc %d",
1879 __func__, sessions_first_unused, options.max_sessions,
1880 sessions_nalloc);
1883 s = &sessions[sessions_first_unused];
1884 if (s->used) {
1885 fatal("%s: session %d already used",
1886 __func__, sessions_first_unused);
1888 sessions_first_unused = s->next_unused;
1889 s->used = 1;
1890 s->next_unused = -1;
1891 debug("session_new: session %d", s->self);
1893 return s;
1896 static void
1897 session_dump(void)
1899 int i;
1900 for (i = 0; i < sessions_nalloc; i++) {
1901 Session *s = &sessions[i];
1903 debug("dump: used %d next_unused %d session %d %p "
1904 "channel %d pid %ld",
1905 s->used,
1906 s->next_unused,
1907 s->self,
1909 s->chanid,
1910 (long)s->pid);
1915 session_open(Authctxt *authctxt, int chanid)
1917 Session *s = session_new();
1918 debug("session_open: channel %d", chanid);
1919 if (s == NULL) {
1920 error("no more sessions");
1921 return 0;
1923 s->authctxt = authctxt;
1924 s->pw = authctxt->pw;
1925 if (s->pw == NULL || !authctxt->valid)
1926 fatal("no user for session %d", s->self);
1927 debug("session_open: session %d: link with channel %d", s->self, chanid);
1928 s->chanid = chanid;
1929 return 1;
1932 Session *
1933 session_by_tty(char *tty)
1935 int i;
1936 for (i = 0; i < sessions_nalloc; i++) {
1937 Session *s = &sessions[i];
1938 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1939 debug("session_by_tty: session %d tty %s", i, tty);
1940 return s;
1943 debug("session_by_tty: unknown tty %.100s", tty);
1944 session_dump();
1945 return NULL;
1948 static Session *
1949 session_by_channel(int id)
1951 int i;
1952 for (i = 0; i < sessions_nalloc; i++) {
1953 Session *s = &sessions[i];
1954 if (s->used && s->chanid == id) {
1955 debug("session_by_channel: session %d channel %d",
1956 i, id);
1957 return s;
1960 debug("session_by_channel: unknown channel %d", id);
1961 session_dump();
1962 return NULL;
1965 static Session *
1966 session_by_x11_channel(int id)
1968 int i, j;
1970 for (i = 0; i < sessions_nalloc; i++) {
1971 Session *s = &sessions[i];
1973 if (s->x11_chanids == NULL || !s->used)
1974 continue;
1975 for (j = 0; s->x11_chanids[j] != -1; j++) {
1976 if (s->x11_chanids[j] == id) {
1977 debug("session_by_x11_channel: session %d "
1978 "channel %d", s->self, id);
1979 return s;
1983 debug("session_by_x11_channel: unknown channel %d", id);
1984 session_dump();
1985 return NULL;
1988 static Session *
1989 session_by_pid(pid_t pid)
1991 int i;
1992 debug("session_by_pid: pid %ld", (long)pid);
1993 for (i = 0; i < sessions_nalloc; i++) {
1994 Session *s = &sessions[i];
1995 if (s->used && s->pid == pid)
1996 return s;
1998 error("session_by_pid: unknown pid %ld", (long)pid);
1999 session_dump();
2000 return NULL;
2003 static int
2004 session_window_change_req(Session *s)
2006 s->col = packet_get_int();
2007 s->row = packet_get_int();
2008 s->xpixel = packet_get_int();
2009 s->ypixel = packet_get_int();
2010 packet_check_eom();
2011 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2012 return 1;
2015 static int
2016 session_pty_req(Session *s)
2018 u_int len;
2019 int n_bytes;
2021 if (no_pty_flag) {
2022 debug("Allocating a pty not permitted for this authentication.");
2023 return 0;
2025 if (s->ttyfd != -1) {
2026 packet_disconnect("Protocol error: you already have a pty.");
2027 return 0;
2030 s->term = packet_get_string(&len);
2032 if (compat20) {
2033 s->col = packet_get_int();
2034 s->row = packet_get_int();
2035 } else {
2036 s->row = packet_get_int();
2037 s->col = packet_get_int();
2039 s->xpixel = packet_get_int();
2040 s->ypixel = packet_get_int();
2042 if (strcmp(s->term, "") == 0) {
2043 xfree(s->term);
2044 s->term = NULL;
2047 /* Allocate a pty and open it. */
2048 debug("Allocating pty.");
2049 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2050 sizeof(s->tty)))) {
2051 if (s->term)
2052 xfree(s->term);
2053 s->term = NULL;
2054 s->ptyfd = -1;
2055 s->ttyfd = -1;
2056 error("session_pty_req: session %d alloc failed", s->self);
2057 return 0;
2059 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
2061 /* for SSH1 the tty modes length is not given */
2062 if (!compat20)
2063 n_bytes = packet_remaining();
2064 tty_parse_modes(s->ttyfd, &n_bytes);
2066 if (!use_privsep)
2067 pty_setowner(s->pw, s->tty);
2069 /* Set window size from the packet. */
2070 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2072 packet_check_eom();
2073 session_proctitle(s);
2074 return 1;
2077 static int
2078 session_subsystem_req(Session *s)
2080 struct stat st;
2081 u_int len;
2082 int success = 0;
2083 char *prog, *cmd, *subsys = packet_get_string(&len);
2084 u_int i;
2086 packet_check_eom();
2087 logit("subsystem request for %.100s by user %s", subsys,
2088 s->pw->pw_name);
2090 for (i = 0; i < options.num_subsystems; i++) {
2091 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
2092 prog = options.subsystem_command[i];
2093 cmd = options.subsystem_args[i];
2094 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
2095 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2096 debug("subsystem: %s", prog);
2097 } else {
2098 if (stat(prog, &st) < 0)
2099 debug("subsystem: cannot stat %s: %s",
2100 prog, strerror(errno));
2101 s->is_subsystem = SUBSYSTEM_EXT;
2102 debug("subsystem: exec() %s", cmd);
2104 success = do_exec(s, cmd) == 0;
2105 break;
2109 if (!success)
2110 logit("subsystem request for %.100s failed, subsystem not found",
2111 subsys);
2113 xfree(subsys);
2114 return success;
2117 static int
2118 session_x11_req(Session *s)
2120 int success;
2122 if (s->auth_proto != NULL || s->auth_data != NULL) {
2123 error("session_x11_req: session %d: "
2124 "x11 forwarding already active", s->self);
2125 return 0;
2127 s->single_connection = packet_get_char();
2128 s->auth_proto = packet_get_string(NULL);
2129 s->auth_data = packet_get_string(NULL);
2130 s->screen = packet_get_int();
2131 packet_check_eom();
2133 success = session_setup_x11fwd(s);
2134 if (!success) {
2135 xfree(s->auth_proto);
2136 xfree(s->auth_data);
2137 s->auth_proto = NULL;
2138 s->auth_data = NULL;
2140 return success;
2143 static int
2144 session_shell_req(Session *s)
2146 packet_check_eom();
2147 return do_exec(s, NULL) == 0;
2150 static int
2151 session_exec_req(Session *s)
2153 u_int len, success;
2155 char *command = packet_get_string(&len);
2156 packet_check_eom();
2157 success = do_exec(s, command) == 0;
2158 xfree(command);
2159 return success;
2162 static int
2163 session_break_req(Session *s)
2166 packet_get_int(); /* ignored */
2167 packet_check_eom();
2169 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
2170 return 0;
2171 return 1;
2174 static int
2175 session_env_req(Session *s)
2177 char *name, *val;
2178 u_int name_len, val_len, i;
2180 name = packet_get_string(&name_len);
2181 val = packet_get_string(&val_len);
2182 packet_check_eom();
2184 /* Don't set too many environment variables */
2185 if (s->num_env > 128) {
2186 debug2("Ignoring env request %s: too many env vars", name);
2187 goto fail;
2190 for (i = 0; i < options.num_accept_env; i++) {
2191 if (match_pattern(name, options.accept_env[i])) {
2192 debug2("Setting env %d: %s=%s", s->num_env, name, val);
2193 s->env = xrealloc(s->env, s->num_env + 1,
2194 sizeof(*s->env));
2195 s->env[s->num_env].name = name;
2196 s->env[s->num_env].val = val;
2197 s->num_env++;
2198 return (1);
2201 debug2("Ignoring env request %s: disallowed name", name);
2203 fail:
2204 xfree(name);
2205 xfree(val);
2206 return (0);
2209 static int
2210 session_auth_agent_req(Session *s)
2212 static int called = 0;
2213 packet_check_eom();
2214 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
2215 debug("session_auth_agent_req: no_agent_forwarding_flag");
2216 return 0;
2218 if (called) {
2219 return 0;
2220 } else {
2221 called = 1;
2222 return auth_input_request_forwarding(s->pw);
2227 session_input_channel_req(Channel *c, const char *rtype)
2229 int success = 0;
2230 Session *s;
2232 if ((s = session_by_channel(c->self)) == NULL) {
2233 logit("session_input_channel_req: no session %d req %.100s",
2234 c->self, rtype);
2235 return 0;
2237 debug("session_input_channel_req: session %d req %s", s->self, rtype);
2240 * a session is in LARVAL state until a shell, a command
2241 * or a subsystem is executed
2243 if (c->type == SSH_CHANNEL_LARVAL) {
2244 if (strcmp(rtype, "shell") == 0) {
2245 success = session_shell_req(s);
2246 } else if (strcmp(rtype, "exec") == 0) {
2247 success = session_exec_req(s);
2248 } else if (strcmp(rtype, "pty-req") == 0) {
2249 success = session_pty_req(s);
2250 } else if (strcmp(rtype, "x11-req") == 0) {
2251 success = session_x11_req(s);
2252 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2253 success = session_auth_agent_req(s);
2254 } else if (strcmp(rtype, "subsystem") == 0) {
2255 success = session_subsystem_req(s);
2256 } else if (strcmp(rtype, "env") == 0) {
2257 success = session_env_req(s);
2260 if (strcmp(rtype, "window-change") == 0) {
2261 success = session_window_change_req(s);
2262 } else if (strcmp(rtype, "break") == 0) {
2263 success = session_break_req(s);
2266 return success;
2269 void
2270 session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr,
2271 int is_tty)
2273 if (!compat20)
2274 fatal("session_set_fds: called for proto != 2.0");
2276 * now that have a child and a pipe to the child,
2277 * we can activate our channel and register the fd's
2279 if (s->chanid == -1)
2280 fatal("no channel for session %d", s->self);
2281 channel_set_fds(s->chanid,
2282 fdout, fdin, fderr,
2283 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
2284 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
2288 * Function to perform pty cleanup. Also called if we get aborted abnormally
2289 * (e.g., due to a dropped connection).
2291 void
2292 session_pty_cleanup2(Session *s)
2294 if (s == NULL) {
2295 error("session_pty_cleanup: no session");
2296 return;
2298 if (s->ttyfd == -1)
2299 return;
2301 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
2303 /* Record that the user has logged out. */
2304 if (s->pid != 0)
2305 record_logout(s->pid, s->tty, s->pw->pw_name);
2307 /* Release the pseudo-tty. */
2308 if (getuid() == 0)
2309 pty_release(s->tty);
2312 * Close the server side of the socket pairs. We must do this after
2313 * the pty cleanup, so that another process doesn't get this pty
2314 * while we're still cleaning up.
2316 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2317 error("close(s->ptymaster/%d): %s",
2318 s->ptymaster, strerror(errno));
2320 /* unlink pty from session */
2321 s->ttyfd = -1;
2324 void
2325 session_pty_cleanup(Session *s)
2327 PRIVSEP(session_pty_cleanup2(s));
2330 static char *
2331 sig2name(int sig)
2333 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2334 SSH_SIG(ABRT);
2335 SSH_SIG(ALRM);
2336 SSH_SIG(FPE);
2337 SSH_SIG(HUP);
2338 SSH_SIG(ILL);
2339 SSH_SIG(INT);
2340 SSH_SIG(KILL);
2341 SSH_SIG(PIPE);
2342 SSH_SIG(QUIT);
2343 SSH_SIG(SEGV);
2344 SSH_SIG(TERM);
2345 SSH_SIG(USR1);
2346 SSH_SIG(USR2);
2347 #undef SSH_SIG
2348 return "SIG@openssh.com";
2351 static void
2352 session_close_x11(int id)
2354 Channel *c;
2356 if ((c = channel_by_id(id)) == NULL) {
2357 debug("session_close_x11: x11 channel %d missing", id);
2358 } else {
2359 /* Detach X11 listener */
2360 debug("session_close_x11: detach x11 channel %d", id);
2361 channel_cancel_cleanup(id);
2362 if (c->ostate != CHAN_OUTPUT_CLOSED)
2363 chan_mark_dead(c);
2367 static void
2368 session_close_single_x11(int id, void *arg)
2370 Session *s;
2371 u_int i;
2373 debug3("session_close_single_x11: channel %d", id);
2374 channel_cancel_cleanup(id);
2375 if ((s = session_by_x11_channel(id)) == NULL)
2376 fatal("session_close_single_x11: no x11 channel %d", id);
2377 for (i = 0; s->x11_chanids[i] != -1; i++) {
2378 debug("session_close_single_x11: session %d: "
2379 "closing channel %d", s->self, s->x11_chanids[i]);
2381 * The channel "id" is already closing, but make sure we
2382 * close all of its siblings.
2384 if (s->x11_chanids[i] != id)
2385 session_close_x11(s->x11_chanids[i]);
2387 xfree(s->x11_chanids);
2388 s->x11_chanids = NULL;
2389 if (s->display) {
2390 xfree(s->display);
2391 s->display = NULL;
2393 if (s->auth_proto) {
2394 xfree(s->auth_proto);
2395 s->auth_proto = NULL;
2397 if (s->auth_data) {
2398 xfree(s->auth_data);
2399 s->auth_data = NULL;
2401 if (s->auth_display) {
2402 xfree(s->auth_display);
2403 s->auth_display = NULL;
2407 static void
2408 session_exit_message(Session *s, int status)
2410 Channel *c;
2412 if ((c = channel_lookup(s->chanid)) == NULL)
2413 fatal("session_exit_message: session %d: no channel %d",
2414 s->self, s->chanid);
2415 debug("session_exit_message: session %d channel %d pid %ld",
2416 s->self, s->chanid, (long)s->pid);
2418 if (WIFEXITED(status)) {
2419 channel_request_start(s->chanid, "exit-status", 0);
2420 packet_put_int(WEXITSTATUS(status));
2421 packet_send();
2422 } else if (WIFSIGNALED(status)) {
2423 channel_request_start(s->chanid, "exit-signal", 0);
2424 packet_put_cstring(sig2name(WTERMSIG(status)));
2425 #ifdef WCOREDUMP
2426 packet_put_char(WCOREDUMP(status)? 1 : 0);
2427 #else /* WCOREDUMP */
2428 packet_put_char(0);
2429 #endif /* WCOREDUMP */
2430 packet_put_cstring("");
2431 packet_put_cstring("");
2432 packet_send();
2433 } else {
2434 /* Some weird exit cause. Just exit. */
2435 packet_disconnect("wait returned status %04x.", status);
2438 /* disconnect channel */
2439 debug("session_exit_message: release channel %d", s->chanid);
2442 * Adjust cleanup callback attachment to send close messages when
2443 * the channel gets EOF. The session will be then be closed
2444 * by session_close_by_channel when the childs close their fds.
2446 channel_register_cleanup(c->self, session_close_by_channel, 1);
2449 * emulate a write failure with 'chan_write_failed', nobody will be
2450 * interested in data we write.
2451 * Note that we must not call 'chan_read_failed', since there could
2452 * be some more data waiting in the pipe.
2454 if (c->ostate != CHAN_OUTPUT_CLOSED)
2455 chan_write_failed(c);
2458 void
2459 session_close(Session *s)
2461 u_int i;
2463 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2464 if (s->ttyfd != -1)
2465 session_pty_cleanup(s);
2466 if (s->term)
2467 xfree(s->term);
2468 if (s->display)
2469 xfree(s->display);
2470 if (s->x11_chanids)
2471 xfree(s->x11_chanids);
2472 if (s->auth_display)
2473 xfree(s->auth_display);
2474 if (s->auth_data)
2475 xfree(s->auth_data);
2476 if (s->auth_proto)
2477 xfree(s->auth_proto);
2478 if (s->env != NULL) {
2479 for (i = 0; i < s->num_env; i++) {
2480 xfree(s->env[i].name);
2481 xfree(s->env[i].val);
2483 xfree(s->env);
2485 session_proctitle(s);
2486 session_unused(s->self);
2489 void
2490 session_close_by_pid(pid_t pid, int status)
2492 Session *s = session_by_pid(pid);
2493 if (s == NULL) {
2494 debug("session_close_by_pid: no session for pid %ld",
2495 (long)pid);
2496 return;
2498 if (s->chanid != -1)
2499 session_exit_message(s, status);
2500 if (s->ttyfd != -1)
2501 session_pty_cleanup(s);
2502 s->pid = 0;
2506 * this is called when a channel dies before
2507 * the session 'child' itself dies
2509 void
2510 session_close_by_channel(int id, void *arg)
2512 Session *s = session_by_channel(id);
2513 u_int i;
2515 if (s == NULL) {
2516 debug("session_close_by_channel: no session for id %d", id);
2517 return;
2519 debug("session_close_by_channel: channel %d child %ld",
2520 id, (long)s->pid);
2521 if (s->pid != 0) {
2522 debug("session_close_by_channel: channel %d: has child", id);
2524 * delay detach of session, but release pty, since
2525 * the fd's to the child are already closed
2527 if (s->ttyfd != -1)
2528 session_pty_cleanup(s);
2529 return;
2531 /* detach by removing callback */
2532 channel_cancel_cleanup(s->chanid);
2534 /* Close any X11 listeners associated with this session */
2535 if (s->x11_chanids != NULL) {
2536 for (i = 0; s->x11_chanids[i] != -1; i++) {
2537 session_close_x11(s->x11_chanids[i]);
2538 s->x11_chanids[i] = -1;
2542 s->chanid = -1;
2543 session_close(s);
2546 void
2547 session_destroy_all(void (*closefunc)(Session *))
2549 int i;
2550 for (i = 0; i < sessions_nalloc; i++) {
2551 Session *s = &sessions[i];
2552 if (s->used) {
2553 if (closefunc != NULL)
2554 closefunc(s);
2555 else
2556 session_close(s);
2561 static char *
2562 session_tty_list(void)
2564 static char buf[1024];
2565 int i;
2566 char *cp;
2568 buf[0] = '\0';
2569 for (i = 0; i < sessions_nalloc; i++) {
2570 Session *s = &sessions[i];
2571 if (s->used && s->ttyfd != -1) {
2573 if (strncmp(s->tty, "/dev/", 5) != 0) {
2574 cp = strrchr(s->tty, '/');
2575 cp = (cp == NULL) ? s->tty : cp + 1;
2576 } else
2577 cp = s->tty + 5;
2579 if (buf[0] != '\0')
2580 strlcat(buf, ",", sizeof buf);
2581 strlcat(buf, cp, sizeof buf);
2584 if (buf[0] == '\0')
2585 strlcpy(buf, "notty", sizeof buf);
2586 return buf;
2589 void
2590 session_proctitle(Session *s)
2592 if (s->pw == NULL)
2593 error("no user for session %d", s->self);
2594 else
2595 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2599 session_setup_x11fwd(Session *s)
2601 struct stat st;
2602 char display[512], auth_display[512];
2603 char hostname[MAXHOSTNAMELEN];
2604 u_int i;
2606 if (no_x11_forwarding_flag) {
2607 packet_send_debug("X11 forwarding disabled in user configuration file.");
2608 return 0;
2610 if (!options.x11_forwarding) {
2611 debug("X11 forwarding disabled in server configuration file.");
2612 return 0;
2614 if (!options.xauth_location ||
2615 (stat(options.xauth_location, &st) == -1)) {
2616 packet_send_debug("No xauth program; cannot forward with spoofing.");
2617 return 0;
2619 if (options.use_login) {
2620 packet_send_debug("X11 forwarding disabled; "
2621 "not compatible with UseLogin=yes.");
2622 return 0;
2624 if (s->display != NULL) {
2625 debug("X11 display already set.");
2626 return 0;
2628 if (x11_create_display_inet(options.x11_display_offset,
2629 options.x11_use_localhost, s->single_connection,
2630 &s->display_number, &s->x11_chanids) == -1) {
2631 debug("x11_create_display_inet failed.");
2632 return 0;
2634 for (i = 0; s->x11_chanids[i] != -1; i++) {
2635 channel_register_cleanup(s->x11_chanids[i],
2636 session_close_single_x11, 0);
2639 /* Set up a suitable value for the DISPLAY variable. */
2640 if (gethostname(hostname, sizeof(hostname)) < 0)
2641 fatal("gethostname: %.100s", strerror(errno));
2643 * auth_display must be used as the displayname when the
2644 * authorization entry is added with xauth(1). This will be
2645 * different than the DISPLAY string for localhost displays.
2647 if (options.x11_use_localhost) {
2648 snprintf(display, sizeof display, "localhost:%u.%u",
2649 s->display_number, s->screen);
2650 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
2651 s->display_number, s->screen);
2652 s->display = xstrdup(display);
2653 s->auth_display = xstrdup(auth_display);
2654 } else {
2655 #ifdef IPADDR_IN_DISPLAY
2656 struct hostent *he;
2657 struct in_addr my_addr;
2659 he = gethostbyname(hostname);
2660 if (he == NULL) {
2661 error("Can't get IP address for X11 DISPLAY.");
2662 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2663 return 0;
2665 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2666 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
2667 s->display_number, s->screen);
2668 #else
2669 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
2670 s->display_number, s->screen);
2671 #endif
2672 s->display = xstrdup(display);
2673 s->auth_display = xstrdup(display);
2676 return 1;
2679 static void
2680 do_authenticated2(Authctxt *authctxt)
2682 server_loop2(authctxt);
2685 void
2686 do_cleanup(Authctxt *authctxt)
2688 static int called = 0;
2690 debug("do_cleanup");
2692 /* no cleanup if we're in the child for login shell */
2693 if (is_child)
2694 return;
2696 /* avoid double cleanup */
2697 if (called)
2698 return;
2699 called = 1;
2701 if (authctxt == NULL)
2702 return;
2704 #ifdef USE_PAM
2705 if (options.use_pam) {
2706 sshpam_cleanup();
2707 sshpam_thread_cleanup();
2709 #endif
2711 if (!authctxt->authenticated)
2712 return;
2714 #ifdef KRB5
2715 if (options.kerberos_ticket_cleanup &&
2716 authctxt->krb5_ctx)
2717 krb5_cleanup_proc(authctxt);
2718 #endif
2720 #ifdef GSSAPI
2721 if (compat20 && options.gss_cleanup_creds)
2722 ssh_gssapi_cleanup_creds();
2723 #endif
2725 /* remove agent socket */
2726 auth_sock_cleanup_proc(authctxt->pw);
2729 * Cleanup ptys/utmp only if privsep is disabled,
2730 * or if running in monitor.
2732 if (!use_privsep || mm_is_monitor())
2733 session_destroy_all(session_pty_cleanup2);