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