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