2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * Ssh client program. This program can be used to log into a remote machine.
6 * The software supports strong authentication, encryption, and forwarding
7 * of X11, TCP/IP, and authentication connections.
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
15 * Copyright (c) 1999 Niels Provos. All rights reserved.
16 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 RCSID("$OpenBSD: ssh.c,v 1.234 2005/03/10 22:01:06 deraadt Exp $");
45 #include <openssl/evp.h>
46 #include <openssl/err.h>
61 #include "pathnames.h"
63 #include "clientloop.h"
66 #include "sshconnect.h"
73 #include "monitor_fdpass.h"
80 extern char *__progname
;
82 /* Flag indicating whether debug mode is on. This can be set on the command line. */
85 /* Flag indicating whether a tty should be allocated */
88 int force_tty_flag
= 0;
90 /* don't exec a shell */
91 int no_shell_flag
= 0;
94 * Flag indicating that nothing should be read from stdin. This can be set
95 * on the command line.
97 int stdin_null_flag
= 0;
100 * Flag indicating that ssh should fork after authentication. This is useful
101 * so that the passphrase can be entered manually, and then ssh goes to the
104 int fork_after_authentication_flag
= 0;
107 * General data structure for command line options and options configurable
108 * in configuration files. See readconf.h.
112 /* optional user configfile */
116 * Name of the host we are connecting to. This is the name given on the
117 * command line, or the HostName specified for the user-supplied name in a
118 * configuration file.
122 /* socket address the host resolves to */
123 struct sockaddr_storage hostaddr
;
125 /* Private host keys. */
126 Sensitive sensitive_data
;
128 /* Original real UID. */
129 uid_t original_real_uid
;
130 uid_t original_effective_uid
;
132 /* command to be executed */
135 /* Should we execute a command or invoke a subsystem? */
136 int subsystem_flag
= 0;
138 /* # of replies received for global requests */
139 static int client_global_request_id
= 0;
141 /* pid of proxycommand child process */
142 pid_t proxy_command_pid
= 0;
144 /* fd to control socket */
147 /* Multiplexing control command */
148 static u_int mux_command
= SSHMUX_COMMAND_OPEN
;
150 /* Only used in control client mode */
151 volatile sig_atomic_t control_client_terminate
= 0;
152 u_int control_server_pid
= 0;
154 /* Prints a help message to the user. This function never returns. */
160 "usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
161 " [-D port] [-e escape_char] [-F configfile]\n"
162 " [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
163 " [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
164 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
165 " [user@]hostname [command]\n"
170 static int ssh_session(void);
171 static int ssh_session2(void);
172 static void load_public_identity_files(void);
173 static void control_client(const char *path
);
176 * Main program for the ssh client.
179 main(int ac
, char **av
)
181 int i
, opt
, exit_status
;
182 char *p
, *cp
, *line
, buf
[256];
186 extern int optind
, optreset
;
190 __progname
= ssh_get_progname(av
[0]);
194 * Save the original real uid. It will be needed later (uid-swapping
195 * may clobber the real uid).
197 original_real_uid
= getuid();
198 original_effective_uid
= geteuid();
201 * Use uid-swapping to give up root privileges for the duration of
202 * option processing. We will re-instantiate the rights when we are
203 * ready to create the privileged port, and will permanently drop
204 * them when the port has been created (actually, when the connection
205 * has been made, as we may need to create the port several times).
209 #ifdef HAVE_SETRLIMIT
210 /* If we are installed setuid root be careful to not drop core. */
211 if (original_real_uid
!= original_effective_uid
) {
213 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
214 if (setrlimit(RLIMIT_CORE
, &rlim
) < 0)
215 fatal("setrlimit failed: %.100s", strerror(errno
));
219 pw
= getpwuid(original_real_uid
);
221 logit("You don't exist, go away!");
224 /* Take a copy of the returned structure. */
228 * Set our umask to something reasonable, as some files are created
229 * with the default umask. This will make them world-readable but
230 * writable only by the owner, which is ok for all files for which we
231 * don't set the modes explicitly.
235 /* Initialize option structure to indicate that no values have been set. */
236 initialize_options(&options
);
238 /* Parse command-line arguments. */
242 while ((opt
= getopt(ac
, av
,
243 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
246 options
.protocol
= SSH_PROTO_1
;
249 options
.protocol
= SSH_PROTO_2
;
252 options
.address_family
= AF_INET
;
255 options
.address_family
= AF_INET6
;
261 fork_after_authentication_flag
= 1;
265 options
.forward_x11
= 0;
268 options
.forward_x11
= 1;
271 options
.forward_x11
= 1;
272 options
.forward_x11_trusted
= 1;
275 options
.gateway_ports
= 1;
278 if (strcmp(optarg
, "check") == 0)
279 mux_command
= SSHMUX_COMMAND_ALIVE_CHECK
;
280 else if (strcmp(optarg
, "exit") == 0)
281 mux_command
= SSHMUX_COMMAND_TERMINATE
;
283 fatal("Invalid multiplex command.");
285 case 'P': /* deprecated */
286 options
.use_privileged_port
= 0;
289 options
.forward_agent
= 0;
292 options
.forward_agent
= 1;
295 options
.gss_deleg_creds
= 0;
298 if (stat(optarg
, &st
) < 0) {
299 fprintf(stderr
, "Warning: Identity file %s "
300 "not accessible: %s.\n", optarg
,
304 if (options
.num_identity_files
>=
305 SSH_MAX_IDENTITY_FILES
)
306 fatal("Too many identity files specified "
307 "(max %d)", SSH_MAX_IDENTITY_FILES
);
308 options
.identity_files
[options
.num_identity_files
++] =
313 options
.smartcard_device
= xstrdup(optarg
);
315 fprintf(stderr
, "no support for smartcards.\n");
324 if (debug_flag
== 0) {
326 options
.log_level
= SYSLOG_LEVEL_DEBUG1
;
328 if (options
.log_level
< SYSLOG_LEVEL_DEBUG3
)
334 fprintf(stderr
, "%s, %s\n",
335 SSH_RELEASE
, SSLeay_version(SSLEAY_VERSION
));
340 options
.log_level
= SYSLOG_LEVEL_QUIET
;
343 if (optarg
[0] == '^' && optarg
[2] == 0 &&
344 (u_char
) optarg
[1] >= 64 &&
345 (u_char
) optarg
[1] < 128)
346 options
.escape_char
= (u_char
) optarg
[1] & 31;
347 else if (strlen(optarg
) == 1)
348 options
.escape_char
= (u_char
) optarg
[0];
349 else if (strcmp(optarg
, "none") == 0)
350 options
.escape_char
= SSH_ESCAPECHAR_NONE
;
352 fprintf(stderr
, "Bad escape character '%s'.\n",
358 if (ciphers_valid(optarg
)) {
360 options
.ciphers
= xstrdup(optarg
);
361 options
.cipher
= SSH_CIPHER_INVALID
;
364 options
.cipher
= cipher_number(optarg
);
365 if (options
.cipher
== -1) {
367 "Unknown cipher type '%s'\n",
371 if (options
.cipher
== SSH_CIPHER_3DES
)
372 options
.ciphers
= "3des-cbc";
373 else if (options
.cipher
== SSH_CIPHER_BLOWFISH
)
374 options
.ciphers
= "blowfish-cbc";
376 options
.ciphers
= (char *)-1;
380 if (mac_valid(optarg
))
381 options
.macs
= xstrdup(optarg
);
383 fprintf(stderr
, "Unknown mac type '%s'\n",
389 options
.control_master
=
390 (options
.control_master
>= 1) ? 2 : 1;
393 options
.port
= a2port(optarg
);
394 if (options
.port
== 0) {
395 fprintf(stderr
, "Bad port '%s'\n", optarg
);
400 options
.user
= optarg
;
404 if (parse_forward(&fwd
, optarg
))
405 add_local_forward(&options
, &fwd
);
408 "Bad local forwarding specification '%s'\n",
415 if (parse_forward(&fwd
, optarg
)) {
416 add_remote_forward(&options
, &fwd
);
419 "Bad remote forwarding specification "
426 cp
= p
= xstrdup(optarg
);
427 memset(&fwd
, '\0', sizeof(fwd
));
428 fwd
.connect_host
= "socks";
429 if ((fwd
.listen_host
= hpdelim(&cp
)) == NULL
) {
430 fprintf(stderr
, "Bad dynamic forwarding "
431 "specification '%.100s'\n", optarg
);
435 fwd
.listen_port
= a2port(cp
);
436 fwd
.listen_host
= cleanhostname(fwd
.listen_host
);
438 fwd
.listen_port
= a2port(fwd
.listen_host
);
439 fwd
.listen_host
= "";
442 if (fwd
.listen_port
== 0) {
443 fprintf(stderr
, "Bad dynamic port '%s'\n",
447 add_local_forward(&options
, &fwd
);
452 options
.compression
= 1;
463 line
= xstrdup(optarg
);
464 if (process_config_line(&options
, host
? host
: "",
465 line
, "command-line", 0, &dummy
) != 0)
473 if (options
.control_path
!= NULL
)
474 free(options
.control_path
);
475 options
.control_path
= xstrdup(optarg
);
478 options
.bind_address
= optarg
;
491 if (ac
> 0 && !host
&& **av
!= '-') {
492 if (strrchr(*av
, '@')) {
494 cp
= strrchr(p
, '@');
495 if (cp
== NULL
|| cp
== p
)
503 optind
= optreset
= 1;
509 /* Check that we got a host name. */
513 SSLeay_add_all_algorithms();
514 ERR_load_crypto_strings();
516 /* Initialize the command to execute on remote host. */
517 buffer_init(&command
);
520 * Save the command to execute on the remote host in a buffer. There
521 * is no limit on the length of the command, except by the maximum
522 * packet size. Also sets the tty flag if there is no command.
525 /* No command specified - execute shell on a tty. */
527 if (subsystem_flag
) {
529 "You must specify a subsystem to invoke.\n");
533 /* A command has been specified. Store it into the buffer. */
534 for (i
= 0; i
< ac
; i
++) {
536 buffer_append(&command
, " ", 1);
537 buffer_append(&command
, av
[i
], strlen(av
[i
]));
541 /* Cannot fork to background if no command. */
542 if (fork_after_authentication_flag
&& buffer_len(&command
) == 0 && !no_shell_flag
)
543 fatal("Cannot fork into background without a command to execute.");
545 /* Allocate a tty by default if no command specified. */
546 if (buffer_len(&command
) == 0)
552 /* Do not allocate a tty if stdin is not a tty. */
553 if (!isatty(fileno(stdin
)) && !force_tty_flag
) {
555 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
560 * Initialize "log" output. Since we are the client all output
561 * actually goes to stderr.
563 log_init(av
[0], options
.log_level
== -1 ? SYSLOG_LEVEL_INFO
: options
.log_level
,
564 SYSLOG_FACILITY_USER
, 1);
567 * Read per-user configuration file. Ignore the system wide config
568 * file if the user specifies a config file on the command line.
570 if (config
!= NULL
) {
571 if (!read_config_file(config
, host
, &options
, 0))
572 fatal("Can't open user config file %.100s: "
573 "%.100s", config
, strerror(errno
));
575 snprintf(buf
, sizeof buf
, "%.100s/%.100s", pw
->pw_dir
,
576 _PATH_SSH_USER_CONFFILE
);
577 (void)read_config_file(buf
, host
, &options
, 1);
579 /* Read systemwide configuration file after use config. */
580 (void)read_config_file(_PATH_HOST_CONFIG_FILE
, host
,
584 /* Fill configuration defaults. */
585 fill_default_options(&options
);
587 channel_set_af(options
.address_family
);
590 log_init(av
[0], options
.log_level
, SYSLOG_FACILITY_USER
, 1);
594 if (options
.user
== NULL
)
595 options
.user
= xstrdup(pw
->pw_name
);
597 if (options
.hostname
!= NULL
)
598 host
= options
.hostname
;
600 /* force lowercase for hostkey matching */
601 if (options
.host_key_alias
!= NULL
) {
602 for (p
= options
.host_key_alias
; *p
; p
++)
607 if (options
.proxy_command
!= NULL
&&
608 strcmp(options
.proxy_command
, "none") == 0)
609 options
.proxy_command
= NULL
;
611 if (options
.control_path
!= NULL
) {
612 options
.control_path
= tilde_expand_filename(
613 options
.control_path
, original_real_uid
);
615 if (options
.control_path
!= NULL
&& options
.control_master
== 0)
616 control_client(options
.control_path
); /* This doesn't return */
618 /* Open a connection to the remote host. */
619 if (ssh_connect(host
, &hostaddr
, options
.port
,
620 options
.address_family
, options
.connection_attempts
,
622 options
.use_privileged_port
,
624 original_effective_uid
== 0 && options
.use_privileged_port
,
626 options
.proxy_command
) != 0)
630 * If we successfully made the connection, load the host private key
631 * in case we will need it later for combined rsa-rhosts
632 * authentication. This must be done before releasing extra
633 * privileges, because the file is only readable by root.
634 * If we cannot access the private keys, load the public keys
635 * instead and try to execute the ssh-keysign helper instead.
637 sensitive_data
.nkeys
= 0;
638 sensitive_data
.keys
= NULL
;
639 sensitive_data
.external_keysign
= 0;
640 if (options
.rhosts_rsa_authentication
||
641 options
.hostbased_authentication
) {
642 sensitive_data
.nkeys
= 3;
643 sensitive_data
.keys
= xmalloc(sensitive_data
.nkeys
*
647 sensitive_data
.keys
[0] = key_load_private_type(KEY_RSA1
,
648 _PATH_HOST_KEY_FILE
, "", NULL
);
649 sensitive_data
.keys
[1] = key_load_private_type(KEY_DSA
,
650 _PATH_HOST_DSA_KEY_FILE
, "", NULL
);
651 sensitive_data
.keys
[2] = key_load_private_type(KEY_RSA
,
652 _PATH_HOST_RSA_KEY_FILE
, "", NULL
);
655 if (options
.hostbased_authentication
== 1 &&
656 sensitive_data
.keys
[0] == NULL
&&
657 sensitive_data
.keys
[1] == NULL
&&
658 sensitive_data
.keys
[2] == NULL
) {
659 sensitive_data
.keys
[1] = key_load_public(
660 _PATH_HOST_DSA_KEY_FILE
, NULL
);
661 sensitive_data
.keys
[2] = key_load_public(
662 _PATH_HOST_RSA_KEY_FILE
, NULL
);
663 sensitive_data
.external_keysign
= 1;
667 * Get rid of any extra privileges that we may have. We will no
668 * longer need them. Also, extra privileges could make it very hard
669 * to read identity files and other non-world-readable files from the
670 * user's home directory if it happens to be on a NFS volume where
671 * root is mapped to nobody.
673 if (original_effective_uid
== 0) {
675 permanently_set_uid(pw
);
679 * Now that we are back to our own permissions, create ~/.ssh
680 * directory if it doesn\'t already exist.
682 snprintf(buf
, sizeof buf
, "%.100s%s%.100s", pw
->pw_dir
, strcmp(pw
->pw_dir
, "/") ? "/" : "", _PATH_SSH_USER_DIR
);
683 if (stat(buf
, &st
) < 0)
684 if (mkdir(buf
, 0700) < 0)
685 error("Could not create directory '%.200s'.", buf
);
687 /* load options.identity_files */
688 load_public_identity_files();
690 /* Expand ~ in known host file names. */
692 options
.system_hostfile
=
693 tilde_expand_filename(options
.system_hostfile
, original_real_uid
);
694 options
.user_hostfile
=
695 tilde_expand_filename(options
.user_hostfile
, original_real_uid
);
696 options
.system_hostfile2
=
697 tilde_expand_filename(options
.system_hostfile2
, original_real_uid
);
698 options
.user_hostfile2
=
699 tilde_expand_filename(options
.user_hostfile2
, original_real_uid
);
701 signal(SIGPIPE
, SIG_IGN
); /* ignore SIGPIPE early */
703 /* Log into the remote system. This never returns if the login fails. */
704 ssh_login(&sensitive_data
, host
, (struct sockaddr
*)&hostaddr
, pw
);
706 /* We no longer need the private host keys. Clear them now. */
707 if (sensitive_data
.nkeys
!= 0) {
708 for (i
= 0; i
< sensitive_data
.nkeys
; i
++) {
709 if (sensitive_data
.keys
[i
] != NULL
) {
710 /* Destroys contents safely */
711 debug3("clear hostkey %d", i
);
712 key_free(sensitive_data
.keys
[i
]);
713 sensitive_data
.keys
[i
] = NULL
;
716 xfree(sensitive_data
.keys
);
718 for (i
= 0; i
< options
.num_identity_files
; i
++) {
719 if (options
.identity_files
[i
]) {
720 xfree(options
.identity_files
[i
]);
721 options
.identity_files
[i
] = NULL
;
723 if (options
.identity_keys
[i
]) {
724 key_free(options
.identity_keys
[i
]);
725 options
.identity_keys
[i
] = NULL
;
729 exit_status
= compat20
? ssh_session2() : ssh_session();
732 if (options
.control_path
!= NULL
&& control_fd
!= -1)
733 unlink(options
.control_path
);
736 * Send SIGHUP to proxy command if used. We don't wait() in
737 * case it hangs and instead rely on init to reap the child
739 if (proxy_command_pid
> 1)
740 kill(proxy_command_pid
, SIGHUP
);
745 #define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
748 x11_get_proto(char **_proto
, char **_data
)
753 static char proto
[512], data
[512];
755 int got_data
= 0, generated
= 0, do_unlink
= 0, i
;
756 char *display
, *xauthdir
, *xauthfile
;
759 xauthdir
= xauthfile
= NULL
;
762 proto
[0] = data
[0] = '\0';
764 if (!options
.xauth_location
||
765 (stat(options
.xauth_location
, &st
) == -1)) {
766 debug("No xauth program.");
768 if ((display
= getenv("DISPLAY")) == NULL
) {
769 debug("x11_get_proto: DISPLAY not set");
773 * Handle FamilyLocal case where $DISPLAY does
774 * not match an authorization entry. For this we
775 * just try "xauth list unix:displaynum.screennum".
776 * XXX: "localhost" match to determine FamilyLocal
779 if (strncmp(display
, "localhost:", 10) == 0) {
780 snprintf(xdisplay
, sizeof(xdisplay
), "unix:%s",
784 if (options
.forward_x11_trusted
== 0) {
785 xauthdir
= xmalloc(MAXPATHLEN
);
786 xauthfile
= xmalloc(MAXPATHLEN
);
787 strlcpy(xauthdir
, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN
);
788 if (mkdtemp(xauthdir
) != NULL
) {
790 snprintf(xauthfile
, MAXPATHLEN
, "%s/xauthfile",
792 snprintf(cmd
, sizeof(cmd
),
793 "%s -f %s generate %s " SSH_X11_PROTO
794 " untrusted timeout 1200 2>" _PATH_DEVNULL
,
795 options
.xauth_location
, xauthfile
, display
);
796 debug2("x11_get_proto: %s", cmd
);
797 if (system(cmd
) == 0)
801 snprintf(cmd
, sizeof(cmd
),
802 "%s %s%s list %s . 2>" _PATH_DEVNULL
,
803 options
.xauth_location
,
804 generated
? "-f " : "" ,
805 generated
? xauthfile
: "",
807 debug2("x11_get_proto: %s", cmd
);
809 if (f
&& fgets(line
, sizeof(line
), f
) &&
810 sscanf(line
, "%*s %511s %511s", proto
, data
) == 2)
826 * If we didn't get authentication data, just make up some
827 * data. The forwarding code will check the validity of the
828 * response anyway, and substitute this data. The X11
829 * server, however, will ignore this fake data and use
830 * whatever authentication mechanisms it was using otherwise
831 * for the local connection.
836 logit("Warning: No xauth data; "
837 "using fake authentication data for X11 forwarding.");
838 strlcpy(proto
, SSH_X11_PROTO
, sizeof proto
);
839 for (i
= 0; i
< 16; i
++) {
842 snprintf(data
+ 2 * i
, sizeof data
- 2 * i
, "%02x",
850 ssh_init_forwarding(void)
855 /* Initiate local TCP/IP port forwardings. */
856 for (i
= 0; i
< options
.num_local_forwards
; i
++) {
857 debug("Local connections to %.200s:%d forwarded to remote "
859 (options
.local_forwards
[i
].listen_host
== NULL
) ?
860 (options
.gateway_ports
? "*" : "LOCALHOST") :
861 options
.local_forwards
[i
].listen_host
,
862 options
.local_forwards
[i
].listen_port
,
863 options
.local_forwards
[i
].connect_host
,
864 options
.local_forwards
[i
].connect_port
);
865 success
+= channel_setup_local_fwd_listener(
866 options
.local_forwards
[i
].listen_host
,
867 options
.local_forwards
[i
].listen_port
,
868 options
.local_forwards
[i
].connect_host
,
869 options
.local_forwards
[i
].connect_port
,
870 options
.gateway_ports
);
872 if (i
> 0 && success
== 0)
873 error("Could not request local forwarding.");
875 /* Initiate remote TCP/IP port forwardings. */
876 for (i
= 0; i
< options
.num_remote_forwards
; i
++) {
877 debug("Remote connections from %.200s:%d forwarded to "
878 "local address %.200s:%d",
879 (options
.remote_forwards
[i
].listen_host
== NULL
) ?
880 (options
.gateway_ports
? "*" : "LOCALHOST") :
881 options
.remote_forwards
[i
].listen_host
,
882 options
.remote_forwards
[i
].listen_port
,
883 options
.remote_forwards
[i
].connect_host
,
884 options
.remote_forwards
[i
].connect_port
);
885 channel_request_remote_forwarding(
886 options
.remote_forwards
[i
].listen_host
,
887 options
.remote_forwards
[i
].listen_port
,
888 options
.remote_forwards
[i
].connect_host
,
889 options
.remote_forwards
[i
].connect_port
);
894 check_agent_present(void)
896 if (options
.forward_agent
) {
897 /* Clear agent forwarding if we don\'t have an agent. */
898 if (!ssh_agent_present())
899 options
.forward_agent
= 0;
912 /* Enable compression if requested. */
913 if (options
.compression
) {
914 debug("Requesting compression at level %d.", options
.compression_level
);
916 if (options
.compression_level
< 1 || options
.compression_level
> 9)
917 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
919 /* Send the request. */
920 packet_start(SSH_CMSG_REQUEST_COMPRESSION
);
921 packet_put_int(options
.compression_level
);
924 type
= packet_read();
925 if (type
== SSH_SMSG_SUCCESS
)
926 packet_start_compression(options
.compression_level
);
927 else if (type
== SSH_SMSG_FAILURE
)
928 logit("Warning: Remote host refused compression.");
930 packet_disconnect("Protocol error waiting for compression response.");
932 /* Allocate a pseudo tty if appropriate. */
934 debug("Requesting pty.");
936 /* Start the packet. */
937 packet_start(SSH_CMSG_REQUEST_PTY
);
939 /* Store TERM in the packet. There is no limit on the
940 length of the string. */
944 packet_put_cstring(cp
);
946 /* Store window size in the packet. */
947 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) < 0)
948 memset(&ws
, 0, sizeof(ws
));
949 packet_put_int(ws
.ws_row
);
950 packet_put_int(ws
.ws_col
);
951 packet_put_int(ws
.ws_xpixel
);
952 packet_put_int(ws
.ws_ypixel
);
954 /* Store tty modes in the packet. */
955 tty_make_modes(fileno(stdin
), NULL
);
957 /* Send the packet, and wait for it to leave. */
961 /* Read response from the server. */
962 type
= packet_read();
963 if (type
== SSH_SMSG_SUCCESS
) {
966 } else if (type
== SSH_SMSG_FAILURE
)
967 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
969 packet_disconnect("Protocol error waiting for pty request response.");
971 /* Request X11 forwarding if enabled and DISPLAY is set. */
972 if (options
.forward_x11
&& getenv("DISPLAY") != NULL
) {
974 /* Get reasonable local authentication information. */
975 x11_get_proto(&proto
, &data
);
976 /* Request forwarding with authentication spoofing. */
977 debug("Requesting X11 forwarding with authentication spoofing.");
978 x11_request_forwarding_with_spoofing(0, proto
, data
);
980 /* Read response from the server. */
981 type
= packet_read();
982 if (type
== SSH_SMSG_SUCCESS
) {
984 } else if (type
== SSH_SMSG_FAILURE
) {
985 logit("Warning: Remote host denied X11 forwarding.");
987 packet_disconnect("Protocol error waiting for X11 forwarding");
990 /* Tell the packet module whether this is an interactive session. */
991 packet_set_interactive(interactive
);
993 /* Request authentication agent forwarding if appropriate. */
994 check_agent_present();
996 if (options
.forward_agent
) {
997 debug("Requesting authentication agent forwarding.");
998 auth_request_forwarding();
1000 /* Read response from the server. */
1001 type
= packet_read();
1003 if (type
!= SSH_SMSG_SUCCESS
)
1004 logit("Warning: Remote host denied authentication agent forwarding.");
1007 /* Initiate port forwardings. */
1008 ssh_init_forwarding();
1010 /* If requested, let ssh continue in the background. */
1011 if (fork_after_authentication_flag
)
1012 if (daemon(1, 1) < 0)
1013 fatal("daemon() failed: %.200s", strerror(errno
));
1016 * If a command was specified on the command line, execute the
1017 * command now. Otherwise request the server to start a shell.
1019 if (buffer_len(&command
) > 0) {
1020 int len
= buffer_len(&command
);
1023 debug("Sending command: %.*s", len
, (u_char
*)buffer_ptr(&command
));
1024 packet_start(SSH_CMSG_EXEC_CMD
);
1025 packet_put_string(buffer_ptr(&command
), buffer_len(&command
));
1027 packet_write_wait();
1029 debug("Requesting shell.");
1030 packet_start(SSH_CMSG_EXEC_SHELL
);
1032 packet_write_wait();
1035 /* Enter the interactive session. */
1036 return client_loop(have_tty
, tty_flag
?
1037 options
.escape_char
: SSH_ESCAPECHAR_NONE
, 0);
1041 ssh_subsystem_reply(int type
, u_int32_t seq
, void *ctxt
)
1045 id
= packet_get_int();
1046 len
= buffer_len(&command
);
1050 if (type
== SSH2_MSG_CHANNEL_FAILURE
)
1051 fatal("Request for subsystem '%.*s' failed on channel %d",
1052 len
, (u_char
*)buffer_ptr(&command
), id
);
1056 client_global_request_reply_fwd(int type
, u_int32_t seq
, void *ctxt
)
1060 i
= client_global_request_id
++;
1061 if (i
>= options
.num_remote_forwards
)
1063 debug("remote forward %s for: listen %d, connect %s:%d",
1064 type
== SSH2_MSG_REQUEST_SUCCESS
? "success" : "failure",
1065 options
.remote_forwards
[i
].listen_port
,
1066 options
.remote_forwards
[i
].connect_host
,
1067 options
.remote_forwards
[i
].connect_port
);
1068 if (type
== SSH2_MSG_REQUEST_FAILURE
)
1069 logit("Warning: remote port forwarding failed for listen "
1070 "port %d", options
.remote_forwards
[i
].listen_port
);
1074 ssh_control_listener(void)
1076 struct sockaddr_un addr
;
1080 if (options
.control_path
== NULL
|| options
.control_master
<= 0)
1083 memset(&addr
, '\0', sizeof(addr
));
1084 addr
.sun_family
= AF_UNIX
;
1085 addr_len
= offsetof(struct sockaddr_un
, sun_path
) +
1086 strlen(options
.control_path
) + 1;
1088 if (strlcpy(addr
.sun_path
, options
.control_path
,
1089 sizeof(addr
.sun_path
)) >= sizeof(addr
.sun_path
))
1090 fatal("ControlPath too long");
1092 if ((control_fd
= socket(PF_UNIX
, SOCK_STREAM
, 0)) < 0)
1093 fatal("%s socket(): %s\n", __func__
, strerror(errno
));
1095 old_umask
= umask(0177);
1096 if (bind(control_fd
, (struct sockaddr
*)&addr
, addr_len
) == -1) {
1098 if (errno
== EINVAL
|| errno
== EADDRINUSE
)
1099 fatal("ControlSocket %s already exists",
1100 options
.control_path
);
1102 fatal("%s bind(): %s\n", __func__
, strerror(errno
));
1106 if (listen(control_fd
, 64) == -1)
1107 fatal("%s listen(): %s\n", __func__
, strerror(errno
));
1109 set_nonblock(control_fd
);
1112 /* request pty/x11/agent/tcpfwd/shell for channel */
1114 ssh_session2_setup(int id
, void *arg
)
1116 extern char **environ
;
1118 int interactive
= tty_flag
;
1119 if (options
.forward_x11
&& getenv("DISPLAY") != NULL
) {
1121 /* Get reasonable local authentication information. */
1122 x11_get_proto(&proto
, &data
);
1123 /* Request forwarding with authentication spoofing. */
1124 debug("Requesting X11 forwarding with authentication spoofing.");
1125 x11_request_forwarding_with_spoofing(id
, proto
, data
);
1127 /* XXX wait for reply */
1130 check_agent_present();
1131 if (options
.forward_agent
) {
1132 debug("Requesting authentication agent forwarding.");
1133 channel_request_start(id
, "auth-agent-req@openssh.com", 0);
1137 client_session2_setup(id
, tty_flag
, subsystem_flag
, getenv("TERM"),
1138 NULL
, fileno(stdin
), &command
, environ
, &ssh_subsystem_reply
);
1140 packet_set_interactive(interactive
);
1143 /* open new channel for a session */
1145 ssh_session2_open(void)
1148 int window
, packetmax
, in
, out
, err
;
1150 if (stdin_null_flag
) {
1151 in
= open(_PATH_DEVNULL
, O_RDONLY
);
1153 in
= dup(STDIN_FILENO
);
1155 out
= dup(STDOUT_FILENO
);
1156 err
= dup(STDERR_FILENO
);
1158 if (in
< 0 || out
< 0 || err
< 0)
1159 fatal("dup() in/out/err failed");
1161 /* enable nonblocking unless tty */
1169 window
= CHAN_SES_WINDOW_DEFAULT
;
1170 packetmax
= CHAN_SES_PACKET_DEFAULT
;
1176 "session", SSH_CHANNEL_OPENING
, in
, out
, err
,
1177 window
, packetmax
, CHAN_EXTENDED_WRITE
,
1178 "client-session", /*nonblock*/0);
1180 debug3("ssh_session2_open: channel_new: %d", c
->self
);
1182 channel_send_open(c
->self
);
1184 channel_register_confirm(c
->self
, ssh_session2_setup
, NULL
);
1194 /* XXX should be pre-session */
1195 ssh_init_forwarding();
1196 ssh_control_listener();
1198 if (!no_shell_flag
|| (datafellows
& SSH_BUG_DUMMYCHAN
))
1199 id
= ssh_session2_open();
1201 /* If requested, let ssh continue in the background. */
1202 if (fork_after_authentication_flag
)
1203 if (daemon(1, 1) < 0)
1204 fatal("daemon() failed: %.200s", strerror(errno
));
1206 return client_loop(tty_flag
, tty_flag
?
1207 options
.escape_char
: SSH_ESCAPECHAR_NONE
, id
);
1211 load_public_identity_files(void)
1219 if (options
.smartcard_device
!= NULL
&&
1220 options
.num_identity_files
< SSH_MAX_IDENTITY_FILES
&&
1221 (keys
= sc_get_keys(options
.smartcard_device
, NULL
)) != NULL
) {
1223 for (i
= 0; keys
[i
] != NULL
; i
++) {
1225 memmove(&options
.identity_files
[1], &options
.identity_files
[0],
1226 sizeof(char *) * (SSH_MAX_IDENTITY_FILES
- 1));
1227 memmove(&options
.identity_keys
[1], &options
.identity_keys
[0],
1228 sizeof(Key
*) * (SSH_MAX_IDENTITY_FILES
- 1));
1229 options
.num_identity_files
++;
1230 options
.identity_keys
[0] = keys
[i
];
1231 options
.identity_files
[0] = sc_get_key_label(keys
[i
]);
1233 if (options
.num_identity_files
> SSH_MAX_IDENTITY_FILES
)
1234 options
.num_identity_files
= SSH_MAX_IDENTITY_FILES
;
1238 #endif /* SMARTCARD */
1239 for (; i
< options
.num_identity_files
; i
++) {
1240 filename
= tilde_expand_filename(options
.identity_files
[i
],
1242 public = key_load_public(filename
, NULL
);
1243 debug("identity file %s type %d", filename
,
1244 public ? public->type
: -1);
1245 xfree(options
.identity_files
[i
]);
1246 options
.identity_files
[i
] = filename
;
1247 options
.identity_keys
[i
] = public;
1252 control_client_sighandler(int signo
)
1254 control_client_terminate
= signo
;
1258 control_client_sigrelay(int signo
)
1260 if (control_server_pid
> 1)
1261 kill(control_server_pid
, signo
);
1265 env_permitted(char *env
)
1268 char name
[1024], *cp
;
1270 strlcpy(name
, env
, sizeof(name
));
1271 if ((cp
= strchr(name
, '=')) == NULL
)
1276 for (i
= 0; i
< options
.num_send_env
; i
++)
1277 if (match_pattern(name
, options
.send_env
[i
]))
1284 control_client(const char *path
)
1286 struct sockaddr_un addr
;
1287 int i
, r
, fd
, sock
, exitval
, num_env
, addr_len
;
1290 extern char **environ
;
1293 if (stdin_null_flag
) {
1294 if ((fd
= open(_PATH_DEVNULL
, O_RDONLY
)) == -1)
1295 fatal("open(/dev/null): %s", strerror(errno
));
1296 if (dup2(fd
, STDIN_FILENO
) == -1)
1297 fatal("dup2: %s", strerror(errno
));
1298 if (fd
> STDERR_FILENO
)
1302 memset(&addr
, '\0', sizeof(addr
));
1303 addr
.sun_family
= AF_UNIX
;
1304 addr_len
= offsetof(struct sockaddr_un
, sun_path
) +
1307 if (strlcpy(addr
.sun_path
, path
,
1308 sizeof(addr
.sun_path
)) >= sizeof(addr
.sun_path
))
1309 fatal("ControlPath too long");
1311 if ((sock
= socket(PF_UNIX
, SOCK_STREAM
, 0)) < 0)
1312 fatal("%s socket(): %s", __func__
, strerror(errno
));
1314 if (connect(sock
, (struct sockaddr
*)&addr
, addr_len
) == -1)
1315 fatal("Couldn't connect to %s: %s", path
, strerror(errno
));
1317 if ((term
= getenv("TERM")) == NULL
)
1322 flags
|= SSHMUX_FLAG_TTY
;
1324 flags
|= SSHMUX_FLAG_SUBSYS
;
1328 /* Send our command to server */
1329 buffer_put_int(&m
, mux_command
);
1330 buffer_put_int(&m
, flags
);
1331 if (ssh_msg_send(sock
, /* version */1, &m
) == -1)
1332 fatal("%s: msg_send", __func__
);
1335 /* Get authorisation status and PID of controlee */
1336 if (ssh_msg_recv(sock
, &m
) == -1)
1337 fatal("%s: msg_recv", __func__
);
1338 if (buffer_get_char(&m
) != 1)
1339 fatal("%s: wrong version", __func__
);
1340 if (buffer_get_int(&m
) != 1)
1341 fatal("Connection to master denied");
1342 control_server_pid
= buffer_get_int(&m
);
1346 switch (mux_command
) {
1347 case SSHMUX_COMMAND_ALIVE_CHECK
:
1348 fprintf(stderr
, "Master running (pid=%d)\r\n",
1349 control_server_pid
);
1351 case SSHMUX_COMMAND_TERMINATE
:
1352 fprintf(stderr
, "Exit request sent.\r\n");
1354 case SSHMUX_COMMAND_OPEN
:
1355 /* continue below */
1358 fatal("silly mux_command %d", mux_command
);
1361 /* SSHMUX_COMMAND_OPEN */
1362 buffer_put_cstring(&m
, term
);
1363 buffer_append(&command
, "\0", 1);
1364 buffer_put_cstring(&m
, buffer_ptr(&command
));
1366 if (options
.num_send_env
== 0 || environ
== NULL
) {
1367 buffer_put_int(&m
, 0);
1369 /* Pass environment */
1371 for (i
= 0; environ
[i
] != NULL
; i
++)
1372 if (env_permitted(environ
[i
]))
1373 num_env
++; /* Count */
1375 buffer_put_int(&m
, num_env
);
1377 for (i
= 0; environ
[i
] != NULL
&& num_env
>= 0; i
++)
1378 if (env_permitted(environ
[i
])) {
1380 buffer_put_cstring(&m
, environ
[i
]);
1384 if (ssh_msg_send(sock
, /* version */1, &m
) == -1)
1385 fatal("%s: msg_send", __func__
);
1387 mm_send_fd(sock
, STDIN_FILENO
);
1388 mm_send_fd(sock
, STDOUT_FILENO
);
1389 mm_send_fd(sock
, STDERR_FILENO
);
1391 /* Wait for reply, so master has a chance to gather ttymodes */
1393 if (ssh_msg_recv(sock
, &m
) == -1)
1394 fatal("%s: msg_recv", __func__
);
1395 if (buffer_get_char(&m
) != 1)
1396 fatal("%s: wrong version", __func__
);
1399 signal(SIGHUP
, control_client_sighandler
);
1400 signal(SIGINT
, control_client_sighandler
);
1401 signal(SIGTERM
, control_client_sighandler
);
1402 signal(SIGWINCH
, control_client_sigrelay
);
1407 /* Stick around until the controlee closes the client_fd */
1409 for (;!control_client_terminate
;) {
1410 r
= read(sock
, &exitval
, sizeof(exitval
));
1412 debug2("Received EOF from master");
1416 debug2("Received exit status from master %d", exitval
);
1417 if (r
== -1 && errno
!= EINTR
)
1418 fatal("%s: read %s", __func__
, strerror(errno
));
1421 if (control_client_terminate
)
1422 debug2("Exiting on signal %d", control_client_terminate
);
1428 if (tty_flag
&& options
.log_level
!= SYSLOG_LEVEL_QUIET
)
1429 fprintf(stderr
, "Connection to master closed.\r\n");