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