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