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