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