1 /* $OpenBSD: session.c,v 1.238 2008/05/09 16:16:06 markus 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 #include <sys/param.h>
40 #ifdef HAVE_SYS_STAT_H
41 # include <sys/stat.h>
43 #include <sys/socket.h>
47 #include <arpa/inet.h>
62 #include "openbsd-compat/sys-queue.h"
81 #include "auth-options.h"
82 #include "pathnames.h"
86 #include "serverloop.h"
91 #include "monitor_wrap.h"
94 #if defined(KRB5) && defined(USE_AFS)
100 Session
*session_new(void);
101 void session_set_fds(Session
*, int, int, int);
102 void session_pty_cleanup(Session
*);
103 void session_proctitle(Session
*);
104 int session_setup_x11fwd(Session
*);
105 int do_exec_pty(Session
*, const char *);
106 int do_exec_no_pty(Session
*, const char *);
107 int do_exec(Session
*, const char *);
108 void do_login(Session
*, const char *);
109 #ifdef LOGIN_NEEDS_UTMPX
110 static void do_pre_login(Session
*s
);
112 void do_child(Session
*, const char *);
114 int check_quietlogin(Session
*, const char *);
116 static void do_authenticated1(Authctxt
*);
117 static void do_authenticated2(Authctxt
*);
119 static int session_pty_req(Session
*);
122 extern ServerOptions options
;
123 extern char *__progname
;
124 extern int log_stderr
;
125 extern int debug_flag
;
126 extern u_int utmp_len
;
127 extern int startup_pipe
;
128 extern void destroy_sensitive_data(void);
129 extern Buffer loginmsg
;
131 /* original command from peer. */
132 const char *original_command
= NULL
;
135 static int sessions_first_unused
= -1;
136 static int sessions_nalloc
= 0;
137 static Session
*sessions
= NULL
;
139 #define SUBSYSTEM_NONE 0
140 #define SUBSYSTEM_EXT 1
141 #define SUBSYSTEM_INT_SFTP 2
143 #ifdef HAVE_LOGIN_CAP
147 static int is_child
= 0;
149 /* Name and directory of socket for authentication agent forwarding. */
150 static char *auth_sock_name
= NULL
;
151 static char *auth_sock_dir
= NULL
;
153 /* removes the agent forwarding socket */
156 auth_sock_cleanup_proc(struct passwd
*pw
)
158 if (auth_sock_name
!= NULL
) {
159 temporarily_use_uid(pw
);
160 unlink(auth_sock_name
);
161 rmdir(auth_sock_dir
);
162 auth_sock_name
= NULL
;
168 auth_input_request_forwarding(struct passwd
* pw
)
172 struct sockaddr_un sunaddr
;
174 if (auth_sock_name
!= NULL
) {
175 error("authentication forwarding requested twice.");
179 /* Temporarily drop privileged uid for mkdir/bind. */
180 temporarily_use_uid(pw
);
182 /* Allocate a buffer for the socket name, and format the name. */
183 auth_sock_dir
= xstrdup("/tmp/ssh-XXXXXXXXXX");
185 /* Create private directory for socket */
186 if (mkdtemp(auth_sock_dir
) == NULL
) {
187 packet_send_debug("Agent forwarding disabled: "
188 "mkdtemp() failed: %.100s", strerror(errno
));
190 xfree(auth_sock_dir
);
191 auth_sock_dir
= NULL
;
195 xasprintf(&auth_sock_name
, "%s/agent.%ld",
196 auth_sock_dir
, (long) getpid());
198 /* Create the socket. */
199 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
201 error("socket: %.100s", strerror(errno
));
206 /* Bind it to the name. */
207 memset(&sunaddr
, 0, sizeof(sunaddr
));
208 sunaddr
.sun_family
= AF_UNIX
;
209 strlcpy(sunaddr
.sun_path
, auth_sock_name
, sizeof(sunaddr
.sun_path
));
211 if (bind(sock
, (struct sockaddr
*)&sunaddr
, sizeof(sunaddr
)) < 0) {
212 error("bind: %.100s", strerror(errno
));
217 /* Restore the privileged uid. */
220 /* Start listening on the socket. */
221 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
222 error("listen: %.100s", strerror(errno
));
226 /* Allocate a channel for the authentication agent socket. */
227 nc
= channel_new("auth socket",
228 SSH_CHANNEL_AUTH_SOCKET
, sock
, sock
, -1,
229 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
230 0, "auth socket", 1);
231 strlcpy(nc
->path
, auth_sock_name
, sizeof(nc
->path
));
235 if (auth_sock_name
!= NULL
)
236 xfree(auth_sock_name
);
237 if (auth_sock_dir
!= NULL
) {
238 rmdir(auth_sock_dir
);
239 xfree(auth_sock_dir
);
243 auth_sock_name
= NULL
;
244 auth_sock_dir
= NULL
;
249 display_loginmsg(void)
251 if (buffer_len(&loginmsg
) > 0) {
252 buffer_append(&loginmsg
, "\0", 1);
253 printf("%s", (char *)buffer_ptr(&loginmsg
));
254 buffer_clear(&loginmsg
);
259 do_authenticated(Authctxt
*authctxt
)
261 setproctitle("%s", authctxt
->pw
->pw_name
);
263 /* setup the channel layer */
264 if (!no_port_forwarding_flag
&& options
.allow_tcp_forwarding
)
265 channel_permit_all_opens();
268 do_authenticated2(authctxt
);
270 do_authenticated1(authctxt
);
272 do_cleanup(authctxt
);
276 * Prepares for an interactive session. This is called after the user has
277 * been successfully authenticated. During this message exchange, pseudo
278 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
279 * are requested, etc.
282 do_authenticated1(Authctxt
*authctxt
)
286 int success
, type
, screen_flag
;
287 int enable_compression_after_reply
= 0;
288 u_int proto_len
, data_len
, dlen
, compression_level
= 0;
292 error("no more sessions");
295 s
->authctxt
= authctxt
;
296 s
->pw
= authctxt
->pw
;
299 * We stay in this loop until the client requests to execute a shell
305 /* Get a packet from the client. */
306 type
= packet_read();
308 /* Process the packet. */
310 case SSH_CMSG_REQUEST_COMPRESSION
:
311 compression_level
= packet_get_int();
313 if (compression_level
< 1 || compression_level
> 9) {
314 packet_send_debug("Received invalid compression level %d.",
318 if (options
.compression
== COMP_NONE
) {
319 debug2("compression disabled");
322 /* Enable compression after we have responded with SUCCESS. */
323 enable_compression_after_reply
= 1;
327 case SSH_CMSG_REQUEST_PTY
:
328 success
= session_pty_req(s
);
331 case SSH_CMSG_X11_REQUEST_FORWARDING
:
332 s
->auth_proto
= packet_get_string(&proto_len
);
333 s
->auth_data
= packet_get_string(&data_len
);
335 screen_flag
= packet_get_protocol_flags() &
336 SSH_PROTOFLAG_SCREEN_NUMBER
;
337 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag
);
339 if (packet_remaining() == 4) {
341 debug2("Buggy client: "
342 "X11 screen flag missing");
343 s
->screen
= packet_get_int();
348 success
= session_setup_x11fwd(s
);
350 xfree(s
->auth_proto
);
352 s
->auth_proto
= NULL
;
357 case SSH_CMSG_AGENT_REQUEST_FORWARDING
:
358 if (!options
.allow_agent_forwarding
||
359 no_agent_forwarding_flag
|| compat13
) {
360 debug("Authentication agent forwarding not permitted for this authentication.");
363 debug("Received authentication agent forwarding request.");
364 success
= auth_input_request_forwarding(s
->pw
);
367 case SSH_CMSG_PORT_FORWARD_REQUEST
:
368 if (no_port_forwarding_flag
) {
369 debug("Port forwarding not permitted for this authentication.");
372 if (!options
.allow_tcp_forwarding
) {
373 debug("Port forwarding not permitted.");
376 debug("Received TCP/IP port forwarding request.");
377 if (channel_input_port_forward_request(s
->pw
->pw_uid
== 0,
378 options
.gateway_ports
) < 0) {
379 debug("Port forwarding failed.");
385 case SSH_CMSG_MAX_PACKET_SIZE
:
386 if (packet_set_maxsize(packet_get_int()) > 0)
390 case SSH_CMSG_EXEC_SHELL
:
391 case SSH_CMSG_EXEC_CMD
:
392 if (type
== SSH_CMSG_EXEC_CMD
) {
393 command
= packet_get_string(&dlen
);
394 debug("Exec command '%.500s'", command
);
395 if (do_exec(s
, command
) != 0)
397 "command execution failed");
400 if (do_exec(s
, NULL
) != 0)
402 "shell execution failed");
410 * Any unknown messages in this phase are ignored,
411 * and a failure message is returned.
413 logit("Unknown packet type received after authentication: %d", type
);
415 packet_start(success
? SSH_SMSG_SUCCESS
: SSH_SMSG_FAILURE
);
419 /* Enable compression now that we have replied if appropriate. */
420 if (enable_compression_after_reply
) {
421 enable_compression_after_reply
= 0;
422 packet_start_compression(compression_level
);
429 * This is called to fork and execute a command when we have no tty. This
430 * will call do_child from the child, and server_loop from the parent after
431 * setting up file descriptors and such.
434 do_exec_no_pty(Session
*s
, const char *command
)
439 int pin
[2], pout
[2], perr
[2];
441 /* Allocate pipes for communicating with the program. */
443 error("%s: pipe in: %.100s", __func__
, strerror(errno
));
446 if (pipe(pout
) < 0) {
447 error("%s: pipe out: %.100s", __func__
, strerror(errno
));
452 if (pipe(perr
) < 0) {
453 error("%s: pipe err: %.100s", __func__
, strerror(errno
));
461 int inout
[2], err
[2];
463 /* Uses socket pairs to communicate with the program. */
464 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, inout
) < 0) {
465 error("%s: socketpair #1: %.100s", __func__
, strerror(errno
));
468 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, err
) < 0) {
469 error("%s: socketpair #2: %.100s", __func__
, strerror(errno
));
477 fatal("do_exec_no_pty: no session");
479 session_proctitle(s
);
481 /* Fork the child. */
482 switch ((pid
= fork())) {
484 error("%s: fork: %.100s", __func__
, strerror(errno
));
502 /* Child. Reinitialize the log since the pid has changed. */
503 log_init(__progname
, options
.log_level
,
504 options
.log_facility
, log_stderr
);
507 * Create a new session and process group since the 4.4BSD
508 * setlogin() affects the entire process group.
511 error("setsid failed: %.100s", strerror(errno
));
515 * Redirect stdin. We close the parent side of the socket
516 * pair, and make the child side the standard input.
519 if (dup2(pin
[0], 0) < 0)
520 perror("dup2 stdin");
523 /* Redirect stdout. */
525 if (dup2(pout
[1], 1) < 0)
526 perror("dup2 stdout");
529 /* Redirect stderr. */
531 if (dup2(perr
[1], 2) < 0)
532 perror("dup2 stderr");
536 * Redirect stdin, stdout, and stderr. Stdin and stdout will
537 * use the same socket, as some programs (particularly rdist)
538 * seem to depend on it.
542 if (dup2(inout
[0], 0) < 0) /* stdin */
543 perror("dup2 stdin");
544 if (dup2(inout
[0], 1) < 0) /* stdout (same as stdin) */
545 perror("dup2 stdout");
547 if (dup2(err
[0], 2) < 0) /* stderr */
548 perror("dup2 stderr");
554 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
557 /* Do processing for the child (exec command etc). */
558 do_child(s
, command
);
565 signal(WJSIGNAL
, cray_job_termination_handler
);
569 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
573 /* Set interactive/non-interactive mode. */
574 packet_set_interactive(s
->display
!= NULL
);
577 * Clear loginmsg, since it's the child's responsibility to display
578 * it to the user, otherwise multiple sessions may accumulate
579 * multiple copies of the login messages.
581 buffer_clear(&loginmsg
);
584 /* We are the parent. Close the child sides of the pipes. */
590 if (s
->is_subsystem
) {
594 session_set_fds(s
, pin
[1], pout
[0], perr
[0]);
596 /* Enter the interactive session. */
597 server_loop(pid
, pin
[1], pout
[0], perr
[0]);
598 /* server_loop has closed pin[1], pout[0], and perr[0]. */
601 /* We are the parent. Close the child sides of the socket pairs. */
606 * Enter the interactive session. Note: server_loop must be able to
607 * handle the case that fdin and fdout are the same.
610 session_set_fds(s
, inout
[1], inout
[1],
611 s
->is_subsystem
? -1 : err
[1]);
615 server_loop(pid
, inout
[1], inout
[1], err
[1]);
616 /* server_loop has closed inout[1] and err[1]. */
623 * This is called to fork and execute a command when we have a tty. This
624 * will call do_child from the child, and server_loop from the parent after
625 * setting up file descriptors, controlling tty, updating wtmp, utmp,
626 * lastlog, and other such operations.
629 do_exec_pty(Session
*s
, const char *command
)
631 int fdout
, ptyfd
, ttyfd
, ptymaster
;
635 fatal("do_exec_pty: no session");
640 * Create another descriptor of the pty master side for use as the
641 * standard input. We could use the original descriptor, but this
642 * simplifies code in server_loop. The descriptor is bidirectional.
643 * Do this before forking (and cleanup in the child) so as to
644 * detect and gracefully fail out-of-fd conditions.
646 if ((fdout
= dup(ptyfd
)) < 0) {
647 error("%s: dup #1: %s", __func__
, strerror(errno
));
652 /* we keep a reference to the pty master */
653 if ((ptymaster
= dup(ptyfd
)) < 0) {
654 error("%s: dup #2: %s", __func__
, strerror(errno
));
661 /* Fork the child. */
662 switch ((pid
= fork())) {
664 error("%s: fork: %.100s", __func__
, strerror(errno
));
676 /* Child. Reinitialize the log because the pid has changed. */
677 log_init(__progname
, options
.log_level
,
678 options
.log_facility
, log_stderr
);
679 /* Close the master side of the pseudo tty. */
682 /* Make the pseudo tty our controlling tty. */
683 pty_make_controlling_tty(&ttyfd
, s
->tty
);
685 /* Redirect stdin/stdout/stderr from the pseudo tty. */
686 if (dup2(ttyfd
, 0) < 0)
687 error("dup2 stdin: %s", strerror(errno
));
688 if (dup2(ttyfd
, 1) < 0)
689 error("dup2 stdout: %s", strerror(errno
));
690 if (dup2(ttyfd
, 2) < 0)
691 error("dup2 stderr: %s", strerror(errno
));
693 /* Close the extra descriptor for the pseudo tty. */
696 /* record login, etc. similar to login(1) */
698 if (!(options
.use_login
&& command
== NULL
)) {
700 cray_init_job(s
->pw
); /* set up cray jid and tmpdir */
702 do_login(s
, command
);
704 # ifdef LOGIN_NEEDS_UTMPX
710 * Do common processing for the child, such as execing
713 do_child(s
, command
);
720 signal(WJSIGNAL
, cray_job_termination_handler
);
724 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE
);
729 /* Parent. Close the slave side of the pseudo tty. */
732 /* Enter interactive session. */
733 s
->ptymaster
= ptymaster
;
734 packet_set_interactive(1);
736 session_set_fds(s
, ptyfd
, fdout
, -1);
738 server_loop(pid
, ptyfd
, fdout
, -1);
739 /* server_loop _has_ closed ptyfd and fdout. */
744 #ifdef LOGIN_NEEDS_UTMPX
746 do_pre_login(Session
*s
)
749 struct sockaddr_storage from
;
750 pid_t pid
= getpid();
753 * Get IP address of client. If the connection is not a socket, let
754 * the address be 0.0.0.0.
756 memset(&from
, 0, sizeof(from
));
757 fromlen
= sizeof(from
);
758 if (packet_connection_is_on_socket()) {
759 if (getpeername(packet_get_connection_in(),
760 (struct sockaddr
*)&from
, &fromlen
) < 0) {
761 debug("getpeername: %.100s", strerror(errno
));
766 record_utmp_only(pid
, s
->tty
, s
->pw
->pw_name
,
767 get_remote_name_or_ip(utmp_len
, options
.use_dns
),
768 (struct sockaddr
*)&from
, fromlen
);
773 * This is called to fork and execute a command. If another command is
774 * to be forced, execute that instead.
777 do_exec(Session
*s
, const char *command
)
781 if (options
.adm_forced_command
) {
782 original_command
= command
;
783 command
= options
.adm_forced_command
;
784 if (strcmp(INTERNAL_SFTP_NAME
, command
) == 0)
785 s
->is_subsystem
= SUBSYSTEM_INT_SFTP
;
786 else if (s
->is_subsystem
)
787 s
->is_subsystem
= SUBSYSTEM_EXT
;
788 debug("Forced command (config) '%.900s'", command
);
789 } else if (forced_command
) {
790 original_command
= command
;
791 command
= forced_command
;
792 if (strcmp(INTERNAL_SFTP_NAME
, command
) == 0)
793 s
->is_subsystem
= SUBSYSTEM_INT_SFTP
;
794 else if (s
->is_subsystem
)
795 s
->is_subsystem
= SUBSYSTEM_EXT
;
796 debug("Forced command (key option) '%.900s'", command
);
799 #ifdef SSH_AUDIT_EVENTS
801 PRIVSEP(audit_run_command(command
));
802 else if (s
->ttyfd
== -1) {
803 char *shell
= s
->pw
->pw_shell
;
805 if (shell
[0] == '\0') /* empty shell means /bin/sh */
807 PRIVSEP(audit_run_command(shell
));
811 ret
= do_exec_pty(s
, command
);
813 ret
= do_exec_no_pty(s
, command
);
815 original_command
= NULL
;
818 * Clear loginmsg: it's the child's responsibility to display
819 * it to the user, otherwise multiple sessions may accumulate
820 * multiple copies of the login messages.
822 buffer_clear(&loginmsg
);
827 /* administrative, login(1)-like work */
829 do_login(Session
*s
, const char *command
)
832 struct sockaddr_storage from
;
833 struct passwd
* pw
= s
->pw
;
834 pid_t pid
= getpid();
837 * Get IP address of client. If the connection is not a socket, let
838 * the address be 0.0.0.0.
840 memset(&from
, 0, sizeof(from
));
841 fromlen
= sizeof(from
);
842 if (packet_connection_is_on_socket()) {
843 if (getpeername(packet_get_connection_in(),
844 (struct sockaddr
*) & from
, &fromlen
) < 0) {
845 debug("getpeername: %.100s", strerror(errno
));
850 /* Record that there was a login on that tty from the remote host. */
852 record_login(pid
, s
->tty
, pw
->pw_name
, pw
->pw_uid
,
853 get_remote_name_or_ip(utmp_len
,
855 (struct sockaddr
*)&from
, fromlen
);
859 * If password change is needed, do it now.
860 * This needs to occur before the ~/.hushlogin check.
862 if (options
.use_pam
&& !use_privsep
&& s
->authctxt
->force_pwchange
) {
865 s
->authctxt
->force_pwchange
= 0;
866 /* XXX - signal [net] parent to enable forwardings */
870 if (check_quietlogin(s
, command
))
879 * Display the message of the day.
887 if (options
.print_motd
) {
888 #ifdef HAVE_LOGIN_CAP
889 f
= fopen(login_getcapstr(lc
, "welcome", "/etc/motd",
892 f
= fopen("/etc/motd", "r");
895 while (fgets(buf
, sizeof(buf
), f
))
904 * Check for quiet login, either .hushlogin or command given.
907 check_quietlogin(Session
*s
, const char *command
)
910 struct passwd
*pw
= s
->pw
;
913 /* Return 1 if .hushlogin exists or a command given. */
916 snprintf(buf
, sizeof(buf
), "%.200s/.hushlogin", pw
->pw_dir
);
917 #ifdef HAVE_LOGIN_CAP
918 if (login_getcapbool(lc
, "hushlogin", 0) || stat(buf
, &st
) >= 0)
921 if (stat(buf
, &st
) >= 0)
928 * Sets the value of the given variable in the environment. If the variable
929 * already exists, its value is overriden.
932 child_set_env(char ***envp
, u_int
*envsizep
, const char *name
,
940 * If we're passed an uninitialized list, allocate a single null
941 * entry before continuing.
943 if (*envp
== NULL
&& *envsizep
== 0) {
944 *envp
= xmalloc(sizeof(char *));
950 * Find the slot where the value should be stored. If the variable
951 * already exists, we reuse the slot; otherwise we append a new slot
952 * at the end of the array, expanding if necessary.
955 namelen
= strlen(name
);
956 for (i
= 0; env
[i
]; i
++)
957 if (strncmp(env
[i
], name
, namelen
) == 0 && env
[i
][namelen
] == '=')
960 /* Reuse the slot. */
963 /* New variable. Expand if necessary. */
965 if (i
>= envsize
- 1) {
967 fatal("child_set_env: too many env vars");
969 env
= (*envp
) = xrealloc(env
, envsize
, sizeof(char *));
972 /* Need to set the NULL pointer at end of array beyond the new slot. */
976 /* Allocate space and format the variable in the appropriate slot. */
977 env
[i
] = xmalloc(strlen(name
) + 1 + strlen(value
) + 1);
978 snprintf(env
[i
], strlen(name
) + 1 + strlen(value
) + 1, "%s=%s", name
, value
);
982 * Reads environment variables from the given file and adds/overrides them
983 * into the environment. If the file does not exist, this does nothing.
984 * Otherwise, it must consist of empty lines, comments (line starts with '#')
985 * and assignments of the form name=value. No other forms are allowed.
988 read_environment_file(char ***env
, u_int
*envsize
,
989 const char *filename
)
996 f
= fopen(filename
, "r");
1000 while (fgets(buf
, sizeof(buf
), f
)) {
1001 if (++lineno
> 1000)
1002 fatal("Too many lines in environment file %s", filename
);
1003 for (cp
= buf
; *cp
== ' ' || *cp
== '\t'; cp
++)
1005 if (!*cp
|| *cp
== '#' || *cp
== '\n')
1008 cp
[strcspn(cp
, "\n")] = '\0';
1010 value
= strchr(cp
, '=');
1011 if (value
== NULL
) {
1012 fprintf(stderr
, "Bad line %u in %.100s\n", lineno
,
1017 * Replace the equals sign by nul, and advance value to
1022 child_set_env(env
, envsize
, cp
, value
);
1027 #ifdef HAVE_ETC_DEFAULT_LOGIN
1029 * Return named variable from specified environment, or NULL if not present.
1032 child_get_env(char **env
, const char *name
)
1038 for (i
=0; env
[i
] != NULL
; i
++)
1039 if (strncmp(name
, env
[i
], len
) == 0 && env
[i
][len
] == '=')
1040 return(env
[i
] + len
+ 1);
1045 * Read /etc/default/login.
1046 * We pick up the PATH (or SUPATH for root) and UMASK.
1049 read_etc_default_login(char ***env
, u_int
*envsize
, uid_t uid
)
1051 char **tmpenv
= NULL
, *var
;
1052 u_int i
, tmpenvsize
= 0;
1056 * We don't want to copy the whole file to the child's environment,
1057 * so we use a temporary environment and copy the variables we're
1060 read_environment_file(&tmpenv
, &tmpenvsize
, "/etc/default/login");
1066 var
= child_get_env(tmpenv
, "SUPATH");
1068 var
= child_get_env(tmpenv
, "PATH");
1070 child_set_env(env
, envsize
, "PATH", var
);
1072 if ((var
= child_get_env(tmpenv
, "UMASK")) != NULL
)
1073 if (sscanf(var
, "%5lo", &mask
) == 1)
1074 umask((mode_t
)mask
);
1076 for (i
= 0; tmpenv
[i
] != NULL
; i
++)
1080 #endif /* HAVE_ETC_DEFAULT_LOGIN */
1083 copy_environment(char **source
, char ***env
, u_int
*envsize
)
1085 char *var_name
, *var_val
;
1091 for(i
= 0; source
[i
] != NULL
; i
++) {
1092 var_name
= xstrdup(source
[i
]);
1093 if ((var_val
= strstr(var_name
, "=")) == NULL
) {
1099 debug3("Copy environment: %s=%s", var_name
, var_val
);
1100 child_set_env(env
, envsize
, var_name
, var_val
);
1107 do_setup_env(Session
*s
, const char *shell
)
1112 struct passwd
*pw
= s
->pw
;
1113 #ifndef HAVE_LOGIN_CAP
1117 /* Initialize the environment. */
1119 env
= xcalloc(envsize
, sizeof(char *));
1124 * The Windows environment contains some setting which are
1125 * important for a running system. They must not be dropped.
1130 p
= fetch_windows_environment();
1131 copy_environment(p
, &env
, &envsize
);
1132 free_windows_environment(p
);
1137 /* Allow any GSSAPI methods that we've used to alter
1138 * the childs environment as they see fit
1140 ssh_gssapi_do_child(&env
, &envsize
);
1143 if (!options
.use_login
) {
1144 /* Set basic environment. */
1145 for (i
= 0; i
< s
->num_env
; i
++)
1146 child_set_env(&env
, &envsize
, s
->env
[i
].name
,
1149 child_set_env(&env
, &envsize
, "USER", pw
->pw_name
);
1150 child_set_env(&env
, &envsize
, "LOGNAME", pw
->pw_name
);
1152 child_set_env(&env
, &envsize
, "LOGIN", pw
->pw_name
);
1154 child_set_env(&env
, &envsize
, "HOME", pw
->pw_dir
);
1155 #ifdef HAVE_LOGIN_CAP
1156 if (setusercontext(lc
, pw
, pw
->pw_uid
, LOGIN_SETPATH
) < 0)
1157 child_set_env(&env
, &envsize
, "PATH", _PATH_STDPATH
);
1159 child_set_env(&env
, &envsize
, "PATH", getenv("PATH"));
1160 #else /* HAVE_LOGIN_CAP */
1161 # ifndef HAVE_CYGWIN
1163 * There's no standard path on Windows. The path contains
1164 * important components pointing to the system directories,
1165 * needed for loading shared libraries. So the path better
1166 * remains intact here.
1168 # ifdef HAVE_ETC_DEFAULT_LOGIN
1169 read_etc_default_login(&env
, &envsize
, pw
->pw_uid
);
1170 path
= child_get_env(env
, "PATH");
1171 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1172 if (path
== NULL
|| *path
== '\0') {
1173 child_set_env(&env
, &envsize
, "PATH",
1174 s
->pw
->pw_uid
== 0 ?
1175 SUPERUSER_PATH
: _PATH_STDPATH
);
1177 # endif /* HAVE_CYGWIN */
1178 #endif /* HAVE_LOGIN_CAP */
1180 snprintf(buf
, sizeof buf
, "%.200s/%.50s",
1181 _PATH_MAILDIR
, pw
->pw_name
);
1182 child_set_env(&env
, &envsize
, "MAIL", buf
);
1184 /* Normal systems set SHELL by default. */
1185 child_set_env(&env
, &envsize
, "SHELL", shell
);
1188 child_set_env(&env
, &envsize
, "TZ", getenv("TZ"));
1190 /* Set custom environment options from RSA authentication. */
1191 if (!options
.use_login
) {
1192 while (custom_environment
) {
1193 struct envstring
*ce
= custom_environment
;
1196 for (i
= 0; str
[i
] != '=' && str
[i
]; i
++)
1198 if (str
[i
] == '=') {
1200 child_set_env(&env
, &envsize
, str
, str
+ i
+ 1);
1202 custom_environment
= ce
->next
;
1208 /* SSH_CLIENT deprecated */
1209 snprintf(buf
, sizeof buf
, "%.50s %d %d",
1210 get_remote_ipaddr(), get_remote_port(), get_local_port());
1211 child_set_env(&env
, &envsize
, "SSH_CLIENT", buf
);
1213 laddr
= get_local_ipaddr(packet_get_connection_in());
1214 snprintf(buf
, sizeof buf
, "%.50s %d %.50s %d",
1215 get_remote_ipaddr(), get_remote_port(), laddr
, get_local_port());
1217 child_set_env(&env
, &envsize
, "SSH_CONNECTION", buf
);
1220 child_set_env(&env
, &envsize
, "SSH_TTY", s
->tty
);
1222 child_set_env(&env
, &envsize
, "TERM", s
->term
);
1224 child_set_env(&env
, &envsize
, "DISPLAY", s
->display
);
1225 if (original_command
)
1226 child_set_env(&env
, &envsize
, "SSH_ORIGINAL_COMMAND",
1230 if (cray_tmpdir
[0] != '\0')
1231 child_set_env(&env
, &envsize
, "TMPDIR", cray_tmpdir
);
1232 #endif /* _UNICOS */
1235 * Since we clear KRB5CCNAME at startup, if it's set now then it
1236 * must have been set by a native authentication method (eg AIX or
1237 * SIA), so copy it to the child.
1242 if ((cp
= getenv("KRB5CCNAME")) != NULL
)
1243 child_set_env(&env
, &envsize
, "KRB5CCNAME", cp
);
1250 if ((cp
= getenv("AUTHSTATE")) != NULL
)
1251 child_set_env(&env
, &envsize
, "AUTHSTATE", cp
);
1252 read_environment_file(&env
, &envsize
, "/etc/environment");
1256 if (s
->authctxt
->krb5_ccname
)
1257 child_set_env(&env
, &envsize
, "KRB5CCNAME",
1258 s
->authctxt
->krb5_ccname
);
1262 * Pull in any environment variables that may have
1265 if (options
.use_pam
) {
1268 p
= fetch_pam_child_environment();
1269 copy_environment(p
, &env
, &envsize
);
1270 free_pam_environment(p
);
1272 p
= fetch_pam_environment();
1273 copy_environment(p
, &env
, &envsize
);
1274 free_pam_environment(p
);
1276 #endif /* USE_PAM */
1278 if (auth_sock_name
!= NULL
)
1279 child_set_env(&env
, &envsize
, SSH_AUTHSOCKET_ENV_NAME
,
1282 /* read $HOME/.ssh/environment. */
1283 if (options
.permit_user_env
&& !options
.use_login
) {
1284 snprintf(buf
, sizeof buf
, "%.200s/.ssh/environment",
1285 strcmp(pw
->pw_dir
, "/") ? pw
->pw_dir
: "");
1286 read_environment_file(&env
, &envsize
, buf
);
1289 /* dump the environment */
1290 fprintf(stderr
, "Environment:\n");
1291 for (i
= 0; env
[i
]; i
++)
1292 fprintf(stderr
, " %.200s\n", env
[i
]);
1298 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1299 * first in this order).
1302 do_rc_files(Session
*s
, const char *shell
)
1310 s
->display
!= NULL
&& s
->auth_proto
!= NULL
&& s
->auth_data
!= NULL
;
1312 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
1313 if (!s
->is_subsystem
&& options
.adm_forced_command
== NULL
&&
1314 !no_user_rc
&& stat(_PATH_SSH_USER_RC
, &st
) >= 0) {
1315 snprintf(cmd
, sizeof cmd
, "%s -c '%s %s'",
1316 shell
, _PATH_BSHELL
, _PATH_SSH_USER_RC
);
1318 fprintf(stderr
, "Running %s\n", cmd
);
1319 f
= popen(cmd
, "w");
1322 fprintf(f
, "%s %s\n", s
->auth_proto
,
1326 fprintf(stderr
, "Could not run %s\n",
1328 } else if (stat(_PATH_SSH_SYSTEM_RC
, &st
) >= 0) {
1330 fprintf(stderr
, "Running %s %s\n", _PATH_BSHELL
,
1331 _PATH_SSH_SYSTEM_RC
);
1332 f
= popen(_PATH_BSHELL
" " _PATH_SSH_SYSTEM_RC
, "w");
1335 fprintf(f
, "%s %s\n", s
->auth_proto
,
1339 fprintf(stderr
, "Could not run %s\n",
1340 _PATH_SSH_SYSTEM_RC
);
1341 } else if (do_xauth
&& options
.xauth_location
!= NULL
) {
1342 /* Add authority data to .Xauthority if appropriate. */
1345 "Running %.500s remove %.100s\n",
1346 options
.xauth_location
, s
->auth_display
);
1348 "%.500s add %.100s %.100s %.100s\n",
1349 options
.xauth_location
, s
->auth_display
,
1350 s
->auth_proto
, s
->auth_data
);
1352 snprintf(cmd
, sizeof cmd
, "%s -q -",
1353 options
.xauth_location
);
1354 f
= popen(cmd
, "w");
1356 fprintf(f
, "remove %s\n",
1358 fprintf(f
, "add %s %s %s\n",
1359 s
->auth_display
, s
->auth_proto
,
1363 fprintf(stderr
, "Could not run %s\n",
1370 do_nologin(struct passwd
*pw
)
1375 #ifdef HAVE_LOGIN_CAP
1376 if (!login_getcapbool(lc
, "ignorenologin", 0) && pw
->pw_uid
)
1377 f
= fopen(login_getcapstr(lc
, "nologin", _PATH_NOLOGIN
,
1378 _PATH_NOLOGIN
), "r");
1381 f
= fopen(_PATH_NOLOGIN
, "r");
1384 /* /etc/nologin exists. Print its contents and exit. */
1385 logit("User %.100s not allowed because %s exists",
1386 pw
->pw_name
, _PATH_NOLOGIN
);
1387 while (fgets(buf
, sizeof(buf
), f
))
1396 * Chroot into a directory after checking it for safety: all path components
1397 * must be root-owned directories with strict permissions.
1400 safely_chroot(const char *path
, uid_t uid
)
1403 char component
[MAXPATHLEN
];
1407 fatal("chroot path does not begin at root");
1408 if (strlen(path
) >= sizeof(component
))
1409 fatal("chroot path too long");
1412 * Descend the path, checking that each component is a
1413 * root-owned directory with strict permissions.
1415 for (cp
= path
; cp
!= NULL
;) {
1416 if ((cp
= strchr(cp
, '/')) == NULL
)
1417 strlcpy(component
, path
, sizeof(component
));
1420 memcpy(component
, path
, cp
- path
);
1421 component
[cp
- path
] = '\0';
1424 debug3("%s: checking '%s'", __func__
, component
);
1426 if (stat(component
, &st
) != 0)
1427 fatal("%s: stat(\"%s\"): %s", __func__
,
1428 component
, strerror(errno
));
1429 if (st
.st_uid
!= 0 || (st
.st_mode
& 022) != 0)
1430 fatal("bad ownership or modes for chroot "
1431 "directory %s\"%s\"",
1432 cp
== NULL
? "" : "component ", component
);
1433 if (!S_ISDIR(st
.st_mode
))
1434 fatal("chroot path %s\"%s\" is not a directory",
1435 cp
== NULL
? "" : "component ", component
);
1439 if (chdir(path
) == -1)
1440 fatal("Unable to chdir to chroot path \"%s\": "
1441 "%s", path
, strerror(errno
));
1442 if (chroot(path
) == -1)
1443 fatal("chroot(\"%s\"): %s", path
, strerror(errno
));
1444 if (chdir("/") == -1)
1445 fatal("%s: chdir(/) after chroot: %s",
1446 __func__
, strerror(errno
));
1447 verbose("Changed root directory to \"%s\"", path
);
1450 /* Set login name, uid, gid, and groups. */
1452 do_setusercontext(struct passwd
*pw
)
1454 char *chroot_path
, *tmp
;
1457 /* Cache selinux status for later use */
1458 (void)ssh_selinux_enabled();
1462 if (getuid() == 0 || geteuid() == 0)
1463 #endif /* HAVE_CYGWIN */
1466 #ifdef HAVE_SETPCRED
1467 if (setpcred(pw
->pw_name
, (char **)NULL
) == -1)
1468 fatal("Failed to set process credentials");
1469 #endif /* HAVE_SETPCRED */
1470 #ifdef HAVE_LOGIN_CAP
1475 if (options
.use_pam
) {
1476 do_pam_setcred(use_privsep
);
1478 # endif /* USE_PAM */
1479 if (setusercontext(lc
, pw
, pw
->pw_uid
,
1480 (LOGIN_SETALL
& ~(LOGIN_SETPATH
|LOGIN_SETUSER
))) < 0) {
1481 perror("unable to set user context");
1485 # if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1486 /* Sets login uid for accounting */
1487 if (getluid() == -1 && setluid(pw
->pw_uid
) == -1)
1488 error("setluid: %s", strerror(errno
));
1489 # endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1491 if (setlogin(pw
->pw_name
) < 0)
1492 error("setlogin failed: %s", strerror(errno
));
1493 if (setgid(pw
->pw_gid
) < 0) {
1497 /* Initialize the group list. */
1498 if (initgroups(pw
->pw_name
, pw
->pw_gid
) < 0) {
1499 perror("initgroups");
1505 * PAM credentials may take the form of supplementary groups.
1506 * These will have been wiped by the above initgroups() call.
1507 * Reestablish them here.
1509 if (options
.use_pam
) {
1510 do_pam_setcred(use_privsep
);
1512 # endif /* USE_PAM */
1513 # if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1514 irix_setusercontext(pw
);
1515 # endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
1520 if (set_id(pw
->pw_name
) != 0) {
1523 # endif /* USE_LIBIAF */
1526 if (options
.chroot_directory
!= NULL
&&
1527 strcasecmp(options
.chroot_directory
, "none") != 0) {
1528 tmp
= tilde_expand_filename(options
.chroot_directory
,
1530 chroot_path
= percent_expand(tmp
, "h", pw
->pw_dir
,
1531 "u", pw
->pw_name
, (char *)NULL
);
1532 safely_chroot(chroot_path
, pw
->pw_uid
);
1537 #ifdef HAVE_LOGIN_CAP
1538 if (setusercontext(lc
, pw
, pw
->pw_uid
, LOGIN_SETUSER
) < 0) {
1539 perror("unable to set user context (setuser)");
1543 /* Permanently switch to the desired uid. */
1544 permanently_set_uid(pw
);
1551 if (getuid() != pw
->pw_uid
|| geteuid() != pw
->pw_uid
)
1552 fatal("Failed to set uids to %u.", (u_int
) pw
->pw_uid
);
1555 ssh_selinux_setup_exec_context(pw
->pw_name
);
1560 do_pwchange(Session
*s
)
1563 fprintf(stderr
, "WARNING: Your password has expired.\n");
1564 if (s
->ttyfd
!= -1) {
1566 "You must change your password now and login again!\n");
1567 #ifdef PASSWD_NEEDS_USERNAME
1568 execl(_PATH_PASSWD_PROG
, "passwd", s
->pw
->pw_name
,
1571 execl(_PATH_PASSWD_PROG
, "passwd", (char *)NULL
);
1576 "Password change required but no TTY available.\n");
1582 launch_login(struct passwd
*pw
, const char *hostname
)
1584 /* Launch login(1). */
1586 execl(LOGIN_PROGRAM
, "login", "-h", hostname
,
1587 #ifdef xxxLOGIN_NEEDS_TERM
1588 (s
->term
? s
->term
: "unknown"),
1589 #endif /* LOGIN_NEEDS_TERM */
1590 #ifdef LOGIN_NO_ENDOPT
1591 "-p", "-f", pw
->pw_name
, (char *)NULL
);
1593 "-p", "-f", "--", pw
->pw_name
, (char *)NULL
);
1596 /* Login couldn't be executed, die. */
1603 child_close_fds(void)
1607 if (packet_get_connection_in() == packet_get_connection_out())
1608 close(packet_get_connection_in());
1610 close(packet_get_connection_in());
1611 close(packet_get_connection_out());
1614 * Close all descriptors related to channels. They will still remain
1615 * open in the parent.
1617 /* XXX better use close-on-exec? -markus */
1618 channel_close_all();
1621 * Close any extra file descriptors. Note that there may still be
1622 * descriptors left by system functions. They will be closed later.
1627 * Close any extra open file descriptors so that we don't have them
1628 * hanging around in clients. Note that we want to do this after
1629 * initgroups, because at least on Solaris 2.3 it leaves file
1632 for (i
= 3; i
< 64; i
++)
1637 * Performs common processing for the child, such as setting up the
1638 * environment, closing extra file descriptors, setting the user and group
1639 * ids, and executing the command or shell.
1643 do_child(Session
*s
, const char *command
)
1645 extern char **environ
;
1647 char *argv
[ARGV_MAX
];
1648 const char *shell
, *shell0
, *hostname
= NULL
;
1649 struct passwd
*pw
= s
->pw
;
1651 /* remove hostkey from the child's memory */
1652 destroy_sensitive_data();
1654 /* Force a password change */
1655 if (s
->authctxt
->force_pwchange
) {
1656 do_setusercontext(pw
);
1662 /* login(1) is only called if we execute the login shell */
1663 if (options
.use_login
&& command
!= NULL
)
1664 options
.use_login
= 0;
1667 cray_setup(pw
->pw_uid
, pw
->pw_name
, command
);
1668 #endif /* _UNICOS */
1671 * Login(1) does this as well, and it needs uid 0 for the "-h"
1672 * switch, so we let login(1) to this for us.
1674 if (!options
.use_login
) {
1676 session_setup_sia(pw
, s
->ttyfd
== -1 ? NULL
: s
->tty
);
1677 if (!check_quietlogin(s
, command
))
1679 #else /* HAVE_OSF_SIA */
1680 /* When PAM is enabled we rely on it to do the nologin check */
1681 if (!options
.use_pam
)
1683 do_setusercontext(pw
);
1685 * PAM session modules in do_setusercontext may have
1686 * generated messages, so if this in an interactive
1687 * login then display them too.
1689 if (!check_quietlogin(s
, command
))
1691 #endif /* HAVE_OSF_SIA */
1695 if (options
.use_pam
&& !options
.use_login
&& !is_pam_session_open()) {
1696 debug3("PAM session not opened, exiting");
1703 * Get the shell from the password data. An empty shell field is
1704 * legal, and means /bin/sh.
1706 shell
= (pw
->pw_shell
[0] == '\0') ? _PATH_BSHELL
: pw
->pw_shell
;
1709 * Make sure $SHELL points to the shell from the password file,
1710 * even if shell is overridden from login.conf
1712 env
= do_setup_env(s
, shell
);
1714 #ifdef HAVE_LOGIN_CAP
1715 shell
= login_getcapstr(lc
, "shell", (char *)shell
, (char *)shell
);
1718 /* we have to stash the hostname before we close our socket. */
1719 if (options
.use_login
)
1720 hostname
= get_remote_name_or_ip(utmp_len
,
1723 * Close the connection descriptors; note that this is the child, and
1724 * the server will still have the socket open, and it is important
1725 * that we do not shutdown it. Note that the descriptors cannot be
1726 * closed before building the environment, as we call
1727 * get_remote_ipaddr there.
1732 * Must take new environment into use so that .ssh/rc,
1733 * /etc/ssh/sshrc and xauth are run in the proper environment.
1737 #if defined(KRB5) && defined(USE_AFS)
1739 * At this point, we check to see if AFS is active and if we have
1740 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1741 * if we can (and need to) extend the ticket into an AFS token. If
1742 * we don't do this, we run into potential problems if the user's
1743 * home directory is in AFS and it's not world-readable.
1746 if (options
.kerberos_get_afs_token
&& k_hasafs() &&
1747 (s
->authctxt
->krb5_ctx
!= NULL
)) {
1750 debug("Getting AFS token");
1754 if (k_afs_cell_of_file(pw
->pw_dir
, cell
, sizeof(cell
)) == 0)
1755 krb5_afslog(s
->authctxt
->krb5_ctx
,
1756 s
->authctxt
->krb5_fwd_ccache
, cell
, NULL
);
1758 krb5_afslog_home(s
->authctxt
->krb5_ctx
,
1759 s
->authctxt
->krb5_fwd_ccache
, NULL
, NULL
, pw
->pw_dir
);
1763 /* Change current directory to the user's home directory. */
1764 if (chdir(pw
->pw_dir
) < 0) {
1765 fprintf(stderr
, "Could not chdir to home directory %s: %s\n",
1766 pw
->pw_dir
, strerror(errno
));
1767 #ifdef HAVE_LOGIN_CAP
1768 if (login_getcapbool(lc
, "requirehome", 0))
1773 closefrom(STDERR_FILENO
+ 1);
1775 if (!options
.use_login
)
1776 do_rc_files(s
, shell
);
1778 /* restore SIGPIPE for child */
1779 signal(SIGPIPE
, SIG_DFL
);
1781 if (s
->is_subsystem
== SUBSYSTEM_INT_SFTP
) {
1782 extern int optind
, optreset
;
1786 setproctitle("%s@internal-sftp-server", s
->pw
->pw_name
);
1787 args
= strdup(command
? command
: "sftp-server");
1788 for (i
= 0, (p
= strtok(args
, " ")); p
; (p
= strtok(NULL
, " ")))
1789 if (i
< ARGV_MAX
- 1)
1792 optind
= optreset
= 1;
1793 __progname
= argv
[0];
1794 exit(sftp_server_main(i
, argv
, s
->pw
));
1797 if (options
.use_login
) {
1798 launch_login(pw
, hostname
);
1802 /* Get the last component of the shell name. */
1803 if ((shell0
= strrchr(shell
, '/')) != NULL
)
1809 * If we have no command, execute the shell. In this case, the shell
1810 * name to be passed in argv[0] is preceded by '-' to indicate that
1811 * this is a login shell.
1816 /* Start the shell. Set initial character to '-'. */
1819 if (strlcpy(argv0
+ 1, shell0
, sizeof(argv0
) - 1)
1820 >= sizeof(argv0
) - 1) {
1826 /* Execute the shell. */
1829 execve(shell
, argv
, env
);
1831 /* Executing the shell failed. */
1836 * Execute the command using the user's shell. This uses the -c
1837 * option to execute the command.
1839 argv
[0] = (char *) shell0
;
1841 argv
[2] = (char *) command
;
1843 execve(shell
, argv
, env
);
1849 session_unused(int id
)
1851 debug3("%s: session id %d unused", __func__
, id
);
1852 if (id
>= options
.max_sessions
||
1853 id
>= sessions_nalloc
) {
1854 fatal("%s: insane session id %d (max %d nalloc %d)",
1855 __func__
, id
, options
.max_sessions
, sessions_nalloc
);
1857 bzero(&sessions
[id
], sizeof(*sessions
));
1858 sessions
[id
].self
= id
;
1859 sessions
[id
].used
= 0;
1860 sessions
[id
].chanid
= -1;
1861 sessions
[id
].ptyfd
= -1;
1862 sessions
[id
].ttyfd
= -1;
1863 sessions
[id
].ptymaster
= -1;
1864 sessions
[id
].x11_chanids
= NULL
;
1865 sessions
[id
].next_unused
= sessions_first_unused
;
1866 sessions_first_unused
= id
;
1874 if (sessions_first_unused
== -1) {
1875 if (sessions_nalloc
>= options
.max_sessions
)
1877 debug2("%s: allocate (allocated %d max %d)",
1878 __func__
, sessions_nalloc
, options
.max_sessions
);
1879 tmp
= xrealloc(sessions
, sessions_nalloc
+ 1,
1882 error("%s: cannot allocate %d sessions",
1883 __func__
, sessions_nalloc
+ 1);
1887 session_unused(sessions_nalloc
++);
1890 if (sessions_first_unused
>= sessions_nalloc
||
1891 sessions_first_unused
< 0) {
1892 fatal("%s: insane first_unused %d max %d nalloc %d",
1893 __func__
, sessions_first_unused
, options
.max_sessions
,
1897 s
= &sessions
[sessions_first_unused
];
1899 fatal("%s: session %d already used",
1900 __func__
, sessions_first_unused
);
1902 sessions_first_unused
= s
->next_unused
;
1904 s
->next_unused
= -1;
1905 debug("session_new: session %d", s
->self
);
1914 for (i
= 0; i
< sessions_nalloc
; i
++) {
1915 Session
*s
= &sessions
[i
];
1917 debug("dump: used %d next_unused %d session %d %p "
1918 "channel %d pid %ld",
1929 session_open(Authctxt
*authctxt
, int chanid
)
1931 Session
*s
= session_new();
1932 debug("session_open: channel %d", chanid
);
1934 error("no more sessions");
1937 s
->authctxt
= authctxt
;
1938 s
->pw
= authctxt
->pw
;
1939 if (s
->pw
== NULL
|| !authctxt
->valid
)
1940 fatal("no user for session %d", s
->self
);
1941 debug("session_open: session %d: link with channel %d", s
->self
, chanid
);
1947 session_by_tty(char *tty
)
1950 for (i
= 0; i
< sessions_nalloc
; i
++) {
1951 Session
*s
= &sessions
[i
];
1952 if (s
->used
&& s
->ttyfd
!= -1 && strcmp(s
->tty
, tty
) == 0) {
1953 debug("session_by_tty: session %d tty %s", i
, tty
);
1957 debug("session_by_tty: unknown tty %.100s", tty
);
1963 session_by_channel(int id
)
1966 for (i
= 0; i
< sessions_nalloc
; i
++) {
1967 Session
*s
= &sessions
[i
];
1968 if (s
->used
&& s
->chanid
== id
) {
1969 debug("session_by_channel: session %d channel %d",
1974 debug("session_by_channel: unknown channel %d", id
);
1980 session_by_x11_channel(int id
)
1984 for (i
= 0; i
< sessions_nalloc
; i
++) {
1985 Session
*s
= &sessions
[i
];
1987 if (s
->x11_chanids
== NULL
|| !s
->used
)
1989 for (j
= 0; s
->x11_chanids
[j
] != -1; j
++) {
1990 if (s
->x11_chanids
[j
] == id
) {
1991 debug("session_by_x11_channel: session %d "
1992 "channel %d", s
->self
, id
);
1997 debug("session_by_x11_channel: unknown channel %d", id
);
2003 session_by_pid(pid_t pid
)
2006 debug("session_by_pid: pid %ld", (long)pid
);
2007 for (i
= 0; i
< sessions_nalloc
; i
++) {
2008 Session
*s
= &sessions
[i
];
2009 if (s
->used
&& s
->pid
== pid
)
2012 error("session_by_pid: unknown pid %ld", (long)pid
);
2018 session_window_change_req(Session
*s
)
2020 s
->col
= packet_get_int();
2021 s
->row
= packet_get_int();
2022 s
->xpixel
= packet_get_int();
2023 s
->ypixel
= packet_get_int();
2025 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
2030 session_pty_req(Session
*s
)
2036 debug("Allocating a pty not permitted for this authentication.");
2039 if (s
->ttyfd
!= -1) {
2040 packet_disconnect("Protocol error: you already have a pty.");
2044 s
->term
= packet_get_string(&len
);
2047 s
->col
= packet_get_int();
2048 s
->row
= packet_get_int();
2050 s
->row
= packet_get_int();
2051 s
->col
= packet_get_int();
2053 s
->xpixel
= packet_get_int();
2054 s
->ypixel
= packet_get_int();
2056 if (strcmp(s
->term
, "") == 0) {
2061 /* Allocate a pty and open it. */
2062 debug("Allocating pty.");
2063 if (!PRIVSEP(pty_allocate(&s
->ptyfd
, &s
->ttyfd
, s
->tty
,
2070 error("session_pty_req: session %d alloc failed", s
->self
);
2073 debug("session_pty_req: session %d alloc %s", s
->self
, s
->tty
);
2075 /* for SSH1 the tty modes length is not given */
2077 n_bytes
= packet_remaining();
2078 tty_parse_modes(s
->ttyfd
, &n_bytes
);
2081 pty_setowner(s
->pw
, s
->tty
);
2083 /* Set window size from the packet. */
2084 pty_change_window_size(s
->ptyfd
, s
->row
, s
->col
, s
->xpixel
, s
->ypixel
);
2087 session_proctitle(s
);
2092 session_subsystem_req(Session
*s
)
2097 char *prog
, *cmd
, *subsys
= packet_get_string(&len
);
2101 logit("subsystem request for %.100s", subsys
);
2103 for (i
= 0; i
< options
.num_subsystems
; i
++) {
2104 if (strcmp(subsys
, options
.subsystem_name
[i
]) == 0) {
2105 prog
= options
.subsystem_command
[i
];
2106 cmd
= options
.subsystem_args
[i
];
2107 if (!strcmp(INTERNAL_SFTP_NAME
, prog
)) {
2108 s
->is_subsystem
= SUBSYSTEM_INT_SFTP
;
2109 } else if (stat(prog
, &st
) < 0) {
2110 error("subsystem: cannot stat %s: %s", prog
,
2114 s
->is_subsystem
= SUBSYSTEM_EXT
;
2116 debug("subsystem: exec() %s", cmd
);
2117 success
= do_exec(s
, cmd
) == 0;
2123 logit("subsystem request for %.100s failed, subsystem not found",
2131 session_x11_req(Session
*s
)
2135 if (s
->auth_proto
!= NULL
|| s
->auth_data
!= NULL
) {
2136 error("session_x11_req: session %d: "
2137 "x11 forwarding already active", s
->self
);
2140 s
->single_connection
= packet_get_char();
2141 s
->auth_proto
= packet_get_string(NULL
);
2142 s
->auth_data
= packet_get_string(NULL
);
2143 s
->screen
= packet_get_int();
2146 success
= session_setup_x11fwd(s
);
2148 xfree(s
->auth_proto
);
2149 xfree(s
->auth_data
);
2150 s
->auth_proto
= NULL
;
2151 s
->auth_data
= NULL
;
2157 session_shell_req(Session
*s
)
2160 return do_exec(s
, NULL
) == 0;
2164 session_exec_req(Session
*s
)
2168 char *command
= packet_get_string(&len
);
2170 success
= do_exec(s
, command
) == 0;
2176 session_break_req(Session
*s
)
2179 packet_get_int(); /* ignored */
2182 if (s
->ttyfd
== -1 || tcsendbreak(s
->ttyfd
, 0) < 0)
2188 session_env_req(Session
*s
)
2191 u_int name_len
, val_len
, i
;
2193 name
= packet_get_string(&name_len
);
2194 val
= packet_get_string(&val_len
);
2197 /* Don't set too many environment variables */
2198 if (s
->num_env
> 128) {
2199 debug2("Ignoring env request %s: too many env vars", name
);
2203 for (i
= 0; i
< options
.num_accept_env
; i
++) {
2204 if (match_pattern(name
, options
.accept_env
[i
])) {
2205 debug2("Setting env %d: %s=%s", s
->num_env
, name
, val
);
2206 s
->env
= xrealloc(s
->env
, s
->num_env
+ 1,
2208 s
->env
[s
->num_env
].name
= name
;
2209 s
->env
[s
->num_env
].val
= val
;
2214 debug2("Ignoring env request %s: disallowed name", name
);
2223 session_auth_agent_req(Session
*s
)
2225 static int called
= 0;
2227 if (no_agent_forwarding_flag
|| !options
.allow_agent_forwarding
) {
2228 debug("session_auth_agent_req: no_agent_forwarding_flag");
2235 return auth_input_request_forwarding(s
->pw
);
2240 session_input_channel_req(Channel
*c
, const char *rtype
)
2245 if ((s
= session_by_channel(c
->self
)) == NULL
) {
2246 logit("session_input_channel_req: no session %d req %.100s",
2250 debug("session_input_channel_req: session %d req %s", s
->self
, rtype
);
2253 * a session is in LARVAL state until a shell, a command
2254 * or a subsystem is executed
2256 if (c
->type
== SSH_CHANNEL_LARVAL
) {
2257 if (strcmp(rtype
, "shell") == 0) {
2258 success
= session_shell_req(s
);
2259 } else if (strcmp(rtype
, "exec") == 0) {
2260 success
= session_exec_req(s
);
2261 } else if (strcmp(rtype
, "pty-req") == 0) {
2262 success
= session_pty_req(s
);
2263 } else if (strcmp(rtype
, "x11-req") == 0) {
2264 success
= session_x11_req(s
);
2265 } else if (strcmp(rtype
, "auth-agent-req@openssh.com") == 0) {
2266 success
= session_auth_agent_req(s
);
2267 } else if (strcmp(rtype
, "subsystem") == 0) {
2268 success
= session_subsystem_req(s
);
2269 } else if (strcmp(rtype
, "env") == 0) {
2270 success
= session_env_req(s
);
2273 if (strcmp(rtype
, "window-change") == 0) {
2274 success
= session_window_change_req(s
);
2275 } else if (strcmp(rtype
, "break") == 0) {
2276 success
= session_break_req(s
);
2283 session_set_fds(Session
*s
, int fdin
, int fdout
, int fderr
)
2286 fatal("session_set_fds: called for proto != 2.0");
2288 * now that have a child and a pipe to the child,
2289 * we can activate our channel and register the fd's
2291 if (s
->chanid
== -1)
2292 fatal("no channel for session %d", s
->self
);
2293 channel_set_fds(s
->chanid
,
2295 fderr
== -1 ? CHAN_EXTENDED_IGNORE
: CHAN_EXTENDED_READ
,
2297 CHAN_SES_WINDOW_DEFAULT
);
2301 * Function to perform pty cleanup. Also called if we get aborted abnormally
2302 * (e.g., due to a dropped connection).
2305 session_pty_cleanup2(Session
*s
)
2308 error("session_pty_cleanup: no session");
2314 debug("session_pty_cleanup: session %d release %s", s
->self
, s
->tty
);
2316 /* Record that the user has logged out. */
2318 record_logout(s
->pid
, s
->tty
, s
->pw
->pw_name
);
2320 /* Release the pseudo-tty. */
2322 pty_release(s
->tty
);
2325 * Close the server side of the socket pairs. We must do this after
2326 * the pty cleanup, so that another process doesn't get this pty
2327 * while we're still cleaning up.
2329 if (s
->ptymaster
!= -1 && close(s
->ptymaster
) < 0)
2330 error("close(s->ptymaster/%d): %s",
2331 s
->ptymaster
, strerror(errno
));
2333 /* unlink pty from session */
2338 session_pty_cleanup(Session
*s
)
2340 PRIVSEP(session_pty_cleanup2(s
));
2346 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2361 return "SIG@openssh.com";
2365 session_close_x11(int id
)
2369 if ((c
= channel_by_id(id
)) == NULL
) {
2370 debug("session_close_x11: x11 channel %d missing", id
);
2372 /* Detach X11 listener */
2373 debug("session_close_x11: detach x11 channel %d", id
);
2374 channel_cancel_cleanup(id
);
2375 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2381 session_close_single_x11(int id
, void *arg
)
2386 debug3("session_close_single_x11: channel %d", id
);
2387 channel_cancel_cleanup(id
);
2388 if ((s
= session_by_x11_channel(id
)) == NULL
)
2389 fatal("session_close_single_x11: no x11 channel %d", id
);
2390 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2391 debug("session_close_single_x11: session %d: "
2392 "closing channel %d", s
->self
, s
->x11_chanids
[i
]);
2394 * The channel "id" is already closing, but make sure we
2395 * close all of its siblings.
2397 if (s
->x11_chanids
[i
] != id
)
2398 session_close_x11(s
->x11_chanids
[i
]);
2400 xfree(s
->x11_chanids
);
2401 s
->x11_chanids
= NULL
;
2406 if (s
->auth_proto
) {
2407 xfree(s
->auth_proto
);
2408 s
->auth_proto
= NULL
;
2411 xfree(s
->auth_data
);
2412 s
->auth_data
= NULL
;
2414 if (s
->auth_display
) {
2415 xfree(s
->auth_display
);
2416 s
->auth_display
= NULL
;
2421 session_exit_message(Session
*s
, int status
)
2425 if ((c
= channel_lookup(s
->chanid
)) == NULL
)
2426 fatal("session_exit_message: session %d: no channel %d",
2427 s
->self
, s
->chanid
);
2428 debug("session_exit_message: session %d channel %d pid %ld",
2429 s
->self
, s
->chanid
, (long)s
->pid
);
2431 if (WIFEXITED(status
)) {
2432 channel_request_start(s
->chanid
, "exit-status", 0);
2433 packet_put_int(WEXITSTATUS(status
));
2435 } else if (WIFSIGNALED(status
)) {
2436 channel_request_start(s
->chanid
, "exit-signal", 0);
2437 packet_put_cstring(sig2name(WTERMSIG(status
)));
2439 packet_put_char(WCOREDUMP(status
)? 1 : 0);
2440 #else /* WCOREDUMP */
2442 #endif /* WCOREDUMP */
2443 packet_put_cstring("");
2444 packet_put_cstring("");
2447 /* Some weird exit cause. Just exit. */
2448 packet_disconnect("wait returned status %04x.", status
);
2451 /* disconnect channel */
2452 debug("session_exit_message: release channel %d", s
->chanid
);
2455 * Adjust cleanup callback attachment to send close messages when
2456 * the channel gets EOF. The session will be then be closed
2457 * by session_close_by_channel when the childs close their fds.
2459 channel_register_cleanup(c
->self
, session_close_by_channel
, 1);
2462 * emulate a write failure with 'chan_write_failed', nobody will be
2463 * interested in data we write.
2464 * Note that we must not call 'chan_read_failed', since there could
2465 * be some more data waiting in the pipe.
2467 if (c
->ostate
!= CHAN_OUTPUT_CLOSED
)
2468 chan_write_failed(c
);
2472 session_close(Session
*s
)
2476 debug("session_close: session %d pid %ld", s
->self
, (long)s
->pid
);
2478 session_pty_cleanup(s
);
2484 xfree(s
->x11_chanids
);
2485 if (s
->auth_display
)
2486 xfree(s
->auth_display
);
2488 xfree(s
->auth_data
);
2490 xfree(s
->auth_proto
);
2491 if (s
->env
!= NULL
) {
2492 for (i
= 0; i
< s
->num_env
; i
++) {
2493 xfree(s
->env
[i
].name
);
2494 xfree(s
->env
[i
].val
);
2498 session_proctitle(s
);
2499 session_unused(s
->self
);
2503 session_close_by_pid(pid_t pid
, int status
)
2505 Session
*s
= session_by_pid(pid
);
2507 debug("session_close_by_pid: no session for pid %ld",
2511 if (s
->chanid
!= -1)
2512 session_exit_message(s
, status
);
2514 session_pty_cleanup(s
);
2519 * this is called when a channel dies before
2520 * the session 'child' itself dies
2523 session_close_by_channel(int id
, void *arg
)
2525 Session
*s
= session_by_channel(id
);
2529 debug("session_close_by_channel: no session for id %d", id
);
2532 debug("session_close_by_channel: channel %d child %ld",
2535 debug("session_close_by_channel: channel %d: has child", id
);
2537 * delay detach of session, but release pty, since
2538 * the fd's to the child are already closed
2541 session_pty_cleanup(s
);
2544 /* detach by removing callback */
2545 channel_cancel_cleanup(s
->chanid
);
2547 /* Close any X11 listeners associated with this session */
2548 if (s
->x11_chanids
!= NULL
) {
2549 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2550 session_close_x11(s
->x11_chanids
[i
]);
2551 s
->x11_chanids
[i
] = -1;
2560 session_destroy_all(void (*closefunc
)(Session
*))
2563 for (i
= 0; i
< sessions_nalloc
; i
++) {
2564 Session
*s
= &sessions
[i
];
2566 if (closefunc
!= NULL
)
2575 session_tty_list(void)
2577 static char buf
[1024];
2582 for (i
= 0; i
< sessions_nalloc
; i
++) {
2583 Session
*s
= &sessions
[i
];
2584 if (s
->used
&& s
->ttyfd
!= -1) {
2586 if (strncmp(s
->tty
, "/dev/", 5) != 0) {
2587 cp
= strrchr(s
->tty
, '/');
2588 cp
= (cp
== NULL
) ? s
->tty
: cp
+ 1;
2593 strlcat(buf
, ",", sizeof buf
);
2594 strlcat(buf
, cp
, sizeof buf
);
2598 strlcpy(buf
, "notty", sizeof buf
);
2603 session_proctitle(Session
*s
)
2606 error("no user for session %d", s
->self
);
2608 setproctitle("%s@%s", s
->pw
->pw_name
, session_tty_list());
2612 session_setup_x11fwd(Session
*s
)
2615 char display
[512], auth_display
[512];
2616 char hostname
[MAXHOSTNAMELEN
];
2619 if (no_x11_forwarding_flag
) {
2620 packet_send_debug("X11 forwarding disabled in user configuration file.");
2623 if (!options
.x11_forwarding
) {
2624 debug("X11 forwarding disabled in server configuration file.");
2627 if (!options
.xauth_location
||
2628 (stat(options
.xauth_location
, &st
) == -1)) {
2629 packet_send_debug("No xauth program; cannot forward with spoofing.");
2632 if (options
.use_login
) {
2633 packet_send_debug("X11 forwarding disabled; "
2634 "not compatible with UseLogin=yes.");
2637 if (s
->display
!= NULL
) {
2638 debug("X11 display already set.");
2641 if (x11_create_display_inet(options
.x11_display_offset
,
2642 options
.x11_use_localhost
, s
->single_connection
,
2643 &s
->display_number
, &s
->x11_chanids
) == -1) {
2644 debug("x11_create_display_inet failed.");
2647 for (i
= 0; s
->x11_chanids
[i
] != -1; i
++) {
2648 channel_register_cleanup(s
->x11_chanids
[i
],
2649 session_close_single_x11
, 0);
2652 /* Set up a suitable value for the DISPLAY variable. */
2653 if (gethostname(hostname
, sizeof(hostname
)) < 0)
2654 fatal("gethostname: %.100s", strerror(errno
));
2656 * auth_display must be used as the displayname when the
2657 * authorization entry is added with xauth(1). This will be
2658 * different than the DISPLAY string for localhost displays.
2660 if (options
.x11_use_localhost
) {
2661 snprintf(display
, sizeof display
, "localhost:%u.%u",
2662 s
->display_number
, s
->screen
);
2663 snprintf(auth_display
, sizeof auth_display
, "unix:%u.%u",
2664 s
->display_number
, s
->screen
);
2665 s
->display
= xstrdup(display
);
2666 s
->auth_display
= xstrdup(auth_display
);
2668 #ifdef IPADDR_IN_DISPLAY
2670 struct in_addr my_addr
;
2672 he
= gethostbyname(hostname
);
2674 error("Can't get IP address for X11 DISPLAY.");
2675 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2678 memcpy(&my_addr
, he
->h_addr_list
[0], sizeof(struct in_addr
));
2679 snprintf(display
, sizeof display
, "%.50s:%u.%u", inet_ntoa(my_addr
),
2680 s
->display_number
, s
->screen
);
2682 snprintf(display
, sizeof display
, "%.400s:%u.%u", hostname
,
2683 s
->display_number
, s
->screen
);
2685 s
->display
= xstrdup(display
);
2686 s
->auth_display
= xstrdup(display
);
2693 do_authenticated2(Authctxt
*authctxt
)
2695 server_loop2(authctxt
);
2699 do_cleanup(Authctxt
*authctxt
)
2701 static int called
= 0;
2703 debug("do_cleanup");
2705 /* no cleanup if we're in the child for login shell */
2709 /* avoid double cleanup */
2714 if (authctxt
== NULL
)
2718 if (options
.use_pam
) {
2720 sshpam_thread_cleanup();
2724 if (!authctxt
->authenticated
)
2728 if (options
.kerberos_ticket_cleanup
&&
2730 krb5_cleanup_proc(authctxt
);
2734 if (compat20
&& options
.gss_cleanup_creds
)
2735 ssh_gssapi_cleanup_creds();
2738 /* remove agent socket */
2739 auth_sock_cleanup_proc(authctxt
->pw
);
2742 * Cleanup ptys/utmp only if privsep is disabled,
2743 * or if running in monitor.
2745 if (!use_privsep
|| mm_is_monitor())
2746 session_destroy_all(session_pty_cleanup2
);