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