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