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