]> andersk Git - openssh.git/blame - session.c
- dtucker@cvs.openbsd.org 2009/11/10 04:30:45
[openssh.git] / session.c
CommitLineData
45bb6142 1/* $OpenBSD: session.c,v 1.247 2009/10/06 04:46:40 djm 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);
1338ba77 237 nc->path = xstrdup(auth_sock_name);
149cdb60 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
5077a5f6 574 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
3c62e7eb 575#endif
c6dca55e 576
7368a6c8 577 s->pid = pid;
b5c334cc 578 /* Set interactive/non-interactive mode. */
579 packet_set_interactive(s->display != NULL);
c6dca55e 580
581 /*
582 * Clear loginmsg, since it's the child's responsibility to display
583 * it to the user, otherwise multiple sessions may accumulate
584 * multiple copies of the login messages.
585 */
586 buffer_clear(&loginmsg);
587
7368a6c8 588#ifdef USE_PIPES
589 /* We are the parent. Close the child sides of the pipes. */
590 close(pin[0]);
591 close(pout[1]);
592 close(perr[1]);
593
e78a59f5 594 if (compat20) {
d7ecbe88 595 if (s->is_subsystem) {
596 close(perr[0]);
597 perr[0] = -1;
598 }
c9478090 599 session_set_fds(s, pin[1], pout[0], perr[0], 0);
e78a59f5 600 } else {
601 /* Enter the interactive session. */
602 server_loop(pid, pin[1], pout[0], perr[0]);
e5d7a405 603 /* server_loop has closed pin[1], pout[0], and perr[0]. */
e78a59f5 604 }
c6dca55e 605#else
7368a6c8 606 /* We are the parent. Close the child sides of the socket pairs. */
607 close(inout[0]);
608 close(err[0]);
609
610 /*
611 * Enter the interactive session. Note: server_loop must be able to
612 * handle the case that fdin and fdout are the same.
613 */
e78a59f5 614 if (compat20) {
c6dca55e 615 session_set_fds(s, inout[1], inout[1],
c9478090 616 s->is_subsystem ? -1 : err[1], 0);
c6dca55e 617 if (s->is_subsystem)
618 close(err[1]);
e78a59f5 619 } else {
620 server_loop(pid, inout[1], inout[1], err[1]);
621 /* server_loop has closed inout[1] and err[1]. */
622 }
c6dca55e 623#endif
624 return 0;
7368a6c8 625}
626
627/*
628 * This is called to fork and execute a command when we have a tty. This
629 * will call do_child from the child, and server_loop from the parent after
630 * setting up file descriptors, controlling tty, updating wtmp, utmp,
631 * lastlog, and other such operations.
632 */
c6dca55e 633int
65068d16 634do_exec_pty(Session *s, const char *command)
7368a6c8 635{
7368a6c8 636 int fdout, ptyfd, ttyfd, ptymaster;
7368a6c8 637 pid_t pid;
7368a6c8 638
639 if (s == NULL)
640 fatal("do_exec_pty: no session");
641 ptyfd = s->ptyfd;
642 ttyfd = s->ttyfd;
643
c6dca55e 644 /*
645 * Create another descriptor of the pty master side for use as the
646 * standard input. We could use the original descriptor, but this
647 * simplifies code in server_loop. The descriptor is bidirectional.
648 * Do this before forking (and cleanup in the child) so as to
649 * detect and gracefully fail out-of-fd conditions.
650 */
651 if ((fdout = dup(ptyfd)) < 0) {
652 error("%s: dup #1: %s", __func__, strerror(errno));
653 close(ttyfd);
654 close(ptyfd);
655 return -1;
656 }
657 /* we keep a reference to the pty master */
658 if ((ptymaster = dup(ptyfd)) < 0) {
659 error("%s: dup #2: %s", __func__, strerror(errno));
660 close(ttyfd);
661 close(ptyfd);
662 close(fdout);
663 return -1;
664 }
665
7368a6c8 666 /* Fork the child. */
c6dca55e 667 switch ((pid = fork())) {
668 case -1:
669 error("%s: fork: %.100s", __func__, strerror(errno));
670 close(fdout);
671 close(ptymaster);
672 close(ttyfd);
673 close(ptyfd);
674 return -1;
675 case 0:
2362db19 676 is_child = 1;
57156994 677
c6dca55e 678 close(fdout);
679 close(ptymaster);
680
c345cf9d 681 /* Child. Reinitialize the log because the pid has changed. */
c6dca55e 682 log_init(__progname, options.log_level,
683 options.log_facility, log_stderr);
7368a6c8 684 /* Close the master side of the pseudo tty. */
685 close(ptyfd);
686
687 /* Make the pseudo tty our controlling tty. */
688 pty_make_controlling_tty(&ttyfd, s->tty);
689
05fd093c 690 /* Redirect stdin/stdout/stderr from the pseudo tty. */
691 if (dup2(ttyfd, 0) < 0)
692 error("dup2 stdin: %s", strerror(errno));
693 if (dup2(ttyfd, 1) < 0)
694 error("dup2 stdout: %s", strerror(errno));
695 if (dup2(ttyfd, 2) < 0)
696 error("dup2 stderr: %s", strerror(errno));
7368a6c8 697
698 /* Close the extra descriptor for the pseudo tty. */
699 close(ttyfd);
700
c345cf9d 701 /* record login, etc. similar to login(1) */
c96a4aaf 702#ifndef HAVE_OSF_SIA
ef51930f 703 if (!(options.use_login && command == NULL)) {
704#ifdef _UNICOS
705 cray_init_job(s->pw); /* set up cray jid and tmpdir */
706#endif /* _UNICOS */
a22aff1f 707 do_login(s, command);
ef51930f 708 }
7e2d5fa4 709# ifdef LOGIN_NEEDS_UTMPX
710 else
711 do_pre_login(s);
712# endif
c96a4aaf 713#endif
c6dca55e 714 /*
715 * Do common processing for the child, such as execing
716 * the command.
717 */
9b9302ea 718 do_child(s, command);
719 /* NOTREACHED */
c6dca55e 720 default:
721 break;
7368a6c8 722 }
c6dca55e 723
ef51930f 724#ifdef _UNICOS
725 signal(WJSIGNAL, cray_job_termination_handler);
726#endif /* _UNICOS */
3c62e7eb 727#ifdef HAVE_CYGWIN
5077a5f6 728 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
3c62e7eb 729#endif
c6dca55e 730
7368a6c8 731 s->pid = pid;
732
733 /* Parent. Close the slave side of the pseudo tty. */
734 close(ttyfd);
735
7368a6c8 736 /* Enter interactive session. */
c6dca55e 737 s->ptymaster = ptymaster;
b5c334cc 738 packet_set_interactive(1);
e78a59f5 739 if (compat20) {
c9478090 740 session_set_fds(s, ptyfd, fdout, -1, 1);
e78a59f5 741 } else {
742 server_loop(pid, ptyfd, fdout, -1);
743 /* server_loop _has_ closed ptyfd and fdout. */
e78a59f5 744 }
c6dca55e 745 return 0;
7368a6c8 746}
747
7e2d5fa4 748#ifdef LOGIN_NEEDS_UTMPX
0e0144b7 749static void
7e2d5fa4 750do_pre_login(Session *s)
751{
752 socklen_t fromlen;
753 struct sockaddr_storage from;
754 pid_t pid = getpid();
755
756 /*
757 * Get IP address of client. If the connection is not a socket, let
758 * the address be 0.0.0.0.
759 */
760 memset(&from, 0, sizeof(from));
ba1566dd 761 fromlen = sizeof(from);
7e2d5fa4 762 if (packet_connection_is_on_socket()) {
7e2d5fa4 763 if (getpeername(packet_get_connection_in(),
32596c7b 764 (struct sockaddr *)&from, &fromlen) < 0) {
7e2d5fa4 765 debug("getpeername: %.100s", strerror(errno));
2362db19 766 cleanup_exit(255);
7e2d5fa4 767 }
768 }
769
770 record_utmp_only(pid, s->tty, s->pw->pw_name,
c5a7d788 771 get_remote_name_or_ip(utmp_len, options.use_dns),
d4ac26ed 772 (struct sockaddr *)&from, fromlen);
7e2d5fa4 773}
774#endif
775
dac6753b 776/*
777 * This is called to fork and execute a command. If another command is
778 * to be forced, execute that instead.
779 */
c6dca55e 780int
dac6753b 781do_exec(Session *s, const char *command)
782{
c6dca55e 783 int ret;
784
e7259e8d 785 if (options.adm_forced_command) {
786 original_command = command;
787 command = options.adm_forced_command;
e3ef5245 788 if (IS_INTERNAL_SFTP(command))
db49deeb 789 s->is_subsystem = SUBSYSTEM_INT_SFTP;
790 else if (s->is_subsystem)
c33ba17e 791 s->is_subsystem = SUBSYSTEM_EXT;
e7259e8d 792 debug("Forced command (config) '%.900s'", command);
793 } else if (forced_command) {
dac6753b 794 original_command = command;
795 command = forced_command;
e3ef5245 796 if (IS_INTERNAL_SFTP(command))
db49deeb 797 s->is_subsystem = SUBSYSTEM_INT_SFTP;
798 else if (s->is_subsystem)
c33ba17e 799 s->is_subsystem = SUBSYSTEM_EXT;
e7259e8d 800 debug("Forced command (key option) '%.900s'", command);
dac6753b 801 }
802
6039eeef 803#ifdef SSH_AUDIT_EVENTS
c00e4d75 804 if (command != NULL)
805 PRIVSEP(audit_run_command(command));
806 else if (s->ttyfd == -1) {
807 char *shell = s->pw->pw_shell;
808
809 if (shell[0] == '\0') /* empty shell means /bin/sh */
810 shell =_PATH_BSHELL;
811 PRIVSEP(audit_run_command(shell));
812 }
813#endif
dac6753b 814 if (s->ttyfd != -1)
c6dca55e 815 ret = do_exec_pty(s, command);
dac6753b 816 else
c6dca55e 817 ret = do_exec_no_pty(s, command);
dac6753b 818
c95add71 819 original_command = NULL;
dac6753b 820
be2ca0c9 821 /*
822 * Clear loginmsg: it's the child's responsibility to display
823 * it to the user, otherwise multiple sessions may accumulate
824 * multiple copies of the login messages.
825 */
826 buffer_clear(&loginmsg);
c6dca55e 827
828 return ret;
be2ca0c9 829}
f7342052 830
c345cf9d 831/* administrative, login(1)-like work */
832void
a22aff1f 833do_login(Session *s, const char *command)
c345cf9d 834{
c345cf9d 835 socklen_t fromlen;
836 struct sockaddr_storage from;
c345cf9d 837 struct passwd * pw = s->pw;
838 pid_t pid = getpid();
839
840 /*
841 * Get IP address of client. If the connection is not a socket, let
842 * the address be 0.0.0.0.
843 */
844 memset(&from, 0, sizeof(from));
d4ac26ed 845 fromlen = sizeof(from);
c345cf9d 846 if (packet_connection_is_on_socket()) {
c345cf9d 847 if (getpeername(packet_get_connection_in(),
9b9302ea 848 (struct sockaddr *)&from, &fromlen) < 0) {
c345cf9d 849 debug("getpeername: %.100s", strerror(errno));
2362db19 850 cleanup_exit(255);
c345cf9d 851 }
852 }
853
854 /* Record that there was a login on that tty from the remote host. */
49a34e84 855 if (!use_privsep)
856 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
857 get_remote_name_or_ip(utmp_len,
c5a7d788 858 options.use_dns),
ba1566dd 859 (struct sockaddr *)&from, fromlen);
c345cf9d 860
2919e060 861#ifdef USE_PAM
862 /*
863 * If password change is needed, do it now.
864 * This needs to occur before the ~/.hushlogin check.
865 */
dd1fb864 866 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
867 display_loginmsg();
2919e060 868 do_pam_chauthtok();
dd1fb864 869 s->authctxt->force_pwchange = 0;
5b9e2464 870 /* XXX - signal [net] parent to enable forwardings */
2919e060 871 }
872#endif
873
f2c2fd71 874 if (check_quietlogin(s, command))
c345cf9d 875 return;
876
dd1fb864 877 display_loginmsg();
c345cf9d 878
f2c2fd71 879 do_motd();
880}
881
882/*
883 * Display the message of the day.
884 */
885void
886do_motd(void)
887{
888 FILE *f;
889 char buf[256];
890
c345cf9d 891 if (options.print_motd) {
2e73a022 892#ifdef HAVE_LOGIN_CAP
893 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
894 "/etc/motd"), "r");
895#else
c345cf9d 896 f = fopen("/etc/motd", "r");
2e73a022 897#endif
c345cf9d 898 if (f) {
899 while (fgets(buf, sizeof(buf), f))
900 fputs(buf, stdout);
901 fclose(f);
902 }
903 }
904}
905
9c328529 906
907/*
908 * Check for quiet login, either .hushlogin or command given.
909 */
910int
911check_quietlogin(Session *s, const char *command)
912{
913 char buf[256];
914 struct passwd *pw = s->pw;
915 struct stat st;
916
917 /* Return 1 if .hushlogin exists or a command given. */
918 if (command != NULL)
919 return 1;
920 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
921#ifdef HAVE_LOGIN_CAP
922 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
923 return 1;
924#else
925 if (stat(buf, &st) >= 0)
926 return 1;
927#endif
928 return 0;
929}
930
7368a6c8 931/*
932 * Sets the value of the given variable in the environment. If the variable
94087553 933 * already exists, its value is overridden.
7368a6c8 934 */
7364bd04 935void
1e3b8b07 936child_set_env(char ***envp, u_int *envsizep, const char *name,
184eed6a 937 const char *value)
7368a6c8 938{
7368a6c8 939 char **env;
c46e584f 940 u_int envsize;
941 u_int i, namelen;
7368a6c8 942
95b99395 943 /*
944 * If we're passed an uninitialized list, allocate a single null
945 * entry before continuing.
946 */
947 if (*envp == NULL && *envsizep == 0) {
948 *envp = xmalloc(sizeof(char *));
949 *envp[0] = NULL;
950 *envsizep = 1;
951 }
952
7368a6c8 953 /*
954 * Find the slot where the value should be stored. If the variable
955 * already exists, we reuse the slot; otherwise we append a new slot
956 * at the end of the array, expanding if necessary.
957 */
958 env = *envp;
959 namelen = strlen(name);
960 for (i = 0; env[i]; i++)
961 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
962 break;
963 if (env[i]) {
964 /* Reuse the slot. */
965 xfree(env[i]);
966 } else {
967 /* New variable. Expand if necessary. */
c46e584f 968 envsize = *envsizep;
969 if (i >= envsize - 1) {
970 if (envsize >= 1000)
971 fatal("child_set_env: too many env vars");
972 envsize += 50;
c5d10563 973 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
c46e584f 974 *envsizep = envsize;
7368a6c8 975 }
976 /* Need to set the NULL pointer at end of array beyond the new slot. */
977 env[i + 1] = NULL;
978 }
979
980 /* Allocate space and format the variable in the appropriate slot. */
981 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
982 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
983}
984
985/*
986 * Reads environment variables from the given file and adds/overrides them
987 * into the environment. If the file does not exist, this does nothing.
988 * Otherwise, it must consist of empty lines, comments (line starts with '#')
989 * and assignments of the form name=value. No other forms are allowed.
990 */
396c147e 991static void
1e3b8b07 992read_environment_file(char ***env, u_int *envsize,
184eed6a 993 const char *filename)
7368a6c8 994{
995 FILE *f;
996 char buf[4096];
997 char *cp, *value;
66087567 998 u_int lineno = 0;
7368a6c8 999
1000 f = fopen(filename, "r");
1001 if (!f)
1002 return;
1003
1004 while (fgets(buf, sizeof(buf), f)) {
66087567 1005 if (++lineno > 1000)
1006 fatal("Too many lines in environment file %s", filename);
7368a6c8 1007 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1008 ;
1009 if (!*cp || *cp == '#' || *cp == '\n')
1010 continue;
b05117ac 1011
1012 cp[strcspn(cp, "\n")] = '\0';
1013
7368a6c8 1014 value = strchr(cp, '=');
1015 if (value == NULL) {
66087567 1016 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1017 filename);
7368a6c8 1018 continue;
1019 }
71276795 1020 /*
1021 * Replace the equals sign by nul, and advance value to
1022 * the value string.
1023 */
7368a6c8 1024 *value = '\0';
1025 value++;
1026 child_set_env(env, envsize, cp, value);
1027 }
1028 fclose(f);
1029}
1030
95b99395 1031#ifdef HAVE_ETC_DEFAULT_LOGIN
1032/*
1033 * Return named variable from specified environment, or NULL if not present.
1034 */
1035static char *
1036child_get_env(char **env, const char *name)
1037{
1038 int i;
1039 size_t len;
1040
1041 len = strlen(name);
1042 for (i=0; env[i] != NULL; i++)
1043 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1044 return(env[i] + len + 1);
1045 return NULL;
1046}
1047
1048/*
1049 * Read /etc/default/login.
1050 * We pick up the PATH (or SUPATH for root) and UMASK.
1051 */
1052static void
1053read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1054{
1055 char **tmpenv = NULL, *var;
6f99680f 1056 u_int i, tmpenvsize = 0;
3a23ba0e 1057 u_long mask;
95b99395 1058
1059 /*
1060 * We don't want to copy the whole file to the child's environment,
1061 * so we use a temporary environment and copy the variables we're
1062 * interested in.
1063 */
1064 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1065
6f99680f 1066 if (tmpenv == NULL)
1067 return;
1068
95b99395 1069 if (uid == 0)
1070 var = child_get_env(tmpenv, "SUPATH");
1071 else
1072 var = child_get_env(tmpenv, "PATH");
1073 if (var != NULL)
1074 child_set_env(env, envsize, "PATH", var);
b6453d99 1075
95b99395 1076 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1077 if (sscanf(var, "%5lo", &mask) == 1)
3a23ba0e 1078 umask((mode_t)mask);
b6453d99 1079
95b99395 1080 for (i = 0; tmpenv[i] != NULL; i++)
1081 xfree(tmpenv[i]);
1082 xfree(tmpenv);
1083}
1084#endif /* HAVE_ETC_DEFAULT_LOGIN */
1085
1db07e7d 1086void
1087copy_environment(char **source, char ***env, u_int *envsize)
7368a6c8 1088{
760b35a6 1089 char *var_name, *var_val;
7368a6c8 1090 int i;
1091
760b35a6 1092 if (source == NULL)
7368a6c8 1093 return;
2b87da3b 1094
760b35a6 1095 for(i = 0; source[i] != NULL; i++) {
1096 var_name = xstrdup(source[i]);
1097 if ((var_val = strstr(var_name, "=")) == NULL) {
1098 xfree(var_name);
7368a6c8 1099 continue;
7368a6c8 1100 }
760b35a6 1101 *var_val++ = '\0';
7368a6c8 1102
760b35a6 1103 debug3("Copy environment: %s=%s", var_name, var_val);
1104 child_set_env(env, envsize, var_name, var_val);
b6453d99 1105
760b35a6 1106 xfree(var_name);
22d89d24 1107 }
1108}
22d89d24 1109
f7342052 1110static char **
1111do_setup_env(Session *s, const char *shell)
7368a6c8 1112{
7368a6c8 1113 char buf[256];
f7342052 1114 u_int i, envsize;
9b09381d 1115 char **env, *laddr;
f7342052 1116 struct passwd *pw = s->pw;
5077a5f6 1117#if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
9b09381d 1118 char *path = NULL;
1119#endif
7368a6c8 1120
7368a6c8 1121 /* Initialize the environment. */
1122 envsize = 100;
01d35895 1123 env = xcalloc(envsize, sizeof(char *));
7368a6c8 1124 env[0] = NULL;
1125
3c62e7eb 1126#ifdef HAVE_CYGWIN
1127 /*
1128 * The Windows environment contains some setting which are
1129 * important for a running system. They must not be dropped.
1130 */
3c502155 1131 {
1132 char **p;
1133
1134 p = fetch_windows_environment();
1135 copy_environment(p, &env, &envsize);
1136 free_windows_environment(p);
1137 }
3c62e7eb 1138#endif
1139
7364bd04 1140#ifdef GSSAPI
aff51935 1141 /* Allow any GSSAPI methods that we've used to alter
7364bd04 1142 * the childs environment as they see fit
1143 */
1144 ssh_gssapi_do_child(&env, &envsize);
1145#endif
1146
7368a6c8 1147 if (!options.use_login) {
1148 /* Set basic environment. */
61a2c1da 1149 for (i = 0; i < s->num_env; i++)
f2107e97 1150 child_set_env(&env, &envsize, s->env[i].name,
61a2c1da 1151 s->env[i].val);
1152
7368a6c8 1153 child_set_env(&env, &envsize, "USER", pw->pw_name);
1154 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
17ed08c5 1155#ifdef _AIX
1156 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1157#endif
7368a6c8 1158 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
2e73a022 1159#ifdef HAVE_LOGIN_CAP
97686bf9 1160 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1161 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1162 else
1163 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
22d89d24 1164#else /* HAVE_LOGIN_CAP */
1165# ifndef HAVE_CYGWIN
3c62e7eb 1166 /*
1167 * There's no standard path on Windows. The path contains
1168 * important components pointing to the system directories,
1169 * needed for loading shared libraries. So the path better
1170 * remains intact here.
1171 */
95b99395 1172# ifdef HAVE_ETC_DEFAULT_LOGIN
1173 read_etc_default_login(&env, &envsize, pw->pw_uid);
1174 path = child_get_env(env, "PATH");
1175# endif /* HAVE_ETC_DEFAULT_LOGIN */
1176 if (path == NULL || *path == '\0') {
aff51935 1177 child_set_env(&env, &envsize, "PATH",
95b99395 1178 s->pw->pw_uid == 0 ?
1179 SUPERUSER_PATH : _PATH_STDPATH);
1180 }
22d89d24 1181# endif /* HAVE_CYGWIN */
1182#endif /* HAVE_LOGIN_CAP */
7368a6c8 1183
1184 snprintf(buf, sizeof buf, "%.200s/%.50s",
1185 _PATH_MAILDIR, pw->pw_name);
1186 child_set_env(&env, &envsize, "MAIL", buf);
1187
1188 /* Normal systems set SHELL by default. */
1189 child_set_env(&env, &envsize, "SHELL", shell);
1190 }
1191 if (getenv("TZ"))
1192 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1193
1194 /* Set custom environment options from RSA authentication. */
2548961d 1195 if (!options.use_login) {
1196 while (custom_environment) {
1197 struct envstring *ce = custom_environment;
7fdc56c5 1198 char *str = ce->s;
f7342052 1199
7fdc56c5 1200 for (i = 0; str[i] != '=' && str[i]; i++)
2548961d 1201 ;
7fdc56c5 1202 if (str[i] == '=') {
1203 str[i] = 0;
1204 child_set_env(&env, &envsize, str, str + i + 1);
2548961d 1205 }
1206 custom_environment = ce->next;
1207 xfree(ce->s);
1208 xfree(ce);
7368a6c8 1209 }
7368a6c8 1210 }
1211
da0561eb 1212 /* SSH_CLIENT deprecated */
7368a6c8 1213 snprintf(buf, sizeof buf, "%.50s %d %d",
f7342052 1214 get_remote_ipaddr(), get_remote_port(), get_local_port());
7368a6c8 1215 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1216
3e2f2431 1217 laddr = get_local_ipaddr(packet_get_connection_in());
da0561eb 1218 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
3e2f2431 1219 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1220 xfree(laddr);
da0561eb 1221 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1222
56b3e9ce 1223 if (s->ttyfd != -1)
1224 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1225 if (s->term)
1226 child_set_env(&env, &envsize, "TERM", s->term);
1227 if (s->display)
1228 child_set_env(&env, &envsize, "DISPLAY", s->display);
b5e300c2 1229 if (original_command)
1230 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1231 original_command);
7368a6c8 1232
ef51930f 1233#ifdef _UNICOS
1234 if (cray_tmpdir[0] != '\0')
1235 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1236#endif /* _UNICOS */
1237
3bfd27d5 1238 /*
1239 * Since we clear KRB5CCNAME at startup, if it's set now then it
1240 * must have been set by a native authentication method (eg AIX or
1241 * SIA), so copy it to the child.
1242 */
1243 {
1244 char *cp;
1245
1246 if ((cp = getenv("KRB5CCNAME")) != NULL)
1247 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1248 }
1249
7368a6c8 1250#ifdef _AIX
4936fcee 1251 {
1252 char *cp;
1253
1254 if ((cp = getenv("AUTHSTATE")) != NULL)
1255 child_set_env(&env, &envsize, "AUTHSTATE", cp);
4936fcee 1256 read_environment_file(&env, &envsize, "/etc/environment");
1257 }
7368a6c8 1258#endif
ced49be2 1259#ifdef KRB5
6490a5d5 1260 if (s->authctxt->krb5_ccname)
ced49be2 1261 child_set_env(&env, &envsize, "KRB5CCNAME",
6490a5d5 1262 s->authctxt->krb5_ccname);
ced49be2 1263#endif
7368a6c8 1264#ifdef USE_PAM
ee48c949 1265 /*
1266 * Pull in any environment variables that may have
1267 * been set by PAM.
1268 */
7fceb20d 1269 if (options.use_pam) {
2212fc98 1270 char **p;
b6453d99 1271
2212fc98 1272 p = fetch_pam_child_environment();
1273 copy_environment(p, &env, &envsize);
1274 free_pam_environment(p);
ee48c949 1275
2212fc98 1276 p = fetch_pam_environment();
ee48c949 1277 copy_environment(p, &env, &envsize);
1278 free_pam_environment(p);
1279 }
7368a6c8 1280#endif /* USE_PAM */
1281
149cdb60 1282 if (auth_sock_name != NULL)
7368a6c8 1283 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
149cdb60 1284 auth_sock_name);
7368a6c8 1285
1286 /* read $HOME/.ssh/environment. */
f00bab84 1287 if (options.permit_user_env && !options.use_login) {
71276795 1288 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
e2e36358 1289 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
7368a6c8 1290 read_environment_file(&env, &envsize, buf);
1291 }
1292 if (debug_flag) {
1293 /* dump the environment */
1294 fprintf(stderr, "Environment:\n");
1295 for (i = 0; env[i]; i++)
1296 fprintf(stderr, " %.200s\n", env[i]);
1297 }
f7342052 1298 return env;
1299}
1300
1301/*
1302 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1303 * first in this order).
1304 */
1305static void
1306do_rc_files(Session *s, const char *shell)
1307{
1308 FILE *f = NULL;
1309 char cmd[1024];
1310 int do_xauth;
1311 struct stat st;
1312
1313 do_xauth =
1314 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1315
6e2a8e29 1316 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
0adb9449 1317 if (!s->is_subsystem && options.adm_forced_command == NULL &&
48fbfda0 1318 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
f7342052 1319 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1320 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1321 if (debug_flag)
1322 fprintf(stderr, "Running %s\n", cmd);
1323 f = popen(cmd, "w");
1324 if (f) {
1325 if (do_xauth)
1326 fprintf(f, "%s %s\n", s->auth_proto,
1327 s->auth_data);
1328 pclose(f);
1329 } else
1330 fprintf(stderr, "Could not run %s\n",
1331 _PATH_SSH_USER_RC);
1332 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1333 if (debug_flag)
1334 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1335 _PATH_SSH_SYSTEM_RC);
1336 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1337 if (f) {
1338 if (do_xauth)
1339 fprintf(f, "%s %s\n", s->auth_proto,
1340 s->auth_data);
1341 pclose(f);
1342 } else
1343 fprintf(stderr, "Could not run %s\n",
1344 _PATH_SSH_SYSTEM_RC);
1345 } else if (do_xauth && options.xauth_location != NULL) {
1346 /* Add authority data to .Xauthority if appropriate. */
1347 if (debug_flag) {
1348 fprintf(stderr,
fe661d8f 1349 "Running %.500s remove %.100s\n",
2362db19 1350 options.xauth_location, s->auth_display);
fe661d8f 1351 fprintf(stderr,
1352 "%.500s add %.100s %.100s %.100s\n",
f7342052 1353 options.xauth_location, s->auth_display,
1354 s->auth_proto, s->auth_data);
1355 }
1356 snprintf(cmd, sizeof cmd, "%s -q -",
1357 options.xauth_location);
1358 f = popen(cmd, "w");
1359 if (f) {
fe661d8f 1360 fprintf(f, "remove %s\n",
1361 s->auth_display);
f7342052 1362 fprintf(f, "add %s %s %s\n",
1363 s->auth_display, s->auth_proto,
1364 s->auth_data);
1365 pclose(f);
1366 } else {
1367 fprintf(stderr, "Could not run %s\n",
1368 cmd);
1369 }
1370 }
1371}
1372
1373static void
1374do_nologin(struct passwd *pw)
1375{
1376 FILE *f = NULL;
1377 char buf[1024];
1378
1379#ifdef HAVE_LOGIN_CAP
1380 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1381 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1382 _PATH_NOLOGIN), "r");
1383#else
1384 if (pw->pw_uid)
1385 f = fopen(_PATH_NOLOGIN, "r");
1386#endif
1387 if (f) {
1388 /* /etc/nologin exists. Print its contents and exit. */
bbe88b6d 1389 logit("User %.100s not allowed because %s exists",
8bd4e2ae 1390 pw->pw_name, _PATH_NOLOGIN);
f7342052 1391 while (fgets(buf, sizeof(buf), f))
1392 fputs(buf, stderr);
1393 fclose(f);
99f4fb69 1394 fflush(NULL);
f7342052 1395 exit(254);
1396 }
1397}
1398
db49deeb 1399/*
1400 * Chroot into a directory after checking it for safety: all path components
1401 * must be root-owned directories with strict permissions.
1402 */
1403static void
1404safely_chroot(const char *path, uid_t uid)
1405{
1406 const char *cp;
1407 char component[MAXPATHLEN];
1408 struct stat st;
1409
1410 if (*path != '/')
1411 fatal("chroot path does not begin at root");
1412 if (strlen(path) >= sizeof(component))
1413 fatal("chroot path too long");
1414
1415 /*
1416 * Descend the path, checking that each component is a
1417 * root-owned directory with strict permissions.
1418 */
1419 for (cp = path; cp != NULL;) {
1420 if ((cp = strchr(cp, '/')) == NULL)
1421 strlcpy(component, path, sizeof(component));
1422 else {
1423 cp++;
1424 memcpy(component, path, cp - path);
1425 component[cp - path] = '\0';
1426 }
1427
1428 debug3("%s: checking '%s'", __func__, component);
1429
1430 if (stat(component, &st) != 0)
1431 fatal("%s: stat(\"%s\"): %s", __func__,
1432 component, strerror(errno));
1433 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1434 fatal("bad ownership or modes for chroot "
1435 "directory %s\"%s\"",
1436 cp == NULL ? "" : "component ", component);
1437 if (!S_ISDIR(st.st_mode))
1438 fatal("chroot path %s\"%s\" is not a directory",
1439 cp == NULL ? "" : "component ", component);
1440
1441 }
1442
1443 if (chdir(path) == -1)
1444 fatal("Unable to chdir to chroot path \"%s\": "
1445 "%s", path, strerror(errno));
1446 if (chroot(path) == -1)
1447 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1448 if (chdir("/") == -1)
1449 fatal("%s: chdir(/) after chroot: %s",
1450 __func__, strerror(errno));
1451 verbose("Changed root directory to \"%s\"", path);
1452}
1453
f7342052 1454/* Set login name, uid, gid, and groups. */
1853d1ef 1455void
f7342052 1456do_setusercontext(struct passwd *pw)
1457{
c5bf32e6 1458 char *chroot_path, *tmp;
1459
0b639bf6 1460#ifdef WITH_SELINUX
1461 /* Cache selinux status for later use */
1462 (void)ssh_selinux_enabled();
1463#endif
1464
2731632a 1465#ifndef HAVE_CYGWIN
1466 if (getuid() == 0 || geteuid() == 0)
f7342052 1467#endif /* HAVE_CYGWIN */
2731632a 1468 {
f7342052 1469#ifdef HAVE_LOGIN_CAP
2d199535 1470# ifdef __bsdi__
8695f9f7 1471 setpgid(0, 0);
2d199535 1472# endif
f4eaee12 1473# ifdef USE_PAM
1474 if (options.use_pam) {
265edd5e 1475 do_pam_setcred(use_privsep);
f4eaee12 1476 }
1477# endif /* USE_PAM */
f7342052 1478 if (setusercontext(lc, pw, pw->pw_uid,
db49deeb 1479 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
f7342052 1480 perror("unable to set user context");
1481 exit(1);
1482 }
1483#else
1484# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1485 /* Sets login uid for accounting */
1486 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1487 error("setluid: %s", strerror(errno));
1488# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1489
1490 if (setlogin(pw->pw_name) < 0)
1491 error("setlogin failed: %s", strerror(errno));
1492 if (setgid(pw->pw_gid) < 0) {
1493 perror("setgid");
1494 exit(1);
1495 }
1496 /* Initialize the group list. */
1497 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1498 perror("initgroups");
1499 exit(1);
1500 }
1501 endgrent();
1502# ifdef USE_PAM
1503 /*
aff51935 1504 * PAM credentials may take the form of supplementary groups.
f7342052 1505 * These will have been wiped by the above initgroups() call.
1506 * Reestablish them here.
1507 */
49e82bb9 1508 if (options.use_pam) {
265edd5e 1509 do_pam_setcred(use_privsep);
49e82bb9 1510 }
f7342052 1511# endif /* USE_PAM */
1512# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1513 irix_setusercontext(pw);
db49deeb 1514# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
e2bc41f9 1515# ifdef _AIX
0ba40daa 1516 aix_usrinfo(pw);
e2bc41f9 1517# endif /* _AIX */
db49deeb 1518# ifdef USE_LIBIAF
4c653d8e 1519 if (set_id(pw->pw_name) != 0) {
1520 exit(1);
1521 }
db49deeb 1522# endif /* USE_LIBIAF */
1523#endif
1524
1525 if (options.chroot_directory != NULL &&
1526 strcasecmp(options.chroot_directory, "none") != 0) {
c5bf32e6 1527 tmp = tilde_expand_filename(options.chroot_directory,
1528 pw->pw_uid);
1529 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1530 "u", pw->pw_name, (char *)NULL);
db49deeb 1531 safely_chroot(chroot_path, pw->pw_uid);
c5bf32e6 1532 free(tmp);
db49deeb 1533 free(chroot_path);
1534 }
1535
406dc01a 1536#ifdef HAVE_SETPCRED
1537 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1538 fatal("Failed to set process credentials");
1539#endif /* HAVE_SETPCRED */
db49deeb 1540#ifdef HAVE_LOGIN_CAP
1541 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1542 perror("unable to set user context (setuser)");
1543 exit(1);
1544 }
1545#else
f7342052 1546 /* Permanently switch to the desired uid. */
1547 permanently_set_uid(pw);
1548#endif
1549 }
2731632a 1550
f7342052 1551 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1552 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
ef4d1846 1553
1554#ifdef WITH_SELINUX
1555 ssh_selinux_setup_exec_context(pw->pw_name);
1556#endif
f7342052 1557}
1558
37656beb 1559static void
1560do_pwchange(Session *s)
1561{
be2ca0c9 1562 fflush(NULL);
37656beb 1563 fprintf(stderr, "WARNING: Your password has expired.\n");
1564 if (s->ttyfd != -1) {
f2107e97 1565 fprintf(stderr,
37656beb 1566 "You must change your password now and login again!\n");
3ade3b57 1567#ifdef PASSWD_NEEDS_USERNAME
1568 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1569 (char *)NULL);
1570#else
37656beb 1571 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
3ade3b57 1572#endif
37656beb 1573 perror("passwd");
1574 } else {
1575 fprintf(stderr,
1576 "Password change required but no TTY available.\n");
1577 }
1578 exit(1);
1579}
1580
51aeb639 1581static void
1853d1ef 1582launch_login(struct passwd *pw, const char *hostname)
1583{
1584 /* Launch login(1). */
1585
85cc9118 1586 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1178e8db 1587#ifdef xxxLOGIN_NEEDS_TERM
875ec275 1588 (s->term ? s->term : "unknown"),
1853d1ef 1589#endif /* LOGIN_NEEDS_TERM */
a2572aa7 1590#ifdef LOGIN_NO_ENDOPT
1591 "-p", "-f", pw->pw_name, (char *)NULL);
1592#else
1853d1ef 1593 "-p", "-f", "--", pw->pw_name, (char *)NULL);
a2572aa7 1594#endif
1853d1ef 1595
1596 /* Login couldn't be executed, die. */
1597
1598 perror("login");
1599 exit(1);
1600}
1601
37656beb 1602static void
1603child_close_fds(void)
1604{
1605 int i;
1606
1607 if (packet_get_connection_in() == packet_get_connection_out())
1608 close(packet_get_connection_in());
1609 else {
1610 close(packet_get_connection_in());
1611 close(packet_get_connection_out());
1612 }
1613 /*
1614 * Close all descriptors related to channels. They will still remain
1615 * open in the parent.
1616 */
1617 /* XXX better use close-on-exec? -markus */
1618 channel_close_all();
1619
1620 /*
1621 * Close any extra file descriptors. Note that there may still be
1622 * descriptors left by system functions. They will be closed later.
1623 */
1624 endpwent();
1625
1626 /*
7b9b0103 1627 * Close any extra open file descriptors so that we don't have them
37656beb 1628 * hanging around in clients. Note that we want to do this after
1629 * initgroups, because at least on Solaris 2.3 it leaves file
1630 * descriptors open.
1631 */
1632 for (i = 3; i < 64; i++)
1633 close(i);
1634}
1635
f7342052 1636/*
1637 * Performs common processing for the child, such as setting up the
1638 * environment, closing extra file descriptors, setting the user and group
1639 * ids, and executing the command or shell.
1640 */
c33ba17e 1641#define ARGV_MAX 10
f7342052 1642void
1643do_child(Session *s, const char *command)
1644{
1645 extern char **environ;
1646 char **env;
c33ba17e 1647 char *argv[ARGV_MAX];
f7342052 1648 const char *shell, *shell0, *hostname = NULL;
1649 struct passwd *pw = s->pw;
2608aa2b 1650 int r = 0;
f7342052 1651
1652 /* remove hostkey from the child's memory */
1653 destroy_sensitive_data();
1654
37656beb 1655 /* Force a password change */
1656 if (s->authctxt->force_pwchange) {
1657 do_setusercontext(pw);
1658 child_close_fds();
1659 do_pwchange(s);
1660 exit(1);
1661 }
1662
f7342052 1663 /* login(1) is only called if we execute the login shell */
1664 if (options.use_login && command != NULL)
1665 options.use_login = 0;
1666
ef51930f 1667#ifdef _UNICOS
1668 cray_setup(pw->pw_uid, pw->pw_name, command);
1669#endif /* _UNICOS */
1670
f7342052 1671 /*
1672 * Login(1) does this as well, and it needs uid 0 for the "-h"
1673 * switch, so we let login(1) to this for us.
1674 */
1675 if (!options.use_login) {
1676#ifdef HAVE_OSF_SIA
58d0df4e 1677 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
f7342052 1678 if (!check_quietlogin(s, command))
1679 do_motd();
1680#else /* HAVE_OSF_SIA */
0a61a240 1681 /* When PAM is enabled we rely on it to do the nologin check */
1682 if (!options.use_pam)
1683 do_nologin(pw);
f7342052 1684 do_setusercontext(pw);
25bfd4ff 1685 /*
1686 * PAM session modules in do_setusercontext may have
1687 * generated messages, so if this in an interactive
1688 * login then display them too.
1689 */
d0c890ac 1690 if (!check_quietlogin(s, command))
25bfd4ff 1691 display_loginmsg();
f7342052 1692#endif /* HAVE_OSF_SIA */
1693 }
1694
abdec250 1695#ifdef USE_PAM
d9720710 1696 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1697 debug3("PAM session not opened, exiting");
abdec250 1698 display_loginmsg();
1699 exit(254);
1700 }
1701#endif
1702
f7342052 1703 /*
1704 * Get the shell from the password data. An empty shell field is
1705 * legal, and means /bin/sh.
1706 */
1707 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
32214c88 1708
1709 /*
1710 * Make sure $SHELL points to the shell from the password file,
1711 * even if shell is overridden from login.conf
1712 */
1713 env = do_setup_env(s, shell);
1714
f7342052 1715#ifdef HAVE_LOGIN_CAP
1716 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1717#endif
1718
2e73a022 1719 /* we have to stash the hostname before we close our socket. */
1720 if (options.use_login)
46e3af7f 1721 hostname = get_remote_name_or_ip(utmp_len,
c5a7d788 1722 options.use_dns);
7368a6c8 1723 /*
1724 * Close the connection descriptors; note that this is the child, and
1725 * the server will still have the socket open, and it is important
1726 * that we do not shutdown it. Note that the descriptors cannot be
1727 * closed before building the environment, as we call
1728 * get_remote_ipaddr there.
1729 */
37656beb 1730 child_close_fds();
7368a6c8 1731
7368a6c8 1732 /*
2a8a6488 1733 * Must take new environment into use so that .ssh/rc,
1734 * /etc/ssh/sshrc and xauth are run in the proper environment.
7368a6c8 1735 */
1736 environ = env;
1737
bcfcc5f9 1738#if defined(KRB5) && defined(USE_AFS)
a1e30b47 1739 /*
1740 * At this point, we check to see if AFS is active and if we have
1741 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1742 * if we can (and need to) extend the ticket into an AFS token. If
1743 * we don't do this, we run into potential problems if the user's
1744 * home directory is in AFS and it's not world-readable.
1745 */
1746
1747 if (options.kerberos_get_afs_token && k_hasafs() &&
4e2e5cfd 1748 (s->authctxt->krb5_ctx != NULL)) {
a1e30b47 1749 char cell[64];
1750
1751 debug("Getting AFS token");
1752
1753 k_setpag();
1754
1755 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1756 krb5_afslog(s->authctxt->krb5_ctx,
1757 s->authctxt->krb5_fwd_ccache, cell, NULL);
1758
1759 krb5_afslog_home(s->authctxt->krb5_ctx,
1760 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1761 }
1762#endif
1763
7b9b0103 1764 /* Change current directory to the user's home directory. */
dab89049 1765 if (chdir(pw->pw_dir) < 0) {
2608aa2b 1766 /* Suppress missing homedir warning for chroot case */
dab89049 1767#ifdef HAVE_LOGIN_CAP
2608aa2b 1768 r = login_getcapbool(lc, "requirehome", 0);
dab89049 1769#endif
2608aa2b 1770 if (r || options.chroot_directory == NULL)
1771 fprintf(stderr, "Could not chdir to home "
1772 "directory %s: %s\n", pw->pw_dir,
1773 strerror(errno));
1774 if (r)
1775 exit(1);
dab89049 1776 }
1777
fab9144d 1778 closefrom(STDERR_FILENO + 1);
1779
f7342052 1780 if (!options.use_login)
1781 do_rc_files(s, shell);
1d3c30db 1782
1783 /* restore SIGPIPE for child */
c56969f9 1784 signal(SIGPIPE, SIG_DFL);
1d3c30db 1785
c33ba17e 1786 if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1787 extern int optind, optreset;
1788 int i;
1789 char *p, *args;
1790
02d56d32 1791 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
2e96832c 1792 args = xstrdup(command ? command : "sftp-server");
c33ba17e 1793 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1794 if (i < ARGV_MAX - 1)
1795 argv[i++] = p;
1796 argv[i] = NULL;
1797 optind = optreset = 1;
1798 __progname = argv[0];
51fa929a 1799#ifdef WITH_SELINUX
1800 ssh_selinux_change_context("sftpd_t");
1801#endif
db49deeb 1802 exit(sftp_server_main(i, argv, s->pw));
c33ba17e 1803 }
1804
45bb6142 1805 fflush(NULL);
1806
f7342052 1807 if (options.use_login) {
1853d1ef 1808 launch_login(pw, hostname);
1809 /* NEVERREACHED */
f7342052 1810 }
1811
1812 /* Get the last component of the shell name. */
1813 if ((shell0 = strrchr(shell, '/')) != NULL)
1814 shell0++;
1815 else
1816 shell0 = shell;
1817
7368a6c8 1818 /*
1819 * If we have no command, execute the shell. In this case, the shell
1820 * name to be passed in argv[0] is preceded by '-' to indicate that
1821 * this is a login shell.
1822 */
1823 if (!command) {
f7342052 1824 char argv0[256];
7368a6c8 1825
f7342052 1826 /* Start the shell. Set initial character to '-'. */
1827 argv0[0] = '-';
7368a6c8 1828
f7342052 1829 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1830 >= sizeof(argv0) - 1) {
1831 errno = EINVAL;
7368a6c8 1832 perror(shell);
1833 exit(1);
f7342052 1834 }
7368a6c8 1835
f7342052 1836 /* Execute the shell. */
1837 argv[0] = argv0;
1838 argv[1] = NULL;
1839 execve(shell, argv, env);
7368a6c8 1840
f7342052 1841 /* Executing the shell failed. */
1842 perror(shell);
1843 exit(1);
7368a6c8 1844 }
1845 /*
1846 * Execute the command using the user's shell. This uses the -c
1847 * option to execute the command.
1848 */
f7342052 1849 argv[0] = (char *) shell0;
7368a6c8 1850 argv[1] = "-c";
1851 argv[2] = (char *) command;
1852 argv[3] = NULL;
1853 execve(shell, argv, env);
1854 perror(shell);
1855 exit(1);
1856}
1857
c6dca55e 1858void
1859session_unused(int id)
1860{
1861 debug3("%s: session id %d unused", __func__, id);
1862 if (id >= options.max_sessions ||
1863 id >= sessions_nalloc) {
1864 fatal("%s: insane session id %d (max %d nalloc %d)",
1865 __func__, id, options.max_sessions, sessions_nalloc);
1866 }
1867 bzero(&sessions[id], sizeof(*sessions));
1868 sessions[id].self = id;
1869 sessions[id].used = 0;
1870 sessions[id].chanid = -1;
1871 sessions[id].ptyfd = -1;
1872 sessions[id].ttyfd = -1;
1873 sessions[id].ptymaster = -1;
1874 sessions[id].x11_chanids = NULL;
1875 sessions[id].next_unused = sessions_first_unused;
1876 sessions_first_unused = id;
1877}
1878
7368a6c8 1879Session *
1880session_new(void)
1881{
c6dca55e 1882 Session *s, *tmp;
1883
1884 if (sessions_first_unused == -1) {
1885 if (sessions_nalloc >= options.max_sessions)
1886 return NULL;
1887 debug2("%s: allocate (allocated %d max %d)",
1888 __func__, sessions_nalloc, options.max_sessions);
1889 tmp = xrealloc(sessions, sessions_nalloc + 1,
1890 sizeof(*sessions));
1891 if (tmp == NULL) {
1892 error("%s: cannot allocate %d sessions",
1893 __func__, sessions_nalloc + 1);
1894 return NULL;
7368a6c8 1895 }
c6dca55e 1896 sessions = tmp;
1897 session_unused(sessions_nalloc++);
7368a6c8 1898 }
c6dca55e 1899
1900 if (sessions_first_unused >= sessions_nalloc ||
1901 sessions_first_unused < 0) {
1902 fatal("%s: insane first_unused %d max %d nalloc %d",
1903 __func__, sessions_first_unused, options.max_sessions,
1904 sessions_nalloc);
7368a6c8 1905 }
c6dca55e 1906
1907 s = &sessions[sessions_first_unused];
1908 if (s->used) {
1909 fatal("%s: session %d already used",
1910 __func__, sessions_first_unused);
1911 }
1912 sessions_first_unused = s->next_unused;
1913 s->used = 1;
1914 s->next_unused = -1;
1915 debug("session_new: session %d", s->self);
1916
1917 return s;
7368a6c8 1918}
1919
396c147e 1920static void
7368a6c8 1921session_dump(void)
1922{
1923 int i;
c6dca55e 1924 for (i = 0; i < sessions_nalloc; i++) {
7368a6c8 1925 Session *s = &sessions[i];
c6dca55e 1926
1927 debug("dump: used %d next_unused %d session %d %p "
1928 "channel %d pid %ld",
7368a6c8 1929 s->used,
c6dca55e 1930 s->next_unused,
7368a6c8 1931 s->self,
1932 s,
1933 s->chanid,
c457707e 1934 (long)s->pid);
7368a6c8 1935 }
1936}
1937
e78a59f5 1938int
57156994 1939session_open(Authctxt *authctxt, int chanid)
e78a59f5 1940{
1941 Session *s = session_new();
1942 debug("session_open: channel %d", chanid);
1943 if (s == NULL) {
1944 error("no more sessions");
1945 return 0;
1946 }
57156994 1947 s->authctxt = authctxt;
1948 s->pw = authctxt->pw;
fdaef11e 1949 if (s->pw == NULL || !authctxt->valid)
0725ea77 1950 fatal("no user for session %d", s->self);
0b242b12 1951 debug("session_open: session %d: link with channel %d", s->self, chanid);
1952 s->chanid = chanid;
e78a59f5 1953 return 1;
1954}
1955
1853d1ef 1956Session *
1957session_by_tty(char *tty)
1958{
1959 int i;
c6dca55e 1960 for (i = 0; i < sessions_nalloc; i++) {
1853d1ef 1961 Session *s = &sessions[i];
1962 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1963 debug("session_by_tty: session %d tty %s", i, tty);
1964 return s;
1965 }
1966 }
1967 debug("session_by_tty: unknown tty %.100s", tty);
1968 session_dump();
1969 return NULL;
1970}
1971
396c147e 1972static Session *
e78a59f5 1973session_by_channel(int id)
1974{
1975 int i;
c6dca55e 1976 for (i = 0; i < sessions_nalloc; i++) {
e78a59f5 1977 Session *s = &sessions[i];
1978 if (s->used && s->chanid == id) {
c6dca55e 1979 debug("session_by_channel: session %d channel %d",
1980 i, id);
e78a59f5 1981 return s;
1982 }
1983 }
1984 debug("session_by_channel: unknown channel %d", id);
1985 session_dump();
1986 return NULL;
1987}
1988
d08341e6 1989static Session *
1990session_by_x11_channel(int id)
1991{
1992 int i, j;
1993
c6dca55e 1994 for (i = 0; i < sessions_nalloc; i++) {
d08341e6 1995 Session *s = &sessions[i];
1996
1997 if (s->x11_chanids == NULL || !s->used)
1998 continue;
1999 for (j = 0; s->x11_chanids[j] != -1; j++) {
2000 if (s->x11_chanids[j] == id) {
2001 debug("session_by_x11_channel: session %d "
2002 "channel %d", s->self, id);
2003 return s;
2004 }
2005 }
2006 }
2007 debug("session_by_x11_channel: unknown channel %d", id);
2008 session_dump();
2009 return NULL;
2010}
2011
396c147e 2012static Session *
e78a59f5 2013session_by_pid(pid_t pid)
2014{
2015 int i;
c457707e 2016 debug("session_by_pid: pid %ld", (long)pid);
c6dca55e 2017 for (i = 0; i < sessions_nalloc; i++) {
e78a59f5 2018 Session *s = &sessions[i];
2019 if (s->used && s->pid == pid)
2020 return s;
2021 }
c457707e 2022 error("session_by_pid: unknown pid %ld", (long)pid);
e78a59f5 2023 session_dump();
2024 return NULL;
2025}
2026
396c147e 2027static int
e78a59f5 2028session_window_change_req(Session *s)
2029{
2030 s->col = packet_get_int();
2031 s->row = packet_get_int();
2032 s->xpixel = packet_get_int();
2033 s->ypixel = packet_get_int();
95500969 2034 packet_check_eom();
e78a59f5 2035 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2036 return 1;
2037}
2038
396c147e 2039static int
e78a59f5 2040session_pty_req(Session *s)
2041{
1e3b8b07 2042 u_int len;
30dcc918 2043 int n_bytes;
762715ce 2044
653d5f86 2045 if (no_pty_flag) {
2046 debug("Allocating a pty not permitted for this authentication.");
38c295d6 2047 return 0;
653d5f86 2048 }
2049 if (s->ttyfd != -1) {
2050 packet_disconnect("Protocol error: you already have a pty.");
6ae2364d 2051 return 0;
653d5f86 2052 }
2053
e78a59f5 2054 s->term = packet_get_string(&len);
653d5f86 2055
2056 if (compat20) {
2057 s->col = packet_get_int();
2058 s->row = packet_get_int();
2059 } else {
2060 s->row = packet_get_int();
2061 s->col = packet_get_int();
2062 }
e78a59f5 2063 s->xpixel = packet_get_int();
2064 s->ypixel = packet_get_int();
2065
2066 if (strcmp(s->term, "") == 0) {
2067 xfree(s->term);
2068 s->term = NULL;
2069 }
653d5f86 2070
e78a59f5 2071 /* Allocate a pty and open it. */
653d5f86 2072 debug("Allocating pty.");
c6dca55e 2073 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2074 sizeof(s->tty)))) {
653d5f86 2075 if (s->term)
2076 xfree(s->term);
e78a59f5 2077 s->term = NULL;
2078 s->ptyfd = -1;
2079 s->ttyfd = -1;
2080 error("session_pty_req: session %d alloc failed", s->self);
6ae2364d 2081 return 0;
e78a59f5 2082 }
2083 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
653d5f86 2084
2085 /* for SSH1 the tty modes length is not given */
2086 if (!compat20)
2087 n_bytes = packet_remaining();
2088 tty_parse_modes(s->ttyfd, &n_bytes);
2089
1853d1ef 2090 if (!use_privsep)
2091 pty_setowner(s->pw, s->tty);
653d5f86 2092
2093 /* Set window size from the packet. */
e78a59f5 2094 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2095
95500969 2096 packet_check_eom();
1d1ffb87 2097 session_proctitle(s);
e78a59f5 2098 return 1;
2099}
2100
396c147e 2101static int
0b242b12 2102session_subsystem_req(Session *s)
2103{
01855277 2104 struct stat st;
1e3b8b07 2105 u_int len;
0b242b12 2106 int success = 0;
d66ce1a1 2107 char *prog, *cmd, *subsys = packet_get_string(&len);
2ceb8101 2108 u_int i;
0b242b12 2109
95500969 2110 packet_check_eom();
bbe88b6d 2111 logit("subsystem request for %.100s", subsys);
0b242b12 2112
38c295d6 2113 for (i = 0; i < options.num_subsystems; i++) {
01855277 2114 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
d66ce1a1 2115 prog = options.subsystem_command[i];
2116 cmd = options.subsystem_args[i];
db49deeb 2117 if (!strcmp(INTERNAL_SFTP_NAME, prog)) {
c33ba17e 2118 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2119 } else if (stat(prog, &st) < 0) {
d66ce1a1 2120 error("subsystem: cannot stat %s: %s", prog,
01855277 2121 strerror(errno));
2122 break;
c33ba17e 2123 } else {
2124 s->is_subsystem = SUBSYSTEM_EXT;
01855277 2125 }
2126 debug("subsystem: exec() %s", cmd);
c6dca55e 2127 success = do_exec(s, cmd) == 0;
24932ee9 2128 break;
38c295d6 2129 }
2130 }
2131
2132 if (!success)
bbe88b6d 2133 logit("subsystem request for %.100s failed, subsystem not found",
01855277 2134 subsys);
38c295d6 2135
0b242b12 2136 xfree(subsys);
2137 return success;
2138}
2139
396c147e 2140static int
0b242b12 2141session_x11_req(Session *s)
2142{
8dcd9d5c 2143 int success;
0b242b12 2144
d08341e6 2145 if (s->auth_proto != NULL || s->auth_data != NULL) {
2146 error("session_x11_req: session %d: "
8918b906 2147 "x11 forwarding already active", s->self);
d08341e6 2148 return 0;
2149 }
0b242b12 2150 s->single_connection = packet_get_char();
2151 s->auth_proto = packet_get_string(NULL);
2152 s->auth_data = packet_get_string(NULL);
2153 s->screen = packet_get_int();
95500969 2154 packet_check_eom();
0b242b12 2155
8dcd9d5c 2156 success = session_setup_x11fwd(s);
2157 if (!success) {
0b242b12 2158 xfree(s->auth_proto);
2159 xfree(s->auth_data);
1500bcdd 2160 s->auth_proto = NULL;
2161 s->auth_data = NULL;
0b242b12 2162 }
8dcd9d5c 2163 return success;
0b242b12 2164}
2165
396c147e 2166static int
38c295d6 2167session_shell_req(Session *s)
2168{
95500969 2169 packet_check_eom();
c6dca55e 2170 return do_exec(s, NULL) == 0;
38c295d6 2171}
2172
396c147e 2173static int
38c295d6 2174session_exec_req(Session *s)
2175{
c6dca55e 2176 u_int len, success;
2177
38c295d6 2178 char *command = packet_get_string(&len);
95500969 2179 packet_check_eom();
c6dca55e 2180 success = do_exec(s, command) == 0;
c95add71 2181 xfree(command);
c6dca55e 2182 return success;
38c295d6 2183}
2184
16a79097 2185static int
2186session_break_req(Session *s)
2187{
16a79097 2188
f6be21a0 2189 packet_get_int(); /* ignored */
16a79097 2190 packet_check_eom();
2191
c6dca55e 2192 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
16a79097 2193 return 0;
16a79097 2194 return 1;
2195}
2196
61a2c1da 2197static int
2198session_env_req(Session *s)
2199{
2200 char *name, *val;
2201 u_int name_len, val_len, i;
2202
2203 name = packet_get_string(&name_len);
2204 val = packet_get_string(&val_len);
2205 packet_check_eom();
2206
2207 /* Don't set too many environment variables */
2208 if (s->num_env > 128) {
2209 debug2("Ignoring env request %s: too many env vars", name);
2210 goto fail;
2211 }
2212
2213 for (i = 0; i < options.num_accept_env; i++) {
2214 if (match_pattern(name, options.accept_env[i])) {
2215 debug2("Setting env %d: %s=%s", s->num_env, name, val);
c5d10563 2216 s->env = xrealloc(s->env, s->num_env + 1,
2217 sizeof(*s->env));
61a2c1da 2218 s->env[s->num_env].name = name;
2219 s->env[s->num_env].val = val;
2220 s->num_env++;
2221 return (1);
2222 }
2223 }
2224 debug2("Ignoring env request %s: disallowed name", name);
2225
2226 fail:
2227 xfree(name);
2228 xfree(val);
2229 return (0);
2230}
2231
396c147e 2232static int
fa08c86b 2233session_auth_agent_req(Session *s)
2234{
2235 static int called = 0;
95500969 2236 packet_check_eom();
43c3f85c 2237 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
d343d900 2238 debug("session_auth_agent_req: no_agent_forwarding_flag");
2239 return 0;
2240 }
fa08c86b 2241 if (called) {
2242 return 0;
2243 } else {
2244 called = 1;
2245 return auth_input_request_forwarding(s->pw);
2246 }
2247}
2248
7899c98f 2249int
2250session_input_channel_req(Channel *c, const char *rtype)
e78a59f5 2251{
e78a59f5 2252 int success = 0;
e78a59f5 2253 Session *s;
e78a59f5 2254
7899c98f 2255 if ((s = session_by_channel(c->self)) == NULL) {
bbe88b6d 2256 logit("session_input_channel_req: no session %d req %.100s",
7899c98f 2257 c->self, rtype);
2258 return 0;
2259 }
2260 debug("session_input_channel_req: session %d req %s", s->self, rtype);
e78a59f5 2261
2262 /*
e5d7a405 2263 * a session is in LARVAL state until a shell, a command
2264 * or a subsystem is executed
e78a59f5 2265 */
2266 if (c->type == SSH_CHANNEL_LARVAL) {
2267 if (strcmp(rtype, "shell") == 0) {
38c295d6 2268 success = session_shell_req(s);
e78a59f5 2269 } else if (strcmp(rtype, "exec") == 0) {
38c295d6 2270 success = session_exec_req(s);
e78a59f5 2271 } else if (strcmp(rtype, "pty-req") == 0) {
803c4226 2272 success = session_pty_req(s);
0b242b12 2273 } else if (strcmp(rtype, "x11-req") == 0) {
2274 success = session_x11_req(s);
fa08c86b 2275 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2276 success = session_auth_agent_req(s);
0b242b12 2277 } else if (strcmp(rtype, "subsystem") == 0) {
2278 success = session_subsystem_req(s);
61a2c1da 2279 } else if (strcmp(rtype, "env") == 0) {
2280 success = session_env_req(s);
e78a59f5 2281 }
2282 }
2283 if (strcmp(rtype, "window-change") == 0) {
2284 success = session_window_change_req(s);
c6c76c99 2285 } else if (strcmp(rtype, "break") == 0) {
2286 success = session_break_req(s);
e78a59f5 2287 }
c6c76c99 2288
7899c98f 2289 return success;
e78a59f5 2290}
2291
2292void
b3784859 2293session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
e78a59f5 2294{
2295 if (!compat20)
2296 fatal("session_set_fds: called for proto != 2.0");
2297 /*
2298 * now that have a child and a pipe to the child,
2299 * we can activate our channel and register the fd's
2300 */
2301 if (s->chanid == -1)
2302 fatal("no channel for session %d", s->self);
2303 channel_set_fds(s->chanid,
2304 fdout, fdin, fderr,
a22aff1f 2305 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
b3784859 2306 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
e78a59f5 2307}
2308
86066315 2309/*
2310 * Function to perform pty cleanup. Also called if we get aborted abnormally
2311 * (e.g., due to a dropped connection).
2312 */
1853d1ef 2313void
2362db19 2314session_pty_cleanup2(Session *s)
7368a6c8 2315{
86066315 2316 if (s == NULL) {
2317 error("session_pty_cleanup: no session");
2318 return;
2319 }
2320 if (s->ttyfd == -1)
7368a6c8 2321 return;
2322
0725ea77 2323 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
7368a6c8 2324
7368a6c8 2325 /* Record that the user has logged out. */
86066315 2326 if (s->pid != 0)
f3837bc6 2327 record_logout(s->pid, s->tty, s->pw->pw_name);
7368a6c8 2328
2329 /* Release the pseudo-tty. */
1853d1ef 2330 if (getuid() == 0)
2331 pty_release(s->tty);
7368a6c8 2332
2333 /*
2334 * Close the server side of the socket pairs. We must do this after
2335 * the pty cleanup, so that another process doesn't get this pty
2336 * while we're still cleaning up.
2337 */
c6dca55e 2338 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2339 error("close(s->ptymaster/%d): %s",
2340 s->ptymaster, strerror(errno));
efcc9957 2341
2342 /* unlink pty from session */
2343 s->ttyfd = -1;
7368a6c8 2344}
e78a59f5 2345
1853d1ef 2346void
2362db19 2347session_pty_cleanup(Session *s)
1853d1ef 2348{
2362db19 2349 PRIVSEP(session_pty_cleanup2(s));
1853d1ef 2350}
2351
6c723e7c 2352static char *
2353sig2name(int sig)
2354{
2355#define SSH_SIG(x) if (sig == SIG ## x) return #x
2356 SSH_SIG(ABRT);
2357 SSH_SIG(ALRM);
2358 SSH_SIG(FPE);
2359 SSH_SIG(HUP);
2360 SSH_SIG(ILL);
2361 SSH_SIG(INT);
2362 SSH_SIG(KILL);
2363 SSH_SIG(PIPE);
2364 SSH_SIG(QUIT);
2365 SSH_SIG(SEGV);
2366 SSH_SIG(TERM);
2367 SSH_SIG(USR1);
2368 SSH_SIG(USR2);
2369#undef SSH_SIG
2370 return "SIG@openssh.com";
2371}
2372
d08341e6 2373static void
2374session_close_x11(int id)
2375{
2376 Channel *c;
2377
b872f7f0 2378 if ((c = channel_by_id(id)) == NULL) {
d08341e6 2379 debug("session_close_x11: x11 channel %d missing", id);
2380 } else {
2381 /* Detach X11 listener */
2382 debug("session_close_x11: detach x11 channel %d", id);
2383 channel_cancel_cleanup(id);
2384 if (c->ostate != CHAN_OUTPUT_CLOSED)
2385 chan_mark_dead(c);
2386 }
2387}
2388
2389static void
2390session_close_single_x11(int id, void *arg)
2391{
2392 Session *s;
2393 u_int i;
2394
2395 debug3("session_close_single_x11: channel %d", id);
2396 channel_cancel_cleanup(id);
803c4226 2397 if ((s = session_by_x11_channel(id)) == NULL)
d08341e6 2398 fatal("session_close_single_x11: no x11 channel %d", id);
2399 for (i = 0; s->x11_chanids[i] != -1; i++) {
2400 debug("session_close_single_x11: session %d: "
2401 "closing channel %d", s->self, s->x11_chanids[i]);
2402 /*
2403 * The channel "id" is already closing, but make sure we
2404 * close all of its siblings.
2405 */
2406 if (s->x11_chanids[i] != id)
2407 session_close_x11(s->x11_chanids[i]);
2408 }
2409 xfree(s->x11_chanids);
2410 s->x11_chanids = NULL;
2411 if (s->display) {
2412 xfree(s->display);
2413 s->display = NULL;
2414 }
2415 if (s->auth_proto) {
2416 xfree(s->auth_proto);
2417 s->auth_proto = NULL;
2418 }
2419 if (s->auth_data) {
2420 xfree(s->auth_data);
2421 s->auth_data = NULL;
2422 }
2423 if (s->auth_display) {
2424 xfree(s->auth_display);
2425 s->auth_display = NULL;
2426 }
2427}
2428
396c147e 2429static void
e78a59f5 2430session_exit_message(Session *s, int status)
2431{
2432 Channel *c;
5a4ae906 2433
2434 if ((c = channel_lookup(s->chanid)) == NULL)
86066315 2435 fatal("session_exit_message: session %d: no channel %d",
e78a59f5 2436 s->self, s->chanid);
c457707e 2437 debug("session_exit_message: session %d channel %d pid %ld",
2438 s->self, s->chanid, (long)s->pid);
e78a59f5 2439
2440 if (WIFEXITED(status)) {
5a4ae906 2441 channel_request_start(s->chanid, "exit-status", 0);
e78a59f5 2442 packet_put_int(WEXITSTATUS(status));
2443 packet_send();
2444 } else if (WIFSIGNALED(status)) {
5a4ae906 2445 channel_request_start(s->chanid, "exit-signal", 0);
6c723e7c 2446 packet_put_cstring(sig2name(WTERMSIG(status)));
a64009ad 2447#ifdef WCOREDUMP
e2875d9a 2448 packet_put_char(WCOREDUMP(status)? 1 : 0);
a64009ad 2449#else /* WCOREDUMP */
2450 packet_put_char(0);
2451#endif /* WCOREDUMP */
e78a59f5 2452 packet_put_cstring("");
2453 packet_put_cstring("");
2454 packet_send();
2455 } else {
2456 /* Some weird exit cause. Just exit. */
2457 packet_disconnect("wait returned status %04x.", status);
2458 }
2459
2460 /* disconnect channel */
2461 debug("session_exit_message: release channel %d", s->chanid);
8cd0437d 2462
2463 /*
2464 * Adjust cleanup callback attachment to send close messages when
b4bbf172 2465 * the channel gets EOF. The session will be then be closed
8cd0437d 2466 * by session_close_by_channel when the childs close their fds.
2467 */
2468 channel_register_cleanup(c->self, session_close_by_channel, 1);
2469
9da5c3c9 2470 /*
2471 * emulate a write failure with 'chan_write_failed', nobody will be
2472 * interested in data we write.
2473 * Note that we must not call 'chan_read_failed', since there could
2474 * be some more data waiting in the pipe.
2475 */
0b242b12 2476 if (c->ostate != CHAN_OUTPUT_CLOSED)
2477 chan_write_failed(c);
e78a59f5 2478}
2479
1853d1ef 2480void
86066315 2481session_close(Session *s)
e78a59f5 2482{
2ceb8101 2483 u_int i;
61a2c1da 2484
c457707e 2485 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2362db19 2486 if (s->ttyfd != -1)
86066315 2487 session_pty_cleanup(s);
e78a59f5 2488 if (s->term)
2489 xfree(s->term);
2490 if (s->display)
2491 xfree(s->display);
d08341e6 2492 if (s->x11_chanids)
2493 xfree(s->x11_chanids);
f9314d9a 2494 if (s->auth_display)
2495 xfree(s->auth_display);
e78a59f5 2496 if (s->auth_data)
2497 xfree(s->auth_data);
2498 if (s->auth_proto)
2499 xfree(s->auth_proto);
0875ae22 2500 if (s->env != NULL) {
2501 for (i = 0; i < s->num_env; i++) {
2502 xfree(s->env[i].name);
2503 xfree(s->env[i].val);
2504 }
61a2c1da 2505 xfree(s->env);
0875ae22 2506 }
1d1ffb87 2507 session_proctitle(s);
c6dca55e 2508 session_unused(s->self);
e78a59f5 2509}
2510
2511void
2512session_close_by_pid(pid_t pid, int status)
2513{
2514 Session *s = session_by_pid(pid);
2515 if (s == NULL) {
c457707e 2516 debug("session_close_by_pid: no session for pid %ld",
2517 (long)pid);
e78a59f5 2518 return;
2519 }
2520 if (s->chanid != -1)
2521 session_exit_message(s, status);
8cd0437d 2522 if (s->ttyfd != -1)
2523 session_pty_cleanup(s);
4c721c3d 2524 s->pid = 0;
e78a59f5 2525}
2526
2527/*
2528 * this is called when a channel dies before
2529 * the session 'child' itself dies
2530 */
2531void
2532session_close_by_channel(int id, void *arg)
2533{
2534 Session *s = session_by_channel(id);
8cd0437d 2535 u_int i;
d08341e6 2536
e78a59f5 2537 if (s == NULL) {
418e724c 2538 debug("session_close_by_channel: no session for id %d", id);
e78a59f5 2539 return;
2540 }
c457707e 2541 debug("session_close_by_channel: channel %d child %ld",
2542 id, (long)s->pid);
d5f24f94 2543 if (s->pid != 0) {
418e724c 2544 debug("session_close_by_channel: channel %d: has child", id);
efcc9957 2545 /*
2546 * delay detach of session, but release pty, since
2547 * the fd's to the child are already closed
2548 */
2362db19 2549 if (s->ttyfd != -1)
efcc9957 2550 session_pty_cleanup(s);
418e724c 2551 return;
e78a59f5 2552 }
418e724c 2553 /* detach by removing callback */
2554 channel_cancel_cleanup(s->chanid);
8cd0437d 2555
2556 /* Close any X11 listeners associated with this session */
2557 if (s->x11_chanids != NULL) {
2558 for (i = 0; s->x11_chanids[i] != -1; i++) {
2559 session_close_x11(s->x11_chanids[i]);
2560 s->x11_chanids[i] = -1;
2561 }
2562 }
2563
418e724c 2564 s->chanid = -1;
d5f24f94 2565 session_close(s);
2566}
2567
2568void
1853d1ef 2569session_destroy_all(void (*closefunc)(Session *))
d5f24f94 2570{
2571 int i;
c6dca55e 2572 for (i = 0; i < sessions_nalloc; i++) {
d5f24f94 2573 Session *s = &sessions[i];
1853d1ef 2574 if (s->used) {
2575 if (closefunc != NULL)
2576 closefunc(s);
2577 else
2578 session_close(s);
2579 }
d5f24f94 2580 }
e78a59f5 2581}
2582
396c147e 2583static char *
1d1ffb87 2584session_tty_list(void)
2585{
2586 static char buf[1024];
2587 int i;
d0104542 2588 char *cp;
2589
1d1ffb87 2590 buf[0] = '\0';
c6dca55e 2591 for (i = 0; i < sessions_nalloc; i++) {
1d1ffb87 2592 Session *s = &sessions[i];
2593 if (s->used && s->ttyfd != -1) {
b6453d99 2594
d0104542 2595 if (strncmp(s->tty, "/dev/", 5) != 0) {
2596 cp = strrchr(s->tty, '/');
2597 cp = (cp == NULL) ? s->tty : cp + 1;
2598 } else
2599 cp = s->tty + 5;
b6453d99 2600
1d1ffb87 2601 if (buf[0] != '\0')
2602 strlcat(buf, ",", sizeof buf);
d0104542 2603 strlcat(buf, cp, sizeof buf);
1d1ffb87 2604 }
2605 }
2606 if (buf[0] == '\0')
2607 strlcpy(buf, "notty", sizeof buf);
2608 return buf;
2609}
2610
2611void
2612session_proctitle(Session *s)
2613{
2614 if (s->pw == NULL)
2615 error("no user for session %d", s->self);
2616 else
2617 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2618}
2619
8dcd9d5c 2620int
2621session_setup_x11fwd(Session *s)
2622{
8dcd9d5c 2623 struct stat st;
c9d0ad9b 2624 char display[512], auth_display[512];
2625 char hostname[MAXHOSTNAMELEN];
d08341e6 2626 u_int i;
8dcd9d5c 2627
2628 if (no_x11_forwarding_flag) {
2629 packet_send_debug("X11 forwarding disabled in user configuration file.");
2630 return 0;
2631 }
2632 if (!options.x11_forwarding) {
2633 debug("X11 forwarding disabled in server configuration file.");
2634 return 0;
2635 }
2636 if (!options.xauth_location ||
2637 (stat(options.xauth_location, &st) == -1)) {
2638 packet_send_debug("No xauth program; cannot forward with spoofing.");
2639 return 0;
2640 }
ff027d84 2641 if (options.use_login) {
2642 packet_send_debug("X11 forwarding disabled; "
2643 "not compatible with UseLogin=yes.");
2644 return 0;
2645 }
b44de2b1 2646 if (s->display != NULL) {
8dcd9d5c 2647 debug("X11 display already set.");
2648 return 0;
2649 }
57f228e8 2650 if (x11_create_display_inet(options.x11_display_offset,
2651 options.x11_use_localhost, s->single_connection,
d08341e6 2652 &s->display_number, &s->x11_chanids) == -1) {
b44de2b1 2653 debug("x11_create_display_inet failed.");
8dcd9d5c 2654 return 0;
2655 }
d08341e6 2656 for (i = 0; s->x11_chanids[i] != -1; i++) {
2657 channel_register_cleanup(s->x11_chanids[i],
8cd0437d 2658 session_close_single_x11, 0);
d08341e6 2659 }
c9d0ad9b 2660
2661 /* Set up a suitable value for the DISPLAY variable. */
2662 if (gethostname(hostname, sizeof(hostname)) < 0)
2663 fatal("gethostname: %.100s", strerror(errno));
2664 /*
2665 * auth_display must be used as the displayname when the
2666 * authorization entry is added with xauth(1). This will be
2667 * different than the DISPLAY string for localhost displays.
2668 */
e6e573bd 2669 if (options.x11_use_localhost) {
57f228e8 2670 snprintf(display, sizeof display, "localhost:%u.%u",
c9d0ad9b 2671 s->display_number, s->screen);
57f228e8 2672 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
f9314d9a 2673 s->display_number, s->screen);
c9d0ad9b 2674 s->display = xstrdup(display);
f9314d9a 2675 s->auth_display = xstrdup(auth_display);
c9d0ad9b 2676 } else {
2677#ifdef IPADDR_IN_DISPLAY
2678 struct hostent *he;
2679 struct in_addr my_addr;
2680
2681 he = gethostbyname(hostname);
2682 if (he == NULL) {
2683 error("Can't get IP address for X11 DISPLAY.");
2684 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2685 return 0;
2686 }
2687 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
57f228e8 2688 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
c9d0ad9b 2689 s->display_number, s->screen);
2690#else
57f228e8 2691 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
c9d0ad9b 2692 s->display_number, s->screen);
2693#endif
2694 s->display = xstrdup(display);
f9314d9a 2695 s->auth_display = xstrdup(display);
c9d0ad9b 2696 }
2697
8dcd9d5c 2698 return 1;
2699}
2700
396c147e 2701static void
59c97189 2702do_authenticated2(Authctxt *authctxt)
e78a59f5 2703{
57156994 2704 server_loop2(authctxt);
2362db19 2705}
2706
2707void
2708do_cleanup(Authctxt *authctxt)
2709{
2710 static int called = 0;
2711
2712 debug("do_cleanup");
2713
2714 /* no cleanup if we're in the child for login shell */
2715 if (is_child)
2716 return;
2717
2718 /* avoid double cleanup */
2719 if (called)
2720 return;
2721 called = 1;
2722
8d5728b7 2723 if (authctxt == NULL)
2362db19 2724 return;
8d5728b7 2725
2726#ifdef USE_PAM
2727 if (options.use_pam) {
2728 sshpam_cleanup();
2729 sshpam_thread_cleanup();
2730 }
2731#endif
2732
2733 if (!authctxt->authenticated)
2734 return;
2735
2362db19 2736#ifdef KRB5
2737 if (options.kerberos_ticket_cleanup &&
2738 authctxt->krb5_ctx)
2739 krb5_cleanup_proc(authctxt);
7364bd04 2740#endif
2362db19 2741
2742#ifdef GSSAPI
2743 if (compat20 && options.gss_cleanup_creds)
2744 ssh_gssapi_cleanup_creds();
2745#endif
2746
2747 /* remove agent socket */
2748 auth_sock_cleanup_proc(authctxt->pw);
2749
2750 /*
2751 * Cleanup ptys/utmp only if privsep is disabled,
2752 * or if running in monitor.
2753 */
2754 if (!use_privsep || mm_is_monitor())
2755 session_destroy_all(session_pty_cleanup2);
e78a59f5 2756}
This page took 0.90883 seconds and 5 git commands to generate.