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