1 /* $OpenBSD: ssh.c,v 1.331 2010/01/11 01:39:46 dtucker 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"
90 #include "pathnames.h"
92 #include "clientloop.h"
95 #include "sshconnect.h"
110 extern char *__progname
;
112 /* Flag indicating whether debug mode is on. May be set on the command line. */
115 /* Flag indicating whether a tty should be allocated */
118 int force_tty_flag
= 0;
120 /* don't exec a shell */
121 int no_shell_flag
= 0;
124 * Flag indicating that nothing should be read from stdin. This can be set
125 * on the command line.
127 int stdin_null_flag
= 0;
130 * Flag indicating that ssh should fork after authentication. This is useful
131 * so that the passphrase can be entered manually, and then ssh goes to the
134 int fork_after_authentication_flag
= 0;
136 /* forward stdio to remote host and port */
137 char *stdio_forward_host
= NULL
;
138 int stdio_forward_port
= 0;
141 * General data structure for command line options and options configurable
142 * in configuration files. See readconf.h.
146 /* optional user configfile */
150 * Name of the host we are connecting to. This is the name given on the
151 * command line, or the HostName specified for the user-supplied name in a
152 * configuration file.
156 /* socket address the host resolves to */
157 struct sockaddr_storage hostaddr
;
159 /* Private host keys. */
160 Sensitive sensitive_data
;
162 /* Original real UID. */
163 uid_t original_real_uid
;
164 uid_t original_effective_uid
;
166 /* command to be executed */
169 /* Should we execute a command or invoke a subsystem? */
170 int subsystem_flag
= 0;
172 /* # of replies received for global requests */
173 static int remote_forward_confirms_received
= 0;
175 /* pid of proxycommand child process */
176 pid_t proxy_command_pid
= 0;
179 extern int muxserver_sock
;
180 extern u_int muxclient_command
;
182 /* Prints a help message to the user. This function never returns. */
188 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
189 " [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
190 " [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
191 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
192 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
193 " [-W host:port] [-w local_tun[:remote_tun]]\n"
194 " [user@]hostname [command]\n"
199 static int ssh_session(void);
200 static int ssh_session2(void);
201 static void load_public_identity_files(void);
203 /* from muxclient.c */
204 void muxclient(const char *);
205 void muxserver_listen(void);
208 * Main program for the ssh client.
211 main(int ac
, char **av
)
213 int i
, r
, opt
, exit_status
, use_syslog
;
214 char *p
, *cp
, *line
, *argv0
, buf
[MAXPATHLEN
];
217 int dummy
, timeout_ms
;
218 extern int optind
, optreset
;
223 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
226 __progname
= ssh_get_progname(av
[0]);
230 * Save the original real uid. It will be needed later (uid-swapping
231 * may clobber the real uid).
233 original_real_uid
= getuid();
234 original_effective_uid
= geteuid();
237 * Use uid-swapping to give up root privileges for the duration of
238 * option processing. We will re-instantiate the rights when we are
239 * ready to create the privileged port, and will permanently drop
240 * them when the port has been created (actually, when the connection
241 * has been made, as we may need to create the port several times).
245 #ifdef HAVE_SETRLIMIT
246 /* If we are installed setuid root be careful to not drop core. */
247 if (original_real_uid
!= original_effective_uid
) {
249 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
250 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
251 fatal("setrlimit failed: %.100s", strerror(errno
));
255 pw
= getpwuid(original_real_uid
);
257 logit("You don't exist, go away!");
260 /* Take a copy of the returned structure. */
264 * Set our umask to something reasonable, as some files are created
265 * with the default umask. This will make them world-readable but
266 * writable only by the owner, which is ok for all files for which we
267 * don't set the modes explicitly.
272 * Initialize option structure to indicate that no values have been
275 initialize_options(&options
);
277 /* Parse command-line arguments. */
283 while ((opt
= getopt(ac
, av
, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
284 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
287 options
.protocol
= SSH_PROTO_1
;
290 options
.protocol
= SSH_PROTO_2
;
293 options
.address_family
= AF_INET
;
296 options
.address_family
= AF_INET6
;
302 fork_after_authentication_flag
= 1;
306 options
.forward_x11
= 0;
309 options
.forward_x11
= 1;
315 options
.forward_x11
= 1;
316 options
.forward_x11_trusted
= 1;
319 options
.gateway_ports
= 1;
322 if (strcmp(optarg
, "check") == 0)
323 muxclient_command
= SSHMUX_COMMAND_ALIVE_CHECK
;
324 else if (strcmp(optarg
, "exit") == 0)
325 muxclient_command
= SSHMUX_COMMAND_TERMINATE
;
327 fatal("Invalid multiplex command.");
329 case 'P': /* deprecated */
330 options
.use_privileged_port
= 0;
333 options
.forward_agent
= 0;
336 options
.forward_agent
= 1;
339 options
.gss_deleg_creds
= 0;
342 options
.gss_authentication
= 1;
343 options
.gss_deleg_creds
= 1;
346 if (stat(optarg
, &st
) < 0) {
347 fprintf(stderr
, "Warning: Identity file %s "
348 "not accessible: %s.\n", optarg
,
352 if (options
.num_identity_files
>=
353 SSH_MAX_IDENTITY_FILES
)
354 fatal("Too many identity files specified "
355 "(max %d)", SSH_MAX_IDENTITY_FILES
);
356 options
.identity_files
[options
.num_identity_files
++] =
361 options
.smartcard_device
= xstrdup(optarg
);
363 fprintf(stderr
, "no support for smartcards.\n");
372 if (debug_flag
== 0) {
374 options
.log_level
= SYSLOG_LEVEL_DEBUG1
;
376 if (options
.log_level
< SYSLOG_LEVEL_DEBUG3
)
382 fprintf(stderr
, "%s, %s\n",
383 SSH_RELEASE
, SSLeay_version(SSLEAY_VERSION
));
388 if (options
.tun_open
== -1)
389 options
.tun_open
= SSH_TUNMODE_DEFAULT
;
390 options
.tun_local
= a2tun(optarg
, &options
.tun_remote
);
391 if (options
.tun_local
== SSH_TUNID_ERR
) {
393 "Bad tun device '%s'\n", optarg
);
398 if (parse_forward(&fwd
, optarg
, 1, 0)) {
399 stdio_forward_host
= fwd
.listen_host
;
400 stdio_forward_port
= fwd
.listen_port
;
401 xfree(fwd
.connect_host
);
404 "Bad stdio forwarding specification '%s'\n",
410 options
.clear_forwardings
= 1;
411 options
.exit_on_forward_failure
= 1;
414 options
.log_level
= SYSLOG_LEVEL_QUIET
;
417 if (optarg
[0] == '^' && optarg
[2] == 0 &&
418 (u_char
) optarg
[1] >= 64 &&
419 (u_char
) optarg
[1] < 128)
420 options
.escape_char
= (u_char
) optarg
[1] & 31;
421 else if (strlen(optarg
) == 1)
422 options
.escape_char
= (u_char
) optarg
[0];
423 else if (strcmp(optarg
, "none") == 0)
424 options
.escape_char
= SSH_ESCAPECHAR_NONE
;
426 fprintf(stderr
, "Bad escape character '%s'.\n",
432 if (ciphers_valid(optarg
)) {
434 options
.ciphers
= xstrdup(optarg
);
435 options
.cipher
= SSH_CIPHER_INVALID
;
438 options
.cipher
= cipher_number(optarg
);
439 if (options
.cipher
== -1) {
441 "Unknown cipher type '%s'\n",
445 if (options
.cipher
== SSH_CIPHER_3DES
)
446 options
.ciphers
= "3des-cbc";
447 else if (options
.cipher
== SSH_CIPHER_BLOWFISH
)
448 options
.ciphers
= "blowfish-cbc";
450 options
.ciphers
= (char *)-1;
454 if (mac_valid(optarg
))
455 options
.macs
= xstrdup(optarg
);
457 fprintf(stderr
, "Unknown mac type '%s'\n",
463 if (options
.control_master
== SSHCTL_MASTER_YES
)
464 options
.control_master
= SSHCTL_MASTER_ASK
;
466 options
.control_master
= SSHCTL_MASTER_YES
;
469 options
.port
= a2port(optarg
);
470 if (options
.port
<= 0) {
471 fprintf(stderr
, "Bad port '%s'\n", optarg
);
476 options
.user
= optarg
;
480 if (parse_forward(&fwd
, optarg
, 0, 0))
481 add_local_forward(&options
, &fwd
);
484 "Bad local forwarding specification '%s'\n",
491 if (parse_forward(&fwd
, optarg
, 0, 1)) {
492 add_remote_forward(&options
, &fwd
);
495 "Bad remote forwarding specification "
502 if (parse_forward(&fwd
, optarg
, 1, 0)) {
503 add_local_forward(&options
, &fwd
);
506 "Bad dynamic forwarding specification "
513 options
.compression
= 1;
524 line
= xstrdup(optarg
);
525 if (process_config_line(&options
, host
? host
: "",
526 line
, "command-line", 0, &dummy
) != 0)
534 if (options
.control_path
!= NULL
)
535 free(options
.control_path
);
536 options
.control_path
= xstrdup(optarg
);
539 options
.bind_address
= optarg
;
552 if (ac
> 0 && !host
) {
553 if (strrchr(*av
, '@')) {
555 cp
= strrchr(p
, '@');
556 if (cp
== NULL
|| cp
== p
)
564 optind
= optreset
= 1;
570 /* Check that we got a host name. */
574 SSLeay_add_all_algorithms();
575 ERR_load_crypto_strings();
577 /* Initialize the command to execute on remote host. */
578 buffer_init(&command
);
581 * Save the command to execute on the remote host in a buffer. There
582 * is no limit on the length of the command, except by the maximum
583 * packet size. Also sets the tty flag if there is no command.
586 /* No command specified - execute shell on a tty. */
588 if (subsystem_flag
) {
590 "You must specify a subsystem to invoke.\n");
594 /* A command has been specified. Store it into the buffer. */
595 for (i
= 0; i
< ac
; i
++) {
597 buffer_append(&command
, " ", 1);
598 buffer_append(&command
, av
[i
], strlen(av
[i
]));
602 /* Cannot fork to background if no command. */
603 if (fork_after_authentication_flag
&& buffer_len(&command
) == 0 &&
605 fatal("Cannot fork into background without a command "
608 /* Allocate a tty by default if no command specified. */
609 if (buffer_len(&command
) == 0)
615 /* Do not allocate a tty if stdin is not a tty. */
616 if ((!isatty(fileno(stdin
)) || stdin_null_flag
) && !force_tty_flag
) {
618 logit("Pseudo-terminal will not be allocated because "
619 "stdin is not a terminal.");
624 * Initialize "log" output. Since we are the client all output
625 * actually goes to stderr.
628 options
.log_level
== -1 ? SYSLOG_LEVEL_INFO
: options
.log_level
,
629 SYSLOG_FACILITY_USER
, !use_syslog
);
632 * Read per-user configuration file. Ignore the system wide config
633 * file if the user specifies a config file on the command line.
635 if (config
!= NULL
) {
636 if (!read_config_file(config
, host
, &options
, 0))
637 fatal("Can't open user config file %.100s: "
638 "%.100s", config
, strerror(errno
));
640 r
= snprintf(buf
, sizeof buf
, "%s/%s", pw
->pw_dir
,
641 _PATH_SSH_USER_CONFFILE
);
642 if (r
> 0 && (size_t)r
< sizeof(buf
))
643 (void)read_config_file(buf
, host
, &options
, 1);
645 /* Read systemwide configuration file after use config. */
646 (void)read_config_file(_PATH_HOST_CONFIG_FILE
, host
,
650 /* Fill configuration defaults. */
651 fill_default_options(&options
);
653 channel_set_af(options
.address_family
);
656 log_init(argv0
, options
.log_level
, SYSLOG_FACILITY_USER
, !use_syslog
);
660 if (options
.user
== NULL
)
661 options
.user
= xstrdup(pw
->pw_name
);
663 /* Get default port if port has not been set. */
664 if (options
.port
== 0) {
665 sp
= getservbyname(SSH_SERVICE_NAME
, "tcp");
666 options
.port
= sp
? ntohs(sp
->s_port
) : SSH_DEFAULT_PORT
;
669 if (options
.local_command
!= NULL
) {
670 char thishost
[NI_MAXHOST
];
672 if (gethostname(thishost
, sizeof(thishost
)) == -1)
673 fatal("gethostname: %s", strerror(errno
));
674 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
675 debug3("expanding LocalCommand: %s", options
.local_command
);
676 cp
= options
.local_command
;
677 options
.local_command
= percent_expand(cp
, "d", pw
->pw_dir
,
678 "h", options
.hostname
? options
.hostname
: host
,
679 "l", thishost
, "n", host
, "r", options
.user
, "p", buf
,
680 "u", pw
->pw_name
, (char *)NULL
);
681 debug3("expanded LocalCommand: %s", options
.local_command
);
685 if (options
.hostname
!= NULL
)
686 host
= options
.hostname
;
688 /* force lowercase for hostkey matching */
689 if (options
.host_key_alias
!= NULL
) {
690 for (p
= options
.host_key_alias
; *p
; p
++)
692 *p
= (char)tolower(*p
);
695 if (options
.proxy_command
!= NULL
&&
696 strcmp(options
.proxy_command
, "none") == 0) {
697 xfree(options
.proxy_command
);
698 options
.proxy_command
= NULL
;
700 if (options
.control_path
!= NULL
&&
701 strcmp(options
.control_path
, "none") == 0) {
702 xfree(options
.control_path
);
703 options
.control_path
= NULL
;
706 if (options
.control_path
!= NULL
) {
707 char thishost
[NI_MAXHOST
];
709 if (gethostname(thishost
, sizeof(thishost
)) == -1)
710 fatal("gethostname: %s", strerror(errno
));
711 snprintf(buf
, sizeof(buf
), "%d", options
.port
);
712 cp
= tilde_expand_filename(options
.control_path
,
714 xfree(options
.control_path
);
715 options
.control_path
= percent_expand(cp
, "p", buf
, "h", host
,
716 "r", options
.user
, "l", thishost
, (char *)NULL
);
719 if (muxclient_command
!= 0 && options
.control_path
== NULL
)
720 fatal("No ControlPath specified for \"-O\" command");
721 if (options
.control_path
!= NULL
)
722 muxclient(options
.control_path
);
724 timeout_ms
= options
.connection_timeout
* 1000;
726 /* Open a connection to the remote host. */
727 if (ssh_connect(host
, &hostaddr
, options
.port
,
728 options
.address_family
, options
.connection_attempts
, &timeout_ms
,
729 options
.tcp_keep_alive
,
731 options
.use_privileged_port
,
733 original_effective_uid
== 0 && options
.use_privileged_port
,
735 options
.proxy_command
) != 0)
739 debug3("timeout: %d ms remain after connect", timeout_ms
);
742 * If we successfully made the connection, load the host private key
743 * in case we will need it later for combined rsa-rhosts
744 * authentication. This must be done before releasing extra
745 * privileges, because the file is only readable by root.
746 * If we cannot access the private keys, load the public keys
747 * instead and try to execute the ssh-keysign helper instead.
749 sensitive_data
.nkeys
= 0;
750 sensitive_data
.keys
= NULL
;
751 sensitive_data
.external_keysign
= 0;
752 if (options
.rhosts_rsa_authentication
||
753 options
.hostbased_authentication
) {
754 sensitive_data
.nkeys
= 3;
755 sensitive_data
.keys
= xcalloc(sensitive_data
.nkeys
,
759 sensitive_data
.keys
[0] = key_load_private_type(KEY_RSA1
,
760 _PATH_HOST_KEY_FILE
, "", NULL
, NULL
);
761 sensitive_data
.keys
[1] = key_load_private_type(KEY_DSA
,
762 _PATH_HOST_DSA_KEY_FILE
, "", NULL
, NULL
);
763 sensitive_data
.keys
[2] = key_load_private_type(KEY_RSA
,
764 _PATH_HOST_RSA_KEY_FILE
, "", NULL
, NULL
);
767 if (options
.hostbased_authentication
== 1 &&
768 sensitive_data
.keys
[0] == NULL
&&
769 sensitive_data
.keys
[1] == NULL
&&
770 sensitive_data
.keys
[2] == NULL
) {
771 sensitive_data
.keys
[1] = key_load_public(
772 _PATH_HOST_DSA_KEY_FILE
, NULL
);
773 sensitive_data
.keys
[2] = key_load_public(
774 _PATH_HOST_RSA_KEY_FILE
, NULL
);
775 sensitive_data
.external_keysign
= 1;
779 * Get rid of any extra privileges that we may have. We will no
780 * longer need them. Also, extra privileges could make it very hard
781 * to read identity files and other non-world-readable files from the
782 * user's home directory if it happens to be on a NFS volume where
783 * root is mapped to nobody.
785 if (original_effective_uid
== 0) {
787 permanently_set_uid(pw
);
791 * Now that we are back to our own permissions, create ~/.ssh
792 * directory if it doesn't already exist.
794 r
= snprintf(buf
, sizeof buf
, "%s%s%s", pw
->pw_dir
,
795 strcmp(pw
->pw_dir
, "/") ? "/" : "", _PATH_SSH_USER_DIR
);
796 if (r
> 0 && (size_t)r
< sizeof(buf
) && stat(buf
, &st
) < 0)
797 if (mkdir(buf
, 0700) < 0)
798 error("Could not create directory '%.200s'.", buf
);
800 /* load options.identity_files */
801 load_public_identity_files();
803 /* Expand ~ in known host file names. */
805 options
.system_hostfile
=
806 tilde_expand_filename(options
.system_hostfile
, original_real_uid
);
807 options
.user_hostfile
=
808 tilde_expand_filename(options
.user_hostfile
, original_real_uid
);
809 options
.system_hostfile2
=
810 tilde_expand_filename(options
.system_hostfile2
, original_real_uid
);
811 options
.user_hostfile2
=
812 tilde_expand_filename(options
.user_hostfile2
, original_real_uid
);
814 signal(SIGPIPE
, SIG_IGN
); /* ignore SIGPIPE early */
816 /* Log into the remote system. Never returns if the login fails. */
817 ssh_login(&sensitive_data
, host
, (struct sockaddr
*)&hostaddr
,
820 /* We no longer need the private host keys. Clear them now. */
821 if (sensitive_data
.nkeys
!= 0) {
822 for (i
= 0; i
< sensitive_data
.nkeys
; i
++) {
823 if (sensitive_data
.keys
[i
] != NULL
) {
824 /* Destroys contents safely */
825 debug3("clear hostkey %d", i
);
826 key_free(sensitive_data
.keys
[i
]);
827 sensitive_data
.keys
[i
] = NULL
;
830 xfree(sensitive_data
.keys
);
832 for (i
= 0; i
< options
.num_identity_files
; i
++) {
833 if (options
.identity_files
[i
]) {
834 xfree(options
.identity_files
[i
]);
835 options
.identity_files
[i
] = NULL
;
837 if (options
.identity_keys
[i
]) {
838 key_free(options
.identity_keys
[i
]);
839 options
.identity_keys
[i
] = NULL
;
843 exit_status
= compat20
? ssh_session2() : ssh_session();
846 if (options
.control_path
!= NULL
&& muxserver_sock
!= -1)
847 unlink(options
.control_path
);
850 * Send SIGHUP to proxy command if used. We don't wait() in
851 * case it hangs and instead rely on init to reap the child
853 if (proxy_command_pid
> 1)
854 kill(proxy_command_pid
, SIGHUP
);
859 /* Callback for remote forward global requests */
861 ssh_confirm_remote_forward(int type
, u_int32_t seq
, void *ctxt
)
863 Forward
*rfwd
= (Forward
*)ctxt
;
865 /* XXX verbose() on failure? */
866 debug("remote forward %s for: listen %d, connect %s:%d",
867 type
== SSH2_MSG_REQUEST_SUCCESS
? "success" : "failure",
868 rfwd
->listen_port
, rfwd
->connect_host
, rfwd
->connect_port
);
869 if (type
== SSH2_MSG_REQUEST_SUCCESS
&& rfwd
->listen_port
== 0) {
870 logit("Allocated port %u for remote forward to %s:%d",
872 rfwd
->connect_host
, rfwd
->connect_port
);
875 if (type
== SSH2_MSG_REQUEST_FAILURE
) {
876 if (options
.exit_on_forward_failure
)
877 fatal("Error: remote port forwarding failed for "
878 "listen port %d", rfwd
->listen_port
);
880 logit("Warning: remote port forwarding failed for "
881 "listen port %d", rfwd
->listen_port
);
883 if (++remote_forward_confirms_received
== options
.num_remote_forwards
) {
884 debug("All remote forwarding requests processed");
885 if (fork_after_authentication_flag
) {
886 fork_after_authentication_flag
= 0;
887 if (daemon(1, 1) < 0)
888 fatal("daemon() failed: %.200s",
895 client_cleanup_stdio_fwd(int id
, void *arg
)
897 debug("stdio forwarding: done");
902 client_setup_stdio_fwd(const char *host_to_connect
, u_short port_to_connect
)
906 debug3("client_setup_stdio_fwd %s:%d", host_to_connect
,
908 if ((c
= channel_connect_stdio_fwd(host_to_connect
, port_to_connect
))
911 channel_register_cleanup(c
->self
, client_cleanup_stdio_fwd
, 0);
916 ssh_init_forwarding(void)
921 if (stdio_forward_host
!= NULL
) {
923 fatal("stdio forwarding require Protocol 2");
925 if (!client_setup_stdio_fwd(stdio_forward_host
,
927 fatal("Failed to connect in stdio forward mode.");
930 /* Initiate local TCP/IP port forwardings. */
931 for (i
= 0; i
< options
.num_local_forwards
; i
++) {
932 debug("Local connections to %.200s:%d forwarded to remote "
934 (options
.local_forwards
[i
].listen_host
== NULL
) ?
935 (options
.gateway_ports
? "*" : "LOCALHOST") :
936 options
.local_forwards
[i
].listen_host
,
937 options
.local_forwards
[i
].listen_port
,
938 options
.local_forwards
[i
].connect_host
,
939 options
.local_forwards
[i
].connect_port
);
940 success
+= channel_setup_local_fwd_listener(
941 options
.local_forwards
[i
].listen_host
,
942 options
.local_forwards
[i
].listen_port
,
943 options
.local_forwards
[i
].connect_host
,
944 options
.local_forwards
[i
].connect_port
,
945 options
.gateway_ports
);
947 if (i
> 0 && success
!= i
&& options
.exit_on_forward_failure
)
948 fatal("Could not request local forwarding.");
949 if (i
> 0 && success
== 0)
950 error("Could not request local forwarding.");
952 /* Initiate remote TCP/IP port forwardings. */
953 for (i
= 0; i
< options
.num_remote_forwards
; i
++) {
954 debug("Remote connections from %.200s:%d forwarded to "
955 "local address %.200s:%d",
956 (options
.remote_forwards
[i
].listen_host
== NULL
) ?
957 "LOCALHOST" : options
.remote_forwards
[i
].listen_host
,
958 options
.remote_forwards
[i
].listen_port
,
959 options
.remote_forwards
[i
].connect_host
,
960 options
.remote_forwards
[i
].connect_port
);
961 if (channel_request_remote_forwarding(
962 options
.remote_forwards
[i
].listen_host
,
963 options
.remote_forwards
[i
].listen_port
,
964 options
.remote_forwards
[i
].connect_host
,
965 options
.remote_forwards
[i
].connect_port
) < 0) {
966 if (options
.exit_on_forward_failure
)
967 fatal("Could not request remote forwarding.");
969 logit("Warning: Could not request remote "
972 client_register_global_confirm(ssh_confirm_remote_forward
,
973 &options
.remote_forwards
[i
]);
976 /* Initiate tunnel forwarding. */
977 if (options
.tun_open
!= SSH_TUNMODE_NO
) {
978 if (client_request_tun_fwd(options
.tun_open
,
979 options
.tun_local
, options
.tun_remote
) == -1) {
980 if (options
.exit_on_forward_failure
)
981 fatal("Could not request tunnel forwarding.");
983 error("Could not request tunnel forwarding.");
989 check_agent_present(void)
991 if (options
.forward_agent
) {
992 /* Clear agent forwarding if we don't have an agent. */
993 if (!ssh_agent_present())
994 options
.forward_agent
= 0;
1002 int interactive
= 0;
1006 const char *display
;
1008 /* Enable compression if requested. */
1009 if (options
.compression
) {
1010 debug("Requesting compression at level %d.",
1011 options
.compression_level
);
1013 if (options
.compression_level
< 1 ||
1014 options
.compression_level
> 9)
1015 fatal("Compression level must be from 1 (fast) to "
1018 /* Send the request. */
1019 packet_start(SSH_CMSG_REQUEST_COMPRESSION
);
1020 packet_put_int(options
.compression_level
);
1022 packet_write_wait();
1023 type
= packet_read();
1024 if (type
== SSH_SMSG_SUCCESS
)
1025 packet_start_compression(options
.compression_level
);
1026 else if (type
== SSH_SMSG_FAILURE
)
1027 logit("Warning: Remote host refused compression.");
1029 packet_disconnect("Protocol error waiting for "
1030 "compression response.");
1032 /* Allocate a pseudo tty if appropriate. */
1034 debug("Requesting pty.");
1036 /* Start the packet. */
1037 packet_start(SSH_CMSG_REQUEST_PTY
);
1039 /* Store TERM in the packet. There is no limit on the
1040 length of the string. */
1041 cp
= getenv("TERM");
1044 packet_put_cstring(cp
);
1046 /* Store window size in the packet. */
1047 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) < 0)
1048 memset(&ws
, 0, sizeof(ws
));
1049 packet_put_int((u_int
)ws
.ws_row
);
1050 packet_put_int((u_int
)ws
.ws_col
);
1051 packet_put_int((u_int
)ws
.ws_xpixel
);
1052 packet_put_int((u_int
)ws
.ws_ypixel
);
1054 /* Store tty modes in the packet. */
1055 tty_make_modes(fileno(stdin
), NULL
);
1057 /* Send the packet, and wait for it to leave. */
1059 packet_write_wait();
1061 /* Read response from the server. */
1062 type
= packet_read();
1063 if (type
== SSH_SMSG_SUCCESS
) {
1066 } else if (type
== SSH_SMSG_FAILURE
)
1067 logit("Warning: Remote host failed or refused to "
1068 "allocate a pseudo tty.");
1070 packet_disconnect("Protocol error waiting for pty "
1071 "request response.");
1073 /* Request X11 forwarding if enabled and DISPLAY is set. */
1074 display
= getenv("DISPLAY");
1075 if (options
.forward_x11
&& display
!= NULL
) {
1077 /* Get reasonable local authentication information. */
1078 client_x11_get_proto(display
, options
.xauth_location
,
1079 options
.forward_x11_trusted
, &proto
, &data
);
1080 /* Request forwarding with authentication spoofing. */
1081 debug("Requesting X11 forwarding with authentication "
1083 x11_request_forwarding_with_spoofing(0, display
, proto
, data
);
1085 /* Read response from the server. */
1086 type
= packet_read();
1087 if (type
== SSH_SMSG_SUCCESS
) {
1089 } else if (type
== SSH_SMSG_FAILURE
) {
1090 logit("Warning: Remote host denied X11 forwarding.");
1092 packet_disconnect("Protocol error waiting for X11 "
1096 /* Tell the packet module whether this is an interactive session. */
1097 packet_set_interactive(interactive
);
1099 /* Request authentication agent forwarding if appropriate. */
1100 check_agent_present();
1102 if (options
.forward_agent
) {
1103 debug("Requesting authentication agent forwarding.");
1104 auth_request_forwarding();
1106 /* Read response from the server. */
1107 type
= packet_read();
1109 if (type
!= SSH_SMSG_SUCCESS
)
1110 logit("Warning: Remote host denied authentication agent forwarding.");
1113 /* Initiate port forwardings. */
1114 ssh_init_forwarding();
1116 /* Execute a local command */
1117 if (options
.local_command
!= NULL
&&
1118 options
.permit_local_command
)
1119 ssh_local_cmd(options
.local_command
);
1122 * If requested and we are not interested in replies to remote
1123 * forwarding requests, then let ssh continue in the background.
1125 if (fork_after_authentication_flag
&&
1126 (!options
.exit_on_forward_failure
||
1127 options
.num_remote_forwards
== 0)) {
1128 fork_after_authentication_flag
= 0;
1129 if (daemon(1, 1) < 0)
1130 fatal("daemon() failed: %.200s", strerror(errno
));
1134 * If a command was specified on the command line, execute the
1135 * command now. Otherwise request the server to start a shell.
1137 if (buffer_len(&command
) > 0) {
1138 int len
= buffer_len(&command
);
1141 debug("Sending command: %.*s", len
,
1142 (u_char
*)buffer_ptr(&command
));
1143 packet_start(SSH_CMSG_EXEC_CMD
);
1144 packet_put_string(buffer_ptr(&command
), buffer_len(&command
));
1146 packet_write_wait();
1148 debug("Requesting shell.");
1149 packet_start(SSH_CMSG_EXEC_SHELL
);
1151 packet_write_wait();
1154 /* Enter the interactive session. */
1155 return client_loop(have_tty
, tty_flag
?
1156 options
.escape_char
: SSH_ESCAPECHAR_NONE
, 0);
1159 /* request pty/x11/agent/tcpfwd/shell for channel */
1161 ssh_session2_setup(int id
, void *arg
)
1163 extern char **environ
;
1164 const char *display
;
1165 int interactive
= tty_flag
;
1167 display
= getenv("DISPLAY");
1168 if (options
.forward_x11
&& display
!= NULL
) {
1170 /* Get reasonable local authentication information. */
1171 client_x11_get_proto(display
, options
.xauth_location
,
1172 options
.forward_x11_trusted
, &proto
, &data
);
1173 /* Request forwarding with authentication spoofing. */
1174 debug("Requesting X11 forwarding with authentication "
1176 x11_request_forwarding_with_spoofing(id
, display
, proto
, data
);
1178 /* XXX wait for reply */
1181 check_agent_present();
1182 if (options
.forward_agent
) {
1183 debug("Requesting authentication agent forwarding.");
1184 channel_request_start(id
, "auth-agent-req@openssh.com", 0);
1188 client_session2_setup(id
, tty_flag
, subsystem_flag
, getenv("TERM"),
1189 NULL
, fileno(stdin
), &command
, environ
);
1191 packet_set_interactive(interactive
);
1194 /* open new channel for a session */
1196 ssh_session2_open(void)
1199 int window
, packetmax
, in
, out
, err
;
1201 if (stdin_null_flag
) {
1202 in
= open(_PATH_DEVNULL
, O_RDONLY
);
1204 in
= dup(STDIN_FILENO
);
1206 out
= dup(STDOUT_FILENO
);
1207 err
= dup(STDERR_FILENO
);
1209 if (in
< 0 || out
< 0 || err
< 0)
1210 fatal("dup() in/out/err failed");
1212 /* enable nonblocking unless tty */
1220 window
= CHAN_SES_WINDOW_DEFAULT
;
1221 packetmax
= CHAN_SES_PACKET_DEFAULT
;
1227 "session", SSH_CHANNEL_OPENING
, in
, out
, err
,
1228 window
, packetmax
, CHAN_EXTENDED_WRITE
,
1229 "client-session", /*nonblock*/0);
1231 debug3("ssh_session2_open: channel_new: %d", c
->self
);
1233 channel_send_open(c
->self
);
1235 channel_register_open_confirm(c
->self
,
1236 ssh_session2_setup
, NULL
);
1246 /* XXX should be pre-session */
1247 ssh_init_forwarding();
1249 if (!no_shell_flag
|| (datafellows
& SSH_BUG_DUMMYCHAN
))
1250 id
= ssh_session2_open();
1252 /* If we don't expect to open a new session, then disallow it */
1253 if (options
.control_master
== SSHCTL_MASTER_NO
&&
1254 (datafellows
& SSH_NEW_OPENSSH
)) {
1255 debug("Requesting no-more-sessions@openssh.com");
1256 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
1257 packet_put_cstring("no-more-sessions@openssh.com");
1262 /* Execute a local command */
1263 if (options
.local_command
!= NULL
&&
1264 options
.permit_local_command
)
1265 ssh_local_cmd(options
.local_command
);
1267 /* Start listening for multiplex clients */
1270 /* If requested, let ssh continue in the background. */
1271 if (fork_after_authentication_flag
) {
1272 fork_after_authentication_flag
= 0;
1273 if (daemon(1, 1) < 0)
1274 fatal("daemon() failed: %.200s", strerror(errno
));
1277 if (options
.use_roaming
)
1280 return client_loop(tty_flag
, tty_flag
?
1281 options
.escape_char
: SSH_ESCAPECHAR_NONE
, id
);
1285 load_public_identity_files(void)
1287 char *filename
, *cp
, thishost
[NI_MAXHOST
];
1288 char *pwdir
= NULL
, *pwname
= NULL
;
1295 if (options
.smartcard_device
!= NULL
&&
1296 options
.num_identity_files
< SSH_MAX_IDENTITY_FILES
&&
1297 (keys
= sc_get_keys(options
.smartcard_device
, NULL
)) != NULL
) {
1299 for (i
= 0; keys
[i
] != NULL
; i
++) {
1301 memmove(&options
.identity_files
[1],
1302 &options
.identity_files
[0],
1303 sizeof(char *) * (SSH_MAX_IDENTITY_FILES
- 1));
1304 memmove(&options
.identity_keys
[1],
1305 &options
.identity_keys
[0],
1306 sizeof(Key
*) * (SSH_MAX_IDENTITY_FILES
- 1));
1307 options
.num_identity_files
++;
1308 options
.identity_keys
[0] = keys
[i
];
1309 options
.identity_files
[0] = sc_get_key_label(keys
[i
]);
1311 if (options
.num_identity_files
> SSH_MAX_IDENTITY_FILES
)
1312 options
.num_identity_files
= SSH_MAX_IDENTITY_FILES
;
1316 #endif /* SMARTCARD */
1317 if ((pw
= getpwuid(original_real_uid
)) == NULL
)
1318 fatal("load_public_identity_files: getpwuid failed");
1319 pwname
= xstrdup(pw
->pw_name
);
1320 pwdir
= xstrdup(pw
->pw_dir
);
1321 if (gethostname(thishost
, sizeof(thishost
)) == -1)
1322 fatal("load_public_identity_files: gethostname: %s",
1324 for (; i
< options
.num_identity_files
; i
++) {
1325 cp
= tilde_expand_filename(options
.identity_files
[i
],
1327 filename
= percent_expand(cp
, "d", pwdir
,
1328 "u", pwname
, "l", thishost
, "h", host
,
1329 "r", options
.user
, (char *)NULL
);
1331 public = key_load_public(filename
, NULL
);
1332 debug("identity file %s type %d", filename
,
1333 public ? public->type
: -1);
1334 xfree(options
.identity_files
[i
]);
1335 options
.identity_files
[i
] = filename
;
1336 options
.identity_keys
[i
] = public;
1338 bzero(pwname
, strlen(pwname
));
1340 bzero(pwdir
, strlen(pwdir
));