]> andersk Git - openssh.git/blob - session.c
- markus@cvs.openbsd.org 2001/03/23 14:28:32
[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 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.67 2001/03/23 14:28:32 markus Exp $");
37
38 #include "ssh.h"
39 #include "ssh1.h"
40 #include "ssh2.h"
41 #include "xmalloc.h"
42 #include "sshpty.h"
43 #include "packet.h"
44 #include "buffer.h"
45 #include "mpaux.h"
46 #include "uidswap.h"
47 #include "compat.h"
48 #include "channels.h"
49 #include "nchan.h"
50 #include "bufaux.h"
51 #include "auth.h"
52 #include "auth-options.h"
53 #include "pathnames.h"
54 #include "log.h"
55 #include "servconf.h"
56 #include "sshlogin.h"
57 #include "serverloop.h"
58 #include "canohost.h"
59 #include "session.h"
60
61 #ifdef WITH_IRIX_PROJECT
62 #include <proj.h>
63 #endif /* WITH_IRIX_PROJECT */
64 #ifdef WITH_IRIX_JOBS
65 #include <sys/resource.h>
66 #endif
67 #ifdef WITH_IRIX_AUDIT
68 #include <sat.h>
69 #endif /* WITH_IRIX_AUDIT */
70
71 #if defined(HAVE_USERSEC_H)
72 #include <usersec.h>
73 #endif
74
75 #ifdef HAVE_CYGWIN
76 #include <windows.h>
77 #include <sys/cygwin.h>
78 #define is_winnt       (GetVersion() < 0x80000000)
79 #endif
80
81 /* AIX limits */
82 #if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
83 # define S_UFSIZE_HARD  S_UFSIZE "_hard"
84 # define S_UCPU_HARD  S_UCPU "_hard"
85 # define S_UDATA_HARD  S_UDATA "_hard"
86 # define S_USTACK_HARD  S_USTACK "_hard"
87 # define S_URSS_HARD  S_URSS "_hard"
88 # define S_UCORE_HARD  S_UCORE "_hard"
89 # define S_UNOFILE_HARD S_UNOFILE "_hard"
90 #endif
91
92 #ifdef _AIX
93 # include <uinfo.h>
94 #endif
95
96 /* types */
97
98 #define TTYSZ 64
99 typedef struct Session Session;
100 struct Session {
101         int     used;
102         int     self;
103         struct  passwd *pw;
104         pid_t   pid;
105         /* tty */
106         char    *term;
107         int     ptyfd, ttyfd, ptymaster;
108         int     row, col, xpixel, ypixel;
109         char    tty[TTYSZ];
110         /* X11 */
111         char    *display;
112         int     screen;
113         char    *auth_proto;
114         char    *auth_data;
115         int     single_connection;
116         /* proto 2 */
117         int     chanid;
118         int     is_subsystem;
119 };
120
121 /* func */
122
123 Session *session_new(void);
124 void    session_set_fds(Session *s, int fdin, int fdout, int fderr);
125 void    session_pty_cleanup(Session *s);
126 void    session_proctitle(Session *s);
127 void    do_exec_pty(Session *s, const char *command);
128 void    do_exec_no_pty(Session *s, const char *command);
129 void    do_login(Session *s, const char *command);
130 void    do_child(Session *s, const char *command);
131
132 void    do_authenticated1(Authctxt *authctxt);
133 void    do_authenticated2(Authctxt *authctxt);
134
135 /* import */
136 extern ServerOptions options;
137 extern char *__progname;
138 extern int log_stderr;
139 extern int debug_flag;
140 extern u_int utmp_len;
141
142 extern int startup_pipe;
143
144 /* Local Xauthority file. */
145 static char *xauthfile;
146
147 /* original command from peer. */
148 char *original_command = NULL;
149
150 /* data */
151 #define MAX_SESSIONS 10
152 Session sessions[MAX_SESSIONS];
153
154 #ifdef WITH_AIXAUTHENTICATE
155 /* AIX's lastlogin message, set in auth1.c */
156 char *aixloginmsg;
157 #endif /* WITH_AIXAUTHENTICATE */
158
159 #ifdef HAVE_LOGIN_CAP
160 static login_cap_t *lc;
161 #endif
162
163 void
164 do_authenticated(Authctxt *authctxt)
165 {
166         /*
167          * Cancel the alarm we set to limit the time taken for
168          * authentication.
169          */
170         alarm(0);
171         if (startup_pipe != -1) {
172                 close(startup_pipe);
173                 startup_pipe = -1;
174         }
175 #if defined(HAVE_LOGIN_CAP) && defined(HAVE_PW_CLASS_IN_PASSWD)
176         if ((lc = login_getclass(authctxt->pw->pw_class)) == NULL) {
177                 error("unable to get login class");
178                 return;
179         }
180 #endif
181         /* setup the channel layer */
182         if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
183                 channel_permit_all_opens();
184
185         if (compat20)
186                 do_authenticated2(authctxt);
187         else
188                 do_authenticated1(authctxt);
189 }
190
191 /*
192  * Remove local Xauthority file.
193  */
194 void
195 xauthfile_cleanup_proc(void *ignore)
196 {
197         debug("xauthfile_cleanup_proc called");
198
199         if (xauthfile != NULL) {
200                 char *p;
201                 unlink(xauthfile);
202                 p = strrchr(xauthfile, '/');
203                 if (p != NULL) {
204                         *p = '\0';
205                         rmdir(xauthfile);
206                 }
207                 xfree(xauthfile);
208                 xauthfile = NULL;
209         }
210 }
211
212 /*
213  * Function to perform cleanup if we get aborted abnormally (e.g., due to a
214  * dropped connection).
215  */
216 void
217 pty_cleanup_proc(void *session)
218 {
219         Session *s=session;
220         if (s == NULL)
221                 fatal("pty_cleanup_proc: no session");
222         debug("pty_cleanup_proc: %s", s->tty);
223
224         if (s->pid != 0) {
225                 /* Record that the user has logged out. */
226                 record_logout(s->pid, s->tty);
227         }
228
229         /* Release the pseudo-tty. */
230         pty_release(s->tty);
231 }
232
233 /*
234  * Prepares for an interactive session.  This is called after the user has
235  * been successfully authenticated.  During this message exchange, pseudo
236  * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
237  * are requested, etc.
238  */
239 void
240 do_authenticated1(Authctxt *authctxt)
241 {
242         Session *s;
243         char *command;
244         int success, type, fd, n_bytes, plen, screen_flag, have_pty = 0;
245         int compression_level = 0, enable_compression_after_reply = 0;
246         u_int proto_len, data_len, dlen;
247
248         s = session_new();
249         s->pw = authctxt->pw;
250
251         /*
252          * We stay in this loop until the client requests to execute a shell
253          * or a command.
254          */
255         for (;;) {
256                 success = 0;
257
258                 /* Get a packet from the client. */
259                 type = packet_read(&plen);
260
261                 /* Process the packet. */
262                 switch (type) {
263                 case SSH_CMSG_REQUEST_COMPRESSION:
264                         packet_integrity_check(plen, 4, type);
265                         compression_level = packet_get_int();
266                         if (compression_level < 1 || compression_level > 9) {
267                                 packet_send_debug("Received illegal compression level %d.",
268                                      compression_level);
269                                 break;
270                         }
271                         /* Enable compression after we have responded with SUCCESS. */
272                         enable_compression_after_reply = 1;
273                         success = 1;
274                         break;
275
276                 case SSH_CMSG_REQUEST_PTY:
277                         if (no_pty_flag) {
278                                 debug("Allocating a pty not permitted for this authentication.");
279                                 break;
280                         }
281                         if (have_pty)
282                                 packet_disconnect("Protocol error: you already have a pty.");
283
284                         debug("Allocating pty.");
285
286                         /* Allocate a pty and open it. */
287                         if (!pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
288                             sizeof(s->tty))) {
289                                 error("Failed to allocate pty.");
290                                 break;
291                         }
292                         fatal_add_cleanup(pty_cleanup_proc, (void *)s);
293                         pty_setowner(s->pw, s->tty);
294
295                         /* Get TERM from the packet.  Note that the value may be of arbitrary length. */
296                         s->term = packet_get_string(&dlen);
297                         packet_integrity_check(dlen, strlen(s->term), type);
298                         /* packet_integrity_check(plen, 4 + dlen + 4*4 + n_bytes, type); */
299                         /* Remaining bytes */
300                         n_bytes = plen - (4 + dlen + 4 * 4);
301
302                         if (strcmp(s->term, "") == 0) {
303                                 xfree(s->term);
304                                 s->term = NULL;
305                         }
306                         /* Get window size from the packet. */
307                         s->row = packet_get_int();
308                         s->col = packet_get_int();
309                         s->xpixel = packet_get_int();
310                         s->ypixel = packet_get_int();
311                         pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
312
313                         /* Get tty modes from the packet. */
314                         tty_parse_modes(s->ttyfd, &n_bytes);
315                         packet_integrity_check(plen, 4 + dlen + 4 * 4 + n_bytes, type);
316
317                         session_proctitle(s);
318
319                         /* Indicate that we now have a pty. */
320                         success = 1;
321                         have_pty = 1;
322                         break;
323
324                 case SSH_CMSG_X11_REQUEST_FORWARDING:
325                         if (!options.x11_forwarding) {
326                                 packet_send_debug("X11 forwarding disabled in server configuration file.");
327                                 break;
328                         }
329                         if (!options.xauth_location) {
330                                 packet_send_debug("No xauth program; cannot forward with spoofing.");
331                                 break;
332                         }
333                         if (no_x11_forwarding_flag) {
334                                 packet_send_debug("X11 forwarding not permitted for this authentication.");
335                                 break;
336                         }
337                         debug("Received request for X11 forwarding with auth spoofing.");
338                         if (s->display != NULL)
339                                 packet_disconnect("Protocol error: X11 display already set.");
340
341                         s->auth_proto = packet_get_string(&proto_len);
342                         s->auth_data = packet_get_string(&data_len);
343
344                         screen_flag = packet_get_protocol_flags() &
345                             SSH_PROTOFLAG_SCREEN_NUMBER;
346                         debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
347
348                         if (packet_remaining() == 4) {
349                                 if (!screen_flag)
350                                         debug2("Buggy client: "
351                                             "X11 screen flag missing");
352                                 packet_integrity_check(plen,
353                                     4 + proto_len + 4 + data_len + 4, type);
354                                 s->screen = packet_get_int();
355                         } else {
356                                 packet_integrity_check(plen,
357                                     4 + proto_len + 4 + data_len, type);
358                                 s->screen = 0;
359                         }
360                         s->display = x11_create_display_inet(s->screen, options.x11_display_offset);
361
362                         if (s->display == NULL)
363                                 break;
364
365                         /* Setup to always have a local .Xauthority. */
366                         xauthfile = xmalloc(MAXPATHLEN);
367                         strlcpy(xauthfile, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
368                         temporarily_use_uid(s->pw->pw_uid);
369                         if (mkdtemp(xauthfile) == NULL) {
370                                 restore_uid();
371                                 error("private X11 dir: mkdtemp %s failed: %s",
372                                     xauthfile, strerror(errno));
373                                 xfree(xauthfile);
374                                 xauthfile = NULL;
375                                 /* XXXX remove listening channels */
376                                 break;
377                         }
378                         strlcat(xauthfile, "/cookies", MAXPATHLEN);
379                         fd = open(xauthfile, O_RDWR|O_CREAT|O_EXCL, 0600);
380                         if (fd >= 0)
381                                 close(fd);
382                         restore_uid();
383                         fatal_add_cleanup(xauthfile_cleanup_proc, NULL);
384                         success = 1;
385                         break;
386
387                 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
388                         if (no_agent_forwarding_flag || compat13) {
389                                 debug("Authentication agent forwarding not permitted for this authentication.");
390                                 break;
391                         }
392                         debug("Received authentication agent forwarding request.");
393                         success = auth_input_request_forwarding(s->pw);
394                         break;
395
396                 case SSH_CMSG_PORT_FORWARD_REQUEST:
397                         if (no_port_forwarding_flag) {
398                                 debug("Port forwarding not permitted for this authentication.");
399                                 break;
400                         }
401                         if (!options.allow_tcp_forwarding) {
402                                 debug("Port forwarding not permitted.");
403                                 break;
404                         }
405                         debug("Received TCP/IP port forwarding request.");
406                         channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
407                         success = 1;
408                         break;
409
410                 case SSH_CMSG_MAX_PACKET_SIZE:
411                         if (packet_set_maxsize(packet_get_int()) > 0)
412                                 success = 1;
413                         break;
414
415                 case SSH_CMSG_EXEC_SHELL:
416                 case SSH_CMSG_EXEC_CMD:
417                         if (type == SSH_CMSG_EXEC_CMD) {
418                                 command = packet_get_string(&dlen);
419                                 debug("Exec command '%.500s'", command);
420                                 packet_integrity_check(plen, 4 + dlen, type);
421                         } else {
422                                 command = NULL;
423                                 packet_integrity_check(plen, 0, type);
424                         }
425                         if (forced_command != NULL) {
426                                 original_command = command;
427                                 command = forced_command;
428                                 debug("Forced command '%.500s'", forced_command);
429                         }
430                         if (have_pty)
431                                 do_exec_pty(s, command);
432                         else
433                                 do_exec_no_pty(s, command);
434
435                         if (command != NULL)
436                                 xfree(command);
437                         /* Cleanup user's local Xauthority file. */
438                         if (xauthfile)
439                                 xauthfile_cleanup_proc(NULL);
440                         return;
441
442                 default:
443                         /*
444                          * Any unknown messages in this phase are ignored,
445                          * and a failure message is returned.
446                          */
447                         log("Unknown packet type received after authentication: %d", type);
448                 }
449                 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
450                 packet_send();
451                 packet_write_wait();
452
453                 /* Enable compression now that we have replied if appropriate. */
454                 if (enable_compression_after_reply) {
455                         enable_compression_after_reply = 0;
456                         packet_start_compression(compression_level);
457                 }
458         }
459 }
460
461 /*
462  * This is called to fork and execute a command when we have no tty.  This
463  * will call do_child from the child, and server_loop from the parent after
464  * setting up file descriptors and such.
465  */
466 void
467 do_exec_no_pty(Session *s, const char *command)
468 {
469         int pid;
470
471 #ifdef USE_PIPES
472         int pin[2], pout[2], perr[2];
473         /* Allocate pipes for communicating with the program. */
474         if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
475                 packet_disconnect("Could not create pipes: %.100s",
476                                   strerror(errno));
477 #else /* USE_PIPES */
478         int inout[2], err[2];
479         /* Uses socket pairs to communicate with the program. */
480         if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
481             socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
482                 packet_disconnect("Could not create socket pairs: %.100s",
483                                   strerror(errno));
484 #endif /* USE_PIPES */
485         if (s == NULL)
486                 fatal("do_exec_no_pty: no session");
487
488         session_proctitle(s);
489
490 #if defined(USE_PAM)
491         do_pam_setcred();
492 #endif /* USE_PAM */
493
494         /* Fork the child. */
495         if ((pid = fork()) == 0) {
496                 /* Child.  Reinitialize the log since the pid has changed. */
497                 log_init(__progname, options.log_level, options.log_facility, log_stderr);
498
499                 signal(SIGPIPE, SIG_DFL);
500
501                 /*
502                  * Create a new session and process group since the 4.4BSD
503                  * setlogin() affects the entire process group.
504                  */
505                 if (setsid() < 0)
506                         error("setsid failed: %.100s", strerror(errno));
507
508 #ifdef USE_PIPES
509                 /*
510                  * Redirect stdin.  We close the parent side of the socket
511                  * pair, and make the child side the standard input.
512                  */
513                 close(pin[1]);
514                 if (dup2(pin[0], 0) < 0)
515                         perror("dup2 stdin");
516                 close(pin[0]);
517
518                 /* Redirect stdout. */
519                 close(pout[0]);
520                 if (dup2(pout[1], 1) < 0)
521                         perror("dup2 stdout");
522                 close(pout[1]);
523
524                 /* Redirect stderr. */
525                 close(perr[0]);
526                 if (dup2(perr[1], 2) < 0)
527                         perror("dup2 stderr");
528                 close(perr[1]);
529 #else /* USE_PIPES */
530                 /*
531                  * Redirect stdin, stdout, and stderr.  Stdin and stdout will
532                  * use the same socket, as some programs (particularly rdist)
533                  * seem to depend on it.
534                  */
535                 close(inout[1]);
536                 close(err[1]);
537                 if (dup2(inout[0], 0) < 0)      /* stdin */
538                         perror("dup2 stdin");
539                 if (dup2(inout[0], 1) < 0)      /* stdout.  Note: same socket as stdin. */
540                         perror("dup2 stdout");
541                 if (dup2(err[0], 2) < 0)        /* stderr */
542                         perror("dup2 stderr");
543 #endif /* USE_PIPES */
544
545                 /* Do processing for the child (exec command etc). */
546                 do_child(s, command);
547                 /* NOTREACHED */
548         }
549 #ifdef HAVE_CYGWIN
550         if (is_winnt)
551                 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
552 #endif
553         if (pid < 0)
554                 packet_disconnect("fork failed: %.100s", strerror(errno));
555         s->pid = pid;
556         /* Set interactive/non-interactive mode. */
557         packet_set_interactive(s->display != NULL);
558 #ifdef USE_PIPES
559         /* We are the parent.  Close the child sides of the pipes. */
560         close(pin[0]);
561         close(pout[1]);
562         close(perr[1]);
563
564         if (compat20) {
565                 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
566         } else {
567                 /* Enter the interactive session. */
568                 server_loop(pid, pin[1], pout[0], perr[0]);
569                 /* server_loop has closed pin[1], pout[0], and perr[0]. */
570         }
571 #else /* USE_PIPES */
572         /* We are the parent.  Close the child sides of the socket pairs. */
573         close(inout[0]);
574         close(err[0]);
575
576         /*
577          * Enter the interactive session.  Note: server_loop must be able to
578          * handle the case that fdin and fdout are the same.
579          */
580         if (compat20) {
581                 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
582         } else {
583                 server_loop(pid, inout[1], inout[1], err[1]);
584                 /* server_loop has closed inout[1] and err[1]. */
585         }
586 #endif /* USE_PIPES */
587 }
588
589 /*
590  * This is called to fork and execute a command when we have a tty.  This
591  * will call do_child from the child, and server_loop from the parent after
592  * setting up file descriptors, controlling tty, updating wtmp, utmp,
593  * lastlog, and other such operations.
594  */
595 void
596 do_exec_pty(Session *s, const char *command)
597 {
598         int fdout, ptyfd, ttyfd, ptymaster;
599         pid_t pid;
600
601         if (s == NULL)
602                 fatal("do_exec_pty: no session");
603         ptyfd = s->ptyfd;
604         ttyfd = s->ttyfd;
605
606 #if defined(USE_PAM)
607         do_pam_session(s->pw->pw_name, s->tty);
608         do_pam_setcred();
609 #endif
610
611         /* Fork the child. */
612         if ((pid = fork()) == 0) {
613                 /* Child.  Reinitialize the log because the pid has changed. */
614                 log_init(__progname, options.log_level, options.log_facility, log_stderr);
615
616                 signal(SIGPIPE, SIG_DFL);
617
618                 /* Close the master side of the pseudo tty. */
619                 close(ptyfd);
620
621                 /* Make the pseudo tty our controlling tty. */
622                 pty_make_controlling_tty(&ttyfd, s->tty);
623
624                 /* Redirect stdin from the pseudo tty. */
625                 if (dup2(ttyfd, fileno(stdin)) < 0)
626                         error("dup2 stdin failed: %.100s", strerror(errno));
627
628                 /* Redirect stdout to the pseudo tty. */
629                 if (dup2(ttyfd, fileno(stdout)) < 0)
630                         error("dup2 stdin failed: %.100s", strerror(errno));
631
632                 /* Redirect stderr to the pseudo tty. */
633                 if (dup2(ttyfd, fileno(stderr)) < 0)
634                         error("dup2 stdin failed: %.100s", strerror(errno));
635
636                 /* Close the extra descriptor for the pseudo tty. */
637                 close(ttyfd);
638
639                 /* record login, etc. similar to login(1) */
640                 if (!(options.use_login && command == NULL))
641                         do_login(s, command);
642
643                 /* Do common processing for the child, such as execing the command. */
644                 do_child(s, command);
645                 /* NOTREACHED */
646         }
647 #ifdef HAVE_CYGWIN
648         if (is_winnt)
649                 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
650 #endif
651         if (pid < 0)
652                 packet_disconnect("fork failed: %.100s", strerror(errno));
653         s->pid = pid;
654
655         /* Parent.  Close the slave side of the pseudo tty. */
656         close(ttyfd);
657
658         /*
659          * Create another descriptor of the pty master side for use as the
660          * standard input.  We could use the original descriptor, but this
661          * simplifies code in server_loop.  The descriptor is bidirectional.
662          */
663         fdout = dup(ptyfd);
664         if (fdout < 0)
665                 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
666
667         /* we keep a reference to the pty master */
668         ptymaster = dup(ptyfd);
669         if (ptymaster < 0)
670                 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
671         s->ptymaster = ptymaster;
672
673         /* Enter interactive session. */
674         packet_set_interactive(1);
675         if (compat20) {
676                 session_set_fds(s, ptyfd, fdout, -1);
677         } else {
678                 server_loop(pid, ptyfd, fdout, -1);
679                 /* server_loop _has_ closed ptyfd and fdout. */
680                 session_pty_cleanup(s);
681         }
682 }
683
684 const char *
685 get_remote_name_or_ip(void)
686 {
687         static const char *remote = "";
688         if (utmp_len > 0)
689                 remote = get_canonical_hostname(options.reverse_mapping_check);
690         if (utmp_len == 0 || strlen(remote) > utmp_len)
691                 remote = get_remote_ipaddr();
692         return remote;
693 }
694
695 /* administrative, login(1)-like work */
696 void
697 do_login(Session *s, const char *command)
698 {
699         FILE *f;
700         char *time_string;
701         char buf[256];
702         char hostname[MAXHOSTNAMELEN];
703         socklen_t fromlen;
704         struct sockaddr_storage from;
705         struct stat st;
706         time_t last_login_time;
707         struct passwd * pw = s->pw;
708         pid_t pid = getpid();
709
710         /*
711          * Get IP address of client. If the connection is not a socket, let
712          * the address be 0.0.0.0.
713          */
714         memset(&from, 0, sizeof(from));
715         if (packet_connection_is_on_socket()) {
716                 fromlen = sizeof(from);
717                 if (getpeername(packet_get_connection_in(),
718                      (struct sockaddr *) & from, &fromlen) < 0) {
719                         debug("getpeername: %.100s", strerror(errno));
720                         fatal_cleanup();
721                 }
722         }
723
724         /* Get the time and hostname when the user last logged in. */
725         hostname[0] = '\0';
726         last_login_time = get_last_login_time(pw->pw_uid, pw->pw_name,
727             hostname, sizeof(hostname));
728
729         /* Record that there was a login on that tty from the remote host. */
730         record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
731             get_remote_name_or_ip(), (struct sockaddr *)&from);
732
733 #ifdef USE_PAM
734         /*
735          * If password change is needed, do it now.
736          * This needs to occur before the ~/.hushlogin check.
737          */
738         if (is_pam_password_change_required()) {
739                 print_pam_messages();
740                 do_pam_chauthtok();
741         }
742 #endif
743
744         /* Done if .hushlogin exists or a command given. */
745         if (command != NULL)
746                 return;
747         snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
748 #ifdef HAVE_LOGIN_CAP
749         if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
750 #else
751         if (stat(buf, &st) >= 0)
752 #endif
753                 return;
754
755 #ifdef USE_PAM
756         if (!is_pam_password_change_required())
757                 print_pam_messages();
758 #endif /* USE_PAM */
759 #ifdef WITH_AIXAUTHENTICATE
760         if (aixloginmsg && *aixloginmsg)
761                 printf("%s\n", aixloginmsg);
762 #endif /* WITH_AIXAUTHENTICATE */
763
764         if (last_login_time != 0) {
765                 time_string = ctime(&last_login_time);
766                 if (strchr(time_string, '\n'))
767                         *strchr(time_string, '\n') = 0;
768                 if (strcmp(hostname, "") == 0)
769                         printf("Last login: %s\r\n", time_string);
770                 else
771                         printf("Last login: %s from %s\r\n", time_string, hostname);
772         }
773         if (options.print_motd) {
774 #ifdef HAVE_LOGIN_CAP
775                 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
776                     "/etc/motd"), "r");
777 #else
778                 f = fopen("/etc/motd", "r");
779 #endif
780                 if (f) {
781                         while (fgets(buf, sizeof(buf), f))
782                                 fputs(buf, stdout);
783                         fclose(f);
784                 }
785         }
786 }
787
788 /*
789  * Sets the value of the given variable in the environment.  If the variable
790  * already exists, its value is overriden.
791  */
792 void
793 child_set_env(char ***envp, u_int *envsizep, const char *name,
794               const char *value)
795 {
796         u_int i, namelen;
797         char **env;
798
799         /*
800          * Find the slot where the value should be stored.  If the variable
801          * already exists, we reuse the slot; otherwise we append a new slot
802          * at the end of the array, expanding if necessary.
803          */
804         env = *envp;
805         namelen = strlen(name);
806         for (i = 0; env[i]; i++)
807                 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
808                         break;
809         if (env[i]) {
810                 /* Reuse the slot. */
811                 xfree(env[i]);
812         } else {
813                 /* New variable.  Expand if necessary. */
814                 if (i >= (*envsizep) - 1) {
815                         (*envsizep) += 50;
816                         env = (*envp) = xrealloc(env, (*envsizep) * sizeof(char *));
817                 }
818                 /* Need to set the NULL pointer at end of array beyond the new slot. */
819                 env[i + 1] = NULL;
820         }
821
822         /* Allocate space and format the variable in the appropriate slot. */
823         env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
824         snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
825 }
826
827 /*
828  * Reads environment variables from the given file and adds/overrides them
829  * into the environment.  If the file does not exist, this does nothing.
830  * Otherwise, it must consist of empty lines, comments (line starts with '#')
831  * and assignments of the form name=value.  No other forms are allowed.
832  */
833 void
834 read_environment_file(char ***env, u_int *envsize,
835                       const char *filename)
836 {
837         FILE *f;
838         char buf[4096];
839         char *cp, *value;
840
841         f = fopen(filename, "r");
842         if (!f)
843                 return;
844
845         while (fgets(buf, sizeof(buf), f)) {
846                 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
847                         ;
848                 if (!*cp || *cp == '#' || *cp == '\n')
849                         continue;
850                 if (strchr(cp, '\n'))
851                         *strchr(cp, '\n') = '\0';
852                 value = strchr(cp, '=');
853                 if (value == NULL) {
854                         fprintf(stderr, "Bad line in %.100s: %.200s\n", filename, buf);
855                         continue;
856                 }
857                 /*
858                  * Replace the equals sign by nul, and advance value to
859                  * the value string.
860                  */
861                 *value = '\0';
862                 value++;
863                 child_set_env(env, envsize, cp, value);
864         }
865         fclose(f);
866 }
867
868 #ifdef USE_PAM
869 /*
870  * Sets any environment variables which have been specified by PAM
871  */
872 void do_pam_environment(char ***env, int *envsize)
873 {
874         char *equals, var_name[512], var_val[512];
875         char **pam_env;
876         int i;
877
878         if ((pam_env = fetch_pam_environment()) == NULL)
879                 return;
880
881         for(i = 0; pam_env[i] != NULL; i++) {
882                 if ((equals = strstr(pam_env[i], "=")) == NULL)
883                         continue;
884
885                 if (strlen(pam_env[i]) < (sizeof(var_name) - 1)) {
886                         memset(var_name, '\0', sizeof(var_name));
887                         memset(var_val, '\0', sizeof(var_val));
888
889                         strncpy(var_name, pam_env[i], equals - pam_env[i]);
890                         strcpy(var_val, equals + 1);
891
892                         debug3("PAM environment: %s=%s", var_name, var_val);
893
894                         child_set_env(env, envsize, var_name, var_val);
895                 }
896         }
897 }
898 #endif /* USE_PAM */
899
900 #ifdef HAVE_CYGWIN
901 void copy_environment(char ***env, int *envsize)
902 {
903         char *equals, var_name[512], var_val[512];
904         int i;
905
906         for(i = 0; environ[i] != NULL; i++) {
907                 if ((equals = strstr(environ[i], "=")) == NULL)
908                         continue;
909
910                 if (strlen(environ[i]) < (sizeof(var_name) - 1)) {
911                         memset(var_name, '\0', sizeof(var_name));
912                         memset(var_val, '\0', sizeof(var_val));
913
914                         strncpy(var_name, environ[i], equals - environ[i]);
915                         strcpy(var_val, equals + 1);
916
917                         debug3("Copy environment: %s=%s", var_name, var_val);
918
919                         child_set_env(env, envsize, var_name, var_val);
920                 }
921         }
922 }
923 #endif
924
925 #if defined(HAVE_GETUSERATTR)
926 /*
927  * AIX-specific login initialisation
928  */
929 void set_limit(char *user, char *soft, char *hard, int resource, int mult)
930 {
931         struct rlimit rlim;
932         int slim, hlim;
933
934         getrlimit(resource, &rlim);
935
936         slim = 0;
937         if (getuserattr(user, soft, &slim, SEC_INT) != -1) {
938                 if (slim < 0) {
939                         rlim.rlim_cur = RLIM_INFINITY;
940                 } else if (slim != 0) {
941                         /* See the wackiness below */
942                         if (rlim.rlim_cur == slim * mult)
943                                 slim = 0;
944                         else
945                                 rlim.rlim_cur = slim * mult;
946                 }
947         }
948
949         hlim = 0;
950         if (getuserattr(user, hard, &hlim, SEC_INT) != -1) {
951                 if (hlim < 0) {
952                         rlim.rlim_max = RLIM_INFINITY;
953                 } else if (hlim != 0) {
954                         rlim.rlim_max = hlim * mult;
955                 }
956         }
957
958         /*
959          * XXX For cpu and fsize the soft limit is set to the hard limit
960          * if the hard limit is left at its default value and the soft limit
961          * is changed from its default value, either by requesting it
962          * (slim == 0) or by setting it to the current default.  At least
963          * that's how rlogind does it.  If you're confused you're not alone.
964          * Bug or feature? AIX 4.3.1.2
965          */
966         if ((!strcmp(soft, "fsize") || !strcmp(soft, "cpu"))
967             && hlim == 0 && slim != 0)
968                 rlim.rlim_max = rlim.rlim_cur;
969         /* A specified hard limit limits the soft limit */
970         else if (hlim > 0 && rlim.rlim_cur > rlim.rlim_max)
971                 rlim.rlim_cur = rlim.rlim_max;
972         /* A soft limit can increase a hard limit */
973         else if (rlim.rlim_cur > rlim.rlim_max)
974                 rlim.rlim_max = rlim.rlim_cur;
975
976         if (setrlimit(resource, &rlim) != 0)
977                 error("setrlimit(%.10s) failed: %.100s", soft, strerror(errno));
978 }
979
980 void set_limits_from_userattr(char *user)
981 {
982         int mask;
983         char buf[16];
984
985         set_limit(user, S_UFSIZE, S_UFSIZE_HARD, RLIMIT_FSIZE, 512);
986         set_limit(user, S_UCPU, S_UCPU_HARD, RLIMIT_CPU, 1);
987         set_limit(user, S_UDATA, S_UDATA_HARD, RLIMIT_DATA, 512);
988         set_limit(user, S_USTACK, S_USTACK_HARD, RLIMIT_STACK, 512);
989         set_limit(user, S_URSS, S_URSS_HARD, RLIMIT_RSS, 512);
990         set_limit(user, S_UCORE, S_UCORE_HARD, RLIMIT_CORE, 512);
991 #if defined(S_UNOFILE)
992         set_limit(user, S_UNOFILE, S_UNOFILE_HARD, RLIMIT_NOFILE, 1);
993 #endif
994
995         if (getuserattr(user, S_UMASK, &mask, SEC_INT) != -1) {
996                 /* Convert decimal to octal */
997                 (void) snprintf(buf, sizeof(buf), "%d", mask);
998                 if (sscanf(buf, "%o", &mask) == 1)
999                         umask(mask);
1000         }
1001 }
1002 #endif /* defined(HAVE_GETUSERATTR) */
1003
1004 /*
1005  * Performs common processing for the child, such as setting up the
1006  * environment, closing extra file descriptors, setting the user and group
1007  * ids, and executing the command or shell.
1008  */
1009 void
1010 do_child(Session *s, const char *command)
1011 {
1012         const char *shell, *hostname = NULL, *cp = NULL;
1013         struct passwd * pw = s->pw;
1014         char buf[256];
1015         char cmd[1024];
1016         FILE *f = NULL;
1017         u_int envsize, i;
1018         char **env;
1019         extern char **environ;
1020         struct stat st;
1021         char *argv[10];
1022         int do_xauth = s->auth_proto != NULL && s->auth_data != NULL;
1023 #ifdef WITH_IRIX_PROJECT
1024         prid_t projid;
1025 #endif /* WITH_IRIX_PROJECT */
1026 #ifdef WITH_IRIX_JOBS
1027         jid_t jid = 0;
1028 #else
1029 #ifdef WITH_IRIX_ARRAY
1030         int jid = 0;
1031 #endif /* WITH_IRIX_ARRAY */
1032 #endif /* WITH_IRIX_JOBS */
1033
1034         /* login(1) is only called if we execute the login shell */
1035         if (options.use_login && command != NULL)
1036                 options.use_login = 0;
1037
1038 #ifndef USE_PAM /* pam_nologin handles this */
1039         if (!options.use_login) {
1040 # ifdef HAVE_LOGIN_CAP
1041                 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1042                         f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1043                             _PATH_NOLOGIN), "r");
1044 # else /* HAVE_LOGIN_CAP */
1045                 if (pw->pw_uid)
1046                         f = fopen(_PATH_NOLOGIN, "r");
1047 # endif /* HAVE_LOGIN_CAP */
1048                 if (f) {
1049                         /* /etc/nologin exists.  Print its contents and exit. */
1050                         while (fgets(buf, sizeof(buf), f))
1051                                 fputs(buf, stderr);
1052                         fclose(f);
1053                         exit(254);
1054                 }
1055         }
1056 #endif /* USE_PAM */
1057
1058         /* Set login name, uid, gid, and groups. */
1059         /* Login(1) does this as well, and it needs uid 0 for the "-h"
1060            switch, so we let login(1) to this for us. */
1061         if (!options.use_login) {
1062 #ifdef HAVE_OSF_SIA
1063                 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
1064 #else /* HAVE_OSF_SIA */
1065 #ifdef HAVE_CYGWIN
1066                 if (is_winnt) {
1067 #else
1068                 if (getuid() == 0 || geteuid() == 0) {
1069 #endif
1070 # ifdef HAVE_GETUSERATTR
1071                         set_limits_from_userattr(pw->pw_name);
1072 # endif /* HAVE_GETUSERATTR */
1073 # ifdef HAVE_LOGIN_CAP
1074                         if (setusercontext(lc, pw, pw->pw_uid,
1075                             (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1076                                 perror("unable to set user context");
1077                                 exit(1);
1078                         }
1079 #ifdef BSD_AUTH
1080                         if (auth_approval(NULL, lc, pw->pw_name, "ssh") <= 0) {
1081                                 error("approval failure for %s", pw->pw_name);
1082                                 fprintf(stderr, "Approval failure");
1083                                 exit(1);
1084                         }
1085 #endif
1086 # else /* HAVE_LOGIN_CAP */
1087 #if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1088                         /* Sets login uid for accounting */
1089                         if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1090                                 error("setluid: %s", strerror(errno));
1091 #endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1092
1093                         if (setlogin(pw->pw_name) < 0)
1094                                 error("setlogin failed: %s", strerror(errno));
1095                         if (setgid(pw->pw_gid) < 0) {
1096                                 perror("setgid");
1097                                 exit(1);
1098                         }
1099                         /* Initialize the group list. */
1100                         if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1101                                 perror("initgroups");
1102                                 exit(1);
1103                         }
1104                         endgrent();
1105 #  ifdef WITH_IRIX_JOBS
1106                         jid = jlimit_startjob(pw->pw_name, pw->pw_uid, "interactive");
1107                         if (jid == -1) {
1108                                 fatal("Failed to create job container: %.100s",
1109                                       strerror(errno));
1110                         }
1111 #  endif /* WITH_IRIX_JOBS */
1112 #  ifdef WITH_IRIX_ARRAY
1113                         /* initialize array session */
1114                         if (jid == 0) {
1115                                 if (newarraysess() != 0)
1116                                         fatal("Failed to set up new array session: %.100s",
1117                                               strerror(errno));
1118                         }
1119 #  endif /* WITH_IRIX_ARRAY */
1120 #  ifdef WITH_IRIX_PROJECT
1121                         /* initialize irix project info */
1122                         if ((projid = getdfltprojuser(pw->pw_name)) == -1) {
1123                           debug("Failed to get project id, using projid 0");
1124                           projid = 0;
1125                         }
1126                         if (setprid(projid))
1127                           fatal("Failed to initialize project %d for %s: %.100s",
1128                                 (int)projid, pw->pw_name, strerror(errno));
1129 #  endif /* WITH_IRIX_PROJECT */
1130 #ifdef WITH_IRIX_AUDIT
1131                         if (sysconf(_SC_AUDIT)) {
1132                                 debug("Setting sat id to %d", (int) pw->pw_uid);
1133                                 if (satsetid(pw->pw_uid))
1134                                         debug("error setting satid: %.100s", strerror(errno));
1135                         }
1136 #endif /* WITH_IRIX_AUDIT */
1137
1138 #ifdef _AIX
1139                         /*
1140                          * AIX has a "usrinfo" area where logname and
1141                          * other stuff is stored - a few applications
1142                          * actually use this and die if it's not set
1143                          */
1144                         if (s->ttyfd == -1)
1145                                 s->tty[0] = '\0';
1146                         cp = xmalloc(22 + strlen(s->tty) + 
1147                             2 * strlen(pw->pw_name));
1148                         i = sprintf(cp, "LOGNAME=%s%cNAME=%s%cTTY=%s%c%c",
1149                             pw->pw_name, 0, pw->pw_name, 0, s->tty, 0, 0);
1150                         if (usrinfo(SETUINFO, cp, i) == -1)
1151                                 fatal("Couldn't set usrinfo: %s", 
1152                                     strerror(errno));
1153                         debug3("AIX/UsrInfo: set len %d", i);
1154                         xfree(cp);
1155 #endif
1156
1157                         /* Permanently switch to the desired uid. */
1158                         permanently_set_uid(pw->pw_uid);
1159 # endif /* HAVE_LOGIN_CAP */
1160                 }
1161 #endif /* HAVE_OSF_SIA */
1162
1163 #ifdef HAVE_CYGWIN
1164                 if (is_winnt)
1165 #endif
1166                 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1167                         fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1168         }
1169         /*
1170          * Get the shell from the password data.  An empty shell field is
1171          * legal, and means /bin/sh.
1172          */
1173         shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1174 #ifdef HAVE_LOGIN_CAP
1175         shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1176 #endif
1177
1178 #ifdef AFS
1179         /* Try to get AFS tokens for the local cell. */
1180         if (k_hasafs()) {
1181                 char cell[64];
1182
1183                 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1184                         krb_afslog(cell, 0);
1185
1186                 krb_afslog(0, 0);
1187         }
1188 #endif /* AFS */
1189
1190         /* Initialize the environment. */
1191         envsize = 100;
1192         env = xmalloc(envsize * sizeof(char *));
1193         env[0] = NULL;
1194
1195 #ifdef HAVE_CYGWIN
1196         /*
1197          * The Windows environment contains some setting which are
1198          * important for a running system. They must not be dropped.
1199          */
1200         copy_environment(&env, &envsize);
1201 #endif
1202
1203         if (!options.use_login) {
1204                 /* Set basic environment. */
1205                 child_set_env(&env, &envsize, "USER", pw->pw_name);
1206                 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1207                 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
1208 #ifdef HAVE_LOGIN_CAP
1209                 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH);
1210                 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
1211 #else /* HAVE_LOGIN_CAP */
1212 # ifndef HAVE_CYGWIN
1213                 /*
1214                  * There's no standard path on Windows. The path contains
1215                  * important components pointing to the system directories,
1216                  * needed for loading shared libraries. So the path better
1217                  * remains intact here.
1218                  */
1219                 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1220 # endif /* HAVE_CYGWIN */
1221 #endif /* HAVE_LOGIN_CAP */
1222
1223                 snprintf(buf, sizeof buf, "%.200s/%.50s",
1224                          _PATH_MAILDIR, pw->pw_name);
1225                 child_set_env(&env, &envsize, "MAIL", buf);
1226
1227                 /* Normal systems set SHELL by default. */
1228                 child_set_env(&env, &envsize, "SHELL", shell);
1229         }
1230         if (getenv("TZ"))
1231                 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1232
1233         /* Set custom environment options from RSA authentication. */
1234         while (custom_environment) {
1235                 struct envstring *ce = custom_environment;
1236                 char *s = ce->s;
1237                 int i;
1238                 for (i = 0; s[i] != '=' && s[i]; i++);
1239                 if (s[i] == '=') {
1240                         s[i] = 0;
1241                         child_set_env(&env, &envsize, s, s + i + 1);
1242                 }
1243                 custom_environment = ce->next;
1244                 xfree(ce->s);
1245                 xfree(ce);
1246         }
1247
1248         snprintf(buf, sizeof buf, "%.50s %d %d",
1249                  get_remote_ipaddr(), get_remote_port(), get_local_port());
1250         child_set_env(&env, &envsize, "SSH_CLIENT", 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 _AIX
1263         if ((cp = getenv("AUTHSTATE")) != NULL)
1264                 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1265         if ((cp = getenv("KRB5CCNAME")) != NULL)
1266                 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1267         read_environment_file(&env, &envsize, "/etc/environment");
1268 #endif
1269
1270 #ifdef KRB4
1271         {
1272                 extern char *ticket;
1273
1274                 if (ticket)
1275                         child_set_env(&env, &envsize, "KRBTKFILE", ticket);
1276         }
1277 #endif /* KRB4 */
1278
1279 #ifdef USE_PAM
1280         /* Pull in any environment variables that may have been set by PAM. */
1281         do_pam_environment(&env, &envsize);
1282 #endif /* USE_PAM */
1283
1284         if (xauthfile)
1285                 child_set_env(&env, &envsize, "XAUTHORITY", xauthfile);
1286         if (auth_get_socket_name() != NULL)
1287                 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1288                               auth_get_socket_name());
1289
1290         /* read $HOME/.ssh/environment. */
1291         if (!options.use_login) {
1292                 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1293                     pw->pw_dir);
1294                 read_environment_file(&env, &envsize, buf);
1295         }
1296         if (debug_flag) {
1297                 /* dump the environment */
1298                 fprintf(stderr, "Environment:\n");
1299                 for (i = 0; env[i]; i++)
1300                         fprintf(stderr, "  %.200s\n", env[i]);
1301         }
1302         /* we have to stash the hostname before we close our socket. */
1303         if (options.use_login)
1304                 hostname = get_remote_name_or_ip();
1305         /*
1306          * Close the connection descriptors; note that this is the child, and
1307          * the server will still have the socket open, and it is important
1308          * that we do not shutdown it.  Note that the descriptors cannot be
1309          * closed before building the environment, as we call
1310          * get_remote_ipaddr there.
1311          */
1312         if (packet_get_connection_in() == packet_get_connection_out())
1313                 close(packet_get_connection_in());
1314         else {
1315                 close(packet_get_connection_in());
1316                 close(packet_get_connection_out());
1317         }
1318         /*
1319          * Close all descriptors related to channels.  They will still remain
1320          * open in the parent.
1321          */
1322         /* XXX better use close-on-exec? -markus */
1323         channel_close_all();
1324
1325         /*
1326          * Close any extra file descriptors.  Note that there may still be
1327          * descriptors left by system functions.  They will be closed later.
1328          */
1329         endpwent();
1330
1331         /*
1332          * Close any extra open file descriptors so that we don\'t have them
1333          * hanging around in clients.  Note that we want to do this after
1334          * initgroups, because at least on Solaris 2.3 it leaves file
1335          * descriptors open.
1336          */
1337         for (i = 3; i < 64; i++)
1338                 close(i);
1339
1340         /* Change current directory to the user\'s home directory. */
1341         if (chdir(pw->pw_dir) < 0) {
1342                 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1343                         pw->pw_dir, strerror(errno));
1344 #ifdef HAVE_LOGIN_CAP
1345                 if (login_getcapbool(lc, "requirehome", 0))
1346                         exit(1);
1347 #endif
1348         }
1349
1350         /*
1351          * Must take new environment into use so that .ssh/rc, /etc/sshrc and
1352          * xauth are run in the proper environment.
1353          */
1354         environ = env;
1355
1356         /*
1357          * Run $HOME/.ssh/rc, /etc/sshrc, or xauth (whichever is found first
1358          * in this order).
1359          */
1360         if (!options.use_login) {
1361                 if (stat(_PATH_SSH_USER_RC, &st) >= 0) {
1362                         if (debug_flag)
1363                                 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1364                                     _PATH_SSH_USER_RC);
1365                         f = popen(_PATH_BSHELL " " _PATH_SSH_USER_RC, "w");
1366                         if (f) {
1367                                 if (do_xauth)
1368                                         fprintf(f, "%s %s\n", s->auth_proto,
1369                                             s->auth_data);
1370                                 pclose(f);
1371                         } else
1372                                 fprintf(stderr, "Could not run %s\n", 
1373                                     _PATH_SSH_USER_RC);
1374                 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1375                         if (debug_flag)
1376                                 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1377                                     _PATH_SSH_SYSTEM_RC);
1378
1379                         f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1380                         if (f) {
1381                                 if (do_xauth)
1382                                         fprintf(f, "%s %s\n", s->auth_proto,
1383                                             s->auth_data);
1384                                 pclose(f);
1385                         } else
1386                                 fprintf(stderr, "Could not run %s\n",
1387                                     _PATH_SSH_SYSTEM_RC);
1388                 } else if (do_xauth && options.xauth_location != NULL) {
1389                         /* Add authority data to .Xauthority if appropriate. */
1390                         char *screen = strchr(s->display, ':');
1391
1392                         if (debug_flag) {
1393                                 fprintf(stderr,
1394                                     "Running %.100s add "
1395                                     "%.100s %.100s %.100s\n",
1396                                     options.xauth_location, s->display,
1397                                     s->auth_proto, s->auth_data);
1398                                 if (screen != NULL)
1399                                         fprintf(stderr,
1400                                             "Adding %.*s/unix%s %s %s\n",
1401                                             (int)(screen - s->display),
1402                                             s->display, screen,
1403                                             s->auth_proto, s->auth_data);
1404                         }
1405                         snprintf(cmd, sizeof cmd, "%s -q -",
1406                             options.xauth_location);
1407                         f = popen(cmd, "w");
1408                         if (f) {
1409                                 fprintf(f, "add %s %s %s\n", s->display,
1410                                     s->auth_proto, s->auth_data);
1411                                 if (screen != NULL)
1412                                         fprintf(f, "add %.*s/unix%s %s %s\n",
1413                                             (int)(screen - s->display),
1414                                             s->display, screen,
1415                                             s->auth_proto,
1416                                             s->auth_data);
1417                                 pclose(f);
1418                         } else {
1419                                 fprintf(stderr, "Could not run %s\n",
1420                                     cmd);
1421                         }
1422                 }
1423                 /* Get the last component of the shell name. */
1424                 cp = strrchr(shell, '/');
1425                 if (cp)
1426                         cp++;
1427                 else
1428                         cp = shell;
1429         }
1430
1431         /* restore SIGPIPE for child */
1432         signal(SIGPIPE,  SIG_DFL);
1433
1434         /*
1435          * If we have no command, execute the shell.  In this case, the shell
1436          * name to be passed in argv[0] is preceded by '-' to indicate that
1437          * this is a login shell.
1438          */
1439         if (!command) {
1440                 if (!options.use_login) {
1441                         char buf[256];
1442
1443                         /*
1444                          * Check for mail if we have a tty and it was enabled
1445                          * in server options.
1446                          */
1447                         if (s->ttyfd != -1 && options.check_mail) {
1448                                 char *mailbox;
1449                                 struct stat mailstat;
1450
1451                                 mailbox = getenv("MAIL");
1452                                 if (mailbox != NULL) {
1453                                         if (stat(mailbox, &mailstat) != 0 ||
1454                                             mailstat.st_size == 0)
1455                                                 printf("No mail.\n");
1456                                         else if (mailstat.st_mtime < mailstat.st_atime)
1457                                                 printf("You have mail.\n");
1458                                         else
1459                                                 printf("You have new mail.\n");
1460                                 }
1461                         }
1462                         /* Start the shell.  Set initial character to '-'. */
1463                         buf[0] = '-';
1464                         strncpy(buf + 1, cp, sizeof(buf) - 1);
1465                         buf[sizeof(buf) - 1] = 0;
1466
1467                         /* Execute the shell. */
1468                         argv[0] = buf;
1469                         argv[1] = NULL;
1470                         execve(shell, argv, env);
1471
1472                         /* Executing the shell failed. */
1473                         perror(shell);
1474                         exit(1);
1475
1476                 } else {
1477                         /* Launch login(1). */
1478
1479                         execl(LOGIN_PROGRAM, "login", "-h", hostname,
1480                              "-p", "-f", "--", pw->pw_name, NULL);
1481
1482                         /* Login couldn't be executed, die. */
1483
1484                         perror("login");
1485                         exit(1);
1486                 }
1487         }
1488         /*
1489          * Execute the command using the user's shell.  This uses the -c
1490          * option to execute the command.
1491          */
1492         argv[0] = (char *) cp;
1493         argv[1] = "-c";
1494         argv[2] = (char *) command;
1495         argv[3] = NULL;
1496         execve(shell, argv, env);
1497         perror(shell);
1498         exit(1);
1499 }
1500
1501 Session *
1502 session_new(void)
1503 {
1504         int i;
1505         static int did_init = 0;
1506         if (!did_init) {
1507                 debug("session_new: init");
1508                 for(i = 0; i < MAX_SESSIONS; i++) {
1509                         sessions[i].used = 0;
1510                         sessions[i].self = i;
1511                 }
1512                 did_init = 1;
1513         }
1514         for(i = 0; i < MAX_SESSIONS; i++) {
1515                 Session *s = &sessions[i];
1516                 if (! s->used) {
1517                         s->pid = 0;
1518                         s->is_subsystem = 0;
1519                         s->chanid = -1;
1520                         s->ptyfd = -1;
1521                         s->ttyfd = -1;
1522                         s->tty[0] = '\0';                                                       
1523                         s->term = NULL;
1524                         s->pw = NULL;
1525                         s->display = NULL;
1526                         s->screen = 0;
1527                         s->auth_data = NULL;
1528                         s->auth_proto = NULL;
1529                         s->used = 1;
1530                         s->pw = NULL;
1531                         debug("session_new: session %d", i);
1532                         return s;
1533                 }
1534         }
1535         return NULL;
1536 }
1537
1538 void
1539 session_dump(void)
1540 {
1541         int i;
1542         for(i = 0; i < MAX_SESSIONS; i++) {
1543                 Session *s = &sessions[i];
1544                 debug("dump: used %d session %d %p channel %d pid %d",
1545                     s->used,
1546                     s->self,
1547                     s,
1548                     s->chanid,
1549                     s->pid);
1550         }
1551 }
1552
1553 int
1554 session_open(int chanid)
1555 {
1556         Session *s = session_new();
1557         debug("session_open: channel %d", chanid);
1558         if (s == NULL) {
1559                 error("no more sessions");
1560                 return 0;
1561         }
1562         s->pw = auth_get_user();
1563         if (s->pw == NULL)
1564                 fatal("no user for session %d", s->self);
1565         debug("session_open: session %d: link with channel %d", s->self, chanid);
1566         s->chanid = chanid;
1567         return 1;
1568 }
1569
1570 Session *
1571 session_by_channel(int id)
1572 {
1573         int i;
1574         for(i = 0; i < MAX_SESSIONS; i++) {
1575                 Session *s = &sessions[i];
1576                 if (s->used && s->chanid == id) {
1577                         debug("session_by_channel: session %d channel %d", i, id);
1578                         return s;
1579                 }
1580         }
1581         debug("session_by_channel: unknown channel %d", id);
1582         session_dump();
1583         return NULL;
1584 }
1585
1586 Session *
1587 session_by_pid(pid_t pid)
1588 {
1589         int i;
1590         debug("session_by_pid: pid %d", pid);
1591         for(i = 0; i < MAX_SESSIONS; i++) {
1592                 Session *s = &sessions[i];
1593                 if (s->used && s->pid == pid)
1594                         return s;
1595         }
1596         error("session_by_pid: unknown pid %d", pid);
1597         session_dump();
1598         return NULL;
1599 }
1600
1601 int
1602 session_window_change_req(Session *s)
1603 {
1604         s->col = packet_get_int();
1605         s->row = packet_get_int();
1606         s->xpixel = packet_get_int();
1607         s->ypixel = packet_get_int();
1608         packet_done();
1609         pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1610         return 1;
1611 }
1612
1613 int
1614 session_pty_req(Session *s)
1615 {
1616         u_int len;
1617         char *term_modes;       /* encoded terminal modes */
1618
1619         if (no_pty_flag)
1620                 return 0;
1621         if (s->ttyfd != -1)
1622                 return 0;
1623         s->term = packet_get_string(&len);
1624         s->col = packet_get_int();
1625         s->row = packet_get_int();
1626         s->xpixel = packet_get_int();
1627         s->ypixel = packet_get_int();
1628         term_modes = packet_get_string(&len);
1629         packet_done();
1630
1631         if (strcmp(s->term, "") == 0) {
1632                 xfree(s->term);
1633                 s->term = NULL;
1634         }
1635         /* Allocate a pty and open it. */
1636         if (!pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty))) {
1637                 xfree(s->term);
1638                 s->term = NULL;
1639                 s->ptyfd = -1;
1640                 s->ttyfd = -1;
1641                 error("session_pty_req: session %d alloc failed", s->self);
1642                 xfree(term_modes);
1643                 return 0;
1644         }
1645         debug("session_pty_req: session %d alloc %s", s->self, s->tty);
1646         /*
1647          * Add a cleanup function to clear the utmp entry and record logout
1648          * time in case we call fatal() (e.g., the connection gets closed).
1649          */
1650         fatal_add_cleanup(pty_cleanup_proc, (void *)s);
1651         pty_setowner(s->pw, s->tty);
1652         /* Get window size from the packet. */
1653         pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1654
1655         session_proctitle(s);
1656
1657         /* XXX parse and set terminal modes */
1658         xfree(term_modes);
1659         return 1;
1660 }
1661
1662 int
1663 session_subsystem_req(Session *s)
1664 {
1665         u_int len;
1666         int success = 0;
1667         char *subsys = packet_get_string(&len);
1668         int i;
1669
1670         packet_done();
1671         log("subsystem request for %s", subsys);
1672
1673         for (i = 0; i < options.num_subsystems; i++) {
1674                 if(strcmp(subsys, options.subsystem_name[i]) == 0) {
1675                         debug("subsystem: exec() %s", options.subsystem_command[i]);
1676                         s->is_subsystem = 1;
1677                         do_exec_no_pty(s, options.subsystem_command[i]);
1678                         success = 1;
1679                 }
1680         }
1681
1682         if (!success)
1683                 log("subsystem request for %s failed, subsystem not found", subsys);
1684
1685         xfree(subsys);
1686         return success;
1687 }
1688
1689 int
1690 session_x11_req(Session *s)
1691 {
1692         int fd;
1693         if (no_x11_forwarding_flag) {
1694                 debug("X11 forwarding disabled in user configuration file.");
1695                 return 0;
1696         }
1697         if (!options.x11_forwarding) {
1698                 debug("X11 forwarding disabled in server configuration file.");
1699                 return 0;
1700         }
1701         if (xauthfile != NULL) {
1702                 debug("X11 fwd already started.");
1703                 return 0;
1704         }
1705
1706         debug("Received request for X11 forwarding with auth spoofing.");
1707         if (s->display != NULL)
1708                 packet_disconnect("Protocol error: X11 display already set.");
1709
1710         s->single_connection = packet_get_char();
1711         s->auth_proto = packet_get_string(NULL);
1712         s->auth_data = packet_get_string(NULL);
1713         s->screen = packet_get_int();
1714         packet_done();
1715
1716         s->display = x11_create_display_inet(s->screen, options.x11_display_offset);
1717         if (s->display == NULL) {
1718                 xfree(s->auth_proto);
1719                 xfree(s->auth_data);
1720                 return 0;
1721         }
1722         xauthfile = xmalloc(MAXPATHLEN);
1723         strlcpy(xauthfile, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
1724         temporarily_use_uid(s->pw->pw_uid);
1725         if (mkdtemp(xauthfile) == NULL) {
1726                 restore_uid();
1727                 error("private X11 dir: mkdtemp %s failed: %s",
1728                     xauthfile, strerror(errno));
1729                 xfree(xauthfile);
1730                 xauthfile = NULL;
1731                 xfree(s->auth_proto);
1732                 xfree(s->auth_data);
1733                 /* XXXX remove listening channels */
1734                 return 0;
1735         }
1736         strlcat(xauthfile, "/cookies", MAXPATHLEN);
1737         fd = open(xauthfile, O_RDWR|O_CREAT|O_EXCL, 0600);
1738         if (fd >= 0)
1739                 close(fd);
1740         restore_uid();
1741         fatal_add_cleanup(xauthfile_cleanup_proc, s);
1742         return 1;
1743 }
1744
1745 int
1746 session_shell_req(Session *s)
1747 {
1748         /* if forced_command == NULL, the shell is execed */
1749         char *shell = forced_command;
1750         packet_done();
1751         if (s->ttyfd == -1)
1752                 do_exec_no_pty(s, shell);
1753         else
1754                 do_exec_pty(s, shell);
1755         return 1;
1756 }
1757
1758 int
1759 session_exec_req(Session *s)
1760 {
1761         u_int len;
1762         char *command = packet_get_string(&len);
1763         packet_done();
1764         if (forced_command) {
1765                 original_command = command;
1766                 command = forced_command;
1767                 debug("Forced command '%.500s'", forced_command);
1768         }
1769         if (s->ttyfd == -1)
1770                 do_exec_no_pty(s, command);
1771         else
1772                 do_exec_pty(s, command);
1773         if (forced_command == NULL)
1774                 xfree(command);
1775         return 1;
1776 }
1777
1778 int
1779 session_auth_agent_req(Session *s)
1780 {
1781         static int called = 0;
1782         packet_done();
1783         if (no_agent_forwarding_flag) {
1784                 debug("session_auth_agent_req: no_agent_forwarding_flag");
1785                 return 0;
1786         }
1787         if (called) {
1788                 return 0;
1789         } else {
1790                 called = 1;
1791                 return auth_input_request_forwarding(s->pw);
1792         }
1793 }
1794
1795 void
1796 session_input_channel_req(int id, void *arg)
1797 {
1798         u_int len;
1799         int reply;
1800         int success = 0;
1801         char *rtype;
1802         Session *s;
1803         Channel *c;
1804
1805         rtype = packet_get_string(&len);
1806         reply = packet_get_char();
1807
1808         s = session_by_channel(id);
1809         if (s == NULL)
1810                 fatal("session_input_channel_req: channel %d: no session", id);
1811         c = channel_lookup(id);
1812         if (c == NULL)
1813                 fatal("session_input_channel_req: channel %d: bad channel", id);
1814
1815         debug("session_input_channel_req: session %d channel %d request %s reply %d",
1816             s->self, id, rtype, reply);
1817
1818         /*
1819          * a session is in LARVAL state until a shell, a command
1820          * or a subsystem is executed
1821          */
1822         if (c->type == SSH_CHANNEL_LARVAL) {
1823                 if (strcmp(rtype, "shell") == 0) {
1824                         success = session_shell_req(s);
1825                 } else if (strcmp(rtype, "exec") == 0) {
1826                         success = session_exec_req(s);
1827                 } else if (strcmp(rtype, "pty-req") == 0) {
1828                         success =  session_pty_req(s);
1829                 } else if (strcmp(rtype, "x11-req") == 0) {
1830                         success = session_x11_req(s);
1831                 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1832                         success = session_auth_agent_req(s);
1833                 } else if (strcmp(rtype, "subsystem") == 0) {
1834                         success = session_subsystem_req(s);
1835                 }
1836         }
1837         if (strcmp(rtype, "window-change") == 0) {
1838                 success = session_window_change_req(s);
1839         }
1840
1841         if (reply) {
1842                 packet_start(success ?
1843                     SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1844                 packet_put_int(c->remote_id);
1845                 packet_send();
1846         }
1847         xfree(rtype);
1848 }
1849
1850 void
1851 session_set_fds(Session *s, int fdin, int fdout, int fderr)
1852 {
1853         if (!compat20)
1854                 fatal("session_set_fds: called for proto != 2.0");
1855         /*
1856          * now that have a child and a pipe to the child,
1857          * we can activate our channel and register the fd's
1858          */
1859         if (s->chanid == -1)
1860                 fatal("no channel for session %d", s->self);
1861         channel_set_fds(s->chanid,
1862             fdout, fdin, fderr,
1863             fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
1864             1);
1865 }
1866
1867 void
1868 session_pty_cleanup(Session *s)
1869 {
1870         if (s == NULL || s->ttyfd == -1)
1871                 return;
1872
1873         debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
1874
1875         /* Cancel the cleanup function. */
1876         fatal_remove_cleanup(pty_cleanup_proc, (void *)s);
1877
1878         /* Record that the user has logged out. */
1879         record_logout(s->pid, s->tty);
1880
1881         /* Release the pseudo-tty. */
1882         pty_release(s->tty);
1883
1884         /*
1885          * Close the server side of the socket pairs.  We must do this after
1886          * the pty cleanup, so that another process doesn't get this pty
1887          * while we're still cleaning up.
1888          */
1889         if (close(s->ptymaster) < 0)
1890                 error("close(s->ptymaster): %s", strerror(errno));
1891 }
1892
1893 void
1894 session_exit_message(Session *s, int status)
1895 {
1896         Channel *c;
1897         if (s == NULL)
1898                 fatal("session_close: no session");
1899         c = channel_lookup(s->chanid);
1900         if (c == NULL)
1901                 fatal("session_close: session %d: no channel %d",
1902                     s->self, s->chanid);
1903         debug("session_exit_message: session %d channel %d pid %d",
1904             s->self, s->chanid, s->pid);
1905
1906         if (WIFEXITED(status)) {
1907                 channel_request_start(s->chanid,
1908                     "exit-status", 0);
1909                 packet_put_int(WEXITSTATUS(status));
1910                 packet_send();
1911         } else if (WIFSIGNALED(status)) {
1912                 channel_request_start(s->chanid,
1913                     "exit-signal", 0);
1914                 packet_put_int(WTERMSIG(status));
1915 #ifdef WCOREDUMP
1916                 packet_put_char(WCOREDUMP(status));
1917 #else /* WCOREDUMP */
1918                 packet_put_char(0);
1919 #endif /* WCOREDUMP */
1920                 packet_put_cstring("");
1921                 packet_put_cstring("");
1922                 packet_send();
1923         } else {
1924                 /* Some weird exit cause.  Just exit. */
1925                 packet_disconnect("wait returned status %04x.", status);
1926         }
1927
1928         /* disconnect channel */
1929         debug("session_exit_message: release channel %d", s->chanid);
1930         channel_cancel_cleanup(s->chanid);
1931         /*
1932          * emulate a write failure with 'chan_write_failed', nobody will be
1933          * interested in data we write.
1934          * Note that we must not call 'chan_read_failed', since there could
1935          * be some more data waiting in the pipe.
1936          */
1937         if (c->ostate != CHAN_OUTPUT_CLOSED)
1938                 chan_write_failed(c);
1939         s->chanid = -1;
1940 }
1941
1942 void
1943 session_free(Session *s)
1944 {
1945         debug("session_free: session %d pid %d", s->self, s->pid);
1946         if (s->term)
1947                 xfree(s->term);
1948         if (s->display)
1949                 xfree(s->display);
1950         if (s->auth_data)
1951                 xfree(s->auth_data);
1952         if (s->auth_proto)
1953                 xfree(s->auth_proto);
1954         s->used = 0;
1955 }
1956
1957 void
1958 session_close(Session *s)
1959 {
1960         session_pty_cleanup(s);
1961         session_free(s);
1962         session_proctitle(s);
1963 }
1964
1965 void
1966 session_close_by_pid(pid_t pid, int status)
1967 {
1968         Session *s = session_by_pid(pid);
1969         if (s == NULL) {
1970                 debug("session_close_by_pid: no session for pid %d", s->pid);
1971                 return;
1972         }
1973         if (s->chanid != -1)
1974                 session_exit_message(s, status);
1975         session_close(s);
1976 }
1977
1978 /*
1979  * this is called when a channel dies before
1980  * the session 'child' itself dies
1981  */
1982 void
1983 session_close_by_channel(int id, void *arg)
1984 {
1985         Session *s = session_by_channel(id);
1986         if (s == NULL) {
1987                 debug("session_close_by_channel: no session for channel %d", id);
1988                 return;
1989         }
1990         /* disconnect channel */
1991         channel_cancel_cleanup(s->chanid);
1992         s->chanid = -1;
1993
1994         debug("session_close_by_channel: channel %d kill %d", id, s->pid);
1995         if (s->pid == 0) {
1996                 /* close session immediately */
1997                 session_close(s);
1998         } else {
1999                 /* notify child, delay session cleanup */
2000                 if (kill(s->pid, (s->ttyfd == -1) ? SIGTERM : SIGHUP) < 0)
2001                         error("session_close_by_channel: kill %d: %s",
2002                             s->pid, strerror(errno));
2003         }
2004 }
2005
2006 char *
2007 session_tty_list(void)
2008 {
2009         static char buf[1024];
2010         int i;
2011         buf[0] = '\0';
2012         for(i = 0; i < MAX_SESSIONS; i++) {
2013                 Session *s = &sessions[i];
2014                 if (s->used && s->ttyfd != -1) {
2015                         if (buf[0] != '\0')
2016                                 strlcat(buf, ",", sizeof buf);
2017                         strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
2018                 }
2019         }
2020         if (buf[0] == '\0')
2021                 strlcpy(buf, "notty", sizeof buf);
2022         return buf;
2023 }
2024
2025 void
2026 session_proctitle(Session *s)
2027 {
2028         if (s->pw == NULL)
2029                 error("no user for session %d", s->self);
2030         else
2031                 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2032 }
2033
2034 void
2035 do_authenticated2(Authctxt *authctxt)
2036 {
2037
2038         server_loop2();
2039         if (xauthfile)
2040                 xauthfile_cleanup_proc(NULL);
2041 }
This page took 0.300293 seconds and 5 git commands to generate.