1 /* $OpenBSD: session.c,v 1.207 2006/07/08 21:48:53 stevesk Exp $ */
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
12 * SSH2 support by Markus Friedl.
13 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/types.h>
39 #ifdef HAVE_SYS_STAT_H
40 # include <sys/stat.h>
42 #include <sys/socket.h>
52 #include <arpa/inet.h>
67 #include "auth-options.h"
68 #include "pathnames.h"
72 #include "serverloop.h"
76 #include "monitor_wrap.h"
78 #if defined(KRB5) && defined(USE_AFS)
88 Session
*session_new(void);
89 void session_set_fds(Session
*, int, int, int);
90 void session_pty_cleanup(Session
*);
91 void session_proctitle(Session
*);
92 int session_setup_x11fwd(Session
*);
93 void do_exec_pty(Session
*, const char *);
94 void do_exec_no_pty(Session
*, const char *);
95 void do_exec(Session
*, const char *);
96 void do_login(Session
*, const char *);
97 #ifdef LOGIN_NEEDS_UTMPX
98 static void do_pre_login(Session
*s
);
100 void do_child(Session
*, const char *);
102 int check_quietlogin(Session
*, const char *);
104 static void do_authenticated1(Authctxt
*);
105 static void do_authenticated2(Authctxt
*);
107 static int session_pty_req(Session
*);
110 extern ServerOptions options
;
111 extern char *__progname
;
112 extern int log_stderr
;
113 extern int debug_flag
;
114 extern u_int utmp_len
;
115 extern int startup_pipe
;
116 extern void destroy_sensitive_data(void);
117 extern Buffer loginmsg
;
119 /* original command from peer. */
120 const char *original_command
= NULL
;
123 #define MAX_SESSIONS 10
124 Session sessions
[MAX_SESSIONS
];
126 #ifdef HAVE_LOGIN_CAP
130 static int is_child
= 0;
132 /* Name and directory of socket for authentication agent forwarding. */
133 static char *auth_sock_name
= NULL
;
134 static char *auth_sock_dir
= NULL
;
136 /* removes the agent forwarding socket */
139 auth_sock_cleanup_proc(struct passwd
*pw
)
141 if (auth_sock_name
!= NULL
) {
142 temporarily_use_uid(pw
);
143 unlink(auth_sock_name
);
144 rmdir(auth_sock_dir
);
145 auth_sock_name
= NULL
;
151 auth_input_request_forwarding(struct passwd
* pw
)
155 struct sockaddr_un sunaddr
;
157 if (auth_sock_name
!= NULL
) {
158 error("authentication forwarding requested twice.");
162 /* Temporarily drop privileged uid for mkdir/bind. */
163 temporarily_use_uid(pw
);
165 /* Allocate a buffer for the socket name, and format the name. */
166 auth_sock_name
= xmalloc(MAXPATHLEN
);
167 auth_sock_dir
= xmalloc(MAXPATHLEN
);
168 strlcpy(auth_sock_dir
, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN
);
170 /* Create private directory for socket */
171 if (mkdtemp(auth_sock_dir
) == NULL
) {
172 packet_send_debug("Agent forwarding disabled: "
173 "mkdtemp() failed: %.100s", strerror(errno
));
175 xfree(auth_sock_name
);
176 xfree(auth_sock_dir
);
177 auth_sock_name
= NULL
;
178 auth_sock_dir
= NULL
;
181 snprintf(auth_sock_name
, MAXPATHLEN
, "%s/agent.%ld",
182 auth_sock_dir
, (long) getpid());
184 /* Create the socket. */
185 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
187 packet_disconnect("socket: %.100s", strerror(errno
));
189 /* Bind it to the name. */
190 memset(&sunaddr
, 0, sizeof(sunaddr
));
191 sunaddr
.sun_family
= AF_UNIX
;
192 strlcpy(sunaddr
.sun_path
, auth_sock_name
, sizeof(sunaddr
.sun_path
));
194 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) < 0)
195 packet_disconnect("bind: %.100s", strerror(errno
));
197 /* Restore the privileged uid. */
200 /* Start listening on the socket. */
201 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0)
202 packet_disconnect("listen: %.100s", strerror(errno
));
204 /* Allocate a channel for the authentication agent socket. */
205 nc
= channel_new("auth socket",
206 SSH_CHANNEL_AUTH_SOCKET
, sock
, sock
, -1,
207 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
208 0, "auth socket", 1);
209 strlcpy(nc
->path
, auth_sock_name
, sizeof(nc
->path
));
214 display_loginmsg(void)
216 if (buffer_len(&loginmsg
) > 0) {
217 buffer_append(&loginmsg
, "\0", 1);
218 printf("%s", (char *)buffer_ptr(&loginmsg
));
219 buffer_clear(&loginmsg
);
224 do_authenticated(Authctxt
*authctxt
)
226 setproctitle("%s", authctxt
->pw
->pw_name
);
228 /* setup the channel layer */
229 if (!no_port_forwarding_flag
&& options
.allow_tcp_forwarding
)
230 channel_permit_all_opens();
233 do_authenticated2(authctxt
);
235 do_authenticated1(authctxt
);
237 do_cleanup(authctxt
);
241 * Prepares for an interactive session. This is called after the user has
242 * been successfully authenticated. During this message exchange, pseudo
243 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
244 * are requested, etc.
247 do_authenticated1(Authctxt
*authctxt
)
251 int success
, type
, screen_flag
;
252 int enable_compression_after_reply
= 0;
253 u_int proto_len
, data_len
, dlen
, compression_level
= 0;
257 error("no more sessions");
260 s
->authctxt
= authctxt
;
261 s
->pw
= authctxt
->pw
;
264 * We stay in this loop until the client requests to execute a shell
270 /* Get a packet from the client. */
271 type
= packet_read();
273 /* Process the packet. */
275 case SSH_CMSG_REQUEST_COMPRESSION
:
276 compression_level
= packet_get_int();
278 if (compression_level
< 1 || compression_level
> 9) {
279 packet_send_debug("Received invalid compression level %d.",
283 if (options
.compression
== COMP_NONE
) {
284 debug2("compression disabled");
287 /* Enable compression after we have responded with SUCCESS. */
288 enable_compression_after_reply
= 1;
292 case SSH_CMSG_REQUEST_PTY
:
293 success
= session_pty_req(s
);
296 case SSH_CMSG_X11_REQUEST_FORWARDING
:
297 s
->auth_proto
= packet_get_string(&proto_len
);
298 s
->auth_data
= packet_get_string(&data_len
);
300 screen_flag
= packet_get_protocol_flags() &
301 SSH_PROTOFLAG_SCREEN_NUMBER
;
302 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag
);
304 if (packet_remaining() == 4) {
306 debug2("Buggy client: "
307 "X11 screen flag missing");
308 s
->screen
= packet_get_int();
313 success
= session_setup_x11fwd(s
);
315 xfree(s
->auth_proto
);
317 s
->auth_proto
= NULL
;
322 case SSH_CMSG_AGENT_REQUEST_FORWARDING
:
323 if (no_agent_forwarding_flag
|| compat13
) {
324 debug("Authentication agent forwarding not permitted for this authentication.");
327 debug("Received authentication agent forwarding request.");
328 success
= auth_input_request_forwarding(s
->pw
);
331 case SSH_CMSG_PORT_FORWARD_REQUEST
:
332 if (no_port_forwarding_flag
) {
333 debug("Port forwarding not permitted for this authentication.");
336 if (!options
.allow_tcp_forwarding
) {
337 debug("Port forwarding not permitted.");
340 debug("Received TCP/IP port forwarding request.");
341 channel_input_port_forward_request(s
->pw
->pw_uid
== 0, options
.gateway_ports
);
345 case SSH_CMSG_MAX_PACKET_SIZE
:
346 if (packet_set_maxsize(packet_get_int()) > 0)
350 case SSH_CMSG_EXEC_SHELL
:
351 case SSH_CMSG_EXEC_CMD
:
352 if (type
== SSH_CMSG_EXEC_CMD
) {
353 command
= packet_get_string(&dlen
);
354 debug("Exec command '%.500s'", command
);
366 * Any unknown messages in this phase are ignored,
367 * and a failure message is returned.
369 logit("Unknown packet type received after authentication: %d", type
);
371 packet_start(success
? SSH_SMSG_SUCCESS
: SSH_SMSG_FAILURE
);
375 /* Enable compression now that we have replied if appropriate. */
376 if (enable_compression_after_reply
) {
377 enable_compression_after_reply
= 0;
378 packet_start_compression(compression_level
);
384 * This is called to fork and execute a command when we have no tty. This
385 * will call do_child from the child, and server_loop from the parent after
386 * setting up file descriptors and such.
389 do_exec_no_pty(Session
*s
, const char *command
)
394 int pin
[2], pout
[2], perr
[2];
395 /* Allocate pipes for communicating with the program. */
396 if (pipe(pin
) < 0 || pipe(pout
) < 0 || pipe(perr
) < 0)
397 packet_disconnect("Could not create pipes: %.100s",
399 #else /* USE_PIPES */
400 int inout
[2], err
[2];
401 /* Uses socket pairs to communicate with the program. */
402 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, inout
) < 0 ||
403 socketpair(AF_UNIX
, SOCK_STREAM
, 0, err
) < 0)
404 packet_disconnect("Could not create socket pairs: %.100s",
406 #endif /* USE_PIPES */
408 fatal("do_exec_no_pty: no session");
410 session_proctitle(s
);
413 if (options
.use_pam
&& !use_privsep
)
417 /* Fork the child. */
418 if ((pid
= fork()) == 0) {
421 /* Child. Reinitialize the log since the pid has changed. */
422 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
425 * Create a new session and process group since the 4.4BSD
426 * setlogin() affects the entire process group.
429 error("setsid failed: %.100s", strerror(errno
));
433 * Redirect stdin. We close the parent side of the socket
434 * pair, and make the child side the standard input.
437 if (dup2(pin
[0], 0) < 0)
438 perror("dup2 stdin");
441 /* Redirect stdout. */
443 if (dup2(pout
[1], 1) < 0)
444 perror("dup2 stdout");
447 /* Redirect stderr. */
449 if (dup2(perr
[1], 2) < 0)
450 perror("dup2 stderr");
452 #else /* USE_PIPES */
454 * Redirect stdin, stdout, and stderr. Stdin and stdout will
455 * use the same socket, as some programs (particularly rdist)
456 * seem to depend on it.
460 if (dup2(inout
[0], 0) < 0) /* stdin */
461 perror("dup2 stdin");
462 if (dup2(inout
[0], 1) < 0) /* stdout. Note: same socket as stdin. */
463 perror("dup2 stdout");
464 if (dup2(err
[0], 2) < 0) /* stderr */
465 perror("dup2 stderr");
466 #endif /* USE_PIPES */
469 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
472 /* Do processing for the child (exec command etc). */
473 do_child(s
, command
);
477 signal(WJSIGNAL
, cray_job_termination_handler
);
481 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
484 packet_disconnect("fork failed: %.100s", strerror(errno
));
486 /* Set interactive/non-interactive mode. */
487 packet_set_interactive(s
->display
!= NULL
);
489 /* We are the parent. Close the child sides of the pipes. */
495 if (s
->is_subsystem
) {
499 session_set_fds(s
, pin
[1], pout
[0], perr
[0]);
501 /* Enter the interactive session. */
502 server_loop(pid
, pin
[1], pout
[0], perr
[0]);
503 /* server_loop has closed pin[1], pout[0], and perr[0]. */
505 #else /* USE_PIPES */
506 /* We are the parent. Close the child sides of the socket pairs. */
511 * Clear loginmsg, since it's the child's responsibility to display
512 * it to the user, otherwise multiple sessions may accumulate
513 * multiple copies of the login messages.
515 buffer_clear(&loginmsg
);
518 * Enter the interactive session. Note: server_loop must be able to
519 * handle the case that fdin and fdout are the same.
522 session_set_fds(s
, inout
[1], inout
[1], s
->is_subsystem
? -1 : err
[1]);
524 server_loop(pid
, inout
[1], inout
[1], err
[1]);
525 /* server_loop has closed inout[1] and err[1]. */
527 #endif /* USE_PIPES */
531 * This is called to fork and execute a command when we have a tty. This
532 * will call do_child from the child, and server_loop from the parent after
533 * setting up file descriptors, controlling tty, updating wtmp, utmp,
534 * lastlog, and other such operations.
537 do_exec_pty(Session
*s
, const char *command
)
539 int fdout
, ptyfd
, ttyfd
, ptymaster
;
543 fatal("do_exec_pty: no session");
548 if (options
.use_pam
) {
549 do_pam_set_tty(s
->tty
);
555 /* Fork the child. */
556 if ((pid
= fork()) == 0) {
559 /* Child. Reinitialize the log because the pid has changed. */
560 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
561 /* Close the master side of the pseudo tty. */
564 /* Make the pseudo tty our controlling tty. */
565 pty_make_controlling_tty(&ttyfd
, s
->tty
);
567 /* Redirect stdin/stdout/stderr from the pseudo tty. */
568 if (dup2(ttyfd
, 0) < 0)
569 error("dup2 stdin: %s", strerror(errno
));
570 if (dup2(ttyfd
, 1) < 0)
571 error("dup2 stdout: %s", strerror(errno
));
572 if (dup2(ttyfd
, 2) < 0)
573 error("dup2 stderr: %s", strerror(errno
));
575 /* Close the extra descriptor for the pseudo tty. */
578 /* record login, etc. similar to login(1) */
580 if (!(options
.use_login
&& command
== NULL
)) {
582 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
584 do_login(s
, command
);
586 # ifdef LOGIN_NEEDS_UTMPX
592 /* Do common processing for the child, such as execing the command. */
593 do_child(s
, command
);
597 signal(WJSIGNAL
, cray_job_termination_handler
);
601 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
604 packet_disconnect("fork failed: %.100s", strerror(errno
));
607 /* Parent. Close the slave side of the pseudo tty. */
611 * Create another descriptor of the pty master side for use as the
612 * standard input. We could use the original descriptor, but this
613 * simplifies code in server_loop. The descriptor is bidirectional.
617 packet_disconnect("dup #1 failed: %.100s", strerror(errno
));
619 /* we keep a reference to the pty master */
620 ptymaster
= dup(ptyfd
);
622 packet_disconnect("dup #2 failed: %.100s", strerror(errno
));
623 s
->ptymaster
= ptymaster
;
625 /* Enter interactive session. */
626 packet_set_interactive(1);
628 session_set_fds(s
, ptyfd
, fdout
, -1);
630 server_loop(pid
, ptyfd
, fdout
, -1);
631 /* server_loop _has_ closed ptyfd and fdout. */
635 #ifdef LOGIN_NEEDS_UTMPX
637 do_pre_login(Session
*s
)
640 struct sockaddr_storage from
;
641 pid_t pid
= getpid();
644 * Get IP address of client. If the connection is not a socket, let
645 * the address be 0.0.0.0.
647 memset(&from
, 0, sizeof(from
));
648 fromlen
= sizeof(from
);
649 if (packet_connection_is_on_socket()) {
650 if (getpeername(packet_get_connection_in(),
651 (struct sockaddr
*)&from
, &fromlen
) < 0) {
652 debug("getpeername: %.100s", strerror(errno
));
657 record_utmp_only(pid
, s
->tty
, s
->pw
->pw_name
,
658 get_remote_name_or_ip(utmp_len
, options
.use_dns
),
659 (struct sockaddr
*)&from
, fromlen
);
664 * This is called to fork and execute a command. If another command is
665 * to be forced, execute that instead.
668 do_exec(Session
*s
, const char *command
)
670 if (forced_command
) {
671 original_command
= command
;
672 command
= forced_command
;
673 debug("Forced command '%.900s'", command
);
676 #ifdef SSH_AUDIT_EVENTS
678 PRIVSEP(audit_run_command(command
));
679 else if (s
->ttyfd
== -1) {
680 char *shell
= s
->pw
->pw_shell
;
682 if (shell
[0] == '\0') /* empty shell means /bin/sh */
684 PRIVSEP(audit_run_command(shell
));
689 do_exec_pty(s
, command
);
691 do_exec_no_pty(s
, command
);
693 original_command
= NULL
;
696 * Clear loginmsg: it's the child's responsibility to display
697 * it to the user, otherwise multiple sessions may accumulate
698 * multiple copies of the login messages.
700 buffer_clear(&loginmsg
);
703 /* administrative, login(1)-like work */
705 do_login(Session
*s
, const char *command
)
708 struct sockaddr_storage from
;
709 struct passwd
* pw
= s
->pw
;
710 pid_t pid
= getpid();
713 * Get IP address of client. If the connection is not a socket, let
714 * the address be 0.0.0.0.
716 memset(&from
, 0, sizeof(from
));
717 fromlen
= sizeof(from
);
718 if (packet_connection_is_on_socket()) {
719 if (getpeername(packet_get_connection_in(),
720 (struct sockaddr
*) & from
, &fromlen
) < 0) {
721 debug("getpeername: %.100s", strerror(errno
));
726 /* Record that there was a login on that tty from the remote host. */
728 record_login(pid
, s
->tty
, pw
->pw_name
, pw
->pw_uid
,
729 get_remote_name_or_ip(utmp_len
,
731 (struct sockaddr
*)&from
, fromlen
);
735 * If password change is needed, do it now.
736 * This needs to occur before the ~/.hushlogin check.
738 if (options
.use_pam
&& !use_privsep
&& s
->authctxt
->force_pwchange
) {
741 s
->authctxt
->force_pwchange
= 0;
742 /* XXX - signal [net] parent to enable forwardings */
746 if (check_quietlogin(s
, command
))
755 * Display the message of the day.
763 if (options
.print_motd
) {
764 #ifdef HAVE_LOGIN_CAP
765 f
= fopen(login_getcapstr(lc
, "welcome", "/etc/motd",
768 f
= fopen("/etc/motd", "r");
771 while (fgets(buf
, sizeof(buf
), f
))
780 * Check for quiet login, either .hushlogin or command given.
783 check_quietlogin(Session
*s
, const char *command
)
786 struct passwd
*pw
= s
->pw
;
789 /* Return 1 if .hushlogin exists or a command given. */
792 snprintf(buf
, sizeof(buf
), "%.200s/.hushlogin", pw
->pw_dir
);
793 #ifdef HAVE_LOGIN_CAP
794 if (login_getcapbool(lc
, "hushlogin", 0) || stat(buf
, &st
) >= 0)
797 if (stat(buf
, &st
) >= 0)
804 * Sets the value of the given variable in the environment. If the variable
805 * already exists, its value is overriden.
808 child_set_env(char ***envp
, u_int
*envsizep
, const char *name
,
816 * If we're passed an uninitialized list, allocate a single null
817 * entry before continuing.
819 if (*envp
== NULL
&& *envsizep
== 0) {
820 *envp
= xmalloc(sizeof(char *));
826 * Find the slot where the value should be stored. If the variable
827 * already exists, we reuse the slot; otherwise we append a new slot
828 * at the end of the array, expanding if necessary.
831 namelen
= strlen(name
);
832 for (i
= 0; env
[i
]; i
++)
833 if (strncmp(env
[i
], name
, namelen
) == 0 && env
[i
][namelen
] == '=')
836 /* Reuse the slot. */
839 /* New variable. Expand if necessary. */
841 if (i
>= envsize
- 1) {
843 fatal("child_set_env: too many env vars");
845 env
= (*envp
) = xrealloc(env
, envsize
, sizeof(char *));
848 /* Need to set the NULL pointer at end of array beyond the new slot. */
852 /* Allocate space and format the variable in the appropriate slot. */
853 env
[i
] = xmalloc(strlen(name
) + 1 + strlen(value
) + 1);
854 snprintf(env
[i
], strlen(name
) + 1 + strlen(value
) + 1, "%s=%s", name
, value
);
858 * Reads environment variables from the given file and adds/overrides them
859 * into the environment. If the file does not exist, this does nothing.
860 * Otherwise, it must consist of empty lines, comments (line starts with '#')
861 * and assignments of the form name=value. No other forms are allowed.
864 read_environment_file(char ***env
, u_int
*envsize
,
865 const char *filename
)
872 f
= fopen(filename
, "r");
876 while (fgets(buf
, sizeof(buf
), f
)) {
878 fatal("Too many lines in environment file %s", filename
);
879 for (cp
= buf
; *cp
== ' ' || *cp
== '\t'; cp
++)
881 if (!*cp
|| *cp
== '#' || *cp
== '\n')
883 if (strchr(cp
, '\n'))
884 *strchr(cp
, '\n') = '\0';
885 value
= strchr(cp
, '=');
887 fprintf(stderr
, "Bad line %u in %.100s\n", lineno
,
892 * Replace the equals sign by nul, and advance value to
897 child_set_env(env
, envsize
, cp
, value
);
902 #ifdef HAVE_ETC_DEFAULT_LOGIN
904 * Return named variable from specified environment, or NULL if not present.
907 child_get_env(char **env
, const char *name
)
913 for (i
=0; env
[i
] != NULL
; i
++)
914 if (strncmp(name
, env
[i
], len
) == 0 && env
[i
][len
] == '=')
915 return(env
[i
] + len
+ 1);
920 * Read /etc/default/login.
921 * We pick up the PATH (or SUPATH for root) and UMASK.
924 read_etc_default_login(char ***env
, u_int
*envsize
, uid_t uid
)
926 char **tmpenv
= NULL
, *var
;
927 u_int i
, tmpenvsize
= 0;
931 * We don't want to copy the whole file to the child's environment,
932 * so we use a temporary environment and copy the variables we're
935 read_environment_file(&tmpenv
, &tmpenvsize
, "/etc/default/login");
941 var
= child_get_env(tmpenv
, "SUPATH");
943 var
= child_get_env(tmpenv
, "PATH");
945 child_set_env(env
, envsize
, "PATH", var
);
947 if ((var
= child_get_env(tmpenv
, "UMASK")) != NULL
)
948 if (sscanf(var
, "%5lo", &mask
) == 1)
951 for (i
= 0; tmpenv
[i
] != NULL
; i
++)
955 #endif /* HAVE_ETC_DEFAULT_LOGIN */
958 copy_environment(char **source
, char ***env
, u_int
*envsize
)
960 char *var_name
, *var_val
;
966 for(i
= 0; source
[i
] != NULL
; i
++) {
967 var_name
= xstrdup(source
[i
]);
968 if ((var_val
= strstr(var_name
, "=")) == NULL
) {
974 debug3("Copy environment: %s=%s", var_name
, var_val
);
975 child_set_env(env
, envsize
, var_name
, var_val
);
982 do_setup_env(Session
*s
, const char *shell
)
986 char **env
, *laddr
, *path
= NULL
;
987 struct passwd
*pw
= s
->pw
;
989 /* Initialize the environment. */
991 env
= xcalloc(envsize
, sizeof(char *));
996 * The Windows environment contains some setting which are
997 * important for a running system. They must not be dropped.
1002 p
= fetch_windows_environment();
1003 copy_environment(p
, &env
, &envsize
);
1004 free_windows_environment(p
);
1009 /* Allow any GSSAPI methods that we've used to alter
1010 * the childs environment as they see fit
1012 ssh_gssapi_do_child(&env
, &envsize
);
1015 if (!options
.use_login
) {
1016 /* Set basic environment. */
1017 for (i
= 0; i
< s
->num_env
; i
++)
1018 child_set_env(&env
, &envsize
, s
->env
[i
].name
,
1021 child_set_env(&env
, &envsize
, "USER", pw
->pw_name
);
1022 child_set_env(&env
, &envsize
, "LOGNAME", pw
->pw_name
);
1024 child_set_env(&env
, &envsize
, "LOGIN", pw
->pw_name
);
1026 child_set_env(&env
, &envsize
, "HOME", pw
->pw_dir
);
1027 #ifdef HAVE_LOGIN_CAP
1028 if (setusercontext(lc
, pw
, pw
->pw_uid
, LOGIN_SETPATH
) < 0)
1029 child_set_env(&env
, &envsize
, "PATH", _PATH_STDPATH
);
1031 child_set_env(&env
, &envsize
, "PATH", getenv("PATH"));
1032 #else /* HAVE_LOGIN_CAP */
1033 # ifndef HAVE_CYGWIN
1035 * There's no standard path on Windows. The path contains
1036 * important components pointing to the system directories,
1037 * needed for loading shared libraries. So the path better
1038 * remains intact here.
1040 # ifdef HAVE_ETC_DEFAULT_LOGIN
1041 read_etc_default_login(&env
, &envsize
, pw
->pw_uid
);
1042 path
= child_get_env(env
, "PATH");
1043 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1044 if (path
== NULL
|| *path
== '\0') {
1045 child_set_env(&env
, &envsize
, "PATH",
1046 s
->pw
->pw_uid
== 0 ?
1047 SUPERUSER_PATH
: _PATH_STDPATH
);
1049 # endif /* HAVE_CYGWIN */
1050 #endif /* HAVE_LOGIN_CAP */
1052 snprintf(buf
, sizeof buf
, "%.200s/%.50s",
1053 _PATH_MAILDIR
, pw
->pw_name
);
1054 child_set_env(&env
, &envsize
, "MAIL", buf
);
1056 /* Normal systems set SHELL by default. */
1057 child_set_env(&env
, &envsize
, "SHELL", shell
);
1060 child_set_env(&env
, &envsize
, "TZ", getenv("TZ"));
1062 /* Set custom environment options from RSA authentication. */
1063 if (!options
.use_login
) {
1064 while (custom_environment
) {
1065 struct envstring
*ce
= custom_environment
;
1068 for (i
= 0; str
[i
] != '=' && str
[i
]; i
++)
1070 if (str
[i
] == '=') {
1072 child_set_env(&env
, &envsize
, str
, str
+ i
+ 1);
1074 custom_environment
= ce
->next
;
1080 /* SSH_CLIENT deprecated */
1081 snprintf(buf
, sizeof buf
, "%.50s %d %d",
1082 get_remote_ipaddr(), get_remote_port(), get_local_port());
1083 child_set_env(&env
, &envsize
, "SSH_CLIENT", buf
);
1085 laddr
= get_local_ipaddr(packet_get_connection_in());
1086 snprintf(buf
, sizeof buf
, "%.50s %d %.50s %d",
1087 get_remote_ipaddr(), get_remote_port(), laddr
, get_local_port());
1089 child_set_env(&env
, &envsize
, "SSH_CONNECTION", buf
);
1092 child_set_env(&env
, &envsize
, "SSH_TTY", s
->tty
);
1094 child_set_env(&env
, &envsize
, "TERM", s
->term
);
1096 child_set_env(&env
, &envsize
, "DISPLAY", s
->display
);
1097 if (original_command
)
1098 child_set_env(&env
, &envsize
, "SSH_ORIGINAL_COMMAND",
1102 if (cray_tmpdir
[0] != '\0')
1103 child_set_env(&env
, &envsize
, "TMPDIR", cray_tmpdir
);
1104 #endif /* _UNICOS */
1107 * Since we clear KRB5CCNAME at startup, if it's set now then it
1108 * must have been set by a native authentication method (eg AIX or
1109 * SIA), so copy it to the child.
1114 if ((cp
= getenv("KRB5CCNAME")) != NULL
)
1115 child_set_env(&env
, &envsize
, "KRB5CCNAME", cp
);
1122 if ((cp
= getenv("AUTHSTATE")) != NULL
)
1123 child_set_env(&env
, &envsize
, "AUTHSTATE", cp
);
1124 read_environment_file(&env
, &envsize
, "/etc/environment");
1128 if (s
->authctxt
->krb5_ccname
)
1129 child_set_env(&env
, &envsize
, "KRB5CCNAME",
1130 s
->authctxt
->krb5_ccname
);
1134 * Pull in any environment variables that may have
1137 if (options
.use_pam
) {
1140 p
= fetch_pam_child_environment();
1141 copy_environment(p
, &env
, &envsize
);
1142 free_pam_environment(p
);
1144 p
= fetch_pam_environment();
1145 copy_environment(p
, &env
, &envsize
);
1146 free_pam_environment(p
);
1148 #endif /* USE_PAM */
1150 if (auth_sock_name
!= NULL
)
1151 child_set_env(&env
, &envsize
, SSH_AUTHSOCKET_ENV_NAME
,
1154 /* read $HOME/.ssh/environment. */
1155 if (options
.permit_user_env
&& !options
.use_login
) {
1156 snprintf(buf
, sizeof buf
, "%.200s/.ssh/environment",
1157 strcmp(pw
->pw_dir
, "/") ? pw
->pw_dir
: "");
1158 read_environment_file(&env
, &envsize
, buf
);
1161 /* dump the environment */
1162 fprintf(stderr
, "Environment:\n");
1163 for (i
= 0; env
[i
]; i
++)
1164 fprintf(stderr
, " %.200s\n", env
[i
]);
1170 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1171 * first in this order).
1174 do_rc_files(Session
*s
, const char *shell
)
1182 s
->display
!= NULL
&& s
->auth_proto
!= NULL
&& s
->auth_data
!= NULL
;
1184 /* ignore _PATH_SSH_USER_RC for subsystems */
1185 if (!s
->is_subsystem
&& (stat(_PATH_SSH_USER_RC
, &st
) >= 0)) {
1186 snprintf(cmd
, sizeof cmd
, "%s -c '%s %s'",
1187 shell
, _PATH_BSHELL
, _PATH_SSH_USER_RC
);
1189 fprintf(stderr
, "Running %s\n", cmd
);
1190 f
= popen(cmd
, "w");
1193 fprintf(f
, "%s %s\n", s
->auth_proto
,
1197 fprintf(stderr
, "Could not run %s\n",
1199 } else if (stat(_PATH_SSH_SYSTEM_RC
, &st
) >= 0) {
1201 fprintf(stderr
, "Running %s %s\n", _PATH_BSHELL
,
1202 _PATH_SSH_SYSTEM_RC
);
1203 f
= popen(_PATH_BSHELL
" " _PATH_SSH_SYSTEM_RC
, "w");
1206 fprintf(f
, "%s %s\n", s
->auth_proto
,
1210 fprintf(stderr
, "Could not run %s\n",
1211 _PATH_SSH_SYSTEM_RC
);
1212 } else if (do_xauth
&& options
.xauth_location
!= NULL
) {
1213 /* Add authority data to .Xauthority if appropriate. */
1216 "Running %.500s remove %.100s\n",
1217 options
.xauth_location
, s
->auth_display
);
1219 "%.500s add %.100s %.100s %.100s\n",
1220 options
.xauth_location
, s
->auth_display
,
1221 s
->auth_proto
, s
->auth_data
);
1223 snprintf(cmd
, sizeof cmd
, "%s -q -",
1224 options
.xauth_location
);
1225 f
= popen(cmd
, "w");
1227 fprintf(f
, "remove %s\n",
1229 fprintf(f
, "add %s %s %s\n",
1230 s
->auth_display
, s
->auth_proto
,
1234 fprintf(stderr
, "Could not run %s\n",
1241 do_nologin(struct passwd
*pw
)
1246 #ifdef HAVE_LOGIN_CAP
1247 if (!login_getcapbool(lc
, "ignorenologin", 0) && pw
->pw_uid
)
1248 f
= fopen(login_getcapstr(lc
, "nologin", _PATH_NOLOGIN
,
1249 _PATH_NOLOGIN
), "r");
1252 f
= fopen(_PATH_NOLOGIN
, "r");
1255 /* /etc/nologin exists. Print its contents and exit. */
1256 logit("User %.100s not allowed because %s exists",
1257 pw
->pw_name
, _PATH_NOLOGIN
);
1258 while (fgets(buf
, sizeof(buf
), f
))
1266 /* Set login name, uid, gid, and groups. */
1268 do_setusercontext(struct passwd
*pw
)
1271 if (getuid() == 0 || geteuid() == 0)
1272 #endif /* HAVE_CYGWIN */
1275 #ifdef HAVE_SETPCRED
1276 if (setpcred(pw
->pw_name
, (char **)NULL
) == -1)
1277 fatal("Failed to set process credentials");
1278 #endif /* HAVE_SETPCRED */
1279 #ifdef HAVE_LOGIN_CAP
1284 if (options
.gss_authentication
) {
1285 temporarily_use_uid(pw
);
1286 ssh_gssapi_storecreds();
1291 if (options
.use_pam
) {
1295 # endif /* USE_PAM */
1296 if (setusercontext(lc
, pw
, pw
->pw_uid
,
1297 (LOGIN_SETALL
& ~LOGIN_SETPATH
)) < 0) {
1298 perror("unable to set user context");
1302 # if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1303 /* Sets login uid for accounting */
1304 if (getluid() == -1 && setluid(pw
->pw_uid
) == -1)
1305 error("setluid: %s", strerror(errno
));
1306 # endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1308 if (setlogin(pw
->pw_name
) < 0)
1309 error("setlogin failed: %s", strerror(errno
));
1310 if (setgid(pw
->pw_gid
) < 0) {
1314 /* Initialize the group list. */
1315 if (initgroups(pw
->pw_name
, pw
->pw_gid
) < 0) {
1316 perror("initgroups");
1321 if (options
.gss_authentication
) {
1322 temporarily_use_uid(pw
);
1323 ssh_gssapi_storecreds();
1329 * PAM credentials may take the form of supplementary groups.
1330 * These will have been wiped by the above initgroups() call.
1331 * Reestablish them here.
1333 if (options
.use_pam
) {
1337 # endif /* USE_PAM */
1338 # if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1339 irix_setusercontext(pw
);
1340 # endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
1344 #if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
1345 if (set_id(pw
->pw_name
) != 0) {
1348 #endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
1349 /* Permanently switch to the desired uid. */
1350 permanently_set_uid(pw
);
1357 if (getuid() != pw
->pw_uid
|| geteuid() != pw
->pw_uid
)
1358 fatal("Failed to set uids to %u.", (u_int
) pw
->pw_uid
);
1361 ssh_selinux_setup_exec_context(pw
->pw_name
);
1366 do_pwchange(Session
*s
)
1369 fprintf(stderr
, "WARNING: Your password has expired.\n");
1370 if (s
->ttyfd
!= -1) {
1372 "You must change your password now and login again!\n");
1373 #ifdef PASSWD_NEEDS_USERNAME
1374 execl(_PATH_PASSWD_PROG
, "passwd", s
->pw
->pw_name
,
1377 execl(_PATH_PASSWD_PROG
, "passwd", (char *)NULL
);
1382 "Password change required but no TTY available.\n");
1388 launch_login(struct passwd
*pw
, const char *hostname
)
1390 /* Launch login(1). */
1392 execl(LOGIN_PROGRAM
, "login", "-h", hostname
,
1393 #ifdef xxxLOGIN_NEEDS_TERM
1394 (s
->term
? s
->term
: "unknown"),
1395 #endif /* LOGIN_NEEDS_TERM */
1396 #ifdef LOGIN_NO_ENDOPT
1397 "-p", "-f", pw
->pw_name
, (char *)NULL
);
1399 "-p", "-f", "--", pw
->pw_name
, (char *)NULL
);
1402 /* Login couldn't be executed, die. */
1409 child_close_fds(void)
1413 if (packet_get_connection_in() == packet_get_connection_out())
1414 close(packet_get_connection_in());
1416 close(packet_get_connection_in());
1417 close(packet_get_connection_out());
1420 * Close all descriptors related to channels. They will still remain
1421 * open in the parent.
1423 /* XXX better use close-on-exec? -markus */
1424 channel_close_all();
1427 * Close any extra file descriptors. Note that there may still be
1428 * descriptors left by system functions. They will be closed later.
1433 * Close any extra open file descriptors so that we don't have them
1434 * hanging around in clients. Note that we want to do this after
1435 * initgroups, because at least on Solaris 2.3 it leaves file
1438 for (i
= 3; i
< 64; i
++)
1443 * Performs common processing for the child, such as setting up the
1444 * environment, closing extra file descriptors, setting the user and group
1445 * ids, and executing the command or shell.
1448 do_child(Session
*s
, const char *command
)
1450 extern char **environ
;
1453 const char *shell
, *shell0
, *hostname
= NULL
;
1454 struct passwd
*pw
= s
->pw
;
1456 /* remove hostkey from the child's memory */
1457 destroy_sensitive_data();
1459 /* Force a password change */
1460 if (s
->authctxt
->force_pwchange
) {
1461 do_setusercontext(pw
);
1467 /* login(1) is only called if we execute the login shell */
1468 if (options
.use_login
&& command
!= NULL
)
1469 options
.use_login
= 0;
1472 cray_setup(pw
->pw_uid
, pw
->pw_name
, command
);
1473 #endif /* _UNICOS */
1476 * Login(1) does this as well, and it needs uid 0 for the "-h"
1477 * switch, so we let login(1) to this for us.
1479 if (!options
.use_login
) {
1481 session_setup_sia(pw
, s
->ttyfd
== -1 ? NULL
: s
->tty
);
1482 if (!check_quietlogin(s
, command
))
1484 #else /* HAVE_OSF_SIA */
1485 /* When PAM is enabled we rely on it to do the nologin check */
1486 if (!options
.use_pam
)
1488 do_setusercontext(pw
);
1490 * PAM session modules in do_setusercontext may have
1491 * generated messages, so if this in an interactive
1492 * login then display them too.
1494 if (!check_quietlogin(s
, command
))
1496 #endif /* HAVE_OSF_SIA */
1500 if (options
.use_pam
&& !options
.use_login
&& !is_pam_session_open()) {
1501 debug3("PAM session not opened, exiting");
1508 * Get the shell from the password data. An empty shell field is
1509 * legal, and means /bin/sh.
1511 shell
= (pw
->pw_shell
[0] == '\0') ? _PATH_BSHELL
: pw
->pw_shell
;
1514 * Make sure $SHELL points to the shell from the password file,
1515 * even if shell is overridden from login.conf
1517 env
= do_setup_env(s
, shell
);
1519 #ifdef HAVE_LOGIN_CAP
1520 shell
= login_getcapstr(lc
, "shell", (char *)shell
, (char *)shell
);
1523 /* we have to stash the hostname before we close our socket. */
1524 if (options
.use_login
)
1525 hostname
= get_remote_name_or_ip(utmp_len
,
1528 * Close the connection descriptors; note that this is the child, and
1529 * the server will still have the socket open, and it is important
1530 * that we do not shutdown it. Note that the descriptors cannot be
1531 * closed before building the environment, as we call
1532 * get_remote_ipaddr there.
1537 * Must take new environment into use so that .ssh/rc,
1538 * /etc/ssh/sshrc and xauth are run in the proper environment.
1542 #if defined(KRB5) && defined(USE_AFS)
1544 * At this point, we check to see if AFS is active and if we have
1545 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1546 * if we can (and need to) extend the ticket into an AFS token. If
1547 * we don't do this, we run into potential problems if the user's
1548 * home directory is in AFS and it's not world-readable.
1551 if (options
.kerberos_get_afs_token
&& k_hasafs() &&
1552 (s
->authctxt
->krb5_ctx
!= NULL
)) {
1555 debug("Getting AFS token");
1559 if (k_afs_cell_of_file(pw
->pw_dir
, cell
, sizeof(cell
)) == 0)
1560 krb5_afslog(s
->authctxt
->krb5_ctx
,
1561 s
->authctxt
->krb5_fwd_ccache
, cell
, NULL
);
1563 krb5_afslog_home(s
->authctxt
->krb5_ctx
,
1564 s
->authctxt
->krb5_fwd_ccache
, NULL
, NULL
, pw
->pw_dir
);
1568 /* Change current directory to the user's home directory. */
1569 if (chdir(pw
->pw_dir
) < 0) {
1570 fprintf(stderr
, "Could not chdir to home directory %s: %s\n",
1571 pw
->pw_dir
, strerror(errno
));
1572 #ifdef HAVE_LOGIN_CAP
1573 if (login_getcapbool(lc
, "requirehome", 0))
1578 if (!options
.use_login
)
1579 do_rc_files(s
, shell
);
1581 /* restore SIGPIPE for child */
1582 signal(SIGPIPE
, SIG_DFL
);
1584 if (options
.use_login
) {
1585 launch_login(pw
, hostname
);
1589 /* Get the last component of the shell name. */
1590 if ((shell0
= strrchr(shell
, '/')) != NULL
)
1596 * If we have no command, execute the shell. In this case, the shell
1597 * name to be passed in argv[0] is preceded by '-' to indicate that
1598 * this is a login shell.
1603 /* Start the shell. Set initial character to '-'. */
1606 if (strlcpy(argv0
+ 1, shell0
, sizeof(argv0
) - 1)
1607 >= sizeof(argv0
) - 1) {
1613 /* Execute the shell. */
1616 execve(shell
, argv
, env
);
1618 /* Executing the shell failed. */
1623 * Execute the command using the user's shell. This uses the -c
1624 * option to execute the command.
1626 argv
[0] = (char *) shell0
;
1628 argv
[2] = (char *) command
;
1630 execve(shell
, argv
, env
);
1639 static int did_init
= 0;
1641 debug("session_new: init");
1642 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1643 sessions
[i
].used
= 0;
1647 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1648 Session
*s
= &sessions
[i
];
1650 memset(s
, 0, sizeof(*s
));
1656 s
->x11_chanids
= NULL
;
1657 debug("session_new: session %d", i
);
1668 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1669 Session
*s
= &sessions
[i
];
1670 debug("dump: used %d session %d %p channel %d pid %ld",
1680 session_open(Authctxt
*authctxt
, int chanid
)
1682 Session
*s
= session_new();
1683 debug("session_open: channel %d", chanid
);
1685 error("no more sessions");
1688 s
->authctxt
= authctxt
;
1689 s
->pw
= authctxt
->pw
;
1690 if (s
->pw
== NULL
|| !authctxt
->valid
)
1691 fatal("no user for session %d", s
->self
);
1692 debug("session_open: session %d: link with channel %d", s
->self
, chanid
);
1698 session_by_tty(char *tty
)
1701 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1702 Session
*s
= &sessions
[i
];
1703 if (s
->used
&& s
->ttyfd
!= -1 && strcmp(s
->tty
, tty
) == 0) {
1704 debug("session_by_tty: session %d tty %s", i
, tty
);
1708 debug("session_by_tty: unknown tty %.100s", tty
);
1714 session_by_channel(int id
)
1717 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1718 Session
*s
= &sessions
[i
];
1719 if (s
->used
&& s
->chanid
== id
) {
1720 debug("session_by_channel: session %d channel %d", i
, id
);
1724 debug("session_by_channel: unknown channel %d", id
);
1730 session_by_x11_channel(int id
)
1734 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1735 Session
*s
= &sessions
[i
];
1737 if (s
->x11_chanids
== NULL
|| !s
->used
)
1739 for (j
= 0; s
->x11_chanids
[j
] != -1; j
++) {
1740 if (s
->x11_chanids
[j
] == id
) {
1741 debug("session_by_x11_channel: session %d "
1742 "channel %d", s
->self
, id
);
1747 debug("session_by_x11_channel: unknown channel %d", id
);
1753 session_by_pid(pid_t pid
)
1756 debug("session_by_pid: pid %ld", (long)pid
);
1757 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1758 Session
*s
= &sessions
[i
];
1759 if (s
->used
&& s
->pid
== pid
)
1762 error("session_by_pid: unknown pid %ld", (long)pid
);
1768 session_window_change_req(Session
*s
)
1770 s
->col
= packet_get_int();
1771 s
->row
= packet_get_int();
1772 s
->xpixel
= packet_get_int();
1773 s
->ypixel
= packet_get_int();
1775 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
1780 session_pty_req(Session
*s
)
1786 debug("Allocating a pty not permitted for this authentication.");
1789 if (s
->ttyfd
!= -1) {
1790 packet_disconnect("Protocol error: you already have a pty.");
1794 s
->term
= packet_get_string(&len
);
1797 s
->col
= packet_get_int();
1798 s
->row
= packet_get_int();
1800 s
->row
= packet_get_int();
1801 s
->col
= packet_get_int();
1803 s
->xpixel
= packet_get_int();
1804 s
->ypixel
= packet_get_int();
1806 if (strcmp(s
->term
, "") == 0) {
1811 /* Allocate a pty and open it. */
1812 debug("Allocating pty.");
1813 if (!PRIVSEP(pty_allocate(&s
->ptyfd
, &s
->ttyfd
, s
->tty
, sizeof(s
->tty
)))) {
1819 error("session_pty_req: session %d alloc failed", s
->self
);
1822 debug("session_pty_req: session %d alloc %s", s
->self
, s
->tty
);
1824 /* for SSH1 the tty modes length is not given */
1826 n_bytes
= packet_remaining();
1827 tty_parse_modes(s
->ttyfd
, &n_bytes
);
1830 pty_setowner(s
->pw
, s
->tty
);
1832 /* Set window size from the packet. */
1833 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
1836 session_proctitle(s
);
1841 session_subsystem_req(Session
*s
)
1846 char *prog
, *cmd
, *subsys
= packet_get_string(&len
);
1850 logit("subsystem request for %.100s", subsys
);
1852 for (i
= 0; i
< options
.num_subsystems
; i
++) {
1853 if (strcmp(subsys
, options
.subsystem_name
[i
]) == 0) {
1854 prog
= options
.subsystem_command
[i
];
1855 cmd
= options
.subsystem_args
[i
];
1856 if (stat(prog
, &st
) < 0) {
1857 error("subsystem: cannot stat %s: %s", prog
,
1861 debug("subsystem: exec() %s", cmd
);
1862 s
->is_subsystem
= 1;
1870 logit("subsystem request for %.100s failed, subsystem not found",
1878 session_x11_req(Session
*s
)
1882 if (s
->auth_proto
!= NULL
|| s
->auth_data
!= NULL
) {
1883 error("session_x11_req: session %d: "
1884 "x11 forwarding already active", s
->self
);
1887 s
->single_connection
= packet_get_char();
1888 s
->auth_proto
= packet_get_string(NULL
);
1889 s
->auth_data
= packet_get_string(NULL
);
1890 s
->screen
= packet_get_int();
1893 success
= session_setup_x11fwd(s
);
1895 xfree(s
->auth_proto
);
1896 xfree(s
->auth_data
);
1897 s
->auth_proto
= NULL
;
1898 s
->auth_data
= NULL
;
1904 session_shell_req(Session
*s
)
1912 session_exec_req(Session
*s
)
1915 char *command
= packet_get_string(&len
);
1917 do_exec(s
, command
);
1923 session_break_req(Session
*s
)
1926 packet_get_int(); /* ignored */
1929 if (s
->ttyfd
== -1 ||
1930 tcsendbreak(s
->ttyfd
, 0) < 0)
1936 session_env_req(Session
*s
)
1939 u_int name_len
, val_len
, i
;
1941 name
= packet_get_string(&name_len
);
1942 val
= packet_get_string(&val_len
);
1945 /* Don't set too many environment variables */
1946 if (s
->num_env
> 128) {
1947 debug2("Ignoring env request %s: too many env vars", name
);
1951 for (i
= 0; i
< options
.num_accept_env
; i
++) {
1952 if (match_pattern(name
, options
.accept_env
[i
])) {
1953 debug2("Setting env %d: %s=%s", s
->num_env
, name
, val
);
1954 s
->env
= xrealloc(s
->env
, s
->num_env
+ 1,
1956 s
->env
[s
->num_env
].name
= name
;
1957 s
->env
[s
->num_env
].val
= val
;
1962 debug2("Ignoring env request %s: disallowed name", name
);
1971 session_auth_agent_req(Session
*s
)
1973 static int called
= 0;
1975 if (no_agent_forwarding_flag
) {
1976 debug("session_auth_agent_req: no_agent_forwarding_flag");
1983 return auth_input_request_forwarding(s
->pw
);
1988 session_input_channel_req(Channel
*c
, const char *rtype
)
1993 if ((s
= session_by_channel(c
->self
)) == NULL
) {
1994 logit("session_input_channel_req: no session %d req %.100s",
1998 debug("session_input_channel_req: session %d req %s", s
->self
, rtype
);
2001 * a session is in LARVAL state until a shell, a command
2002 * or a subsystem is executed
2004 if (c
->type
== SSH_CHANNEL_LARVAL
) {
2005 if (strcmp(rtype
, "shell") == 0) {
2006 success
= session_shell_req(s
);
2007 } else if (strcmp(rtype
, "exec") == 0) {
2008 success
= session_exec_req(s
);
2009 } else if (strcmp(rtype
, "pty-req") == 0) {
2010 success
= session_pty_req(s
);
2011 } else if (strcmp(rtype
, "x11-req") == 0) {
2012 success
= session_x11_req(s
);
2013 } else if (strcmp(rtype
, "auth-agent-req@openssh.com") == 0) {
2014 success
= session_auth_agent_req(s
);
2015 } else if (strcmp(rtype
, "subsystem") == 0) {
2016 success
= session_subsystem_req(s
);
2017 } else if (strcmp(rtype
, "env") == 0) {
2018 success
= session_env_req(s
);
2021 if (strcmp(rtype
, "window-change") == 0) {
2022 success
= session_window_change_req(s
);
2023 } else if (strcmp(rtype
, "break") == 0) {
2024 success
= session_break_req(s
);
2031 session_set_fds(Session
*s
, int fdin
, int fdout
, int fderr
)
2034 fatal("session_set_fds: called for proto != 2.0");
2036 * now that have a child and a pipe to the child,
2037 * we can activate our channel and register the fd's
2039 if (s
->chanid
== -1)
2040 fatal("no channel for session %d", s
->self
);
2041 channel_set_fds(s
->chanid
,
2043 fderr
== -1 ? CHAN_EXTENDED_IGNORE
: CHAN_EXTENDED_READ
,
2045 CHAN_SES_WINDOW_DEFAULT
);
2049 * Function to perform pty cleanup. Also called if we get aborted abnormally
2050 * (e.g., due to a dropped connection).
2053 session_pty_cleanup2(Session
*s
)
2056 error("session_pty_cleanup: no session");
2062 debug("session_pty_cleanup: session %d release %s", s
->self
, s
->tty
);
2064 /* Record that the user has logged out. */
2066 record_logout(s
->pid
, s
->tty
, s
->pw
->pw_name
);
2068 /* Release the pseudo-tty. */
2070 pty_release(s
->tty
);
2073 * Close the server side of the socket pairs. We must do this after
2074 * the pty cleanup, so that another process doesn't get this pty
2075 * while we're still cleaning up.
2077 if (close(s
->ptymaster
) < 0)
2078 error("close(s->ptymaster/%d): %s", s
->ptymaster
, strerror(errno
));
2080 /* unlink pty from session */
2085 session_pty_cleanup(Session
*s
)
2087 PRIVSEP(session_pty_cleanup2(s
));
2093 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2108 return "SIG@openssh.com";
2112 session_close_x11(int id
)
2116 if ((c
= channel_by_id(id
)) == NULL
) {
2117 debug("session_close_x11: x11 channel %d missing", id
);
2119 /* Detach X11 listener */
2120 debug("session_close_x11: detach x11 channel %d", id
);
2121 channel_cancel_cleanup(id
);
2122 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2128 session_close_single_x11(int id
, void *arg
)
2133 debug3("session_close_single_x11: channel %d", id
);
2134 channel_cancel_cleanup(id
);
2135 if ((s
= session_by_x11_channel(id
)) == NULL
)
2136 fatal("session_close_single_x11: no x11 channel %d", id
);
2137 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2138 debug("session_close_single_x11: session %d: "
2139 "closing channel %d", s
->self
, s
->x11_chanids
[i
]);
2141 * The channel "id" is already closing, but make sure we
2142 * close all of its siblings.
2144 if (s
->x11_chanids
[i
] != id
)
2145 session_close_x11(s
->x11_chanids
[i
]);
2147 xfree(s
->x11_chanids
);
2148 s
->x11_chanids
= NULL
;
2153 if (s
->auth_proto
) {
2154 xfree(s
->auth_proto
);
2155 s
->auth_proto
= NULL
;
2158 xfree(s
->auth_data
);
2159 s
->auth_data
= NULL
;
2161 if (s
->auth_display
) {
2162 xfree(s
->auth_display
);
2163 s
->auth_display
= NULL
;
2168 session_exit_message(Session
*s
, int status
)
2172 if ((c
= channel_lookup(s
->chanid
)) == NULL
)
2173 fatal("session_exit_message: session %d: no channel %d",
2174 s
->self
, s
->chanid
);
2175 debug("session_exit_message: session %d channel %d pid %ld",
2176 s
->self
, s
->chanid
, (long)s
->pid
);
2178 if (WIFEXITED(status
)) {
2179 channel_request_start(s
->chanid
, "exit-status", 0);
2180 packet_put_int(WEXITSTATUS(status
));
2182 } else if (WIFSIGNALED(status
)) {
2183 channel_request_start(s
->chanid
, "exit-signal", 0);
2184 packet_put_cstring(sig2name(WTERMSIG(status
)));
2186 packet_put_char(WCOREDUMP(status
));
2187 #else /* WCOREDUMP */
2189 #endif /* WCOREDUMP */
2190 packet_put_cstring("");
2191 packet_put_cstring("");
2194 /* Some weird exit cause. Just exit. */
2195 packet_disconnect("wait returned status %04x.", status
);
2198 /* disconnect channel */
2199 debug("session_exit_message: release channel %d", s
->chanid
);
2202 * Adjust cleanup callback attachment to send close messages when
2203 * the channel gets EOF. The session will be then be closed
2204 * by session_close_by_channel when the childs close their fds.
2206 channel_register_cleanup(c
->self
, session_close_by_channel
, 1);
2209 * emulate a write failure with 'chan_write_failed', nobody will be
2210 * interested in data we write.
2211 * Note that we must not call 'chan_read_failed', since there could
2212 * be some more data waiting in the pipe.
2214 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2215 chan_write_failed(c
);
2219 session_close(Session
*s
)
2223 debug("session_close: session %d pid %ld", s
->self
, (long)s
->pid
);
2225 session_pty_cleanup(s
);
2231 xfree(s
->x11_chanids
);
2232 if (s
->auth_display
)
2233 xfree(s
->auth_display
);
2235 xfree(s
->auth_data
);
2237 xfree(s
->auth_proto
);
2239 for (i
= 0; i
< s
->num_env
; i
++) {
2240 xfree(s
->env
[i
].name
);
2241 xfree(s
->env
[i
].val
);
2245 session_proctitle(s
);
2249 session_close_by_pid(pid_t pid
, int status
)
2251 Session
*s
= session_by_pid(pid
);
2253 debug("session_close_by_pid: no session for pid %ld",
2257 if (s
->chanid
!= -1)
2258 session_exit_message(s
, status
);
2260 session_pty_cleanup(s
);
2265 * this is called when a channel dies before
2266 * the session 'child' itself dies
2269 session_close_by_channel(int id
, void *arg
)
2271 Session
*s
= session_by_channel(id
);
2275 debug("session_close_by_channel: no session for id %d", id
);
2278 debug("session_close_by_channel: channel %d child %ld",
2281 debug("session_close_by_channel: channel %d: has child", id
);
2283 * delay detach of session, but release pty, since
2284 * the fd's to the child are already closed
2287 session_pty_cleanup(s
);
2290 /* detach by removing callback */
2291 channel_cancel_cleanup(s
->chanid
);
2293 /* Close any X11 listeners associated with this session */
2294 if (s
->x11_chanids
!= NULL
) {
2295 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2296 session_close_x11(s
->x11_chanids
[i
]);
2297 s
->x11_chanids
[i
] = -1;
2306 session_destroy_all(void (*closefunc
)(Session
*))
2309 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
2310 Session
*s
= &sessions
[i
];
2312 if (closefunc
!= NULL
)
2321 session_tty_list(void)
2323 static char buf
[1024];
2328 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
2329 Session
*s
= &sessions
[i
];
2330 if (s
->used
&& s
->ttyfd
!= -1) {
2332 if (strncmp(s
->tty
, "/dev/", 5) != 0) {
2333 cp
= strrchr(s
->tty
, '/');
2334 cp
= (cp
== NULL
) ? s
->tty
: cp
+ 1;
2339 strlcat(buf
, ",", sizeof buf
);
2340 strlcat(buf
, cp
, sizeof buf
);
2344 strlcpy(buf
, "notty", sizeof buf
);
2349 session_proctitle(Session
*s
)
2352 error("no user for session %d", s
->self
);
2354 setproctitle("%s@%s", s
->pw
->pw_name
, session_tty_list());
2358 session_setup_x11fwd(Session
*s
)
2361 char display
[512], auth_display
[512];
2362 char hostname
[MAXHOSTNAMELEN
];
2365 if (no_x11_forwarding_flag
) {
2366 packet_send_debug("X11 forwarding disabled in user configuration file.");
2369 if (!options
.x11_forwarding
) {
2370 debug("X11 forwarding disabled in server configuration file.");
2373 if (!options
.xauth_location
||
2374 (stat(options
.xauth_location
, &st
) == -1)) {
2375 packet_send_debug("No xauth program; cannot forward with spoofing.");
2378 if (options
.use_login
) {
2379 packet_send_debug("X11 forwarding disabled; "
2380 "not compatible with UseLogin=yes.");
2383 if (s
->display
!= NULL
) {
2384 debug("X11 display already set.");
2387 if (x11_create_display_inet(options
.x11_display_offset
,
2388 options
.x11_use_localhost
, s
->single_connection
,
2389 &s
->display_number
, &s
->x11_chanids
) == -1) {
2390 debug("x11_create_display_inet failed.");
2393 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2394 channel_register_cleanup(s
->x11_chanids
[i
],
2395 session_close_single_x11
, 0);
2398 /* Set up a suitable value for the DISPLAY variable. */
2399 if (gethostname(hostname
, sizeof(hostname
)) < 0)
2400 fatal("gethostname: %.100s", strerror(errno
));
2402 * auth_display must be used as the displayname when the
2403 * authorization entry is added with xauth(1). This will be
2404 * different than the DISPLAY string for localhost displays.
2406 if (options
.x11_use_localhost
) {
2407 snprintf(display
, sizeof display
, "localhost:%u.%u",
2408 s
->display_number
, s
->screen
);
2409 snprintf(auth_display
, sizeof auth_display
, "unix:%u.%u",
2410 s
->display_number
, s
->screen
);
2411 s
->display
= xstrdup(display
);
2412 s
->auth_display
= xstrdup(auth_display
);
2414 #ifdef IPADDR_IN_DISPLAY
2416 struct in_addr my_addr
;
2418 he
= gethostbyname(hostname
);
2420 error("Can't get IP address for X11 DISPLAY.");
2421 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2424 memcpy(&my_addr
, he
->h_addr_list
[0], sizeof(struct in_addr
));
2425 snprintf(display
, sizeof display
, "%.50s:%u.%u", inet_ntoa(my_addr
),
2426 s
->display_number
, s
->screen
);
2428 snprintf(display
, sizeof display
, "%.400s:%u.%u", hostname
,
2429 s
->display_number
, s
->screen
);
2431 s
->display
= xstrdup(display
);
2432 s
->auth_display
= xstrdup(display
);
2439 do_authenticated2(Authctxt
*authctxt
)
2441 server_loop2(authctxt
);
2445 do_cleanup(Authctxt
*authctxt
)
2447 static int called
= 0;
2449 debug("do_cleanup");
2451 /* no cleanup if we're in the child for login shell */
2455 /* avoid double cleanup */
2460 if (authctxt
== NULL
)
2463 if (options
.kerberos_ticket_cleanup
&&
2465 krb5_cleanup_proc(authctxt
);
2469 if (compat20
&& options
.gss_cleanup_creds
)
2470 ssh_gssapi_cleanup_creds();
2474 if (options
.use_pam
) {
2476 sshpam_thread_cleanup();
2480 /* remove agent socket */
2481 auth_sock_cleanup_proc(authctxt
->pw
);
2484 * Cleanup ptys/utmp only if privsep is disabled,
2485 * or if running in monitor.
2487 if (!use_privsep
|| mm_is_monitor())
2488 session_destroy_all(session_pty_cleanup2
);