1 /* $OpenBSD: ssh.c,v 1.353 2010/10/06 06:39:28 djm 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>
71 #include <netinet/in.h>
72 #include <arpa/inet.h>
74 #include <openssl/evp.h>
75 #include <openssl/err.h>
76 #include "openbsd-compat/openssl-compat.h"
77 #include "openbsd-compat/sys-queue.h"
92 #include "pathnames.h"
94 #include "clientloop.h"
97 #include "sshconnect.h"
109 #include "ssh-pkcs11.h"
112 extern char *__progname
;
114 /* Flag indicating whether debug mode is on. May be set on the command line. */
117 /* Flag indicating whether a tty should be allocated */
120 int force_tty_flag
= 0;
122 /* don't exec a shell */
123 int no_shell_flag
= 0;
126 * Flag indicating that nothing should be read from stdin. This can be set
127 * on the command line.
129 int stdin_null_flag
= 0;
132 * Flag indicating that the current process should be backgrounded and
133 * a new slave launched in the foreground for ControlPersist.
135 int need_controlpersist_detach
= 0;
137 /* Copies of flags for ControlPersist foreground slave */
138 int ostdin_null_flag
, ono_shell_flag
, ono_tty_flag
, otty_flag
;
141 * Flag indicating that ssh should fork after authentication. This is useful
142 * so that the passphrase can be entered manually, and then ssh goes to the
145 int fork_after_authentication_flag
= 0;
147 /* forward stdio to remote host and port */
148 char *stdio_forward_host
= NULL
;
149 int stdio_forward_port
= 0;
152 * General data structure for command line options and options configurable
153 * in configuration files. See readconf.h.
157 /* optional user configfile */
161 * Name of the host we are connecting to. This is the name given on the
162 * command line, or the HostName specified for the user-supplied name in a
163 * configuration file.
167 /* socket address the host resolves to */
168 struct sockaddr_storage hostaddr
;
170 /* Private host keys. */
171 Sensitive sensitive_data
;
173 /* Original real UID. */
174 uid_t original_real_uid
;
175 uid_t original_effective_uid
;
177 /* command to be executed */
180 /* Should we execute a command or invoke a subsystem? */
181 int subsystem_flag
= 0;
183 /* # of replies received for global requests */
184 static int remote_forward_confirms_received
= 0;
187 extern int muxserver_sock
;
188 extern u_int muxclient_command
;
190 /* Prints a help message to the user. This function never returns. */
196 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
197 " [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
198 " [-I pkcs11] [-i identity_file]\n"
199 " [-L [bind_address:]port:host:hostport]\n"
200 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
201 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
202 " [-W host:port] [-w local_tun[:remote_tun]]\n"
203 " [user@]hostname [command]\n"
208 static int ssh_session(void);
209 static int ssh_session2(void);
210 static void load_public_identity_files(void);
211 static void main_sigchld_handler(int);
213 /* from muxclient.c */
214 void muxclient(const char *);
215 void muxserver_listen(void);
218 * Main program for the ssh client.
221 main(int ac
, char **av
)
223 int i
, r
, opt
, exit_status
, use_syslog
;
224 char *p
, *cp
, *line
, *argv0
, buf
[MAXPATHLEN
];
227 int dummy
, timeout_ms
;
228 extern int optind
, optreset
;
233 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
236 __progname
= ssh_get_progname(av
[0]);
240 * Discard other fds that are hanging around. These can cause problem
241 * with backgrounded ssh processes started by ControlPersist.
243 closefrom(STDERR_FILENO
+ 1);
246 * Save the original real uid. It will be needed later (uid-swapping
247 * may clobber the real uid).
249 original_real_uid
= getuid();
250 original_effective_uid
= geteuid();
253 * Use uid-swapping to give up root privileges for the duration of
254 * option processing. We will re-instantiate the rights when we are
255 * ready to create the privileged port, and will permanently drop
256 * them when the port has been created (actually, when the connection
257 * has been made, as we may need to create the port several times).
261 #ifdef HAVE_SETRLIMIT
262 /* If we are installed setuid root be careful to not drop core. */
263 if (original_real_uid
!= original_effective_uid
) {
265 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
266 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
267 fatal("setrlimit failed: %.100s", strerror(errno
));
271 pw
= getpwuid(original_real_uid
);
273 logit("You don't exist, go away!");
276 /* Take a copy of the returned structure. */
280 * Set our umask to something reasonable, as some files are created
281 * with the default umask. This will make them world-readable but
282 * writable only by the owner, which is ok for all files for which we
283 * don't set the modes explicitly.
288 * Initialize option structure to indicate that no values have been
291 initialize_options(&options
);
293 /* Parse command-line arguments. */
299 while ((opt
= getopt(ac
, av
, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
300 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
303 options
.protocol
= SSH_PROTO_1
;
306 options
.protocol
= SSH_PROTO_2
;
309 options
.address_family
= AF_INET
;
312 options
.address_family
= AF_INET6
;
318 fork_after_authentication_flag
= 1;
322 options
.forward_x11
= 0;
325 options
.forward_x11
= 1;
331 options
.forward_x11
= 1;
332 options
.forward_x11_trusted
= 1;
335 options
.gateway_ports
= 1;
338 if (stdio_forward_host
!= NULL
)
339 fatal("Cannot specify multiplexing "
341 else if (muxclient_command
!= 0)
342 fatal("Multiplexing command already specified");
343 if (strcmp(optarg
, "check") == 0)
344 muxclient_command
= SSHMUX_COMMAND_ALIVE_CHECK
;
345 else if (strcmp(optarg
, "forward") == 0)
346 muxclient_command
= SSHMUX_COMMAND_FORWARD
;
347 else if (strcmp(optarg
, "exit") == 0)
348 muxclient_command
= SSHMUX_COMMAND_TERMINATE
;
350 fatal("Invalid multiplex command.");
352 case 'P': /* deprecated */
353 options
.use_privileged_port
= 0;
356 options
.forward_agent
= 0;
359 options
.forward_agent
= 1;
362 options
.gss_deleg_creds
= 0;
365 options
.gss_authentication
= 1;
366 options
.gss_deleg_creds
= 1;
369 if (stat(optarg
, &st
) < 0) {
370 fprintf(stderr
, "Warning: Identity file %s "
371 "not accessible: %s.\n", optarg
,
375 if (options
.num_identity_files
>=
376 SSH_MAX_IDENTITY_FILES
)
377 fatal("Too many identity files specified "
378 "(max %d)", SSH_MAX_IDENTITY_FILES
);
379 options
.identity_files
[options
.num_identity_files
++] =
384 options
.pkcs11_provider
= xstrdup(optarg
);
386 fprintf(stderr
, "no support for PKCS#11.\n");
395 if (debug_flag
== 0) {
397 options
.log_level
= SYSLOG_LEVEL_DEBUG1
;
399 if (options
.log_level
< SYSLOG_LEVEL_DEBUG3
)
405 fprintf(stderr
, "%s, %s\n",
406 SSH_RELEASE
, SSLeay_version(SSLEAY_VERSION
));
411 if (options
.tun_open
== -1)
412 options
.tun_open
= SSH_TUNMODE_DEFAULT
;
413 options
.tun_local
= a2tun(optarg
, &options
.tun_remote
);
414 if (options
.tun_local
== SSH_TUNID_ERR
) {
416 "Bad tun device '%s'\n", optarg
);
421 if (stdio_forward_host
!= NULL
)
422 fatal("stdio forward already specified");
423 if (muxclient_command
!= 0)
424 fatal("Cannot specify stdio forward with -O");
425 if (parse_forward(&fwd
, optarg
, 1, 0)) {
426 stdio_forward_host
= fwd
.listen_host
;
427 stdio_forward_port
= fwd
.listen_port
;
428 xfree(fwd
.connect_host
);
431 "Bad stdio forwarding specification '%s'\n",
437 options
.clear_forwardings
= 1;
438 options
.exit_on_forward_failure
= 1;
441 options
.log_level
= SYSLOG_LEVEL_QUIET
;
444 if (optarg
[0] == '^' && optarg
[2] == 0 &&
445 (u_char
) optarg
[1] >= 64 &&
446 (u_char
) optarg
[1] < 128)
447 options
.escape_char
= (u_char
) optarg
[1] & 31;
448 else if (strlen(optarg
) == 1)
449 options
.escape_char
= (u_char
) optarg
[0];
450 else if (strcmp(optarg
, "none") == 0)
451 options
.escape_char
= SSH_ESCAPECHAR_NONE
;
453 fprintf(stderr
, "Bad escape character '%s'.\n",
459 if (ciphers_valid(optarg
)) {
461 options
.ciphers
= xstrdup(optarg
);
462 options
.cipher
= SSH_CIPHER_INVALID
;
465 options
.cipher
= cipher_number(optarg
);
466 if (options
.cipher
== -1) {
468 "Unknown cipher type '%s'\n",
472 if (options
.cipher
== SSH_CIPHER_3DES
)
473 options
.ciphers
= "3des-cbc";
474 else if (options
.cipher
== SSH_CIPHER_BLOWFISH
)
475 options
.ciphers
= "blowfish-cbc";
477 options
.ciphers
= (char *)-1;
481 if (mac_valid(optarg
))
482 options
.macs
= xstrdup(optarg
);
484 fprintf(stderr
, "Unknown mac type '%s'\n",
490 if (options
.control_master
== SSHCTL_MASTER_YES
)
491 options
.control_master
= SSHCTL_MASTER_ASK
;
493 options
.control_master
= SSHCTL_MASTER_YES
;
496 options
.port
= a2port(optarg
);
497 if (options
.port
<= 0) {
498 fprintf(stderr
, "Bad port '%s'\n", optarg
);
503 options
.user
= optarg
;
507 if (parse_forward(&fwd
, optarg
, 0, 0))
508 add_local_forward(&options
, &fwd
);
511 "Bad local forwarding specification '%s'\n",
518 if (parse_forward(&fwd
, optarg
, 0, 1)) {
519 add_remote_forward(&options
, &fwd
);
522 "Bad remote forwarding specification "
529 if (parse_forward(&fwd
, optarg
, 1, 0)) {
530 add_local_forward(&options
, &fwd
);
533 "Bad dynamic forwarding specification "
540 options
.compression
= 1;
551 line
= xstrdup(optarg
);
552 if (process_config_line(&options
, host
? host
: "",
553 line
, "command-line", 0, &dummy
) != 0)
561 if (options
.control_path
!= NULL
)
562 free(options
.control_path
);
563 options
.control_path
= xstrdup(optarg
);
566 options
.bind_address
= optarg
;
579 if (ac
> 0 && !host
) {
580 if (strrchr(*av
, '@')) {
582 cp
= strrchr(p
, '@');
583 if (cp
== NULL
|| cp
== p
)
591 optind
= optreset
= 1;
597 /* Check that we got a host name. */
601 OpenSSL_add_all_algorithms();
602 ERR_load_crypto_strings();
604 /* Initialize the command to execute on remote host. */
605 buffer_init(&command
);
608 * Save the command to execute on the remote host in a buffer. There
609 * is no limit on the length of the command, except by the maximum
610 * packet size. Also sets the tty flag if there is no command.
613 /* No command specified - execute shell on a tty. */
615 if (subsystem_flag
) {
617 "You must specify a subsystem to invoke.\n");
621 /* A command has been specified. Store it into the buffer. */
622 for (i
= 0; i
< ac
; i
++) {
624 buffer_append(&command
, " ", 1);
625 buffer_append(&command
, av
[i
], strlen(av
[i
]));
629 /* Cannot fork to background if no command. */
630 if (fork_after_authentication_flag
&& buffer_len(&command
) == 0 &&
632 fatal("Cannot fork into background without a command "
635 /* Allocate a tty by default if no command specified. */
636 if (buffer_len(&command
) == 0)
640 if (no_tty_flag
|| muxclient_command
!= 0)
642 /* Do not allocate a tty if stdin is not a tty. */
643 if ((!isatty(fileno(stdin
)) || stdin_null_flag
) && !force_tty_flag
) {
645 logit("Pseudo-terminal will not be allocated because "
646 "stdin is not a terminal.");
651 * Initialize "log" output. Since we are the client all output
652 * actually goes to stderr.
655 options
.log_level
== -1 ? SYSLOG_LEVEL_INFO
: options
.log_level
,
656 SYSLOG_FACILITY_USER
, !use_syslog
);
659 * Read per-user configuration file. Ignore the system wide config
660 * file if the user specifies a config file on the command line.
662 if (config
!= NULL
) {
663 if (!read_config_file(config
, host
, &options
, 0))
664 fatal("Can't open user config file %.100s: "
665 "%.100s", config
, strerror(errno
));
667 r
= snprintf(buf
, sizeof buf
, "%s/%s", pw
->pw_dir
,
668 _PATH_SSH_USER_CONFFILE
);
669 if (r
> 0 && (size_t)r
< sizeof(buf
))
670 (void)read_config_file(buf
, host
, &options
, 1);
672 /* Read systemwide configuration file after use config. */
673 (void)read_config_file(_PATH_HOST_CONFIG_FILE
, host
,
677 /* Fill configuration defaults. */
678 fill_default_options(&options
);
680 channel_set_af(options
.address_family
);
683 log_init(argv0
, options
.log_level
, SYSLOG_FACILITY_USER
, !use_syslog
);
687 if (options
.user
== NULL
)
688 options
.user
= xstrdup(pw
->pw_name
);
690 /* Get default port if port has not been set. */
691 if (options
.port
== 0) {
692 sp
= getservbyname(SSH_SERVICE_NAME
, "tcp");
693 options
.port
= sp
? ntohs(sp
->s_port
) : SSH_DEFAULT_PORT
;
696 if (options
.hostname
!= NULL
) {
697 host
= percent_expand(options
.hostname
,
698 "h", host
, (char *)NULL
);
701 if (options
.local_command
!= NULL
) {
702 char thishost
[NI_MAXHOST
];
704 if (gethostname(thishost
, sizeof(thishost
)) == -1)
705 fatal("gethostname: %s", strerror(errno
));
706 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
707 debug3("expanding LocalCommand: %s", options
.local_command
);
708 cp
= options
.local_command
;
709 options
.local_command
= percent_expand(cp
, "d", pw
->pw_dir
,
710 "h", host
, "l", thishost
, "n", host
, "r", options
.user
,
711 "p", buf
, "u", pw
->pw_name
, (char *)NULL
);
712 debug3("expanded LocalCommand: %s", options
.local_command
);
716 /* force lowercase for hostkey matching */
717 if (options
.host_key_alias
!= NULL
) {
718 for (p
= options
.host_key_alias
; *p
; p
++)
720 *p
= (char)tolower(*p
);
723 if (options
.proxy_command
!= NULL
&&
724 strcmp(options
.proxy_command
, "none") == 0) {
725 xfree(options
.proxy_command
);
726 options
.proxy_command
= NULL
;
728 if (options
.control_path
!= NULL
&&
729 strcmp(options
.control_path
, "none") == 0) {
730 xfree(options
.control_path
);
731 options
.control_path
= NULL
;
734 if (options
.control_path
!= NULL
) {
735 char thishost
[NI_MAXHOST
];
737 if (gethostname(thishost
, sizeof(thishost
)) == -1)
738 fatal("gethostname: %s", strerror(errno
));
739 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
740 cp
= tilde_expand_filename(options
.control_path
,
742 xfree(options
.control_path
);
743 options
.control_path
= percent_expand(cp
, "p", buf
, "h", host
,
744 "r", options
.user
, "l", thishost
, (char *)NULL
);
747 if (muxclient_command
!= 0 && options
.control_path
== NULL
)
748 fatal("No ControlPath specified for \"-O\" command");
749 if (options
.control_path
!= NULL
)
750 muxclient(options
.control_path
);
752 timeout_ms
= options
.connection_timeout
* 1000;
754 /* Open a connection to the remote host. */
755 if (ssh_connect(host
, &hostaddr
, options
.port
,
756 options
.address_family
, options
.connection_attempts
, &timeout_ms
,
757 options
.tcp_keep_alive
,
759 options
.use_privileged_port
,
761 original_effective_uid
== 0 && options
.use_privileged_port
,
763 options
.proxy_command
) != 0)
767 debug3("timeout: %d ms remain after connect", timeout_ms
);
770 * If we successfully made the connection, load the host private key
771 * in case we will need it later for combined rsa-rhosts
772 * authentication. This must be done before releasing extra
773 * privileges, because the file is only readable by root.
774 * If we cannot access the private keys, load the public keys
775 * instead and try to execute the ssh-keysign helper instead.
777 sensitive_data
.nkeys
= 0;
778 sensitive_data
.keys
= NULL
;
779 sensitive_data
.external_keysign
= 0;
780 if (options
.rhosts_rsa_authentication
||
781 options
.hostbased_authentication
) {
782 sensitive_data
.nkeys
= 7;
783 sensitive_data
.keys
= xcalloc(sensitive_data
.nkeys
,
785 for (i
= 0; i
< sensitive_data
.nkeys
; i
++)
786 sensitive_data
.keys
[i
] = NULL
;
789 sensitive_data
.keys
[0] = key_load_private_type(KEY_RSA1
,
790 _PATH_HOST_KEY_FILE
, "", NULL
, NULL
);
791 sensitive_data
.keys
[1] = key_load_private_cert(KEY_DSA
,
792 _PATH_HOST_DSA_KEY_FILE
, "", NULL
);
793 #ifdef OPENSSL_HAS_ECC
794 sensitive_data
.keys
[2] = key_load_private_cert(KEY_ECDSA
,
795 _PATH_HOST_ECDSA_KEY_FILE
, "", NULL
);
797 sensitive_data
.keys
[3] = key_load_private_cert(KEY_RSA
,
798 _PATH_HOST_RSA_KEY_FILE
, "", NULL
);
799 sensitive_data
.keys
[4] = key_load_private_type(KEY_DSA
,
800 _PATH_HOST_DSA_KEY_FILE
, "", NULL
, NULL
);
801 #ifdef OPENSSL_HAS_ECC
802 sensitive_data
.keys
[5] = key_load_private_type(KEY_ECDSA
,
803 _PATH_HOST_ECDSA_KEY_FILE
, "", NULL
, NULL
);
805 sensitive_data
.keys
[6] = key_load_private_type(KEY_RSA
,
806 _PATH_HOST_RSA_KEY_FILE
, "", NULL
, NULL
);
809 if (options
.hostbased_authentication
== 1 &&
810 sensitive_data
.keys
[0] == NULL
&&
811 sensitive_data
.keys
[4] == NULL
&&
812 sensitive_data
.keys
[5] == NULL
&&
813 sensitive_data
.keys
[6] == NULL
) {
814 sensitive_data
.keys
[1] = key_load_cert(
815 _PATH_HOST_DSA_KEY_FILE
);
816 #ifdef OPENSSL_HAS_ECC
817 sensitive_data
.keys
[2] = key_load_cert(
818 _PATH_HOST_ECDSA_KEY_FILE
);
820 sensitive_data
.keys
[3] = key_load_cert(
821 _PATH_HOST_RSA_KEY_FILE
);
822 sensitive_data
.keys
[4] = key_load_public(
823 _PATH_HOST_DSA_KEY_FILE
, NULL
);
824 #ifdef OPENSSL_HAS_ECC
825 sensitive_data
.keys
[5] = key_load_public(
826 _PATH_HOST_ECDSA_KEY_FILE
, NULL
);
828 sensitive_data
.keys
[6] = key_load_public(
829 _PATH_HOST_RSA_KEY_FILE
, NULL
);
830 sensitive_data
.external_keysign
= 1;
834 * Get rid of any extra privileges that we may have. We will no
835 * longer need them. Also, extra privileges could make it very hard
836 * to read identity files and other non-world-readable files from the
837 * user's home directory if it happens to be on a NFS volume where
838 * root is mapped to nobody.
840 if (original_effective_uid
== 0) {
842 permanently_set_uid(pw
);
846 * Now that we are back to our own permissions, create ~/.ssh
847 * directory if it doesn't already exist.
849 r
= snprintf(buf
, sizeof buf
, "%s%s%s", pw
->pw_dir
,
850 strcmp(pw
->pw_dir
, "/") ? "/" : "", _PATH_SSH_USER_DIR
);
851 if (r
> 0 && (size_t)r
< sizeof(buf
) && stat(buf
, &st
) < 0) {
855 matchpathcon(buf
, 0700, &scon
);
856 setfscreatecon(scon
);
858 if (mkdir(buf
, 0700) < 0)
859 error("Could not create directory '%.200s'.", buf
);
861 setfscreatecon(NULL
);
864 /* load options.identity_files */
865 load_public_identity_files();
867 /* Expand ~ in known host file names. */
869 options
.system_hostfile
=
870 tilde_expand_filename(options
.system_hostfile
, original_real_uid
);
871 options
.user_hostfile
=
872 tilde_expand_filename(options
.user_hostfile
, original_real_uid
);
873 options
.system_hostfile2
=
874 tilde_expand_filename(options
.system_hostfile2
, original_real_uid
);
875 options
.user_hostfile2
=
876 tilde_expand_filename(options
.user_hostfile2
, original_real_uid
);
878 signal(SIGPIPE
, SIG_IGN
); /* ignore SIGPIPE early */
879 signal(SIGCHLD
, main_sigchld_handler
);
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
);
921 /* Kill ProxyCommand if it is running. */
922 ssh_kill_proxy_command();
928 control_persist_detach(void)
933 debug("%s: backgrounding master process", __func__
);
936 * master (current process) into the background, and make the
937 * foreground process a client of the backgrounded master.
939 switch ((pid
= fork())) {
941 fatal("%s: fork: %s", __func__
, strerror(errno
));
943 /* Child: master process continues mainloop */
946 /* Parent: set up mux slave to connect to backgrounded master */
947 debug2("%s: background process is %ld", __func__
, (long)pid
);
948 stdin_null_flag
= ostdin_null_flag
;
949 no_shell_flag
= ono_shell_flag
;
950 no_tty_flag
= ono_tty_flag
;
951 tty_flag
= otty_flag
;
952 close(muxserver_sock
);
954 options
.control_master
= SSHCTL_MASTER_NO
;
955 muxclient(options
.control_path
);
956 /* muxclient() doesn't return on success. */
957 fatal("Failed to connect to new control master");
959 if ((devnull
= open(_PATH_DEVNULL
, O_RDWR
)) == -1) {
960 error("%s: open(\"/dev/null\"): %s", __func__
,
963 if (dup2(devnull
, STDIN_FILENO
) == -1 ||
964 dup2(devnull
, STDOUT_FILENO
) == -1)
965 error("%s: dup2: %s", __func__
, strerror(errno
));
966 if (devnull
> STDERR_FILENO
)
971 /* Do fork() after authentication. Used by "ssh -f" */
975 if (need_controlpersist_detach
)
976 control_persist_detach();
977 debug("forking to background");
978 fork_after_authentication_flag
= 0;
979 if (daemon(1, 1) < 0)
980 fatal("daemon() failed: %.200s", strerror(errno
));
983 /* Callback for remote forward global requests */
985 ssh_confirm_remote_forward(int type
, u_int32_t seq
, void *ctxt
)
987 Forward
*rfwd
= (Forward
*)ctxt
;
989 /* XXX verbose() on failure? */
990 debug("remote forward %s for: listen %d, connect %s:%d",
991 type
== SSH2_MSG_REQUEST_SUCCESS
? "success" : "failure",
992 rfwd
->listen_port
, rfwd
->connect_host
, rfwd
->connect_port
);
993 if (type
== SSH2_MSG_REQUEST_SUCCESS
&& rfwd
->listen_port
== 0) {
994 rfwd
->allocated_port
= packet_get_int();
995 logit("Allocated port %u for remote forward to %s:%d",
996 rfwd
->allocated_port
,
997 rfwd
->connect_host
, rfwd
->connect_port
);
1000 if (type
== SSH2_MSG_REQUEST_FAILURE
) {
1001 if (options
.exit_on_forward_failure
)
1002 fatal("Error: remote port forwarding failed for "
1003 "listen port %d", rfwd
->listen_port
);
1005 logit("Warning: remote port forwarding failed for "
1006 "listen port %d", rfwd
->listen_port
);
1008 if (++remote_forward_confirms_received
== options
.num_remote_forwards
) {
1009 debug("All remote forwarding requests processed");
1010 if (fork_after_authentication_flag
)
1016 client_cleanup_stdio_fwd(int id
, void *arg
)
1018 debug("stdio forwarding: done");
1023 client_setup_stdio_fwd(const char *host_to_connect
, u_short port_to_connect
)
1028 debug3("client_setup_stdio_fwd %s:%d", host_to_connect
,
1031 in
= dup(STDIN_FILENO
);
1032 out
= dup(STDOUT_FILENO
);
1033 if (in
< 0 || out
< 0)
1034 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1036 if ((c
= channel_connect_stdio_fwd(host_to_connect
, port_to_connect
,
1039 channel_register_cleanup(c
->self
, client_cleanup_stdio_fwd
, 0);
1044 ssh_init_forwarding(void)
1049 if (stdio_forward_host
!= NULL
) {
1051 fatal("stdio forwarding require Protocol 2");
1053 if (!client_setup_stdio_fwd(stdio_forward_host
,
1054 stdio_forward_port
))
1055 fatal("Failed to connect in stdio forward mode.");
1058 /* Initiate local TCP/IP port forwardings. */
1059 for (i
= 0; i
< options
.num_local_forwards
; i
++) {
1060 debug("Local connections to %.200s:%d forwarded to remote "
1061 "address %.200s:%d",
1062 (options
.local_forwards
[i
].listen_host
== NULL
) ?
1063 (options
.gateway_ports
? "*" : "LOCALHOST") :
1064 options
.local_forwards
[i
].listen_host
,
1065 options
.local_forwards
[i
].listen_port
,
1066 options
.local_forwards
[i
].connect_host
,
1067 options
.local_forwards
[i
].connect_port
);
1068 success
+= channel_setup_local_fwd_listener(
1069 options
.local_forwards
[i
].listen_host
,
1070 options
.local_forwards
[i
].listen_port
,
1071 options
.local_forwards
[i
].connect_host
,
1072 options
.local_forwards
[i
].connect_port
,
1073 options
.gateway_ports
);
1075 if (i
> 0 && success
!= i
&& options
.exit_on_forward_failure
)
1076 fatal("Could not request local forwarding.");
1077 if (i
> 0 && success
== 0)
1078 error("Could not request local forwarding.");
1080 /* Initiate remote TCP/IP port forwardings. */
1081 for (i
= 0; i
< options
.num_remote_forwards
; i
++) {
1082 debug("Remote connections from %.200s:%d forwarded to "
1083 "local address %.200s:%d",
1084 (options
.remote_forwards
[i
].listen_host
== NULL
) ?
1085 "LOCALHOST" : options
.remote_forwards
[i
].listen_host
,
1086 options
.remote_forwards
[i
].listen_port
,
1087 options
.remote_forwards
[i
].connect_host
,
1088 options
.remote_forwards
[i
].connect_port
);
1089 if (channel_request_remote_forwarding(
1090 options
.remote_forwards
[i
].listen_host
,
1091 options
.remote_forwards
[i
].listen_port
,
1092 options
.remote_forwards
[i
].connect_host
,
1093 options
.remote_forwards
[i
].connect_port
) < 0) {
1094 if (options
.exit_on_forward_failure
)
1095 fatal("Could not request remote forwarding.");
1097 logit("Warning: Could not request remote "
1100 client_register_global_confirm(ssh_confirm_remote_forward
,
1101 &options
.remote_forwards
[i
]);
1104 /* Initiate tunnel forwarding. */
1105 if (options
.tun_open
!= SSH_TUNMODE_NO
) {
1106 if (client_request_tun_fwd(options
.tun_open
,
1107 options
.tun_local
, options
.tun_remote
) == -1) {
1108 if (options
.exit_on_forward_failure
)
1109 fatal("Could not request tunnel forwarding.");
1111 error("Could not request tunnel forwarding.");
1117 check_agent_present(void)
1119 if (options
.forward_agent
) {
1120 /* Clear agent forwarding if we don't have an agent. */
1121 if (!ssh_agent_present())
1122 options
.forward_agent
= 0;
1130 int interactive
= 0;
1134 const char *display
;
1136 /* Enable compression if requested. */
1137 if (options
.compression
) {
1138 debug("Requesting compression at level %d.",
1139 options
.compression_level
);
1141 if (options
.compression_level
< 1 ||
1142 options
.compression_level
> 9)
1143 fatal("Compression level must be from 1 (fast) to "
1146 /* Send the request. */
1147 packet_start(SSH_CMSG_REQUEST_COMPRESSION
);
1148 packet_put_int(options
.compression_level
);
1150 packet_write_wait();
1151 type
= packet_read();
1152 if (type
== SSH_SMSG_SUCCESS
)
1153 packet_start_compression(options
.compression_level
);
1154 else if (type
== SSH_SMSG_FAILURE
)
1155 logit("Warning: Remote host refused compression.");
1157 packet_disconnect("Protocol error waiting for "
1158 "compression response.");
1160 /* Allocate a pseudo tty if appropriate. */
1162 debug("Requesting pty.");
1164 /* Start the packet. */
1165 packet_start(SSH_CMSG_REQUEST_PTY
);
1167 /* Store TERM in the packet. There is no limit on the
1168 length of the string. */
1169 cp
= getenv("TERM");
1172 packet_put_cstring(cp
);
1174 /* Store window size in the packet. */
1175 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) < 0)
1176 memset(&ws
, 0, sizeof(ws
));
1177 packet_put_int((u_int
)ws
.ws_row
);
1178 packet_put_int((u_int
)ws
.ws_col
);
1179 packet_put_int((u_int
)ws
.ws_xpixel
);
1180 packet_put_int((u_int
)ws
.ws_ypixel
);
1182 /* Store tty modes in the packet. */
1183 tty_make_modes(fileno(stdin
), NULL
);
1185 /* Send the packet, and wait for it to leave. */
1187 packet_write_wait();
1189 /* Read response from the server. */
1190 type
= packet_read();
1191 if (type
== SSH_SMSG_SUCCESS
) {
1194 } else if (type
== SSH_SMSG_FAILURE
)
1195 logit("Warning: Remote host failed or refused to "
1196 "allocate a pseudo tty.");
1198 packet_disconnect("Protocol error waiting for pty "
1199 "request response.");
1201 /* Request X11 forwarding if enabled and DISPLAY is set. */
1202 display
= getenv("DISPLAY");
1203 if (options
.forward_x11
&& display
!= NULL
) {
1205 /* Get reasonable local authentication information. */
1206 client_x11_get_proto(display
, options
.xauth_location
,
1207 options
.forward_x11_trusted
,
1208 options
.forward_x11_timeout
,
1210 /* Request forwarding with authentication spoofing. */
1211 debug("Requesting X11 forwarding with authentication "
1213 x11_request_forwarding_with_spoofing(0, display
, proto
, data
);
1215 /* Read response from the server. */
1216 type
= packet_read();
1217 if (type
== SSH_SMSG_SUCCESS
) {
1219 } else if (type
== SSH_SMSG_FAILURE
) {
1220 logit("Warning: Remote host denied X11 forwarding.");
1222 packet_disconnect("Protocol error waiting for X11 "
1226 /* Tell the packet module whether this is an interactive session. */
1227 packet_set_interactive(interactive
);
1229 /* Request authentication agent forwarding if appropriate. */
1230 check_agent_present();
1232 if (options
.forward_agent
) {
1233 debug("Requesting authentication agent forwarding.");
1234 auth_request_forwarding();
1236 /* Read response from the server. */
1237 type
= packet_read();
1239 if (type
!= SSH_SMSG_SUCCESS
)
1240 logit("Warning: Remote host denied authentication agent forwarding.");
1243 /* Initiate port forwardings. */
1244 ssh_init_forwarding();
1246 /* Execute a local command */
1247 if (options
.local_command
!= NULL
&&
1248 options
.permit_local_command
)
1249 ssh_local_cmd(options
.local_command
);
1252 * If requested and we are not interested in replies to remote
1253 * forwarding requests, then let ssh continue in the background.
1255 if (fork_after_authentication_flag
) {
1256 if (options
.exit_on_forward_failure
&&
1257 options
.num_remote_forwards
> 0) {
1258 debug("deferring postauth fork until remote forward "
1259 "confirmation received");
1265 * If a command was specified on the command line, execute the
1266 * command now. Otherwise request the server to start a shell.
1268 if (buffer_len(&command
) > 0) {
1269 int len
= buffer_len(&command
);
1272 debug("Sending command: %.*s", len
,
1273 (u_char
*)buffer_ptr(&command
));
1274 packet_start(SSH_CMSG_EXEC_CMD
);
1275 packet_put_string(buffer_ptr(&command
), buffer_len(&command
));
1277 packet_write_wait();
1279 debug("Requesting shell.");
1280 packet_start(SSH_CMSG_EXEC_SHELL
);
1282 packet_write_wait();
1285 /* Enter the interactive session. */
1286 return client_loop(have_tty
, tty_flag
?
1287 options
.escape_char
: SSH_ESCAPECHAR_NONE
, 0);
1290 /* request pty/x11/agent/tcpfwd/shell for channel */
1292 ssh_session2_setup(int id
, int success
, void *arg
)
1294 extern char **environ
;
1295 const char *display
;
1296 int interactive
= tty_flag
;
1299 return; /* No need for error message, channels code sens one */
1301 display
= getenv("DISPLAY");
1302 if (options
.forward_x11
&& display
!= NULL
) {
1304 /* Get reasonable local authentication information. */
1305 client_x11_get_proto(display
, options
.xauth_location
,
1306 options
.forward_x11_trusted
,
1307 options
.forward_x11_timeout
, &proto
, &data
);
1308 /* Request forwarding with authentication spoofing. */
1309 debug("Requesting X11 forwarding with authentication "
1311 x11_request_forwarding_with_spoofing(id
, display
, proto
, data
);
1313 /* XXX wait for reply */
1316 check_agent_present();
1317 if (options
.forward_agent
) {
1318 debug("Requesting authentication agent forwarding.");
1319 channel_request_start(id
, "auth-agent-req@openssh.com", 0);
1323 client_session2_setup(id
, tty_flag
, subsystem_flag
, getenv("TERM"),
1324 NULL
, fileno(stdin
), &command
, environ
);
1326 packet_set_interactive(interactive
);
1329 /* open new channel for a session */
1331 ssh_session2_open(void)
1334 int window
, packetmax
, in
, out
, err
;
1336 if (stdin_null_flag
) {
1337 in
= open(_PATH_DEVNULL
, O_RDONLY
);
1339 in
= dup(STDIN_FILENO
);
1341 out
= dup(STDOUT_FILENO
);
1342 err
= dup(STDERR_FILENO
);
1344 if (in
< 0 || out
< 0 || err
< 0)
1345 fatal("dup() in/out/err failed");
1347 /* enable nonblocking unless tty */
1355 window
= CHAN_SES_WINDOW_DEFAULT
;
1356 packetmax
= CHAN_SES_PACKET_DEFAULT
;
1362 "session", SSH_CHANNEL_OPENING
, in
, out
, err
,
1363 window
, packetmax
, CHAN_EXTENDED_WRITE
,
1364 "client-session", /*nonblock*/0);
1366 debug3("ssh_session2_open: channel_new: %d", c
->self
);
1368 channel_send_open(c
->self
);
1370 channel_register_open_confirm(c
->self
,
1371 ssh_session2_setup
, NULL
);
1381 /* XXX should be pre-session */
1382 ssh_init_forwarding();
1384 /* Start listening for multiplex clients */
1388 * If we are in control persist mode, then prepare to background
1389 * ourselves and have a foreground client attach as a control
1390 * slave. NB. we must save copies of the flags that we override for
1391 * the backgrounding, since we defer attachment of the slave until
1392 * after the connection is fully established (in particular,
1393 * async rfwd replies have been received for ExitOnForwardFailure).
1395 if (options
.control_persist
&& muxserver_sock
!= -1) {
1396 ostdin_null_flag
= stdin_null_flag
;
1397 ono_shell_flag
= no_shell_flag
;
1398 ono_tty_flag
= no_tty_flag
;
1399 otty_flag
= tty_flag
;
1400 stdin_null_flag
= 1;
1404 if (!fork_after_authentication_flag
)
1405 need_controlpersist_detach
= 1;
1406 fork_after_authentication_flag
= 1;
1409 if (!no_shell_flag
|| (datafellows
& SSH_BUG_DUMMYCHAN
))
1410 id
= ssh_session2_open();
1412 /* If we don't expect to open a new session, then disallow it */
1413 if (options
.control_master
== SSHCTL_MASTER_NO
&&
1414 (datafellows
& SSH_NEW_OPENSSH
)) {
1415 debug("Requesting no-more-sessions@openssh.com");
1416 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
1417 packet_put_cstring("no-more-sessions@openssh.com");
1422 /* Execute a local command */
1423 if (options
.local_command
!= NULL
&&
1424 options
.permit_local_command
)
1425 ssh_local_cmd(options
.local_command
);
1428 * If requested and we are not interested in replies to remote
1429 * forwarding requests, then let ssh continue in the background.
1431 if (fork_after_authentication_flag
) {
1432 if (options
.exit_on_forward_failure
&&
1433 options
.num_remote_forwards
> 0) {
1434 debug("deferring postauth fork until remote forward "
1435 "confirmation received");
1440 if (options
.use_roaming
)
1443 return client_loop(tty_flag
, tty_flag
?
1444 options
.escape_char
: SSH_ESCAPECHAR_NONE
, id
);
1448 load_public_identity_files(void)
1450 char *filename
, *cp
, thishost
[NI_MAXHOST
];
1451 char *pwdir
= NULL
, *pwname
= NULL
;
1456 char *identity_files
[SSH_MAX_IDENTITY_FILES
];
1457 Key
*identity_keys
[SSH_MAX_IDENTITY_FILES
];
1458 #ifdef ENABLE_PKCS11
1464 bzero(identity_files
, sizeof(identity_files
));
1465 bzero(identity_keys
, sizeof(identity_keys
));
1467 #ifdef ENABLE_PKCS11
1468 if (options
.pkcs11_provider
!= NULL
&&
1469 options
.num_identity_files
< SSH_MAX_IDENTITY_FILES
&&
1470 (pkcs11_init(!options
.batch_mode
) == 0) &&
1471 (nkeys
= pkcs11_add_provider(options
.pkcs11_provider
, NULL
,
1473 for (i
= 0; i
< nkeys
; i
++) {
1474 if (n_ids
>= SSH_MAX_IDENTITY_FILES
) {
1478 identity_keys
[n_ids
] = keys
[i
];
1479 identity_files
[n_ids
] =
1480 xstrdup(options
.pkcs11_provider
); /* XXX */
1485 #endif /* ENABLE_PKCS11 */
1486 if ((pw
= getpwuid(original_real_uid
)) == NULL
)
1487 fatal("load_public_identity_files: getpwuid failed");
1488 pwname
= xstrdup(pw
->pw_name
);
1489 pwdir
= xstrdup(pw
->pw_dir
);
1490 if (gethostname(thishost
, sizeof(thishost
)) == -1)
1491 fatal("load_public_identity_files: gethostname: %s",
1493 for (i
= 0; i
< options
.num_identity_files
; i
++) {
1494 if (n_ids
>= SSH_MAX_IDENTITY_FILES
) {
1495 xfree(options
.identity_files
[i
]);
1498 cp
= tilde_expand_filename(options
.identity_files
[i
],
1500 filename
= percent_expand(cp
, "d", pwdir
,
1501 "u", pwname
, "l", thishost
, "h", host
,
1502 "r", options
.user
, (char *)NULL
);
1504 public = key_load_public(filename
, NULL
);
1505 debug("identity file %s type %d", filename
,
1506 public ? public->type
: -1);
1507 xfree(options
.identity_files
[i
]);
1508 identity_files
[n_ids
] = filename
;
1509 identity_keys
[n_ids
] = public;
1511 if (++n_ids
>= SSH_MAX_IDENTITY_FILES
)
1514 /* Try to add the certificate variant too */
1515 xasprintf(&cp
, "%s-cert", filename
);
1516 public = key_load_public(cp
, NULL
);
1517 debug("identity file %s type %d", cp
,
1518 public ? public->type
: -1);
1519 if (public == NULL
) {
1523 if (!key_is_cert(public)) {
1524 debug("%s: key %s type %s is not a certificate",
1525 __func__
, cp
, key_type(public));
1530 identity_keys
[n_ids
] = public;
1531 /* point to the original path, most likely the private key */
1532 identity_files
[n_ids
] = xstrdup(filename
);
1535 options
.num_identity_files
= n_ids
;
1536 memcpy(options
.identity_files
, identity_files
, sizeof(identity_files
));
1537 memcpy(options
.identity_keys
, identity_keys
, sizeof(identity_keys
));
1539 bzero(pwname
, strlen(pwname
));
1541 bzero(pwdir
, strlen(pwdir
));
1546 main_sigchld_handler(int sig
)
1548 int save_errno
= errno
;
1552 while ((pid
= waitpid(-1, &status
, WNOHANG
)) > 0 ||
1553 (pid
< 0 && errno
== EINTR
))
1556 signal(sig
, main_sigchld_handler
);