1 /* $OpenBSD: session.c,v 1.211 2006/07/20 15:26:15 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>
46 #include <arpa/inet.h>
70 #include "auth-options.h"
71 #include "pathnames.h"
75 #include "serverloop.h"
79 #include "monitor_wrap.h"
81 #if defined(KRB5) && defined(USE_AFS)
91 Session
*session_new(void);
92 void session_set_fds(Session
*, int, int, int);
93 void session_pty_cleanup(Session
*);
94 void session_proctitle(Session
*);
95 int session_setup_x11fwd(Session
*);
96 void do_exec_pty(Session
*, const char *);
97 void do_exec_no_pty(Session
*, const char *);
98 void do_exec(Session
*, const char *);
99 void do_login(Session
*, const char *);
100 #ifdef LOGIN_NEEDS_UTMPX
101 static void do_pre_login(Session
*s
);
103 void do_child(Session
*, const char *);
105 int check_quietlogin(Session
*, const char *);
107 static void do_authenticated1(Authctxt
*);
108 static void do_authenticated2(Authctxt
*);
110 static int session_pty_req(Session
*);
113 extern ServerOptions options
;
114 extern char *__progname
;
115 extern int log_stderr
;
116 extern int debug_flag
;
117 extern u_int utmp_len
;
118 extern int startup_pipe
;
119 extern void destroy_sensitive_data(void);
120 extern Buffer loginmsg
;
122 /* original command from peer. */
123 const char *original_command
= NULL
;
126 #define MAX_SESSIONS 10
127 Session sessions
[MAX_SESSIONS
];
129 #ifdef HAVE_LOGIN_CAP
133 static int is_child
= 0;
135 /* Name and directory of socket for authentication agent forwarding. */
136 static char *auth_sock_name
= NULL
;
137 static char *auth_sock_dir
= NULL
;
139 /* removes the agent forwarding socket */
142 auth_sock_cleanup_proc(struct passwd
*pw
)
144 if (auth_sock_name
!= NULL
) {
145 temporarily_use_uid(pw
);
146 unlink(auth_sock_name
);
147 rmdir(auth_sock_dir
);
148 auth_sock_name
= NULL
;
154 auth_input_request_forwarding(struct passwd
* pw
)
158 struct sockaddr_un sunaddr
;
160 if (auth_sock_name
!= NULL
) {
161 error("authentication forwarding requested twice.");
165 /* Temporarily drop privileged uid for mkdir/bind. */
166 temporarily_use_uid(pw
);
168 /* Allocate a buffer for the socket name, and format the name. */
169 auth_sock_name
= xmalloc(MAXPATHLEN
);
170 auth_sock_dir
= xmalloc(MAXPATHLEN
);
171 strlcpy(auth_sock_dir
, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN
);
173 /* Create private directory for socket */
174 if (mkdtemp(auth_sock_dir
) == NULL
) {
175 packet_send_debug("Agent forwarding disabled: "
176 "mkdtemp() failed: %.100s", strerror(errno
));
178 xfree(auth_sock_name
);
179 xfree(auth_sock_dir
);
180 auth_sock_name
= NULL
;
181 auth_sock_dir
= NULL
;
184 snprintf(auth_sock_name
, MAXPATHLEN
, "%s/agent.%ld",
185 auth_sock_dir
, (long) getpid());
187 /* Create the socket. */
188 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
190 packet_disconnect("socket: %.100s", strerror(errno
));
192 /* Bind it to the name. */
193 memset(&sunaddr
, 0, sizeof(sunaddr
));
194 sunaddr
.sun_family
= AF_UNIX
;
195 strlcpy(sunaddr
.sun_path
, auth_sock_name
, sizeof(sunaddr
.sun_path
));
197 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) < 0)
198 packet_disconnect("bind: %.100s", strerror(errno
));
200 /* Restore the privileged uid. */
203 /* Start listening on the socket. */
204 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0)
205 packet_disconnect("listen: %.100s", strerror(errno
));
207 /* Allocate a channel for the authentication agent socket. */
208 nc
= channel_new("auth socket",
209 SSH_CHANNEL_AUTH_SOCKET
, sock
, sock
, -1,
210 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
211 0, "auth socket", 1);
212 strlcpy(nc
->path
, auth_sock_name
, sizeof(nc
->path
));
217 display_loginmsg(void)
219 if (buffer_len(&loginmsg
) > 0) {
220 buffer_append(&loginmsg
, "\0", 1);
221 printf("%s", (char *)buffer_ptr(&loginmsg
));
222 buffer_clear(&loginmsg
);
227 do_authenticated(Authctxt
*authctxt
)
229 setproctitle("%s", authctxt
->pw
->pw_name
);
231 /* setup the channel layer */
232 if (!no_port_forwarding_flag
&& options
.allow_tcp_forwarding
)
233 channel_permit_all_opens();
236 do_authenticated2(authctxt
);
238 do_authenticated1(authctxt
);
240 do_cleanup(authctxt
);
244 * Prepares for an interactive session. This is called after the user has
245 * been successfully authenticated. During this message exchange, pseudo
246 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
247 * are requested, etc.
250 do_authenticated1(Authctxt
*authctxt
)
254 int success
, type
, screen_flag
;
255 int enable_compression_after_reply
= 0;
256 u_int proto_len
, data_len
, dlen
, compression_level
= 0;
260 error("no more sessions");
263 s
->authctxt
= authctxt
;
264 s
->pw
= authctxt
->pw
;
267 * We stay in this loop until the client requests to execute a shell
273 /* Get a packet from the client. */
274 type
= packet_read();
276 /* Process the packet. */
278 case SSH_CMSG_REQUEST_COMPRESSION
:
279 compression_level
= packet_get_int();
281 if (compression_level
< 1 || compression_level
> 9) {
282 packet_send_debug("Received invalid compression level %d.",
286 if (options
.compression
== COMP_NONE
) {
287 debug2("compression disabled");
290 /* Enable compression after we have responded with SUCCESS. */
291 enable_compression_after_reply
= 1;
295 case SSH_CMSG_REQUEST_PTY
:
296 success
= session_pty_req(s
);
299 case SSH_CMSG_X11_REQUEST_FORWARDING
:
300 s
->auth_proto
= packet_get_string(&proto_len
);
301 s
->auth_data
= packet_get_string(&data_len
);
303 screen_flag
= packet_get_protocol_flags() &
304 SSH_PROTOFLAG_SCREEN_NUMBER
;
305 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag
);
307 if (packet_remaining() == 4) {
309 debug2("Buggy client: "
310 "X11 screen flag missing");
311 s
->screen
= packet_get_int();
316 success
= session_setup_x11fwd(s
);
318 xfree(s
->auth_proto
);
320 s
->auth_proto
= NULL
;
325 case SSH_CMSG_AGENT_REQUEST_FORWARDING
:
326 if (no_agent_forwarding_flag
|| compat13
) {
327 debug("Authentication agent forwarding not permitted for this authentication.");
330 debug("Received authentication agent forwarding request.");
331 success
= auth_input_request_forwarding(s
->pw
);
334 case SSH_CMSG_PORT_FORWARD_REQUEST
:
335 if (no_port_forwarding_flag
) {
336 debug("Port forwarding not permitted for this authentication.");
339 if (!options
.allow_tcp_forwarding
) {
340 debug("Port forwarding not permitted.");
343 debug("Received TCP/IP port forwarding request.");
344 if (channel_input_port_forward_request(s
->pw
->pw_uid
== 0,
345 options
.gateway_ports
) < 0) {
346 debug("Port forwarding failed.");
352 case SSH_CMSG_MAX_PACKET_SIZE
:
353 if (packet_set_maxsize(packet_get_int()) > 0)
357 case SSH_CMSG_EXEC_SHELL
:
358 case SSH_CMSG_EXEC_CMD
:
359 if (type
== SSH_CMSG_EXEC_CMD
) {
360 command
= packet_get_string(&dlen
);
361 debug("Exec command '%.500s'", command
);
373 * Any unknown messages in this phase are ignored,
374 * and a failure message is returned.
376 logit("Unknown packet type received after authentication: %d", type
);
378 packet_start(success
? SSH_SMSG_SUCCESS
: SSH_SMSG_FAILURE
);
382 /* Enable compression now that we have replied if appropriate. */
383 if (enable_compression_after_reply
) {
384 enable_compression_after_reply
= 0;
385 packet_start_compression(compression_level
);
391 * This is called to fork and execute a command when we have no tty. This
392 * will call do_child from the child, and server_loop from the parent after
393 * setting up file descriptors and such.
396 do_exec_no_pty(Session
*s
, const char *command
)
401 int pin
[2], pout
[2], perr
[2];
402 /* Allocate pipes for communicating with the program. */
403 if (pipe(pin
) < 0 || pipe(pout
) < 0 || pipe(perr
) < 0)
404 packet_disconnect("Could not create pipes: %.100s",
406 #else /* USE_PIPES */
407 int inout
[2], err
[2];
408 /* Uses socket pairs to communicate with the program. */
409 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, inout
) < 0 ||
410 socketpair(AF_UNIX
, SOCK_STREAM
, 0, err
) < 0)
411 packet_disconnect("Could not create socket pairs: %.100s",
413 #endif /* USE_PIPES */
415 fatal("do_exec_no_pty: no session");
417 session_proctitle(s
);
420 if (options
.use_pam
&& !use_privsep
)
424 /* Fork the child. */
425 if ((pid
= fork()) == 0) {
428 /* Child. Reinitialize the log since the pid has changed. */
429 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
432 * Create a new session and process group since the 4.4BSD
433 * setlogin() affects the entire process group.
436 error("setsid failed: %.100s", strerror(errno
));
440 * Redirect stdin. We close the parent side of the socket
441 * pair, and make the child side the standard input.
444 if (dup2(pin
[0], 0) < 0)
445 perror("dup2 stdin");
448 /* Redirect stdout. */
450 if (dup2(pout
[1], 1) < 0)
451 perror("dup2 stdout");
454 /* Redirect stderr. */
456 if (dup2(perr
[1], 2) < 0)
457 perror("dup2 stderr");
459 #else /* USE_PIPES */
461 * Redirect stdin, stdout, and stderr. Stdin and stdout will
462 * use the same socket, as some programs (particularly rdist)
463 * seem to depend on it.
467 if (dup2(inout
[0], 0) < 0) /* stdin */
468 perror("dup2 stdin");
469 if (dup2(inout
[0], 1) < 0) /* stdout. Note: same socket as stdin. */
470 perror("dup2 stdout");
471 if (dup2(err
[0], 2) < 0) /* stderr */
472 perror("dup2 stderr");
473 #endif /* USE_PIPES */
476 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
479 /* Do processing for the child (exec command etc). */
480 do_child(s
, command
);
484 signal(WJSIGNAL
, cray_job_termination_handler
);
488 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
491 packet_disconnect("fork failed: %.100s", strerror(errno
));
493 /* Set interactive/non-interactive mode. */
494 packet_set_interactive(s
->display
!= NULL
);
496 /* We are the parent. Close the child sides of the pipes. */
502 if (s
->is_subsystem
) {
506 session_set_fds(s
, pin
[1], pout
[0], perr
[0]);
508 /* Enter the interactive session. */
509 server_loop(pid
, pin
[1], pout
[0], perr
[0]);
510 /* server_loop has closed pin[1], pout[0], and perr[0]. */
512 #else /* USE_PIPES */
513 /* We are the parent. Close the child sides of the socket pairs. */
518 * Clear loginmsg, since it's the child's responsibility to display
519 * it to the user, otherwise multiple sessions may accumulate
520 * multiple copies of the login messages.
522 buffer_clear(&loginmsg
);
525 * Enter the interactive session. Note: server_loop must be able to
526 * handle the case that fdin and fdout are the same.
529 session_set_fds(s
, inout
[1], inout
[1], s
->is_subsystem
? -1 : err
[1]);
531 server_loop(pid
, inout
[1], inout
[1], err
[1]);
532 /* server_loop has closed inout[1] and err[1]. */
534 #endif /* USE_PIPES */
538 * This is called to fork and execute a command when we have a tty. This
539 * will call do_child from the child, and server_loop from the parent after
540 * setting up file descriptors, controlling tty, updating wtmp, utmp,
541 * lastlog, and other such operations.
544 do_exec_pty(Session
*s
, const char *command
)
546 int fdout
, ptyfd
, ttyfd
, ptymaster
;
550 fatal("do_exec_pty: no session");
555 if (options
.use_pam
) {
556 do_pam_set_tty(s
->tty
);
562 /* Fork the child. */
563 if ((pid
= fork()) == 0) {
566 /* Child. Reinitialize the log because the pid has changed. */
567 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
568 /* Close the master side of the pseudo tty. */
571 /* Make the pseudo tty our controlling tty. */
572 pty_make_controlling_tty(&ttyfd
, s
->tty
);
574 /* Redirect stdin/stdout/stderr from the pseudo tty. */
575 if (dup2(ttyfd
, 0) < 0)
576 error("dup2 stdin: %s", strerror(errno
));
577 if (dup2(ttyfd
, 1) < 0)
578 error("dup2 stdout: %s", strerror(errno
));
579 if (dup2(ttyfd
, 2) < 0)
580 error("dup2 stderr: %s", strerror(errno
));
582 /* Close the extra descriptor for the pseudo tty. */
585 /* record login, etc. similar to login(1) */
587 if (!(options
.use_login
&& command
== NULL
)) {
589 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
591 do_login(s
, command
);
593 # ifdef LOGIN_NEEDS_UTMPX
599 /* Do common processing for the child, such as execing the command. */
600 do_child(s
, command
);
604 signal(WJSIGNAL
, cray_job_termination_handler
);
608 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
611 packet_disconnect("fork failed: %.100s", strerror(errno
));
614 /* Parent. Close the slave side of the pseudo tty. */
618 * Create another descriptor of the pty master side for use as the
619 * standard input. We could use the original descriptor, but this
620 * simplifies code in server_loop. The descriptor is bidirectional.
624 packet_disconnect("dup #1 failed: %.100s", strerror(errno
));
626 /* we keep a reference to the pty master */
627 ptymaster
= dup(ptyfd
);
629 packet_disconnect("dup #2 failed: %.100s", strerror(errno
));
630 s
->ptymaster
= ptymaster
;
632 /* Enter interactive session. */
633 packet_set_interactive(1);
635 session_set_fds(s
, ptyfd
, fdout
, -1);
637 server_loop(pid
, ptyfd
, fdout
, -1);
638 /* server_loop _has_ closed ptyfd and fdout. */
642 #ifdef LOGIN_NEEDS_UTMPX
644 do_pre_login(Session
*s
)
647 struct sockaddr_storage from
;
648 pid_t pid
= getpid();
651 * Get IP address of client. If the connection is not a socket, let
652 * the address be 0.0.0.0.
654 memset(&from
, 0, sizeof(from
));
655 fromlen
= sizeof(from
);
656 if (packet_connection_is_on_socket()) {
657 if (getpeername(packet_get_connection_in(),
658 (struct sockaddr
*)&from
, &fromlen
) < 0) {
659 debug("getpeername: %.100s", strerror(errno
));
664 record_utmp_only(pid
, s
->tty
, s
->pw
->pw_name
,
665 get_remote_name_or_ip(utmp_len
, options
.use_dns
),
666 (struct sockaddr
*)&from
, fromlen
);
671 * This is called to fork and execute a command. If another command is
672 * to be forced, execute that instead.
675 do_exec(Session
*s
, const char *command
)
677 if (options
.adm_forced_command
) {
678 original_command
= command
;
679 command
= options
.adm_forced_command
;
680 debug("Forced command (config) '%.900s'", command
);
681 } else if (forced_command
) {
682 original_command
= command
;
683 command
= forced_command
;
684 debug("Forced command (key option) '%.900s'", command
);
687 #ifdef SSH_AUDIT_EVENTS
689 PRIVSEP(audit_run_command(command
));
690 else if (s
->ttyfd
== -1) {
691 char *shell
= s
->pw
->pw_shell
;
693 if (shell
[0] == '\0') /* empty shell means /bin/sh */
695 PRIVSEP(audit_run_command(shell
));
700 do_exec_pty(s
, command
);
702 do_exec_no_pty(s
, command
);
704 original_command
= NULL
;
707 * Clear loginmsg: it's the child's responsibility to display
708 * it to the user, otherwise multiple sessions may accumulate
709 * multiple copies of the login messages.
711 buffer_clear(&loginmsg
);
714 /* administrative, login(1)-like work */
716 do_login(Session
*s
, const char *command
)
719 struct sockaddr_storage from
;
720 struct passwd
* pw
= s
->pw
;
721 pid_t pid
= getpid();
724 * Get IP address of client. If the connection is not a socket, let
725 * the address be 0.0.0.0.
727 memset(&from
, 0, sizeof(from
));
728 fromlen
= sizeof(from
);
729 if (packet_connection_is_on_socket()) {
730 if (getpeername(packet_get_connection_in(),
731 (struct sockaddr
*) & from
, &fromlen
) < 0) {
732 debug("getpeername: %.100s", strerror(errno
));
737 /* Record that there was a login on that tty from the remote host. */
739 record_login(pid
, s
->tty
, pw
->pw_name
, pw
->pw_uid
,
740 get_remote_name_or_ip(utmp_len
,
742 (struct sockaddr
*)&from
, fromlen
);
746 * If password change is needed, do it now.
747 * This needs to occur before the ~/.hushlogin check.
749 if (options
.use_pam
&& !use_privsep
&& s
->authctxt
->force_pwchange
) {
752 s
->authctxt
->force_pwchange
= 0;
753 /* XXX - signal [net] parent to enable forwardings */
757 if (check_quietlogin(s
, command
))
766 * Display the message of the day.
774 if (options
.print_motd
) {
775 #ifdef HAVE_LOGIN_CAP
776 f
= fopen(login_getcapstr(lc
, "welcome", "/etc/motd",
779 f
= fopen("/etc/motd", "r");
782 while (fgets(buf
, sizeof(buf
), f
))
791 * Check for quiet login, either .hushlogin or command given.
794 check_quietlogin(Session
*s
, const char *command
)
797 struct passwd
*pw
= s
->pw
;
800 /* Return 1 if .hushlogin exists or a command given. */
803 snprintf(buf
, sizeof(buf
), "%.200s/.hushlogin", pw
->pw_dir
);
804 #ifdef HAVE_LOGIN_CAP
805 if (login_getcapbool(lc
, "hushlogin", 0) || stat(buf
, &st
) >= 0)
808 if (stat(buf
, &st
) >= 0)
815 * Sets the value of the given variable in the environment. If the variable
816 * already exists, its value is overriden.
819 child_set_env(char ***envp
, u_int
*envsizep
, const char *name
,
827 * If we're passed an uninitialized list, allocate a single null
828 * entry before continuing.
830 if (*envp
== NULL
&& *envsizep
== 0) {
831 *envp
= xmalloc(sizeof(char *));
837 * Find the slot where the value should be stored. If the variable
838 * already exists, we reuse the slot; otherwise we append a new slot
839 * at the end of the array, expanding if necessary.
842 namelen
= strlen(name
);
843 for (i
= 0; env
[i
]; i
++)
844 if (strncmp(env
[i
], name
, namelen
) == 0 && env
[i
][namelen
] == '=')
847 /* Reuse the slot. */
850 /* New variable. Expand if necessary. */
852 if (i
>= envsize
- 1) {
854 fatal("child_set_env: too many env vars");
856 env
= (*envp
) = xrealloc(env
, envsize
, sizeof(char *));
859 /* Need to set the NULL pointer at end of array beyond the new slot. */
863 /* Allocate space and format the variable in the appropriate slot. */
864 env
[i
] = xmalloc(strlen(name
) + 1 + strlen(value
) + 1);
865 snprintf(env
[i
], strlen(name
) + 1 + strlen(value
) + 1, "%s=%s", name
, value
);
869 * Reads environment variables from the given file and adds/overrides them
870 * into the environment. If the file does not exist, this does nothing.
871 * Otherwise, it must consist of empty lines, comments (line starts with '#')
872 * and assignments of the form name=value. No other forms are allowed.
875 read_environment_file(char ***env
, u_int
*envsize
,
876 const char *filename
)
883 f
= fopen(filename
, "r");
887 while (fgets(buf
, sizeof(buf
), f
)) {
889 fatal("Too many lines in environment file %s", filename
);
890 for (cp
= buf
; *cp
== ' ' || *cp
== '\t'; cp
++)
892 if (!*cp
|| *cp
== '#' || *cp
== '\n')
894 if (strchr(cp
, '\n'))
895 *strchr(cp
, '\n') = '\0';
896 value
= strchr(cp
, '=');
898 fprintf(stderr
, "Bad line %u in %.100s\n", lineno
,
903 * Replace the equals sign by nul, and advance value to
908 child_set_env(env
, envsize
, cp
, value
);
913 #ifdef HAVE_ETC_DEFAULT_LOGIN
915 * Return named variable from specified environment, or NULL if not present.
918 child_get_env(char **env
, const char *name
)
924 for (i
=0; env
[i
] != NULL
; i
++)
925 if (strncmp(name
, env
[i
], len
) == 0 && env
[i
][len
] == '=')
926 return(env
[i
] + len
+ 1);
931 * Read /etc/default/login.
932 * We pick up the PATH (or SUPATH for root) and UMASK.
935 read_etc_default_login(char ***env
, u_int
*envsize
, uid_t uid
)
937 char **tmpenv
= NULL
, *var
;
938 u_int i
, tmpenvsize
= 0;
942 * We don't want to copy the whole file to the child's environment,
943 * so we use a temporary environment and copy the variables we're
946 read_environment_file(&tmpenv
, &tmpenvsize
, "/etc/default/login");
952 var
= child_get_env(tmpenv
, "SUPATH");
954 var
= child_get_env(tmpenv
, "PATH");
956 child_set_env(env
, envsize
, "PATH", var
);
958 if ((var
= child_get_env(tmpenv
, "UMASK")) != NULL
)
959 if (sscanf(var
, "%5lo", &mask
) == 1)
962 for (i
= 0; tmpenv
[i
] != NULL
; i
++)
966 #endif /* HAVE_ETC_DEFAULT_LOGIN */
969 copy_environment(char **source
, char ***env
, u_int
*envsize
)
971 char *var_name
, *var_val
;
977 for(i
= 0; source
[i
] != NULL
; i
++) {
978 var_name
= xstrdup(source
[i
]);
979 if ((var_val
= strstr(var_name
, "=")) == NULL
) {
985 debug3("Copy environment: %s=%s", var_name
, var_val
);
986 child_set_env(env
, envsize
, var_name
, var_val
);
993 do_setup_env(Session
*s
, const char *shell
)
997 char **env
, *laddr
, *path
= NULL
;
998 struct passwd
*pw
= s
->pw
;
1000 /* Initialize the environment. */
1002 env
= xcalloc(envsize
, sizeof(char *));
1007 * The Windows environment contains some setting which are
1008 * important for a running system. They must not be dropped.
1013 p
= fetch_windows_environment();
1014 copy_environment(p
, &env
, &envsize
);
1015 free_windows_environment(p
);
1020 /* Allow any GSSAPI methods that we've used to alter
1021 * the childs environment as they see fit
1023 ssh_gssapi_do_child(&env
, &envsize
);
1026 if (!options
.use_login
) {
1027 /* Set basic environment. */
1028 for (i
= 0; i
< s
->num_env
; i
++)
1029 child_set_env(&env
, &envsize
, s
->env
[i
].name
,
1032 child_set_env(&env
, &envsize
, "USER", pw
->pw_name
);
1033 child_set_env(&env
, &envsize
, "LOGNAME", pw
->pw_name
);
1035 child_set_env(&env
, &envsize
, "LOGIN", pw
->pw_name
);
1037 child_set_env(&env
, &envsize
, "HOME", pw
->pw_dir
);
1038 #ifdef HAVE_LOGIN_CAP
1039 if (setusercontext(lc
, pw
, pw
->pw_uid
, LOGIN_SETPATH
) < 0)
1040 child_set_env(&env
, &envsize
, "PATH", _PATH_STDPATH
);
1042 child_set_env(&env
, &envsize
, "PATH", getenv("PATH"));
1043 #else /* HAVE_LOGIN_CAP */
1044 # ifndef HAVE_CYGWIN
1046 * There's no standard path on Windows. The path contains
1047 * important components pointing to the system directories,
1048 * needed for loading shared libraries. So the path better
1049 * remains intact here.
1051 # ifdef HAVE_ETC_DEFAULT_LOGIN
1052 read_etc_default_login(&env
, &envsize
, pw
->pw_uid
);
1053 path
= child_get_env(env
, "PATH");
1054 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1055 if (path
== NULL
|| *path
== '\0') {
1056 child_set_env(&env
, &envsize
, "PATH",
1057 s
->pw
->pw_uid
== 0 ?
1058 SUPERUSER_PATH
: _PATH_STDPATH
);
1060 # endif /* HAVE_CYGWIN */
1061 #endif /* HAVE_LOGIN_CAP */
1063 snprintf(buf
, sizeof buf
, "%.200s/%.50s",
1064 _PATH_MAILDIR
, pw
->pw_name
);
1065 child_set_env(&env
, &envsize
, "MAIL", buf
);
1067 /* Normal systems set SHELL by default. */
1068 child_set_env(&env
, &envsize
, "SHELL", shell
);
1071 child_set_env(&env
, &envsize
, "TZ", getenv("TZ"));
1073 /* Set custom environment options from RSA authentication. */
1074 if (!options
.use_login
) {
1075 while (custom_environment
) {
1076 struct envstring
*ce
= custom_environment
;
1079 for (i
= 0; str
[i
] != '=' && str
[i
]; i
++)
1081 if (str
[i
] == '=') {
1083 child_set_env(&env
, &envsize
, str
, str
+ i
+ 1);
1085 custom_environment
= ce
->next
;
1091 /* SSH_CLIENT deprecated */
1092 snprintf(buf
, sizeof buf
, "%.50s %d %d",
1093 get_remote_ipaddr(), get_remote_port(), get_local_port());
1094 child_set_env(&env
, &envsize
, "SSH_CLIENT", buf
);
1096 laddr
= get_local_ipaddr(packet_get_connection_in());
1097 snprintf(buf
, sizeof buf
, "%.50s %d %.50s %d",
1098 get_remote_ipaddr(), get_remote_port(), laddr
, get_local_port());
1100 child_set_env(&env
, &envsize
, "SSH_CONNECTION", buf
);
1103 child_set_env(&env
, &envsize
, "SSH_TTY", s
->tty
);
1105 child_set_env(&env
, &envsize
, "TERM", s
->term
);
1107 child_set_env(&env
, &envsize
, "DISPLAY", s
->display
);
1108 if (original_command
)
1109 child_set_env(&env
, &envsize
, "SSH_ORIGINAL_COMMAND",
1113 if (cray_tmpdir
[0] != '\0')
1114 child_set_env(&env
, &envsize
, "TMPDIR", cray_tmpdir
);
1115 #endif /* _UNICOS */
1118 * Since we clear KRB5CCNAME at startup, if it's set now then it
1119 * must have been set by a native authentication method (eg AIX or
1120 * SIA), so copy it to the child.
1125 if ((cp
= getenv("KRB5CCNAME")) != NULL
)
1126 child_set_env(&env
, &envsize
, "KRB5CCNAME", cp
);
1133 if ((cp
= getenv("AUTHSTATE")) != NULL
)
1134 child_set_env(&env
, &envsize
, "AUTHSTATE", cp
);
1135 read_environment_file(&env
, &envsize
, "/etc/environment");
1139 if (s
->authctxt
->krb5_ccname
)
1140 child_set_env(&env
, &envsize
, "KRB5CCNAME",
1141 s
->authctxt
->krb5_ccname
);
1145 * Pull in any environment variables that may have
1148 if (options
.use_pam
) {
1151 p
= fetch_pam_child_environment();
1152 copy_environment(p
, &env
, &envsize
);
1153 free_pam_environment(p
);
1155 p
= fetch_pam_environment();
1156 copy_environment(p
, &env
, &envsize
);
1157 free_pam_environment(p
);
1159 #endif /* USE_PAM */
1161 if (auth_sock_name
!= NULL
)
1162 child_set_env(&env
, &envsize
, SSH_AUTHSOCKET_ENV_NAME
,
1165 /* read $HOME/.ssh/environment. */
1166 if (options
.permit_user_env
&& !options
.use_login
) {
1167 snprintf(buf
, sizeof buf
, "%.200s/.ssh/environment",
1168 strcmp(pw
->pw_dir
, "/") ? pw
->pw_dir
: "");
1169 read_environment_file(&env
, &envsize
, buf
);
1172 /* dump the environment */
1173 fprintf(stderr
, "Environment:\n");
1174 for (i
= 0; env
[i
]; i
++)
1175 fprintf(stderr
, " %.200s\n", env
[i
]);
1181 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1182 * first in this order).
1185 do_rc_files(Session
*s
, const char *shell
)
1193 s
->display
!= NULL
&& s
->auth_proto
!= NULL
&& s
->auth_data
!= NULL
;
1195 /* ignore _PATH_SSH_USER_RC for subsystems */
1196 if (!s
->is_subsystem
&& (stat(_PATH_SSH_USER_RC
, &st
) >= 0)) {
1197 snprintf(cmd
, sizeof cmd
, "%s -c '%s %s'",
1198 shell
, _PATH_BSHELL
, _PATH_SSH_USER_RC
);
1200 fprintf(stderr
, "Running %s\n", cmd
);
1201 f
= popen(cmd
, "w");
1204 fprintf(f
, "%s %s\n", s
->auth_proto
,
1208 fprintf(stderr
, "Could not run %s\n",
1210 } else if (stat(_PATH_SSH_SYSTEM_RC
, &st
) >= 0) {
1212 fprintf(stderr
, "Running %s %s\n", _PATH_BSHELL
,
1213 _PATH_SSH_SYSTEM_RC
);
1214 f
= popen(_PATH_BSHELL
" " _PATH_SSH_SYSTEM_RC
, "w");
1217 fprintf(f
, "%s %s\n", s
->auth_proto
,
1221 fprintf(stderr
, "Could not run %s\n",
1222 _PATH_SSH_SYSTEM_RC
);
1223 } else if (do_xauth
&& options
.xauth_location
!= NULL
) {
1224 /* Add authority data to .Xauthority if appropriate. */
1227 "Running %.500s remove %.100s\n",
1228 options
.xauth_location
, s
->auth_display
);
1230 "%.500s add %.100s %.100s %.100s\n",
1231 options
.xauth_location
, s
->auth_display
,
1232 s
->auth_proto
, s
->auth_data
);
1234 snprintf(cmd
, sizeof cmd
, "%s -q -",
1235 options
.xauth_location
);
1236 f
= popen(cmd
, "w");
1238 fprintf(f
, "remove %s\n",
1240 fprintf(f
, "add %s %s %s\n",
1241 s
->auth_display
, s
->auth_proto
,
1245 fprintf(stderr
, "Could not run %s\n",
1252 do_nologin(struct passwd
*pw
)
1257 #ifdef HAVE_LOGIN_CAP
1258 if (!login_getcapbool(lc
, "ignorenologin", 0) && pw
->pw_uid
)
1259 f
= fopen(login_getcapstr(lc
, "nologin", _PATH_NOLOGIN
,
1260 _PATH_NOLOGIN
), "r");
1263 f
= fopen(_PATH_NOLOGIN
, "r");
1266 /* /etc/nologin exists. Print its contents and exit. */
1267 logit("User %.100s not allowed because %s exists",
1268 pw
->pw_name
, _PATH_NOLOGIN
);
1269 while (fgets(buf
, sizeof(buf
), f
))
1277 /* Set login name, uid, gid, and groups. */
1279 do_setusercontext(struct passwd
*pw
)
1282 if (getuid() == 0 || geteuid() == 0)
1283 #endif /* HAVE_CYGWIN */
1286 #ifdef HAVE_SETPCRED
1287 if (setpcred(pw
->pw_name
, (char **)NULL
) == -1)
1288 fatal("Failed to set process credentials");
1289 #endif /* HAVE_SETPCRED */
1290 #ifdef HAVE_LOGIN_CAP
1295 if (options
.gss_authentication
) {
1296 temporarily_use_uid(pw
);
1297 ssh_gssapi_storecreds();
1302 if (options
.use_pam
) {
1306 # endif /* USE_PAM */
1307 if (setusercontext(lc
, pw
, pw
->pw_uid
,
1308 (LOGIN_SETALL
& ~LOGIN_SETPATH
)) < 0) {
1309 perror("unable to set user context");
1313 # if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1314 /* Sets login uid for accounting */
1315 if (getluid() == -1 && setluid(pw
->pw_uid
) == -1)
1316 error("setluid: %s", strerror(errno
));
1317 # endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1319 if (setlogin(pw
->pw_name
) < 0)
1320 error("setlogin failed: %s", strerror(errno
));
1321 if (setgid(pw
->pw_gid
) < 0) {
1325 /* Initialize the group list. */
1326 if (initgroups(pw
->pw_name
, pw
->pw_gid
) < 0) {
1327 perror("initgroups");
1332 if (options
.gss_authentication
) {
1333 temporarily_use_uid(pw
);
1334 ssh_gssapi_storecreds();
1340 * PAM credentials may take the form of supplementary groups.
1341 * These will have been wiped by the above initgroups() call.
1342 * Reestablish them here.
1344 if (options
.use_pam
) {
1348 # endif /* USE_PAM */
1349 # if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1350 irix_setusercontext(pw
);
1351 # endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
1355 #if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
1356 if (set_id(pw
->pw_name
) != 0) {
1359 #endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
1360 /* Permanently switch to the desired uid. */
1361 permanently_set_uid(pw
);
1368 if (getuid() != pw
->pw_uid
|| geteuid() != pw
->pw_uid
)
1369 fatal("Failed to set uids to %u.", (u_int
) pw
->pw_uid
);
1372 ssh_selinux_setup_exec_context(pw
->pw_name
);
1377 do_pwchange(Session
*s
)
1380 fprintf(stderr
, "WARNING: Your password has expired.\n");
1381 if (s
->ttyfd
!= -1) {
1383 "You must change your password now and login again!\n");
1384 #ifdef PASSWD_NEEDS_USERNAME
1385 execl(_PATH_PASSWD_PROG
, "passwd", s
->pw
->pw_name
,
1388 execl(_PATH_PASSWD_PROG
, "passwd", (char *)NULL
);
1393 "Password change required but no TTY available.\n");
1399 launch_login(struct passwd
*pw
, const char *hostname
)
1401 /* Launch login(1). */
1403 execl(LOGIN_PROGRAM
, "login", "-h", hostname
,
1404 #ifdef xxxLOGIN_NEEDS_TERM
1405 (s
->term
? s
->term
: "unknown"),
1406 #endif /* LOGIN_NEEDS_TERM */
1407 #ifdef LOGIN_NO_ENDOPT
1408 "-p", "-f", pw
->pw_name
, (char *)NULL
);
1410 "-p", "-f", "--", pw
->pw_name
, (char *)NULL
);
1413 /* Login couldn't be executed, die. */
1420 child_close_fds(void)
1424 if (packet_get_connection_in() == packet_get_connection_out())
1425 close(packet_get_connection_in());
1427 close(packet_get_connection_in());
1428 close(packet_get_connection_out());
1431 * Close all descriptors related to channels. They will still remain
1432 * open in the parent.
1434 /* XXX better use close-on-exec? -markus */
1435 channel_close_all();
1438 * Close any extra file descriptors. Note that there may still be
1439 * descriptors left by system functions. They will be closed later.
1444 * Close any extra open file descriptors so that we don't have them
1445 * hanging around in clients. Note that we want to do this after
1446 * initgroups, because at least on Solaris 2.3 it leaves file
1449 for (i
= 3; i
< 64; i
++)
1454 * Performs common processing for the child, such as setting up the
1455 * environment, closing extra file descriptors, setting the user and group
1456 * ids, and executing the command or shell.
1459 do_child(Session
*s
, const char *command
)
1461 extern char **environ
;
1464 const char *shell
, *shell0
, *hostname
= NULL
;
1465 struct passwd
*pw
= s
->pw
;
1467 /* remove hostkey from the child's memory */
1468 destroy_sensitive_data();
1470 /* Force a password change */
1471 if (s
->authctxt
->force_pwchange
) {
1472 do_setusercontext(pw
);
1478 /* login(1) is only called if we execute the login shell */
1479 if (options
.use_login
&& command
!= NULL
)
1480 options
.use_login
= 0;
1483 cray_setup(pw
->pw_uid
, pw
->pw_name
, command
);
1484 #endif /* _UNICOS */
1487 * Login(1) does this as well, and it needs uid 0 for the "-h"
1488 * switch, so we let login(1) to this for us.
1490 if (!options
.use_login
) {
1492 session_setup_sia(pw
, s
->ttyfd
== -1 ? NULL
: s
->tty
);
1493 if (!check_quietlogin(s
, command
))
1495 #else /* HAVE_OSF_SIA */
1496 /* When PAM is enabled we rely on it to do the nologin check */
1497 if (!options
.use_pam
)
1499 do_setusercontext(pw
);
1501 * PAM session modules in do_setusercontext may have
1502 * generated messages, so if this in an interactive
1503 * login then display them too.
1505 if (!check_quietlogin(s
, command
))
1507 #endif /* HAVE_OSF_SIA */
1511 if (options
.use_pam
&& !options
.use_login
&& !is_pam_session_open()) {
1512 debug3("PAM session not opened, exiting");
1519 * Get the shell from the password data. An empty shell field is
1520 * legal, and means /bin/sh.
1522 shell
= (pw
->pw_shell
[0] == '\0') ? _PATH_BSHELL
: pw
->pw_shell
;
1525 * Make sure $SHELL points to the shell from the password file,
1526 * even if shell is overridden from login.conf
1528 env
= do_setup_env(s
, shell
);
1530 #ifdef HAVE_LOGIN_CAP
1531 shell
= login_getcapstr(lc
, "shell", (char *)shell
, (char *)shell
);
1534 /* we have to stash the hostname before we close our socket. */
1535 if (options
.use_login
)
1536 hostname
= get_remote_name_or_ip(utmp_len
,
1539 * Close the connection descriptors; note that this is the child, and
1540 * the server will still have the socket open, and it is important
1541 * that we do not shutdown it. Note that the descriptors cannot be
1542 * closed before building the environment, as we call
1543 * get_remote_ipaddr there.
1548 * Must take new environment into use so that .ssh/rc,
1549 * /etc/ssh/sshrc and xauth are run in the proper environment.
1553 #if defined(KRB5) && defined(USE_AFS)
1555 * At this point, we check to see if AFS is active and if we have
1556 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1557 * if we can (and need to) extend the ticket into an AFS token. If
1558 * we don't do this, we run into potential problems if the user's
1559 * home directory is in AFS and it's not world-readable.
1562 if (options
.kerberos_get_afs_token
&& k_hasafs() &&
1563 (s
->authctxt
->krb5_ctx
!= NULL
)) {
1566 debug("Getting AFS token");
1570 if (k_afs_cell_of_file(pw
->pw_dir
, cell
, sizeof(cell
)) == 0)
1571 krb5_afslog(s
->authctxt
->krb5_ctx
,
1572 s
->authctxt
->krb5_fwd_ccache
, cell
, NULL
);
1574 krb5_afslog_home(s
->authctxt
->krb5_ctx
,
1575 s
->authctxt
->krb5_fwd_ccache
, NULL
, NULL
, pw
->pw_dir
);
1579 /* Change current directory to the user's home directory. */
1580 if (chdir(pw
->pw_dir
) < 0) {
1581 fprintf(stderr
, "Could not chdir to home directory %s: %s\n",
1582 pw
->pw_dir
, strerror(errno
));
1583 #ifdef HAVE_LOGIN_CAP
1584 if (login_getcapbool(lc
, "requirehome", 0))
1589 if (!options
.use_login
)
1590 do_rc_files(s
, shell
);
1592 /* restore SIGPIPE for child */
1593 signal(SIGPIPE
, SIG_DFL
);
1595 if (options
.use_login
) {
1596 launch_login(pw
, hostname
);
1600 /* Get the last component of the shell name. */
1601 if ((shell0
= strrchr(shell
, '/')) != NULL
)
1607 * If we have no command, execute the shell. In this case, the shell
1608 * name to be passed in argv[0] is preceded by '-' to indicate that
1609 * this is a login shell.
1614 /* Start the shell. Set initial character to '-'. */
1617 if (strlcpy(argv0
+ 1, shell0
, sizeof(argv0
) - 1)
1618 >= sizeof(argv0
) - 1) {
1624 /* Execute the shell. */
1627 execve(shell
, argv
, env
);
1629 /* Executing the shell failed. */
1634 * Execute the command using the user's shell. This uses the -c
1635 * option to execute the command.
1637 argv
[0] = (char *) shell0
;
1639 argv
[2] = (char *) command
;
1641 execve(shell
, argv
, env
);
1650 static int did_init
= 0;
1652 debug("session_new: init");
1653 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1654 sessions
[i
].used
= 0;
1658 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1659 Session
*s
= &sessions
[i
];
1661 memset(s
, 0, sizeof(*s
));
1667 s
->x11_chanids
= NULL
;
1668 debug("session_new: session %d", i
);
1679 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1680 Session
*s
= &sessions
[i
];
1681 debug("dump: used %d session %d %p channel %d pid %ld",
1691 session_open(Authctxt
*authctxt
, int chanid
)
1693 Session
*s
= session_new();
1694 debug("session_open: channel %d", chanid
);
1696 error("no more sessions");
1699 s
->authctxt
= authctxt
;
1700 s
->pw
= authctxt
->pw
;
1701 if (s
->pw
== NULL
|| !authctxt
->valid
)
1702 fatal("no user for session %d", s
->self
);
1703 debug("session_open: session %d: link with channel %d", s
->self
, chanid
);
1709 session_by_tty(char *tty
)
1712 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1713 Session
*s
= &sessions
[i
];
1714 if (s
->used
&& s
->ttyfd
!= -1 && strcmp(s
->tty
, tty
) == 0) {
1715 debug("session_by_tty: session %d tty %s", i
, tty
);
1719 debug("session_by_tty: unknown tty %.100s", tty
);
1725 session_by_channel(int id
)
1728 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1729 Session
*s
= &sessions
[i
];
1730 if (s
->used
&& s
->chanid
== id
) {
1731 debug("session_by_channel: session %d channel %d", i
, id
);
1735 debug("session_by_channel: unknown channel %d", id
);
1741 session_by_x11_channel(int id
)
1745 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1746 Session
*s
= &sessions
[i
];
1748 if (s
->x11_chanids
== NULL
|| !s
->used
)
1750 for (j
= 0; s
->x11_chanids
[j
] != -1; j
++) {
1751 if (s
->x11_chanids
[j
] == id
) {
1752 debug("session_by_x11_channel: session %d "
1753 "channel %d", s
->self
, id
);
1758 debug("session_by_x11_channel: unknown channel %d", id
);
1764 session_by_pid(pid_t pid
)
1767 debug("session_by_pid: pid %ld", (long)pid
);
1768 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
1769 Session
*s
= &sessions
[i
];
1770 if (s
->used
&& s
->pid
== pid
)
1773 error("session_by_pid: unknown pid %ld", (long)pid
);
1779 session_window_change_req(Session
*s
)
1781 s
->col
= packet_get_int();
1782 s
->row
= packet_get_int();
1783 s
->xpixel
= packet_get_int();
1784 s
->ypixel
= packet_get_int();
1786 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
1791 session_pty_req(Session
*s
)
1797 debug("Allocating a pty not permitted for this authentication.");
1800 if (s
->ttyfd
!= -1) {
1801 packet_disconnect("Protocol error: you already have a pty.");
1805 s
->term
= packet_get_string(&len
);
1808 s
->col
= packet_get_int();
1809 s
->row
= packet_get_int();
1811 s
->row
= packet_get_int();
1812 s
->col
= packet_get_int();
1814 s
->xpixel
= packet_get_int();
1815 s
->ypixel
= packet_get_int();
1817 if (strcmp(s
->term
, "") == 0) {
1822 /* Allocate a pty and open it. */
1823 debug("Allocating pty.");
1824 if (!PRIVSEP(pty_allocate(&s
->ptyfd
, &s
->ttyfd
, s
->tty
, sizeof(s
->tty
)))) {
1830 error("session_pty_req: session %d alloc failed", s
->self
);
1833 debug("session_pty_req: session %d alloc %s", s
->self
, s
->tty
);
1835 /* for SSH1 the tty modes length is not given */
1837 n_bytes
= packet_remaining();
1838 tty_parse_modes(s
->ttyfd
, &n_bytes
);
1841 pty_setowner(s
->pw
, s
->tty
);
1843 /* Set window size from the packet. */
1844 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
1847 session_proctitle(s
);
1852 session_subsystem_req(Session
*s
)
1857 char *prog
, *cmd
, *subsys
= packet_get_string(&len
);
1861 logit("subsystem request for %.100s", subsys
);
1863 for (i
= 0; i
< options
.num_subsystems
; i
++) {
1864 if (strcmp(subsys
, options
.subsystem_name
[i
]) == 0) {
1865 prog
= options
.subsystem_command
[i
];
1866 cmd
= options
.subsystem_args
[i
];
1867 if (stat(prog
, &st
) < 0) {
1868 error("subsystem: cannot stat %s: %s", prog
,
1872 debug("subsystem: exec() %s", cmd
);
1873 s
->is_subsystem
= 1;
1881 logit("subsystem request for %.100s failed, subsystem not found",
1889 session_x11_req(Session
*s
)
1893 if (s
->auth_proto
!= NULL
|| s
->auth_data
!= NULL
) {
1894 error("session_x11_req: session %d: "
1895 "x11 forwarding already active", s
->self
);
1898 s
->single_connection
= packet_get_char();
1899 s
->auth_proto
= packet_get_string(NULL
);
1900 s
->auth_data
= packet_get_string(NULL
);
1901 s
->screen
= packet_get_int();
1904 success
= session_setup_x11fwd(s
);
1906 xfree(s
->auth_proto
);
1907 xfree(s
->auth_data
);
1908 s
->auth_proto
= NULL
;
1909 s
->auth_data
= NULL
;
1915 session_shell_req(Session
*s
)
1923 session_exec_req(Session
*s
)
1926 char *command
= packet_get_string(&len
);
1928 do_exec(s
, command
);
1934 session_break_req(Session
*s
)
1937 packet_get_int(); /* ignored */
1940 if (s
->ttyfd
== -1 ||
1941 tcsendbreak(s
->ttyfd
, 0) < 0)
1947 session_env_req(Session
*s
)
1950 u_int name_len
, val_len
, i
;
1952 name
= packet_get_string(&name_len
);
1953 val
= packet_get_string(&val_len
);
1956 /* Don't set too many environment variables */
1957 if (s
->num_env
> 128) {
1958 debug2("Ignoring env request %s: too many env vars", name
);
1962 for (i
= 0; i
< options
.num_accept_env
; i
++) {
1963 if (match_pattern(name
, options
.accept_env
[i
])) {
1964 debug2("Setting env %d: %s=%s", s
->num_env
, name
, val
);
1965 s
->env
= xrealloc(s
->env
, s
->num_env
+ 1,
1967 s
->env
[s
->num_env
].name
= name
;
1968 s
->env
[s
->num_env
].val
= val
;
1973 debug2("Ignoring env request %s: disallowed name", name
);
1982 session_auth_agent_req(Session
*s
)
1984 static int called
= 0;
1986 if (no_agent_forwarding_flag
) {
1987 debug("session_auth_agent_req: no_agent_forwarding_flag");
1994 return auth_input_request_forwarding(s
->pw
);
1999 session_input_channel_req(Channel
*c
, const char *rtype
)
2004 if ((s
= session_by_channel(c
->self
)) == NULL
) {
2005 logit("session_input_channel_req: no session %d req %.100s",
2009 debug("session_input_channel_req: session %d req %s", s
->self
, rtype
);
2012 * a session is in LARVAL state until a shell, a command
2013 * or a subsystem is executed
2015 if (c
->type
== SSH_CHANNEL_LARVAL
) {
2016 if (strcmp(rtype
, "shell") == 0) {
2017 success
= session_shell_req(s
);
2018 } else if (strcmp(rtype
, "exec") == 0) {
2019 success
= session_exec_req(s
);
2020 } else if (strcmp(rtype
, "pty-req") == 0) {
2021 success
= session_pty_req(s
);
2022 } else if (strcmp(rtype
, "x11-req") == 0) {
2023 success
= session_x11_req(s
);
2024 } else if (strcmp(rtype
, "auth-agent-req@openssh.com") == 0) {
2025 success
= session_auth_agent_req(s
);
2026 } else if (strcmp(rtype
, "subsystem") == 0) {
2027 success
= session_subsystem_req(s
);
2028 } else if (strcmp(rtype
, "env") == 0) {
2029 success
= session_env_req(s
);
2032 if (strcmp(rtype
, "window-change") == 0) {
2033 success
= session_window_change_req(s
);
2034 } else if (strcmp(rtype
, "break") == 0) {
2035 success
= session_break_req(s
);
2042 session_set_fds(Session
*s
, int fdin
, int fdout
, int fderr
)
2045 fatal("session_set_fds: called for proto != 2.0");
2047 * now that have a child and a pipe to the child,
2048 * we can activate our channel and register the fd's
2050 if (s
->chanid
== -1)
2051 fatal("no channel for session %d", s
->self
);
2052 channel_set_fds(s
->chanid
,
2054 fderr
== -1 ? CHAN_EXTENDED_IGNORE
: CHAN_EXTENDED_READ
,
2056 CHAN_SES_WINDOW_DEFAULT
);
2060 * Function to perform pty cleanup. Also called if we get aborted abnormally
2061 * (e.g., due to a dropped connection).
2064 session_pty_cleanup2(Session
*s
)
2067 error("session_pty_cleanup: no session");
2073 debug("session_pty_cleanup: session %d release %s", s
->self
, s
->tty
);
2075 /* Record that the user has logged out. */
2077 record_logout(s
->pid
, s
->tty
, s
->pw
->pw_name
);
2079 /* Release the pseudo-tty. */
2081 pty_release(s
->tty
);
2084 * Close the server side of the socket pairs. We must do this after
2085 * the pty cleanup, so that another process doesn't get this pty
2086 * while we're still cleaning up.
2088 if (close(s
->ptymaster
) < 0)
2089 error("close(s->ptymaster/%d): %s", s
->ptymaster
, strerror(errno
));
2091 /* unlink pty from session */
2096 session_pty_cleanup(Session
*s
)
2098 PRIVSEP(session_pty_cleanup2(s
));
2104 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2119 return "SIG@openssh.com";
2123 session_close_x11(int id
)
2127 if ((c
= channel_by_id(id
)) == NULL
) {
2128 debug("session_close_x11: x11 channel %d missing", id
);
2130 /* Detach X11 listener */
2131 debug("session_close_x11: detach x11 channel %d", id
);
2132 channel_cancel_cleanup(id
);
2133 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2139 session_close_single_x11(int id
, void *arg
)
2144 debug3("session_close_single_x11: channel %d", id
);
2145 channel_cancel_cleanup(id
);
2146 if ((s
= session_by_x11_channel(id
)) == NULL
)
2147 fatal("session_close_single_x11: no x11 channel %d", id
);
2148 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2149 debug("session_close_single_x11: session %d: "
2150 "closing channel %d", s
->self
, s
->x11_chanids
[i
]);
2152 * The channel "id" is already closing, but make sure we
2153 * close all of its siblings.
2155 if (s
->x11_chanids
[i
] != id
)
2156 session_close_x11(s
->x11_chanids
[i
]);
2158 xfree(s
->x11_chanids
);
2159 s
->x11_chanids
= NULL
;
2164 if (s
->auth_proto
) {
2165 xfree(s
->auth_proto
);
2166 s
->auth_proto
= NULL
;
2169 xfree(s
->auth_data
);
2170 s
->auth_data
= NULL
;
2172 if (s
->auth_display
) {
2173 xfree(s
->auth_display
);
2174 s
->auth_display
= NULL
;
2179 session_exit_message(Session
*s
, int status
)
2183 if ((c
= channel_lookup(s
->chanid
)) == NULL
)
2184 fatal("session_exit_message: session %d: no channel %d",
2185 s
->self
, s
->chanid
);
2186 debug("session_exit_message: session %d channel %d pid %ld",
2187 s
->self
, s
->chanid
, (long)s
->pid
);
2189 if (WIFEXITED(status
)) {
2190 channel_request_start(s
->chanid
, "exit-status", 0);
2191 packet_put_int(WEXITSTATUS(status
));
2193 } else if (WIFSIGNALED(status
)) {
2194 channel_request_start(s
->chanid
, "exit-signal", 0);
2195 packet_put_cstring(sig2name(WTERMSIG(status
)));
2197 packet_put_char(WCOREDUMP(status
));
2198 #else /* WCOREDUMP */
2200 #endif /* WCOREDUMP */
2201 packet_put_cstring("");
2202 packet_put_cstring("");
2205 /* Some weird exit cause. Just exit. */
2206 packet_disconnect("wait returned status %04x.", status
);
2209 /* disconnect channel */
2210 debug("session_exit_message: release channel %d", s
->chanid
);
2213 * Adjust cleanup callback attachment to send close messages when
2214 * the channel gets EOF. The session will be then be closed
2215 * by session_close_by_channel when the childs close their fds.
2217 channel_register_cleanup(c
->self
, session_close_by_channel
, 1);
2220 * emulate a write failure with 'chan_write_failed', nobody will be
2221 * interested in data we write.
2222 * Note that we must not call 'chan_read_failed', since there could
2223 * be some more data waiting in the pipe.
2225 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2226 chan_write_failed(c
);
2230 session_close(Session
*s
)
2234 debug("session_close: session %d pid %ld", s
->self
, (long)s
->pid
);
2236 session_pty_cleanup(s
);
2242 xfree(s
->x11_chanids
);
2243 if (s
->auth_display
)
2244 xfree(s
->auth_display
);
2246 xfree(s
->auth_data
);
2248 xfree(s
->auth_proto
);
2250 for (i
= 0; i
< s
->num_env
; i
++) {
2251 xfree(s
->env
[i
].name
);
2252 xfree(s
->env
[i
].val
);
2256 session_proctitle(s
);
2260 session_close_by_pid(pid_t pid
, int status
)
2262 Session
*s
= session_by_pid(pid
);
2264 debug("session_close_by_pid: no session for pid %ld",
2268 if (s
->chanid
!= -1)
2269 session_exit_message(s
, status
);
2271 session_pty_cleanup(s
);
2276 * this is called when a channel dies before
2277 * the session 'child' itself dies
2280 session_close_by_channel(int id
, void *arg
)
2282 Session
*s
= session_by_channel(id
);
2286 debug("session_close_by_channel: no session for id %d", id
);
2289 debug("session_close_by_channel: channel %d child %ld",
2292 debug("session_close_by_channel: channel %d: has child", id
);
2294 * delay detach of session, but release pty, since
2295 * the fd's to the child are already closed
2298 session_pty_cleanup(s
);
2301 /* detach by removing callback */
2302 channel_cancel_cleanup(s
->chanid
);
2304 /* Close any X11 listeners associated with this session */
2305 if (s
->x11_chanids
!= NULL
) {
2306 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2307 session_close_x11(s
->x11_chanids
[i
]);
2308 s
->x11_chanids
[i
] = -1;
2317 session_destroy_all(void (*closefunc
)(Session
*))
2320 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
2321 Session
*s
= &sessions
[i
];
2323 if (closefunc
!= NULL
)
2332 session_tty_list(void)
2334 static char buf
[1024];
2339 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
2340 Session
*s
= &sessions
[i
];
2341 if (s
->used
&& s
->ttyfd
!= -1) {
2343 if (strncmp(s
->tty
, "/dev/", 5) != 0) {
2344 cp
= strrchr(s
->tty
, '/');
2345 cp
= (cp
== NULL
) ? s
->tty
: cp
+ 1;
2350 strlcat(buf
, ",", sizeof buf
);
2351 strlcat(buf
, cp
, sizeof buf
);
2355 strlcpy(buf
, "notty", sizeof buf
);
2360 session_proctitle(Session
*s
)
2363 error("no user for session %d", s
->self
);
2365 setproctitle("%s@%s", s
->pw
->pw_name
, session_tty_list());
2369 session_setup_x11fwd(Session
*s
)
2372 char display
[512], auth_display
[512];
2373 char hostname
[MAXHOSTNAMELEN
];
2376 if (no_x11_forwarding_flag
) {
2377 packet_send_debug("X11 forwarding disabled in user configuration file.");
2380 if (!options
.x11_forwarding
) {
2381 debug("X11 forwarding disabled in server configuration file.");
2384 if (!options
.xauth_location
||
2385 (stat(options
.xauth_location
, &st
) == -1)) {
2386 packet_send_debug("No xauth program; cannot forward with spoofing.");
2389 if (options
.use_login
) {
2390 packet_send_debug("X11 forwarding disabled; "
2391 "not compatible with UseLogin=yes.");
2394 if (s
->display
!= NULL
) {
2395 debug("X11 display already set.");
2398 if (x11_create_display_inet(options
.x11_display_offset
,
2399 options
.x11_use_localhost
, s
->single_connection
,
2400 &s
->display_number
, &s
->x11_chanids
) == -1) {
2401 debug("x11_create_display_inet failed.");
2404 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2405 channel_register_cleanup(s
->x11_chanids
[i
],
2406 session_close_single_x11
, 0);
2409 /* Set up a suitable value for the DISPLAY variable. */
2410 if (gethostname(hostname
, sizeof(hostname
)) < 0)
2411 fatal("gethostname: %.100s", strerror(errno
));
2413 * auth_display must be used as the displayname when the
2414 * authorization entry is added with xauth(1). This will be
2415 * different than the DISPLAY string for localhost displays.
2417 if (options
.x11_use_localhost
) {
2418 snprintf(display
, sizeof display
, "localhost:%u.%u",
2419 s
->display_number
, s
->screen
);
2420 snprintf(auth_display
, sizeof auth_display
, "unix:%u.%u",
2421 s
->display_number
, s
->screen
);
2422 s
->display
= xstrdup(display
);
2423 s
->auth_display
= xstrdup(auth_display
);
2425 #ifdef IPADDR_IN_DISPLAY
2427 struct in_addr my_addr
;
2429 he
= gethostbyname(hostname
);
2431 error("Can't get IP address for X11 DISPLAY.");
2432 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2435 memcpy(&my_addr
, he
->h_addr_list
[0], sizeof(struct in_addr
));
2436 snprintf(display
, sizeof display
, "%.50s:%u.%u", inet_ntoa(my_addr
),
2437 s
->display_number
, s
->screen
);
2439 snprintf(display
, sizeof display
, "%.400s:%u.%u", hostname
,
2440 s
->display_number
, s
->screen
);
2442 s
->display
= xstrdup(display
);
2443 s
->auth_display
= xstrdup(display
);
2450 do_authenticated2(Authctxt
*authctxt
)
2452 server_loop2(authctxt
);
2456 do_cleanup(Authctxt
*authctxt
)
2458 static int called
= 0;
2460 debug("do_cleanup");
2462 /* no cleanup if we're in the child for login shell */
2466 /* avoid double cleanup */
2471 if (authctxt
== NULL
)
2474 if (options
.kerberos_ticket_cleanup
&&
2476 krb5_cleanup_proc(authctxt
);
2480 if (compat20
&& options
.gss_cleanup_creds
)
2481 ssh_gssapi_cleanup_creds();
2485 if (options
.use_pam
) {
2487 sshpam_thread_cleanup();
2491 /* remove agent socket */
2492 auth_sock_cleanup_proc(authctxt
->pw
);
2495 * Cleanup ptys/utmp only if privsep is disabled,
2496 * or if running in monitor.
2498 if (!use_privsep
|| mm_is_monitor())
2499 session_destroy_all(session_pty_cleanup2
);