Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 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. |
| 8 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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". |
| 14 | * |
| 15 | * Copyright (c) 1999 Niels Provos. All rights reserved. |
| 16 | * |
| 17 | * Modified to work with SSL by Niels Provos <provos@citi.umich.edu> |
| 18 | * in Canada (German citizen). |
| 19 | * |
| 20 | * Redistribution and use in source and binary forms, with or without |
| 21 | * modification, are permitted provided that the following conditions |
| 22 | * are met: |
| 23 | * 1. Redistributions of source code must retain the above copyright |
| 24 | * notice, this list of conditions and the following disclaimer. |
| 25 | * 2. Redistributions in binary form must reproduce the above copyright |
| 26 | * notice, this list of conditions and the following disclaimer in the |
| 27 | * documentation and/or other materials provided with the distribution. |
| 28 | * |
| 29 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 30 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 31 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 32 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 33 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 34 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 35 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 36 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 37 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 38 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 39 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 40 | |
| 41 | #include "includes.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 42 | RCSID("$OpenBSD: ssh.c,v 1.68 2000/10/11 20:27:24 markus Exp $"); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 43 | |
| 44 | #include <openssl/evp.h> |
| 45 | #include <openssl/dsa.h> |
| 46 | #include <openssl/rsa.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 47 | |
| 48 | #include "xmalloc.h" |
| 49 | #include "ssh.h" |
| 50 | #include "packet.h" |
| 51 | #include "buffer.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 52 | #include "readconf.h" |
| 53 | #include "uidswap.h" |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 54 | |
| 55 | #include "ssh2.h" |
| 56 | #include "compat.h" |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 57 | #include "channels.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 58 | #include "key.h" |
Damien Miller | 994cf14 | 2000-07-21 10:19:44 +1000 | [diff] [blame] | 59 | #include "authfd.h" |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 60 | #include "authfile.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 61 | |
Damien Miller | 3f90587 | 1999-11-15 17:10:57 +1100 | [diff] [blame] | 62 | #ifdef HAVE___PROGNAME |
| 63 | extern char *__progname; |
| 64 | #else /* HAVE___PROGNAME */ |
Damien Miller | 70fb671 | 2000-05-01 20:59:50 +1000 | [diff] [blame] | 65 | static const char *__progname = "ssh"; |
Damien Miller | 3f90587 | 1999-11-15 17:10:57 +1100 | [diff] [blame] | 66 | #endif /* HAVE___PROGNAME */ |
| 67 | |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 68 | /* Flag indicating whether IPv4 or IPv6. This can be set on the command line. |
| 69 | Default value is AF_UNSPEC means both IPv4 and IPv6. */ |
Damien Miller | 7d80e34 | 2000-01-19 14:36:49 +1100 | [diff] [blame] | 70 | #ifdef IPV4_DEFAULT |
| 71 | int IPv4or6 = AF_INET; |
| 72 | #else |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 73 | int IPv4or6 = AF_UNSPEC; |
Damien Miller | 7d80e34 | 2000-01-19 14:36:49 +1100 | [diff] [blame] | 74 | #endif |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 75 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 76 | /* Flag indicating whether debug mode is on. This can be set on the command line. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 77 | int debug_flag = 0; |
| 78 | |
Damien Miller | 7892879 | 2000-04-12 20:17:38 +1000 | [diff] [blame] | 79 | /* Flag indicating whether a tty should be allocated */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 80 | int tty_flag = 0; |
| 81 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 82 | /* don't exec a shell */ |
| 83 | int no_shell_flag = 0; |
| 84 | int no_tty_flag = 0; |
| 85 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 86 | /* |
| 87 | * Flag indicating that nothing should be read from stdin. This can be set |
| 88 | * on the command line. |
| 89 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 90 | int stdin_null_flag = 0; |
| 91 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 92 | /* |
| 93 | * Flag indicating that ssh should fork after authentication. This is useful |
| 94 | * so that the pasphrase can be entered manually, and then ssh goes to the |
| 95 | * background. |
| 96 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 97 | int fork_after_authentication_flag = 0; |
| 98 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 99 | /* |
| 100 | * General data structure for command line options and options configurable |
| 101 | * in configuration files. See readconf.h. |
| 102 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 103 | Options options; |
| 104 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 105 | /* |
| 106 | * Name of the host we are connecting to. This is the name given on the |
| 107 | * command line, or the HostName specified for the user-supplied name in a |
| 108 | * configuration file. |
| 109 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 110 | char *host; |
| 111 | |
| 112 | /* socket address the host resolves to */ |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 113 | struct sockaddr_storage hostaddr; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 114 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 115 | /* |
| 116 | * Flag to indicate that we have received a window change signal which has |
| 117 | * not yet been processed. This will cause a message indicating the new |
| 118 | * window size to be sent to the server a little later. This is volatile |
| 119 | * because this is updated in a signal handler. |
| 120 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 121 | volatile int received_window_change_signal = 0; |
| 122 | |
| 123 | /* Value of argv[0] (set in the main program). */ |
| 124 | char *av0; |
| 125 | |
| 126 | /* Flag indicating whether we have a valid host private key loaded. */ |
| 127 | int host_private_key_loaded = 0; |
| 128 | |
| 129 | /* Host private key. */ |
| 130 | RSA *host_private_key = NULL; |
| 131 | |
| 132 | /* Original real UID. */ |
| 133 | uid_t original_real_uid; |
| 134 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 135 | /* command to be executed */ |
| 136 | Buffer command; |
| 137 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 138 | /* Prints a help message to the user. This function never returns. */ |
| 139 | |
| 140 | void |
| 141 | usage() |
| 142 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 143 | fprintf(stderr, "Usage: %s [options] host [command]\n", av0); |
| 144 | fprintf(stderr, "Options:\n"); |
| 145 | fprintf(stderr, " -l user Log in using this user name.\n"); |
| 146 | fprintf(stderr, " -n Redirect input from /dev/null.\n"); |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 147 | fprintf(stderr, " -A Enable authentication agent forwarding.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 148 | fprintf(stderr, " -a Disable authentication agent forwarding.\n"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 149 | #ifdef AFS |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 150 | fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); |
| 151 | #endif /* AFS */ |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 152 | fprintf(stderr, " -X Enable X11 connection forwarding.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 153 | fprintf(stderr, " -x Disable X11 connection forwarding.\n"); |
| 154 | fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n"); |
| 155 | fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 156 | fprintf(stderr, " -T Do not allocate a tty.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 157 | fprintf(stderr, " -v Verbose; display verbose debugging messages.\n"); |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 158 | fprintf(stderr, " Multiple -v increases verbosity.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 159 | fprintf(stderr, " -V Display version number only.\n"); |
| 160 | fprintf(stderr, " -P Don't allocate a privileged port.\n"); |
| 161 | fprintf(stderr, " -q Quiet; don't display any warning messages.\n"); |
| 162 | fprintf(stderr, " -f Fork into background after authentication.\n"); |
| 163 | fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 164 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 165 | fprintf(stderr, " -c cipher Select encryption algorithm: " |
| 166 | "``3des'', " |
| 167 | "``blowfish''\n"); |
| 168 | fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n"); |
| 169 | fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n"); |
| 170 | fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n"); |
| 171 | fprintf(stderr, " These cause %s to listen for connections on a port, and\n", av0); |
| 172 | fprintf(stderr, " forward them to the other side by connecting to host:port.\n"); |
| 173 | fprintf(stderr, " -C Enable compression.\n"); |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 174 | fprintf(stderr, " -N Do not execute a shell or command.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 175 | fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n"); |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 176 | fprintf(stderr, " -4 Use IPv4 only.\n"); |
| 177 | fprintf(stderr, " -6 Use IPv6 only.\n"); |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 178 | fprintf(stderr, " -2 Force protocol version 2.\n"); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 179 | fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n"); |
| 180 | exit(1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 181 | } |
| 182 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 183 | /* |
| 184 | * Connects to the given host using rsh (or prints an error message and exits |
| 185 | * if rsh is not available). This function never returns. |
| 186 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 187 | void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 188 | rsh_connect(char *host, char *user, Buffer * command) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 189 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 190 | char *args[10]; |
| 191 | int i; |
| 192 | |
| 193 | log("Using rsh. WARNING: Connection will not be encrypted."); |
| 194 | /* Build argument list for rsh. */ |
| 195 | i = 0; |
| 196 | args[i++] = _PATH_RSH; |
| 197 | /* host may have to come after user on some systems */ |
| 198 | args[i++] = host; |
| 199 | if (user) { |
| 200 | args[i++] = "-l"; |
| 201 | args[i++] = user; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 202 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 203 | if (buffer_len(command) > 0) { |
| 204 | buffer_append(command, "\0", 1); |
| 205 | args[i++] = buffer_ptr(command); |
| 206 | } |
| 207 | args[i++] = NULL; |
| 208 | if (debug_flag) { |
| 209 | for (i = 0; args[i]; i++) { |
| 210 | if (i != 0) |
| 211 | fprintf(stderr, " "); |
| 212 | fprintf(stderr, "%s", args[i]); |
| 213 | } |
| 214 | fprintf(stderr, "\n"); |
| 215 | } |
| 216 | execv(_PATH_RSH, args); |
| 217 | perror(_PATH_RSH); |
| 218 | exit(1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 219 | } |
| 220 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 221 | int ssh_session(void); |
| 222 | int ssh_session2(void); |
| 223 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 224 | /* |
| 225 | * Main program for the ssh client. |
| 226 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 227 | int |
| 228 | main(int ac, char **av) |
| 229 | { |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 230 | int i, opt, optind, exit_status, ok; |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 231 | u_short fwd_port, fwd_host_port; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 232 | char *optarg, *cp, buf[256]; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 233 | struct stat st; |
| 234 | struct passwd *pw, pwcopy; |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 235 | int dummy; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 236 | uid_t original_effective_uid; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 237 | |
Damien Miller | f9b625c | 2000-07-09 22:42:32 +1000 | [diff] [blame] | 238 | init_rng(); |
| 239 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 240 | /* |
| 241 | * Save the original real uid. It will be needed later (uid-swapping |
| 242 | * may clobber the real uid). |
| 243 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 244 | original_real_uid = getuid(); |
| 245 | original_effective_uid = geteuid(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 246 | |
Damien Miller | 05dd795 | 2000-10-01 00:42:48 +1100 | [diff] [blame] | 247 | #ifdef HAVE_SETRLIMIT |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 248 | /* If we are installed setuid root be careful to not drop core. */ |
| 249 | if (original_real_uid != original_effective_uid) { |
| 250 | struct rlimit rlim; |
| 251 | rlim.rlim_cur = rlim.rlim_max = 0; |
| 252 | if (setrlimit(RLIMIT_CORE, &rlim) < 0) |
| 253 | fatal("setrlimit failed: %.100s", strerror(errno)); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 254 | } |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 255 | #endif |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 256 | /* |
| 257 | * Use uid-swapping to give up root privileges for the duration of |
| 258 | * option processing. We will re-instantiate the rights when we are |
| 259 | * ready to create the privileged port, and will permanently drop |
| 260 | * them when the port has been created (actually, when the connection |
| 261 | * has been made, as we may need to create the port several times). |
| 262 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 263 | temporarily_use_uid(original_real_uid); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 264 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 265 | /* |
| 266 | * Set our umask to something reasonable, as some files are created |
| 267 | * with the default umask. This will make them world-readable but |
| 268 | * writable only by the owner, which is ok for all files for which we |
| 269 | * don't set the modes explicitly. |
| 270 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 271 | umask(022); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 272 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 273 | /* Save our own name. */ |
| 274 | av0 = av[0]; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 275 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 276 | /* Initialize option structure to indicate that no values have been set. */ |
| 277 | initialize_options(&options); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 278 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 279 | /* Parse command-line arguments. */ |
| 280 | host = NULL; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 281 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 282 | /* If program name is not one of the standard names, use it as host name. */ |
| 283 | if (strchr(av0, '/')) |
| 284 | cp = strrchr(av0, '/') + 1; |
| 285 | else |
| 286 | cp = av0; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 287 | #ifdef HAVE_CYGWIN |
| 288 | if (strcasecmp(cp, "rsh") && strcasecmp(cp, "ssh") && |
| 289 | strcasecmp(cp, "rlogin") && strcasecmp(cp, "slogin") && |
| 290 | strcasecmp(cp, "remsh") && |
| 291 | strcasecmp(cp, "rsh.exe") && strcasecmp(cp, "ssh.exe") && |
| 292 | strcasecmp(cp, "rlogin.exe") && strcasecmp(cp, "slogin.exe") && |
| 293 | strcasecmp(cp, "remsh.exe")) |
| 294 | #else |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 295 | if (strcmp(cp, "rsh") && strcmp(cp, "ssh") && strcmp(cp, "rlogin") && |
| 296 | strcmp(cp, "slogin") && strcmp(cp, "remsh")) |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 297 | #endif |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 298 | host = cp; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 299 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 300 | for (optind = 1; optind < ac; optind++) { |
| 301 | if (av[optind][0] != '-') { |
| 302 | if (host) |
| 303 | break; |
| 304 | if ((cp = strchr(av[optind], '@'))) { |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 305 | if(cp == av[optind]) |
| 306 | usage(); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 307 | options.user = av[optind]; |
| 308 | *cp = '\0'; |
| 309 | host = ++cp; |
| 310 | } else |
| 311 | host = av[optind]; |
| 312 | continue; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 313 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 314 | opt = av[optind][1]; |
| 315 | if (!opt) |
| 316 | usage(); |
| 317 | if (strchr("eilcpLRo", opt)) { /* options with arguments */ |
| 318 | optarg = av[optind] + 2; |
| 319 | if (strcmp(optarg, "") == 0) { |
| 320 | if (optind >= ac - 1) |
| 321 | usage(); |
| 322 | optarg = av[++optind]; |
| 323 | } |
| 324 | } else { |
| 325 | if (av[optind][2]) |
| 326 | usage(); |
| 327 | optarg = NULL; |
| 328 | } |
| 329 | switch (opt) { |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 330 | case '2': |
| 331 | options.protocol = SSH_PROTO_2; |
| 332 | break; |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 333 | case '4': |
| 334 | IPv4or6 = AF_INET; |
| 335 | break; |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 336 | case '6': |
| 337 | IPv4or6 = AF_INET6; |
| 338 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 339 | case 'n': |
| 340 | stdin_null_flag = 1; |
| 341 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 342 | case 'f': |
| 343 | fork_after_authentication_flag = 1; |
| 344 | stdin_null_flag = 1; |
| 345 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 346 | case 'x': |
| 347 | options.forward_x11 = 0; |
| 348 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 349 | case 'X': |
| 350 | options.forward_x11 = 1; |
| 351 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 352 | case 'g': |
| 353 | options.gateway_ports = 1; |
| 354 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 355 | case 'P': |
| 356 | options.use_privileged_port = 0; |
| 357 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 358 | case 'a': |
| 359 | options.forward_agent = 0; |
| 360 | break; |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 361 | case 'A': |
| 362 | options.forward_agent = 1; |
| 363 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 364 | #ifdef AFS |
| 365 | case 'k': |
| 366 | options.kerberos_tgt_passing = 0; |
| 367 | options.afs_token_passing = 0; |
| 368 | break; |
| 369 | #endif |
| 370 | case 'i': |
| 371 | if (stat(optarg, &st) < 0) { |
| 372 | fprintf(stderr, "Warning: Identity file %s does not exist.\n", |
| 373 | optarg); |
| 374 | break; |
| 375 | } |
| 376 | if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES) |
| 377 | fatal("Too many identity files specified (max %d)", |
| 378 | SSH_MAX_IDENTITY_FILES); |
| 379 | options.identity_files[options.num_identity_files++] = |
| 380 | xstrdup(optarg); |
| 381 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 382 | case 't': |
| 383 | tty_flag = 1; |
| 384 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 385 | case 'v': |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 386 | if (0 == debug_flag) { |
| 387 | debug_flag = 1; |
| 388 | options.log_level = SYSLOG_LEVEL_DEBUG1; |
| 389 | } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) { |
| 390 | options.log_level++; |
| 391 | break; |
| 392 | } else { |
| 393 | fatal("Too high debugging level.\n"); |
| 394 | } |
| 395 | /* fallthrough */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 396 | case 'V': |
Damien Miller | 7892879 | 2000-04-12 20:17:38 +1000 | [diff] [blame] | 397 | fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n", |
| 398 | SSH_VERSION, |
| 399 | PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1, |
| 400 | PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2); |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 401 | fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay()); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 402 | if (opt == 'V') |
| 403 | exit(0); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 404 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 405 | case 'q': |
| 406 | options.log_level = SYSLOG_LEVEL_QUIET; |
| 407 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 408 | case 'e': |
| 409 | if (optarg[0] == '^' && optarg[2] == 0 && |
| 410 | (unsigned char) optarg[1] >= 64 && (unsigned char) optarg[1] < 128) |
| 411 | options.escape_char = (unsigned char) optarg[1] & 31; |
| 412 | else if (strlen(optarg) == 1) |
| 413 | options.escape_char = (unsigned char) optarg[0]; |
| 414 | else if (strcmp(optarg, "none") == 0) |
| 415 | options.escape_char = -2; |
| 416 | else { |
| 417 | fprintf(stderr, "Bad escape character '%s'.\n", optarg); |
| 418 | exit(1); |
| 419 | } |
| 420 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 421 | case 'c': |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 422 | if (ciphers_valid(optarg)) { |
| 423 | /* SSH2 only */ |
| 424 | options.ciphers = xstrdup(optarg); |
Damien Miller | 30c3d42 | 2000-05-09 11:02:59 +1000 | [diff] [blame] | 425 | options.cipher = SSH_CIPHER_ILLEGAL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 426 | } else { |
| 427 | /* SSH1 only */ |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 428 | Cipher *c = cipher_by_name(optarg); |
| 429 | if (c == NULL || c->number < 0) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 430 | fprintf(stderr, "Unknown cipher type '%s'\n", optarg); |
| 431 | exit(1); |
| 432 | } |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 433 | options.cipher = c->number; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 434 | } |
| 435 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 436 | case 'p': |
| 437 | options.port = atoi(optarg); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 438 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 439 | case 'l': |
| 440 | options.user = optarg; |
| 441 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 442 | case 'R': |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 443 | if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf, |
| 444 | &fwd_host_port) != 3 && |
| 445 | sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf, |
| 446 | &fwd_host_port) != 3) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 447 | fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg); |
| 448 | usage(); |
| 449 | /* NOTREACHED */ |
| 450 | } |
| 451 | add_remote_forward(&options, fwd_port, buf, fwd_host_port); |
| 452 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 453 | case 'L': |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 454 | if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf, |
| 455 | &fwd_host_port) != 3 && |
| 456 | sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf, |
| 457 | &fwd_host_port) != 3) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 458 | fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg); |
| 459 | usage(); |
| 460 | /* NOTREACHED */ |
| 461 | } |
| 462 | add_local_forward(&options, fwd_port, buf, fwd_host_port); |
| 463 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 464 | case 'C': |
| 465 | options.compression = 1; |
| 466 | break; |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 467 | case 'N': |
| 468 | no_shell_flag = 1; |
| 469 | no_tty_flag = 1; |
| 470 | break; |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 471 | case 'T': |
| 472 | no_tty_flag = 1; |
| 473 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 474 | case 'o': |
| 475 | dummy = 1; |
| 476 | if (process_config_line(&options, host ? host : "", optarg, |
| 477 | "command-line", 0, &dummy) != 0) |
| 478 | exit(1); |
| 479 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 480 | default: |
| 481 | usage(); |
| 482 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 483 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 484 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 485 | /* Check that we got a host name. */ |
| 486 | if (!host) |
| 487 | usage(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 488 | |
Damien Miller | cb5e44a | 2000-09-29 12:12:36 +1100 | [diff] [blame] | 489 | SSLeay_add_all_algorithms(); |
| 490 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 491 | /* Initialize the command to execute on remote host. */ |
| 492 | buffer_init(&command); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 493 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 494 | /* |
| 495 | * Save the command to execute on the remote host in a buffer. There |
| 496 | * is no limit on the length of the command, except by the maximum |
| 497 | * packet size. Also sets the tty flag if there is no command. |
| 498 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 499 | if (optind == ac) { |
| 500 | /* No command specified - execute shell on a tty. */ |
| 501 | tty_flag = 1; |
| 502 | } else { |
| 503 | /* A command has been specified. Store it into the |
| 504 | buffer. */ |
| 505 | for (i = optind; i < ac; i++) { |
| 506 | if (i > optind) |
| 507 | buffer_append(&command, " ", 1); |
| 508 | buffer_append(&command, av[i], strlen(av[i])); |
| 509 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 510 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 511 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 512 | /* Cannot fork to background if no command. */ |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 513 | if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 514 | fatal("Cannot fork into background without a command to execute."); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 515 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 516 | /* Allocate a tty by default if no command specified. */ |
| 517 | if (buffer_len(&command) == 0) |
| 518 | tty_flag = 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 519 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 520 | /* Do not allocate a tty if stdin is not a tty. */ |
| 521 | if (!isatty(fileno(stdin))) { |
| 522 | if (tty_flag) |
| 523 | fprintf(stderr, "Pseudo-terminal will not be allocated because stdin is not a terminal.\n"); |
| 524 | tty_flag = 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 525 | } |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 526 | /* force */ |
| 527 | if (no_tty_flag) |
| 528 | tty_flag = 0; |
| 529 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 530 | /* Get user data. */ |
| 531 | pw = getpwuid(original_real_uid); |
| 532 | if (!pw) { |
| 533 | fprintf(stderr, "You don't exist, go away!\n"); |
| 534 | exit(1); |
| 535 | } |
| 536 | /* Take a copy of the returned structure. */ |
| 537 | memset(&pwcopy, 0, sizeof(pwcopy)); |
| 538 | pwcopy.pw_name = xstrdup(pw->pw_name); |
| 539 | pwcopy.pw_passwd = xstrdup(pw->pw_passwd); |
| 540 | pwcopy.pw_uid = pw->pw_uid; |
| 541 | pwcopy.pw_gid = pw->pw_gid; |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 542 | #ifdef HAVE_PW_CLASS_IN_PASSWD |
| 543 | pwcopy.pw_class = xstrdup(pw->pw_class); |
| 544 | #endif |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 545 | pwcopy.pw_dir = xstrdup(pw->pw_dir); |
| 546 | pwcopy.pw_shell = xstrdup(pw->pw_shell); |
| 547 | pw = &pwcopy; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 548 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 549 | /* Initialize "log" output. Since we are the client all output |
| 550 | actually goes to the terminal. */ |
| 551 | log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 552 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 553 | /* Read per-user configuration file. */ |
| 554 | snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_CONFFILE); |
| 555 | read_config_file(buf, host, &options); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 556 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 557 | /* Read systemwide configuration file. */ |
| 558 | read_config_file(HOST_CONFIG_FILE, host, &options); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 559 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 560 | /* Fill configuration defaults. */ |
| 561 | fill_default_options(&options); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 562 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 563 | /* reinit */ |
| 564 | log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 565 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 566 | /* check if RSA support exists */ |
| 567 | if ((options.protocol & SSH_PROTO_1) && |
| 568 | rsa_alive() == 0) { |
| 569 | log("%s: no RSA support in libssl and libcrypto. See ssl(8).", |
| 570 | __progname); |
| 571 | log("Disabling protocol version 1"); |
| 572 | options.protocol &= ~ (SSH_PROTO_1|SSH_PROTO_1_PREFERRED); |
| 573 | } |
| 574 | if (! options.protocol & (SSH_PROTO_1|SSH_PROTO_2)) { |
| 575 | fprintf(stderr, "%s: No protocol version available.\n", |
| 576 | __progname); |
| 577 | exit(1); |
| 578 | } |
| 579 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 580 | if (options.user == NULL) |
| 581 | options.user = xstrdup(pw->pw_name); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 582 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 583 | if (options.hostname != NULL) |
| 584 | host = options.hostname; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 585 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 586 | /* Disable rhosts authentication if not running as root. */ |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 587 | #ifdef HAVE_CYGWIN |
| 588 | /* Ignore uid if running under Windows */ |
| 589 | if (!options.use_privileged_port) { |
| 590 | #else |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 591 | if (original_effective_uid != 0 || !options.use_privileged_port) { |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 592 | #endif |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 593 | options.rhosts_authentication = 0; |
| 594 | options.rhosts_rsa_authentication = 0; |
| 595 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 596 | /* |
| 597 | * If using rsh has been selected, exec it now (without trying |
| 598 | * anything else). Note that we must release privileges first. |
| 599 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 600 | if (options.use_rsh) { |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 601 | /* |
| 602 | * Restore our superuser privileges. This must be done |
| 603 | * before permanently setting the uid. |
| 604 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 605 | restore_uid(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 606 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 607 | /* Switch to the original uid permanently. */ |
| 608 | permanently_set_uid(original_real_uid); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 609 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 610 | /* Execute rsh. */ |
| 611 | rsh_connect(host, options.user, &command); |
| 612 | fatal("rsh_connect returned"); |
| 613 | } |
| 614 | /* Restore our superuser privileges. */ |
| 615 | restore_uid(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 616 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 617 | /* |
| 618 | * Open a connection to the remote host. This needs root privileges |
| 619 | * if rhosts_{rsa_}authentication is enabled. |
| 620 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 621 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 622 | ok = ssh_connect(host, &hostaddr, options.port, |
| 623 | options.connection_attempts, |
| 624 | !options.rhosts_authentication && |
| 625 | !options.rhosts_rsa_authentication, |
| 626 | original_real_uid, |
| 627 | options.proxy_command); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 628 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 629 | /* |
| 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 | */ |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 635 | if (ok && (options.protocol & SSH_PROTO_1)) { |
| 636 | Key k; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 637 | host_private_key = RSA_new(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 638 | k.type = KEY_RSA; |
| 639 | k.rsa = host_private_key; |
| 640 | if (load_private_key(HOST_KEY_FILE, "", &k, NULL)) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 641 | host_private_key_loaded = 1; |
| 642 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 643 | /* |
| 644 | * Get rid of any extra privileges that we may have. We will no |
| 645 | * longer need them. Also, extra privileges could make it very hard |
| 646 | * to read identity files and other non-world-readable files from the |
| 647 | * user's home directory if it happens to be on a NFS volume where |
| 648 | * root is mapped to nobody. |
| 649 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 650 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 651 | /* |
| 652 | * Note that some legacy systems need to postpone the following call |
| 653 | * to permanently_set_uid() until the private hostkey is destroyed |
| 654 | * with RSA_free(). Otherwise the calling user could ptrace() the |
| 655 | * process, read the private hostkey and impersonate the host. |
| 656 | * OpenBSD does not allow ptracing of setuid processes. |
| 657 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 658 | permanently_set_uid(original_real_uid); |
| 659 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 660 | /* |
| 661 | * Now that we are back to our own permissions, create ~/.ssh |
| 662 | * directory if it doesn\'t already exist. |
| 663 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 664 | snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR); |
| 665 | if (stat(buf, &st) < 0) |
Damien Miller | be484b5 | 2000-07-15 14:14:16 +1000 | [diff] [blame] | 666 | if (mkdir(buf, 0700) < 0) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 667 | error("Could not create directory '%.200s'.", buf); |
| 668 | |
| 669 | /* Check if the connection failed, and try "rsh" if appropriate. */ |
| 670 | if (!ok) { |
| 671 | if (options.port != 0) |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 672 | log("Secure connection to %.100s on port %hu refused%.100s.", |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 673 | host, options.port, |
| 674 | options.fallback_to_rsh ? "; reverting to insecure method" : ""); |
| 675 | else |
| 676 | log("Secure connection to %.100s refused%.100s.", host, |
| 677 | options.fallback_to_rsh ? "; reverting to insecure method" : ""); |
| 678 | |
| 679 | if (options.fallback_to_rsh) { |
| 680 | rsh_connect(host, options.user, &command); |
| 681 | fatal("rsh_connect returned"); |
| 682 | } |
| 683 | exit(1); |
| 684 | } |
| 685 | /* Expand ~ in options.identity_files. */ |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 686 | /* XXX mem-leaks */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 687 | for (i = 0; i < options.num_identity_files; i++) |
| 688 | options.identity_files[i] = |
| 689 | tilde_expand_filename(options.identity_files[i], original_real_uid); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 690 | for (i = 0; i < options.num_identity_files2; i++) |
| 691 | options.identity_files2[i] = |
| 692 | tilde_expand_filename(options.identity_files2[i], original_real_uid); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 693 | /* Expand ~ in known host file names. */ |
| 694 | options.system_hostfile = tilde_expand_filename(options.system_hostfile, |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 695 | original_real_uid); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 696 | options.user_hostfile = tilde_expand_filename(options.user_hostfile, |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 697 | original_real_uid); |
| 698 | options.system_hostfile2 = tilde_expand_filename(options.system_hostfile2, |
| 699 | original_real_uid); |
| 700 | options.user_hostfile2 = tilde_expand_filename(options.user_hostfile2, |
| 701 | original_real_uid); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 702 | |
| 703 | /* Log into the remote system. This never returns if the login fails. */ |
| 704 | ssh_login(host_private_key_loaded, host_private_key, |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 705 | host, (struct sockaddr *)&hostaddr, original_real_uid); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 706 | |
| 707 | /* We no longer need the host private key. Clear it now. */ |
| 708 | if (host_private_key_loaded) |
| 709 | RSA_free(host_private_key); /* Destroys contents safely */ |
| 710 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 711 | exit_status = compat20 ? ssh_session2() : ssh_session(); |
| 712 | packet_close(); |
| 713 | return exit_status; |
| 714 | } |
| 715 | |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 716 | void |
| 717 | x11_get_proto(char *proto, int proto_len, char *data, int data_len) |
| 718 | { |
| 719 | char line[512]; |
| 720 | FILE *f; |
| 721 | int got_data = 0, i; |
| 722 | |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 723 | if (options.xauth_location) { |
| 724 | /* Try to get Xauthority information for the display. */ |
| 725 | snprintf(line, sizeof line, "%.100s list %.200s 2>/dev/null", |
| 726 | options.xauth_location, getenv("DISPLAY")); |
| 727 | f = popen(line, "r"); |
| 728 | if (f && fgets(line, sizeof(line), f) && |
| 729 | sscanf(line, "%*s %s %s", proto, data) == 2) |
| 730 | got_data = 1; |
| 731 | if (f) |
| 732 | pclose(f); |
| 733 | } |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 734 | /* |
| 735 | * If we didn't get authentication data, just make up some |
| 736 | * data. The forwarding code will check the validity of the |
| 737 | * response anyway, and substitute this data. The X11 |
| 738 | * server, however, will ignore this fake data and use |
| 739 | * whatever authentication mechanisms it was using otherwise |
| 740 | * for the local connection. |
| 741 | */ |
| 742 | if (!got_data) { |
| 743 | u_int32_t rand = 0; |
| 744 | |
| 745 | strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len); |
| 746 | for (i = 0; i < 16; i++) { |
| 747 | if (i % 4 == 0) |
| 748 | rand = arc4random(); |
| 749 | snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff); |
| 750 | rand >>= 8; |
| 751 | } |
| 752 | } |
| 753 | } |
| 754 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 755 | int |
| 756 | ssh_session(void) |
| 757 | { |
| 758 | int type; |
| 759 | int i; |
| 760 | int plen; |
| 761 | int interactive = 0; |
| 762 | int have_tty = 0; |
| 763 | struct winsize ws; |
| 764 | int authfd; |
| 765 | char *cp; |
| 766 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 767 | /* Enable compression if requested. */ |
| 768 | if (options.compression) { |
| 769 | debug("Requesting compression at level %d.", options.compression_level); |
| 770 | |
| 771 | if (options.compression_level < 1 || options.compression_level > 9) |
| 772 | fatal("Compression level must be from 1 (fast) to 9 (slow, best)."); |
| 773 | |
| 774 | /* Send the request. */ |
| 775 | packet_start(SSH_CMSG_REQUEST_COMPRESSION); |
| 776 | packet_put_int(options.compression_level); |
| 777 | packet_send(); |
| 778 | packet_write_wait(); |
| 779 | type = packet_read(&plen); |
| 780 | if (type == SSH_SMSG_SUCCESS) |
| 781 | packet_start_compression(options.compression_level); |
| 782 | else if (type == SSH_SMSG_FAILURE) |
| 783 | log("Warning: Remote host refused compression."); |
| 784 | else |
| 785 | packet_disconnect("Protocol error waiting for compression response."); |
| 786 | } |
| 787 | /* Allocate a pseudo tty if appropriate. */ |
| 788 | if (tty_flag) { |
| 789 | debug("Requesting pty."); |
| 790 | |
| 791 | /* Start the packet. */ |
| 792 | packet_start(SSH_CMSG_REQUEST_PTY); |
| 793 | |
| 794 | /* Store TERM in the packet. There is no limit on the |
| 795 | length of the string. */ |
| 796 | cp = getenv("TERM"); |
| 797 | if (!cp) |
| 798 | cp = ""; |
| 799 | packet_put_string(cp, strlen(cp)); |
| 800 | |
| 801 | /* Store window size in the packet. */ |
| 802 | if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0) |
| 803 | memset(&ws, 0, sizeof(ws)); |
| 804 | packet_put_int(ws.ws_row); |
| 805 | packet_put_int(ws.ws_col); |
| 806 | packet_put_int(ws.ws_xpixel); |
| 807 | packet_put_int(ws.ws_ypixel); |
| 808 | |
| 809 | /* Store tty modes in the packet. */ |
| 810 | tty_make_modes(fileno(stdin)); |
| 811 | |
| 812 | /* Send the packet, and wait for it to leave. */ |
| 813 | packet_send(); |
| 814 | packet_write_wait(); |
| 815 | |
| 816 | /* Read response from the server. */ |
| 817 | type = packet_read(&plen); |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 818 | if (type == SSH_SMSG_SUCCESS) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 819 | interactive = 1; |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 820 | have_tty = 1; |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 821 | } else if (type == SSH_SMSG_FAILURE) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 822 | log("Warning: Remote host failed or refused to allocate a pseudo tty."); |
| 823 | else |
| 824 | packet_disconnect("Protocol error waiting for pty request response."); |
| 825 | } |
| 826 | /* Request X11 forwarding if enabled and DISPLAY is set. */ |
| 827 | if (options.forward_x11 && getenv("DISPLAY") != NULL) { |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 828 | char proto[512], data[512]; |
| 829 | /* Get reasonable local authentication information. */ |
| 830 | x11_get_proto(proto, sizeof proto, data, sizeof data); |
| 831 | /* Request forwarding with authentication spoofing. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 832 | debug("Requesting X11 forwarding with authentication spoofing."); |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 833 | x11_request_forwarding_with_spoofing(0, proto, data); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 834 | |
| 835 | /* Read response from the server. */ |
| 836 | type = packet_read(&plen); |
| 837 | if (type == SSH_SMSG_SUCCESS) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 838 | interactive = 1; |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 839 | } else if (type == SSH_SMSG_FAILURE) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 840 | log("Warning: Remote host denied X11 forwarding."); |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 841 | } else { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 842 | packet_disconnect("Protocol error waiting for X11 forwarding"); |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 843 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 844 | } |
| 845 | /* Tell the packet module whether this is an interactive session. */ |
| 846 | packet_set_interactive(interactive, options.keepalives); |
| 847 | |
| 848 | /* Clear agent forwarding if we don\'t have an agent. */ |
| 849 | authfd = ssh_get_authentication_socket(); |
| 850 | if (authfd < 0) |
| 851 | options.forward_agent = 0; |
| 852 | else |
| 853 | ssh_close_authentication_socket(authfd); |
| 854 | |
| 855 | /* Request authentication agent forwarding if appropriate. */ |
| 856 | if (options.forward_agent) { |
| 857 | debug("Requesting authentication agent forwarding."); |
| 858 | auth_request_forwarding(); |
| 859 | |
| 860 | /* Read response from the server. */ |
| 861 | type = packet_read(&plen); |
| 862 | packet_integrity_check(plen, 0, type); |
| 863 | if (type != SSH_SMSG_SUCCESS) |
| 864 | log("Warning: Remote host denied authentication agent forwarding."); |
| 865 | } |
| 866 | /* Initiate local TCP/IP port forwardings. */ |
| 867 | for (i = 0; i < options.num_local_forwards; i++) { |
| 868 | debug("Connections to local port %d forwarded to remote address %.200s:%d", |
| 869 | options.local_forwards[i].port, |
| 870 | options.local_forwards[i].host, |
| 871 | options.local_forwards[i].host_port); |
| 872 | channel_request_local_forwarding(options.local_forwards[i].port, |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 873 | options.local_forwards[i].host, |
Damien Miller | a34a28b | 1999-12-14 10:47:15 +1100 | [diff] [blame] | 874 | options.local_forwards[i].host_port, |
| 875 | options.gateway_ports); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 876 | } |
| 877 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 878 | /* Initiate remote TCP/IP port forwardings. */ |
| 879 | for (i = 0; i < options.num_remote_forwards; i++) { |
| 880 | debug("Connections to remote port %d forwarded to local address %.200s:%d", |
| 881 | options.remote_forwards[i].port, |
| 882 | options.remote_forwards[i].host, |
| 883 | options.remote_forwards[i].host_port); |
| 884 | channel_request_remote_forwarding(options.remote_forwards[i].port, |
| 885 | options.remote_forwards[i].host, |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 886 | options.remote_forwards[i].host_port); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 887 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 888 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 889 | /* If requested, let ssh continue in the background. */ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 890 | if (fork_after_authentication_flag) |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 891 | if (daemon(1, 1) < 0) |
| 892 | fatal("daemon() failed: %.200s", strerror(errno)); |
| 893 | |
| 894 | /* |
| 895 | * If a command was specified on the command line, execute the |
| 896 | * command now. Otherwise request the server to start a shell. |
| 897 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 898 | if (buffer_len(&command) > 0) { |
| 899 | int len = buffer_len(&command); |
| 900 | if (len > 900) |
| 901 | len = 900; |
| 902 | debug("Sending command: %.*s", len, buffer_ptr(&command)); |
| 903 | packet_start(SSH_CMSG_EXEC_CMD); |
| 904 | packet_put_string(buffer_ptr(&command), buffer_len(&command)); |
| 905 | packet_send(); |
| 906 | packet_write_wait(); |
| 907 | } else { |
| 908 | debug("Requesting shell."); |
| 909 | packet_start(SSH_CMSG_EXEC_SHELL); |
| 910 | packet_send(); |
| 911 | packet_write_wait(); |
| 912 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 913 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 914 | /* Enter the interactive session. */ |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 915 | return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0); |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 916 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 917 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 918 | void |
| 919 | init_local_fwd(void) |
| 920 | { |
| 921 | int i; |
| 922 | /* Initiate local TCP/IP port forwardings. */ |
| 923 | for (i = 0; i < options.num_local_forwards; i++) { |
| 924 | debug("Connections to local port %d forwarded to remote address %.200s:%d", |
| 925 | options.local_forwards[i].port, |
| 926 | options.local_forwards[i].host, |
| 927 | options.local_forwards[i].host_port); |
| 928 | channel_request_local_forwarding(options.local_forwards[i].port, |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 929 | options.local_forwards[i].host, |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 930 | options.local_forwards[i].host_port, |
| 931 | options.gateway_ports); |
| 932 | } |
| 933 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 934 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 935 | extern void client_set_session_ident(int id); |
| 936 | |
| 937 | void |
| 938 | client_init(int id, void *arg) |
| 939 | { |
| 940 | int len; |
| 941 | debug("client_init id %d arg %d", id, (int)arg); |
| 942 | |
| 943 | if (no_shell_flag) |
| 944 | goto done; |
| 945 | |
| 946 | if (tty_flag) { |
| 947 | struct winsize ws; |
| 948 | char *cp; |
| 949 | cp = getenv("TERM"); |
| 950 | if (!cp) |
| 951 | cp = ""; |
| 952 | /* Store window size in the packet. */ |
| 953 | if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0) |
| 954 | memset(&ws, 0, sizeof(ws)); |
| 955 | |
| 956 | channel_request_start(id, "pty-req", 0); |
| 957 | packet_put_cstring(cp); |
| 958 | packet_put_int(ws.ws_col); |
| 959 | packet_put_int(ws.ws_row); |
| 960 | packet_put_int(ws.ws_xpixel); |
| 961 | packet_put_int(ws.ws_ypixel); |
| 962 | packet_put_cstring(""); /* XXX: encode terminal modes */ |
| 963 | packet_send(); |
| 964 | /* XXX wait for reply */ |
| 965 | } |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 966 | if (options.forward_x11 && |
| 967 | getenv("DISPLAY") != NULL) { |
| 968 | char proto[512], data[512]; |
| 969 | /* Get reasonable local authentication information. */ |
| 970 | x11_get_proto(proto, sizeof proto, data, sizeof data); |
| 971 | /* Request forwarding with authentication spoofing. */ |
| 972 | debug("Requesting X11 forwarding with authentication spoofing."); |
| 973 | x11_request_forwarding_with_spoofing(id, proto, data); |
| 974 | /* XXX wait for reply */ |
| 975 | } |
| 976 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 977 | len = buffer_len(&command); |
| 978 | if (len > 0) { |
| 979 | if (len > 900) |
| 980 | len = 900; |
| 981 | debug("Sending command: %.*s", len, buffer_ptr(&command)); |
| 982 | channel_request_start(id, "exec", 0); |
| 983 | packet_put_string(buffer_ptr(&command), len); |
| 984 | packet_send(); |
| 985 | } else { |
| 986 | channel_request(id, "shell", 0); |
| 987 | } |
| 988 | /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */ |
| 989 | done: |
| 990 | /* register different callback, etc. XXX */ |
| 991 | client_set_session_ident(id); |
| 992 | } |
| 993 | |
| 994 | int |
| 995 | ssh_session2(void) |
| 996 | { |
| 997 | int window, packetmax, id; |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 998 | int in, out, err; |
| 999 | |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 1000 | if (stdin_null_flag) { |
| 1001 | in = open("/dev/null", O_RDONLY); |
| 1002 | } else { |
| 1003 | in = dup(STDIN_FILENO); |
| 1004 | } |
| 1005 | out = dup(STDOUT_FILENO); |
| 1006 | err = dup(STDERR_FILENO); |
| 1007 | |
| 1008 | if (in < 0 || out < 0 || err < 0) |
| 1009 | fatal("dup() in/out/err failed"); |
| 1010 | |
| 1011 | /* should be pre-session */ |
| 1012 | init_local_fwd(); |
| 1013 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 1014 | /* If requested, let ssh continue in the background. */ |
| 1015 | if (fork_after_authentication_flag) |
| 1016 | if (daemon(1, 1) < 0) |
| 1017 | fatal("daemon() failed: %.200s", strerror(errno)); |
| 1018 | |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 1019 | window = CHAN_SES_WINDOW_DEFAULT; |
| 1020 | packetmax = CHAN_SES_PACKET_DEFAULT; |
| 1021 | if (!tty_flag) { |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 1022 | window *= 2; |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 1023 | packetmax *=2; |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 1024 | } |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 1025 | id = channel_new( |
| 1026 | "session", SSH_CHANNEL_OPENING, in, out, err, |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 1027 | window, packetmax, CHAN_EXTENDED_WRITE, |
| 1028 | xstrdup("client-session")); |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 1029 | |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 1030 | channel_open(id); |
| 1031 | channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, client_init, (void *)0); |
| 1032 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 1033 | return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1034 | } |