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