1 /* $OpenBSD: ssh.c,v 1.351 2010/09/02 16:08:39 markus Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
17 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 #include <sys/types.h>
46 #ifdef HAVE_SYS_STAT_H
47 # include <sys/stat.h>
49 #include <sys/resource.h>
50 #include <sys/ioctl.h>
51 #include <sys/param.h>
52 #include <sys/socket.h>
70 #include <netinet/in.h>
71 #include <arpa/inet.h>
73 #include <openssl/evp.h>
74 #include <openssl/err.h>
75 #include "openbsd-compat/openssl-compat.h"
76 #include "openbsd-compat/sys-queue.h"
91 #include "pathnames.h"
93 #include "clientloop.h"
96 #include "sshconnect.h"
108 #include "ssh-pkcs11.h"
111 extern char *__progname
;
113 /* Flag indicating whether debug mode is on. May be set on the command line. */
116 /* Flag indicating whether a tty should be allocated */
119 int force_tty_flag
= 0;
121 /* don't exec a shell */
122 int no_shell_flag
= 0;
125 * Flag indicating that nothing should be read from stdin. This can be set
126 * on the command line.
128 int stdin_null_flag
= 0;
131 * Flag indicating that the current process should be backgrounded and
132 * a new slave launched in the foreground for ControlPersist.
134 int need_controlpersist_detach
= 0;
136 /* Copies of flags for ControlPersist foreground slave */
137 int ostdin_null_flag
, ono_shell_flag
, ono_tty_flag
, otty_flag
;
140 * Flag indicating that ssh should fork after authentication. This is useful
141 * so that the passphrase can be entered manually, and then ssh goes to the
144 int fork_after_authentication_flag
= 0;
146 /* forward stdio to remote host and port */
147 char *stdio_forward_host
= NULL
;
148 int stdio_forward_port
= 0;
151 * General data structure for command line options and options configurable
152 * in configuration files. See readconf.h.
156 /* optional user configfile */
160 * Name of the host we are connecting to. This is the name given on the
161 * command line, or the HostName specified for the user-supplied name in a
162 * configuration file.
166 /* socket address the host resolves to */
167 struct sockaddr_storage hostaddr
;
169 /* Private host keys. */
170 Sensitive sensitive_data
;
172 /* Original real UID. */
173 uid_t original_real_uid
;
174 uid_t original_effective_uid
;
176 /* command to be executed */
179 /* Should we execute a command or invoke a subsystem? */
180 int subsystem_flag
= 0;
182 /* # of replies received for global requests */
183 static int remote_forward_confirms_received
= 0;
185 /* pid of proxycommand child process */
186 pid_t proxy_command_pid
= 0;
189 extern int muxserver_sock
;
190 extern u_int muxclient_command
;
192 /* Prints a help message to the user. This function never returns. */
198 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
199 " [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
200 " [-I pkcs11] [-i identity_file]\n"
201 " [-L [bind_address:]port:host:hostport]\n"
202 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
203 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
204 " [-W host:port] [-w local_tun[:remote_tun]]\n"
205 " [user@]hostname [command]\n"
210 static int ssh_session(void);
211 static int ssh_session2(void);
212 static void load_public_identity_files(void);
214 /* from muxclient.c */
215 void muxclient(const char *);
216 void muxserver_listen(void);
219 * Main program for the ssh client.
222 main(int ac
, char **av
)
224 int i
, r
, opt
, exit_status
, use_syslog
;
225 char *p
, *cp
, *line
, *argv0
, buf
[MAXPATHLEN
];
228 int dummy
, timeout_ms
;
229 extern int optind
, optreset
;
234 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
237 __progname
= ssh_get_progname(av
[0]);
241 * Discard other fds that are hanging around. These can cause problem
242 * with backgrounded ssh processes started by ControlPersist.
244 closefrom(STDERR_FILENO
+ 1);
247 * Save the original real uid. It will be needed later (uid-swapping
248 * may clobber the real uid).
250 original_real_uid
= getuid();
251 original_effective_uid
= geteuid();
254 * Use uid-swapping to give up root privileges for the duration of
255 * option processing. We will re-instantiate the rights when we are
256 * ready to create the privileged port, and will permanently drop
257 * them when the port has been created (actually, when the connection
258 * has been made, as we may need to create the port several times).
262 #ifdef HAVE_SETRLIMIT
263 /* If we are installed setuid root be careful to not drop core. */
264 if (original_real_uid
!= original_effective_uid
) {
266 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
267 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
268 fatal("setrlimit failed: %.100s", strerror(errno
));
272 pw
= getpwuid(original_real_uid
);
274 logit("You don't exist, go away!");
277 /* Take a copy of the returned structure. */
281 * Set our umask to something reasonable, as some files are created
282 * with the default umask. This will make them world-readable but
283 * writable only by the owner, which is ok for all files for which we
284 * don't set the modes explicitly.
289 * Initialize option structure to indicate that no values have been
292 initialize_options(&options
);
294 /* Parse command-line arguments. */
300 while ((opt
= getopt(ac
, av
, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
301 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
304 options
.protocol
= SSH_PROTO_1
;
307 options
.protocol
= SSH_PROTO_2
;
310 options
.address_family
= AF_INET
;
313 options
.address_family
= AF_INET6
;
319 fork_after_authentication_flag
= 1;
323 options
.forward_x11
= 0;
326 options
.forward_x11
= 1;
332 options
.forward_x11
= 1;
333 options
.forward_x11_trusted
= 1;
336 options
.gateway_ports
= 1;
339 if (stdio_forward_host
!= NULL
)
340 fatal("Cannot specify multiplexing "
342 else if (muxclient_command
!= 0)
343 fatal("Multiplexing command already specified");
344 if (strcmp(optarg
, "check") == 0)
345 muxclient_command
= SSHMUX_COMMAND_ALIVE_CHECK
;
346 else if (strcmp(optarg
, "forward") == 0)
347 muxclient_command
= SSHMUX_COMMAND_FORWARD
;
348 else if (strcmp(optarg
, "exit") == 0)
349 muxclient_command
= SSHMUX_COMMAND_TERMINATE
;
351 fatal("Invalid multiplex command.");
353 case 'P': /* deprecated */
354 options
.use_privileged_port
= 0;
357 options
.forward_agent
= 0;
360 options
.forward_agent
= 1;
363 options
.gss_deleg_creds
= 0;
366 options
.gss_authentication
= 1;
367 options
.gss_deleg_creds
= 1;
370 if (stat(optarg
, &st
) < 0) {
371 fprintf(stderr
, "Warning: Identity file %s "
372 "not accessible: %s.\n", optarg
,
376 if (options
.num_identity_files
>=
377 SSH_MAX_IDENTITY_FILES
)
378 fatal("Too many identity files specified "
379 "(max %d)", SSH_MAX_IDENTITY_FILES
);
380 options
.identity_files
[options
.num_identity_files
++] =
385 options
.pkcs11_provider
= xstrdup(optarg
);
387 fprintf(stderr
, "no support for PKCS#11.\n");
396 if (debug_flag
== 0) {
398 options
.log_level
= SYSLOG_LEVEL_DEBUG1
;
400 if (options
.log_level
< SYSLOG_LEVEL_DEBUG3
)
406 fprintf(stderr
, "%s, %s\n",
407 SSH_RELEASE
, SSLeay_version(SSLEAY_VERSION
));
412 if (options
.tun_open
== -1)
413 options
.tun_open
= SSH_TUNMODE_DEFAULT
;
414 options
.tun_local
= a2tun(optarg
, &options
.tun_remote
);
415 if (options
.tun_local
== SSH_TUNID_ERR
) {
417 "Bad tun device '%s'\n", optarg
);
422 if (stdio_forward_host
!= NULL
)
423 fatal("stdio forward already specified");
424 if (muxclient_command
!= 0)
425 fatal("Cannot specify stdio forward with -O");
426 if (parse_forward(&fwd
, optarg
, 1, 0)) {
427 stdio_forward_host
= fwd
.listen_host
;
428 stdio_forward_port
= fwd
.listen_port
;
429 xfree(fwd
.connect_host
);
432 "Bad stdio forwarding specification '%s'\n",
438 options
.clear_forwardings
= 1;
439 options
.exit_on_forward_failure
= 1;
442 options
.log_level
= SYSLOG_LEVEL_QUIET
;
445 if (optarg
[0] == '^' && optarg
[2] == 0 &&
446 (u_char
) optarg
[1] >= 64 &&
447 (u_char
) optarg
[1] < 128)
448 options
.escape_char
= (u_char
) optarg
[1] & 31;
449 else if (strlen(optarg
) == 1)
450 options
.escape_char
= (u_char
) optarg
[0];
451 else if (strcmp(optarg
, "none") == 0)
452 options
.escape_char
= SSH_ESCAPECHAR_NONE
;
454 fprintf(stderr
, "Bad escape character '%s'.\n",
460 if (ciphers_valid(optarg
)) {
462 options
.ciphers
= xstrdup(optarg
);
463 options
.cipher
= SSH_CIPHER_INVALID
;
466 options
.cipher
= cipher_number(optarg
);
467 if (options
.cipher
== -1) {
469 "Unknown cipher type '%s'\n",
473 if (options
.cipher
== SSH_CIPHER_3DES
)
474 options
.ciphers
= "3des-cbc";
475 else if (options
.cipher
== SSH_CIPHER_BLOWFISH
)
476 options
.ciphers
= "blowfish-cbc";
478 options
.ciphers
= (char *)-1;
482 if (mac_valid(optarg
))
483 options
.macs
= xstrdup(optarg
);
485 fprintf(stderr
, "Unknown mac type '%s'\n",
491 if (options
.control_master
== SSHCTL_MASTER_YES
)
492 options
.control_master
= SSHCTL_MASTER_ASK
;
494 options
.control_master
= SSHCTL_MASTER_YES
;
497 options
.port
= a2port(optarg
);
498 if (options
.port
<= 0) {
499 fprintf(stderr
, "Bad port '%s'\n", optarg
);
504 options
.user
= optarg
;
508 if (parse_forward(&fwd
, optarg
, 0, 0))
509 add_local_forward(&options
, &fwd
);
512 "Bad local forwarding specification '%s'\n",
519 if (parse_forward(&fwd
, optarg
, 0, 1)) {
520 add_remote_forward(&options
, &fwd
);
523 "Bad remote forwarding specification "
530 if (parse_forward(&fwd
, optarg
, 1, 0)) {
531 add_local_forward(&options
, &fwd
);
534 "Bad dynamic forwarding specification "
541 options
.compression
= 1;
552 line
= xstrdup(optarg
);
553 if (process_config_line(&options
, host
? host
: "",
554 line
, "command-line", 0, &dummy
) != 0)
562 if (options
.control_path
!= NULL
)
563 free(options
.control_path
);
564 options
.control_path
= xstrdup(optarg
);
567 options
.bind_address
= optarg
;
580 if (ac
> 0 && !host
) {
581 if (strrchr(*av
, '@')) {
583 cp
= strrchr(p
, '@');
584 if (cp
== NULL
|| cp
== p
)
592 optind
= optreset
= 1;
598 /* Check that we got a host name. */
602 OpenSSL_add_all_algorithms();
603 ERR_load_crypto_strings();
605 /* Initialize the command to execute on remote host. */
606 buffer_init(&command
);
609 * Save the command to execute on the remote host in a buffer. There
610 * is no limit on the length of the command, except by the maximum
611 * packet size. Also sets the tty flag if there is no command.
614 /* No command specified - execute shell on a tty. */
616 if (subsystem_flag
) {
618 "You must specify a subsystem to invoke.\n");
622 /* A command has been specified. Store it into the buffer. */
623 for (i
= 0; i
< ac
; i
++) {
625 buffer_append(&command
, " ", 1);
626 buffer_append(&command
, av
[i
], strlen(av
[i
]));
630 /* Cannot fork to background if no command. */
631 if (fork_after_authentication_flag
&& buffer_len(&command
) == 0 &&
633 fatal("Cannot fork into background without a command "
636 /* Allocate a tty by default if no command specified. */
637 if (buffer_len(&command
) == 0)
641 if (no_tty_flag
|| muxclient_command
!= 0)
643 /* Do not allocate a tty if stdin is not a tty. */
644 if ((!isatty(fileno(stdin
)) || stdin_null_flag
) && !force_tty_flag
) {
646 logit("Pseudo-terminal will not be allocated because "
647 "stdin is not a terminal.");
652 * Initialize "log" output. Since we are the client all output
653 * actually goes to stderr.
656 options
.log_level
== -1 ? SYSLOG_LEVEL_INFO
: options
.log_level
,
657 SYSLOG_FACILITY_USER
, !use_syslog
);
660 * Read per-user configuration file. Ignore the system wide config
661 * file if the user specifies a config file on the command line.
663 if (config
!= NULL
) {
664 if (!read_config_file(config
, host
, &options
, 0))
665 fatal("Can't open user config file %.100s: "
666 "%.100s", config
, strerror(errno
));
668 r
= snprintf(buf
, sizeof buf
, "%s/%s", pw
->pw_dir
,
669 _PATH_SSH_USER_CONFFILE
);
670 if (r
> 0 && (size_t)r
< sizeof(buf
))
671 (void)read_config_file(buf
, host
, &options
, 1);
673 /* Read systemwide configuration file after use config. */
674 (void)read_config_file(_PATH_HOST_CONFIG_FILE
, host
,
678 /* Fill configuration defaults. */
679 fill_default_options(&options
);
681 channel_set_af(options
.address_family
);
684 log_init(argv0
, options
.log_level
, SYSLOG_FACILITY_USER
, !use_syslog
);
688 if (options
.user
== NULL
)
689 options
.user
= xstrdup(pw
->pw_name
);
691 /* Get default port if port has not been set. */
692 if (options
.port
== 0) {
693 sp
= getservbyname(SSH_SERVICE_NAME
, "tcp");
694 options
.port
= sp
? ntohs(sp
->s_port
) : SSH_DEFAULT_PORT
;
697 if (options
.hostname
!= NULL
) {
698 host
= percent_expand(options
.hostname
,
699 "h", host
, (char *)NULL
);
702 if (options
.local_command
!= NULL
) {
703 char thishost
[NI_MAXHOST
];
705 if (gethostname(thishost
, sizeof(thishost
)) == -1)
706 fatal("gethostname: %s", strerror(errno
));
707 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
708 debug3("expanding LocalCommand: %s", options
.local_command
);
709 cp
= options
.local_command
;
710 options
.local_command
= percent_expand(cp
, "d", pw
->pw_dir
,
711 "h", host
, "l", thishost
, "n", host
, "r", options
.user
,
712 "p", buf
, "u", pw
->pw_name
, (char *)NULL
);
713 debug3("expanded LocalCommand: %s", options
.local_command
);
717 /* force lowercase for hostkey matching */
718 if (options
.host_key_alias
!= NULL
) {
719 for (p
= options
.host_key_alias
; *p
; p
++)
721 *p
= (char)tolower(*p
);
724 if (options
.proxy_command
!= NULL
&&
725 strcmp(options
.proxy_command
, "none") == 0) {
726 xfree(options
.proxy_command
);
727 options
.proxy_command
= NULL
;
729 if (options
.control_path
!= NULL
&&
730 strcmp(options
.control_path
, "none") == 0) {
731 xfree(options
.control_path
);
732 options
.control_path
= NULL
;
735 if (options
.control_path
!= NULL
) {
736 char thishost
[NI_MAXHOST
];
738 if (gethostname(thishost
, sizeof(thishost
)) == -1)
739 fatal("gethostname: %s", strerror(errno
));
740 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
741 cp
= tilde_expand_filename(options
.control_path
,
743 xfree(options
.control_path
);
744 options
.control_path
= percent_expand(cp
, "p", buf
, "h", host
,
745 "r", options
.user
, "l", thishost
, (char *)NULL
);
748 if (muxclient_command
!= 0 && options
.control_path
== NULL
)
749 fatal("No ControlPath specified for \"-O\" command");
750 if (options
.control_path
!= NULL
)
751 muxclient(options
.control_path
);
753 timeout_ms
= options
.connection_timeout
* 1000;
755 /* Open a connection to the remote host. */
756 if (ssh_connect(host
, &hostaddr
, options
.port
,
757 options
.address_family
, options
.connection_attempts
, &timeout_ms
,
758 options
.tcp_keep_alive
,
760 options
.use_privileged_port
,
762 original_effective_uid
== 0 && options
.use_privileged_port
,
764 options
.proxy_command
) != 0)
768 debug3("timeout: %d ms remain after connect", timeout_ms
);
771 * If we successfully made the connection, load the host private key
772 * in case we will need it later for combined rsa-rhosts
773 * authentication. This must be done before releasing extra
774 * privileges, because the file is only readable by root.
775 * If we cannot access the private keys, load the public keys
776 * instead and try to execute the ssh-keysign helper instead.
778 sensitive_data
.nkeys
= 0;
779 sensitive_data
.keys
= NULL
;
780 sensitive_data
.external_keysign
= 0;
781 if (options
.rhosts_rsa_authentication
||
782 options
.hostbased_authentication
) {
783 sensitive_data
.nkeys
= 7;
784 sensitive_data
.keys
= xcalloc(sensitive_data
.nkeys
,
786 for (i
= 0; i
< sensitive_data
.nkeys
; i
++)
787 sensitive_data
.keys
[i
] = NULL
;
790 sensitive_data
.keys
[0] = key_load_private_type(KEY_RSA1
,
791 _PATH_HOST_KEY_FILE
, "", NULL
, NULL
);
792 sensitive_data
.keys
[1] = key_load_private_cert(KEY_DSA
,
793 _PATH_HOST_DSA_KEY_FILE
, "", NULL
);
794 #ifdef OPENSSL_HAS_ECC
795 sensitive_data
.keys
[2] = key_load_private_cert(KEY_ECDSA
,
796 _PATH_HOST_ECDSA_KEY_FILE
, "", NULL
);
798 sensitive_data
.keys
[3] = key_load_private_cert(KEY_RSA
,
799 _PATH_HOST_RSA_KEY_FILE
, "", NULL
);
800 sensitive_data
.keys
[4] = key_load_private_type(KEY_DSA
,
801 _PATH_HOST_DSA_KEY_FILE
, "", NULL
, NULL
);
802 #ifdef OPENSSL_HAS_ECC
803 sensitive_data
.keys
[5] = key_load_private_type(KEY_ECDSA
,
804 _PATH_HOST_ECDSA_KEY_FILE
, "", NULL
, NULL
);
806 sensitive_data
.keys
[6] = key_load_private_type(KEY_RSA
,
807 _PATH_HOST_RSA_KEY_FILE
, "", NULL
, NULL
);
810 if (options
.hostbased_authentication
== 1 &&
811 sensitive_data
.keys
[0] == NULL
&&
812 sensitive_data
.keys
[4] == NULL
&&
813 sensitive_data
.keys
[5] == NULL
&&
814 sensitive_data
.keys
[6] == NULL
) {
815 sensitive_data
.keys
[1] = key_load_cert(
816 _PATH_HOST_DSA_KEY_FILE
);
817 #ifdef OPENSSL_HAS_ECC
818 sensitive_data
.keys
[2] = key_load_cert(
819 _PATH_HOST_ECDSA_KEY_FILE
);
821 sensitive_data
.keys
[3] = key_load_cert(
822 _PATH_HOST_RSA_KEY_FILE
);
823 sensitive_data
.keys
[4] = key_load_public(
824 _PATH_HOST_DSA_KEY_FILE
, NULL
);
825 #ifdef OPENSSL_HAS_ECC
826 sensitive_data
.keys
[5] = key_load_public(
827 _PATH_HOST_ECDSA_KEY_FILE
, NULL
);
829 sensitive_data
.keys
[6] = key_load_public(
830 _PATH_HOST_RSA_KEY_FILE
, NULL
);
831 sensitive_data
.external_keysign
= 1;
835 * Get rid of any extra privileges that we may have. We will no
836 * longer need them. Also, extra privileges could make it very hard
837 * to read identity files and other non-world-readable files from the
838 * user's home directory if it happens to be on a NFS volume where
839 * root is mapped to nobody.
841 if (original_effective_uid
== 0) {
843 permanently_set_uid(pw
);
847 * Now that we are back to our own permissions, create ~/.ssh
848 * directory if it doesn't already exist.
850 r
= snprintf(buf
, sizeof buf
, "%s%s%s", pw
->pw_dir
,
851 strcmp(pw
->pw_dir
, "/") ? "/" : "", _PATH_SSH_USER_DIR
);
852 if (r
> 0 && (size_t)r
< sizeof(buf
) && stat(buf
, &st
) < 0) {
856 matchpathcon(buf
, 0700, &scon
);
857 setfscreatecon(scon
);
859 if (mkdir(buf
, 0700) < 0)
860 error("Could not create directory '%.200s'.", buf
);
862 setfscreatecon(NULL
);
865 /* load options.identity_files */
866 load_public_identity_files();
868 /* Expand ~ in known host file names. */
870 options
.system_hostfile
=
871 tilde_expand_filename(options
.system_hostfile
, original_real_uid
);
872 options
.user_hostfile
=
873 tilde_expand_filename(options
.user_hostfile
, original_real_uid
);
874 options
.system_hostfile2
=
875 tilde_expand_filename(options
.system_hostfile2
, original_real_uid
);
876 options
.user_hostfile2
=
877 tilde_expand_filename(options
.user_hostfile2
, original_real_uid
);
879 signal(SIGPIPE
, SIG_IGN
); /* ignore SIGPIPE early */
881 /* Log into the remote system. Never returns if the login fails. */
882 ssh_login(&sensitive_data
, host
, (struct sockaddr
*)&hostaddr
,
885 if (packet_connection_is_on_socket()) {
886 verbose("Authenticated to %s ([%s]:%d).", host
,
887 get_remote_ipaddr(), get_remote_port());
889 verbose("Authenticated to %s (via proxy).", host
);
892 /* We no longer need the private host keys. Clear them now. */
893 if (sensitive_data
.nkeys
!= 0) {
894 for (i
= 0; i
< sensitive_data
.nkeys
; i
++) {
895 if (sensitive_data
.keys
[i
] != NULL
) {
896 /* Destroys contents safely */
897 debug3("clear hostkey %d", i
);
898 key_free(sensitive_data
.keys
[i
]);
899 sensitive_data
.keys
[i
] = NULL
;
902 xfree(sensitive_data
.keys
);
904 for (i
= 0; i
< options
.num_identity_files
; i
++) {
905 if (options
.identity_files
[i
]) {
906 xfree(options
.identity_files
[i
]);
907 options
.identity_files
[i
] = NULL
;
909 if (options
.identity_keys
[i
]) {
910 key_free(options
.identity_keys
[i
]);
911 options
.identity_keys
[i
] = NULL
;
915 exit_status
= compat20
? ssh_session2() : ssh_session();
918 if (options
.control_path
!= NULL
&& muxserver_sock
!= -1)
919 unlink(options
.control_path
);
922 * Send SIGHUP to proxy command if used. We don't wait() in
923 * case it hangs and instead rely on init to reap the child
925 if (proxy_command_pid
> 1)
926 kill(proxy_command_pid
, SIGHUP
);
932 control_persist_detach(void)
937 debug("%s: backgrounding master process", __func__
);
940 * master (current process) into the background, and make the
941 * foreground process a client of the backgrounded master.
943 switch ((pid
= fork())) {
945 fatal("%s: fork: %s", __func__
, strerror(errno
));
947 /* Child: master process continues mainloop */
950 /* Parent: set up mux slave to connect to backgrounded master */
951 debug2("%s: background process is %ld", __func__
, (long)pid
);
952 stdin_null_flag
= ostdin_null_flag
;
953 no_shell_flag
= ono_shell_flag
;
954 no_tty_flag
= ono_tty_flag
;
955 tty_flag
= otty_flag
;
956 close(muxserver_sock
);
958 options
.control_master
= SSHCTL_MASTER_NO
;
959 muxclient(options
.control_path
);
960 /* muxclient() doesn't return on success. */
961 fatal("Failed to connect to new control master");
963 if ((devnull
= open(_PATH_DEVNULL
, O_RDWR
)) == -1) {
964 error("%s: open(\"/dev/null\"): %s", __func__
,
967 if (dup2(devnull
, STDIN_FILENO
) == -1 ||
968 dup2(devnull
, STDOUT_FILENO
) == -1)
969 error("%s: dup2: %s", __func__
, strerror(errno
));
970 if (devnull
> STDERR_FILENO
)
975 /* Do fork() after authentication. Used by "ssh -f" */
979 if (need_controlpersist_detach
)
980 control_persist_detach();
981 debug("forking to background");
982 fork_after_authentication_flag
= 0;
983 if (daemon(1, 1) < 0)
984 fatal("daemon() failed: %.200s", strerror(errno
));
987 /* Callback for remote forward global requests */
989 ssh_confirm_remote_forward(int type
, u_int32_t seq
, void *ctxt
)
991 Forward
*rfwd
= (Forward
*)ctxt
;
993 /* XXX verbose() on failure? */
994 debug("remote forward %s for: listen %d, connect %s:%d",
995 type
== SSH2_MSG_REQUEST_SUCCESS
? "success" : "failure",
996 rfwd
->listen_port
, rfwd
->connect_host
, rfwd
->connect_port
);
997 if (type
== SSH2_MSG_REQUEST_SUCCESS
&& rfwd
->listen_port
== 0) {
998 rfwd
->allocated_port
= packet_get_int();
999 logit("Allocated port %u for remote forward to %s:%d",
1000 rfwd
->allocated_port
,
1001 rfwd
->connect_host
, rfwd
->connect_port
);
1004 if (type
== SSH2_MSG_REQUEST_FAILURE
) {
1005 if (options
.exit_on_forward_failure
)
1006 fatal("Error: remote port forwarding failed for "
1007 "listen port %d", rfwd
->listen_port
);
1009 logit("Warning: remote port forwarding failed for "
1010 "listen port %d", rfwd
->listen_port
);
1012 if (++remote_forward_confirms_received
== options
.num_remote_forwards
) {
1013 debug("All remote forwarding requests processed");
1014 if (fork_after_authentication_flag
)
1020 client_cleanup_stdio_fwd(int id
, void *arg
)
1022 debug("stdio forwarding: done");
1027 client_setup_stdio_fwd(const char *host_to_connect
, u_short port_to_connect
)
1032 debug3("client_setup_stdio_fwd %s:%d", host_to_connect
,
1035 in
= dup(STDIN_FILENO
);
1036 out
= dup(STDOUT_FILENO
);
1037 if (in
< 0 || out
< 0)
1038 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1040 if ((c
= channel_connect_stdio_fwd(host_to_connect
, port_to_connect
,
1043 channel_register_cleanup(c
->self
, client_cleanup_stdio_fwd
, 0);
1048 ssh_init_forwarding(void)
1053 if (stdio_forward_host
!= NULL
) {
1055 fatal("stdio forwarding require Protocol 2");
1057 if (!client_setup_stdio_fwd(stdio_forward_host
,
1058 stdio_forward_port
))
1059 fatal("Failed to connect in stdio forward mode.");
1062 /* Initiate local TCP/IP port forwardings. */
1063 for (i
= 0; i
< options
.num_local_forwards
; i
++) {
1064 debug("Local connections to %.200s:%d forwarded to remote "
1065 "address %.200s:%d",
1066 (options
.local_forwards
[i
].listen_host
== NULL
) ?
1067 (options
.gateway_ports
? "*" : "LOCALHOST") :
1068 options
.local_forwards
[i
].listen_host
,
1069 options
.local_forwards
[i
].listen_port
,
1070 options
.local_forwards
[i
].connect_host
,
1071 options
.local_forwards
[i
].connect_port
);
1072 success
+= channel_setup_local_fwd_listener(
1073 options
.local_forwards
[i
].listen_host
,
1074 options
.local_forwards
[i
].listen_port
,
1075 options
.local_forwards
[i
].connect_host
,
1076 options
.local_forwards
[i
].connect_port
,
1077 options
.gateway_ports
);
1079 if (i
> 0 && success
!= i
&& options
.exit_on_forward_failure
)
1080 fatal("Could not request local forwarding.");
1081 if (i
> 0 && success
== 0)
1082 error("Could not request local forwarding.");
1084 /* Initiate remote TCP/IP port forwardings. */
1085 for (i
= 0; i
< options
.num_remote_forwards
; i
++) {
1086 debug("Remote connections from %.200s:%d forwarded to "
1087 "local address %.200s:%d",
1088 (options
.remote_forwards
[i
].listen_host
== NULL
) ?
1089 "LOCALHOST" : options
.remote_forwards
[i
].listen_host
,
1090 options
.remote_forwards
[i
].listen_port
,
1091 options
.remote_forwards
[i
].connect_host
,
1092 options
.remote_forwards
[i
].connect_port
);
1093 if (channel_request_remote_forwarding(
1094 options
.remote_forwards
[i
].listen_host
,
1095 options
.remote_forwards
[i
].listen_port
,
1096 options
.remote_forwards
[i
].connect_host
,
1097 options
.remote_forwards
[i
].connect_port
) < 0) {
1098 if (options
.exit_on_forward_failure
)
1099 fatal("Could not request remote forwarding.");
1101 logit("Warning: Could not request remote "
1104 client_register_global_confirm(ssh_confirm_remote_forward
,
1105 &options
.remote_forwards
[i
]);
1108 /* Initiate tunnel forwarding. */
1109 if (options
.tun_open
!= SSH_TUNMODE_NO
) {
1110 if (client_request_tun_fwd(options
.tun_open
,
1111 options
.tun_local
, options
.tun_remote
) == -1) {
1112 if (options
.exit_on_forward_failure
)
1113 fatal("Could not request tunnel forwarding.");
1115 error("Could not request tunnel forwarding.");
1121 check_agent_present(void)
1123 if (options
.forward_agent
) {
1124 /* Clear agent forwarding if we don't have an agent. */
1125 if (!ssh_agent_present())
1126 options
.forward_agent
= 0;
1134 int interactive
= 0;
1138 const char *display
;
1140 /* Enable compression if requested. */
1141 if (options
.compression
) {
1142 debug("Requesting compression at level %d.",
1143 options
.compression_level
);
1145 if (options
.compression_level
< 1 ||
1146 options
.compression_level
> 9)
1147 fatal("Compression level must be from 1 (fast) to "
1150 /* Send the request. */
1151 packet_start(SSH_CMSG_REQUEST_COMPRESSION
);
1152 packet_put_int(options
.compression_level
);
1154 packet_write_wait();
1155 type
= packet_read();
1156 if (type
== SSH_SMSG_SUCCESS
)
1157 packet_start_compression(options
.compression_level
);
1158 else if (type
== SSH_SMSG_FAILURE
)
1159 logit("Warning: Remote host refused compression.");
1161 packet_disconnect("Protocol error waiting for "
1162 "compression response.");
1164 /* Allocate a pseudo tty if appropriate. */
1166 debug("Requesting pty.");
1168 /* Start the packet. */
1169 packet_start(SSH_CMSG_REQUEST_PTY
);
1171 /* Store TERM in the packet. There is no limit on the
1172 length of the string. */
1173 cp
= getenv("TERM");
1176 packet_put_cstring(cp
);
1178 /* Store window size in the packet. */
1179 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) < 0)
1180 memset(&ws
, 0, sizeof(ws
));
1181 packet_put_int((u_int
)ws
.ws_row
);
1182 packet_put_int((u_int
)ws
.ws_col
);
1183 packet_put_int((u_int
)ws
.ws_xpixel
);
1184 packet_put_int((u_int
)ws
.ws_ypixel
);
1186 /* Store tty modes in the packet. */
1187 tty_make_modes(fileno(stdin
), NULL
);
1189 /* Send the packet, and wait for it to leave. */
1191 packet_write_wait();
1193 /* Read response from the server. */
1194 type
= packet_read();
1195 if (type
== SSH_SMSG_SUCCESS
) {
1198 } else if (type
== SSH_SMSG_FAILURE
)
1199 logit("Warning: Remote host failed or refused to "
1200 "allocate a pseudo tty.");
1202 packet_disconnect("Protocol error waiting for pty "
1203 "request response.");
1205 /* Request X11 forwarding if enabled and DISPLAY is set. */
1206 display
= getenv("DISPLAY");
1207 if (options
.forward_x11
&& display
!= NULL
) {
1209 /* Get reasonable local authentication information. */
1210 client_x11_get_proto(display
, options
.xauth_location
,
1211 options
.forward_x11_trusted
,
1212 options
.forward_x11_timeout
,
1214 /* Request forwarding with authentication spoofing. */
1215 debug("Requesting X11 forwarding with authentication "
1217 x11_request_forwarding_with_spoofing(0, display
, proto
, data
);
1219 /* Read response from the server. */
1220 type
= packet_read();
1221 if (type
== SSH_SMSG_SUCCESS
) {
1223 } else if (type
== SSH_SMSG_FAILURE
) {
1224 logit("Warning: Remote host denied X11 forwarding.");
1226 packet_disconnect("Protocol error waiting for X11 "
1230 /* Tell the packet module whether this is an interactive session. */
1231 packet_set_interactive(interactive
);
1233 /* Request authentication agent forwarding if appropriate. */
1234 check_agent_present();
1236 if (options
.forward_agent
) {
1237 debug("Requesting authentication agent forwarding.");
1238 auth_request_forwarding();
1240 /* Read response from the server. */
1241 type
= packet_read();
1243 if (type
!= SSH_SMSG_SUCCESS
)
1244 logit("Warning: Remote host denied authentication agent forwarding.");
1247 /* Initiate port forwardings. */
1248 ssh_init_forwarding();
1250 /* Execute a local command */
1251 if (options
.local_command
!= NULL
&&
1252 options
.permit_local_command
)
1253 ssh_local_cmd(options
.local_command
);
1256 * If requested and we are not interested in replies to remote
1257 * forwarding requests, then let ssh continue in the background.
1259 if (fork_after_authentication_flag
) {
1260 if (options
.exit_on_forward_failure
&&
1261 options
.num_remote_forwards
> 0) {
1262 debug("deferring postauth fork until remote forward "
1263 "confirmation received");
1269 * If a command was specified on the command line, execute the
1270 * command now. Otherwise request the server to start a shell.
1272 if (buffer_len(&command
) > 0) {
1273 int len
= buffer_len(&command
);
1276 debug("Sending command: %.*s", len
,
1277 (u_char
*)buffer_ptr(&command
));
1278 packet_start(SSH_CMSG_EXEC_CMD
);
1279 packet_put_string(buffer_ptr(&command
), buffer_len(&command
));
1281 packet_write_wait();
1283 debug("Requesting shell.");
1284 packet_start(SSH_CMSG_EXEC_SHELL
);
1286 packet_write_wait();
1289 /* Enter the interactive session. */
1290 return client_loop(have_tty
, tty_flag
?
1291 options
.escape_char
: SSH_ESCAPECHAR_NONE
, 0);
1294 /* request pty/x11/agent/tcpfwd/shell for channel */
1296 ssh_session2_setup(int id
, int success
, void *arg
)
1298 extern char **environ
;
1299 const char *display
;
1300 int interactive
= tty_flag
;
1303 return; /* No need for error message, channels code sens one */
1305 display
= getenv("DISPLAY");
1306 if (options
.forward_x11
&& display
!= NULL
) {
1308 /* Get reasonable local authentication information. */
1309 client_x11_get_proto(display
, options
.xauth_location
,
1310 options
.forward_x11_trusted
,
1311 options
.forward_x11_timeout
, &proto
, &data
);
1312 /* Request forwarding with authentication spoofing. */
1313 debug("Requesting X11 forwarding with authentication "
1315 x11_request_forwarding_with_spoofing(id
, display
, proto
, data
);
1317 /* XXX wait for reply */
1320 check_agent_present();
1321 if (options
.forward_agent
) {
1322 debug("Requesting authentication agent forwarding.");
1323 channel_request_start(id
, "auth-agent-req@openssh.com", 0);
1327 client_session2_setup(id
, tty_flag
, subsystem_flag
, getenv("TERM"),
1328 NULL
, fileno(stdin
), &command
, environ
);
1330 packet_set_interactive(interactive
);
1333 /* open new channel for a session */
1335 ssh_session2_open(void)
1338 int window
, packetmax
, in
, out
, err
;
1340 if (stdin_null_flag
) {
1341 in
= open(_PATH_DEVNULL
, O_RDONLY
);
1343 in
= dup(STDIN_FILENO
);
1345 out
= dup(STDOUT_FILENO
);
1346 err
= dup(STDERR_FILENO
);
1348 if (in
< 0 || out
< 0 || err
< 0)
1349 fatal("dup() in/out/err failed");
1351 /* enable nonblocking unless tty */
1359 window
= CHAN_SES_WINDOW_DEFAULT
;
1360 packetmax
= CHAN_SES_PACKET_DEFAULT
;
1366 "session", SSH_CHANNEL_OPENING
, in
, out
, err
,
1367 window
, packetmax
, CHAN_EXTENDED_WRITE
,
1368 "client-session", /*nonblock*/0);
1370 debug3("ssh_session2_open: channel_new: %d", c
->self
);
1372 channel_send_open(c
->self
);
1374 channel_register_open_confirm(c
->self
,
1375 ssh_session2_setup
, NULL
);
1385 /* XXX should be pre-session */
1386 ssh_init_forwarding();
1388 /* Start listening for multiplex clients */
1392 * If we are in control persist mode, then prepare to background
1393 * ourselves and have a foreground client attach as a control
1394 * slave. NB. we must save copies of the flags that we override for
1395 * the backgrounding, since we defer attachment of the slave until
1396 * after the connection is fully established (in particular,
1397 * async rfwd replies have been received for ExitOnForwardFailure).
1399 if (options
.control_persist
&& muxserver_sock
!= -1) {
1400 ostdin_null_flag
= stdin_null_flag
;
1401 ono_shell_flag
= no_shell_flag
;
1402 ono_tty_flag
= no_tty_flag
;
1403 otty_flag
= tty_flag
;
1404 stdin_null_flag
= 1;
1408 if (!fork_after_authentication_flag
)
1409 need_controlpersist_detach
= 1;
1410 fork_after_authentication_flag
= 1;
1413 if (!no_shell_flag
|| (datafellows
& SSH_BUG_DUMMYCHAN
))
1414 id
= ssh_session2_open();
1416 /* If we don't expect to open a new session, then disallow it */
1417 if (options
.control_master
== SSHCTL_MASTER_NO
&&
1418 (datafellows
& SSH_NEW_OPENSSH
)) {
1419 debug("Requesting no-more-sessions@openssh.com");
1420 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
1421 packet_put_cstring("no-more-sessions@openssh.com");
1426 /* Execute a local command */
1427 if (options
.local_command
!= NULL
&&
1428 options
.permit_local_command
)
1429 ssh_local_cmd(options
.local_command
);
1432 * If requested and we are not interested in replies to remote
1433 * forwarding requests, then let ssh continue in the background.
1435 if (fork_after_authentication_flag
) {
1436 if (options
.exit_on_forward_failure
&&
1437 options
.num_remote_forwards
> 0) {
1438 debug("deferring postauth fork until remote forward "
1439 "confirmation received");
1444 if (options
.use_roaming
)
1447 return client_loop(tty_flag
, tty_flag
?
1448 options
.escape_char
: SSH_ESCAPECHAR_NONE
, id
);
1452 load_public_identity_files(void)
1454 char *filename
, *cp
, thishost
[NI_MAXHOST
];
1455 char *pwdir
= NULL
, *pwname
= NULL
;
1460 char *identity_files
[SSH_MAX_IDENTITY_FILES
];
1461 Key
*identity_keys
[SSH_MAX_IDENTITY_FILES
];
1462 #ifdef ENABLE_PKCS11
1468 bzero(identity_files
, sizeof(identity_files
));
1469 bzero(identity_keys
, sizeof(identity_keys
));
1471 #ifdef ENABLE_PKCS11
1472 if (options
.pkcs11_provider
!= NULL
&&
1473 options
.num_identity_files
< SSH_MAX_IDENTITY_FILES
&&
1474 (pkcs11_init(!options
.batch_mode
) == 0) &&
1475 (nkeys
= pkcs11_add_provider(options
.pkcs11_provider
, NULL
,
1477 for (i
= 0; i
< nkeys
; i
++) {
1478 if (n_ids
>= SSH_MAX_IDENTITY_FILES
) {
1482 identity_keys
[n_ids
] = keys
[i
];
1483 identity_files
[n_ids
] =
1484 xstrdup(options
.pkcs11_provider
); /* XXX */
1489 #endif /* ENABLE_PKCS11 */
1490 if ((pw
= getpwuid(original_real_uid
)) == NULL
)
1491 fatal("load_public_identity_files: getpwuid failed");
1492 pwname
= xstrdup(pw
->pw_name
);
1493 pwdir
= xstrdup(pw
->pw_dir
);
1494 if (gethostname(thishost
, sizeof(thishost
)) == -1)
1495 fatal("load_public_identity_files: gethostname: %s",
1497 for (i
= 0; i
< options
.num_identity_files
; i
++) {
1498 if (n_ids
>= SSH_MAX_IDENTITY_FILES
) {
1499 xfree(options
.identity_files
[i
]);
1502 cp
= tilde_expand_filename(options
.identity_files
[i
],
1504 filename
= percent_expand(cp
, "d", pwdir
,
1505 "u", pwname
, "l", thishost
, "h", host
,
1506 "r", options
.user
, (char *)NULL
);
1508 public = key_load_public(filename
, NULL
);
1509 debug("identity file %s type %d", filename
,
1510 public ? public->type
: -1);
1511 xfree(options
.identity_files
[i
]);
1512 identity_files
[n_ids
] = filename
;
1513 identity_keys
[n_ids
] = public;
1515 if (++n_ids
>= SSH_MAX_IDENTITY_FILES
)
1518 /* Try to add the certificate variant too */
1519 xasprintf(&cp
, "%s-cert", filename
);
1520 public = key_load_public(cp
, NULL
);
1521 debug("identity file %s type %d", cp
,
1522 public ? public->type
: -1);
1523 if (public == NULL
) {
1527 if (!key_is_cert(public)) {
1528 debug("%s: key %s type %s is not a certificate",
1529 __func__
, cp
, key_type(public));
1534 identity_keys
[n_ids
] = public;
1535 /* point to the original path, most likely the private key */
1536 identity_files
[n_ids
] = xstrdup(filename
);
1539 options
.num_identity_files
= n_ids
;
1540 memcpy(options
.identity_files
, identity_files
, sizeof(identity_files
));
1541 memcpy(options
.identity_keys
, identity_keys
, sizeof(identity_keys
));
1543 bzero(pwname
, strlen(pwname
));
1545 bzero(pwdir
, strlen(pwdir
));