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