blob: afaf20bec9dfcbaef53df523bf94b0a15b7aaa0f [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.
Ben Lindstromeb041dc2002-03-27 17:20:38 +000016 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 *
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller2797f7f2002-04-23 21:09:44 +100043RCSID("$OpenBSD: ssh.c,v 1.170 2002/04/22 21:04:52 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100044
45#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100050#include "ssh2.h"
51#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "cipher.h"
53#include "xmalloc.h"
54#include "packet.h"
55#include "buffer.h"
56#include "uidswap.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000057#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100058#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100059#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100060#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000062#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "log.h"
64#include "readconf.h"
65#include "sshconnect.h"
66#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000067#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000069#include "kex.h"
70#include "mac.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000071#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Ben Lindstromc5b68002001-07-04 04:52:03 +000073#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000074#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000075#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000076
Damien Miller3f905871999-11-15 17:10:57 +110077#ifdef HAVE___PROGNAME
78extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000079#else
80char *__progname;
81#endif
Damien Miller3f905871999-11-15 17:10:57 +110082
Damien Miller34132e52000-01-14 15:45:46 +110083/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
84 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110085#ifdef IPV4_DEFAULT
86int IPv4or6 = AF_INET;
87#else
Damien Miller34132e52000-01-14 15:45:46 +110088int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110089#endif
Damien Miller34132e52000-01-14 15:45:46 +110090
Damien Miller95def091999-11-25 00:26:21 +110091/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092int debug_flag = 0;
93
Damien Miller78928792000-04-12 20:17:38 +100094/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000096int no_tty_flag = 0;
97int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller1383bd82000-04-06 12:32:37 +100099/* don't exec a shell */
100int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that nothing should be read from stdin. This can be set
104 * on the command line.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106int stdin_null_flag = 0;
107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Flag indicating that ssh should fork after authentication. This is useful
110 * so that the pasphrase can be entered manually, and then ssh goes to the
111 * background.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int fork_after_authentication_flag = 0;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * General data structure for command line options and options configurable
117 * in configuration files. See readconf.h.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119Options options;
120
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000121/* optional user configfile */
122char *config = NULL;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Name of the host we are connecting to. This is the name given on the
126 * command line, or the HostName specified for the user-supplied name in a
127 * configuration file.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129char *host;
130
131/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100132struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000134/* Private host keys. */
135struct {
136 Key **keys;
137 int nkeys;
138} sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
140/* Original real UID. */
141uid_t original_real_uid;
142
Damien Miller1383bd82000-04-06 12:32:37 +1000143/* command to be executed */
144Buffer command;
145
Damien Miller832562e2001-01-30 09:30:01 +1100146/* Should we execute a command or invoke a subsystem? */
147int subsystem_flag = 0;
148
Damien Miller2797f7f2002-04-23 21:09:44 +1000149/* # of replies received for global requests */
150static int client_global_request_id = 0;
151
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152/* Prints a help message to the user. This function never returns. */
153
Ben Lindstrombba81212001-06-25 05:01:22 +0000154static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000155usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000157 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100158 fprintf(stderr, "Options:\n");
159 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000160 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000161 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
162 _PATH_SSH_USER_CONFFILE);
Damien Millerb1715dc2000-05-30 13:44:51 +1000163 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000164 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100166 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
167#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000168 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000169 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000170 fprintf(stderr, " -i file Identity for public key authentication "
171 "(default: ~/.ssh/identity)\n");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000172#ifdef SMARTCARD
173 fprintf(stderr, " -I reader Set smartcard reader.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000174#endif
Damien Miller95def091999-11-25 00:26:21 +1100175 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000176 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100178 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100179 fprintf(stderr, " -V Display version number only.\n");
180 fprintf(stderr, " -P Don't allocate a privileged port.\n");
181 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
182 fprintf(stderr, " -f Fork into background after authentication.\n");
183 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000185 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000186 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100187 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
188 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
189 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000190 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100191 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000192 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100193 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000194 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100195 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000196 fprintf(stderr, " -1 Force protocol version 1.\n");
197 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100198 fprintf(stderr, " -4 Use IPv4 only.\n");
199 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100200 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100201 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000202 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100203 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204}
205
Damien Miller95def091999-11-25 00:26:21 +1100206/*
207 * Connects to the given host using rsh (or prints an error message and exits
208 * if rsh is not available). This function never returns.
209 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static void
Damien Miller95def091999-11-25 00:26:21 +1100211rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Damien Miller95def091999-11-25 00:26:21 +1100213 char *args[10];
214 int i;
215
216 log("Using rsh. WARNING: Connection will not be encrypted.");
217 /* Build argument list for rsh. */
218 i = 0;
219 args[i++] = _PATH_RSH;
220 /* host may have to come after user on some systems */
221 args[i++] = host;
222 if (user) {
223 args[i++] = "-l";
224 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225 }
Damien Miller95def091999-11-25 00:26:21 +1100226 if (buffer_len(command) > 0) {
227 buffer_append(command, "\0", 1);
228 args[i++] = buffer_ptr(command);
229 }
230 args[i++] = NULL;
231 if (debug_flag) {
232 for (i = 0; args[i]; i++) {
233 if (i != 0)
234 fprintf(stderr, " ");
235 fprintf(stderr, "%s", args[i]);
236 }
237 fprintf(stderr, "\n");
238 }
239 execv(_PATH_RSH, args);
240 perror(_PATH_RSH);
241 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242}
243
Ben Lindstrombba81212001-06-25 05:01:22 +0000244static int ssh_session(void);
245static int ssh_session2(void);
246static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000247
Damien Miller95def091999-11-25 00:26:21 +1100248/*
249 * Main program for the ssh client.
250 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251int
252main(int ac, char **av)
253{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000254 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100255 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000256 char sfwd_port[6], sfwd_host_port[6];
Damien Millerf4614452001-07-14 12:18:10 +1000257 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100258 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000259 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000260 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100261 uid_t original_effective_uid;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000262 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000263 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000265 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000266 init_rng();
267
Damien Miller5428f641999-11-25 11:54:57 +1100268 /*
269 * Save the original real uid. It will be needed later (uid-swapping
270 * may clobber the real uid).
271 */
Damien Miller95def091999-11-25 00:26:21 +1100272 original_real_uid = getuid();
273 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller05dd7952000-10-01 00:42:48 +1100275#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100276 /* If we are installed setuid root be careful to not drop core. */
277 if (original_real_uid != original_effective_uid) {
278 struct rlimit rlim;
279 rlim.rlim_cur = rlim.rlim_max = 0;
280 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
281 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100283#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000284 /* Get user data. */
285 pw = getpwuid(original_real_uid);
286 if (!pw) {
287 log("You don't exist, go away!");
288 exit(1);
289 }
290 /* Take a copy of the returned structure. */
291 pw = pwcopy(pw);
292
Damien Miller5428f641999-11-25 11:54:57 +1100293 /*
294 * Use uid-swapping to give up root privileges for the duration of
295 * option processing. We will re-instantiate the rights when we are
296 * ready to create the privileged port, and will permanently drop
297 * them when the port has been created (actually, when the connection
298 * has been made, as we may need to create the port several times).
299 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000300 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301
Damien Miller5428f641999-11-25 11:54:57 +1100302 /*
303 * Set our umask to something reasonable, as some files are created
304 * with the default umask. This will make them world-readable but
305 * writable only by the owner, which is ok for all files for which we
306 * don't set the modes explicitly.
307 */
Damien Miller95def091999-11-25 00:26:21 +1100308 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller95def091999-11-25 00:26:21 +1100310 /* Initialize option structure to indicate that no values have been set. */
311 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312
Damien Miller95def091999-11-25 00:26:21 +1100313 /* Parse command-line arguments. */
314 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Millerf4614452001-07-14 12:18:10 +1000316again:
317 while ((opt = getopt(ac, av,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000318 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100319 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000320 case '1':
321 options.protocol = SSH_PROTO_1;
322 break;
Damien Miller4af51302000-04-16 11:18:38 +1000323 case '2':
324 options.protocol = SSH_PROTO_2;
325 break;
Damien Miller34132e52000-01-14 15:45:46 +1100326 case '4':
327 IPv4or6 = AF_INET;
328 break;
Damien Miller34132e52000-01-14 15:45:46 +1100329 case '6':
330 IPv4or6 = AF_INET6;
331 break;
Damien Miller95def091999-11-25 00:26:21 +1100332 case 'n':
333 stdin_null_flag = 1;
334 break;
Damien Miller95def091999-11-25 00:26:21 +1100335 case 'f':
336 fork_after_authentication_flag = 1;
337 stdin_null_flag = 1;
338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'x':
340 options.forward_x11 = 0;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'X':
343 options.forward_x11 = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'g':
346 options.gateway_ports = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'P':
349 options.use_privileged_port = 0;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'a':
352 options.forward_agent = 0;
353 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000354 case 'A':
355 options.forward_agent = 1;
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357#ifdef AFS
358 case 'k':
359 options.kerberos_tgt_passing = 0;
360 options.afs_token_passing = 0;
361 break;
362#endif
363 case 'i':
364 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000365 fprintf(stderr, "Warning: Identity file %s "
366 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100367 break;
368 }
Damien Millerf4614452001-07-14 12:18:10 +1000369 if (options.num_identity_files >=
370 SSH_MAX_IDENTITY_FILES)
371 fatal("Too many identity files specified "
372 "(max %d)", SSH_MAX_IDENTITY_FILES);
373 options.identity_files[options.num_identity_files++] =
374 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100375 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000376 case 'I':
377#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000378 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000379#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000380 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000381#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000382 break;
Damien Miller95def091999-11-25 00:26:21 +1100383 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000384 if (tty_flag)
385 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100386 tty_flag = 1;
387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100389 if (0 == debug_flag) {
390 debug_flag = 1;
391 options.log_level = SYSLOG_LEVEL_DEBUG1;
392 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
393 options.log_level++;
394 break;
Damien Millerf4614452001-07-14 12:18:10 +1000395 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000396 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100397 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100398 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100399 fprintf(stderr,
400 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000401 SSH_VERSION,
402 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100403 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
404 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100405 if (opt == 'V')
406 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100407 break;
Damien Miller95def091999-11-25 00:26:21 +1100408 case 'q':
409 options.log_level = SYSLOG_LEVEL_QUIET;
410 break;
Damien Miller95def091999-11-25 00:26:21 +1100411 case 'e':
412 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000413 (u_char) optarg[1] >= 64 &&
414 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000415 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100416 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000417 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100418 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000419 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100420 else {
Damien Millerf4614452001-07-14 12:18:10 +1000421 fprintf(stderr, "Bad escape character '%s'.\n",
422 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100423 exit(1);
424 }
425 break;
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000427 if (ciphers_valid(optarg)) {
428 /* SSH2 only */
429 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000430 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000431 } else {
432 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100433 options.cipher = cipher_number(optarg);
434 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000435 fprintf(stderr,
436 "Unknown cipher type '%s'\n",
437 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000438 exit(1);
439 }
Damien Millerf4614452001-07-14 12:18:10 +1000440 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100441 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000442 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100443 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000444 else
Damien Millere39cacc2000-11-29 12:18:44 +1100445 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100446 }
447 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000448 case 'm':
449 if (mac_valid(optarg))
450 options.macs = xstrdup(optarg);
451 else {
Damien Millerf4614452001-07-14 12:18:10 +1000452 fprintf(stderr, "Unknown mac type '%s'\n",
453 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000454 exit(1);
455 }
456 break;
Damien Miller95def091999-11-25 00:26:21 +1100457 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000458 options.port = a2port(optarg);
459 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000460 fprintf(stderr, "Bad port '%s'\n", optarg);
461 exit(1);
462 }
Damien Miller95def091999-11-25 00:26:21 +1100463 break;
Damien Miller95def091999-11-25 00:26:21 +1100464 case 'l':
465 options.user = optarg;
466 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000467
Damien Miller95def091999-11-25 00:26:21 +1100468 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000469 case 'R':
470 if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
471 sfwd_port, buf, sfwd_host_port) != 3 &&
472 sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
473 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000474 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000475 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000476 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100477 usage();
478 /* NOTREACHED */
479 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000480 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000481 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000482 fprintf(stderr,
483 "Bad forwarding port(s) '%s'\n", optarg);
484 exit(1);
485 }
486 if (opt == 'L')
487 add_local_forward(&options, fwd_port, buf,
488 fwd_host_port);
489 else if (opt == 'R')
490 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100491 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100492 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000493
494 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000495 fwd_port = a2port(optarg);
496 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000497 fprintf(stderr, "Bad dynamic port '%s'\n",
498 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000499 exit(1);
500 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000501 add_local_forward(&options, fwd_port, "socks4", 0);
502 break;
503
Damien Miller95def091999-11-25 00:26:21 +1100504 case 'C':
505 options.compression = 1;
506 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000507 case 'N':
508 no_shell_flag = 1;
509 no_tty_flag = 1;
510 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000511 case 'T':
512 no_tty_flag = 1;
513 break;
Damien Miller95def091999-11-25 00:26:21 +1100514 case 'o':
515 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000516 if (process_config_line(&options, host ? host : "",
517 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100518 exit(1);
519 break;
Damien Miller832562e2001-01-30 09:30:01 +1100520 case 's':
521 subsystem_flag = 1;
522 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000523 case 'b':
524 options.bind_address = optarg;
525 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000526 case 'F':
527 config = optarg;
528 break;
Damien Miller95def091999-11-25 00:26:21 +1100529 default:
530 usage();
531 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533
Damien Millerf4614452001-07-14 12:18:10 +1000534 ac -= optind;
535 av += optind;
536
537 if (ac > 0 && !host && **av != '-') {
538 if (strchr(*av, '@')) {
539 p = xstrdup(*av);
540 cp = strchr(p, '@');
541 if (cp == NULL || cp == p)
542 usage();
543 options.user = p;
544 *cp = '\0';
545 host = ++cp;
546 } else
547 host = *av;
548 ac--, av++;
549 if (ac > 0) {
550 optind = 0;
551 optreset = 1;
552 goto again;
553 }
554 }
555
Damien Miller95def091999-11-25 00:26:21 +1100556 /* Check that we got a host name. */
557 if (!host)
558 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Millercb5e44a2000-09-29 12:12:36 +1100560 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100561 ERR_load_crypto_strings();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000562 channel_set_af(IPv4or6);
Damien Millercb5e44a2000-09-29 12:12:36 +1100563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Initialize the command to execute on remote host. */
565 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller5428f641999-11-25 11:54:57 +1100567 /*
568 * Save the command to execute on the remote host in a buffer. There
569 * is no limit on the length of the command, except by the maximum
570 * packet size. Also sets the tty flag if there is no command.
571 */
Damien Millerf4614452001-07-14 12:18:10 +1000572 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100573 /* No command specified - execute shell on a tty. */
574 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100575 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000576 fprintf(stderr,
577 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100578 usage();
579 }
Damien Miller95def091999-11-25 00:26:21 +1100580 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000581 /* A command has been specified. Store it into the buffer. */
582 for (i = 0; i < ac; i++) {
583 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100584 buffer_append(&command, " ", 1);
585 buffer_append(&command, av[i], strlen(av[i]));
586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100590 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100591 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller95def091999-11-25 00:26:21 +1100593 /* Allocate a tty by default if no command specified. */
594 if (buffer_len(&command) == 0)
595 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Ben Lindstromc72745a2000-12-02 19:03:54 +0000597 /* Force no tty*/
598 if (no_tty_flag)
599 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100600 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000601 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100602 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000603 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100604 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605 }
Damien Miller1383bd82000-04-06 12:32:37 +1000606
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000607 /*
608 * Initialize "log" output. Since we are the client all output
609 * actually goes to stderr.
610 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000611 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
612 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000614 /*
615 * Read per-user configuration file. Ignore the system wide config
616 * file if the user specifies a config file on the command line.
617 */
618 if (config != NULL) {
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000619 if (!read_config_file(config, host, &options))
620 fatal("Can't open user config file %.100s: "
621 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000622 } else {
623 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
624 _PATH_SSH_USER_CONFFILE);
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000625 (void)read_config_file(buf, host, &options);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000626
627 /* Read systemwide configuration file after use config. */
628 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000629 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller95def091999-11-25 00:26:21 +1100631 /* Fill configuration defaults. */
632 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Damien Miller95def091999-11-25 00:26:21 +1100634 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000635 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller60bc5172001-03-19 09:38:15 +1100637 seed_rng();
638
Damien Miller95def091999-11-25 00:26:21 +1100639 if (options.user == NULL)
640 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Miller95def091999-11-25 00:26:21 +1100642 if (options.hostname != NULL)
643 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644
Damien Miller95def091999-11-25 00:26:21 +1100645 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100646#ifdef HAVE_CYGWIN
647 /* Ignore uid if running under Windows */
648 if (!options.use_privileged_port) {
649#else
Damien Miller95def091999-11-25 00:26:21 +1100650 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100651#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000652 debug("Rhosts Authentication disabled, "
653 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100654 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100655 }
Damien Miller5428f641999-11-25 11:54:57 +1100656 /*
657 * If using rsh has been selected, exec it now (without trying
658 * anything else). Note that we must release privileges first.
659 */
Damien Miller95def091999-11-25 00:26:21 +1100660 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100661 /*
662 * Restore our superuser privileges. This must be done
663 * before permanently setting the uid.
664 */
Damien Miller95def091999-11-25 00:26:21 +1100665 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller95def091999-11-25 00:26:21 +1100667 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000668 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669
Damien Miller95def091999-11-25 00:26:21 +1100670 /* Execute rsh. */
671 rsh_connect(host, options.user, &command);
672 fatal("rsh_connect returned");
673 }
674 /* Restore our superuser privileges. */
675 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000677 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678
Damien Miller139d4cd2001-10-10 15:07:44 +1000679 cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000680 options.connection_attempts,
681 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000682 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller5428f641999-11-25 11:54:57 +1100684 /*
685 * If we successfully made the connection, load the host private key
686 * in case we will need it later for combined rsa-rhosts
687 * authentication. This must be done before releasing extra
688 * privileges, because the file is only readable by root.
689 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000690 sensitive_data.nkeys = 0;
691 sensitive_data.keys = NULL;
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000692 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000693 options.hostbased_authentication)) {
694 sensitive_data.nkeys = 3;
695 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
696 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000697 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000698 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
699 _PATH_HOST_DSA_KEY_FILE, "", NULL);
700 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
701 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100702 }
Damien Miller5428f641999-11-25 11:54:57 +1100703 /*
704 * Get rid of any extra privileges that we may have. We will no
705 * longer need them. Also, extra privileges could make it very hard
706 * to read identity files and other non-world-readable files from the
707 * user's home directory if it happens to be on a NFS volume where
708 * root is mapped to nobody.
709 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000710
Damien Miller5428f641999-11-25 11:54:57 +1100711 /*
712 * Note that some legacy systems need to postpone the following call
713 * to permanently_set_uid() until the private hostkey is destroyed
714 * with RSA_free(). Otherwise the calling user could ptrace() the
715 * process, read the private hostkey and impersonate the host.
716 * OpenBSD does not allow ptracing of setuid processes.
717 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000718 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100719
Damien Miller5428f641999-11-25 11:54:57 +1100720 /*
721 * Now that we are back to our own permissions, create ~/.ssh
722 * directory if it doesn\'t already exist.
723 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000724 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100725 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000726 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100727 error("Could not create directory '%.200s'.", buf);
728
729 /* Check if the connection failed, and try "rsh" if appropriate. */
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000730 if (cerr) {
731 if (!options.fallback_to_rsh)
732 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100733 if (options.port != 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000734 log("Secure connection to %.100s on port %hu refused; "
735 "reverting to insecure method",
736 host, options.port);
Damien Miller95def091999-11-25 00:26:21 +1100737 else
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000738 log("Secure connection to %.100s refused; "
739 "reverting to insecure method.", host);
Damien Miller95def091999-11-25 00:26:21 +1100740
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000741 rsh_connect(host, options.user, &command);
742 fatal("rsh_connect returned");
Damien Miller95def091999-11-25 00:26:21 +1100743 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000744 /* load options.identity_files */
745 load_public_identity_files();
746
747 /* Expand ~ in known host file names. */
748 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100749 options.system_hostfile =
750 tilde_expand_filename(options.system_hostfile, original_real_uid);
751 options.user_hostfile =
752 tilde_expand_filename(options.user_hostfile, original_real_uid);
753 options.system_hostfile2 =
754 tilde_expand_filename(options.system_hostfile2, original_real_uid);
755 options.user_hostfile2 =
756 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100757
Damien Miller07cd5892001-11-12 10:52:03 +1100758 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
759
Damien Miller95def091999-11-25 00:26:21 +1100760 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000761 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
762 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100763
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000764 /* We no longer need the private host keys. Clear them now. */
765 if (sensitive_data.nkeys != 0) {
766 for (i = 0; i < sensitive_data.nkeys; i++) {
767 if (sensitive_data.keys[i] != NULL) {
768 /* Destroys contents safely */
769 debug3("clear hostkey %d", i);
770 key_free(sensitive_data.keys[i]);
771 sensitive_data.keys[i] = NULL;
772 }
773 }
774 xfree(sensitive_data.keys);
775 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000776 for (i = 0; i < options.num_identity_files; i++) {
777 if (options.identity_files[i]) {
778 xfree(options.identity_files[i]);
779 options.identity_files[i] = NULL;
780 }
781 if (options.identity_keys[i]) {
782 key_free(options.identity_keys[i]);
783 options.identity_keys[i] = NULL;
784 }
785 }
Damien Miller95def091999-11-25 00:26:21 +1100786
Damien Miller1383bd82000-04-06 12:32:37 +1000787 exit_status = compat20 ? ssh_session2() : ssh_session();
788 packet_close();
789 return exit_status;
790}
791
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000793x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000794{
795 char line[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000796 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000797 FILE *f;
798 int got_data = 0, i;
Damien Miller35b13d62002-02-05 12:12:09 +1100799 char *display;
Damien Millerbd483e72000-04-30 10:00:53 +1000800
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000801 *_proto = proto;
802 *_data = data;
803 proto[0] = data[0] = '\0';
Damien Miller35b13d62002-02-05 12:12:09 +1100804 if (options.xauth_location && (display = getenv("DISPLAY"))) {
Damien Millerd3a18572000-06-07 19:55:44 +1000805 /* Try to get Xauthority information for the display. */
Damien Miller35b13d62002-02-05 12:12:09 +1100806 if (strncmp(display, "localhost:", 10) == 0)
807 /*
808 * Handle FamilyLocal case where $DISPLAY does
809 * not match an authorization entry. For this we
810 * just try "xauth list unix:displaynum.screennum".
811 * XXX: "localhost" match to determine FamilyLocal
812 * is not perfect.
813 */
814 snprintf(line, sizeof line, "%.100s list unix:%s 2>"
815 _PATH_DEVNULL, options.xauth_location, display+10);
816 else
817 snprintf(line, sizeof line, "%.100s list %.200s 2>"
818 _PATH_DEVNULL, options.xauth_location, display);
819 debug2("x11_get_proto %s", line);
Damien Millerd3a18572000-06-07 19:55:44 +1000820 f = popen(line, "r");
821 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000822 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000823 got_data = 1;
824 if (f)
825 pclose(f);
826 }
Damien Millerbd483e72000-04-30 10:00:53 +1000827 /*
828 * If we didn't get authentication data, just make up some
829 * data. The forwarding code will check the validity of the
830 * response anyway, and substitute this data. The X11
831 * server, however, will ignore this fake data and use
832 * whatever authentication mechanisms it was using otherwise
833 * for the local connection.
834 */
835 if (!got_data) {
836 u_int32_t rand = 0;
837
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000838 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000839 for (i = 0; i < 16; i++) {
840 if (i % 4 == 0)
841 rand = arc4random();
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000842 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000843 rand >>= 8;
844 }
845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849ssh_init_forwarding(void)
850{
Kevin Steves12057502001-02-05 14:54:34 +0000851 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100852 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000853
Damien Miller0bc1bd82000-11-13 22:57:25 +1100854 /* Initiate local TCP/IP port forwardings. */
855 for (i = 0; i < options.num_local_forwards; i++) {
856 debug("Connections to local port %d forwarded to remote address %.200s:%d",
857 options.local_forwards[i].port,
858 options.local_forwards[i].host,
859 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100860 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100861 options.local_forwards[i].port,
862 options.local_forwards[i].host,
863 options.local_forwards[i].host_port,
864 options.gateway_ports);
865 }
Kevin Steves12057502001-02-05 14:54:34 +0000866 if (i > 0 && success == 0)
867 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100868
869 /* Initiate remote TCP/IP port forwardings. */
870 for (i = 0; i < options.num_remote_forwards; i++) {
871 debug("Connections to remote port %d forwarded to local address %.200s:%d",
872 options.remote_forwards[i].port,
873 options.remote_forwards[i].host,
874 options.remote_forwards[i].host_port);
875 channel_request_remote_forwarding(
876 options.remote_forwards[i].port,
877 options.remote_forwards[i].host,
878 options.remote_forwards[i].host_port);
879 }
880}
881
Ben Lindstrombba81212001-06-25 05:01:22 +0000882static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883check_agent_present(void)
884{
885 if (options.forward_agent) {
886 /* Clear agent forwarding if we don\'t have an agent. */
887 int authfd = ssh_get_authentication_socket();
888 if (authfd < 0)
889 options.forward_agent = 0;
890 else
891 ssh_close_authentication_socket(authfd);
892 }
893}
894
Ben Lindstrombba81212001-06-25 05:01:22 +0000895static int
Damien Miller1383bd82000-04-06 12:32:37 +1000896ssh_session(void)
897{
898 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000899 int interactive = 0;
900 int have_tty = 0;
901 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000902 char *cp;
903
Damien Miller95def091999-11-25 00:26:21 +1100904 /* Enable compression if requested. */
905 if (options.compression) {
906 debug("Requesting compression at level %d.", options.compression_level);
907
908 if (options.compression_level < 1 || options.compression_level > 9)
909 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
910
911 /* Send the request. */
912 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
913 packet_put_int(options.compression_level);
914 packet_send();
915 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100916 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100917 if (type == SSH_SMSG_SUCCESS)
918 packet_start_compression(options.compression_level);
919 else if (type == SSH_SMSG_FAILURE)
920 log("Warning: Remote host refused compression.");
921 else
922 packet_disconnect("Protocol error waiting for compression response.");
923 }
924 /* Allocate a pseudo tty if appropriate. */
925 if (tty_flag) {
926 debug("Requesting pty.");
927
928 /* Start the packet. */
929 packet_start(SSH_CMSG_REQUEST_PTY);
930
931 /* Store TERM in the packet. There is no limit on the
932 length of the string. */
933 cp = getenv("TERM");
934 if (!cp)
935 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000936 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100937
938 /* Store window size in the packet. */
939 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
940 memset(&ws, 0, sizeof(ws));
941 packet_put_int(ws.ws_row);
942 packet_put_int(ws.ws_col);
943 packet_put_int(ws.ws_xpixel);
944 packet_put_int(ws.ws_ypixel);
945
946 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000947 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100948
949 /* Send the packet, and wait for it to leave. */
950 packet_send();
951 packet_write_wait();
952
953 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100954 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000955 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100956 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000957 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000958 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100959 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
960 else
961 packet_disconnect("Protocol error waiting for pty request response.");
962 }
963 /* Request X11 forwarding if enabled and DISPLAY is set. */
964 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000965 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000966 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000967 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000968 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100969 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000970 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100971
972 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100973 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100974 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100975 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000976 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100977 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000978 } else {
Damien Miller95def091999-11-25 00:26:21 +1100979 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000980 }
Damien Miller95def091999-11-25 00:26:21 +1100981 }
982 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000983 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100984
985 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100986 check_agent_present();
987
Damien Miller95def091999-11-25 00:26:21 +1100988 if (options.forward_agent) {
989 debug("Requesting authentication agent forwarding.");
990 auth_request_forwarding();
991
992 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100993 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100994 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100995 if (type != SSH_SMSG_SUCCESS)
996 log("Warning: Remote host denied authentication agent forwarding.");
997 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000998
Damien Miller0bc1bd82000-11-13 22:57:25 +1100999 /* Initiate port forwardings. */
1000 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Damien Miller5428f641999-11-25 11:54:57 +11001002 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +10001003 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +11001004 if (daemon(1, 1) < 0)
1005 fatal("daemon() failed: %.200s", strerror(errno));
1006
1007 /*
1008 * If a command was specified on the command line, execute the
1009 * command now. Otherwise request the server to start a shell.
1010 */
Damien Miller95def091999-11-25 00:26:21 +11001011 if (buffer_len(&command) > 0) {
1012 int len = buffer_len(&command);
1013 if (len > 900)
1014 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001015 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001016 packet_start(SSH_CMSG_EXEC_CMD);
1017 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1018 packet_send();
1019 packet_write_wait();
1020 } else {
1021 debug("Requesting shell.");
1022 packet_start(SSH_CMSG_EXEC_SHELL);
1023 packet_send();
1024 packet_write_wait();
1025 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026
Damien Miller95def091999-11-25 00:26:21 +11001027 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001028 return client_loop(have_tty, tty_flag ?
1029 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001030}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031
Ben Lindstrombba81212001-06-25 05:01:22 +00001032static void
Damien Miller630d6f42002-01-22 23:17:30 +11001033client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001034{
1035 int id, len;
1036
1037 id = packet_get_int();
1038 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001039 if (len > 900)
1040 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001041 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001042 if (type == SSH2_MSG_CHANNEL_FAILURE)
1043 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001044 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001045}
1046
Damien Miller2797f7f2002-04-23 21:09:44 +10001047void
1048client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1049{
1050 int i;
1051
1052 i = client_global_request_id++;
1053 if (i >= options.num_remote_forwards) {
1054 debug("client_global_request_reply: too many replies %d > %d",
1055 i, options.num_remote_forwards);
1056 return;
1057 }
1058 debug("remote forward %s for: listen %d, connect %s:%d",
1059 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1060 options.remote_forwards[i].port,
1061 options.remote_forwards[i].host,
1062 options.remote_forwards[i].host_port);
1063 if (type == SSH2_MSG_REQUEST_FAILURE)
1064 log("Warning: remote port forwarding failed for listen port %d",
1065 options.remote_forwards[i].port);
1066}
1067
Ben Lindstromf558cf62001-09-20 23:13:49 +00001068/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001069static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001070ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001071{
1072 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001073 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001074 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001075
Ben Lindstromf558cf62001-09-20 23:13:49 +00001076 debug("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001077
Damien Miller1383bd82000-04-06 12:32:37 +10001078 if (tty_flag) {
1079 struct winsize ws;
1080 char *cp;
1081 cp = getenv("TERM");
1082 if (!cp)
1083 cp = "";
1084 /* Store window size in the packet. */
1085 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1086 memset(&ws, 0, sizeof(ws));
1087
1088 channel_request_start(id, "pty-req", 0);
1089 packet_put_cstring(cp);
1090 packet_put_int(ws.ws_col);
1091 packet_put_int(ws.ws_row);
1092 packet_put_int(ws.ws_xpixel);
1093 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001094 tio = get_saved_tio();
1095 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001096 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001097 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001098 /* XXX wait for reply */
1099 }
Damien Millerbd483e72000-04-30 10:00:53 +10001100 if (options.forward_x11 &&
1101 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001102 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001103 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001104 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001105 /* Request forwarding with authentication spoofing. */
1106 debug("Requesting X11 forwarding with authentication spoofing.");
1107 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001108 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001109 /* XXX wait for reply */
1110 }
1111
Damien Miller0bc1bd82000-11-13 22:57:25 +11001112 check_agent_present();
1113 if (options.forward_agent) {
1114 debug("Requesting authentication agent forwarding.");
1115 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1116 packet_send();
1117 }
1118
Damien Miller1383bd82000-04-06 12:32:37 +10001119 len = buffer_len(&command);
1120 if (len > 0) {
1121 if (len > 900)
1122 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001123 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001124 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001125 channel_request_start(id, "subsystem", /*want reply*/ 1);
1126 /* register callback for reply */
1127 /* XXX we asume that client_loop has already been called */
1128 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1129 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001130 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001131 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001132 channel_request_start(id, "exec", 0);
1133 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001134 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001135 packet_send();
1136 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001137 channel_request_start(id, "shell", 0);
1138 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001139 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001140
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001141 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001142}
1143
Ben Lindstromf558cf62001-09-20 23:13:49 +00001144/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001145static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001146ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001147{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001148 Channel *c;
1149 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001150
Damien Millercaf6dd62000-08-29 11:33:50 +11001151 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001152 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001153 } else {
1154 in = dup(STDIN_FILENO);
1155 }
1156 out = dup(STDOUT_FILENO);
1157 err = dup(STDERR_FILENO);
1158
1159 if (in < 0 || out < 0 || err < 0)
1160 fatal("dup() in/out/err failed");
1161
Damien Miller69b69aa2000-10-28 14:19:58 +11001162 /* enable nonblocking unless tty */
1163 if (!isatty(in))
1164 set_nonblock(in);
1165 if (!isatty(out))
1166 set_nonblock(out);
1167 if (!isatty(err))
1168 set_nonblock(err);
1169
Damien Millere4340be2000-09-16 13:29:08 +11001170 window = CHAN_SES_WINDOW_DEFAULT;
1171 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001172 if (tty_flag) {
1173 window >>= 1;
1174 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001175 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001176 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001177 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001178 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001179 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001180
Ben Lindstromf558cf62001-09-20 23:13:49 +00001181 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001182
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001183 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001184 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001185 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001186
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001187 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001188}
1189
Ben Lindstrombba81212001-06-25 05:01:22 +00001190static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001191ssh_session2(void)
1192{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001193 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001194
1195 /* XXX should be pre-session */
1196 ssh_init_forwarding();
1197
Ben Lindstromf558cf62001-09-20 23:13:49 +00001198 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1199 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001200
1201 /* If requested, let ssh continue in the background. */
1202 if (fork_after_authentication_flag)
1203 if (daemon(1, 1) < 0)
1204 fatal("daemon() failed: %.200s", strerror(errno));
1205
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001206 return client_loop(tty_flag, tty_flag ?
1207 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001209
Ben Lindstrombba81212001-06-25 05:01:22 +00001210static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001211load_public_identity_files(void)
1212{
1213 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001214 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001215 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001216#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001217 Key **keys;
1218
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001219 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001220 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1221 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1222 int count = 0;
1223 for (i = 0; keys[i] != NULL; i++) {
1224 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001225 memmove(&options.identity_files[1], &options.identity_files[0],
1226 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1227 memmove(&options.identity_keys[1], &options.identity_keys[0],
1228 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1229 options.num_identity_files++;
1230 options.identity_keys[0] = keys[i];
1231 options.identity_files[0] = xstrdup("smartcard key");;
1232 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001233 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1234 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001235 i = count;
1236 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001237 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001238#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001239 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001240 filename = tilde_expand_filename(options.identity_files[i],
1241 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001242 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001243 debug("identity file %s type %d", filename,
1244 public ? public->type : -1);
1245 xfree(options.identity_files[i]);
1246 options.identity_files[i] = filename;
1247 options.identity_keys[i] = public;
1248 }
1249}