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