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