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