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