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