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