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