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