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