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