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