blob: ab32e3b8d548a967a1cb0cb98f2f996d32bf7c67 [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"
Damien Miller0bc1bd82000-11-13 22:57:25 +110042RCSID("$OpenBSD: ssh.c,v 1.72 2000/11/12 19:50:38 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;
65#else /* HAVE___PROGNAME */
Damien Miller70fb6712000-05-01 20:59:50 +100066static const char *__progname = "ssh";
Damien Miller3f905871999-11-15 17:10:57 +110067#endif /* HAVE___PROGNAME */
68
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;
82
Damien Miller1383bd82000-04-06 12:32:37 +100083/* don't exec a shell */
84int no_shell_flag = 0;
85int no_tty_flag = 0;
86
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * Flag indicating that nothing should be read from stdin. This can be set
89 * on the command line.
90 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091int stdin_null_flag = 0;
92
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Flag indicating that ssh should fork after authentication. This is useful
95 * so that the pasphrase can be entered manually, and then ssh goes to the
96 * background.
97 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098int fork_after_authentication_flag = 0;
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * General data structure for command line options and options configurable
102 * in configuration files. See readconf.h.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104Options options;
105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * Name of the host we are connecting to. This is the name given on the
108 * command line, or the HostName specified for the user-supplied name in a
109 * configuration file.
110 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111char *host;
112
113/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100114struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
117 * Flag to indicate that we have received a window change signal which has
118 * not yet been processed. This will cause a message indicating the new
119 * window size to be sent to the server a little later. This is volatile
120 * because this is updated in a signal handler.
121 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122volatile int received_window_change_signal = 0;
123
124/* Value of argv[0] (set in the main program). */
125char *av0;
126
127/* Flag indicating whether we have a valid host private key loaded. */
128int host_private_key_loaded = 0;
129
130/* Host private key. */
131RSA *host_private_key = NULL;
132
133/* Original real UID. */
134uid_t original_real_uid;
135
Damien Miller1383bd82000-04-06 12:32:37 +1000136/* command to be executed */
137Buffer command;
138
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139/* Prints a help message to the user. This function never returns. */
140
141void
142usage()
143{
Damien Miller95def091999-11-25 00:26:21 +1100144 fprintf(stderr, "Usage: %s [options] host [command]\n", av0);
145 fprintf(stderr, "Options:\n");
146 fprintf(stderr, " -l user Log in using this user name.\n");
147 fprintf(stderr, " -n Redirect input from /dev/null.\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000148 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100149 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100151 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
152#endif /* AFS */
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000153 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100154 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
155 fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n");
156 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000157 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100158 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100159 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100160 fprintf(stderr, " -V Display version number only.\n");
161 fprintf(stderr, " -P Don't allocate a privileged port.\n");
162 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
163 fprintf(stderr, " -f Fork into background after authentication.\n");
164 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Damien Miller95def091999-11-25 00:26:21 +1100166 fprintf(stderr, " -c cipher Select encryption algorithm: "
167 "``3des'', "
168 "``blowfish''\n");
169 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
170 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
171 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
172 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", av0);
173 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
174 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000175 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100177 fprintf(stderr, " -4 Use IPv4 only.\n");
178 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller4af51302000-04-16 11:18:38 +1000179 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100180 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
181 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182}
183
Damien Miller95def091999-11-25 00:26:21 +1100184/*
185 * Connects to the given host using rsh (or prints an error message and exits
186 * if rsh is not available). This function never returns.
187 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188void
Damien Miller95def091999-11-25 00:26:21 +1100189rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller95def091999-11-25 00:26:21 +1100191 char *args[10];
192 int i;
193
194 log("Using rsh. WARNING: Connection will not be encrypted.");
195 /* Build argument list for rsh. */
196 i = 0;
197 args[i++] = _PATH_RSH;
198 /* host may have to come after user on some systems */
199 args[i++] = host;
200 if (user) {
201 args[i++] = "-l";
202 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203 }
Damien Miller95def091999-11-25 00:26:21 +1100204 if (buffer_len(command) > 0) {
205 buffer_append(command, "\0", 1);
206 args[i++] = buffer_ptr(command);
207 }
208 args[i++] = NULL;
209 if (debug_flag) {
210 for (i = 0; args[i]; i++) {
211 if (i != 0)
212 fprintf(stderr, " ");
213 fprintf(stderr, "%s", args[i]);
214 }
215 fprintf(stderr, "\n");
216 }
217 execv(_PATH_RSH, args);
218 perror(_PATH_RSH);
219 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220}
221
Damien Miller0bc1bd82000-11-13 22:57:25 +1100222int ssh_session(void);
223int ssh_session2(void);
224int guess_identity_file_type(const char *filename);
Damien Miller1383bd82000-04-06 12:32:37 +1000225
Damien Miller95def091999-11-25 00:26:21 +1100226/*
227 * Main program for the ssh client.
228 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229int
230main(int ac, char **av)
231{
Damien Miller1383bd82000-04-06 12:32:37 +1000232 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100233 u_short fwd_port, fwd_host_port;
Damien Miller95def091999-11-25 00:26:21 +1100234 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100235 struct stat st;
236 struct passwd *pw, pwcopy;
Damien Miller1383bd82000-04-06 12:32:37 +1000237 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100238 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Damien Millerf9b625c2000-07-09 22:42:32 +1000240 init_rng();
241
Damien Miller5428f641999-11-25 11:54:57 +1100242 /*
243 * Save the original real uid. It will be needed later (uid-swapping
244 * may clobber the real uid).
245 */
Damien Miller95def091999-11-25 00:26:21 +1100246 original_real_uid = getuid();
247 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248
Damien Miller05dd7952000-10-01 00:42:48 +1100249#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100250 /* If we are installed setuid root be careful to not drop core. */
251 if (original_real_uid != original_effective_uid) {
252 struct rlimit rlim;
253 rlim.rlim_cur = rlim.rlim_max = 0;
254 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
255 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100257#endif
Damien Miller5428f641999-11-25 11:54:57 +1100258 /*
259 * Use uid-swapping to give up root privileges for the duration of
260 * option processing. We will re-instantiate the rights when we are
261 * ready to create the privileged port, and will permanently drop
262 * them when the port has been created (actually, when the connection
263 * has been made, as we may need to create the port several times).
264 */
Damien Miller95def091999-11-25 00:26:21 +1100265 temporarily_use_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller5428f641999-11-25 11:54:57 +1100267 /*
268 * Set our umask to something reasonable, as some files are created
269 * with the default umask. This will make them world-readable but
270 * writable only by the owner, which is ok for all files for which we
271 * don't set the modes explicitly.
272 */
Damien Miller95def091999-11-25 00:26:21 +1100273 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Save our own name. */
276 av0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller95def091999-11-25 00:26:21 +1100278 /* Initialize option structure to indicate that no values have been set. */
279 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280
Damien Miller95def091999-11-25 00:26:21 +1100281 /* Parse command-line arguments. */
282 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Damien Miller95def091999-11-25 00:26:21 +1100284 /* If program name is not one of the standard names, use it as host name. */
285 if (strchr(av0, '/'))
286 cp = strrchr(av0, '/') + 1;
287 else
288 cp = av0;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100289#ifdef HAVE_CYGWIN
290 if (strcasecmp(cp, "rsh") && strcasecmp(cp, "ssh") &&
291 strcasecmp(cp, "rlogin") && strcasecmp(cp, "slogin") &&
292 strcasecmp(cp, "remsh") &&
293 strcasecmp(cp, "rsh.exe") && strcasecmp(cp, "ssh.exe") &&
294 strcasecmp(cp, "rlogin.exe") && strcasecmp(cp, "slogin.exe") &&
295 strcasecmp(cp, "remsh.exe"))
296#else
Damien Millerad833b32000-08-23 10:46:23 +1000297 if (strcmp(cp, "rsh") && strcmp(cp, "ssh") && strcmp(cp, "rlogin") &&
298 strcmp(cp, "slogin") && strcmp(cp, "remsh"))
Damien Millerbac2d8a2000-09-05 16:13:06 +1100299#endif
Damien Miller95def091999-11-25 00:26:21 +1100300 host = cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301
Damien Miller95def091999-11-25 00:26:21 +1100302 for (optind = 1; optind < ac; optind++) {
303 if (av[optind][0] != '-') {
304 if (host)
305 break;
306 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000307 if(cp == av[optind])
308 usage();
Damien Miller95def091999-11-25 00:26:21 +1100309 options.user = av[optind];
310 *cp = '\0';
311 host = ++cp;
312 } else
313 host = av[optind];
314 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315 }
Damien Miller95def091999-11-25 00:26:21 +1100316 opt = av[optind][1];
317 if (!opt)
318 usage();
319 if (strchr("eilcpLRo", opt)) { /* options with arguments */
320 optarg = av[optind] + 2;
321 if (strcmp(optarg, "") == 0) {
322 if (optind >= ac - 1)
323 usage();
324 optarg = av[++optind];
325 }
326 } else {
327 if (av[optind][2])
328 usage();
329 optarg = NULL;
330 }
331 switch (opt) {
Damien Miller4af51302000-04-16 11:18:38 +1000332 case '2':
333 options.protocol = SSH_PROTO_2;
334 break;
Damien Miller34132e52000-01-14 15:45:46 +1100335 case '4':
336 IPv4or6 = AF_INET;
337 break;
Damien Miller34132e52000-01-14 15:45:46 +1100338 case '6':
339 IPv4or6 = AF_INET6;
340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 'n':
342 stdin_null_flag = 1;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'f':
345 fork_after_authentication_flag = 1;
346 stdin_null_flag = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'x':
349 options.forward_x11 = 0;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'X':
352 options.forward_x11 = 1;
353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'g':
355 options.gateway_ports = 1;
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357 case 'P':
358 options.use_privileged_port = 0;
359 break;
Damien Miller95def091999-11-25 00:26:21 +1100360 case 'a':
361 options.forward_agent = 0;
362 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000363 case 'A':
364 options.forward_agent = 1;
365 break;
Damien Miller95def091999-11-25 00:26:21 +1100366#ifdef AFS
367 case 'k':
368 options.kerberos_tgt_passing = 0;
369 options.afs_token_passing = 0;
370 break;
371#endif
372 case 'i':
373 if (stat(optarg, &st) < 0) {
374 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100375 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100376 break;
377 }
378 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
379 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100380 SSH_MAX_IDENTITY_FILES);
381 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100382 break;
Damien Miller95def091999-11-25 00:26:21 +1100383 case 't':
384 tty_flag = 1;
385 break;
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100387 if (0 == debug_flag) {
388 debug_flag = 1;
389 options.log_level = SYSLOG_LEVEL_DEBUG1;
390 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
391 options.log_level++;
392 break;
393 } else {
394 fatal("Too high debugging level.\n");
395 }
396 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100397 case 'V':
Damien Miller78928792000-04-12 20:17:38 +1000398 fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n",
399 SSH_VERSION,
400 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
401 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
Damien Miller1383bd82000-04-06 12:32:37 +1000402 fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100403 if (opt == 'V')
404 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100405 break;
Damien Miller95def091999-11-25 00:26:21 +1100406 case 'q':
407 options.log_level = SYSLOG_LEVEL_QUIET;
408 break;
Damien Miller95def091999-11-25 00:26:21 +1100409 case 'e':
410 if (optarg[0] == '^' && optarg[2] == 0 &&
411 (unsigned char) optarg[1] >= 64 && (unsigned char) optarg[1] < 128)
412 options.escape_char = (unsigned char) optarg[1] & 31;
413 else if (strlen(optarg) == 1)
414 options.escape_char = (unsigned char) optarg[0];
415 else if (strcmp(optarg, "none") == 0)
416 options.escape_char = -2;
417 else {
418 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
419 exit(1);
420 }
421 break;
Damien Miller95def091999-11-25 00:26:21 +1100422 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000423 if (ciphers_valid(optarg)) {
424 /* SSH2 only */
425 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000426 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000427 } else {
428 /* SSH1 only */
Damien Miller874d77b2000-10-14 16:23:11 +1100429 Cipher *c = cipher_by_name(optarg);
430 if (c == NULL || c->number < 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000431 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
432 exit(1);
433 }
Damien Miller874d77b2000-10-14 16:23:11 +1100434 options.cipher = c->number;
Damien Miller95def091999-11-25 00:26:21 +1100435 }
436 break;
Damien Miller95def091999-11-25 00:26:21 +1100437 case 'p':
438 options.port = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100439 break;
Damien Miller95def091999-11-25 00:26:21 +1100440 case 'l':
441 options.user = optarg;
442 break;
Damien Miller95def091999-11-25 00:26:21 +1100443 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100444 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
445 &fwd_host_port) != 3 &&
446 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
447 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100448 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
449 usage();
450 /* NOTREACHED */
451 }
452 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
453 break;
Damien Miller95def091999-11-25 00:26:21 +1100454 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100455 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
456 &fwd_host_port) != 3 &&
457 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
458 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100459 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
460 usage();
461 /* NOTREACHED */
462 }
463 add_local_forward(&options, fwd_port, buf, fwd_host_port);
464 break;
Damien Miller95def091999-11-25 00:26:21 +1100465 case 'C':
466 options.compression = 1;
467 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000468 case 'N':
469 no_shell_flag = 1;
470 no_tty_flag = 1;
471 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000472 case 'T':
473 no_tty_flag = 1;
474 break;
Damien Miller95def091999-11-25 00:26:21 +1100475 case 'o':
476 dummy = 1;
477 if (process_config_line(&options, host ? host : "", optarg,
478 "command-line", 0, &dummy) != 0)
479 exit(1);
480 break;
Damien Miller95def091999-11-25 00:26:21 +1100481 default:
482 usage();
483 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Damien Miller95def091999-11-25 00:26:21 +1100486 /* Check that we got a host name. */
487 if (!host)
488 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Millercb5e44a2000-09-29 12:12:36 +1100490 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100491 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100492
Damien Miller95def091999-11-25 00:26:21 +1100493 /* Initialize the command to execute on remote host. */
494 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495
Damien Miller5428f641999-11-25 11:54:57 +1100496 /*
497 * Save the command to execute on the remote host in a buffer. There
498 * is no limit on the length of the command, except by the maximum
499 * packet size. Also sets the tty flag if there is no command.
500 */
Damien Miller95def091999-11-25 00:26:21 +1100501 if (optind == ac) {
502 /* No command specified - execute shell on a tty. */
503 tty_flag = 1;
504 } else {
505 /* A command has been specified. Store it into the
506 buffer. */
507 for (i = optind; i < ac; i++) {
508 if (i > optind)
509 buffer_append(&command, " ", 1);
510 buffer_append(&command, av[i], strlen(av[i]));
511 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513
Damien Miller95def091999-11-25 00:26:21 +1100514 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100515 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100516 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Miller95def091999-11-25 00:26:21 +1100518 /* Allocate a tty by default if no command specified. */
519 if (buffer_len(&command) == 0)
520 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller95def091999-11-25 00:26:21 +1100522 /* Do not allocate a tty if stdin is not a tty. */
523 if (!isatty(fileno(stdin))) {
524 if (tty_flag)
525 fprintf(stderr, "Pseudo-terminal will not be allocated because stdin is not a terminal.\n");
526 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527 }
Damien Miller1383bd82000-04-06 12:32:37 +1000528 /* force */
529 if (no_tty_flag)
530 tty_flag = 0;
531
Damien Miller95def091999-11-25 00:26:21 +1100532 /* Get user data. */
533 pw = getpwuid(original_real_uid);
534 if (!pw) {
535 fprintf(stderr, "You don't exist, go away!\n");
536 exit(1);
537 }
538 /* Take a copy of the returned structure. */
539 memset(&pwcopy, 0, sizeof(pwcopy));
540 pwcopy.pw_name = xstrdup(pw->pw_name);
541 pwcopy.pw_passwd = xstrdup(pw->pw_passwd);
542 pwcopy.pw_uid = pw->pw_uid;
543 pwcopy.pw_gid = pw->pw_gid;
Damien Millerad833b32000-08-23 10:46:23 +1000544#ifdef HAVE_PW_CLASS_IN_PASSWD
545 pwcopy.pw_class = xstrdup(pw->pw_class);
546#endif
Damien Miller95def091999-11-25 00:26:21 +1100547 pwcopy.pw_dir = xstrdup(pw->pw_dir);
548 pwcopy.pw_shell = xstrdup(pw->pw_shell);
549 pw = &pwcopy;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Miller95def091999-11-25 00:26:21 +1100551 /* Initialize "log" output. Since we are the client all output
552 actually goes to the terminal. */
553 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Read per-user configuration file. */
556 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_CONFFILE);
557 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Miller95def091999-11-25 00:26:21 +1100559 /* Read systemwide configuration file. */
560 read_config_file(HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Damien Miller95def091999-11-25 00:26:21 +1100562 /* Fill configuration defaults. */
563 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller95def091999-11-25 00:26:21 +1100565 /* reinit */
566 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller95def091999-11-25 00:26:21 +1100568 if (options.user == NULL)
569 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller95def091999-11-25 00:26:21 +1100571 if (options.hostname != NULL)
572 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Damien Miller95def091999-11-25 00:26:21 +1100574 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100575#ifdef HAVE_CYGWIN
576 /* Ignore uid if running under Windows */
577 if (!options.use_privileged_port) {
578#else
Damien Miller95def091999-11-25 00:26:21 +1100579 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100580 debug("Rhosts Authentication methods disabled, "
581 "originating port will not be trusted.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100582#endif
Damien Miller95def091999-11-25 00:26:21 +1100583 options.rhosts_authentication = 0;
584 options.rhosts_rsa_authentication = 0;
585 }
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
Damien Miller5428f641999-11-25 11:54:57 +1100607 /*
608 * Open a connection to the remote host. This needs root privileges
609 * if rhosts_{rsa_}authentication is enabled.
610 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Damien Miller95def091999-11-25 00:26:21 +1100612 ok = ssh_connect(host, &hostaddr, options.port,
613 options.connection_attempts,
614 !options.rhosts_authentication &&
615 !options.rhosts_rsa_authentication,
616 original_real_uid,
617 options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Damien Miller5428f641999-11-25 11:54:57 +1100619 /*
620 * If we successfully made the connection, load the host private key
621 * in case we will need it later for combined rsa-rhosts
622 * authentication. This must be done before releasing extra
623 * privileges, because the file is only readable by root.
624 */
Damien Millereba71ba2000-04-29 23:57:08 +1000625 if (ok && (options.protocol & SSH_PROTO_1)) {
626 Key k;
Damien Miller95def091999-11-25 00:26:21 +1100627 host_private_key = RSA_new();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100628 k.type = KEY_RSA1;
Damien Millereba71ba2000-04-29 23:57:08 +1000629 k.rsa = host_private_key;
630 if (load_private_key(HOST_KEY_FILE, "", &k, NULL))
Damien Miller95def091999-11-25 00:26:21 +1100631 host_private_key_loaded = 1;
632 }
Damien Miller5428f641999-11-25 11:54:57 +1100633 /*
634 * Get rid of any extra privileges that we may have. We will no
635 * longer need them. Also, extra privileges could make it very hard
636 * to read identity files and other non-world-readable files from the
637 * user's home directory if it happens to be on a NFS volume where
638 * root is mapped to nobody.
639 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Damien Miller5428f641999-11-25 11:54:57 +1100641 /*
642 * Note that some legacy systems need to postpone the following call
643 * to permanently_set_uid() until the private hostkey is destroyed
644 * with RSA_free(). Otherwise the calling user could ptrace() the
645 * process, read the private hostkey and impersonate the host.
646 * OpenBSD does not allow ptracing of setuid processes.
647 */
Damien Miller95def091999-11-25 00:26:21 +1100648 permanently_set_uid(original_real_uid);
649
Damien Miller5428f641999-11-25 11:54:57 +1100650 /*
651 * Now that we are back to our own permissions, create ~/.ssh
652 * directory if it doesn\'t already exist.
653 */
Damien Miller95def091999-11-25 00:26:21 +1100654 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR);
655 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000656 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100657 error("Could not create directory '%.200s'.", buf);
658
659 /* Check if the connection failed, and try "rsh" if appropriate. */
660 if (!ok) {
661 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100662 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100663 host, options.port,
664 options.fallback_to_rsh ? "; reverting to insecure method" : "");
665 else
666 log("Secure connection to %.100s refused%.100s.", host,
667 options.fallback_to_rsh ? "; reverting to insecure method" : "");
668
669 if (options.fallback_to_rsh) {
670 rsh_connect(host, options.user, &command);
671 fatal("rsh_connect returned");
672 }
673 exit(1);
674 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100675 /* Expand ~ in options.identity_files, known host file names. */
Damien Millereba71ba2000-04-29 23:57:08 +1000676 /* XXX mem-leaks */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100677 for (i = 0; i < options.num_identity_files; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100678 options.identity_files[i] =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100679 tilde_expand_filename(options.identity_files[i], original_real_uid);
680 options.identity_files_type[i] = guess_identity_file_type(options.identity_files[i]);
681 debug("identity file %s type %d", options.identity_files[i],
682 options.identity_files_type[i]);
683 }
684 options.system_hostfile =
685 tilde_expand_filename(options.system_hostfile, original_real_uid);
686 options.user_hostfile =
687 tilde_expand_filename(options.user_hostfile, original_real_uid);
688 options.system_hostfile2 =
689 tilde_expand_filename(options.system_hostfile2, original_real_uid);
690 options.user_hostfile2 =
691 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100692
693 /* Log into the remote system. This never returns if the login fails. */
694 ssh_login(host_private_key_loaded, host_private_key,
Damien Miller34132e52000-01-14 15:45:46 +1100695 host, (struct sockaddr *)&hostaddr, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100696
697 /* We no longer need the host private key. Clear it now. */
698 if (host_private_key_loaded)
699 RSA_free(host_private_key); /* Destroys contents safely */
700
Damien Miller1383bd82000-04-06 12:32:37 +1000701 exit_status = compat20 ? ssh_session2() : ssh_session();
702 packet_close();
703 return exit_status;
704}
705
Damien Millerbd483e72000-04-30 10:00:53 +1000706void
707x11_get_proto(char *proto, int proto_len, char *data, int data_len)
708{
709 char line[512];
710 FILE *f;
711 int got_data = 0, i;
712
Damien Millerd3a18572000-06-07 19:55:44 +1000713 if (options.xauth_location) {
714 /* Try to get Xauthority information for the display. */
715 snprintf(line, sizeof line, "%.100s list %.200s 2>/dev/null",
716 options.xauth_location, getenv("DISPLAY"));
717 f = popen(line, "r");
718 if (f && fgets(line, sizeof(line), f) &&
719 sscanf(line, "%*s %s %s", proto, data) == 2)
720 got_data = 1;
721 if (f)
722 pclose(f);
723 }
Damien Millerbd483e72000-04-30 10:00:53 +1000724 /*
725 * If we didn't get authentication data, just make up some
726 * data. The forwarding code will check the validity of the
727 * response anyway, and substitute this data. The X11
728 * server, however, will ignore this fake data and use
729 * whatever authentication mechanisms it was using otherwise
730 * for the local connection.
731 */
732 if (!got_data) {
733 u_int32_t rand = 0;
734
735 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
736 for (i = 0; i < 16; i++) {
737 if (i % 4 == 0)
738 rand = arc4random();
739 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
740 rand >>= 8;
741 }
742 }
743}
744
Damien Miller0bc1bd82000-11-13 22:57:25 +1100745void
746ssh_init_forwarding(void)
747{
748 int i;
749 /* Initiate local TCP/IP port forwardings. */
750 for (i = 0; i < options.num_local_forwards; i++) {
751 debug("Connections to local port %d forwarded to remote address %.200s:%d",
752 options.local_forwards[i].port,
753 options.local_forwards[i].host,
754 options.local_forwards[i].host_port);
755 channel_request_local_forwarding(
756 options.local_forwards[i].port,
757 options.local_forwards[i].host,
758 options.local_forwards[i].host_port,
759 options.gateway_ports);
760 }
761
762 /* Initiate remote TCP/IP port forwardings. */
763 for (i = 0; i < options.num_remote_forwards; i++) {
764 debug("Connections to remote port %d forwarded to local address %.200s:%d",
765 options.remote_forwards[i].port,
766 options.remote_forwards[i].host,
767 options.remote_forwards[i].host_port);
768 channel_request_remote_forwarding(
769 options.remote_forwards[i].port,
770 options.remote_forwards[i].host,
771 options.remote_forwards[i].host_port);
772 }
773}
774
775void
776check_agent_present(void)
777{
778 if (options.forward_agent) {
779 /* Clear agent forwarding if we don\'t have an agent. */
780 int authfd = ssh_get_authentication_socket();
781 if (authfd < 0)
782 options.forward_agent = 0;
783 else
784 ssh_close_authentication_socket(authfd);
785 }
786}
787
Damien Miller1383bd82000-04-06 12:32:37 +1000788int
789ssh_session(void)
790{
791 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000792 int plen;
793 int interactive = 0;
794 int have_tty = 0;
795 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000796 char *cp;
797
Damien Miller95def091999-11-25 00:26:21 +1100798 /* Enable compression if requested. */
799 if (options.compression) {
800 debug("Requesting compression at level %d.", options.compression_level);
801
802 if (options.compression_level < 1 || options.compression_level > 9)
803 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
804
805 /* Send the request. */
806 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
807 packet_put_int(options.compression_level);
808 packet_send();
809 packet_write_wait();
810 type = packet_read(&plen);
811 if (type == SSH_SMSG_SUCCESS)
812 packet_start_compression(options.compression_level);
813 else if (type == SSH_SMSG_FAILURE)
814 log("Warning: Remote host refused compression.");
815 else
816 packet_disconnect("Protocol error waiting for compression response.");
817 }
818 /* Allocate a pseudo tty if appropriate. */
819 if (tty_flag) {
820 debug("Requesting pty.");
821
822 /* Start the packet. */
823 packet_start(SSH_CMSG_REQUEST_PTY);
824
825 /* Store TERM in the packet. There is no limit on the
826 length of the string. */
827 cp = getenv("TERM");
828 if (!cp)
829 cp = "";
830 packet_put_string(cp, strlen(cp));
831
832 /* Store window size in the packet. */
833 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
834 memset(&ws, 0, sizeof(ws));
835 packet_put_int(ws.ws_row);
836 packet_put_int(ws.ws_col);
837 packet_put_int(ws.ws_xpixel);
838 packet_put_int(ws.ws_ypixel);
839
840 /* Store tty modes in the packet. */
841 tty_make_modes(fileno(stdin));
842
843 /* Send the packet, and wait for it to leave. */
844 packet_send();
845 packet_write_wait();
846
847 /* Read response from the server. */
848 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000849 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100850 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000851 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000852 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100853 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
854 else
855 packet_disconnect("Protocol error waiting for pty request response.");
856 }
857 /* Request X11 forwarding if enabled and DISPLAY is set. */
858 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000859 char proto[512], data[512];
860 /* Get reasonable local authentication information. */
861 x11_get_proto(proto, sizeof proto, data, sizeof data);
862 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100863 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000864 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100865
866 /* Read response from the server. */
867 type = packet_read(&plen);
868 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100869 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000870 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100871 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000872 } else {
Damien Miller95def091999-11-25 00:26:21 +1100873 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000874 }
Damien Miller95def091999-11-25 00:26:21 +1100875 }
876 /* Tell the packet module whether this is an interactive session. */
877 packet_set_interactive(interactive, options.keepalives);
878
Damien Miller95def091999-11-25 00:26:21 +1100879
880 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 check_agent_present();
882
Damien Miller95def091999-11-25 00:26:21 +1100883 if (options.forward_agent) {
884 debug("Requesting authentication agent forwarding.");
885 auth_request_forwarding();
886
887 /* Read response from the server. */
888 type = packet_read(&plen);
889 packet_integrity_check(plen, 0, type);
890 if (type != SSH_SMSG_SUCCESS)
891 log("Warning: Remote host denied authentication agent forwarding.");
892 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000893
Damien Miller0bc1bd82000-11-13 22:57:25 +1100894 /* Initiate port forwardings. */
895 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000896
Damien Miller5428f641999-11-25 11:54:57 +1100897 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000898 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100899 if (daemon(1, 1) < 0)
900 fatal("daemon() failed: %.200s", strerror(errno));
901
902 /*
903 * If a command was specified on the command line, execute the
904 * command now. Otherwise request the server to start a shell.
905 */
Damien Miller95def091999-11-25 00:26:21 +1100906 if (buffer_len(&command) > 0) {
907 int len = buffer_len(&command);
908 if (len > 900)
909 len = 900;
910 debug("Sending command: %.*s", len, buffer_ptr(&command));
911 packet_start(SSH_CMSG_EXEC_CMD);
912 packet_put_string(buffer_ptr(&command), buffer_len(&command));
913 packet_send();
914 packet_write_wait();
915 } else {
916 debug("Requesting shell.");
917 packet_start(SSH_CMSG_EXEC_SHELL);
918 packet_send();
919 packet_write_wait();
920 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921
Damien Miller95def091999-11-25 00:26:21 +1100922 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000923 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000924}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925
Damien Miller1383bd82000-04-06 12:32:37 +1000926extern void client_set_session_ident(int id);
927
928void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100929ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000930{
931 int len;
932 debug("client_init id %d arg %d", id, (int)arg);
933
934 if (no_shell_flag)
935 goto done;
936
937 if (tty_flag) {
938 struct winsize ws;
939 char *cp;
940 cp = getenv("TERM");
941 if (!cp)
942 cp = "";
943 /* Store window size in the packet. */
944 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
945 memset(&ws, 0, sizeof(ws));
946
947 channel_request_start(id, "pty-req", 0);
948 packet_put_cstring(cp);
949 packet_put_int(ws.ws_col);
950 packet_put_int(ws.ws_row);
951 packet_put_int(ws.ws_xpixel);
952 packet_put_int(ws.ws_ypixel);
953 packet_put_cstring(""); /* XXX: encode terminal modes */
954 packet_send();
955 /* XXX wait for reply */
956 }
Damien Millerbd483e72000-04-30 10:00:53 +1000957 if (options.forward_x11 &&
958 getenv("DISPLAY") != NULL) {
959 char proto[512], data[512];
960 /* Get reasonable local authentication information. */
961 x11_get_proto(proto, sizeof proto, data, sizeof data);
962 /* Request forwarding with authentication spoofing. */
963 debug("Requesting X11 forwarding with authentication spoofing.");
964 x11_request_forwarding_with_spoofing(id, proto, data);
965 /* XXX wait for reply */
966 }
967
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968 check_agent_present();
969 if (options.forward_agent) {
970 debug("Requesting authentication agent forwarding.");
971 channel_request_start(id, "auth-agent-req@openssh.com", 0);
972 packet_send();
973 }
974
Damien Miller1383bd82000-04-06 12:32:37 +1000975 len = buffer_len(&command);
976 if (len > 0) {
977 if (len > 900)
978 len = 900;
979 debug("Sending command: %.*s", len, buffer_ptr(&command));
980 channel_request_start(id, "exec", 0);
981 packet_put_string(buffer_ptr(&command), len);
982 packet_send();
983 } else {
984 channel_request(id, "shell", 0);
985 }
986 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
987done:
988 /* register different callback, etc. XXX */
989 client_set_session_ident(id);
990}
991
992int
993ssh_session2(void)
994{
995 int window, packetmax, id;
Damien Millerad833b32000-08-23 10:46:23 +1000996 int in, out, err;
997
Damien Millercaf6dd62000-08-29 11:33:50 +1100998 if (stdin_null_flag) {
999 in = open("/dev/null", O_RDONLY);
1000 } else {
1001 in = dup(STDIN_FILENO);
1002 }
1003 out = dup(STDOUT_FILENO);
1004 err = dup(STDERR_FILENO);
1005
1006 if (in < 0 || out < 0 || err < 0)
1007 fatal("dup() in/out/err failed");
1008
Damien Miller69b69aa2000-10-28 14:19:58 +11001009 /* enable nonblocking unless tty */
1010 if (!isatty(in))
1011 set_nonblock(in);
1012 if (!isatty(out))
1013 set_nonblock(out);
1014 if (!isatty(err))
1015 set_nonblock(err);
1016
Damien Miller0bc1bd82000-11-13 22:57:25 +11001017 /* XXX should be pre-session */
1018 ssh_init_forwarding();
Damien Millercaf6dd62000-08-29 11:33:50 +11001019
Damien Millerad833b32000-08-23 10:46:23 +10001020 /* If requested, let ssh continue in the background. */
1021 if (fork_after_authentication_flag)
1022 if (daemon(1, 1) < 0)
1023 fatal("daemon() failed: %.200s", strerror(errno));
1024
Damien Millere4340be2000-09-16 13:29:08 +11001025 window = CHAN_SES_WINDOW_DEFAULT;
1026 packetmax = CHAN_SES_PACKET_DEFAULT;
1027 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001028 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001029 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001030 }
Damien Miller1383bd82000-04-06 12:32:37 +10001031 id = channel_new(
1032 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001033 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001034 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001035
Damien Miller1383bd82000-04-06 12:32:37 +10001036 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001037 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1038 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001039
Damien Millerad833b32000-08-23 10:46:23 +10001040 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001041}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001042
1043int
1044guess_identity_file_type(const char *filename)
1045{
1046 struct stat st;
1047 Key *public;
1048 int type = KEY_RSA1; /* default */
1049
1050 if (stat(filename, &st) < 0) {
1051 perror(filename);
1052 return KEY_UNSPEC;
1053 }
1054 public = key_new(type);
1055 if (!load_public_key(filename, public, NULL)) {
1056 /* ok, so we will assume this is 'some' key */
1057 type = KEY_UNSPEC;
1058 }
1059 key_free(public);
1060 return type;
1061}