blob: 7035486e9876d4c1caff5d37f7af853b73526b5f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * 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 Millere4340be2000-09-16 13:29:08 +11009 * 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 Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000042RCSID("$OpenBSD: ssh.c,v 1.79 2000/12/27 11:51:54 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100043
44#include <openssl/evp.h>
45#include <openssl/dsa.h>
46#include <openssl/rsa.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110047#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
49#include "xmalloc.h"
50#include "ssh.h"
51#include "packet.h"
52#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "readconf.h"
54#include "uidswap.h"
Damien Miller1383bd82000-04-06 12:32:37 +100055
56#include "ssh2.h"
57#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100058#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100060#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100061#include "authfile.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller3f905871999-11-15 17:10:57 +110063#ifdef HAVE___PROGNAME
64extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000065#else
66char *__progname;
67#endif
Damien Miller3f905871999-11-15 17:10:57 +110068
Damien Miller34132e52000-01-14 15:45:46 +110069/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
70 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110071#ifdef IPV4_DEFAULT
72int IPv4or6 = AF_INET;
73#else
Damien Miller34132e52000-01-14 15:45:46 +110074int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110075#endif
Damien Miller34132e52000-01-14 15:45:46 +110076
Damien Miller95def091999-11-25 00:26:21 +110077/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078int debug_flag = 0;
79
Damien Miller78928792000-04-12 20:17:38 +100080/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000082int no_tty_flag = 0;
83int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller1383bd82000-04-06 12:32:37 +100085/* don't exec a shell */
86int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100087
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Flag indicating that nothing should be read from stdin. This can be set
90 * on the command line.
91 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092int stdin_null_flag = 0;
93
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Flag indicating that ssh should fork after authentication. This is useful
96 * so that the pasphrase can be entered manually, and then ssh goes to the
97 * background.
98 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099int fork_after_authentication_flag = 0;
100
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * General data structure for command line options and options configurable
103 * in configuration files. See readconf.h.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105Options options;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Name of the host we are connecting to. This is the name given on the
109 * command line, or the HostName specified for the user-supplied name in a
110 * configuration file.
111 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112char *host;
113
114/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100115struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116
Damien Miller5428f641999-11-25 11:54:57 +1100117/*
118 * Flag to indicate that we have received a window change signal which has
119 * not yet been processed. This will cause a message indicating the new
120 * window size to be sent to the server a little later. This is volatile
121 * because this is updated in a signal handler.
122 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123volatile int received_window_change_signal = 0;
124
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125/* Flag indicating whether we have a valid host private key loaded. */
126int host_private_key_loaded = 0;
127
128/* Host private key. */
129RSA *host_private_key = NULL;
130
131/* Original real UID. */
132uid_t original_real_uid;
133
Damien Miller1383bd82000-04-06 12:32:37 +1000134/* command to be executed */
135Buffer command;
136
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137/* Prints a help message to the user. This function never returns. */
138
139void
140usage()
141{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000142 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100143 fprintf(stderr, "Options:\n");
144 fprintf(stderr, " -l user Log in using this user name.\n");
145 fprintf(stderr, " -n Redirect input from /dev/null.\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000146 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100147 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100149 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
150#endif /* AFS */
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000151 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100152 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
153 fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n");
154 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000155 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100156 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100157 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100158 fprintf(stderr, " -V Display version number only.\n");
159 fprintf(stderr, " -P Don't allocate a privileged port.\n");
160 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
161 fprintf(stderr, " -f Fork into background after authentication.\n");
162 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163
Damien Miller95def091999-11-25 00:26:21 +1100164 fprintf(stderr, " -c cipher Select encryption algorithm: "
165 "``3des'', "
166 "``blowfish''\n");
167 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
168 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
169 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000170 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100171 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
172 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000173 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100174 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100175 fprintf(stderr, " -4 Use IPv4 only.\n");
176 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller4af51302000-04-16 11:18:38 +1000177 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100178 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
179 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180}
181
Damien Miller95def091999-11-25 00:26:21 +1100182/*
183 * Connects to the given host using rsh (or prints an error message and exits
184 * if rsh is not available). This function never returns.
185 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186void
Damien Miller95def091999-11-25 00:26:21 +1100187rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188{
Damien Miller95def091999-11-25 00:26:21 +1100189 char *args[10];
190 int i;
191
192 log("Using rsh. WARNING: Connection will not be encrypted.");
193 /* Build argument list for rsh. */
194 i = 0;
195 args[i++] = _PATH_RSH;
196 /* host may have to come after user on some systems */
197 args[i++] = host;
198 if (user) {
199 args[i++] = "-l";
200 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201 }
Damien Miller95def091999-11-25 00:26:21 +1100202 if (buffer_len(command) > 0) {
203 buffer_append(command, "\0", 1);
204 args[i++] = buffer_ptr(command);
205 }
206 args[i++] = NULL;
207 if (debug_flag) {
208 for (i = 0; args[i]; i++) {
209 if (i != 0)
210 fprintf(stderr, " ");
211 fprintf(stderr, "%s", args[i]);
212 }
213 fprintf(stderr, "\n");
214 }
215 execv(_PATH_RSH, args);
216 perror(_PATH_RSH);
217 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218}
219
Damien Miller0bc1bd82000-11-13 22:57:25 +1100220int ssh_session(void);
221int ssh_session2(void);
222int guess_identity_file_type(const char *filename);
Damien Miller1383bd82000-04-06 12:32:37 +1000223
Damien Miller95def091999-11-25 00:26:21 +1100224/*
225 * Main program for the ssh client.
226 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227int
228main(int ac, char **av)
229{
Damien Miller1383bd82000-04-06 12:32:37 +1000230 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100231 u_short fwd_port, fwd_host_port;
Damien Miller95def091999-11-25 00:26:21 +1100232 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100233 struct stat st;
234 struct passwd *pw, pwcopy;
Damien Miller1383bd82000-04-06 12:32:37 +1000235 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100236 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000238 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000239 init_rng();
240
Damien Miller5428f641999-11-25 11:54:57 +1100241 /*
242 * Save the original real uid. It will be needed later (uid-swapping
243 * may clobber the real uid).
244 */
Damien Miller95def091999-11-25 00:26:21 +1100245 original_real_uid = getuid();
246 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller05dd7952000-10-01 00:42:48 +1100248#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100249 /* If we are installed setuid root be careful to not drop core. */
250 if (original_real_uid != original_effective_uid) {
251 struct rlimit rlim;
252 rlim.rlim_cur = rlim.rlim_max = 0;
253 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
254 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100256#endif
Damien Miller5428f641999-11-25 11:54:57 +1100257 /*
258 * Use uid-swapping to give up root privileges for the duration of
259 * option processing. We will re-instantiate the rights when we are
260 * ready to create the privileged port, and will permanently drop
261 * them when the port has been created (actually, when the connection
262 * has been made, as we may need to create the port several times).
263 */
Damien Miller95def091999-11-25 00:26:21 +1100264 temporarily_use_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller5428f641999-11-25 11:54:57 +1100266 /*
267 * Set our umask to something reasonable, as some files are created
268 * with the default umask. This will make them world-readable but
269 * writable only by the owner, which is ok for all files for which we
270 * don't set the modes explicitly.
271 */
Damien Miller95def091999-11-25 00:26:21 +1100272 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller95def091999-11-25 00:26:21 +1100274 /* Initialize option structure to indicate that no values have been set. */
275 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Parse command-line arguments. */
278 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279
Damien Miller95def091999-11-25 00:26:21 +1100280 /* If program name is not one of the standard names, use it as host name. */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000281 cp = __progname;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100282#ifdef HAVE_CYGWIN
283 if (strcasecmp(cp, "rsh") && strcasecmp(cp, "ssh") &&
284 strcasecmp(cp, "rlogin") && strcasecmp(cp, "slogin") &&
285 strcasecmp(cp, "remsh") &&
286 strcasecmp(cp, "rsh.exe") && strcasecmp(cp, "ssh.exe") &&
287 strcasecmp(cp, "rlogin.exe") && strcasecmp(cp, "slogin.exe") &&
288 strcasecmp(cp, "remsh.exe"))
289#else
Damien Millerad833b32000-08-23 10:46:23 +1000290 if (strcmp(cp, "rsh") && strcmp(cp, "ssh") && strcmp(cp, "rlogin") &&
291 strcmp(cp, "slogin") && strcmp(cp, "remsh"))
Damien Millerbac2d8a2000-09-05 16:13:06 +1100292#endif
Damien Miller95def091999-11-25 00:26:21 +1100293 host = cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294
Damien Miller95def091999-11-25 00:26:21 +1100295 for (optind = 1; optind < ac; optind++) {
296 if (av[optind][0] != '-') {
297 if (host)
298 break;
299 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000300 if(cp == av[optind])
301 usage();
Damien Miller95def091999-11-25 00:26:21 +1100302 options.user = av[optind];
303 *cp = '\0';
304 host = ++cp;
305 } else
306 host = av[optind];
307 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308 }
Damien Miller95def091999-11-25 00:26:21 +1100309 opt = av[optind][1];
310 if (!opt)
311 usage();
312 if (strchr("eilcpLRo", opt)) { /* options with arguments */
313 optarg = av[optind] + 2;
314 if (strcmp(optarg, "") == 0) {
315 if (optind >= ac - 1)
316 usage();
317 optarg = av[++optind];
318 }
319 } else {
320 if (av[optind][2])
321 usage();
322 optarg = NULL;
323 }
324 switch (opt) {
Damien Miller4af51302000-04-16 11:18:38 +1000325 case '2':
326 options.protocol = SSH_PROTO_2;
327 break;
Damien Miller34132e52000-01-14 15:45:46 +1100328 case '4':
329 IPv4or6 = AF_INET;
330 break;
Damien Miller34132e52000-01-14 15:45:46 +1100331 case '6':
332 IPv4or6 = AF_INET6;
333 break;
Damien Miller95def091999-11-25 00:26:21 +1100334 case 'n':
335 stdin_null_flag = 1;
336 break;
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'f':
338 fork_after_authentication_flag = 1;
339 stdin_null_flag = 1;
340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 'x':
342 options.forward_x11 = 0;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'X':
345 options.forward_x11 = 1;
346 break;
Damien Miller95def091999-11-25 00:26:21 +1100347 case 'g':
348 options.gateway_ports = 1;
349 break;
Damien Miller95def091999-11-25 00:26:21 +1100350 case 'P':
351 options.use_privileged_port = 0;
352 break;
Damien Miller95def091999-11-25 00:26:21 +1100353 case 'a':
354 options.forward_agent = 0;
355 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000356 case 'A':
357 options.forward_agent = 1;
358 break;
Damien Miller95def091999-11-25 00:26:21 +1100359#ifdef AFS
360 case 'k':
361 options.kerberos_tgt_passing = 0;
362 options.afs_token_passing = 0;
363 break;
364#endif
365 case 'i':
366 if (stat(optarg, &st) < 0) {
367 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100368 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100369 break;
370 }
371 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
372 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100373 SSH_MAX_IDENTITY_FILES);
374 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100375 break;
Damien Miller95def091999-11-25 00:26:21 +1100376 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000377 if (tty_flag)
378 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100379 tty_flag = 1;
380 break;
Damien Miller95def091999-11-25 00:26:21 +1100381 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100382 if (0 == debug_flag) {
383 debug_flag = 1;
384 options.log_level = SYSLOG_LEVEL_DEBUG1;
385 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
386 options.log_level++;
387 break;
388 } else {
389 fatal("Too high debugging level.\n");
390 }
391 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100392 case 'V':
Damien Miller78928792000-04-12 20:17:38 +1000393 fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n",
394 SSH_VERSION,
395 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
396 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
Damien Miller1383bd82000-04-06 12:32:37 +1000397 fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100398 if (opt == 'V')
399 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100400 break;
Damien Miller95def091999-11-25 00:26:21 +1100401 case 'q':
402 options.log_level = SYSLOG_LEVEL_QUIET;
403 break;
Damien Miller95def091999-11-25 00:26:21 +1100404 case 'e':
405 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000406 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
407 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100408 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000409 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100410 else if (strcmp(optarg, "none") == 0)
411 options.escape_char = -2;
412 else {
413 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
414 exit(1);
415 }
416 break;
Damien Miller95def091999-11-25 00:26:21 +1100417 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000418 if (ciphers_valid(optarg)) {
419 /* SSH2 only */
420 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000421 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000422 } else {
423 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100424 options.cipher = cipher_number(optarg);
425 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000426 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
427 exit(1);
428 }
Damien Millere39cacc2000-11-29 12:18:44 +1100429 if (options.cipher == SSH_CIPHER_3DES) {
430 options.ciphers = "3des-cbc";
431 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
432 options.ciphers = "blowfish-cbc";
433 } else {
434 options.ciphers = (char *)-1;
435 }
Damien Miller95def091999-11-25 00:26:21 +1100436 }
437 break;
Damien Miller95def091999-11-25 00:26:21 +1100438 case 'p':
439 options.port = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100440 break;
Damien Miller95def091999-11-25 00:26:21 +1100441 case 'l':
442 options.user = optarg;
443 break;
Damien Miller95def091999-11-25 00:26:21 +1100444 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100445 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
446 &fwd_host_port) != 3 &&
447 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
448 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100449 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
450 usage();
451 /* NOTREACHED */
452 }
453 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
454 break;
Damien Miller95def091999-11-25 00:26:21 +1100455 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100456 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
457 &fwd_host_port) != 3 &&
458 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
459 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100460 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
461 usage();
462 /* NOTREACHED */
463 }
464 add_local_forward(&options, fwd_port, buf, fwd_host_port);
465 break;
Damien Miller95def091999-11-25 00:26:21 +1100466 case 'C':
467 options.compression = 1;
468 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000469 case 'N':
470 no_shell_flag = 1;
471 no_tty_flag = 1;
472 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000473 case 'T':
474 no_tty_flag = 1;
475 break;
Damien Miller95def091999-11-25 00:26:21 +1100476 case 'o':
477 dummy = 1;
478 if (process_config_line(&options, host ? host : "", optarg,
479 "command-line", 0, &dummy) != 0)
480 exit(1);
481 break;
Damien Miller95def091999-11-25 00:26:21 +1100482 default:
483 usage();
484 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486
Damien Miller95def091999-11-25 00:26:21 +1100487 /* Check that we got a host name. */
488 if (!host)
489 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Millercb5e44a2000-09-29 12:12:36 +1100491 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100492 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100493
Damien Miller95def091999-11-25 00:26:21 +1100494 /* Initialize the command to execute on remote host. */
495 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496
Damien Miller5428f641999-11-25 11:54:57 +1100497 /*
498 * Save the command to execute on the remote host in a buffer. There
499 * is no limit on the length of the command, except by the maximum
500 * packet size. Also sets the tty flag if there is no command.
501 */
Damien Miller95def091999-11-25 00:26:21 +1100502 if (optind == ac) {
503 /* No command specified - execute shell on a tty. */
504 tty_flag = 1;
505 } else {
506 /* A command has been specified. Store it into the
507 buffer. */
508 for (i = optind; i < ac; i++) {
509 if (i > optind)
510 buffer_append(&command, " ", 1);
511 buffer_append(&command, av[i], strlen(av[i]));
512 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514
Damien Miller95def091999-11-25 00:26:21 +1100515 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100516 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100517 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000518
Damien Miller95def091999-11-25 00:26:21 +1100519 /* Allocate a tty by default if no command specified. */
520 if (buffer_len(&command) == 0)
521 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Ben Lindstromc72745a2000-12-02 19:03:54 +0000523 /* Force no tty*/
524 if (no_tty_flag)
525 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100526 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000527 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100528 if (tty_flag)
529 fprintf(stderr, "Pseudo-terminal will not be allocated because stdin is not a terminal.\n");
530 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531 }
Damien Miller1383bd82000-04-06 12:32:37 +1000532
Damien Miller95def091999-11-25 00:26:21 +1100533 /* Get user data. */
534 pw = getpwuid(original_real_uid);
535 if (!pw) {
536 fprintf(stderr, "You don't exist, go away!\n");
537 exit(1);
538 }
539 /* Take a copy of the returned structure. */
540 memset(&pwcopy, 0, sizeof(pwcopy));
541 pwcopy.pw_name = xstrdup(pw->pw_name);
542 pwcopy.pw_passwd = xstrdup(pw->pw_passwd);
543 pwcopy.pw_uid = pw->pw_uid;
544 pwcopy.pw_gid = pw->pw_gid;
Damien Millerad833b32000-08-23 10:46:23 +1000545#ifdef HAVE_PW_CLASS_IN_PASSWD
546 pwcopy.pw_class = xstrdup(pw->pw_class);
547#endif
Damien Miller95def091999-11-25 00:26:21 +1100548 pwcopy.pw_dir = xstrdup(pw->pw_dir);
549 pwcopy.pw_shell = xstrdup(pw->pw_shell);
550 pw = &pwcopy;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Miller95def091999-11-25 00:26:21 +1100552 /* Initialize "log" output. Since we are the client all output
553 actually goes to the terminal. */
554 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 /* Read per-user configuration file. */
557 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_CONFFILE);
558 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Read systemwide configuration file. */
561 read_config_file(HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Fill configuration defaults. */
564 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller95def091999-11-25 00:26:21 +1100566 /* reinit */
567 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Miller95def091999-11-25 00:26:21 +1100569 if (options.user == NULL)
570 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 if (options.hostname != NULL)
573 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Damien Miller95def091999-11-25 00:26:21 +1100575 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100576#ifdef HAVE_CYGWIN
577 /* Ignore uid if running under Windows */
578 if (!options.use_privileged_port) {
579#else
Damien Miller95def091999-11-25 00:26:21 +1100580 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100581#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000582 debug("Rhosts Authentication disabled, "
583 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100584 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100585 }
Damien Miller5428f641999-11-25 11:54:57 +1100586 /*
587 * If using rsh has been selected, exec it now (without trying
588 * anything else). Note that we must release privileges first.
589 */
Damien Miller95def091999-11-25 00:26:21 +1100590 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100591 /*
592 * Restore our superuser privileges. This must be done
593 * before permanently setting the uid.
594 */
Damien Miller95def091999-11-25 00:26:21 +1100595 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Damien Miller95def091999-11-25 00:26:21 +1100597 /* Switch to the original uid permanently. */
598 permanently_set_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller95def091999-11-25 00:26:21 +1100600 /* Execute rsh. */
601 rsh_connect(host, options.user, &command);
602 fatal("rsh_connect returned");
603 }
604 /* Restore our superuser privileges. */
605 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000607 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608
Damien Miller95def091999-11-25 00:26:21 +1100609 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000610 options.connection_attempts,
611 original_effective_uid != 0 || !options.use_privileged_port,
612 original_real_uid,
613 options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Damien Miller5428f641999-11-25 11:54:57 +1100615 /*
616 * If we successfully made the connection, load the host private key
617 * in case we will need it later for combined rsa-rhosts
618 * authentication. This must be done before releasing extra
619 * privileges, because the file is only readable by root.
620 */
Damien Millereba71ba2000-04-29 23:57:08 +1000621 if (ok && (options.protocol & SSH_PROTO_1)) {
622 Key k;
Damien Miller95def091999-11-25 00:26:21 +1100623 host_private_key = RSA_new();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100624 k.type = KEY_RSA1;
Damien Millereba71ba2000-04-29 23:57:08 +1000625 k.rsa = host_private_key;
626 if (load_private_key(HOST_KEY_FILE, "", &k, NULL))
Damien Miller95def091999-11-25 00:26:21 +1100627 host_private_key_loaded = 1;
628 }
Damien Miller5428f641999-11-25 11:54:57 +1100629 /*
630 * Get rid of any extra privileges that we may have. We will no
631 * longer need them. Also, extra privileges could make it very hard
632 * to read identity files and other non-world-readable files from the
633 * user's home directory if it happens to be on a NFS volume where
634 * root is mapped to nobody.
635 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller5428f641999-11-25 11:54:57 +1100637 /*
638 * Note that some legacy systems need to postpone the following call
639 * to permanently_set_uid() until the private hostkey is destroyed
640 * with RSA_free(). Otherwise the calling user could ptrace() the
641 * process, read the private hostkey and impersonate the host.
642 * OpenBSD does not allow ptracing of setuid processes.
643 */
Damien Miller95def091999-11-25 00:26:21 +1100644 permanently_set_uid(original_real_uid);
645
Damien Miller5428f641999-11-25 11:54:57 +1100646 /*
647 * Now that we are back to our own permissions, create ~/.ssh
648 * directory if it doesn\'t already exist.
649 */
Damien Miller95def091999-11-25 00:26:21 +1100650 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR);
651 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000652 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100653 error("Could not create directory '%.200s'.", buf);
654
655 /* Check if the connection failed, and try "rsh" if appropriate. */
656 if (!ok) {
657 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100658 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100659 host, options.port,
660 options.fallback_to_rsh ? "; reverting to insecure method" : "");
661 else
662 log("Secure connection to %.100s refused%.100s.", host,
663 options.fallback_to_rsh ? "; reverting to insecure method" : "");
664
665 if (options.fallback_to_rsh) {
666 rsh_connect(host, options.user, &command);
667 fatal("rsh_connect returned");
668 }
669 exit(1);
670 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100671 /* Expand ~ in options.identity_files, known host file names. */
Damien Millereba71ba2000-04-29 23:57:08 +1000672 /* XXX mem-leaks */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100673 for (i = 0; i < options.num_identity_files; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100674 options.identity_files[i] =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100675 tilde_expand_filename(options.identity_files[i], original_real_uid);
676 options.identity_files_type[i] = guess_identity_file_type(options.identity_files[i]);
677 debug("identity file %s type %d", options.identity_files[i],
678 options.identity_files_type[i]);
679 }
680 options.system_hostfile =
681 tilde_expand_filename(options.system_hostfile, original_real_uid);
682 options.user_hostfile =
683 tilde_expand_filename(options.user_hostfile, original_real_uid);
684 options.system_hostfile2 =
685 tilde_expand_filename(options.system_hostfile2, original_real_uid);
686 options.user_hostfile2 =
687 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100688
689 /* Log into the remote system. This never returns if the login fails. */
690 ssh_login(host_private_key_loaded, host_private_key,
Damien Miller34132e52000-01-14 15:45:46 +1100691 host, (struct sockaddr *)&hostaddr, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100692
693 /* We no longer need the host private key. Clear it now. */
694 if (host_private_key_loaded)
695 RSA_free(host_private_key); /* Destroys contents safely */
696
Damien Miller1383bd82000-04-06 12:32:37 +1000697 exit_status = compat20 ? ssh_session2() : ssh_session();
698 packet_close();
699 return exit_status;
700}
701
Damien Millerbd483e72000-04-30 10:00:53 +1000702void
703x11_get_proto(char *proto, int proto_len, char *data, int data_len)
704{
705 char line[512];
706 FILE *f;
707 int got_data = 0, i;
708
Damien Millerd3a18572000-06-07 19:55:44 +1000709 if (options.xauth_location) {
710 /* Try to get Xauthority information for the display. */
711 snprintf(line, sizeof line, "%.100s list %.200s 2>/dev/null",
712 options.xauth_location, getenv("DISPLAY"));
713 f = popen(line, "r");
714 if (f && fgets(line, sizeof(line), f) &&
715 sscanf(line, "%*s %s %s", proto, data) == 2)
716 got_data = 1;
717 if (f)
718 pclose(f);
719 }
Damien Millerbd483e72000-04-30 10:00:53 +1000720 /*
721 * If we didn't get authentication data, just make up some
722 * data. The forwarding code will check the validity of the
723 * response anyway, and substitute this data. The X11
724 * server, however, will ignore this fake data and use
725 * whatever authentication mechanisms it was using otherwise
726 * for the local connection.
727 */
728 if (!got_data) {
729 u_int32_t rand = 0;
730
731 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
732 for (i = 0; i < 16; i++) {
733 if (i % 4 == 0)
734 rand = arc4random();
735 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
736 rand >>= 8;
737 }
738 }
739}
740
Damien Miller0bc1bd82000-11-13 22:57:25 +1100741void
742ssh_init_forwarding(void)
743{
744 int i;
745 /* Initiate local TCP/IP port forwardings. */
746 for (i = 0; i < options.num_local_forwards; i++) {
747 debug("Connections to local port %d forwarded to remote address %.200s:%d",
748 options.local_forwards[i].port,
749 options.local_forwards[i].host,
750 options.local_forwards[i].host_port);
751 channel_request_local_forwarding(
752 options.local_forwards[i].port,
753 options.local_forwards[i].host,
754 options.local_forwards[i].host_port,
755 options.gateway_ports);
756 }
757
758 /* Initiate remote TCP/IP port forwardings. */
759 for (i = 0; i < options.num_remote_forwards; i++) {
760 debug("Connections to remote port %d forwarded to local address %.200s:%d",
761 options.remote_forwards[i].port,
762 options.remote_forwards[i].host,
763 options.remote_forwards[i].host_port);
764 channel_request_remote_forwarding(
765 options.remote_forwards[i].port,
766 options.remote_forwards[i].host,
767 options.remote_forwards[i].host_port);
768 }
769}
770
771void
772check_agent_present(void)
773{
774 if (options.forward_agent) {
775 /* Clear agent forwarding if we don\'t have an agent. */
776 int authfd = ssh_get_authentication_socket();
777 if (authfd < 0)
778 options.forward_agent = 0;
779 else
780 ssh_close_authentication_socket(authfd);
781 }
782}
783
Damien Miller1383bd82000-04-06 12:32:37 +1000784int
785ssh_session(void)
786{
787 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000788 int plen;
789 int interactive = 0;
790 int have_tty = 0;
791 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000792 char *cp;
793
Damien Miller95def091999-11-25 00:26:21 +1100794 /* Enable compression if requested. */
795 if (options.compression) {
796 debug("Requesting compression at level %d.", options.compression_level);
797
798 if (options.compression_level < 1 || options.compression_level > 9)
799 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
800
801 /* Send the request. */
802 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
803 packet_put_int(options.compression_level);
804 packet_send();
805 packet_write_wait();
806 type = packet_read(&plen);
807 if (type == SSH_SMSG_SUCCESS)
808 packet_start_compression(options.compression_level);
809 else if (type == SSH_SMSG_FAILURE)
810 log("Warning: Remote host refused compression.");
811 else
812 packet_disconnect("Protocol error waiting for compression response.");
813 }
814 /* Allocate a pseudo tty if appropriate. */
815 if (tty_flag) {
816 debug("Requesting pty.");
817
818 /* Start the packet. */
819 packet_start(SSH_CMSG_REQUEST_PTY);
820
821 /* Store TERM in the packet. There is no limit on the
822 length of the string. */
823 cp = getenv("TERM");
824 if (!cp)
825 cp = "";
826 packet_put_string(cp, strlen(cp));
827
828 /* Store window size in the packet. */
829 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
830 memset(&ws, 0, sizeof(ws));
831 packet_put_int(ws.ws_row);
832 packet_put_int(ws.ws_col);
833 packet_put_int(ws.ws_xpixel);
834 packet_put_int(ws.ws_ypixel);
835
836 /* Store tty modes in the packet. */
837 tty_make_modes(fileno(stdin));
838
839 /* Send the packet, and wait for it to leave. */
840 packet_send();
841 packet_write_wait();
842
843 /* Read response from the server. */
844 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000845 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100846 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000847 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000848 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100849 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
850 else
851 packet_disconnect("Protocol error waiting for pty request response.");
852 }
853 /* Request X11 forwarding if enabled and DISPLAY is set. */
854 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000855 char proto[512], data[512];
856 /* Get reasonable local authentication information. */
857 x11_get_proto(proto, sizeof proto, data, sizeof data);
858 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100859 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000860 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100861
862 /* Read response from the server. */
863 type = packet_read(&plen);
864 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100865 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000866 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100867 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000868 } else {
Damien Miller95def091999-11-25 00:26:21 +1100869 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000870 }
Damien Miller95def091999-11-25 00:26:21 +1100871 }
872 /* Tell the packet module whether this is an interactive session. */
873 packet_set_interactive(interactive, options.keepalives);
874
Damien Miller95def091999-11-25 00:26:21 +1100875
876 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100877 check_agent_present();
878
Damien Miller95def091999-11-25 00:26:21 +1100879 if (options.forward_agent) {
880 debug("Requesting authentication agent forwarding.");
881 auth_request_forwarding();
882
883 /* Read response from the server. */
884 type = packet_read(&plen);
885 packet_integrity_check(plen, 0, type);
886 if (type != SSH_SMSG_SUCCESS)
887 log("Warning: Remote host denied authentication agent forwarding.");
888 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000889
Damien Miller0bc1bd82000-11-13 22:57:25 +1100890 /* Initiate port forwardings. */
891 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000892
Damien Miller5428f641999-11-25 11:54:57 +1100893 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000894 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100895 if (daemon(1, 1) < 0)
896 fatal("daemon() failed: %.200s", strerror(errno));
897
898 /*
899 * If a command was specified on the command line, execute the
900 * command now. Otherwise request the server to start a shell.
901 */
Damien Miller95def091999-11-25 00:26:21 +1100902 if (buffer_len(&command) > 0) {
903 int len = buffer_len(&command);
904 if (len > 900)
905 len = 900;
906 debug("Sending command: %.*s", len, buffer_ptr(&command));
907 packet_start(SSH_CMSG_EXEC_CMD);
908 packet_put_string(buffer_ptr(&command), buffer_len(&command));
909 packet_send();
910 packet_write_wait();
911 } else {
912 debug("Requesting shell.");
913 packet_start(SSH_CMSG_EXEC_SHELL);
914 packet_send();
915 packet_write_wait();
916 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917
Damien Miller95def091999-11-25 00:26:21 +1100918 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000919 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000920}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921
Damien Miller1383bd82000-04-06 12:32:37 +1000922extern void client_set_session_ident(int id);
923
924void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100925ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000926{
927 int len;
928 debug("client_init id %d arg %d", id, (int)arg);
929
930 if (no_shell_flag)
931 goto done;
932
933 if (tty_flag) {
934 struct winsize ws;
935 char *cp;
936 cp = getenv("TERM");
937 if (!cp)
938 cp = "";
939 /* Store window size in the packet. */
940 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
941 memset(&ws, 0, sizeof(ws));
942
943 channel_request_start(id, "pty-req", 0);
944 packet_put_cstring(cp);
945 packet_put_int(ws.ws_col);
946 packet_put_int(ws.ws_row);
947 packet_put_int(ws.ws_xpixel);
948 packet_put_int(ws.ws_ypixel);
949 packet_put_cstring(""); /* XXX: encode terminal modes */
950 packet_send();
951 /* XXX wait for reply */
952 }
Damien Millerbd483e72000-04-30 10:00:53 +1000953 if (options.forward_x11 &&
954 getenv("DISPLAY") != NULL) {
955 char proto[512], data[512];
956 /* Get reasonable local authentication information. */
957 x11_get_proto(proto, sizeof proto, data, sizeof data);
958 /* Request forwarding with authentication spoofing. */
959 debug("Requesting X11 forwarding with authentication spoofing.");
960 x11_request_forwarding_with_spoofing(id, proto, data);
961 /* XXX wait for reply */
962 }
963
Damien Miller0bc1bd82000-11-13 22:57:25 +1100964 check_agent_present();
965 if (options.forward_agent) {
966 debug("Requesting authentication agent forwarding.");
967 channel_request_start(id, "auth-agent-req@openssh.com", 0);
968 packet_send();
969 }
970
Damien Miller1383bd82000-04-06 12:32:37 +1000971 len = buffer_len(&command);
972 if (len > 0) {
973 if (len > 900)
974 len = 900;
975 debug("Sending command: %.*s", len, buffer_ptr(&command));
976 channel_request_start(id, "exec", 0);
977 packet_put_string(buffer_ptr(&command), len);
978 packet_send();
979 } else {
980 channel_request(id, "shell", 0);
981 }
982 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
983done:
984 /* register different callback, etc. XXX */
985 client_set_session_ident(id);
986}
987
988int
989ssh_session2(void)
990{
991 int window, packetmax, id;
Damien Millerad833b32000-08-23 10:46:23 +1000992 int in, out, err;
993
Damien Millercaf6dd62000-08-29 11:33:50 +1100994 if (stdin_null_flag) {
995 in = open("/dev/null", O_RDONLY);
996 } else {
997 in = dup(STDIN_FILENO);
998 }
999 out = dup(STDOUT_FILENO);
1000 err = dup(STDERR_FILENO);
1001
1002 if (in < 0 || out < 0 || err < 0)
1003 fatal("dup() in/out/err failed");
1004
Damien Miller69b69aa2000-10-28 14:19:58 +11001005 /* enable nonblocking unless tty */
1006 if (!isatty(in))
1007 set_nonblock(in);
1008 if (!isatty(out))
1009 set_nonblock(out);
1010 if (!isatty(err))
1011 set_nonblock(err);
1012
Damien Miller0bc1bd82000-11-13 22:57:25 +11001013 /* XXX should be pre-session */
1014 ssh_init_forwarding();
Damien Millercaf6dd62000-08-29 11:33:50 +11001015
Damien Millerad833b32000-08-23 10:46:23 +10001016 /* If requested, let ssh continue in the background. */
1017 if (fork_after_authentication_flag)
1018 if (daemon(1, 1) < 0)
1019 fatal("daemon() failed: %.200s", strerror(errno));
1020
Damien Millere4340be2000-09-16 13:29:08 +11001021 window = CHAN_SES_WINDOW_DEFAULT;
1022 packetmax = CHAN_SES_PACKET_DEFAULT;
1023 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001024 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001025 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001026 }
Damien Miller1383bd82000-04-06 12:32:37 +10001027 id = channel_new(
1028 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001029 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001030 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001031
Damien Miller1383bd82000-04-06 12:32:37 +10001032 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001033 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1034 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001035
Damien Millerad833b32000-08-23 10:46:23 +10001036 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001037}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001038
1039int
1040guess_identity_file_type(const char *filename)
1041{
1042 struct stat st;
1043 Key *public;
1044 int type = KEY_RSA1; /* default */
1045
1046 if (stat(filename, &st) < 0) {
Ben Lindstrom14920292000-11-21 21:24:55 +00001047 /* ignore this key */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001048 return KEY_UNSPEC;
1049 }
1050 public = key_new(type);
1051 if (!load_public_key(filename, public, NULL)) {
1052 /* ok, so we will assume this is 'some' key */
1053 type = KEY_UNSPEC;
1054 }
1055 key_free(public);
1056 return type;
1057}