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