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