- (dtucker) [configure.ac] Use a proper AC_CHECK_DECL for BROKEN_GETADDRINFO
[openssh-git.git] / session.c
blob639405fec304fa691dd53953ff8d0504ec2cc830
1 /* $OpenBSD: session.c,v 1.252 2010/03/07 11:57:13 dtucker 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 <grp.h>
51 #ifdef HAVE_PATHS_H
52 #include <paths.h>
53 #endif
54 #include <pwd.h>
55 #include <signal.h>
56 #include <stdarg.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 #include <unistd.h>
62 #include "openbsd-compat/sys-queue.h"
63 #include "xmalloc.h"
64 #include "ssh.h"
65 #include "ssh1.h"
66 #include "ssh2.h"
67 #include "sshpty.h"
68 #include "packet.h"
69 #include "buffer.h"
70 #include "match.h"
71 #include "uidswap.h"
72 #include "compat.h"
73 #include "channels.h"
74 #include "key.h"
75 #include "cipher.h"
76 #ifdef GSSAPI
77 #include "ssh-gss.h"
78 #endif
79 #include "hostfile.h"
80 #include "auth.h"
81 #include "auth-options.h"
82 #include "pathnames.h"
83 #include "log.h"
84 #include "servconf.h"
85 #include "sshlogin.h"
86 #include "serverloop.h"
87 #include "canohost.h"
88 #include "misc.h"
89 #include "session.h"
90 #include "kex.h"
91 #include "monitor_wrap.h"
92 #include "sftp.h"
94 #if defined(KRB5) && defined(USE_AFS)
95 #include <kafs.h>
96 #endif
98 #define IS_INTERNAL_SFTP(c) \
99 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
100 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
101 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
102 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
104 /* func */
106 Session *session_new(void);
107 void session_set_fds(Session *, int, int, int, int);
108 void session_pty_cleanup(Session *);
109 void session_proctitle(Session *);
110 int session_setup_x11fwd(Session *);
111 int do_exec_pty(Session *, const char *);
112 int do_exec_no_pty(Session *, const char *);
113 int do_exec(Session *, const char *);
114 void do_login(Session *, const char *);
115 #ifdef LOGIN_NEEDS_UTMPX
116 static void do_pre_login(Session *s);
117 #endif
118 void do_child(Session *, const char *);
119 void do_motd(void);
120 int check_quietlogin(Session *, const char *);
122 static void do_authenticated1(Authctxt *);
123 static void do_authenticated2(Authctxt *);
125 static int session_pty_req(Session *);
127 /* import */
128 extern ServerOptions options;
129 extern char *__progname;
130 extern int log_stderr;
131 extern int debug_flag;
132 extern u_int utmp_len;
133 extern int startup_pipe;
134 extern void destroy_sensitive_data(void);
135 extern Buffer loginmsg;
137 /* original command from peer. */
138 const char *original_command = NULL;
140 /* data */
141 static int sessions_first_unused = -1;
142 static int sessions_nalloc = 0;
143 static Session *sessions = NULL;
145 #define SUBSYSTEM_NONE 0
146 #define SUBSYSTEM_EXT 1
147 #define SUBSYSTEM_INT_SFTP 2
148 #define SUBSYSTEM_INT_SFTP_ERROR 3
150 #ifdef HAVE_LOGIN_CAP
151 login_cap_t *lc;
152 #endif
154 static int is_child = 0;
156 /* Name and directory of socket for authentication agent forwarding. */
157 static char *auth_sock_name = NULL;
158 static char *auth_sock_dir = NULL;
160 /* removes the agent forwarding socket */
162 static void
163 auth_sock_cleanup_proc(struct passwd *pw)
165 if (auth_sock_name != NULL) {
166 temporarily_use_uid(pw);
167 unlink(auth_sock_name);
168 rmdir(auth_sock_dir);
169 auth_sock_name = NULL;
170 restore_uid();
174 static int
175 auth_input_request_forwarding(struct passwd * pw)
177 Channel *nc;
178 int sock = -1;
179 struct sockaddr_un sunaddr;
181 if (auth_sock_name != NULL) {
182 error("authentication forwarding requested twice.");
183 return 0;
186 /* Temporarily drop privileged uid for mkdir/bind. */
187 temporarily_use_uid(pw);
189 /* Allocate a buffer for the socket name, and format the name. */
190 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
192 /* Create private directory for socket */
193 if (mkdtemp(auth_sock_dir) == NULL) {
194 packet_send_debug("Agent forwarding disabled: "
195 "mkdtemp() failed: %.100s", strerror(errno));
196 restore_uid();
197 xfree(auth_sock_dir);
198 auth_sock_dir = NULL;
199 goto authsock_err;
202 xasprintf(&auth_sock_name, "%s/agent.%ld",
203 auth_sock_dir, (long) getpid());
205 /* Create the socket. */
206 sock = socket(AF_UNIX, SOCK_STREAM, 0);
207 if (sock < 0) {
208 error("socket: %.100s", strerror(errno));
209 restore_uid();
210 goto authsock_err;
213 /* Bind it to the name. */
214 memset(&sunaddr, 0, sizeof(sunaddr));
215 sunaddr.sun_family = AF_UNIX;
216 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
218 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
219 error("bind: %.100s", strerror(errno));
220 restore_uid();
221 goto authsock_err;
224 /* Restore the privileged uid. */
225 restore_uid();
227 /* Start listening on the socket. */
228 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
229 error("listen: %.100s", strerror(errno));
230 goto authsock_err;
233 /* Allocate a channel for the authentication agent socket. */
234 nc = channel_new("auth socket",
235 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
236 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
237 0, "auth socket", 1);
238 nc->path = xstrdup(auth_sock_name);
239 return 1;
241 authsock_err:
242 if (auth_sock_name != NULL)
243 xfree(auth_sock_name);
244 if (auth_sock_dir != NULL) {
245 rmdir(auth_sock_dir);
246 xfree(auth_sock_dir);
248 if (sock != -1)
249 close(sock);
250 auth_sock_name = NULL;
251 auth_sock_dir = NULL;
252 return 0;
255 static void
256 display_loginmsg(void)
258 if (buffer_len(&loginmsg) > 0) {
259 buffer_append(&loginmsg, "\0", 1);
260 printf("%s", (char *)buffer_ptr(&loginmsg));
261 buffer_clear(&loginmsg);
265 void
266 do_authenticated(Authctxt *authctxt)
268 setproctitle("%s", authctxt->pw->pw_name);
270 /* setup the channel layer */
271 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
272 channel_permit_all_opens();
274 auth_debug_send();
276 if (compat20)
277 do_authenticated2(authctxt);
278 else
279 do_authenticated1(authctxt);
281 do_cleanup(authctxt);
285 * Prepares for an interactive session. This is called after the user has
286 * been successfully authenticated. During this message exchange, pseudo
287 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
288 * are requested, etc.
290 static void
291 do_authenticated1(Authctxt *authctxt)
293 Session *s;
294 char *command;
295 int success, type, screen_flag;
296 int enable_compression_after_reply = 0;
297 u_int proto_len, data_len, dlen, compression_level = 0;
299 s = session_new();
300 if (s == NULL) {
301 error("no more sessions");
302 return;
304 s->authctxt = authctxt;
305 s->pw = authctxt->pw;
308 * We stay in this loop until the client requests to execute a shell
309 * or a command.
311 for (;;) {
312 success = 0;
314 /* Get a packet from the client. */
315 type = packet_read();
317 /* Process the packet. */
318 switch (type) {
319 case SSH_CMSG_REQUEST_COMPRESSION:
320 compression_level = packet_get_int();
321 packet_check_eom();
322 if (compression_level < 1 || compression_level > 9) {
323 packet_send_debug("Received invalid compression level %d.",
324 compression_level);
325 break;
327 if (options.compression == COMP_NONE) {
328 debug2("compression disabled");
329 break;
331 /* Enable compression after we have responded with SUCCESS. */
332 enable_compression_after_reply = 1;
333 success = 1;
334 break;
336 case SSH_CMSG_REQUEST_PTY:
337 success = session_pty_req(s);
338 break;
340 case SSH_CMSG_X11_REQUEST_FORWARDING:
341 s->auth_proto = packet_get_string(&proto_len);
342 s->auth_data = packet_get_string(&data_len);
344 screen_flag = packet_get_protocol_flags() &
345 SSH_PROTOFLAG_SCREEN_NUMBER;
346 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
348 if (packet_remaining() == 4) {
349 if (!screen_flag)
350 debug2("Buggy client: "
351 "X11 screen flag missing");
352 s->screen = packet_get_int();
353 } else {
354 s->screen = 0;
356 packet_check_eom();
357 success = session_setup_x11fwd(s);
358 if (!success) {
359 xfree(s->auth_proto);
360 xfree(s->auth_data);
361 s->auth_proto = NULL;
362 s->auth_data = NULL;
364 break;
366 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
367 if (!options.allow_agent_forwarding ||
368 no_agent_forwarding_flag || compat13) {
369 debug("Authentication agent forwarding not permitted for this authentication.");
370 break;
372 debug("Received authentication agent forwarding request.");
373 success = auth_input_request_forwarding(s->pw);
374 break;
376 case SSH_CMSG_PORT_FORWARD_REQUEST:
377 if (no_port_forwarding_flag) {
378 debug("Port forwarding not permitted for this authentication.");
379 break;
381 if (!options.allow_tcp_forwarding) {
382 debug("Port forwarding not permitted.");
383 break;
385 debug("Received TCP/IP port forwarding request.");
386 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
387 options.gateway_ports) < 0) {
388 debug("Port forwarding failed.");
389 break;
391 success = 1;
392 break;
394 case SSH_CMSG_MAX_PACKET_SIZE:
395 if (packet_set_maxsize(packet_get_int()) > 0)
396 success = 1;
397 break;
399 case SSH_CMSG_EXEC_SHELL:
400 case SSH_CMSG_EXEC_CMD:
401 if (type == SSH_CMSG_EXEC_CMD) {
402 command = packet_get_string(&dlen);
403 debug("Exec command '%.500s'", command);
404 if (do_exec(s, command) != 0)
405 packet_disconnect(
406 "command execution failed");
407 xfree(command);
408 } else {
409 if (do_exec(s, NULL) != 0)
410 packet_disconnect(
411 "shell execution failed");
413 packet_check_eom();
414 session_close(s);
415 return;
417 default:
419 * Any unknown messages in this phase are ignored,
420 * and a failure message is returned.
422 logit("Unknown packet type received after authentication: %d", type);
424 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
425 packet_send();
426 packet_write_wait();
428 /* Enable compression now that we have replied if appropriate. */
429 if (enable_compression_after_reply) {
430 enable_compression_after_reply = 0;
431 packet_start_compression(compression_level);
436 #define USE_PIPES
438 * This is called to fork and execute a command when we have no tty. This
439 * will call do_child from the child, and server_loop from the parent after
440 * setting up file descriptors and such.
443 do_exec_no_pty(Session *s, const char *command)
445 pid_t pid;
447 #ifdef USE_PIPES
448 int pin[2], pout[2], perr[2];
450 /* Allocate pipes for communicating with the program. */
451 if (pipe(pin) < 0) {
452 error("%s: pipe in: %.100s", __func__, strerror(errno));
453 return -1;
455 if (pipe(pout) < 0) {
456 error("%s: pipe out: %.100s", __func__, strerror(errno));
457 close(pin[0]);
458 close(pin[1]);
459 return -1;
461 if (pipe(perr) < 0) {
462 error("%s: pipe err: %.100s", __func__, strerror(errno));
463 close(pin[0]);
464 close(pin[1]);
465 close(pout[0]);
466 close(pout[1]);
467 return -1;
469 #else
470 int inout[2], err[2];
472 /* Uses socket pairs to communicate with the program. */
473 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
474 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
475 return -1;
477 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
478 error("%s: socketpair #2: %.100s", __func__, strerror(errno));
479 close(inout[0]);
480 close(inout[1]);
481 return -1;
483 #endif
485 if (s == NULL)
486 fatal("do_exec_no_pty: no session");
488 session_proctitle(s);
490 /* Fork the child. */
491 switch ((pid = fork())) {
492 case -1:
493 error("%s: fork: %.100s", __func__, strerror(errno));
494 #ifdef USE_PIPES
495 close(pin[0]);
496 close(pin[1]);
497 close(pout[0]);
498 close(pout[1]);
499 close(perr[0]);
500 close(perr[1]);
501 #else
502 close(inout[0]);
503 close(inout[1]);
504 close(err[0]);
505 close(err[1]);
506 #endif
507 return -1;
508 case 0:
509 is_child = 1;
511 /* Child. Reinitialize the log since the pid has changed. */
512 log_init(__progname, options.log_level,
513 options.log_facility, log_stderr);
516 * Create a new session and process group since the 4.4BSD
517 * setlogin() affects the entire process group.
519 if (setsid() < 0)
520 error("setsid failed: %.100s", strerror(errno));
522 #ifdef USE_PIPES
524 * Redirect stdin. We close the parent side of the socket
525 * pair, and make the child side the standard input.
527 close(pin[1]);
528 if (dup2(pin[0], 0) < 0)
529 perror("dup2 stdin");
530 close(pin[0]);
532 /* Redirect stdout. */
533 close(pout[0]);
534 if (dup2(pout[1], 1) < 0)
535 perror("dup2 stdout");
536 close(pout[1]);
538 /* Redirect stderr. */
539 close(perr[0]);
540 if (dup2(perr[1], 2) < 0)
541 perror("dup2 stderr");
542 close(perr[1]);
543 #else
545 * Redirect stdin, stdout, and stderr. Stdin and stdout will
546 * use the same socket, as some programs (particularly rdist)
547 * seem to depend on it.
549 close(inout[1]);
550 close(err[1]);
551 if (dup2(inout[0], 0) < 0) /* stdin */
552 perror("dup2 stdin");
553 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
554 perror("dup2 stdout");
555 close(inout[0]);
556 if (dup2(err[0], 2) < 0) /* stderr */
557 perror("dup2 stderr");
558 close(err[0]);
559 #endif
562 #ifdef _UNICOS
563 cray_init_job(s->pw); /* set up cray jid and tmpdir */
564 #endif
566 /* Do processing for the child (exec command etc). */
567 do_child(s, command);
568 /* NOTREACHED */
569 default:
570 break;
573 #ifdef _UNICOS
574 signal(WJSIGNAL, cray_job_termination_handler);
575 #endif /* _UNICOS */
576 #ifdef HAVE_CYGWIN
577 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
578 #endif
580 s->pid = pid;
581 /* Set interactive/non-interactive mode. */
582 packet_set_interactive(s->display != NULL);
585 * Clear loginmsg, since it's the child's responsibility to display
586 * it to the user, otherwise multiple sessions may accumulate
587 * multiple copies of the login messages.
589 buffer_clear(&loginmsg);
591 #ifdef USE_PIPES
592 /* We are the parent. Close the child sides of the pipes. */
593 close(pin[0]);
594 close(pout[1]);
595 close(perr[1]);
597 if (compat20) {
598 if (s->is_subsystem) {
599 close(perr[0]);
600 perr[0] = -1;
602 session_set_fds(s, pin[1], pout[0], perr[0], 0);
603 } else {
604 /* Enter the interactive session. */
605 server_loop(pid, pin[1], pout[0], perr[0]);
606 /* server_loop has closed pin[1], pout[0], and perr[0]. */
608 #else
609 /* We are the parent. Close the child sides of the socket pairs. */
610 close(inout[0]);
611 close(err[0]);
614 * Enter the interactive session. Note: server_loop must be able to
615 * handle the case that fdin and fdout are the same.
617 if (compat20) {
618 session_set_fds(s, inout[1], inout[1],
619 s->is_subsystem ? -1 : err[1], 0);
620 if (s->is_subsystem)
621 close(err[1]);
622 } else {
623 server_loop(pid, inout[1], inout[1], err[1]);
624 /* server_loop has closed inout[1] and err[1]. */
626 #endif
627 return 0;
631 * This is called to fork and execute a command when we have a tty. This
632 * will call do_child from the child, and server_loop from the parent after
633 * setting up file descriptors, controlling tty, updating wtmp, utmp,
634 * lastlog, and other such operations.
637 do_exec_pty(Session *s, const char *command)
639 int fdout, ptyfd, ttyfd, ptymaster;
640 pid_t pid;
642 if (s == NULL)
643 fatal("do_exec_pty: no session");
644 ptyfd = s->ptyfd;
645 ttyfd = s->ttyfd;
648 * Create another descriptor of the pty master side for use as the
649 * standard input. We could use the original descriptor, but this
650 * simplifies code in server_loop. The descriptor is bidirectional.
651 * Do this before forking (and cleanup in the child) so as to
652 * detect and gracefully fail out-of-fd conditions.
654 if ((fdout = dup(ptyfd)) < 0) {
655 error("%s: dup #1: %s", __func__, strerror(errno));
656 close(ttyfd);
657 close(ptyfd);
658 return -1;
660 /* we keep a reference to the pty master */
661 if ((ptymaster = dup(ptyfd)) < 0) {
662 error("%s: dup #2: %s", __func__, strerror(errno));
663 close(ttyfd);
664 close(ptyfd);
665 close(fdout);
666 return -1;
669 /* Fork the child. */
670 switch ((pid = fork())) {
671 case -1:
672 error("%s: fork: %.100s", __func__, strerror(errno));
673 close(fdout);
674 close(ptymaster);
675 close(ttyfd);
676 close(ptyfd);
677 return -1;
678 case 0:
679 is_child = 1;
681 close(fdout);
682 close(ptymaster);
684 /* Child. Reinitialize the log because the pid has changed. */
685 log_init(__progname, options.log_level,
686 options.log_facility, log_stderr);
687 /* Close the master side of the pseudo tty. */
688 close(ptyfd);
690 /* Make the pseudo tty our controlling tty. */
691 pty_make_controlling_tty(&ttyfd, s->tty);
693 /* Redirect stdin/stdout/stderr from the pseudo tty. */
694 if (dup2(ttyfd, 0) < 0)
695 error("dup2 stdin: %s", strerror(errno));
696 if (dup2(ttyfd, 1) < 0)
697 error("dup2 stdout: %s", strerror(errno));
698 if (dup2(ttyfd, 2) < 0)
699 error("dup2 stderr: %s", strerror(errno));
701 /* Close the extra descriptor for the pseudo tty. */
702 close(ttyfd);
704 /* record login, etc. similar to login(1) */
705 #ifndef HAVE_OSF_SIA
706 if (!(options.use_login && command == NULL)) {
707 #ifdef _UNICOS
708 cray_init_job(s->pw); /* set up cray jid and tmpdir */
709 #endif /* _UNICOS */
710 do_login(s, command);
712 # ifdef LOGIN_NEEDS_UTMPX
713 else
714 do_pre_login(s);
715 # endif
716 #endif
718 * Do common processing for the child, such as execing
719 * the command.
721 do_child(s, command);
722 /* NOTREACHED */
723 default:
724 break;
727 #ifdef _UNICOS
728 signal(WJSIGNAL, cray_job_termination_handler);
729 #endif /* _UNICOS */
730 #ifdef HAVE_CYGWIN
731 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
732 #endif
734 s->pid = pid;
736 /* Parent. Close the slave side of the pseudo tty. */
737 close(ttyfd);
739 /* Enter interactive session. */
740 s->ptymaster = ptymaster;
741 packet_set_interactive(1);
742 if (compat20) {
743 session_set_fds(s, ptyfd, fdout, -1, 1);
744 } else {
745 server_loop(pid, ptyfd, fdout, -1);
746 /* server_loop _has_ closed ptyfd and fdout. */
748 return 0;
751 #ifdef LOGIN_NEEDS_UTMPX
752 static void
753 do_pre_login(Session *s)
755 socklen_t fromlen;
756 struct sockaddr_storage from;
757 pid_t pid = getpid();
760 * Get IP address of client. If the connection is not a socket, let
761 * the address be 0.0.0.0.
763 memset(&from, 0, sizeof(from));
764 fromlen = sizeof(from);
765 if (packet_connection_is_on_socket()) {
766 if (getpeername(packet_get_connection_in(),
767 (struct sockaddr *)&from, &fromlen) < 0) {
768 debug("getpeername: %.100s", strerror(errno));
769 cleanup_exit(255);
773 record_utmp_only(pid, s->tty, s->pw->pw_name,
774 get_remote_name_or_ip(utmp_len, options.use_dns),
775 (struct sockaddr *)&from, fromlen);
777 #endif
780 * This is called to fork and execute a command. If another command is
781 * to be forced, execute that instead.
784 do_exec(Session *s, const char *command)
786 int ret;
788 if (options.adm_forced_command) {
789 original_command = command;
790 command = options.adm_forced_command;
791 if (IS_INTERNAL_SFTP(command)) {
792 s->is_subsystem = s->is_subsystem ?
793 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
794 } else if (s->is_subsystem)
795 s->is_subsystem = SUBSYSTEM_EXT;
796 debug("Forced command (config) '%.900s'", command);
797 } else if (forced_command) {
798 original_command = command;
799 command = forced_command;
800 if (IS_INTERNAL_SFTP(command)) {
801 s->is_subsystem = s->is_subsystem ?
802 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
803 } else if (s->is_subsystem)
804 s->is_subsystem = SUBSYSTEM_EXT;
805 debug("Forced command (key option) '%.900s'", command);
808 #ifdef SSH_AUDIT_EVENTS
809 if (command != NULL)
810 PRIVSEP(audit_run_command(command));
811 else if (s->ttyfd == -1) {
812 char *shell = s->pw->pw_shell;
814 if (shell[0] == '\0') /* empty shell means /bin/sh */
815 shell =_PATH_BSHELL;
816 PRIVSEP(audit_run_command(shell));
818 #endif
819 if (s->ttyfd != -1)
820 ret = do_exec_pty(s, command);
821 else
822 ret = do_exec_no_pty(s, command);
824 original_command = NULL;
827 * Clear loginmsg: it's the child's responsibility to display
828 * it to the user, otherwise multiple sessions may accumulate
829 * multiple copies of the login messages.
831 buffer_clear(&loginmsg);
833 return ret;
836 /* administrative, login(1)-like work */
837 void
838 do_login(Session *s, const char *command)
840 socklen_t fromlen;
841 struct sockaddr_storage from;
842 struct passwd * pw = s->pw;
843 pid_t pid = getpid();
846 * Get IP address of client. If the connection is not a socket, let
847 * the address be 0.0.0.0.
849 memset(&from, 0, sizeof(from));
850 fromlen = sizeof(from);
851 if (packet_connection_is_on_socket()) {
852 if (getpeername(packet_get_connection_in(),
853 (struct sockaddr *)&from, &fromlen) < 0) {
854 debug("getpeername: %.100s", strerror(errno));
855 cleanup_exit(255);
859 /* Record that there was a login on that tty from the remote host. */
860 if (!use_privsep)
861 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
862 get_remote_name_or_ip(utmp_len,
863 options.use_dns),
864 (struct sockaddr *)&from, fromlen);
866 #ifdef USE_PAM
868 * If password change is needed, do it now.
869 * This needs to occur before the ~/.hushlogin check.
871 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
872 display_loginmsg();
873 do_pam_chauthtok();
874 s->authctxt->force_pwchange = 0;
875 /* XXX - signal [net] parent to enable forwardings */
877 #endif
879 if (check_quietlogin(s, command))
880 return;
882 display_loginmsg();
884 do_motd();
888 * Display the message of the day.
890 void
891 do_motd(void)
893 FILE *f;
894 char buf[256];
896 if (options.print_motd) {
897 #ifdef HAVE_LOGIN_CAP
898 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
899 "/etc/motd"), "r");
900 #else
901 f = fopen("/etc/motd", "r");
902 #endif
903 if (f) {
904 while (fgets(buf, sizeof(buf), f))
905 fputs(buf, stdout);
906 fclose(f);
913 * Check for quiet login, either .hushlogin or command given.
916 check_quietlogin(Session *s, const char *command)
918 char buf[256];
919 struct passwd *pw = s->pw;
920 struct stat st;
922 /* Return 1 if .hushlogin exists or a command given. */
923 if (command != NULL)
924 return 1;
925 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
926 #ifdef HAVE_LOGIN_CAP
927 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
928 return 1;
929 #else
930 if (stat(buf, &st) >= 0)
931 return 1;
932 #endif
933 return 0;
937 * Sets the value of the given variable in the environment. If the variable
938 * already exists, its value is overridden.
940 void
941 child_set_env(char ***envp, u_int *envsizep, const char *name,
942 const char *value)
944 char **env;
945 u_int envsize;
946 u_int i, namelen;
949 * If we're passed an uninitialized list, allocate a single null
950 * entry before continuing.
952 if (*envp == NULL && *envsizep == 0) {
953 *envp = xmalloc(sizeof(char *));
954 *envp[0] = NULL;
955 *envsizep = 1;
959 * Find the slot where the value should be stored. If the variable
960 * already exists, we reuse the slot; otherwise we append a new slot
961 * at the end of the array, expanding if necessary.
963 env = *envp;
964 namelen = strlen(name);
965 for (i = 0; env[i]; i++)
966 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
967 break;
968 if (env[i]) {
969 /* Reuse the slot. */
970 xfree(env[i]);
971 } else {
972 /* New variable. Expand if necessary. */
973 envsize = *envsizep;
974 if (i >= envsize - 1) {
975 if (envsize >= 1000)
976 fatal("child_set_env: too many env vars");
977 envsize += 50;
978 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
979 *envsizep = envsize;
981 /* Need to set the NULL pointer at end of array beyond the new slot. */
982 env[i + 1] = NULL;
985 /* Allocate space and format the variable in the appropriate slot. */
986 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
987 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
991 * Reads environment variables from the given file and adds/overrides them
992 * into the environment. If the file does not exist, this does nothing.
993 * Otherwise, it must consist of empty lines, comments (line starts with '#')
994 * and assignments of the form name=value. No other forms are allowed.
996 static void
997 read_environment_file(char ***env, u_int *envsize,
998 const char *filename)
1000 FILE *f;
1001 char buf[4096];
1002 char *cp, *value;
1003 u_int lineno = 0;
1005 f = fopen(filename, "r");
1006 if (!f)
1007 return;
1009 while (fgets(buf, sizeof(buf), f)) {
1010 if (++lineno > 1000)
1011 fatal("Too many lines in environment file %s", filename);
1012 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1014 if (!*cp || *cp == '#' || *cp == '\n')
1015 continue;
1017 cp[strcspn(cp, "\n")] = '\0';
1019 value = strchr(cp, '=');
1020 if (value == NULL) {
1021 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1022 filename);
1023 continue;
1026 * Replace the equals sign by nul, and advance value to
1027 * the value string.
1029 *value = '\0';
1030 value++;
1031 child_set_env(env, envsize, cp, value);
1033 fclose(f);
1036 #ifdef HAVE_ETC_DEFAULT_LOGIN
1038 * Return named variable from specified environment, or NULL if not present.
1040 static char *
1041 child_get_env(char **env, const char *name)
1043 int i;
1044 size_t len;
1046 len = strlen(name);
1047 for (i=0; env[i] != NULL; i++)
1048 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1049 return(env[i] + len + 1);
1050 return NULL;
1054 * Read /etc/default/login.
1055 * We pick up the PATH (or SUPATH for root) and UMASK.
1057 static void
1058 read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1060 char **tmpenv = NULL, *var;
1061 u_int i, tmpenvsize = 0;
1062 u_long mask;
1065 * We don't want to copy the whole file to the child's environment,
1066 * so we use a temporary environment and copy the variables we're
1067 * interested in.
1069 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1071 if (tmpenv == NULL)
1072 return;
1074 if (uid == 0)
1075 var = child_get_env(tmpenv, "SUPATH");
1076 else
1077 var = child_get_env(tmpenv, "PATH");
1078 if (var != NULL)
1079 child_set_env(env, envsize, "PATH", var);
1081 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1082 if (sscanf(var, "%5lo", &mask) == 1)
1083 umask((mode_t)mask);
1085 for (i = 0; tmpenv[i] != NULL; i++)
1086 xfree(tmpenv[i]);
1087 xfree(tmpenv);
1089 #endif /* HAVE_ETC_DEFAULT_LOGIN */
1091 void
1092 copy_environment(char **source, char ***env, u_int *envsize)
1094 char *var_name, *var_val;
1095 int i;
1097 if (source == NULL)
1098 return;
1100 for(i = 0; source[i] != NULL; i++) {
1101 var_name = xstrdup(source[i]);
1102 if ((var_val = strstr(var_name, "=")) == NULL) {
1103 xfree(var_name);
1104 continue;
1106 *var_val++ = '\0';
1108 debug3("Copy environment: %s=%s", var_name, var_val);
1109 child_set_env(env, envsize, var_name, var_val);
1111 xfree(var_name);
1115 static char **
1116 do_setup_env(Session *s, const char *shell)
1118 char buf[256];
1119 u_int i, envsize;
1120 char **env, *laddr;
1121 struct passwd *pw = s->pw;
1122 #if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
1123 char *path = NULL;
1124 #endif
1126 /* Initialize the environment. */
1127 envsize = 100;
1128 env = xcalloc(envsize, sizeof(char *));
1129 env[0] = NULL;
1131 #ifdef HAVE_CYGWIN
1133 * The Windows environment contains some setting which are
1134 * important for a running system. They must not be dropped.
1137 char **p;
1139 p = fetch_windows_environment();
1140 copy_environment(p, &env, &envsize);
1141 free_windows_environment(p);
1143 #endif
1145 #ifdef GSSAPI
1146 /* Allow any GSSAPI methods that we've used to alter
1147 * the childs environment as they see fit
1149 ssh_gssapi_do_child(&env, &envsize);
1150 #endif
1152 if (!options.use_login) {
1153 /* Set basic environment. */
1154 for (i = 0; i < s->num_env; i++)
1155 child_set_env(&env, &envsize, s->env[i].name,
1156 s->env[i].val);
1158 child_set_env(&env, &envsize, "USER", pw->pw_name);
1159 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1160 #ifdef _AIX
1161 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1162 #endif
1163 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
1164 #ifdef HAVE_LOGIN_CAP
1165 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1166 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1167 else
1168 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
1169 #else /* HAVE_LOGIN_CAP */
1170 # ifndef HAVE_CYGWIN
1172 * There's no standard path on Windows. The path contains
1173 * important components pointing to the system directories,
1174 * needed for loading shared libraries. So the path better
1175 * remains intact here.
1177 # ifdef HAVE_ETC_DEFAULT_LOGIN
1178 read_etc_default_login(&env, &envsize, pw->pw_uid);
1179 path = child_get_env(env, "PATH");
1180 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1181 if (path == NULL || *path == '\0') {
1182 child_set_env(&env, &envsize, "PATH",
1183 s->pw->pw_uid == 0 ?
1184 SUPERUSER_PATH : _PATH_STDPATH);
1186 # endif /* HAVE_CYGWIN */
1187 #endif /* HAVE_LOGIN_CAP */
1189 snprintf(buf, sizeof buf, "%.200s/%.50s",
1190 _PATH_MAILDIR, pw->pw_name);
1191 child_set_env(&env, &envsize, "MAIL", buf);
1193 /* Normal systems set SHELL by default. */
1194 child_set_env(&env, &envsize, "SHELL", shell);
1196 if (getenv("TZ"))
1197 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1199 /* Set custom environment options from RSA authentication. */
1200 if (!options.use_login) {
1201 while (custom_environment) {
1202 struct envstring *ce = custom_environment;
1203 char *str = ce->s;
1205 for (i = 0; str[i] != '=' && str[i]; i++)
1207 if (str[i] == '=') {
1208 str[i] = 0;
1209 child_set_env(&env, &envsize, str, str + i + 1);
1211 custom_environment = ce->next;
1212 xfree(ce->s);
1213 xfree(ce);
1217 /* SSH_CLIENT deprecated */
1218 snprintf(buf, sizeof buf, "%.50s %d %d",
1219 get_remote_ipaddr(), get_remote_port(), get_local_port());
1220 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1222 laddr = get_local_ipaddr(packet_get_connection_in());
1223 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
1224 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1225 xfree(laddr);
1226 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1228 if (s->ttyfd != -1)
1229 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1230 if (s->term)
1231 child_set_env(&env, &envsize, "TERM", s->term);
1232 if (s->display)
1233 child_set_env(&env, &envsize, "DISPLAY", s->display);
1234 if (original_command)
1235 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1236 original_command);
1238 #ifdef _UNICOS
1239 if (cray_tmpdir[0] != '\0')
1240 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1241 #endif /* _UNICOS */
1244 * Since we clear KRB5CCNAME at startup, if it's set now then it
1245 * must have been set by a native authentication method (eg AIX or
1246 * SIA), so copy it to the child.
1249 char *cp;
1251 if ((cp = getenv("KRB5CCNAME")) != NULL)
1252 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1255 #ifdef _AIX
1257 char *cp;
1259 if ((cp = getenv("AUTHSTATE")) != NULL)
1260 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1261 read_environment_file(&env, &envsize, "/etc/environment");
1263 #endif
1264 #ifdef KRB5
1265 if (s->authctxt->krb5_ccname)
1266 child_set_env(&env, &envsize, "KRB5CCNAME",
1267 s->authctxt->krb5_ccname);
1268 #endif
1269 #ifdef USE_PAM
1271 * Pull in any environment variables that may have
1272 * been set by PAM.
1274 if (options.use_pam) {
1275 char **p;
1277 p = fetch_pam_child_environment();
1278 copy_environment(p, &env, &envsize);
1279 free_pam_environment(p);
1281 p = fetch_pam_environment();
1282 copy_environment(p, &env, &envsize);
1283 free_pam_environment(p);
1285 #endif /* USE_PAM */
1287 if (auth_sock_name != NULL)
1288 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1289 auth_sock_name);
1291 /* read $HOME/.ssh/environment. */
1292 if (options.permit_user_env && !options.use_login) {
1293 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1294 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
1295 read_environment_file(&env, &envsize, buf);
1297 if (debug_flag) {
1298 /* dump the environment */
1299 fprintf(stderr, "Environment:\n");
1300 for (i = 0; env[i]; i++)
1301 fprintf(stderr, " %.200s\n", env[i]);
1303 return env;
1307 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1308 * first in this order).
1310 static void
1311 do_rc_files(Session *s, const char *shell)
1313 FILE *f = NULL;
1314 char cmd[1024];
1315 int do_xauth;
1316 struct stat st;
1318 do_xauth =
1319 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1321 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
1322 if (!s->is_subsystem && options.adm_forced_command == NULL &&
1323 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
1324 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1325 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1326 if (debug_flag)
1327 fprintf(stderr, "Running %s\n", cmd);
1328 f = popen(cmd, "w");
1329 if (f) {
1330 if (do_xauth)
1331 fprintf(f, "%s %s\n", s->auth_proto,
1332 s->auth_data);
1333 pclose(f);
1334 } else
1335 fprintf(stderr, "Could not run %s\n",
1336 _PATH_SSH_USER_RC);
1337 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1338 if (debug_flag)
1339 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1340 _PATH_SSH_SYSTEM_RC);
1341 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1342 if (f) {
1343 if (do_xauth)
1344 fprintf(f, "%s %s\n", s->auth_proto,
1345 s->auth_data);
1346 pclose(f);
1347 } else
1348 fprintf(stderr, "Could not run %s\n",
1349 _PATH_SSH_SYSTEM_RC);
1350 } else if (do_xauth && options.xauth_location != NULL) {
1351 /* Add authority data to .Xauthority if appropriate. */
1352 if (debug_flag) {
1353 fprintf(stderr,
1354 "Running %.500s remove %.100s\n",
1355 options.xauth_location, s->auth_display);
1356 fprintf(stderr,
1357 "%.500s add %.100s %.100s %.100s\n",
1358 options.xauth_location, s->auth_display,
1359 s->auth_proto, s->auth_data);
1361 snprintf(cmd, sizeof cmd, "%s -q -",
1362 options.xauth_location);
1363 f = popen(cmd, "w");
1364 if (f) {
1365 fprintf(f, "remove %s\n",
1366 s->auth_display);
1367 fprintf(f, "add %s %s %s\n",
1368 s->auth_display, s->auth_proto,
1369 s->auth_data);
1370 pclose(f);
1371 } else {
1372 fprintf(stderr, "Could not run %s\n",
1373 cmd);
1378 static void
1379 do_nologin(struct passwd *pw)
1381 FILE *f = NULL;
1382 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1383 struct stat sb;
1385 #ifdef HAVE_LOGIN_CAP
1386 if (login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1387 return;
1388 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
1389 #else
1390 if (pw->pw_uid == 0)
1391 return;
1392 nl = def_nl;
1393 #endif
1394 if (stat(nl, &sb) == -1) {
1395 if (nl != def_nl)
1396 xfree(nl);
1397 return;
1400 /* /etc/nologin exists. Print its contents if we can and exit. */
1401 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1402 if ((f = fopen(nl, "r")) != NULL) {
1403 while (fgets(buf, sizeof(buf), f))
1404 fputs(buf, stderr);
1405 fclose(f);
1407 exit(254);
1411 * Chroot into a directory after checking it for safety: all path components
1412 * must be root-owned directories with strict permissions.
1414 static void
1415 safely_chroot(const char *path, uid_t uid)
1417 const char *cp;
1418 char component[MAXPATHLEN];
1419 struct stat st;
1421 if (*path != '/')
1422 fatal("chroot path does not begin at root");
1423 if (strlen(path) >= sizeof(component))
1424 fatal("chroot path too long");
1427 * Descend the path, checking that each component is a
1428 * root-owned directory with strict permissions.
1430 for (cp = path; cp != NULL;) {
1431 if ((cp = strchr(cp, '/')) == NULL)
1432 strlcpy(component, path, sizeof(component));
1433 else {
1434 cp++;
1435 memcpy(component, path, cp - path);
1436 component[cp - path] = '\0';
1439 debug3("%s: checking '%s'", __func__, component);
1441 if (stat(component, &st) != 0)
1442 fatal("%s: stat(\"%s\"): %s", __func__,
1443 component, strerror(errno));
1444 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1445 fatal("bad ownership or modes for chroot "
1446 "directory %s\"%s\"",
1447 cp == NULL ? "" : "component ", component);
1448 if (!S_ISDIR(st.st_mode))
1449 fatal("chroot path %s\"%s\" is not a directory",
1450 cp == NULL ? "" : "component ", component);
1454 if (chdir(path) == -1)
1455 fatal("Unable to chdir to chroot path \"%s\": "
1456 "%s", path, strerror(errno));
1457 if (chroot(path) == -1)
1458 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1459 if (chdir("/") == -1)
1460 fatal("%s: chdir(/) after chroot: %s",
1461 __func__, strerror(errno));
1462 verbose("Changed root directory to \"%s\"", path);
1465 /* Set login name, uid, gid, and groups. */
1466 void
1467 do_setusercontext(struct passwd *pw)
1469 char *chroot_path, *tmp;
1471 #ifdef WITH_SELINUX
1472 /* Cache selinux status for later use */
1473 (void)ssh_selinux_enabled();
1474 #endif
1476 #ifndef HAVE_CYGWIN
1477 if (getuid() == 0 || geteuid() == 0)
1478 #endif /* HAVE_CYGWIN */
1480 #ifdef HAVE_LOGIN_CAP
1481 # ifdef __bsdi__
1482 setpgid(0, 0);
1483 # endif
1484 # ifdef USE_PAM
1485 if (options.use_pam) {
1486 do_pam_setcred(use_privsep);
1488 # endif /* USE_PAM */
1489 if (setusercontext(lc, pw, pw->pw_uid,
1490 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
1491 perror("unable to set user context");
1492 exit(1);
1494 #else
1495 # if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1496 /* Sets login uid for accounting */
1497 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1498 error("setluid: %s", strerror(errno));
1499 # endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1501 if (setlogin(pw->pw_name) < 0)
1502 error("setlogin failed: %s", strerror(errno));
1503 if (setgid(pw->pw_gid) < 0) {
1504 perror("setgid");
1505 exit(1);
1507 /* Initialize the group list. */
1508 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1509 perror("initgroups");
1510 exit(1);
1512 endgrent();
1513 # ifdef USE_PAM
1515 * PAM credentials may take the form of supplementary groups.
1516 * These will have been wiped by the above initgroups() call.
1517 * Reestablish them here.
1519 if (options.use_pam) {
1520 do_pam_setcred(use_privsep);
1522 # endif /* USE_PAM */
1523 # if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1524 irix_setusercontext(pw);
1525 # endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
1526 # ifdef _AIX
1527 aix_usrinfo(pw);
1528 # endif /* _AIX */
1529 # ifdef USE_LIBIAF
1530 if (set_id(pw->pw_name) != 0) {
1531 exit(1);
1533 # endif /* USE_LIBIAF */
1534 #endif
1535 #ifdef HAVE_SETPCRED
1537 * If we have a chroot directory, we set all creds except real
1538 * uid which we will need for chroot. If we don't have a
1539 * chroot directory, we don't override anything.
1542 char **creds = NULL, *chroot_creds[] =
1543 { "REAL_USER=root", NULL };
1545 if (options.chroot_directory != NULL &&
1546 strcasecmp(options.chroot_directory, "none") != 0)
1547 creds = chroot_creds;
1549 if (setpcred(pw->pw_name, creds) == -1)
1550 fatal("Failed to set process credentials");
1552 #endif /* HAVE_SETPCRED */
1554 if (options.chroot_directory != NULL &&
1555 strcasecmp(options.chroot_directory, "none") != 0) {
1556 tmp = tilde_expand_filename(options.chroot_directory,
1557 pw->pw_uid);
1558 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1559 "u", pw->pw_name, (char *)NULL);
1560 safely_chroot(chroot_path, pw->pw_uid);
1561 free(tmp);
1562 free(chroot_path);
1565 #ifdef HAVE_LOGIN_CAP
1566 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1567 perror("unable to set user context (setuser)");
1568 exit(1);
1570 #else
1571 /* Permanently switch to the desired uid. */
1572 permanently_set_uid(pw);
1573 #endif
1576 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1577 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1579 #ifdef WITH_SELINUX
1580 ssh_selinux_setup_exec_context(pw->pw_name);
1581 #endif
1584 static void
1585 do_pwchange(Session *s)
1587 fflush(NULL);
1588 fprintf(stderr, "WARNING: Your password has expired.\n");
1589 if (s->ttyfd != -1) {
1590 fprintf(stderr,
1591 "You must change your password now and login again!\n");
1592 #ifdef PASSWD_NEEDS_USERNAME
1593 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1594 (char *)NULL);
1595 #else
1596 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1597 #endif
1598 perror("passwd");
1599 } else {
1600 fprintf(stderr,
1601 "Password change required but no TTY available.\n");
1603 exit(1);
1606 static void
1607 launch_login(struct passwd *pw, const char *hostname)
1609 /* Launch login(1). */
1611 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1612 #ifdef xxxLOGIN_NEEDS_TERM
1613 (s->term ? s->term : "unknown"),
1614 #endif /* LOGIN_NEEDS_TERM */
1615 #ifdef LOGIN_NO_ENDOPT
1616 "-p", "-f", pw->pw_name, (char *)NULL);
1617 #else
1618 "-p", "-f", "--", pw->pw_name, (char *)NULL);
1619 #endif
1621 /* Login couldn't be executed, die. */
1623 perror("login");
1624 exit(1);
1627 static void
1628 child_close_fds(void)
1630 int i;
1632 if (packet_get_connection_in() == packet_get_connection_out())
1633 close(packet_get_connection_in());
1634 else {
1635 close(packet_get_connection_in());
1636 close(packet_get_connection_out());
1639 * Close all descriptors related to channels. They will still remain
1640 * open in the parent.
1642 /* XXX better use close-on-exec? -markus */
1643 channel_close_all();
1646 * Close any extra file descriptors. Note that there may still be
1647 * descriptors left by system functions. They will be closed later.
1649 endpwent();
1652 * Close any extra open file descriptors so that we don't have them
1653 * hanging around in clients. Note that we want to do this after
1654 * initgroups, because at least on Solaris 2.3 it leaves file
1655 * descriptors open.
1657 for (i = 3; i < 64; i++)
1658 close(i);
1662 * Performs common processing for the child, such as setting up the
1663 * environment, closing extra file descriptors, setting the user and group
1664 * ids, and executing the command or shell.
1666 #define ARGV_MAX 10
1667 void
1668 do_child(Session *s, const char *command)
1670 extern char **environ;
1671 char **env;
1672 char *argv[ARGV_MAX];
1673 const char *shell, *shell0, *hostname = NULL;
1674 struct passwd *pw = s->pw;
1675 int r = 0;
1677 /* remove hostkey from the child's memory */
1678 destroy_sensitive_data();
1680 /* Force a password change */
1681 if (s->authctxt->force_pwchange) {
1682 do_setusercontext(pw);
1683 child_close_fds();
1684 do_pwchange(s);
1685 exit(1);
1688 /* login(1) is only called if we execute the login shell */
1689 if (options.use_login && command != NULL)
1690 options.use_login = 0;
1692 #ifdef _UNICOS
1693 cray_setup(pw->pw_uid, pw->pw_name, command);
1694 #endif /* _UNICOS */
1697 * Login(1) does this as well, and it needs uid 0 for the "-h"
1698 * switch, so we let login(1) to this for us.
1700 if (!options.use_login) {
1701 #ifdef HAVE_OSF_SIA
1702 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
1703 if (!check_quietlogin(s, command))
1704 do_motd();
1705 #else /* HAVE_OSF_SIA */
1706 /* When PAM is enabled we rely on it to do the nologin check */
1707 if (!options.use_pam)
1708 do_nologin(pw);
1709 do_setusercontext(pw);
1711 * PAM session modules in do_setusercontext may have
1712 * generated messages, so if this in an interactive
1713 * login then display them too.
1715 if (!check_quietlogin(s, command))
1716 display_loginmsg();
1717 #endif /* HAVE_OSF_SIA */
1720 #ifdef USE_PAM
1721 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1722 debug3("PAM session not opened, exiting");
1723 display_loginmsg();
1724 exit(254);
1726 #endif
1729 * Get the shell from the password data. An empty shell field is
1730 * legal, and means /bin/sh.
1732 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1735 * Make sure $SHELL points to the shell from the password file,
1736 * even if shell is overridden from login.conf
1738 env = do_setup_env(s, shell);
1740 #ifdef HAVE_LOGIN_CAP
1741 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1742 #endif
1744 /* we have to stash the hostname before we close our socket. */
1745 if (options.use_login)
1746 hostname = get_remote_name_or_ip(utmp_len,
1747 options.use_dns);
1749 * Close the connection descriptors; note that this is the child, and
1750 * the server will still have the socket open, and it is important
1751 * that we do not shutdown it. Note that the descriptors cannot be
1752 * closed before building the environment, as we call
1753 * get_remote_ipaddr there.
1755 child_close_fds();
1758 * Must take new environment into use so that .ssh/rc,
1759 * /etc/ssh/sshrc and xauth are run in the proper environment.
1761 environ = env;
1763 #if defined(KRB5) && defined(USE_AFS)
1765 * At this point, we check to see if AFS is active and if we have
1766 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1767 * if we can (and need to) extend the ticket into an AFS token. If
1768 * we don't do this, we run into potential problems if the user's
1769 * home directory is in AFS and it's not world-readable.
1772 if (options.kerberos_get_afs_token && k_hasafs() &&
1773 (s->authctxt->krb5_ctx != NULL)) {
1774 char cell[64];
1776 debug("Getting AFS token");
1778 k_setpag();
1780 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1781 krb5_afslog(s->authctxt->krb5_ctx,
1782 s->authctxt->krb5_fwd_ccache, cell, NULL);
1784 krb5_afslog_home(s->authctxt->krb5_ctx,
1785 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1787 #endif
1789 /* Change current directory to the user's home directory. */
1790 if (chdir(pw->pw_dir) < 0) {
1791 /* Suppress missing homedir warning for chroot case */
1792 #ifdef HAVE_LOGIN_CAP
1793 r = login_getcapbool(lc, "requirehome", 0);
1794 #endif
1795 if (r || options.chroot_directory == NULL)
1796 fprintf(stderr, "Could not chdir to home "
1797 "directory %s: %s\n", pw->pw_dir,
1798 strerror(errno));
1799 if (r)
1800 exit(1);
1803 closefrom(STDERR_FILENO + 1);
1805 if (!options.use_login)
1806 do_rc_files(s, shell);
1808 /* restore SIGPIPE for child */
1809 signal(SIGPIPE, SIG_DFL);
1811 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1812 printf("This service allows sftp connections only.\n");
1813 fflush(NULL);
1814 exit(1);
1815 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1816 extern int optind, optreset;
1817 int i;
1818 char *p, *args;
1820 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
1821 args = xstrdup(command ? command : "sftp-server");
1822 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1823 if (i < ARGV_MAX - 1)
1824 argv[i++] = p;
1825 argv[i] = NULL;
1826 optind = optreset = 1;
1827 __progname = argv[0];
1828 #ifdef WITH_SELINUX
1829 ssh_selinux_change_context("sftpd_t");
1830 #endif
1831 exit(sftp_server_main(i, argv, s->pw));
1834 fflush(NULL);
1836 if (options.use_login) {
1837 launch_login(pw, hostname);
1838 /* NEVERREACHED */
1841 /* Get the last component of the shell name. */
1842 if ((shell0 = strrchr(shell, '/')) != NULL)
1843 shell0++;
1844 else
1845 shell0 = shell;
1848 * If we have no command, execute the shell. In this case, the shell
1849 * name to be passed in argv[0] is preceded by '-' to indicate that
1850 * this is a login shell.
1852 if (!command) {
1853 char argv0[256];
1855 /* Start the shell. Set initial character to '-'. */
1856 argv0[0] = '-';
1858 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1859 >= sizeof(argv0) - 1) {
1860 errno = EINVAL;
1861 perror(shell);
1862 exit(1);
1865 /* Execute the shell. */
1866 argv[0] = argv0;
1867 argv[1] = NULL;
1868 execve(shell, argv, env);
1870 /* Executing the shell failed. */
1871 perror(shell);
1872 exit(1);
1875 * Execute the command using the user's shell. This uses the -c
1876 * option to execute the command.
1878 argv[0] = (char *) shell0;
1879 argv[1] = "-c";
1880 argv[2] = (char *) command;
1881 argv[3] = NULL;
1882 execve(shell, argv, env);
1883 perror(shell);
1884 exit(1);
1887 void
1888 session_unused(int id)
1890 debug3("%s: session id %d unused", __func__, id);
1891 if (id >= options.max_sessions ||
1892 id >= sessions_nalloc) {
1893 fatal("%s: insane session id %d (max %d nalloc %d)",
1894 __func__, id, options.max_sessions, sessions_nalloc);
1896 bzero(&sessions[id], sizeof(*sessions));
1897 sessions[id].self = id;
1898 sessions[id].used = 0;
1899 sessions[id].chanid = -1;
1900 sessions[id].ptyfd = -1;
1901 sessions[id].ttyfd = -1;
1902 sessions[id].ptymaster = -1;
1903 sessions[id].x11_chanids = NULL;
1904 sessions[id].next_unused = sessions_first_unused;
1905 sessions_first_unused = id;
1908 Session *
1909 session_new(void)
1911 Session *s, *tmp;
1913 if (sessions_first_unused == -1) {
1914 if (sessions_nalloc >= options.max_sessions)
1915 return NULL;
1916 debug2("%s: allocate (allocated %d max %d)",
1917 __func__, sessions_nalloc, options.max_sessions);
1918 tmp = xrealloc(sessions, sessions_nalloc + 1,
1919 sizeof(*sessions));
1920 if (tmp == NULL) {
1921 error("%s: cannot allocate %d sessions",
1922 __func__, sessions_nalloc + 1);
1923 return NULL;
1925 sessions = tmp;
1926 session_unused(sessions_nalloc++);
1929 if (sessions_first_unused >= sessions_nalloc ||
1930 sessions_first_unused < 0) {
1931 fatal("%s: insane first_unused %d max %d nalloc %d",
1932 __func__, sessions_first_unused, options.max_sessions,
1933 sessions_nalloc);
1936 s = &sessions[sessions_first_unused];
1937 if (s->used) {
1938 fatal("%s: session %d already used",
1939 __func__, sessions_first_unused);
1941 sessions_first_unused = s->next_unused;
1942 s->used = 1;
1943 s->next_unused = -1;
1944 debug("session_new: session %d", s->self);
1946 return s;
1949 static void
1950 session_dump(void)
1952 int i;
1953 for (i = 0; i < sessions_nalloc; i++) {
1954 Session *s = &sessions[i];
1956 debug("dump: used %d next_unused %d session %d %p "
1957 "channel %d pid %ld",
1958 s->used,
1959 s->next_unused,
1960 s->self,
1962 s->chanid,
1963 (long)s->pid);
1968 session_open(Authctxt *authctxt, int chanid)
1970 Session *s = session_new();
1971 debug("session_open: channel %d", chanid);
1972 if (s == NULL) {
1973 error("no more sessions");
1974 return 0;
1976 s->authctxt = authctxt;
1977 s->pw = authctxt->pw;
1978 if (s->pw == NULL || !authctxt->valid)
1979 fatal("no user for session %d", s->self);
1980 debug("session_open: session %d: link with channel %d", s->self, chanid);
1981 s->chanid = chanid;
1982 return 1;
1985 Session *
1986 session_by_tty(char *tty)
1988 int i;
1989 for (i = 0; i < sessions_nalloc; i++) {
1990 Session *s = &sessions[i];
1991 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1992 debug("session_by_tty: session %d tty %s", i, tty);
1993 return s;
1996 debug("session_by_tty: unknown tty %.100s", tty);
1997 session_dump();
1998 return NULL;
2001 static Session *
2002 session_by_channel(int id)
2004 int i;
2005 for (i = 0; i < sessions_nalloc; i++) {
2006 Session *s = &sessions[i];
2007 if (s->used && s->chanid == id) {
2008 debug("session_by_channel: session %d channel %d",
2009 i, id);
2010 return s;
2013 debug("session_by_channel: unknown channel %d", id);
2014 session_dump();
2015 return NULL;
2018 static Session *
2019 session_by_x11_channel(int id)
2021 int i, j;
2023 for (i = 0; i < sessions_nalloc; i++) {
2024 Session *s = &sessions[i];
2026 if (s->x11_chanids == NULL || !s->used)
2027 continue;
2028 for (j = 0; s->x11_chanids[j] != -1; j++) {
2029 if (s->x11_chanids[j] == id) {
2030 debug("session_by_x11_channel: session %d "
2031 "channel %d", s->self, id);
2032 return s;
2036 debug("session_by_x11_channel: unknown channel %d", id);
2037 session_dump();
2038 return NULL;
2041 static Session *
2042 session_by_pid(pid_t pid)
2044 int i;
2045 debug("session_by_pid: pid %ld", (long)pid);
2046 for (i = 0; i < sessions_nalloc; i++) {
2047 Session *s = &sessions[i];
2048 if (s->used && s->pid == pid)
2049 return s;
2051 error("session_by_pid: unknown pid %ld", (long)pid);
2052 session_dump();
2053 return NULL;
2056 static int
2057 session_window_change_req(Session *s)
2059 s->col = packet_get_int();
2060 s->row = packet_get_int();
2061 s->xpixel = packet_get_int();
2062 s->ypixel = packet_get_int();
2063 packet_check_eom();
2064 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2065 return 1;
2068 static int
2069 session_pty_req(Session *s)
2071 u_int len;
2072 int n_bytes;
2074 if (no_pty_flag) {
2075 debug("Allocating a pty not permitted for this authentication.");
2076 return 0;
2078 if (s->ttyfd != -1) {
2079 packet_disconnect("Protocol error: you already have a pty.");
2080 return 0;
2083 s->term = packet_get_string(&len);
2085 if (compat20) {
2086 s->col = packet_get_int();
2087 s->row = packet_get_int();
2088 } else {
2089 s->row = packet_get_int();
2090 s->col = packet_get_int();
2092 s->xpixel = packet_get_int();
2093 s->ypixel = packet_get_int();
2095 if (strcmp(s->term, "") == 0) {
2096 xfree(s->term);
2097 s->term = NULL;
2100 /* Allocate a pty and open it. */
2101 debug("Allocating pty.");
2102 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2103 sizeof(s->tty)))) {
2104 if (s->term)
2105 xfree(s->term);
2106 s->term = NULL;
2107 s->ptyfd = -1;
2108 s->ttyfd = -1;
2109 error("session_pty_req: session %d alloc failed", s->self);
2110 return 0;
2112 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
2114 /* for SSH1 the tty modes length is not given */
2115 if (!compat20)
2116 n_bytes = packet_remaining();
2117 tty_parse_modes(s->ttyfd, &n_bytes);
2119 if (!use_privsep)
2120 pty_setowner(s->pw, s->tty);
2122 /* Set window size from the packet. */
2123 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2125 packet_check_eom();
2126 session_proctitle(s);
2127 return 1;
2130 static int
2131 session_subsystem_req(Session *s)
2133 struct stat st;
2134 u_int len;
2135 int success = 0;
2136 char *prog, *cmd, *subsys = packet_get_string(&len);
2137 u_int i;
2139 packet_check_eom();
2140 logit("subsystem request for %.100s", subsys);
2142 for (i = 0; i < options.num_subsystems; i++) {
2143 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
2144 prog = options.subsystem_command[i];
2145 cmd = options.subsystem_args[i];
2146 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
2147 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2148 debug("subsystem: %s", prog);
2149 } else {
2150 if (stat(prog, &st) < 0)
2151 debug("subsystem: cannot stat %s: %s",
2152 prog, strerror(errno));
2153 s->is_subsystem = SUBSYSTEM_EXT;
2154 debug("subsystem: exec() %s", cmd);
2156 success = do_exec(s, cmd) == 0;
2157 break;
2161 if (!success)
2162 logit("subsystem request for %.100s failed, subsystem not found",
2163 subsys);
2165 xfree(subsys);
2166 return success;
2169 static int
2170 session_x11_req(Session *s)
2172 int success;
2174 if (s->auth_proto != NULL || s->auth_data != NULL) {
2175 error("session_x11_req: session %d: "
2176 "x11 forwarding already active", s->self);
2177 return 0;
2179 s->single_connection = packet_get_char();
2180 s->auth_proto = packet_get_string(NULL);
2181 s->auth_data = packet_get_string(NULL);
2182 s->screen = packet_get_int();
2183 packet_check_eom();
2185 success = session_setup_x11fwd(s);
2186 if (!success) {
2187 xfree(s->auth_proto);
2188 xfree(s->auth_data);
2189 s->auth_proto = NULL;
2190 s->auth_data = NULL;
2192 return success;
2195 static int
2196 session_shell_req(Session *s)
2198 packet_check_eom();
2199 return do_exec(s, NULL) == 0;
2202 static int
2203 session_exec_req(Session *s)
2205 u_int len, success;
2207 char *command = packet_get_string(&len);
2208 packet_check_eom();
2209 success = do_exec(s, command) == 0;
2210 xfree(command);
2211 return success;
2214 static int
2215 session_break_req(Session *s)
2218 packet_get_int(); /* ignored */
2219 packet_check_eom();
2221 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
2222 return 0;
2223 return 1;
2226 static int
2227 session_env_req(Session *s)
2229 char *name, *val;
2230 u_int name_len, val_len, i;
2232 name = packet_get_string(&name_len);
2233 val = packet_get_string(&val_len);
2234 packet_check_eom();
2236 /* Don't set too many environment variables */
2237 if (s->num_env > 128) {
2238 debug2("Ignoring env request %s: too many env vars", name);
2239 goto fail;
2242 for (i = 0; i < options.num_accept_env; i++) {
2243 if (match_pattern(name, options.accept_env[i])) {
2244 debug2("Setting env %d: %s=%s", s->num_env, name, val);
2245 s->env = xrealloc(s->env, s->num_env + 1,
2246 sizeof(*s->env));
2247 s->env[s->num_env].name = name;
2248 s->env[s->num_env].val = val;
2249 s->num_env++;
2250 return (1);
2253 debug2("Ignoring env request %s: disallowed name", name);
2255 fail:
2256 xfree(name);
2257 xfree(val);
2258 return (0);
2261 static int
2262 session_auth_agent_req(Session *s)
2264 static int called = 0;
2265 packet_check_eom();
2266 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
2267 debug("session_auth_agent_req: no_agent_forwarding_flag");
2268 return 0;
2270 if (called) {
2271 return 0;
2272 } else {
2273 called = 1;
2274 return auth_input_request_forwarding(s->pw);
2279 session_input_channel_req(Channel *c, const char *rtype)
2281 int success = 0;
2282 Session *s;
2284 if ((s = session_by_channel(c->self)) == NULL) {
2285 logit("session_input_channel_req: no session %d req %.100s",
2286 c->self, rtype);
2287 return 0;
2289 debug("session_input_channel_req: session %d req %s", s->self, rtype);
2292 * a session is in LARVAL state until a shell, a command
2293 * or a subsystem is executed
2295 if (c->type == SSH_CHANNEL_LARVAL) {
2296 if (strcmp(rtype, "shell") == 0) {
2297 success = session_shell_req(s);
2298 } else if (strcmp(rtype, "exec") == 0) {
2299 success = session_exec_req(s);
2300 } else if (strcmp(rtype, "pty-req") == 0) {
2301 success = session_pty_req(s);
2302 } else if (strcmp(rtype, "x11-req") == 0) {
2303 success = session_x11_req(s);
2304 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2305 success = session_auth_agent_req(s);
2306 } else if (strcmp(rtype, "subsystem") == 0) {
2307 success = session_subsystem_req(s);
2308 } else if (strcmp(rtype, "env") == 0) {
2309 success = session_env_req(s);
2312 if (strcmp(rtype, "window-change") == 0) {
2313 success = session_window_change_req(s);
2314 } else if (strcmp(rtype, "break") == 0) {
2315 success = session_break_req(s);
2318 return success;
2321 void
2322 session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
2324 if (!compat20)
2325 fatal("session_set_fds: called for proto != 2.0");
2327 * now that have a child and a pipe to the child,
2328 * we can activate our channel and register the fd's
2330 if (s->chanid == -1)
2331 fatal("no channel for session %d", s->self);
2332 channel_set_fds(s->chanid,
2333 fdout, fdin, fderr,
2334 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
2335 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
2339 * Function to perform pty cleanup. Also called if we get aborted abnormally
2340 * (e.g., due to a dropped connection).
2342 void
2343 session_pty_cleanup2(Session *s)
2345 if (s == NULL) {
2346 error("session_pty_cleanup: no session");
2347 return;
2349 if (s->ttyfd == -1)
2350 return;
2352 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
2354 /* Record that the user has logged out. */
2355 if (s->pid != 0)
2356 record_logout(s->pid, s->tty, s->pw->pw_name);
2358 /* Release the pseudo-tty. */
2359 if (getuid() == 0)
2360 pty_release(s->tty);
2363 * Close the server side of the socket pairs. We must do this after
2364 * the pty cleanup, so that another process doesn't get this pty
2365 * while we're still cleaning up.
2367 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2368 error("close(s->ptymaster/%d): %s",
2369 s->ptymaster, strerror(errno));
2371 /* unlink pty from session */
2372 s->ttyfd = -1;
2375 void
2376 session_pty_cleanup(Session *s)
2378 PRIVSEP(session_pty_cleanup2(s));
2381 static char *
2382 sig2name(int sig)
2384 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2385 SSH_SIG(ABRT);
2386 SSH_SIG(ALRM);
2387 SSH_SIG(FPE);
2388 SSH_SIG(HUP);
2389 SSH_SIG(ILL);
2390 SSH_SIG(INT);
2391 SSH_SIG(KILL);
2392 SSH_SIG(PIPE);
2393 SSH_SIG(QUIT);
2394 SSH_SIG(SEGV);
2395 SSH_SIG(TERM);
2396 SSH_SIG(USR1);
2397 SSH_SIG(USR2);
2398 #undef SSH_SIG
2399 return "SIG@openssh.com";
2402 static void
2403 session_close_x11(int id)
2405 Channel *c;
2407 if ((c = channel_by_id(id)) == NULL) {
2408 debug("session_close_x11: x11 channel %d missing", id);
2409 } else {
2410 /* Detach X11 listener */
2411 debug("session_close_x11: detach x11 channel %d", id);
2412 channel_cancel_cleanup(id);
2413 if (c->ostate != CHAN_OUTPUT_CLOSED)
2414 chan_mark_dead(c);
2418 static void
2419 session_close_single_x11(int id, void *arg)
2421 Session *s;
2422 u_int i;
2424 debug3("session_close_single_x11: channel %d", id);
2425 channel_cancel_cleanup(id);
2426 if ((s = session_by_x11_channel(id)) == NULL)
2427 fatal("session_close_single_x11: no x11 channel %d", id);
2428 for (i = 0; s->x11_chanids[i] != -1; i++) {
2429 debug("session_close_single_x11: session %d: "
2430 "closing channel %d", s->self, s->x11_chanids[i]);
2432 * The channel "id" is already closing, but make sure we
2433 * close all of its siblings.
2435 if (s->x11_chanids[i] != id)
2436 session_close_x11(s->x11_chanids[i]);
2438 xfree(s->x11_chanids);
2439 s->x11_chanids = NULL;
2440 if (s->display) {
2441 xfree(s->display);
2442 s->display = NULL;
2444 if (s->auth_proto) {
2445 xfree(s->auth_proto);
2446 s->auth_proto = NULL;
2448 if (s->auth_data) {
2449 xfree(s->auth_data);
2450 s->auth_data = NULL;
2452 if (s->auth_display) {
2453 xfree(s->auth_display);
2454 s->auth_display = NULL;
2458 static void
2459 session_exit_message(Session *s, int status)
2461 Channel *c;
2463 if ((c = channel_lookup(s->chanid)) == NULL)
2464 fatal("session_exit_message: session %d: no channel %d",
2465 s->self, s->chanid);
2466 debug("session_exit_message: session %d channel %d pid %ld",
2467 s->self, s->chanid, (long)s->pid);
2469 if (WIFEXITED(status)) {
2470 channel_request_start(s->chanid, "exit-status", 0);
2471 packet_put_int(WEXITSTATUS(status));
2472 packet_send();
2473 } else if (WIFSIGNALED(status)) {
2474 channel_request_start(s->chanid, "exit-signal", 0);
2475 packet_put_cstring(sig2name(WTERMSIG(status)));
2476 #ifdef WCOREDUMP
2477 packet_put_char(WCOREDUMP(status)? 1 : 0);
2478 #else /* WCOREDUMP */
2479 packet_put_char(0);
2480 #endif /* WCOREDUMP */
2481 packet_put_cstring("");
2482 packet_put_cstring("");
2483 packet_send();
2484 } else {
2485 /* Some weird exit cause. Just exit. */
2486 packet_disconnect("wait returned status %04x.", status);
2489 /* disconnect channel */
2490 debug("session_exit_message: release channel %d", s->chanid);
2493 * Adjust cleanup callback attachment to send close messages when
2494 * the channel gets EOF. The session will be then be closed
2495 * by session_close_by_channel when the childs close their fds.
2497 channel_register_cleanup(c->self, session_close_by_channel, 1);
2500 * emulate a write failure with 'chan_write_failed', nobody will be
2501 * interested in data we write.
2502 * Note that we must not call 'chan_read_failed', since there could
2503 * be some more data waiting in the pipe.
2505 if (c->ostate != CHAN_OUTPUT_CLOSED)
2506 chan_write_failed(c);
2509 void
2510 session_close(Session *s)
2512 u_int i;
2514 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2515 if (s->ttyfd != -1)
2516 session_pty_cleanup(s);
2517 if (s->term)
2518 xfree(s->term);
2519 if (s->display)
2520 xfree(s->display);
2521 if (s->x11_chanids)
2522 xfree(s->x11_chanids);
2523 if (s->auth_display)
2524 xfree(s->auth_display);
2525 if (s->auth_data)
2526 xfree(s->auth_data);
2527 if (s->auth_proto)
2528 xfree(s->auth_proto);
2529 if (s->env != NULL) {
2530 for (i = 0; i < s->num_env; i++) {
2531 xfree(s->env[i].name);
2532 xfree(s->env[i].val);
2534 xfree(s->env);
2536 session_proctitle(s);
2537 session_unused(s->self);
2540 void
2541 session_close_by_pid(pid_t pid, int status)
2543 Session *s = session_by_pid(pid);
2544 if (s == NULL) {
2545 debug("session_close_by_pid: no session for pid %ld",
2546 (long)pid);
2547 return;
2549 if (s->chanid != -1)
2550 session_exit_message(s, status);
2551 if (s->ttyfd != -1)
2552 session_pty_cleanup(s);
2553 s->pid = 0;
2557 * this is called when a channel dies before
2558 * the session 'child' itself dies
2560 void
2561 session_close_by_channel(int id, void *arg)
2563 Session *s = session_by_channel(id);
2564 u_int i;
2566 if (s == NULL) {
2567 debug("session_close_by_channel: no session for id %d", id);
2568 return;
2570 debug("session_close_by_channel: channel %d child %ld",
2571 id, (long)s->pid);
2572 if (s->pid != 0) {
2573 debug("session_close_by_channel: channel %d: has child", id);
2575 * delay detach of session, but release pty, since
2576 * the fd's to the child are already closed
2578 if (s->ttyfd != -1)
2579 session_pty_cleanup(s);
2580 return;
2582 /* detach by removing callback */
2583 channel_cancel_cleanup(s->chanid);
2585 /* Close any X11 listeners associated with this session */
2586 if (s->x11_chanids != NULL) {
2587 for (i = 0; s->x11_chanids[i] != -1; i++) {
2588 session_close_x11(s->x11_chanids[i]);
2589 s->x11_chanids[i] = -1;
2593 s->chanid = -1;
2594 session_close(s);
2597 void
2598 session_destroy_all(void (*closefunc)(Session *))
2600 int i;
2601 for (i = 0; i < sessions_nalloc; i++) {
2602 Session *s = &sessions[i];
2603 if (s->used) {
2604 if (closefunc != NULL)
2605 closefunc(s);
2606 else
2607 session_close(s);
2612 static char *
2613 session_tty_list(void)
2615 static char buf[1024];
2616 int i;
2617 char *cp;
2619 buf[0] = '\0';
2620 for (i = 0; i < sessions_nalloc; i++) {
2621 Session *s = &sessions[i];
2622 if (s->used && s->ttyfd != -1) {
2624 if (strncmp(s->tty, "/dev/", 5) != 0) {
2625 cp = strrchr(s->tty, '/');
2626 cp = (cp == NULL) ? s->tty : cp + 1;
2627 } else
2628 cp = s->tty + 5;
2630 if (buf[0] != '\0')
2631 strlcat(buf, ",", sizeof buf);
2632 strlcat(buf, cp, sizeof buf);
2635 if (buf[0] == '\0')
2636 strlcpy(buf, "notty", sizeof buf);
2637 return buf;
2640 void
2641 session_proctitle(Session *s)
2643 if (s->pw == NULL)
2644 error("no user for session %d", s->self);
2645 else
2646 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2650 session_setup_x11fwd(Session *s)
2652 struct stat st;
2653 char display[512], auth_display[512];
2654 char hostname[MAXHOSTNAMELEN];
2655 u_int i;
2657 if (no_x11_forwarding_flag) {
2658 packet_send_debug("X11 forwarding disabled in user configuration file.");
2659 return 0;
2661 if (!options.x11_forwarding) {
2662 debug("X11 forwarding disabled in server configuration file.");
2663 return 0;
2665 if (!options.xauth_location ||
2666 (stat(options.xauth_location, &st) == -1)) {
2667 packet_send_debug("No xauth program; cannot forward with spoofing.");
2668 return 0;
2670 if (options.use_login) {
2671 packet_send_debug("X11 forwarding disabled; "
2672 "not compatible with UseLogin=yes.");
2673 return 0;
2675 if (s->display != NULL) {
2676 debug("X11 display already set.");
2677 return 0;
2679 if (x11_create_display_inet(options.x11_display_offset,
2680 options.x11_use_localhost, s->single_connection,
2681 &s->display_number, &s->x11_chanids) == -1) {
2682 debug("x11_create_display_inet failed.");
2683 return 0;
2685 for (i = 0; s->x11_chanids[i] != -1; i++) {
2686 channel_register_cleanup(s->x11_chanids[i],
2687 session_close_single_x11, 0);
2690 /* Set up a suitable value for the DISPLAY variable. */
2691 if (gethostname(hostname, sizeof(hostname)) < 0)
2692 fatal("gethostname: %.100s", strerror(errno));
2694 * auth_display must be used as the displayname when the
2695 * authorization entry is added with xauth(1). This will be
2696 * different than the DISPLAY string for localhost displays.
2698 if (options.x11_use_localhost) {
2699 snprintf(display, sizeof display, "localhost:%u.%u",
2700 s->display_number, s->screen);
2701 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
2702 s->display_number, s->screen);
2703 s->display = xstrdup(display);
2704 s->auth_display = xstrdup(auth_display);
2705 } else {
2706 #ifdef IPADDR_IN_DISPLAY
2707 struct hostent *he;
2708 struct in_addr my_addr;
2710 he = gethostbyname(hostname);
2711 if (he == NULL) {
2712 error("Can't get IP address for X11 DISPLAY.");
2713 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2714 return 0;
2716 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2717 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
2718 s->display_number, s->screen);
2719 #else
2720 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
2721 s->display_number, s->screen);
2722 #endif
2723 s->display = xstrdup(display);
2724 s->auth_display = xstrdup(display);
2727 return 1;
2730 static void
2731 do_authenticated2(Authctxt *authctxt)
2733 server_loop2(authctxt);
2736 void
2737 do_cleanup(Authctxt *authctxt)
2739 static int called = 0;
2741 debug("do_cleanup");
2743 /* no cleanup if we're in the child for login shell */
2744 if (is_child)
2745 return;
2747 /* avoid double cleanup */
2748 if (called)
2749 return;
2750 called = 1;
2752 if (authctxt == NULL)
2753 return;
2755 #ifdef USE_PAM
2756 if (options.use_pam) {
2757 sshpam_cleanup();
2758 sshpam_thread_cleanup();
2760 #endif
2762 if (!authctxt->authenticated)
2763 return;
2765 #ifdef KRB5
2766 if (options.kerberos_ticket_cleanup &&
2767 authctxt->krb5_ctx)
2768 krb5_cleanup_proc(authctxt);
2769 #endif
2771 #ifdef GSSAPI
2772 if (compat20 && options.gss_cleanup_creds)
2773 ssh_gssapi_cleanup_creds();
2774 #endif
2776 /* remove agent socket */
2777 auth_sock_cleanup_proc(authctxt->pw);
2780 * Cleanup ptys/utmp only if privsep is disabled,
2781 * or if running in monitor.
2783 if (!use_privsep || mm_is_monitor())
2784 session_destroy_all(session_pty_cleanup2);