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