blob: df3b64b1c56062308b1a74d5793bb7bc1f0bdf11 [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.
Darren Tucker0a118da2003-10-15 15:54:32 +100016 * Copyright (c) 2000, 2001, 2002, 2003 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"
Darren Tucker46bc0752004-05-02 22:11:30 +100043RCSID("$OpenBSD: ssh.c,v 1.212 2004/04/27 09:46:37 djm 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"
Ben Lindstromc7637672001-06-09 00:36:26 +000056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100071#include "match.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 Miller95def091999-11-25 00:26:21 +110083/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084int debug_flag = 0;
85
Damien Miller78928792000-04-12 20:17:38 +100086/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000088int no_tty_flag = 0;
89int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Damien Miller1383bd82000-04-06 12:32:37 +100091/* don't exec a shell */
92int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100093
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Flag indicating that nothing should be read from stdin. This can be set
96 * on the command line.
97 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098int stdin_null_flag = 0;
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000102 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100103 * background.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105int fork_after_authentication_flag = 0;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * General data structure for command line options and options configurable
109 * in configuration files. See readconf.h.
110 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111Options options;
112
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000113/* optional user configfile */
114char *config = NULL;
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
117 * Name of the host we are connecting to. This is the name given on the
118 * command line, or the HostName specified for the user-supplied name in a
119 * configuration file.
120 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121char *host;
122
123/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100124struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000126/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000127Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
129/* Original real UID. */
130uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000131uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller1383bd82000-04-06 12:32:37 +1000133/* command to be executed */
134Buffer command;
135
Damien Miller832562e2001-01-30 09:30:01 +1100136/* Should we execute a command or invoke a subsystem? */
137int subsystem_flag = 0;
138
Damien Miller2797f7f2002-04-23 21:09:44 +1000139/* # of replies received for global requests */
140static int client_global_request_id = 0;
141
Damien Miller8c4e18a2002-09-19 12:05:02 +1000142/* pid of proxycommand child process */
143pid_t proxy_command_pid = 0;
144
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145/* Prints a help message to the user. This function never returns. */
146
Ben Lindstrombba81212001-06-25 05:01:22 +0000147static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000148usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Damien Miller50955102004-03-22 09:34:58 +1100150 fprintf(stderr,
151"usage: ssh [-1246AaCfghkNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
152" [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
153" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
154" [-p port] [-R port:host:hostport] [user@]hostname [command]\n"
155 );
Damien Miller95def091999-11-25 00:26:21 +1100156 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157}
158
Ben Lindstrombba81212001-06-25 05:01:22 +0000159static int ssh_session(void);
160static int ssh_session2(void);
161static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000162
Damien Miller95def091999-11-25 00:26:21 +1100163/*
164 * Main program for the ssh client.
165 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166int
167main(int ac, char **av)
168{
Ben Lindstrom24157572002-06-12 16:09:39 +0000169 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100170 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000171 char sfwd_port[6], sfwd_host_port[6];
Damien Miller9836cf82003-12-17 16:30:06 +1100172 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100173 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000174 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000175 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000176 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000177 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178
Damien Miller59d3d5b2003-08-22 09:34:41 +1000179 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000180 init_rng();
181
Damien Miller5428f641999-11-25 11:54:57 +1100182 /*
183 * Save the original real uid. It will be needed later (uid-swapping
184 * may clobber the real uid).
185 */
Damien Miller95def091999-11-25 00:26:21 +1100186 original_real_uid = getuid();
187 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100188
Damien Miller50b9a602002-09-04 16:50:06 +1000189 /*
190 * Use uid-swapping to give up root privileges for the duration of
191 * option processing. We will re-instantiate the rights when we are
192 * ready to create the privileged port, and will permanently drop
193 * them when the port has been created (actually, when the connection
194 * has been made, as we may need to create the port several times).
195 */
196 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197
Damien Miller05dd7952000-10-01 00:42:48 +1100198#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100199 /* If we are installed setuid root be careful to not drop core. */
200 if (original_real_uid != original_effective_uid) {
201 struct rlimit rlim;
202 rlim.rlim_cur = rlim.rlim_max = 0;
203 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
204 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100206#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000207 /* Get user data. */
208 pw = getpwuid(original_real_uid);
209 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000210 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000211 exit(1);
212 }
213 /* Take a copy of the returned structure. */
214 pw = pwcopy(pw);
215
Damien Miller5428f641999-11-25 11:54:57 +1100216 /*
Damien Miller5428f641999-11-25 11:54:57 +1100217 * Set our umask to something reasonable, as some files are created
218 * with the default umask. This will make them world-readable but
219 * writable only by the owner, which is ok for all files for which we
220 * don't set the modes explicitly.
221 */
Damien Miller95def091999-11-25 00:26:21 +1100222 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223
Damien Miller95def091999-11-25 00:26:21 +1100224 /* Initialize option structure to indicate that no values have been set. */
225 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Parse command-line arguments. */
228 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229
Damien Millerf4614452001-07-14 12:18:10 +1000230again:
231 while ((opt = getopt(ac, av,
Darren Tucker0a118da2003-10-15 15:54:32 +1000232 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100233 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000234 case '1':
235 options.protocol = SSH_PROTO_1;
236 break;
Damien Miller4af51302000-04-16 11:18:38 +1000237 case '2':
238 options.protocol = SSH_PROTO_2;
239 break;
Damien Miller34132e52000-01-14 15:45:46 +1100240 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000241 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100242 break;
Damien Miller34132e52000-01-14 15:45:46 +1100243 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000244 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100245 break;
Damien Miller95def091999-11-25 00:26:21 +1100246 case 'n':
247 stdin_null_flag = 1;
248 break;
Damien Miller95def091999-11-25 00:26:21 +1100249 case 'f':
250 fork_after_authentication_flag = 1;
251 stdin_null_flag = 1;
252 break;
Damien Miller95def091999-11-25 00:26:21 +1100253 case 'x':
254 options.forward_x11 = 0;
255 break;
Damien Miller95def091999-11-25 00:26:21 +1100256 case 'X':
257 options.forward_x11 = 1;
258 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000259 case 'Y':
260 options.forward_x11 = 1;
261 options.forward_x11_trusted = 1;
262 break;
Damien Miller95def091999-11-25 00:26:21 +1100263 case 'g':
264 options.gateway_ports = 1;
265 break;
Damien Miller147bba32002-09-04 16:46:06 +1000266 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100267 options.use_privileged_port = 0;
268 break;
Damien Miller95def091999-11-25 00:26:21 +1100269 case 'a':
270 options.forward_agent = 0;
271 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000272 case 'A':
273 options.forward_agent = 1;
274 break;
Damien Miller95def091999-11-25 00:26:21 +1100275 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100276 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100277 break;
Damien Miller95def091999-11-25 00:26:21 +1100278 case 'i':
279 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000280 fprintf(stderr, "Warning: Identity file %s "
281 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100282 break;
283 }
Damien Millerf4614452001-07-14 12:18:10 +1000284 if (options.num_identity_files >=
285 SSH_MAX_IDENTITY_FILES)
286 fatal("Too many identity files specified "
287 "(max %d)", SSH_MAX_IDENTITY_FILES);
288 options.identity_files[options.num_identity_files++] =
289 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100290 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000291 case 'I':
292#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000293 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000294#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000295 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000296#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000297 break;
Damien Miller95def091999-11-25 00:26:21 +1100298 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000299 if (tty_flag)
300 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100301 tty_flag = 1;
302 break;
Damien Miller95def091999-11-25 00:26:21 +1100303 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000304 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100305 debug_flag = 1;
306 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000307 } else {
308 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
309 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100310 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000311 }
Damien Millere4340be2000-09-16 13:29:08 +1100312 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100313 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100314 fprintf(stderr, "%s, %s\n",
315 SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100316 if (opt == 'V')
317 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100318 break;
Damien Miller95def091999-11-25 00:26:21 +1100319 case 'q':
320 options.log_level = SYSLOG_LEVEL_QUIET;
321 break;
Damien Miller95def091999-11-25 00:26:21 +1100322 case 'e':
323 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000324 (u_char) optarg[1] >= 64 &&
325 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000326 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100327 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000328 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100329 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000330 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100331 else {
Damien Millerf4614452001-07-14 12:18:10 +1000332 fprintf(stderr, "Bad escape character '%s'.\n",
333 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100334 exit(1);
335 }
336 break;
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000338 if (ciphers_valid(optarg)) {
339 /* SSH2 only */
340 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000341 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000342 } else {
343 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100344 options.cipher = cipher_number(optarg);
345 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000346 fprintf(stderr,
347 "Unknown cipher type '%s'\n",
348 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000349 exit(1);
350 }
Damien Millerf4614452001-07-14 12:18:10 +1000351 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100352 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000353 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100354 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000355 else
Damien Millere39cacc2000-11-29 12:18:44 +1100356 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100357 }
358 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000359 case 'm':
360 if (mac_valid(optarg))
361 options.macs = xstrdup(optarg);
362 else {
Damien Millerf4614452001-07-14 12:18:10 +1000363 fprintf(stderr, "Unknown mac type '%s'\n",
364 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000365 exit(1);
366 }
367 break;
Damien Miller95def091999-11-25 00:26:21 +1100368 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000369 options.port = a2port(optarg);
370 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000371 fprintf(stderr, "Bad port '%s'\n", optarg);
372 exit(1);
373 }
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
Damien Miller95def091999-11-25 00:26:21 +1100375 case 'l':
376 options.user = optarg;
377 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000378
Damien Miller95def091999-11-25 00:26:21 +1100379 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000380 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000381 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000382 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000383 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000384 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000385 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000386 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000387 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100388 usage();
389 /* NOTREACHED */
390 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000391 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000392 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000393 fprintf(stderr,
394 "Bad forwarding port(s) '%s'\n", optarg);
395 exit(1);
396 }
397 if (opt == 'L')
398 add_local_forward(&options, fwd_port, buf,
399 fwd_host_port);
400 else if (opt == 'R')
401 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100402 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100403 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000404
405 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000406 fwd_port = a2port(optarg);
407 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000408 fprintf(stderr, "Bad dynamic port '%s'\n",
409 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000410 exit(1);
411 }
Darren Tucker1c52ee32003-08-13 20:38:36 +1000412 add_local_forward(&options, fwd_port, "socks", 0);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000413 break;
414
Damien Miller95def091999-11-25 00:26:21 +1100415 case 'C':
416 options.compression = 1;
417 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000418 case 'N':
419 no_shell_flag = 1;
420 no_tty_flag = 1;
421 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000422 case 'T':
423 no_tty_flag = 1;
424 break;
Damien Miller95def091999-11-25 00:26:21 +1100425 case 'o':
426 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100427 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000428 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100429 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100430 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100431 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100432 break;
Damien Miller832562e2001-01-30 09:30:01 +1100433 case 's':
434 subsystem_flag = 1;
435 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000436 case 'b':
437 options.bind_address = optarg;
438 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000439 case 'F':
440 config = optarg;
441 break;
Damien Miller95def091999-11-25 00:26:21 +1100442 default:
443 usage();
444 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Millerf4614452001-07-14 12:18:10 +1000447 ac -= optind;
448 av += optind;
449
450 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000451 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000452 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000453 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000454 if (cp == NULL || cp == p)
455 usage();
456 options.user = p;
457 *cp = '\0';
458 host = ++cp;
459 } else
460 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000461 if (ac > 1) {
462 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000463 goto again;
464 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000465 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000466 }
467
Damien Miller95def091999-11-25 00:26:21 +1100468 /* Check that we got a host name. */
469 if (!host)
470 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471
Damien Millercb5e44a2000-09-29 12:12:36 +1100472 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100473 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100474
Damien Miller95def091999-11-25 00:26:21 +1100475 /* Initialize the command to execute on remote host. */
476 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477
Damien Miller5428f641999-11-25 11:54:57 +1100478 /*
479 * Save the command to execute on the remote host in a buffer. There
480 * is no limit on the length of the command, except by the maximum
481 * packet size. Also sets the tty flag if there is no command.
482 */
Damien Millerf4614452001-07-14 12:18:10 +1000483 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100484 /* No command specified - execute shell on a tty. */
485 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100486 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000487 fprintf(stderr,
488 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100489 usage();
490 }
Damien Miller95def091999-11-25 00:26:21 +1100491 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000492 /* A command has been specified. Store it into the buffer. */
493 for (i = 0; i < ac; i++) {
494 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100495 buffer_append(&command, " ", 1);
496 buffer_append(&command, av[i], strlen(av[i]));
497 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499
Damien Miller95def091999-11-25 00:26:21 +1100500 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100501 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100502 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503
Damien Miller95def091999-11-25 00:26:21 +1100504 /* Allocate a tty by default if no command specified. */
505 if (buffer_len(&command) == 0)
506 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000508 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000509 if (no_tty_flag)
510 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100511 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000512 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100513 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000514 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100515 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516 }
Damien Miller1383bd82000-04-06 12:32:37 +1000517
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000518 /*
519 * Initialize "log" output. Since we are the client all output
520 * actually goes to stderr.
521 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000522 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
523 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000525 /*
526 * Read per-user configuration file. Ignore the system wide config
527 * file if the user specifies a config file on the command line.
528 */
529 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000530 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000531 fatal("Can't open user config file %.100s: "
532 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000533 } else {
534 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
535 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000536 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000537
538 /* Read systemwide configuration file after use config. */
Damien Miller57a44762004-04-20 20:11:57 +1000539 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
540 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000541 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller95def091999-11-25 00:26:21 +1100543 /* Fill configuration defaults. */
544 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000546 channel_set_af(options.address_family);
547
Damien Miller95def091999-11-25 00:26:21 +1100548 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000549 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Miller60bc5172001-03-19 09:38:15 +1100551 seed_rng();
552
Damien Miller95def091999-11-25 00:26:21 +1100553 if (options.user == NULL)
554 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 if (options.hostname != NULL)
557 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Darren Tucker3f521e22003-07-03 16:20:42 +1000559 /* force lowercase for hostkey matching */
560 if (options.host_key_alias != NULL) {
561 for (p = options.host_key_alias; *p; p++)
562 if (isupper(*p))
563 *p = tolower(*p);
564 }
565
Damien Miller9f1e33a2003-02-24 11:57:32 +1100566 if (options.proxy_command != NULL &&
567 strcmp(options.proxy_command, "none") == 0)
568 options.proxy_command = NULL;
569
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000570 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000571 if (ssh_connect(host, &hostaddr, options.port,
572 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000573#ifdef HAVE_CYGWIN
574 options.use_privileged_port,
575#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000576 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000577#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000578 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000579 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Damien Miller5428f641999-11-25 11:54:57 +1100581 /*
582 * If we successfully made the connection, load the host private key
583 * in case we will need it later for combined rsa-rhosts
584 * authentication. This must be done before releasing extra
585 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000586 * If we cannot access the private keys, load the public keys
587 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100588 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000589 sensitive_data.nkeys = 0;
590 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000591 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000592 if (options.rhosts_rsa_authentication ||
593 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000594 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000595 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
596 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000597
598 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000599 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000600 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000601 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
602 _PATH_HOST_DSA_KEY_FILE, "", NULL);
603 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
604 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000605 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000606
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000607 if (options.hostbased_authentication == 1 &&
608 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000609 sensitive_data.keys[1] == NULL &&
610 sensitive_data.keys[2] == NULL) {
611 sensitive_data.keys[1] = key_load_public(
612 _PATH_HOST_DSA_KEY_FILE, NULL);
613 sensitive_data.keys[2] = key_load_public(
614 _PATH_HOST_RSA_KEY_FILE, NULL);
615 sensitive_data.external_keysign = 1;
616 }
Damien Miller95def091999-11-25 00:26:21 +1100617 }
Damien Miller5428f641999-11-25 11:54:57 +1100618 /*
619 * Get rid of any extra privileges that we may have. We will no
620 * longer need them. Also, extra privileges could make it very hard
621 * to read identity files and other non-world-readable files from the
622 * user's home directory if it happens to be on a NFS volume where
623 * root is mapped to nobody.
624 */
Ben Lindstromf9c48842002-06-11 16:37:51 +0000625 seteuid(original_real_uid);
626 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100627
Damien Miller5428f641999-11-25 11:54:57 +1100628 /*
629 * Now that we are back to our own permissions, create ~/.ssh
630 * directory if it doesn\'t already exist.
631 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000632 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 +1100633 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000634 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100635 error("Could not create directory '%.200s'.", buf);
636
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000637 /* load options.identity_files */
638 load_public_identity_files();
639
640 /* Expand ~ in known host file names. */
641 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100642 options.system_hostfile =
643 tilde_expand_filename(options.system_hostfile, original_real_uid);
644 options.user_hostfile =
645 tilde_expand_filename(options.user_hostfile, original_real_uid);
646 options.system_hostfile2 =
647 tilde_expand_filename(options.system_hostfile2, original_real_uid);
648 options.user_hostfile2 =
649 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100650
Damien Miller07cd5892001-11-12 10:52:03 +1100651 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
652
Damien Miller95def091999-11-25 00:26:21 +1100653 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000654 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100655
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000656 /* We no longer need the private host keys. Clear them now. */
657 if (sensitive_data.nkeys != 0) {
658 for (i = 0; i < sensitive_data.nkeys; i++) {
659 if (sensitive_data.keys[i] != NULL) {
660 /* Destroys contents safely */
661 debug3("clear hostkey %d", i);
662 key_free(sensitive_data.keys[i]);
663 sensitive_data.keys[i] = NULL;
664 }
665 }
666 xfree(sensitive_data.keys);
667 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000668 for (i = 0; i < options.num_identity_files; i++) {
669 if (options.identity_files[i]) {
670 xfree(options.identity_files[i]);
671 options.identity_files[i] = NULL;
672 }
673 if (options.identity_keys[i]) {
674 key_free(options.identity_keys[i]);
675 options.identity_keys[i] = NULL;
676 }
677 }
Damien Miller95def091999-11-25 00:26:21 +1100678
Damien Miller1383bd82000-04-06 12:32:37 +1000679 exit_status = compat20 ? ssh_session2() : ssh_session();
680 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000681
682 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100683 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000684 * case it hangs and instead rely on init to reap the child
685 */
686 if (proxy_command_pid > 1)
687 kill(proxy_command_pid, SIGHUP);
688
Damien Miller1383bd82000-04-06 12:32:37 +1000689 return exit_status;
690}
691
Darren Tucker0a118da2003-10-15 15:54:32 +1000692#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
693
Ben Lindstrombba81212001-06-25 05:01:22 +0000694static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000695x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000696{
Darren Tucker0a118da2003-10-15 15:54:32 +1000697 char cmd[1024];
Damien Millerbd483e72000-04-30 10:00:53 +1000698 char line[512];
Darren Tucker0a118da2003-10-15 15:54:32 +1000699 char xdisplay[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000700 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000701 FILE *f;
Darren Tucker0a118da2003-10-15 15:54:32 +1000702 int got_data = 0, generated = 0, do_unlink = 0, i;
703 char *display, *xauthdir, *xauthfile;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000704 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000705
Darren Tucker0a118da2003-10-15 15:54:32 +1000706 xauthdir = xauthfile = NULL;
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000707 *_proto = proto;
708 *_data = data;
709 proto[0] = data[0] = '\0';
Darren Tucker0a118da2003-10-15 15:54:32 +1000710
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000711 if (!options.xauth_location ||
712 (stat(options.xauth_location, &st) == -1)) {
713 debug("No xauth program.");
714 } else {
715 if ((display = getenv("DISPLAY")) == NULL) {
716 debug("x11_get_proto: DISPLAY not set");
717 return;
718 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000719 /*
720 * Handle FamilyLocal case where $DISPLAY does
721 * not match an authorization entry. For this we
722 * just try "xauth list unix:displaynum.screennum".
723 * XXX: "localhost" match to determine FamilyLocal
724 * is not perfect.
725 */
726 if (strncmp(display, "localhost:", 10) == 0) {
727 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
728 display + 10);
729 display = xdisplay;
730 }
731 if (options.forward_x11_trusted == 0) {
732 xauthdir = xmalloc(MAXPATHLEN);
733 xauthfile = xmalloc(MAXPATHLEN);
734 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
735 if (mkdtemp(xauthdir) != NULL) {
736 do_unlink = 1;
737 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
738 xauthdir);
739 snprintf(cmd, sizeof(cmd),
740 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller3df755e2004-03-22 09:34:26 +1100741 " untrusted timeout 1200 2>" _PATH_DEVNULL,
Darren Tucker0a118da2003-10-15 15:54:32 +1000742 options.xauth_location, xauthfile, display);
743 debug2("x11_get_proto: %s", cmd);
744 if (system(cmd) == 0)
745 generated = 1;
746 }
747 }
748 snprintf(cmd, sizeof(cmd),
749 "%s %s%s list %s . 2>" _PATH_DEVNULL,
750 options.xauth_location,
751 generated ? "-f " : "" ,
752 generated ? xauthfile : "",
753 display);
754 debug2("x11_get_proto: %s", cmd);
755 f = popen(cmd, "r");
Damien Millerd3a18572000-06-07 19:55:44 +1000756 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000757 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000758 got_data = 1;
759 if (f)
760 pclose(f);
761 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000762
763 if (do_unlink) {
764 unlink(xauthfile);
765 rmdir(xauthdir);
766 }
767 if (xauthdir)
768 xfree(xauthdir);
769 if (xauthfile)
770 xfree(xauthfile);
771
Damien Millerbd483e72000-04-30 10:00:53 +1000772 /*
773 * If we didn't get authentication data, just make up some
774 * data. The forwarding code will check the validity of the
775 * response anyway, and substitute this data. The X11
776 * server, however, will ignore this fake data and use
777 * whatever authentication mechanisms it was using otherwise
778 * for the local connection.
779 */
780 if (!got_data) {
781 u_int32_t rand = 0;
782
Darren Tucker0a118da2003-10-15 15:54:32 +1000783 logit("Warning: No xauth data; "
784 "using fake authentication data for X11 forwarding.");
785 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000786 for (i = 0; i < 16; i++) {
787 if (i % 4 == 0)
788 rand = arc4random();
Darren Tucker0a118da2003-10-15 15:54:32 +1000789 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
790 rand & 0xff);
Damien Millerbd483e72000-04-30 10:00:53 +1000791 rand >>= 8;
792 }
793 }
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797ssh_init_forwarding(void)
798{
Kevin Steves12057502001-02-05 14:54:34 +0000799 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100800 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000801
Damien Miller0bc1bd82000-11-13 22:57:25 +1100802 /* Initiate local TCP/IP port forwardings. */
803 for (i = 0; i < options.num_local_forwards; i++) {
804 debug("Connections to local port %d forwarded to remote address %.200s:%d",
805 options.local_forwards[i].port,
806 options.local_forwards[i].host,
807 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100808 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100809 options.local_forwards[i].port,
810 options.local_forwards[i].host,
811 options.local_forwards[i].host_port,
812 options.gateway_ports);
813 }
Kevin Steves12057502001-02-05 14:54:34 +0000814 if (i > 0 && success == 0)
815 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100816
817 /* Initiate remote TCP/IP port forwardings. */
818 for (i = 0; i < options.num_remote_forwards; i++) {
819 debug("Connections to remote port %d forwarded to local address %.200s:%d",
820 options.remote_forwards[i].port,
821 options.remote_forwards[i].host,
822 options.remote_forwards[i].host_port);
823 channel_request_remote_forwarding(
824 options.remote_forwards[i].port,
825 options.remote_forwards[i].host,
826 options.remote_forwards[i].host_port);
827 }
828}
829
Ben Lindstrombba81212001-06-25 05:01:22 +0000830static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100831check_agent_present(void)
832{
833 if (options.forward_agent) {
834 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000835 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100837 }
838}
839
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static int
Damien Miller1383bd82000-04-06 12:32:37 +1000841ssh_session(void)
842{
843 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000844 int interactive = 0;
845 int have_tty = 0;
846 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000847 char *cp;
848
Damien Miller95def091999-11-25 00:26:21 +1100849 /* Enable compression if requested. */
850 if (options.compression) {
851 debug("Requesting compression at level %d.", options.compression_level);
852
853 if (options.compression_level < 1 || options.compression_level > 9)
854 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
855
856 /* Send the request. */
857 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
858 packet_put_int(options.compression_level);
859 packet_send();
860 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100861 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100862 if (type == SSH_SMSG_SUCCESS)
863 packet_start_compression(options.compression_level);
864 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000865 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100866 else
867 packet_disconnect("Protocol error waiting for compression response.");
868 }
869 /* Allocate a pseudo tty if appropriate. */
870 if (tty_flag) {
871 debug("Requesting pty.");
872
873 /* Start the packet. */
874 packet_start(SSH_CMSG_REQUEST_PTY);
875
876 /* Store TERM in the packet. There is no limit on the
877 length of the string. */
878 cp = getenv("TERM");
879 if (!cp)
880 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000881 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100882
883 /* Store window size in the packet. */
884 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
885 memset(&ws, 0, sizeof(ws));
886 packet_put_int(ws.ws_row);
887 packet_put_int(ws.ws_col);
888 packet_put_int(ws.ws_xpixel);
889 packet_put_int(ws.ws_ypixel);
890
891 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000892 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100893
894 /* Send the packet, and wait for it to leave. */
895 packet_send();
896 packet_write_wait();
897
898 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100899 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000900 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100901 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000902 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000903 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000904 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100905 else
906 packet_disconnect("Protocol error waiting for pty request response.");
907 }
908 /* Request X11 forwarding if enabled and DISPLAY is set. */
909 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000910 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000911 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000912 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000913 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100914 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000915 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100916
917 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100918 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100919 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100920 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000921 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000922 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000923 } else {
Damien Miller95def091999-11-25 00:26:21 +1100924 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000925 }
Damien Miller95def091999-11-25 00:26:21 +1100926 }
927 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000928 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100929
930 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100931 check_agent_present();
932
Damien Miller95def091999-11-25 00:26:21 +1100933 if (options.forward_agent) {
934 debug("Requesting authentication agent forwarding.");
935 auth_request_forwarding();
936
937 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100938 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100939 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100940 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000941 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller0bc1bd82000-11-13 22:57:25 +1100944 /* Initiate port forwardings. */
945 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000946
Damien Miller5428f641999-11-25 11:54:57 +1100947 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000948 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100949 if (daemon(1, 1) < 0)
950 fatal("daemon() failed: %.200s", strerror(errno));
951
952 /*
953 * If a command was specified on the command line, execute the
954 * command now. Otherwise request the server to start a shell.
955 */
Damien Miller95def091999-11-25 00:26:21 +1100956 if (buffer_len(&command) > 0) {
957 int len = buffer_len(&command);
958 if (len > 900)
959 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100960 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100961 packet_start(SSH_CMSG_EXEC_CMD);
962 packet_put_string(buffer_ptr(&command), buffer_len(&command));
963 packet_send();
964 packet_write_wait();
965 } else {
966 debug("Requesting shell.");
967 packet_start(SSH_CMSG_EXEC_SHELL);
968 packet_send();
969 packet_write_wait();
970 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller95def091999-11-25 00:26:21 +1100972 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000973 return client_loop(have_tty, tty_flag ?
974 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000975}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000976
Ben Lindstrombba81212001-06-25 05:01:22 +0000977static void
Damien Miller630d6f42002-01-22 23:17:30 +1100978client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000979{
980 int id, len;
981
982 id = packet_get_int();
983 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000984 if (len > 900)
985 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100986 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000987 if (type == SSH2_MSG_CHANNEL_FAILURE)
988 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100989 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000990}
991
Damien Miller2797f7f2002-04-23 21:09:44 +1000992void
Damien Miller509b0102003-12-17 16:33:10 +1100993client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +1000994{
995 int i;
996
997 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +1100998 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +1000999 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001000 debug("remote forward %s for: listen %d, connect %s:%d",
1001 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1002 options.remote_forwards[i].port,
1003 options.remote_forwards[i].host,
1004 options.remote_forwards[i].host_port);
1005 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001006 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001007 options.remote_forwards[i].port);
1008}
1009
Ben Lindstromf558cf62001-09-20 23:13:49 +00001010/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001011static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001012ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001013{
1014 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001015 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001016 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001017
Ben Lindstrom604dc722002-12-23 02:08:57 +00001018 debug2("ssh_session2_setup: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001019
Damien Miller1383bd82000-04-06 12:32:37 +10001020 if (tty_flag) {
1021 struct winsize ws;
1022 char *cp;
1023 cp = getenv("TERM");
1024 if (!cp)
1025 cp = "";
1026 /* Store window size in the packet. */
1027 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1028 memset(&ws, 0, sizeof(ws));
1029
1030 channel_request_start(id, "pty-req", 0);
1031 packet_put_cstring(cp);
1032 packet_put_int(ws.ws_col);
1033 packet_put_int(ws.ws_row);
1034 packet_put_int(ws.ws_xpixel);
1035 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001036 tio = get_saved_tio();
1037 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001038 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001039 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001040 /* XXX wait for reply */
1041 }
Damien Millerbd483e72000-04-30 10:00:53 +10001042 if (options.forward_x11 &&
1043 getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001044 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001045 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001046 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001047 /* Request forwarding with authentication spoofing. */
1048 debug("Requesting X11 forwarding with authentication spoofing.");
1049 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001050 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001051 /* XXX wait for reply */
1052 }
1053
Damien Miller0bc1bd82000-11-13 22:57:25 +11001054 check_agent_present();
1055 if (options.forward_agent) {
1056 debug("Requesting authentication agent forwarding.");
1057 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1058 packet_send();
1059 }
1060
Darren Tucker46bc0752004-05-02 22:11:30 +10001061 /* Transfer any environment variables from client to server */
1062 if (options.num_send_env != 0) {
1063 int i, j, matched;
1064 extern char **environ;
1065 char *name, *val;
1066
1067 debug("Sending environment.");
1068 for (i = 0; environ && environ[i] != NULL; i++) {
1069 /* Split */
1070 name = xstrdup(environ[i]);
1071 if ((val = strchr(name, '=')) == NULL) {
1072 free(name);
1073 continue;
1074 }
1075 *val++ = '\0';
1076
1077 matched = 0;
1078 for (j = 0; j < options.num_send_env; j++) {
1079 if (match_pattern(name, options.send_env[j])) {
1080 matched = 1;
1081 break;
1082 }
1083 }
1084 if (!matched) {
1085 debug3("Ignored env %s", name);
1086 free(name);
1087 continue;
1088 }
1089
1090 debug("Sending env %s = %s", name, val);
1091 channel_request_start(id, "env", 0);
1092 packet_put_cstring(name);
1093 packet_put_cstring(val);
1094 packet_send();
1095 free(name);
1096 }
1097 }
1098
Damien Miller1383bd82000-04-06 12:32:37 +10001099 len = buffer_len(&command);
1100 if (len > 0) {
1101 if (len > 900)
1102 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001103 if (subsystem_flag) {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001104 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001105 channel_request_start(id, "subsystem", /*want reply*/ 1);
1106 /* register callback for reply */
Ben Lindstromf666fec2002-06-06 19:51:58 +00001107 /* XXX we assume that client_loop has already been called */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001108 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1109 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001110 } else {
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001111 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller832562e2001-01-30 09:30:01 +11001112 channel_request_start(id, "exec", 0);
1113 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001114 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001115 packet_send();
1116 } else {
Damien Millera500cd62002-02-08 22:04:26 +11001117 channel_request_start(id, "shell", 0);
1118 packet_send();
Damien Miller1383bd82000-04-06 12:32:37 +10001119 }
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001120
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001121 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001122}
1123
Ben Lindstromf558cf62001-09-20 23:13:49 +00001124/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001125static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001126ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001127{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001128 Channel *c;
1129 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001130
Damien Millercaf6dd62000-08-29 11:33:50 +11001131 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001132 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001133 } else {
1134 in = dup(STDIN_FILENO);
1135 }
1136 out = dup(STDOUT_FILENO);
1137 err = dup(STDERR_FILENO);
1138
1139 if (in < 0 || out < 0 || err < 0)
1140 fatal("dup() in/out/err failed");
1141
Damien Miller69b69aa2000-10-28 14:19:58 +11001142 /* enable nonblocking unless tty */
1143 if (!isatty(in))
1144 set_nonblock(in);
1145 if (!isatty(out))
1146 set_nonblock(out);
1147 if (!isatty(err))
1148 set_nonblock(err);
1149
Damien Millere4340be2000-09-16 13:29:08 +11001150 window = CHAN_SES_WINDOW_DEFAULT;
1151 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001152 if (tty_flag) {
1153 window >>= 1;
1154 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001155 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001156 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001157 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001158 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001159 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001160
Ben Lindstromf558cf62001-09-20 23:13:49 +00001161 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001162
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001163 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001164 if (!no_shell_flag)
Damien Miller67f0bc02002-02-05 12:23:08 +11001165 channel_register_confirm(c->self, ssh_session2_setup);
Damien Miller1383bd82000-04-06 12:32:37 +10001166
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001167 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001168}
1169
Ben Lindstrombba81212001-06-25 05:01:22 +00001170static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001171ssh_session2(void)
1172{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001173 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001174
1175 /* XXX should be pre-session */
1176 ssh_init_forwarding();
1177
Ben Lindstromf558cf62001-09-20 23:13:49 +00001178 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1179 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001180
1181 /* If requested, let ssh continue in the background. */
1182 if (fork_after_authentication_flag)
1183 if (daemon(1, 1) < 0)
1184 fatal("daemon() failed: %.200s", strerror(errno));
1185
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001186 return client_loop(tty_flag, tty_flag ?
1187 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001189
Ben Lindstrombba81212001-06-25 05:01:22 +00001190static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001191load_public_identity_files(void)
1192{
1193 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001194 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001195 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001196#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001197 Key **keys;
1198
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001199 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001200 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1201 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1202 int count = 0;
1203 for (i = 0; keys[i] != NULL; i++) {
1204 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001205 memmove(&options.identity_files[1], &options.identity_files[0],
1206 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1207 memmove(&options.identity_keys[1], &options.identity_keys[0],
1208 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1209 options.num_identity_files++;
1210 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001211 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001212 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001213 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1214 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001215 i = count;
1216 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001217 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001218#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001219 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001220 filename = tilde_expand_filename(options.identity_files[i],
1221 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001222 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001223 debug("identity file %s type %d", filename,
1224 public ? public->type : -1);
1225 xfree(options.identity_files[i]);
1226 options.identity_files[i] = filename;
1227 options.identity_keys[i] = public;
1228 }
1229}