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