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