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