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