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