]> andersk Git - openssh.git/blame - session.c
- stevesk@cvs.openbsd.org 2009/01/15 17:38:43
[openssh.git] / session.c
CommitLineData
94087553 1/* $OpenBSD: session.c,v 1.244 2008/11/09 12:34:47 tobias Exp $ */
7368a6c8 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
bcbf86ec 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 *
e78a59f5 12 * SSH2 support by Markus Friedl.
a96070d4 13 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 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.
e78a59f5 34 */
7368a6c8 35
36#include "includes.h"
aa2eae64 37
38#include <sys/types.h>
536c14e8 39#include <sys/param.h>
4095f623 40#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
5b04a8bf 43#include <sys/socket.h>
cebb4c24 44#include <sys/un.h>
536c14e8 45#include <sys/wait.h>
a75f5360 46
67514848 47#include <arpa/inet.h>
48
028094f4 49#include <errno.h>
16fbe330 50#include <grp.h>
b5b88c19 51#ifdef HAVE_PATHS_H
a75f5360 52#include <paths.h>
b5b88c19 53#endif
b1842393 54#include <pwd.h>
ada68823 55#include <signal.h>
24436b92 56#include <stdarg.h>
cf851879 57#include <stdio.h>
ffa517a8 58#include <stdlib.h>
00146caa 59#include <string.h>
67514848 60#include <unistd.h>
7368a6c8 61
3593bdc0 62#include "openbsd-compat/sys-queue.h"
31652869 63#include "xmalloc.h"
7368a6c8 64#include "ssh.h"
42f11eb2 65#include "ssh1.h"
66#include "ssh2.h"
1729c161 67#include "sshpty.h"
7368a6c8 68#include "packet.h"
69#include "buffer.h"
61a2c1da 70#include "match.h"
7368a6c8 71#include "uidswap.h"
72#include "compat.h"
a5efa1bb 73#include "channels.h"
31652869 74#include "key.h"
75#include "cipher.h"
76#ifdef GSSAPI
77#include "ssh-gss.h"
78#endif
79#include "hostfile.h"
e78a59f5 80#include "auth.h"
38c295d6 81#include "auth-options.h"
42f11eb2 82#include "pathnames.h"
83#include "log.h"
84#include "servconf.h"
1729c161 85#include "sshlogin.h"
42f11eb2 86#include "serverloop.h"
87#include "canohost.h"
db49deeb 88#include "misc.h"
5ca51e19 89#include "session.h"
07200973 90#include "kex.h"
1853d1ef 91#include "monitor_wrap.h"
c33ba17e 92#include "sftp.h"
e78a59f5 93
bcfcc5f9 94#if defined(KRB5) && defined(USE_AFS)
39dfceeb 95#include <kafs.h>
96#endif
97
e3ef5245 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
7368a6c8 104/* func */
105
106Session *session_new(void);
c9478090 107void session_set_fds(Session *, int, int, int, int);
2362db19 108void session_pty_cleanup(Session *);
9c328529 109void session_proctitle(Session *);
110int session_setup_x11fwd(Session *);
c6dca55e 111int do_exec_pty(Session *, const char *);
112int do_exec_no_pty(Session *, const char *);
113int do_exec(Session *, const char *);
9c328529 114void do_login(Session *, const char *);
8a9ac95d 115#ifdef LOGIN_NEEDS_UTMPX
116static void do_pre_login(Session *s);
117#endif
9c328529 118void do_child(Session *, const char *);
f2c2fd71 119void do_motd(void);
9c328529 120int check_quietlogin(Session *, const char *);
7368a6c8 121
396c147e 122static void do_authenticated1(Authctxt *);
123static void do_authenticated2(Authctxt *);
9c328529 124
396c147e 125static int session_pty_req(Session *);
bb5639fe 126
7368a6c8 127/* import */
128extern ServerOptions options;
129extern char *__progname;
130extern int log_stderr;
131extern int debug_flag;
1e3b8b07 132extern u_int utmp_len;
089fbbd2 133extern int startup_pipe;
e78e738a 134extern void destroy_sensitive_data(void);
bc7dfc06 135extern Buffer loginmsg;
089fbbd2 136
b5e300c2 137/* original command from peer. */
c95add71 138const char *original_command = NULL;
b5e300c2 139
7368a6c8 140/* data */
c6dca55e 141static int sessions_first_unused = -1;
142static int sessions_nalloc = 0;
143static Session *sessions = NULL;
c5d85828 144
c33ba17e 145#define SUBSYSTEM_NONE 0
146#define SUBSYSTEM_EXT 1
147#define SUBSYSTEM_INT_SFTP 2
148
2e73a022 149#ifdef HAVE_LOGIN_CAP
1836f69f 150login_cap_t *lc;
2e73a022 151#endif
152
2362db19 153static int is_child = 0;
154
149cdb60 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
2362db19 162auth_sock_cleanup_proc(struct passwd *pw)
149cdb60 163{
149cdb60 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;
c6dca55e 177 int sock = -1;
149cdb60 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. */
c6dca55e 189 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
149cdb60 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();
149cdb60 196 xfree(auth_sock_dir);
149cdb60 197 auth_sock_dir = NULL;
c6dca55e 198 goto authsock_err;
149cdb60 199 }
c6dca55e 200
201 xasprintf(&auth_sock_name, "%s/agent.%ld",
202 auth_sock_dir, (long) getpid());
149cdb60 203
149cdb60 204 /* Create the socket. */
205 sock = socket(AF_UNIX, SOCK_STREAM, 0);
c6dca55e 206 if (sock < 0) {
207 error("socket: %.100s", strerror(errno));
208 restore_uid();
209 goto authsock_err;
210 }
149cdb60 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
c6dca55e 217 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
218 error("bind: %.100s", strerror(errno));
219 restore_uid();
220 goto authsock_err;
221 }
149cdb60 222
223 /* Restore the privileged uid. */
224 restore_uid();
225
226 /* Start listening on the socket. */
c6dca55e 227 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
228 error("listen: %.100s", strerror(errno));
229 goto authsock_err;
230 }
149cdb60 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,
0d942eff 236 0, "auth socket", 1);
149cdb60 237 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
238 return 1;
c6dca55e 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;
149cdb60 252}
253
dd1fb864 254static void
255display_loginmsg(void)
256{
56964485 257 if (buffer_len(&loginmsg) > 0) {
258 buffer_append(&loginmsg, "\0", 1);
259 printf("%s", (char *)buffer_ptr(&loginmsg));
260 buffer_clear(&loginmsg);
261 }
dd1fb864 262}
149cdb60 263
bb5639fe 264void
265do_authenticated(Authctxt *authctxt)
266{
381b021b 267 setproctitle("%s", authctxt->pw->pw_name);
268
bb5639fe 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);
e4f7282d 277
2362db19 278 do_cleanup(authctxt);
bb5639fe 279}
280
7368a6c8 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 */
396c147e 287static void
bb5639fe 288do_authenticated1(Authctxt *authctxt)
7368a6c8 289{
290 Session *s;
7368a6c8 291 char *command;
54a5250f 292 int success, type, screen_flag;
7138ebd9 293 int enable_compression_after_reply = 0;
294 u_int proto_len, data_len, dlen, compression_level = 0;
7368a6c8 295
296 s = session_new();
b0042027 297 if (s == NULL) {
298 error("no more sessions");
299 return;
300 }
ced49be2 301 s->authctxt = authctxt;
bb5639fe 302 s->pw = authctxt->pw;
2e73a022 303
7368a6c8 304 /*
305 * We stay in this loop until the client requests to execute a shell
306 * or a command.
307 */
308 for (;;) {
bb5639fe 309 success = 0;
7368a6c8 310
311 /* Get a packet from the client. */
54a5250f 312 type = packet_read();
7368a6c8 313
314 /* Process the packet. */
315 switch (type) {
316 case SSH_CMSG_REQUEST_COMPRESSION:
7368a6c8 317 compression_level = packet_get_int();
95500969 318 packet_check_eom();
7368a6c8 319 if (compression_level < 1 || compression_level > 9) {
d77347cc 320 packet_send_debug("Received invalid compression level %d.",
184eed6a 321 compression_level);
7368a6c8 322 break;
323 }
07200973 324 if (options.compression == COMP_NONE) {
636f76ca 325 debug2("compression disabled");
326 break;
327 }
7368a6c8 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:
653d5f86 334 success = session_pty_req(s);
7368a6c8 335 break;
336
337 case SSH_CMSG_X11_REQUEST_FORWARDING:
7368a6c8 338 s->auth_proto = packet_get_string(&proto_len);
339 s->auth_data = packet_get_string(&data_len);
7368a6c8 340
2af09193 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");
7368a6c8 349 s->screen = packet_get_int();
c8b058b4 350 } else {
7368a6c8 351 s->screen = 0;
c8b058b4 352 }
95500969 353 packet_check_eom();
8dcd9d5c 354 success = session_setup_x11fwd(s);
355 if (!success) {
356 xfree(s->auth_proto);
357 xfree(s->auth_data);
1500bcdd 358 s->auth_proto = NULL;
359 s->auth_data = NULL;
7368a6c8 360 }
7368a6c8 361 break;
7368a6c8 362
363 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
43c3f85c 364 if (!options.allow_agent_forwarding ||
365 no_agent_forwarding_flag || compat13) {
7368a6c8 366 debug("Authentication agent forwarding not permitted for this authentication.");
367 break;
368 }
369 debug("Received authentication agent forwarding request.");
bb5639fe 370 success = auth_input_request_forwarding(s->pw);
7368a6c8 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 }
33de75a3 378 if (!options.allow_tcp_forwarding) {
379 debug("Port forwarding not permitted.");
380 break;
381 }
7368a6c8 382 debug("Received TCP/IP port forwarding request.");
42ea6f5e 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 }
7368a6c8 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;
184eed6a 395
7368a6c8 396 case SSH_CMSG_EXEC_SHELL:
397 case SSH_CMSG_EXEC_CMD:
7368a6c8 398 if (type == SSH_CMSG_EXEC_CMD) {
399 command = packet_get_string(&dlen);
400 debug("Exec command '%.500s'", command);
c6dca55e 401 if (do_exec(s, command) != 0)
402 packet_disconnect(
403 "command execution failed");
c95add71 404 xfree(command);
7368a6c8 405 } else {
c6dca55e 406 if (do_exec(s, NULL) != 0)
407 packet_disconnect(
408 "shell execution failed");
7368a6c8 409 }
95500969 410 packet_check_eom();
fc2a1d28 411 session_close(s);
7368a6c8 412 return;
413
414 default:
415 /*
416 * Any unknown messages in this phase are ignored,
417 * and a failure message is returned.
418 */
bbe88b6d 419 logit("Unknown packet type received after authentication: %d", type);
7368a6c8 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
c6dca55e 433#define USE_PIPES
7368a6c8 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 */
c6dca55e 439int
65068d16 440do_exec_no_pty(Session *s, const char *command)
7368a6c8 441{
c457707e 442 pid_t pid;
7368a6c8 443
444#ifdef USE_PIPES
445 int pin[2], pout[2], perr[2];
c6dca55e 446
7368a6c8 447 /* Allocate pipes for communicating with the program. */
c6dca55e 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
7368a6c8 467 int inout[2], err[2];
c6dca55e 468
7368a6c8 469 /* Uses socket pairs to communicate with the program. */
c6dca55e 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
7368a6c8 482 if (s == NULL)
483 fatal("do_exec_no_pty: no session");
484
1d1ffb87 485 session_proctitle(s);
7368a6c8 486
7368a6c8 487 /* Fork the child. */
c6dca55e 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:
2362db19 506 is_child = 1;
516f0d7d 507
7368a6c8 508 /* Child. Reinitialize the log since the pid has changed. */
c6dca55e 509 log_init(__progname, options.log_level,
510 options.log_facility, log_stderr);
7368a6c8 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]);
c6dca55e 540#else
7368a6c8 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");
c6dca55e 550 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
7368a6c8 551 perror("dup2 stdout");
c6dca55e 552 close(inout[0]);
7368a6c8 553 if (dup2(err[0], 2) < 0) /* stderr */
554 perror("dup2 stderr");
c6dca55e 555 close(err[0]);
556#endif
557
7368a6c8 558
ef51930f 559#ifdef _UNICOS
560 cray_init_job(s->pw); /* set up cray jid and tmpdir */
561#endif
562
7368a6c8 563 /* Do processing for the child (exec command etc). */
56b3e9ce 564 do_child(s, command);
7368a6c8 565 /* NOTREACHED */
c6dca55e 566 default:
567 break;
7368a6c8 568 }
c6dca55e 569
ef51930f 570#ifdef _UNICOS
571 signal(WJSIGNAL, cray_job_termination_handler);
572#endif /* _UNICOS */
3c62e7eb 573#ifdef HAVE_CYGWIN
574 if (is_winnt)
575 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
576#endif
c6dca55e 577
7368a6c8 578 s->pid = pid;
b5c334cc 579 /* Set interactive/non-interactive mode. */
580 packet_set_interactive(s->display != NULL);
c6dca55e 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
7368a6c8 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
e78a59f5 595 if (compat20) {
d7ecbe88 596 if (s->is_subsystem) {
597 close(perr[0]);
598 perr[0] = -1;
599 }
c9478090 600 session_set_fds(s, pin[1], pout[0], perr[0], 0);
e78a59f5 601 } else {
602 /* Enter the interactive session. */
603 server_loop(pid, pin[1], pout[0], perr[0]);
e5d7a405 604 /* server_loop has closed pin[1], pout[0], and perr[0]. */
e78a59f5 605 }
c6dca55e 606#else
7368a6c8 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 */
e78a59f5 615 if (compat20) {
c6dca55e 616 session_set_fds(s, inout[1], inout[1],
c9478090 617 s->is_subsystem ? -1 : err[1], 0);
c6dca55e 618 if (s->is_subsystem)
619 close(err[1]);
e78a59f5 620 } else {
621 server_loop(pid, inout[1], inout[1], err[1]);
622 /* server_loop has closed inout[1] and err[1]. */
623 }
c6dca55e 624#endif
625 return 0;
7368a6c8 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 */
c6dca55e 634int
65068d16 635do_exec_pty(Session *s, const char *command)
7368a6c8 636{
7368a6c8 637 int fdout, ptyfd, ttyfd, ptymaster;
7368a6c8 638 pid_t pid;
7368a6c8 639
640 if (s == NULL)
641 fatal("do_exec_pty: no session");
642 ptyfd = s->ptyfd;
643 ttyfd = s->ttyfd;
644
c6dca55e 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
7368a6c8 667 /* Fork the child. */
c6dca55e 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:
2362db19 677 is_child = 1;
57156994 678
c6dca55e 679 close(fdout);
680 close(ptymaster);
681
c345cf9d 682 /* Child. Reinitialize the log because the pid has changed. */
c6dca55e 683 log_init(__progname, options.log_level,
684 options.log_facility, log_stderr);
7368a6c8 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
05fd093c 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));
7368a6c8 698
699 /* Close the extra descriptor for the pseudo tty. */
700 close(ttyfd);
701
c345cf9d 702 /* record login, etc. similar to login(1) */
c96a4aaf 703#ifndef HAVE_OSF_SIA
ef51930f 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 */
a22aff1f 708 do_login(s, command);
ef51930f 709 }
7e2d5fa4 710# ifdef LOGIN_NEEDS_UTMPX
711 else
712 do_pre_login(s);
713# endif
c96a4aaf 714#endif
c6dca55e 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;
7368a6c8 723 }
c6dca55e 724
ef51930f 725#ifdef _UNICOS
726 signal(WJSIGNAL, cray_job_termination_handler);
727#endif /* _UNICOS */
3c62e7eb 728#ifdef HAVE_CYGWIN
729 if (is_winnt)
730 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
731#endif
c6dca55e 732
7368a6c8 733 s->pid = pid;
734
735 /* Parent. Close the slave side of the pseudo tty. */
736 close(ttyfd);
737
7368a6c8 738 /* Enter interactive session. */
c6dca55e 739 s->ptymaster = ptymaster;
b5c334cc 740 packet_set_interactive(1);
e78a59f5 741 if (compat20) {
c9478090 742 session_set_fds(s, ptyfd, fdout, -1, 1);
e78a59f5 743 } else {
744 server_loop(pid, ptyfd, fdout, -1);
745 /* server_loop _has_ closed ptyfd and fdout. */
e78a59f5 746 }
c6dca55e 747 return 0;
7368a6c8 748}
749
7e2d5fa4 750#ifdef LOGIN_NEEDS_UTMPX
0e0144b7 751static void
7e2d5fa4 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));
ba1566dd 763 fromlen = sizeof(from);
7e2d5fa4 764 if (packet_connection_is_on_socket()) {
7e2d5fa4 765 if (getpeername(packet_get_connection_in(),
32596c7b 766 (struct sockaddr *)&from, &fromlen) < 0) {
7e2d5fa4 767 debug("getpeername: %.100s", strerror(errno));
2362db19 768 cleanup_exit(255);
7e2d5fa4 769 }
770 }
771
772 record_utmp_only(pid, s->tty, s->pw->pw_name,
c5a7d788 773 get_remote_name_or_ip(utmp_len, options.use_dns),
d4ac26ed 774 (struct sockaddr *)&from, fromlen);
7e2d5fa4 775}
776#endif
777
dac6753b 778/*
779 * This is called to fork and execute a command. If another command is
780 * to be forced, execute that instead.
781 */
c6dca55e 782int
dac6753b 783do_exec(Session *s, const char *command)
784{
c6dca55e 785 int ret;
786
e7259e8d 787 if (options.adm_forced_command) {
788 original_command = command;
789 command = options.adm_forced_command;
e3ef5245 790 if (IS_INTERNAL_SFTP(command))
db49deeb 791 s->is_subsystem = SUBSYSTEM_INT_SFTP;
792 else if (s->is_subsystem)
c33ba17e 793 s->is_subsystem = SUBSYSTEM_EXT;
e7259e8d 794 debug("Forced command (config) '%.900s'", command);
795 } else if (forced_command) {
dac6753b 796 original_command = command;
797 command = forced_command;
e3ef5245 798 if (IS_INTERNAL_SFTP(command))
db49deeb 799 s->is_subsystem = SUBSYSTEM_INT_SFTP;
800 else if (s->is_subsystem)
c33ba17e 801 s->is_subsystem = SUBSYSTEM_EXT;
e7259e8d 802 debug("Forced command (key option) '%.900s'", command);
dac6753b 803 }
804
6039eeef 805#ifdef SSH_AUDIT_EVENTS
c00e4d75 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));
814 }
815#endif
dac6753b 816 if (s->ttyfd != -1)
c6dca55e 817 ret = do_exec_pty(s, command);
dac6753b 818 else
c6dca55e 819 ret = do_exec_no_pty(s, command);
dac6753b 820
c95add71 821 original_command = NULL;
dac6753b 822
be2ca0c9 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);
c6dca55e 829
830 return ret;
be2ca0c9 831}
f7342052 832
c345cf9d 833/* administrative, login(1)-like work */
834void
a22aff1f 835do_login(Session *s, const char *command)
c345cf9d 836{
c345cf9d 837 socklen_t fromlen;
838 struct sockaddr_storage from;
c345cf9d 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));
d4ac26ed 847 fromlen = sizeof(from);
c345cf9d 848 if (packet_connection_is_on_socket()) {
c345cf9d 849 if (getpeername(packet_get_connection_in(),
f7342052 850 (struct sockaddr *) & from, &fromlen) < 0) {
c345cf9d 851 debug("getpeername: %.100s", strerror(errno));
2362db19 852 cleanup_exit(255);
c345cf9d 853 }
854 }
855
856 /* Record that there was a login on that tty from the remote host. */
49a34e84 857 if (!use_privsep)
858 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
859 get_remote_name_or_ip(utmp_len,
c5a7d788 860 options.use_dns),
ba1566dd 861 (struct sockaddr *)&from, fromlen);
c345cf9d 862
2919e060 863#ifdef USE_PAM
864 /*
865 * If password change is needed, do it now.
866 * This needs to occur before the ~/.hushlogin check.
867 */
dd1fb864 868 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
869 display_loginmsg();
2919e060 870 do_pam_chauthtok();
dd1fb864 871 s->authctxt->force_pwchange = 0;
5b9e2464 872 /* XXX - signal [net] parent to enable forwardings */
2919e060 873 }
874#endif
875
f2c2fd71 876 if (check_quietlogin(s, command))
c345cf9d 877 return;
878
dd1fb864 879 display_loginmsg();
c345cf9d 880
f2c2fd71 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
c345cf9d 893 if (options.print_motd) {
2e73a022 894#ifdef HAVE_LOGIN_CAP
895 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
896 "/etc/motd"), "r");
897#else
c345cf9d 898 f = fopen("/etc/motd", "r");
2e73a022 899#endif
c345cf9d 900 if (f) {
901 while (fgets(buf, sizeof(buf), f))
902 fputs(buf, stdout);
903 fclose(f);
904 }
905 }
906}
907
9c328529 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
7368a6c8 933/*
934 * Sets the value of the given variable in the environment. If the variable
94087553 935 * already exists, its value is overridden.
7368a6c8 936 */
7364bd04 937void
1e3b8b07 938child_set_env(char ***envp, u_int *envsizep, const char *name,
184eed6a 939 const char *value)
7368a6c8 940{
7368a6c8 941 char **env;
c46e584f 942 u_int envsize;
943 u_int i, namelen;
7368a6c8 944
95b99395 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
7368a6c8 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. */
c46e584f 970 envsize = *envsizep;
971 if (i >= envsize - 1) {
972 if (envsize >= 1000)
973 fatal("child_set_env: too many env vars");
974 envsize += 50;
c5d10563 975 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
c46e584f 976 *envsizep = envsize;
7368a6c8 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 */
396c147e 993static void
1e3b8b07 994read_environment_file(char ***env, u_int *envsize,
184eed6a 995 const char *filename)
7368a6c8 996{
997 FILE *f;
998 char buf[4096];
999 char *cp, *value;
66087567 1000 u_int lineno = 0;
7368a6c8 1001
1002 f = fopen(filename, "r");
1003 if (!f)
1004 return;
1005
1006 while (fgets(buf, sizeof(buf), f)) {
66087567 1007 if (++lineno > 1000)
1008 fatal("Too many lines in environment file %s", filename);
7368a6c8 1009 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1010 ;
1011 if (!*cp || *cp == '#' || *cp == '\n')
1012 continue;
b05117ac 1013
1014 cp[strcspn(cp, "\n")] = '\0';
1015
7368a6c8 1016 value = strchr(cp, '=');
1017 if (value == NULL) {
66087567 1018 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1019 filename);
7368a6c8 1020 continue;
1021 }
71276795 1022 /*
1023 * Replace the equals sign by nul, and advance value to
1024 * the value string.
1025 */
7368a6c8 1026 *value = '\0';
1027 value++;
1028 child_set_env(env, envsize, cp, value);
1029 }
1030 fclose(f);
1031}
1032
95b99395 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;
6f99680f 1058 u_int i, tmpenvsize = 0;
3a23ba0e 1059 u_long mask;
95b99395 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
6f99680f 1068 if (tmpenv == NULL)
1069 return;
1070
95b99395 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);
b6453d99 1077
95b99395 1078 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1079 if (sscanf(var, "%5lo", &mask) == 1)
3a23ba0e 1080 umask((mode_t)mask);
b6453d99 1081
95b99395 1082 for (i = 0; tmpenv[i] != NULL; i++)
1083 xfree(tmpenv[i]);
1084 xfree(tmpenv);
1085}
1086#endif /* HAVE_ETC_DEFAULT_LOGIN */
1087
1db07e7d 1088void
1089copy_environment(char **source, char ***env, u_int *envsize)
7368a6c8 1090{
760b35a6 1091 char *var_name, *var_val;
7368a6c8 1092 int i;
1093
760b35a6 1094 if (source == NULL)
7368a6c8 1095 return;
2b87da3b 1096
760b35a6 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);
7368a6c8 1101 continue;
7368a6c8 1102 }
760b35a6 1103 *var_val++ = '\0';
7368a6c8 1104
760b35a6 1105 debug3("Copy environment: %s=%s", var_name, var_val);
1106 child_set_env(env, envsize, var_name, var_val);
b6453d99 1107
760b35a6 1108 xfree(var_name);
22d89d24 1109 }
1110}
22d89d24 1111
f7342052 1112static char **
1113do_setup_env(Session *s, const char *shell)
7368a6c8 1114{
7368a6c8 1115 char buf[256];
f7342052 1116 u_int i, envsize;
9b09381d 1117 char **env, *laddr;
f7342052 1118 struct passwd *pw = s->pw;
9b09381d 1119#ifndef HAVE_LOGIN_CAP
1120 char *path = NULL;
1121#endif
7368a6c8 1122
7368a6c8 1123 /* Initialize the environment. */
1124 envsize = 100;
01d35895 1125 env = xcalloc(envsize, sizeof(char *));
7368a6c8 1126 env[0] = NULL;
1127
3c62e7eb 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 */
3c502155 1133 {
1134 char **p;
1135
1136 p = fetch_windows_environment();
1137 copy_environment(p, &env, &envsize);
1138 free_windows_environment(p);
1139 }
3c62e7eb 1140#endif
1141
7364bd04 1142#ifdef GSSAPI
aff51935 1143 /* Allow any GSSAPI methods that we've used to alter
7364bd04 1144 * the childs environment as they see fit
1145 */
1146 ssh_gssapi_do_child(&env, &envsize);
1147#endif
1148
7368a6c8 1149 if (!options.use_login) {
1150 /* Set basic environment. */
61a2c1da 1151 for (i = 0; i < s->num_env; i++)
f2107e97 1152 child_set_env(&env, &envsize, s->env[i].name,
61a2c1da 1153 s->env[i].val);
1154
7368a6c8 1155 child_set_env(&env, &envsize, "USER", pw->pw_name);
1156 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
17ed08c5 1157#ifdef _AIX
1158 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1159#endif
7368a6c8 1160 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
2e73a022 1161#ifdef HAVE_LOGIN_CAP
97686bf9 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"));
22d89d24 1166#else /* HAVE_LOGIN_CAP */
1167# ifndef HAVE_CYGWIN
3c62e7eb 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 */
95b99395 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') {
aff51935 1179 child_set_env(&env, &envsize, "PATH",
95b99395 1180 s->pw->pw_uid == 0 ?
1181 SUPERUSER_PATH : _PATH_STDPATH);
1182 }
22d89d24 1183# endif /* HAVE_CYGWIN */
1184#endif /* HAVE_LOGIN_CAP */
7368a6c8 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. */
2548961d 1197 if (!options.use_login) {
1198 while (custom_environment) {
1199 struct envstring *ce = custom_environment;
7fdc56c5 1200 char *str = ce->s;
f7342052 1201
7fdc56c5 1202 for (i = 0; str[i] != '=' && str[i]; i++)
2548961d 1203 ;
7fdc56c5 1204 if (str[i] == '=') {
1205 str[i] = 0;
1206 child_set_env(&env, &envsize, str, str + i + 1);
2548961d 1207 }
1208 custom_environment = ce->next;
1209 xfree(ce->s);
1210 xfree(ce);
7368a6c8 1211 }
7368a6c8 1212 }
1213
da0561eb 1214 /* SSH_CLIENT deprecated */
7368a6c8 1215 snprintf(buf, sizeof buf, "%.50s %d %d",
f7342052 1216 get_remote_ipaddr(), get_remote_port(), get_local_port());
7368a6c8 1217 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1218
3e2f2431 1219 laddr = get_local_ipaddr(packet_get_connection_in());
da0561eb 1220 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
3e2f2431 1221 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1222 xfree(laddr);
da0561eb 1223 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1224
56b3e9ce 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);
b5e300c2 1231 if (original_command)
1232 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1233 original_command);
7368a6c8 1234
ef51930f 1235#ifdef _UNICOS
1236 if (cray_tmpdir[0] != '\0')
1237 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1238#endif /* _UNICOS */
1239
3bfd27d5 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
7368a6c8 1252#ifdef _AIX
4936fcee 1253 {
1254 char *cp;
1255
1256 if ((cp = getenv("AUTHSTATE")) != NULL)
1257 child_set_env(&env, &envsize, "AUTHSTATE", cp);
4936fcee 1258 read_environment_file(&env, &envsize, "/etc/environment");
1259 }
7368a6c8 1260#endif
ced49be2 1261#ifdef KRB5
6490a5d5 1262 if (s->authctxt->krb5_ccname)
ced49be2 1263 child_set_env(&env, &envsize, "KRB5CCNAME",
6490a5d5 1264 s->authctxt->krb5_ccname);
ced49be2 1265#endif
7368a6c8 1266#ifdef USE_PAM
ee48c949 1267 /*
1268 * Pull in any environment variables that may have
1269 * been set by PAM.
1270 */
7fceb20d 1271 if (options.use_pam) {
2212fc98 1272 char **p;
b6453d99 1273
2212fc98 1274 p = fetch_pam_child_environment();
1275 copy_environment(p, &env, &envsize);
1276 free_pam_environment(p);
ee48c949 1277
2212fc98 1278 p = fetch_pam_environment();
ee48c949 1279 copy_environment(p, &env, &envsize);
1280 free_pam_environment(p);
1281 }
7368a6c8 1282#endif /* USE_PAM */
1283
149cdb60 1284 if (auth_sock_name != NULL)
7368a6c8 1285 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
149cdb60 1286 auth_sock_name);
7368a6c8 1287
1288 /* read $HOME/.ssh/environment. */
f00bab84 1289 if (options.permit_user_env && !options.use_login) {
71276795 1290 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
e2e36358 1291 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
7368a6c8 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 }
f7342052 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
6e2a8e29 1318 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
0adb9449 1319 if (!s->is_subsystem && options.adm_forced_command == NULL &&
48fbfda0 1320 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
f7342052 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,
fe661d8f 1351 "Running %.500s remove %.100s\n",
2362db19 1352 options.xauth_location, s->auth_display);
fe661d8f 1353 fprintf(stderr,
1354 "%.500s add %.100s %.100s %.100s\n",
f7342052 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) {
fe661d8f 1362 fprintf(f, "remove %s\n",
1363 s->auth_display);
f7342052 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. */
bbe88b6d 1391 logit("User %.100s not allowed because %s exists",
8bd4e2ae 1392 pw->pw_name, _PATH_NOLOGIN);
f7342052 1393 while (fgets(buf, sizeof(buf), f))
1394 fputs(buf, stderr);
1395 fclose(f);
99f4fb69 1396 fflush(NULL);
f7342052 1397 exit(254);
1398 }
1399}
1400
db49deeb 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
f7342052 1456/* Set login name, uid, gid, and groups. */
1853d1ef 1457void
f7342052 1458do_setusercontext(struct passwd *pw)
1459{
c5bf32e6 1460 char *chroot_path, *tmp;
1461
0b639bf6 1462#ifdef WITH_SELINUX
1463 /* Cache selinux status for later use */
1464 (void)ssh_selinux_enabled();
1465#endif
1466
2731632a 1467#ifndef HAVE_CYGWIN
1468 if (getuid() == 0 || geteuid() == 0)
f7342052 1469#endif /* HAVE_CYGWIN */
2731632a 1470 {
1471
8bbfc882 1472#ifdef HAVE_SETPCRED
166baacc 1473 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1474 fatal("Failed to set process credentials");
8bbfc882 1475#endif /* HAVE_SETPCRED */
f7342052 1476#ifdef HAVE_LOGIN_CAP
2d199535 1477# ifdef __bsdi__
8695f9f7 1478 setpgid(0, 0);
2d199535 1479# endif
f4eaee12 1480# ifdef USE_PAM
1481 if (options.use_pam) {
265edd5e 1482 do_pam_setcred(use_privsep);
f4eaee12 1483 }
1484# endif /* USE_PAM */
f7342052 1485 if (setusercontext(lc, pw, pw->pw_uid,
db49deeb 1486 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
f7342052 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 /*
aff51935 1511 * PAM credentials may take the form of supplementary groups.
f7342052 1512 * These will have been wiped by the above initgroups() call.
1513 * Reestablish them here.
1514 */
49e82bb9 1515 if (options.use_pam) {
265edd5e 1516 do_pam_setcred(use_privsep);
49e82bb9 1517 }
f7342052 1518# endif /* USE_PAM */
1519# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1520 irix_setusercontext(pw);
db49deeb 1521# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
e2bc41f9 1522# ifdef _AIX
0ba40daa 1523 aix_usrinfo(pw);
e2bc41f9 1524# endif /* _AIX */
db49deeb 1525# ifdef USE_LIBIAF
4c653d8e 1526 if (set_id(pw->pw_name) != 0) {
1527 exit(1);
1528 }
db49deeb 1529# endif /* USE_LIBIAF */
1530#endif
1531
1532 if (options.chroot_directory != NULL &&
1533 strcasecmp(options.chroot_directory, "none") != 0) {
c5bf32e6 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);
db49deeb 1538 safely_chroot(chroot_path, pw->pw_uid);
c5bf32e6 1539 free(tmp);
db49deeb 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
f7342052 1549 /* Permanently switch to the desired uid. */
1550 permanently_set_uid(pw);
1551#endif
1552 }
2731632a 1553
1554#ifdef HAVE_CYGWIN
1555 if (is_winnt)
1556#endif
f7342052 1557 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1558 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
ef4d1846 1559
1560#ifdef WITH_SELINUX
1561 ssh_selinux_setup_exec_context(pw->pw_name);
1562#endif
f7342052 1563}
1564
37656beb 1565static void
1566do_pwchange(Session *s)
1567{
be2ca0c9 1568 fflush(NULL);
37656beb 1569 fprintf(stderr, "WARNING: Your password has expired.\n");
1570 if (s->ttyfd != -1) {
f2107e97 1571 fprintf(stderr,
37656beb 1572 "You must change your password now and login again!\n");
3ade3b57 1573#ifdef PASSWD_NEEDS_USERNAME
1574 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1575 (char *)NULL);
1576#else
37656beb 1577 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
3ade3b57 1578#endif
37656beb 1579 perror("passwd");
1580 } else {
1581 fprintf(stderr,
1582 "Password change required but no TTY available.\n");
1583 }
1584 exit(1);
1585}
1586
51aeb639 1587static void
1853d1ef 1588launch_login(struct passwd *pw, const char *hostname)
1589{
1590 /* Launch login(1). */
1591
85cc9118 1592 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1178e8db 1593#ifdef xxxLOGIN_NEEDS_TERM
875ec275 1594 (s->term ? s->term : "unknown"),
1853d1ef 1595#endif /* LOGIN_NEEDS_TERM */
a2572aa7 1596#ifdef LOGIN_NO_ENDOPT
1597 "-p", "-f", pw->pw_name, (char *)NULL);
1598#else
1853d1ef 1599 "-p", "-f", "--", pw->pw_name, (char *)NULL);
a2572aa7 1600#endif
1853d1ef 1601
1602 /* Login couldn't be executed, die. */
1603
1604 perror("login");
1605 exit(1);
1606}
1607
37656beb 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 /*
7b9b0103 1633 * Close any extra open file descriptors so that we don't have them
37656beb 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
f7342052 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 */
c33ba17e 1647#define ARGV_MAX 10
f7342052 1648void
1649do_child(Session *s, const char *command)
1650{
1651 extern char **environ;
1652 char **env;
c33ba17e 1653 char *argv[ARGV_MAX];
f7342052 1654 const char *shell, *shell0, *hostname = NULL;
1655 struct passwd *pw = s->pw;
2608aa2b 1656 int r = 0;
f7342052 1657
1658 /* remove hostkey from the child's memory */
1659 destroy_sensitive_data();
1660
37656beb 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
f7342052 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
ef51930f 1673#ifdef _UNICOS
1674 cray_setup(pw->pw_uid, pw->pw_name, command);
1675#endif /* _UNICOS */
1676
f7342052 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
58d0df4e 1683 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
f7342052 1684 if (!check_quietlogin(s, command))
1685 do_motd();
1686#else /* HAVE_OSF_SIA */
0a61a240 1687 /* When PAM is enabled we rely on it to do the nologin check */
1688 if (!options.use_pam)
1689 do_nologin(pw);
f7342052 1690 do_setusercontext(pw);
25bfd4ff 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 */
d0c890ac 1696 if (!check_quietlogin(s, command))
25bfd4ff 1697 display_loginmsg();
f7342052 1698#endif /* HAVE_OSF_SIA */
1699 }
1700
abdec250 1701#ifdef USE_PAM
d9720710 1702 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1703 debug3("PAM session not opened, exiting");
abdec250 1704 display_loginmsg();
1705 exit(254);
1706 }
1707#endif
1708
f7342052 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;
32214c88 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
f7342052 1721#ifdef HAVE_LOGIN_CAP
1722 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1723#endif
1724
2e73a022 1725 /* we have to stash the hostname before we close our socket. */
1726 if (options.use_login)
46e3af7f 1727 hostname = get_remote_name_or_ip(utmp_len,
c5a7d788 1728 options.use_dns);
7368a6c8 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 */
37656beb 1736 child_close_fds();
7368a6c8 1737
7368a6c8 1738 /*
2a8a6488 1739 * Must take new environment into use so that .ssh/rc,
1740 * /etc/ssh/sshrc and xauth are run in the proper environment.
7368a6c8 1741 */
1742 environ = env;
1743
bcfcc5f9 1744#if defined(KRB5) && defined(USE_AFS)
a1e30b47 1745 /*
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.
1751 */
1752
1753 if (options.kerberos_get_afs_token && k_hasafs() &&
4e2e5cfd 1754 (s->authctxt->krb5_ctx != NULL)) {
a1e30b47 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
1769
7b9b0103 1770 /* Change current directory to the user's home directory. */
dab89049 1771 if (chdir(pw->pw_dir) < 0) {
2608aa2b 1772 /* Suppress missing homedir warning for chroot case */
dab89049 1773#ifdef HAVE_LOGIN_CAP
2608aa2b 1774 r = login_getcapbool(lc, "requirehome", 0);
dab89049 1775#endif
2608aa2b 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);
dab89049 1782 }
1783
fab9144d 1784 closefrom(STDERR_FILENO + 1);
1785
f7342052 1786 if (!options.use_login)
1787 do_rc_files(s, shell);
1d3c30db 1788
1789 /* restore SIGPIPE for child */
c56969f9 1790 signal(SIGPIPE, SIG_DFL);
1d3c30db 1791
c33ba17e 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);
2e96832c 1798 args = xstrdup(command ? command : "sftp-server");
c33ba17e 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];
db49deeb 1805 exit(sftp_server_main(i, argv, s->pw));
c33ba17e 1806 }
1807
f7342052 1808 if (options.use_login) {
1853d1ef 1809 launch_login(pw, hostname);
1810 /* NEVERREACHED */
f7342052 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
7368a6c8 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) {
f7342052 1825 char argv0[256];
7368a6c8 1826
f7342052 1827 /* Start the shell. Set initial character to '-'. */
1828 argv0[0] = '-';
7368a6c8 1829
f7342052 1830 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1831 >= sizeof(argv0) - 1) {
1832 errno = EINVAL;
7368a6c8 1833 perror(shell);
1834 exit(1);
f7342052 1835 }
7368a6c8 1836
f7342052 1837 /* Execute the shell. */
1838 argv[0] = argv0;
1839 argv[1] = NULL;
1840 execve(shell, argv, env);
7368a6c8 1841
f7342052 1842 /* Executing the shell failed. */
1843 perror(shell);
1844 exit(1);
7368a6c8 1845 }
1846 /*
1847 * Execute the command using the user's shell. This uses the -c
1848 * option to execute the command.
1849 */
f7342052 1850 argv[0] = (char *) shell0;
7368a6c8 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
c6dca55e 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
7368a6c8 1880Session *
1881session_new(void)
1882{
c6dca55e 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;
7368a6c8 1896 }
c6dca55e 1897 sessions = tmp;
1898 session_unused(sessions_nalloc++);
7368a6c8 1899 }
c6dca55e 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);
7368a6c8 1906 }
c6dca55e 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;
7368a6c8 1919}
1920
396c147e 1921static void
7368a6c8 1922session_dump(void)
1923{
1924 int i;
c6dca55e 1925 for (i = 0; i < sessions_nalloc; i++) {
7368a6c8 1926 Session *s = &sessions[i];
c6dca55e 1927
1928 debug("dump: used %d next_unused %d session %d %p "
1929 "channel %d pid %ld",
7368a6c8 1930 s->used,
c6dca55e 1931 s->next_unused,
7368a6c8 1932 s->self,
1933 s,
1934 s->chanid,
c457707e 1935 (long)s->pid);
7368a6c8 1936 }
1937}
1938
e78a59f5 1939int
57156994 1940session_open(Authctxt *authctxt, int chanid)
e78a59f5 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 }
57156994 1948 s->authctxt = authctxt;
1949 s->pw = authctxt->pw;
fdaef11e 1950 if (s->pw == NULL || !authctxt->valid)
0725ea77 1951 fatal("no user for session %d", s->self);
0b242b12 1952 debug("session_open: session %d: link with channel %d", s->self, chanid);
1953 s->chanid = chanid;
e78a59f5 1954 return 1;
1955}
1956
1853d1ef 1957Session *
1958session_by_tty(char *tty)
1959{
1960 int i;
c6dca55e 1961 for (i = 0; i < sessions_nalloc; i++) {
1853d1ef 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
396c147e 1973static Session *
e78a59f5 1974session_by_channel(int id)
1975{
1976 int i;
c6dca55e 1977 for (i = 0; i < sessions_nalloc; i++) {
e78a59f5 1978 Session *s = &sessions[i];
1979 if (s->used && s->chanid == id) {
c6dca55e 1980 debug("session_by_channel: session %d channel %d",
1981 i, id);
e78a59f5 1982 return s;
1983 }
1984 }
1985 debug("session_by_channel: unknown channel %d", id);
1986 session_dump();
1987 return NULL;
1988}
1989
d08341e6 1990static Session *
1991session_by_x11_channel(int id)
1992{
1993 int i, j;
1994
c6dca55e 1995 for (i = 0; i < sessions_nalloc; i++) {
d08341e6 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
396c147e 2013static Session *
e78a59f5 2014session_by_pid(pid_t pid)
2015{
2016 int i;
c457707e 2017 debug("session_by_pid: pid %ld", (long)pid);
c6dca55e 2018 for (i = 0; i < sessions_nalloc; i++) {
e78a59f5 2019 Session *s = &sessions[i];
2020 if (s->used && s->pid == pid)
2021 return s;
2022 }
c457707e 2023 error("session_by_pid: unknown pid %ld", (long)pid);
e78a59f5 2024 session_dump();
2025 return NULL;
2026}
2027
396c147e 2028static int
e78a59f5 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();
95500969 2035 packet_check_eom();
e78a59f5 2036 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2037 return 1;
2038}
2039
396c147e 2040static int
e78a59f5 2041session_pty_req(Session *s)
2042{
1e3b8b07 2043 u_int len;
30dcc918 2044 int n_bytes;
762715ce 2045
653d5f86 2046 if (no_pty_flag) {
2047 debug("Allocating a pty not permitted for this authentication.");
38c295d6 2048 return 0;
653d5f86 2049 }
2050 if (s->ttyfd != -1) {
2051 packet_disconnect("Protocol error: you already have a pty.");
6ae2364d 2052 return 0;
653d5f86 2053 }
2054
e78a59f5 2055 s->term = packet_get_string(&len);
653d5f86 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 }
e78a59f5 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 }
653d5f86 2071
e78a59f5 2072 /* Allocate a pty and open it. */
653d5f86 2073 debug("Allocating pty.");
c6dca55e 2074 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2075 sizeof(s->tty)))) {
653d5f86 2076 if (s->term)
2077 xfree(s->term);
e78a59f5 2078 s->term = NULL;
2079 s->ptyfd = -1;
2080 s->ttyfd = -1;
2081 error("session_pty_req: session %d alloc failed", s->self);
6ae2364d 2082 return 0;
e78a59f5 2083 }
2084 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
653d5f86 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
1853d1ef 2091 if (!use_privsep)
2092 pty_setowner(s->pw, s->tty);
653d5f86 2093
2094 /* Set window size from the packet. */
e78a59f5 2095 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2096
95500969 2097 packet_check_eom();
1d1ffb87 2098 session_proctitle(s);
e78a59f5 2099 return 1;
2100}
2101
396c147e 2102static int
0b242b12 2103session_subsystem_req(Session *s)
2104{
01855277 2105 struct stat st;
1e3b8b07 2106 u_int len;
0b242b12 2107 int success = 0;
d66ce1a1 2108 char *prog, *cmd, *subsys = packet_get_string(&len);
2ceb8101 2109 u_int i;
0b242b12 2110
95500969 2111 packet_check_eom();
bbe88b6d 2112 logit("subsystem request for %.100s", subsys);
0b242b12 2113
38c295d6 2114 for (i = 0; i < options.num_subsystems; i++) {
01855277 2115 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
d66ce1a1 2116 prog = options.subsystem_command[i];
2117 cmd = options.subsystem_args[i];
db49deeb 2118 if (!strcmp(INTERNAL_SFTP_NAME, prog)) {
c33ba17e 2119 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2120 } else if (stat(prog, &st) < 0) {
d66ce1a1 2121 error("subsystem: cannot stat %s: %s", prog,
01855277 2122 strerror(errno));
2123 break;
c33ba17e 2124 } else {
2125 s->is_subsystem = SUBSYSTEM_EXT;
01855277 2126 }
2127 debug("subsystem: exec() %s", cmd);
c6dca55e 2128 success = do_exec(s, cmd) == 0;
24932ee9 2129 break;
38c295d6 2130 }
2131 }
2132
2133 if (!success)
bbe88b6d 2134 logit("subsystem request for %.100s failed, subsystem not found",
01855277 2135 subsys);
38c295d6 2136
0b242b12 2137 xfree(subsys);
2138 return success;
2139}
2140
396c147e 2141static int
0b242b12 2142session_x11_req(Session *s)
2143{
8dcd9d5c 2144 int success;
0b242b12 2145
d08341e6 2146 if (s->auth_proto != NULL || s->auth_data != NULL) {
2147 error("session_x11_req: session %d: "
8918b906 2148 "x11 forwarding already active", s->self);
d08341e6 2149 return 0;
2150 }
0b242b12 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();
95500969 2155 packet_check_eom();
0b242b12 2156
8dcd9d5c 2157 success = session_setup_x11fwd(s);
2158 if (!success) {
0b242b12 2159 xfree(s->auth_proto);
2160 xfree(s->auth_data);
1500bcdd 2161 s->auth_proto = NULL;
2162 s->auth_data = NULL;
0b242b12 2163 }
8dcd9d5c 2164 return success;
0b242b12 2165}
2166
396c147e 2167static int
38c295d6 2168session_shell_req(Session *s)
2169{
95500969 2170 packet_check_eom();
c6dca55e 2171 return do_exec(s, NULL) == 0;
38c295d6 2172}
2173
396c147e 2174static int
38c295d6 2175session_exec_req(Session *s)
2176{
c6dca55e 2177 u_int len, success;
2178
38c295d6 2179 char *command = packet_get_string(&len);
95500969 2180 packet_check_eom();
c6dca55e 2181 success = do_exec(s, command) == 0;
c95add71 2182 xfree(command);
c6dca55e 2183 return success;
38c295d6 2184}
2185
16a79097 2186static int
2187session_break_req(Session *s)
2188{
16a79097 2189
f6be21a0 2190 packet_get_int(); /* ignored */
16a79097 2191 packet_check_eom();
2192
c6dca55e 2193 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
16a79097 2194 return 0;
16a79097 2195 return 1;
2196}
2197
61a2c1da 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);
c5d10563 2217 s->env = xrealloc(s->env, s->num_env + 1,
2218 sizeof(*s->env));
61a2c1da 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
396c147e 2233static int
fa08c86b 2234session_auth_agent_req(Session *s)
2235{
2236 static int called = 0;
95500969 2237 packet_check_eom();
43c3f85c 2238 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
d343d900 2239 debug("session_auth_agent_req: no_agent_forwarding_flag");
2240 return 0;
2241 }
fa08c86b 2242 if (called) {
2243 return 0;
2244 } else {
2245 called = 1;
2246 return auth_input_request_forwarding(s->pw);
2247 }
2248}
2249
7899c98f 2250int
2251session_input_channel_req(Channel *c, const char *rtype)
e78a59f5 2252{
e78a59f5 2253 int success = 0;
e78a59f5 2254 Session *s;
e78a59f5 2255
7899c98f 2256 if ((s = session_by_channel(c->self)) == NULL) {
bbe88b6d 2257 logit("session_input_channel_req: no session %d req %.100s",
7899c98f 2258 c->self, rtype);
2259 return 0;
2260 }
2261 debug("session_input_channel_req: session %d req %s", s->self, rtype);
e78a59f5 2262
2263 /*
e5d7a405 2264 * a session is in LARVAL state until a shell, a command
2265 * or a subsystem is executed
e78a59f5 2266 */
2267 if (c->type == SSH_CHANNEL_LARVAL) {
2268 if (strcmp(rtype, "shell") == 0) {
38c295d6 2269 success = session_shell_req(s);
e78a59f5 2270 } else if (strcmp(rtype, "exec") == 0) {
38c295d6 2271 success = session_exec_req(s);
e78a59f5 2272 } else if (strcmp(rtype, "pty-req") == 0) {
803c4226 2273 success = session_pty_req(s);
0b242b12 2274 } else if (strcmp(rtype, "x11-req") == 0) {
2275 success = session_x11_req(s);
fa08c86b 2276 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2277 success = session_auth_agent_req(s);
0b242b12 2278 } else if (strcmp(rtype, "subsystem") == 0) {
2279 success = session_subsystem_req(s);
61a2c1da 2280 } else if (strcmp(rtype, "env") == 0) {
2281 success = session_env_req(s);
e78a59f5 2282 }
2283 }
2284 if (strcmp(rtype, "window-change") == 0) {
2285 success = session_window_change_req(s);
c6c76c99 2286 } else if (strcmp(rtype, "break") == 0) {
2287 success = session_break_req(s);
e78a59f5 2288 }
c6c76c99 2289
7899c98f 2290 return success;
e78a59f5 2291}
2292
2293void
b3784859 2294session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
e78a59f5 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,
a22aff1f 2306 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
b3784859 2307 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
e78a59f5 2308}
2309
86066315 2310/*
2311 * Function to perform pty cleanup. Also called if we get aborted abnormally
2312 * (e.g., due to a dropped connection).
2313 */
1853d1ef 2314void
2362db19 2315session_pty_cleanup2(Session *s)
7368a6c8 2316{
86066315 2317 if (s == NULL) {
2318 error("session_pty_cleanup: no session");
2319 return;
2320 }
2321 if (s->ttyfd == -1)
7368a6c8 2322 return;
2323
0725ea77 2324 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
7368a6c8 2325
7368a6c8 2326 /* Record that the user has logged out. */
86066315 2327 if (s->pid != 0)
f3837bc6 2328 record_logout(s->pid, s->tty, s->pw->pw_name);
7368a6c8 2329
2330 /* Release the pseudo-tty. */
1853d1ef 2331 if (getuid() == 0)
2332 pty_release(s->tty);
7368a6c8 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 */
c6dca55e 2339 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2340 error("close(s->ptymaster/%d): %s",
2341 s->ptymaster, strerror(errno));
efcc9957 2342
2343 /* unlink pty from session */
2344 s->ttyfd = -1;
7368a6c8 2345}
e78a59f5 2346
1853d1ef 2347void
2362db19 2348session_pty_cleanup(Session *s)
1853d1ef 2349{
2362db19 2350 PRIVSEP(session_pty_cleanup2(s));
1853d1ef 2351}
2352
6c723e7c 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
d08341e6 2374static void
2375session_close_x11(int id)
2376{
2377 Channel *c;
2378
b872f7f0 2379 if ((c = channel_by_id(id)) == NULL) {
d08341e6 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);
803c4226 2398 if ((s = session_by_x11_channel(id)) == NULL)
d08341e6 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
396c147e 2430static void
e78a59f5 2431session_exit_message(Session *s, int status)
2432{
2433 Channel *c;
5a4ae906 2434
2435 if ((c = channel_lookup(s->chanid)) == NULL)
86066315 2436 fatal("session_exit_message: session %d: no channel %d",
e78a59f5 2437 s->self, s->chanid);
c457707e 2438 debug("session_exit_message: session %d channel %d pid %ld",
2439 s->self, s->chanid, (long)s->pid);
e78a59f5 2440
2441 if (WIFEXITED(status)) {
5a4ae906 2442 channel_request_start(s->chanid, "exit-status", 0);
e78a59f5 2443 packet_put_int(WEXITSTATUS(status));
2444 packet_send();
2445 } else if (WIFSIGNALED(status)) {
5a4ae906 2446 channel_request_start(s->chanid, "exit-signal", 0);
6c723e7c 2447 packet_put_cstring(sig2name(WTERMSIG(status)));
a64009ad 2448#ifdef WCOREDUMP
e2875d9a 2449 packet_put_char(WCOREDUMP(status)? 1 : 0);
a64009ad 2450#else /* WCOREDUMP */
2451 packet_put_char(0);
2452#endif /* WCOREDUMP */
e78a59f5 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);
8cd0437d 2463
2464 /*
2465 * Adjust cleanup callback attachment to send close messages when
b4bbf172 2466 * the channel gets EOF. The session will be then be closed
8cd0437d 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
9da5c3c9 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 */
0b242b12 2477 if (c->ostate != CHAN_OUTPUT_CLOSED)
2478 chan_write_failed(c);
e78a59f5 2479}
2480
1853d1ef 2481void
86066315 2482session_close(Session *s)
e78a59f5 2483{
2ceb8101 2484 u_int i;
61a2c1da 2485
c457707e 2486 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2362db19 2487 if (s->ttyfd != -1)
86066315 2488 session_pty_cleanup(s);
e78a59f5 2489 if (s->term)
2490 xfree(s->term);
2491 if (s->display)
2492 xfree(s->display);
d08341e6 2493 if (s->x11_chanids)
2494 xfree(s->x11_chanids);
f9314d9a 2495 if (s->auth_display)
2496 xfree(s->auth_display);
e78a59f5 2497 if (s->auth_data)
2498 xfree(s->auth_data);
2499 if (s->auth_proto)
2500 xfree(s->auth_proto);
0875ae22 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 }
61a2c1da 2506 xfree(s->env);
0875ae22 2507 }
1d1ffb87 2508 session_proctitle(s);
c6dca55e 2509 session_unused(s->self);
e78a59f5 2510}
2511
2512void
2513session_close_by_pid(pid_t pid, int status)
2514{
2515 Session *s = session_by_pid(pid);
2516 if (s == NULL) {
c457707e 2517 debug("session_close_by_pid: no session for pid %ld",
2518 (long)pid);
e78a59f5 2519 return;
2520 }
2521 if (s->chanid != -1)
2522 session_exit_message(s, status);
8cd0437d 2523 if (s->ttyfd != -1)
2524 session_pty_cleanup(s);
4c721c3d 2525 s->pid = 0;
e78a59f5 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);
8cd0437d 2536 u_int i;
d08341e6 2537
e78a59f5 2538 if (s == NULL) {
418e724c 2539 debug("session_close_by_channel: no session for id %d", id);
e78a59f5 2540 return;
2541 }
c457707e 2542 debug("session_close_by_channel: channel %d child %ld",
2543 id, (long)s->pid);
d5f24f94 2544 if (s->pid != 0) {
418e724c 2545 debug("session_close_by_channel: channel %d: has child", id);
efcc9957 2546 /*
2547 * delay detach of session, but release pty, since
2548 * the fd's to the child are already closed
2549 */
2362db19 2550 if (s->ttyfd != -1)
efcc9957 2551 session_pty_cleanup(s);
418e724c 2552 return;
e78a59f5 2553 }
418e724c 2554 /* detach by removing callback */
2555 channel_cancel_cleanup(s->chanid);
8cd0437d 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
418e724c 2565 s->chanid = -1;
d5f24f94 2566 session_close(s);
2567}
2568
2569void
1853d1ef 2570session_destroy_all(void (*closefunc)(Session *))
d5f24f94 2571{
2572 int i;
c6dca55e 2573 for (i = 0; i < sessions_nalloc; i++) {
d5f24f94 2574 Session *s = &sessions[i];
1853d1ef 2575 if (s->used) {
2576 if (closefunc != NULL)
2577 closefunc(s);
2578 else
2579 session_close(s);
2580 }
d5f24f94 2581 }
e78a59f5 2582}
2583
396c147e 2584static char *
1d1ffb87 2585session_tty_list(void)
2586{
2587 static char buf[1024];
2588 int i;
d0104542 2589 char *cp;
2590
1d1ffb87 2591 buf[0] = '\0';
c6dca55e 2592 for (i = 0; i < sessions_nalloc; i++) {
1d1ffb87 2593 Session *s = &sessions[i];
2594 if (s->used && s->ttyfd != -1) {
b6453d99 2595
d0104542 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;
b6453d99 2601
1d1ffb87 2602 if (buf[0] != '\0')
2603 strlcat(buf, ",", sizeof buf);
d0104542 2604 strlcat(buf, cp, sizeof buf);
1d1ffb87 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
8dcd9d5c 2621int
2622session_setup_x11fwd(Session *s)
2623{
8dcd9d5c 2624 struct stat st;
c9d0ad9b 2625 char display[512], auth_display[512];
2626 char hostname[MAXHOSTNAMELEN];
d08341e6 2627 u_int i;
8dcd9d5c 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 }
ff027d84 2642 if (options.use_login) {
2643 packet_send_debug("X11 forwarding disabled; "
2644 "not compatible with UseLogin=yes.");
2645 return 0;
2646 }
b44de2b1 2647 if (s->display != NULL) {
8dcd9d5c 2648 debug("X11 display already set.");
2649 return 0;
2650 }
57f228e8 2651 if (x11_create_display_inet(options.x11_display_offset,
2652 options.x11_use_localhost, s->single_connection,
d08341e6 2653 &s->display_number, &s->x11_chanids) == -1) {
b44de2b1 2654 debug("x11_create_display_inet failed.");
8dcd9d5c 2655 return 0;
2656 }
d08341e6 2657 for (i = 0; s->x11_chanids[i] != -1; i++) {
2658 channel_register_cleanup(s->x11_chanids[i],
8cd0437d 2659 session_close_single_x11, 0);
d08341e6 2660 }
c9d0ad9b 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 */
e6e573bd 2670 if (options.x11_use_localhost) {
57f228e8 2671 snprintf(display, sizeof display, "localhost:%u.%u",
c9d0ad9b 2672 s->display_number, s->screen);
57f228e8 2673 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
f9314d9a 2674 s->display_number, s->screen);
c9d0ad9b 2675 s->display = xstrdup(display);
f9314d9a 2676 s->auth_display = xstrdup(auth_display);
c9d0ad9b 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));
57f228e8 2689 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
c9d0ad9b 2690 s->display_number, s->screen);
2691#else
57f228e8 2692 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
c9d0ad9b 2693 s->display_number, s->screen);
2694#endif
2695 s->display = xstrdup(display);
f9314d9a 2696 s->auth_display = xstrdup(display);
c9d0ad9b 2697 }
2698
8dcd9d5c 2699 return 1;
2700}
2701
396c147e 2702static void
59c97189 2703do_authenticated2(Authctxt *authctxt)
e78a59f5 2704{
57156994 2705 server_loop2(authctxt);
2362db19 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
8d5728b7 2724 if (authctxt == NULL)
2362db19 2725 return;
8d5728b7 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
2362db19 2737#ifdef KRB5
2738 if (options.kerberos_ticket_cleanup &&
2739 authctxt->krb5_ctx)
2740 krb5_cleanup_proc(authctxt);
7364bd04 2741#endif
2362db19 2742
2743#ifdef GSSAPI
2744 if (compat20 && options.gss_cleanup_creds)
2745 ssh_gssapi_cleanup_creds();
2746#endif
2747
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);
e78a59f5 2757}
This page took 1.162203 seconds and 5 git commands to generate.