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