]> andersk Git - openssh.git/blob - ssh.c
0871d06de1609dfe63a1ae7cf5e894843ea44a2a
[openssh.git] / ssh.c
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Ssh client program.  This program can be used to log into a remote machine.
6  * The software supports strong authentication, encryption, and forwarding
7  * of X11, TCP/IP, and authentication connections.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  *
15  * Copyright (c) 1999 Niels Provos.  All rights reserved.
16  * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl.  All rights reserved.
17  *
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.
40  */
41
42 #include "includes.h"
43 RCSID("$OpenBSD: ssh.c,v 1.241 2005/06/06 11:20:36 djm Exp $");
44
45 #include <openssl/evp.h>
46 #include <openssl/err.h>
47
48 #include "ssh.h"
49 #include "ssh1.h"
50 #include "ssh2.h"
51 #include "compat.h"
52 #include "cipher.h"
53 #include "xmalloc.h"
54 #include "packet.h"
55 #include "buffer.h"
56 #include "bufaux.h"
57 #include "channels.h"
58 #include "key.h"
59 #include "authfd.h"
60 #include "authfile.h"
61 #include "pathnames.h"
62 #include "dispatch.h"
63 #include "clientloop.h"
64 #include "log.h"
65 #include "readconf.h"
66 #include "sshconnect.h"
67 #include "misc.h"
68 #include "kex.h"
69 #include "mac.h"
70 #include "sshpty.h"
71 #include "match.h"
72 #include "msg.h"
73 #include "monitor_fdpass.h"
74 #include "uidswap.h"
75
76 #ifdef SMARTCARD
77 #include "scard.h"
78 #endif
79
80 extern char *__progname;
81
82 /* Flag indicating whether debug mode is on.  This can be set on the command line. */
83 int debug_flag = 0;
84
85 /* Flag indicating whether a tty should be allocated */
86 int tty_flag = 0;
87 int no_tty_flag = 0;
88 int force_tty_flag = 0;
89
90 /* don't exec a shell */
91 int no_shell_flag = 0;
92
93 /*
94  * Flag indicating that nothing should be read from stdin.  This can be set
95  * on the command line.
96  */
97 int stdin_null_flag = 0;
98
99 /*
100  * Flag indicating that ssh should fork after authentication.  This is useful
101  * so that the passphrase can be entered manually, and then ssh goes to the
102  * background.
103  */
104 int fork_after_authentication_flag = 0;
105
106 /*
107  * General data structure for command line options and options configurable
108  * in configuration files.  See readconf.h.
109  */
110 Options options;
111
112 /* optional user configfile */
113 char *config = NULL;
114
115 /*
116  * Name of the host we are connecting to.  This is the name given on the
117  * command line, or the HostName specified for the user-supplied name in a
118  * configuration file.
119  */
120 char *host;
121
122 /* socket address the host resolves to */
123 struct sockaddr_storage hostaddr;
124
125 /* Private host keys. */
126 Sensitive sensitive_data;
127
128 /* Original real UID. */
129 uid_t original_real_uid;
130 uid_t original_effective_uid;
131
132 /* command to be executed */
133 Buffer command;
134
135 /* Should we execute a command or invoke a subsystem? */
136 int subsystem_flag = 0;
137
138 /* # of replies received for global requests */
139 static int client_global_request_id = 0;
140
141 /* pid of proxycommand child process */
142 pid_t proxy_command_pid = 0;
143
144 /* fd to control socket */
145 int control_fd = -1;
146
147 /* Multiplexing control command */
148 static u_int mux_command = 0;
149
150 /* Only used in control client mode */
151 volatile sig_atomic_t control_client_terminate = 0;
152 u_int control_server_pid = 0;
153
154 /* Prints a help message to the user.  This function never returns. */
155
156 static void
157 usage(void)
158 {
159         fprintf(stderr,
160 "usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
161 "           [-D port] [-e escape_char] [-F configfile]\n"
162 "           [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
163 "           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
164 "           [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
165 "           [user@]hostname [command]\n"
166         );
167         exit(1);
168 }
169
170 static int ssh_session(void);
171 static int ssh_session2(void);
172 static void load_public_identity_files(void);
173 static void control_client(const char *path);
174
175 /*
176  * Main program for the ssh client.
177  */
178 int
179 main(int ac, char **av)
180 {
181         int i, opt, exit_status;
182         char *p, *cp, *line, buf[256];
183         struct stat st;
184         struct passwd *pw;
185         int dummy;
186         extern int optind, optreset;
187         extern char *optarg;
188         Forward fwd;
189
190         __progname = ssh_get_progname(av[0]);
191         init_rng();
192
193         /*
194          * Save the original real uid.  It will be needed later (uid-swapping
195          * may clobber the real uid).
196          */
197         original_real_uid = getuid();
198         original_effective_uid = geteuid();
199
200         /*
201          * Use uid-swapping to give up root privileges for the duration of
202          * option processing.  We will re-instantiate the rights when we are
203          * ready to create the privileged port, and will permanently drop
204          * them when the port has been created (actually, when the connection
205          * has been made, as we may need to create the port several times).
206          */
207         PRIV_END;
208
209 #ifdef HAVE_SETRLIMIT
210         /* If we are installed setuid root be careful to not drop core. */
211         if (original_real_uid != original_effective_uid) {
212                 struct rlimit rlim;
213                 rlim.rlim_cur = rlim.rlim_max = 0;
214                 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
215                         fatal("setrlimit failed: %.100s", strerror(errno));
216         }
217 #endif
218         /* Get user data. */
219         pw = getpwuid(original_real_uid);
220         if (!pw) {
221                 logit("You don't exist, go away!");
222                 exit(1);
223         }
224         /* Take a copy of the returned structure. */
225         pw = pwcopy(pw);
226
227         /*
228          * Set our umask to something reasonable, as some files are created
229          * with the default umask.  This will make them world-readable but
230          * writable only by the owner, which is ok for all files for which we
231          * don't set the modes explicitly.
232          */
233         umask(022);
234
235         /* Initialize option structure to indicate that no values have been set. */
236         initialize_options(&options);
237
238         /* Parse command-line arguments. */
239         host = NULL;
240
241 again:
242         while ((opt = getopt(ac, av,
243             "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
244                 switch (opt) {
245                 case '1':
246                         options.protocol = SSH_PROTO_1;
247                         break;
248                 case '2':
249                         options.protocol = SSH_PROTO_2;
250                         break;
251                 case '4':
252                         options.address_family = AF_INET;
253                         break;
254                 case '6':
255                         options.address_family = AF_INET6;
256                         break;
257                 case 'n':
258                         stdin_null_flag = 1;
259                         break;
260                 case 'f':
261                         fork_after_authentication_flag = 1;
262                         stdin_null_flag = 1;
263                         break;
264                 case 'x':
265                         options.forward_x11 = 0;
266                         break;
267                 case 'X':
268                         options.forward_x11 = 1;
269                         break;
270                 case 'Y':
271                         options.forward_x11 = 1;
272                         options.forward_x11_trusted = 1;
273                         break;
274                 case 'g':
275                         options.gateway_ports = 1;
276                         break;
277                 case 'O':
278                         if (strcmp(optarg, "check") == 0)
279                                 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
280                         else if (strcmp(optarg, "exit") == 0)
281                                 mux_command = SSHMUX_COMMAND_TERMINATE;
282                         else
283                                 fatal("Invalid multiplex command.");
284                         break;
285                 case 'P':       /* deprecated */
286                         options.use_privileged_port = 0;
287                         break;
288                 case 'a':
289                         options.forward_agent = 0;
290                         break;
291                 case 'A':
292                         options.forward_agent = 1;
293                         break;
294                 case 'k':
295                         options.gss_deleg_creds = 0;
296                         break;
297                 case 'i':
298                         if (stat(optarg, &st) < 0) {
299                                 fprintf(stderr, "Warning: Identity file %s "
300                                     "not accessible: %s.\n", optarg,
301                                     strerror(errno));
302                                 break;
303                         }
304                         if (options.num_identity_files >=
305                             SSH_MAX_IDENTITY_FILES)
306                                 fatal("Too many identity files specified "
307                                     "(max %d)", SSH_MAX_IDENTITY_FILES);
308                         options.identity_files[options.num_identity_files++] =
309                             xstrdup(optarg);
310                         break;
311                 case 'I':
312 #ifdef SMARTCARD
313                         options.smartcard_device = xstrdup(optarg);
314 #else
315                         fprintf(stderr, "no support for smartcards.\n");
316 #endif
317                         break;
318                 case 't':
319                         if (tty_flag)
320                                 force_tty_flag = 1;
321                         tty_flag = 1;
322                         break;
323                 case 'v':
324                         if (debug_flag == 0) {
325                                 debug_flag = 1;
326                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
327                         } else {
328                                 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
329                                         options.log_level++;
330                                 break;
331                         }
332                         /* FALLTHROUGH */
333                 case 'V':
334                         fprintf(stderr, "%s, %s\n",
335                             SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
336                         if (opt == 'V')
337                                 exit(0);
338                         break;
339                 case 'q':
340                         options.log_level = SYSLOG_LEVEL_QUIET;
341                         break;
342                 case 'e':
343                         if (optarg[0] == '^' && optarg[2] == 0 &&
344                             (u_char) optarg[1] >= 64 &&
345                             (u_char) optarg[1] < 128)
346                                 options.escape_char = (u_char) optarg[1] & 31;
347                         else if (strlen(optarg) == 1)
348                                 options.escape_char = (u_char) optarg[0];
349                         else if (strcmp(optarg, "none") == 0)
350                                 options.escape_char = SSH_ESCAPECHAR_NONE;
351                         else {
352                                 fprintf(stderr, "Bad escape character '%s'.\n",
353                                     optarg);
354                                 exit(1);
355                         }
356                         break;
357                 case 'c':
358                         if (ciphers_valid(optarg)) {
359                                 /* SSH2 only */
360                                 options.ciphers = xstrdup(optarg);
361                                 options.cipher = SSH_CIPHER_INVALID;
362                         } else {
363                                 /* SSH1 only */
364                                 options.cipher = cipher_number(optarg);
365                                 if (options.cipher == -1) {
366                                         fprintf(stderr,
367                                             "Unknown cipher type '%s'\n",
368                                             optarg);
369                                         exit(1);
370                                 }
371                                 if (options.cipher == SSH_CIPHER_3DES)
372                                         options.ciphers = "3des-cbc";
373                                 else if (options.cipher == SSH_CIPHER_BLOWFISH)
374                                         options.ciphers = "blowfish-cbc";
375                                 else
376                                         options.ciphers = (char *)-1;
377                         }
378                         break;
379                 case 'm':
380                         if (mac_valid(optarg))
381                                 options.macs = xstrdup(optarg);
382                         else {
383                                 fprintf(stderr, "Unknown mac type '%s'\n",
384                                     optarg);
385                                 exit(1);
386                         }
387                         break;
388                 case 'M':
389                         options.control_master =
390                             (options.control_master >= 1) ? 2 : 1;
391                         break;
392                 case 'p':
393                         options.port = a2port(optarg);
394                         if (options.port == 0) {
395                                 fprintf(stderr, "Bad port '%s'\n", optarg);
396                                 exit(1);
397                         }
398                         break;
399                 case 'l':
400                         options.user = optarg;
401                         break;
402
403                 case 'L':
404                         if (parse_forward(&fwd, optarg))
405                                 add_local_forward(&options, &fwd);
406                         else {
407                                 fprintf(stderr,
408                                     "Bad local forwarding specification '%s'\n",
409                                     optarg);
410                                 exit(1);
411                         }
412                         break;
413
414                 case 'R':
415                         if (parse_forward(&fwd, optarg)) {
416                                 add_remote_forward(&options, &fwd);
417                         } else {
418                                 fprintf(stderr,
419                                     "Bad remote forwarding specification "
420                                     "'%s'\n", optarg);
421                                 exit(1);
422                         }
423                         break;
424
425                 case 'D':
426                         cp = p = xstrdup(optarg);
427                         memset(&fwd, '\0', sizeof(fwd));
428                         fwd.connect_host = "socks";
429                         if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
430                                 fprintf(stderr, "Bad dynamic forwarding "
431                                     "specification '%.100s'\n", optarg);
432                                 exit(1);
433                         }
434                         if (cp != NULL) {
435                                 fwd.listen_port = a2port(cp);
436                                 fwd.listen_host = cleanhostname(fwd.listen_host);
437                         } else {
438                                 fwd.listen_port = a2port(fwd.listen_host);
439                                 fwd.listen_host = "";
440                         }
441
442                         if (fwd.listen_port == 0) {
443                                 fprintf(stderr, "Bad dynamic port '%s'\n",
444                                     optarg);
445                                 exit(1);
446                         }
447                         add_local_forward(&options, &fwd);
448                         xfree(p);
449                         break;
450
451                 case 'C':
452                         options.compression = 1;
453                         break;
454                 case 'N':
455                         no_shell_flag = 1;
456                         no_tty_flag = 1;
457                         break;
458                 case 'T':
459                         no_tty_flag = 1;
460                         break;
461                 case 'o':
462                         dummy = 1;
463                         line = xstrdup(optarg);
464                         if (process_config_line(&options, host ? host : "",
465                             line, "command-line", 0, &dummy) != 0)
466                                 exit(1);
467                         xfree(line);
468                         break;
469                 case 's':
470                         subsystem_flag = 1;
471                         break;
472                 case 'S':
473                         if (options.control_path != NULL)
474                                 free(options.control_path);
475                         options.control_path = xstrdup(optarg);
476                         break;
477                 case 'b':
478                         options.bind_address = optarg;
479                         break;
480                 case 'F':
481                         config = optarg;
482                         break;
483                 default:
484                         usage();
485                 }
486         }
487
488         ac -= optind;
489         av += optind;
490
491         if (ac > 0 && !host && **av != '-') {
492                 if (strrchr(*av, '@')) {
493                         p = xstrdup(*av);
494                         cp = strrchr(p, '@');
495                         if (cp == NULL || cp == p)
496                                 usage();
497                         options.user = p;
498                         *cp = '\0';
499                         host = ++cp;
500                 } else
501                         host = *av;
502                 if (ac > 1) {
503                         optind = optreset = 1;
504                         goto again;
505                 }
506                 ac--, av++;
507         }
508
509         /* Check that we got a host name. */
510         if (!host)
511                 usage();
512
513         SSLeay_add_all_algorithms();
514         ERR_load_crypto_strings();
515
516         /* Initialize the command to execute on remote host. */
517         buffer_init(&command);
518
519         /*
520          * Save the command to execute on the remote host in a buffer. There
521          * is no limit on the length of the command, except by the maximum
522          * packet size.  Also sets the tty flag if there is no command.
523          */
524         if (!ac) {
525                 /* No command specified - execute shell on a tty. */
526                 tty_flag = 1;
527                 if (subsystem_flag) {
528                         fprintf(stderr,
529                             "You must specify a subsystem to invoke.\n");
530                         usage();
531                 }
532         } else {
533                 /* A command has been specified.  Store it into the buffer. */
534                 for (i = 0; i < ac; i++) {
535                         if (i)
536                                 buffer_append(&command, " ", 1);
537                         buffer_append(&command, av[i], strlen(av[i]));
538                 }
539         }
540
541         /* Cannot fork to background if no command. */
542         if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
543                 fatal("Cannot fork into background without a command to execute.");
544
545         /* Allocate a tty by default if no command specified. */
546         if (buffer_len(&command) == 0)
547                 tty_flag = 1;
548
549         /* Force no tty */
550         if (no_tty_flag)
551                 tty_flag = 0;
552         /* Do not allocate a tty if stdin is not a tty. */
553         if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
554                 if (tty_flag)
555                         logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
556                 tty_flag = 0;
557         }
558
559         /*
560          * Initialize "log" output.  Since we are the client all output
561          * actually goes to stderr.
562          */
563         log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
564             SYSLOG_FACILITY_USER, 1);
565
566         /*
567          * Read per-user configuration file.  Ignore the system wide config
568          * file if the user specifies a config file on the command line.
569          */
570         if (config != NULL) {
571                 if (!read_config_file(config, host, &options, 0))
572                         fatal("Can't open user config file %.100s: "
573                             "%.100s", config, strerror(errno));
574         } else  {
575                 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
576                     _PATH_SSH_USER_CONFFILE);
577                 (void)read_config_file(buf, host, &options, 1);
578
579                 /* Read systemwide configuration file after use config. */
580                 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
581                     &options, 0);
582         }
583
584         /* Fill configuration defaults. */
585         fill_default_options(&options);
586
587         channel_set_af(options.address_family);
588
589         /* reinit */
590         log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
591
592         seed_rng();
593
594         if (options.user == NULL)
595                 options.user = xstrdup(pw->pw_name);
596
597         if (options.hostname != NULL)
598                 host = options.hostname;
599
600         /* force lowercase for hostkey matching */
601         if (options.host_key_alias != NULL) {
602                 for (p = options.host_key_alias; *p; p++)
603                         if (isupper(*p))
604                                 *p = tolower(*p);
605         }
606
607         if (options.proxy_command != NULL &&
608             strcmp(options.proxy_command, "none") == 0)
609                 options.proxy_command = NULL;
610
611         if (options.control_path != NULL) {
612                 snprintf(buf, sizeof(buf), "%d", options.port);
613                 cp = tilde_expand_filename(options.control_path,
614                     original_real_uid);
615                 options.control_path = percent_expand(cp, "p", buf, "h", host,
616                     "r", options.user, (char *)NULL);
617                 xfree(cp);
618         }
619         if (mux_command != 0 && options.control_path == NULL)
620                 fatal("No ControlPath specified for \"-O\" command");
621         if (options.control_path != NULL && options.control_master == 0) {
622                 if (mux_command == 0)
623                         mux_command = SSHMUX_COMMAND_OPEN;
624                 control_client(options.control_path);
625         }
626
627         /* Open a connection to the remote host. */
628         if (ssh_connect(host, &hostaddr, options.port,
629             options.address_family, options.connection_attempts,
630 #ifdef HAVE_CYGWIN
631             options.use_privileged_port,
632 #else
633             original_effective_uid == 0 && options.use_privileged_port,
634 #endif
635             options.proxy_command) != 0)
636                 exit(1);
637
638         /*
639          * If we successfully made the connection, load the host private key
640          * in case we will need it later for combined rsa-rhosts
641          * authentication. This must be done before releasing extra
642          * privileges, because the file is only readable by root.
643          * If we cannot access the private keys, load the public keys
644          * instead and try to execute the ssh-keysign helper instead.
645          */
646         sensitive_data.nkeys = 0;
647         sensitive_data.keys = NULL;
648         sensitive_data.external_keysign = 0;
649         if (options.rhosts_rsa_authentication ||
650             options.hostbased_authentication) {
651                 sensitive_data.nkeys = 3;
652                 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
653                     sizeof(Key));
654
655                 PRIV_START;
656                 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
657                     _PATH_HOST_KEY_FILE, "", NULL);
658                 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
659                     _PATH_HOST_DSA_KEY_FILE, "", NULL);
660                 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
661                     _PATH_HOST_RSA_KEY_FILE, "", NULL);
662                 PRIV_END;
663
664                 if (options.hostbased_authentication == 1 &&
665                     sensitive_data.keys[0] == NULL &&
666                     sensitive_data.keys[1] == NULL &&
667                     sensitive_data.keys[2] == NULL) {
668                         sensitive_data.keys[1] = key_load_public(
669                             _PATH_HOST_DSA_KEY_FILE, NULL);
670                         sensitive_data.keys[2] = key_load_public(
671                             _PATH_HOST_RSA_KEY_FILE, NULL);
672                         sensitive_data.external_keysign = 1;
673                 }
674         }
675         /*
676          * Get rid of any extra privileges that we may have.  We will no
677          * longer need them.  Also, extra privileges could make it very hard
678          * to read identity files and other non-world-readable files from the
679          * user's home directory if it happens to be on a NFS volume where
680          * root is mapped to nobody.
681          */
682         if (original_effective_uid == 0) {
683                 PRIV_START;
684                 permanently_set_uid(pw);
685         }
686
687         /*
688          * Now that we are back to our own permissions, create ~/.ssh
689          * directory if it doesn\'t already exist.
690          */
691         snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
692         if (stat(buf, &st) < 0)
693                 if (mkdir(buf, 0700) < 0)
694                         error("Could not create directory '%.200s'.", buf);
695
696         /* load options.identity_files */
697         load_public_identity_files();
698
699         /* Expand ~ in known host file names. */
700         /* XXX mem-leaks: */
701         options.system_hostfile =
702             tilde_expand_filename(options.system_hostfile, original_real_uid);
703         options.user_hostfile =
704             tilde_expand_filename(options.user_hostfile, original_real_uid);
705         options.system_hostfile2 =
706             tilde_expand_filename(options.system_hostfile2, original_real_uid);
707         options.user_hostfile2 =
708             tilde_expand_filename(options.user_hostfile2, original_real_uid);
709
710         signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
711
712         /* Log into the remote system.  This never returns if the login fails. */
713         ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
714
715         /* We no longer need the private host keys.  Clear them now. */
716         if (sensitive_data.nkeys != 0) {
717                 for (i = 0; i < sensitive_data.nkeys; i++) {
718                         if (sensitive_data.keys[i] != NULL) {
719                                 /* Destroys contents safely */
720                                 debug3("clear hostkey %d", i);
721                                 key_free(sensitive_data.keys[i]);
722                                 sensitive_data.keys[i] = NULL;
723                         }
724                 }
725                 xfree(sensitive_data.keys);
726         }
727         for (i = 0; i < options.num_identity_files; i++) {
728                 if (options.identity_files[i]) {
729                         xfree(options.identity_files[i]);
730                         options.identity_files[i] = NULL;
731                 }
732                 if (options.identity_keys[i]) {
733                         key_free(options.identity_keys[i]);
734                         options.identity_keys[i] = NULL;
735                 }
736         }
737
738         exit_status = compat20 ? ssh_session2() : ssh_session();
739         packet_close();
740
741         if (options.control_path != NULL && control_fd != -1)
742                 unlink(options.control_path);
743
744         /*
745          * Send SIGHUP to proxy command if used. We don't wait() in
746          * case it hangs and instead rely on init to reap the child
747          */
748         if (proxy_command_pid > 1)
749                 kill(proxy_command_pid, SIGHUP);
750
751         return exit_status;
752 }
753
754 #define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
755
756 static void
757 x11_get_proto(char **_proto, char **_data)
758 {
759         char cmd[1024];
760         char line[512];
761         char xdisplay[512];
762         static char proto[512], data[512];
763         FILE *f;
764         int got_data = 0, generated = 0, do_unlink = 0, i;
765         char *display, *xauthdir, *xauthfile;
766         struct stat st;
767
768         xauthdir = xauthfile = NULL;
769         *_proto = proto;
770         *_data = data;
771         proto[0] = data[0] = '\0';
772
773         if (!options.xauth_location ||
774             (stat(options.xauth_location, &st) == -1)) {
775                 debug("No xauth program.");
776         } else {
777                 if ((display = getenv("DISPLAY")) == NULL) {
778                         debug("x11_get_proto: DISPLAY not set");
779                         return;
780                 }
781                 /*
782                  * Handle FamilyLocal case where $DISPLAY does
783                  * not match an authorization entry.  For this we
784                  * just try "xauth list unix:displaynum.screennum".
785                  * XXX: "localhost" match to determine FamilyLocal
786                  *      is not perfect.
787                  */
788                 if (strncmp(display, "localhost:", 10) == 0) {
789                         snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
790                             display + 10);
791                         display = xdisplay;
792                 }
793                 if (options.forward_x11_trusted == 0) {
794                         xauthdir = xmalloc(MAXPATHLEN);
795                         xauthfile = xmalloc(MAXPATHLEN);
796                         strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
797                         if (mkdtemp(xauthdir) != NULL) {
798                                 do_unlink = 1;
799                                 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
800                                     xauthdir);
801                                 snprintf(cmd, sizeof(cmd),
802                                     "%s -f %s generate %s " SSH_X11_PROTO
803                                     " untrusted timeout 1200 2>" _PATH_DEVNULL,
804                                     options.xauth_location, xauthfile, display);
805                                 debug2("x11_get_proto: %s", cmd);
806                                 if (system(cmd) == 0)
807                                         generated = 1;
808                         }
809                 }
810                 snprintf(cmd, sizeof(cmd),
811                     "%s %s%s list %s . 2>" _PATH_DEVNULL,
812                     options.xauth_location,
813                     generated ? "-f " : "" ,
814                     generated ? xauthfile : "",
815                     display);
816                 debug2("x11_get_proto: %s", cmd);
817                 f = popen(cmd, "r");
818                 if (f && fgets(line, sizeof(line), f) &&
819                     sscanf(line, "%*s %511s %511s", proto, data) == 2)
820                         got_data = 1;
821                 if (f)
822                         pclose(f);
823         }
824
825         if (do_unlink) {
826                 unlink(xauthfile);
827                 rmdir(xauthdir);
828         }
829         if (xauthdir)
830                 xfree(xauthdir);
831         if (xauthfile)
832                 xfree(xauthfile);
833
834         /*
835          * If we didn't get authentication data, just make up some
836          * data.  The forwarding code will check the validity of the
837          * response anyway, and substitute this data.  The X11
838          * server, however, will ignore this fake data and use
839          * whatever authentication mechanisms it was using otherwise
840          * for the local connection.
841          */
842         if (!got_data) {
843                 u_int32_t rnd = 0;
844
845                 logit("Warning: No xauth data; "
846                     "using fake authentication data for X11 forwarding.");
847                 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
848                 for (i = 0; i < 16; i++) {
849                         if (i % 4 == 0)
850                                 rnd = arc4random();
851                         snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
852                             rnd & 0xff);
853                         rnd >>= 8;
854                 }
855         }
856 }
857
858 static void
859 ssh_init_forwarding(void)
860 {
861         int success = 0;
862         int i;
863
864         /* Initiate local TCP/IP port forwardings. */
865         for (i = 0; i < options.num_local_forwards; i++) {
866                 debug("Local connections to %.200s:%d forwarded to remote "
867                     "address %.200s:%d",
868                     (options.local_forwards[i].listen_host == NULL) ?
869                     (options.gateway_ports ? "*" : "LOCALHOST") :
870                     options.local_forwards[i].listen_host,
871                     options.local_forwards[i].listen_port,
872                     options.local_forwards[i].connect_host,
873                     options.local_forwards[i].connect_port);
874                 success += channel_setup_local_fwd_listener(
875                     options.local_forwards[i].listen_host,
876                     options.local_forwards[i].listen_port,
877                     options.local_forwards[i].connect_host,
878                     options.local_forwards[i].connect_port,
879                     options.gateway_ports);
880         }
881         if (i > 0 && success == 0)
882                 error("Could not request local forwarding.");
883
884         /* Initiate remote TCP/IP port forwardings. */
885         for (i = 0; i < options.num_remote_forwards; i++) {
886                 debug("Remote connections from %.200s:%d forwarded to "
887                     "local address %.200s:%d",
888                     (options.remote_forwards[i].listen_host == NULL) ? 
889                     (options.gateway_ports ? "*" : "LOCALHOST") : 
890                     options.remote_forwards[i].listen_host,
891                     options.remote_forwards[i].listen_port,
892                     options.remote_forwards[i].connect_host,
893                     options.remote_forwards[i].connect_port);
894                 channel_request_remote_forwarding(
895                     options.remote_forwards[i].listen_host,
896                     options.remote_forwards[i].listen_port,
897                     options.remote_forwards[i].connect_host,
898                     options.remote_forwards[i].connect_port);
899         }
900 }
901
902 static void
903 check_agent_present(void)
904 {
905         if (options.forward_agent) {
906                 /* Clear agent forwarding if we don\'t have an agent. */
907                 if (!ssh_agent_present())
908                         options.forward_agent = 0;
909         }
910 }
911
912 static int
913 ssh_session(void)
914 {
915         int type;
916         int interactive = 0;
917         int have_tty = 0;
918         struct winsize ws;
919         char *cp;
920
921         /* Enable compression if requested. */
922         if (options.compression) {
923                 debug("Requesting compression at level %d.", options.compression_level);
924
925                 if (options.compression_level < 1 || options.compression_level > 9)
926                         fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
927
928                 /* Send the request. */
929                 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
930                 packet_put_int(options.compression_level);
931                 packet_send();
932                 packet_write_wait();
933                 type = packet_read();
934                 if (type == SSH_SMSG_SUCCESS)
935                         packet_start_compression(options.compression_level);
936                 else if (type == SSH_SMSG_FAILURE)
937                         logit("Warning: Remote host refused compression.");
938                 else
939                         packet_disconnect("Protocol error waiting for compression response.");
940         }
941         /* Allocate a pseudo tty if appropriate. */
942         if (tty_flag) {
943                 debug("Requesting pty.");
944
945                 /* Start the packet. */
946                 packet_start(SSH_CMSG_REQUEST_PTY);
947
948                 /* Store TERM in the packet.  There is no limit on the
949                    length of the string. */
950                 cp = getenv("TERM");
951                 if (!cp)
952                         cp = "";
953                 packet_put_cstring(cp);
954
955                 /* Store window size in the packet. */
956                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
957                         memset(&ws, 0, sizeof(ws));
958                 packet_put_int(ws.ws_row);
959                 packet_put_int(ws.ws_col);
960                 packet_put_int(ws.ws_xpixel);
961                 packet_put_int(ws.ws_ypixel);
962
963                 /* Store tty modes in the packet. */
964                 tty_make_modes(fileno(stdin), NULL);
965
966                 /* Send the packet, and wait for it to leave. */
967                 packet_send();
968                 packet_write_wait();
969
970                 /* Read response from the server. */
971                 type = packet_read();
972                 if (type == SSH_SMSG_SUCCESS) {
973                         interactive = 1;
974                         have_tty = 1;
975                 } else if (type == SSH_SMSG_FAILURE)
976                         logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
977                 else
978                         packet_disconnect("Protocol error waiting for pty request response.");
979         }
980         /* Request X11 forwarding if enabled and DISPLAY is set. */
981         if (options.forward_x11 && getenv("DISPLAY") != NULL) {
982                 char *proto, *data;
983                 /* Get reasonable local authentication information. */
984                 x11_get_proto(&proto, &data);
985                 /* Request forwarding with authentication spoofing. */
986                 debug("Requesting X11 forwarding with authentication spoofing.");
987                 x11_request_forwarding_with_spoofing(0, proto, data);
988
989                 /* Read response from the server. */
990                 type = packet_read();
991                 if (type == SSH_SMSG_SUCCESS) {
992                         interactive = 1;
993                 } else if (type == SSH_SMSG_FAILURE) {
994                         logit("Warning: Remote host denied X11 forwarding.");
995                 } else {
996                         packet_disconnect("Protocol error waiting for X11 forwarding");
997                 }
998         }
999         /* Tell the packet module whether this is an interactive session. */
1000         packet_set_interactive(interactive);
1001
1002         /* Request authentication agent forwarding if appropriate. */
1003         check_agent_present();
1004
1005         if (options.forward_agent) {
1006                 debug("Requesting authentication agent forwarding.");
1007                 auth_request_forwarding();
1008
1009                 /* Read response from the server. */
1010                 type = packet_read();
1011                 packet_check_eom();
1012                 if (type != SSH_SMSG_SUCCESS)
1013                         logit("Warning: Remote host denied authentication agent forwarding.");
1014         }
1015
1016         /* Initiate port forwardings. */
1017         ssh_init_forwarding();
1018
1019         /* If requested, let ssh continue in the background. */
1020         if (fork_after_authentication_flag)
1021                 if (daemon(1, 1) < 0)
1022                         fatal("daemon() failed: %.200s", strerror(errno));
1023
1024         /*
1025          * If a command was specified on the command line, execute the
1026          * command now. Otherwise request the server to start a shell.
1027          */
1028         if (buffer_len(&command) > 0) {
1029                 int len = buffer_len(&command);
1030                 if (len > 900)
1031                         len = 900;
1032                 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
1033                 packet_start(SSH_CMSG_EXEC_CMD);
1034                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1035                 packet_send();
1036                 packet_write_wait();
1037         } else {
1038                 debug("Requesting shell.");
1039                 packet_start(SSH_CMSG_EXEC_SHELL);
1040                 packet_send();
1041                 packet_write_wait();
1042         }
1043
1044         /* Enter the interactive session. */
1045         return client_loop(have_tty, tty_flag ?
1046             options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1047 }
1048
1049 static void
1050 ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1051 {
1052         int id, len;
1053
1054         id = packet_get_int();
1055         len = buffer_len(&command);
1056         if (len > 900)
1057                 len = 900;
1058         packet_check_eom();
1059         if (type == SSH2_MSG_CHANNEL_FAILURE)
1060                 fatal("Request for subsystem '%.*s' failed on channel %d",
1061                     len, (u_char *)buffer_ptr(&command), id);
1062 }
1063
1064 void
1065 client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
1066 {
1067         int i;
1068
1069         i = client_global_request_id++;
1070         if (i >= options.num_remote_forwards)
1071                 return;
1072         debug("remote forward %s for: listen %d, connect %s:%d",
1073             type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1074             options.remote_forwards[i].listen_port,
1075             options.remote_forwards[i].connect_host,
1076             options.remote_forwards[i].connect_port);
1077         if (type == SSH2_MSG_REQUEST_FAILURE)
1078                 logit("Warning: remote port forwarding failed for listen "
1079                     "port %d", options.remote_forwards[i].listen_port);
1080 }
1081
1082 static void
1083 ssh_control_listener(void)
1084 {
1085         struct sockaddr_un addr;
1086         mode_t old_umask;
1087         int addr_len;
1088
1089         if (options.control_path == NULL || options.control_master <= 0)
1090                 return;
1091
1092         memset(&addr, '\0', sizeof(addr));
1093         addr.sun_family = AF_UNIX;
1094         addr_len = offsetof(struct sockaddr_un, sun_path) +
1095             strlen(options.control_path) + 1;
1096
1097         if (strlcpy(addr.sun_path, options.control_path,
1098             sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1099                 fatal("ControlPath too long");
1100
1101         if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1102                 fatal("%s socket(): %s\n", __func__, strerror(errno));
1103
1104         old_umask = umask(0177);
1105         if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
1106                 control_fd = -1;
1107                 if (errno == EINVAL || errno == EADDRINUSE)
1108                         fatal("ControlSocket %s already exists",
1109                             options.control_path);
1110                 else
1111                         fatal("%s bind(): %s\n", __func__, strerror(errno));
1112         }
1113         umask(old_umask);
1114
1115         if (listen(control_fd, 64) == -1)
1116                 fatal("%s listen(): %s\n", __func__, strerror(errno));
1117
1118         set_nonblock(control_fd);
1119 }
1120
1121 /* request pty/x11/agent/tcpfwd/shell for channel */
1122 static void
1123 ssh_session2_setup(int id, void *arg)
1124 {
1125         extern char **environ;
1126
1127         int interactive = tty_flag;
1128         if (options.forward_x11 && getenv("DISPLAY") != NULL) {
1129                 char *proto, *data;
1130                 /* Get reasonable local authentication information. */
1131                 x11_get_proto(&proto, &data);
1132                 /* Request forwarding with authentication spoofing. */
1133                 debug("Requesting X11 forwarding with authentication spoofing.");
1134                 x11_request_forwarding_with_spoofing(id, proto, data);
1135                 interactive = 1;
1136                 /* XXX wait for reply */
1137         }
1138
1139         check_agent_present();
1140         if (options.forward_agent) {
1141                 debug("Requesting authentication agent forwarding.");
1142                 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1143                 packet_send();
1144         }
1145
1146         client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1147             NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
1148
1149         packet_set_interactive(interactive);
1150 }
1151
1152 /* open new channel for a session */
1153 static int
1154 ssh_session2_open(void)
1155 {
1156         Channel *c;
1157         int window, packetmax, in, out, err;
1158
1159         if (stdin_null_flag) {
1160                 in = open(_PATH_DEVNULL, O_RDONLY);
1161         } else {
1162                 in = dup(STDIN_FILENO);
1163         }
1164         out = dup(STDOUT_FILENO);
1165         err = dup(STDERR_FILENO);
1166
1167         if (in < 0 || out < 0 || err < 0)
1168                 fatal("dup() in/out/err failed");
1169
1170         /* enable nonblocking unless tty */
1171         if (!isatty(in))
1172                 set_nonblock(in);
1173         if (!isatty(out))
1174                 set_nonblock(out);
1175         if (!isatty(err))
1176                 set_nonblock(err);
1177
1178         window = CHAN_SES_WINDOW_DEFAULT;
1179         packetmax = CHAN_SES_PACKET_DEFAULT;
1180         if (tty_flag) {
1181                 window >>= 1;
1182                 packetmax >>= 1;
1183         }
1184         c = channel_new(
1185             "session", SSH_CHANNEL_OPENING, in, out, err,
1186             window, packetmax, CHAN_EXTENDED_WRITE,
1187             "client-session", /*nonblock*/0);
1188
1189         debug3("ssh_session2_open: channel_new: %d", c->self);
1190
1191         channel_send_open(c->self);
1192         if (!no_shell_flag)
1193                 channel_register_confirm(c->self, ssh_session2_setup, NULL);
1194
1195         return c->self;
1196 }
1197
1198 static int
1199 ssh_session2(void)
1200 {
1201         int id = -1;
1202
1203         /* XXX should be pre-session */
1204         ssh_init_forwarding();
1205         ssh_control_listener();
1206
1207         if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1208                 id = ssh_session2_open();
1209
1210         /* If requested, let ssh continue in the background. */
1211         if (fork_after_authentication_flag)
1212                 if (daemon(1, 1) < 0)
1213                         fatal("daemon() failed: %.200s", strerror(errno));
1214
1215         return client_loop(tty_flag, tty_flag ?
1216             options.escape_char : SSH_ESCAPECHAR_NONE, id);
1217 }
1218
1219 static void
1220 load_public_identity_files(void)
1221 {
1222         char *filename;
1223         int i = 0;
1224         Key *public;
1225 #ifdef SMARTCARD
1226         Key **keys;
1227
1228         if (options.smartcard_device != NULL &&
1229             options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1230             (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1231                 int count = 0;
1232                 for (i = 0; keys[i] != NULL; i++) {
1233                         count++;
1234                         memmove(&options.identity_files[1], &options.identity_files[0],
1235                             sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1236                         memmove(&options.identity_keys[1], &options.identity_keys[0],
1237                             sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1238                         options.num_identity_files++;
1239                         options.identity_keys[0] = keys[i];
1240                         options.identity_files[0] = sc_get_key_label(keys[i]);
1241                 }
1242                 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1243                         options.num_identity_files = SSH_MAX_IDENTITY_FILES;
1244                 i = count;
1245                 xfree(keys);
1246         }
1247 #endif /* SMARTCARD */
1248         for (; i < options.num_identity_files; i++) {
1249                 filename = tilde_expand_filename(options.identity_files[i],
1250                     original_real_uid);
1251                 public = key_load_public(filename, NULL);
1252                 debug("identity file %s type %d", filename,
1253                     public ? public->type : -1);
1254                 xfree(options.identity_files[i]);
1255                 options.identity_files[i] = filename;
1256                 options.identity_keys[i] = public;
1257         }
1258 }
1259
1260 static void
1261 control_client_sighandler(int signo)
1262 {
1263         control_client_terminate = signo;
1264 }
1265
1266 static void
1267 control_client_sigrelay(int signo)
1268 {
1269         if (control_server_pid > 1)
1270                 kill(control_server_pid, signo);
1271 }
1272
1273 static int
1274 env_permitted(char *env)
1275 {
1276         int i;
1277         char name[1024], *cp;
1278
1279         strlcpy(name, env, sizeof(name));
1280         if ((cp = strchr(name, '=')) == NULL)
1281                 return (0);
1282
1283         *cp = '\0';
1284
1285         for (i = 0; i < options.num_send_env; i++)
1286                 if (match_pattern(name, options.send_env[i]))
1287                         return (1);
1288
1289         return (0);
1290 }
1291
1292 static void
1293 control_client(const char *path)
1294 {
1295         struct sockaddr_un addr;
1296         int i, r, fd, sock, exitval, num_env, addr_len;
1297         Buffer m;
1298         char *term;
1299         extern char **environ;
1300         u_int  flags;
1301
1302         memset(&addr, '\0', sizeof(addr));
1303         addr.sun_family = AF_UNIX;
1304         addr_len = offsetof(struct sockaddr_un, sun_path) +
1305             strlen(path) + 1;
1306
1307         if (strlcpy(addr.sun_path, path,
1308             sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1309                 fatal("ControlPath too long");
1310
1311         if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1312                 fatal("%s socket(): %s", __func__, strerror(errno));
1313
1314         if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1) {
1315                 if (mux_command != SSHMUX_COMMAND_OPEN) {
1316                         fatal("Control socket connect(%.100s): %s", path,
1317                             strerror(errno));
1318                 }
1319                 if (errno == ENOENT)
1320                         debug("Control socket \"%.100s\" does not exist", path);
1321                 else {
1322                         error("Control socket connect(%.100s): %s", path,
1323                             strerror(errno));
1324                 }
1325                 close(sock);
1326                 return;
1327         }
1328
1329         if (stdin_null_flag) {
1330                 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1331                         fatal("open(/dev/null): %s", strerror(errno));
1332                 if (dup2(fd, STDIN_FILENO) == -1)
1333                         fatal("dup2: %s", strerror(errno));
1334                 if (fd > STDERR_FILENO)
1335                         close(fd);
1336         }
1337
1338         if ((term = getenv("TERM")) == NULL)
1339                 term = "";
1340
1341         flags = 0;
1342         if (tty_flag)
1343                 flags |= SSHMUX_FLAG_TTY;
1344         if (subsystem_flag)
1345                 flags |= SSHMUX_FLAG_SUBSYS;
1346
1347         buffer_init(&m);
1348
1349         /* Send our command to server */
1350         buffer_put_int(&m, mux_command);
1351         buffer_put_int(&m, flags);
1352         if (ssh_msg_send(sock, /* version */1, &m) == -1)
1353                 fatal("%s: msg_send", __func__);
1354         buffer_clear(&m);
1355
1356         /* Get authorisation status and PID of controlee */
1357         if (ssh_msg_recv(sock, &m) == -1)
1358                 fatal("%s: msg_recv", __func__);
1359         if (buffer_get_char(&m) != 1)
1360                 fatal("%s: wrong version", __func__);
1361         if (buffer_get_int(&m) != 1)
1362                 fatal("Connection to master denied");
1363         control_server_pid = buffer_get_int(&m);
1364
1365         buffer_clear(&m);
1366
1367         switch (mux_command) {
1368         case SSHMUX_COMMAND_ALIVE_CHECK:
1369                 fprintf(stderr, "Master running (pid=%d)\r\n",
1370                     control_server_pid);
1371                 exit(0);
1372         case SSHMUX_COMMAND_TERMINATE:
1373                 fprintf(stderr, "Exit request sent.\r\n");
1374                 exit(0);
1375         case SSHMUX_COMMAND_OPEN:
1376                 /* continue below */
1377                 break;
1378         default:
1379                 fatal("silly mux_command %d", mux_command);
1380         }
1381
1382         /* SSHMUX_COMMAND_OPEN */
1383         buffer_put_cstring(&m, term);
1384         buffer_append(&command, "\0", 1);
1385         buffer_put_cstring(&m, buffer_ptr(&command));
1386
1387         if (options.num_send_env == 0 || environ == NULL) {
1388                 buffer_put_int(&m, 0);
1389         } else {
1390                 /* Pass environment */
1391                 num_env = 0;
1392                 for (i = 0; environ[i] != NULL; i++)
1393                         if (env_permitted(environ[i]))
1394                                 num_env++; /* Count */
1395
1396                 buffer_put_int(&m, num_env);
1397
1398                 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1399                         if (env_permitted(environ[i])) {
1400                                 num_env--;
1401                                 buffer_put_cstring(&m, environ[i]);
1402                         }
1403         }
1404
1405         if (ssh_msg_send(sock, /* version */1, &m) == -1)
1406                 fatal("%s: msg_send", __func__);
1407
1408         mm_send_fd(sock, STDIN_FILENO);
1409         mm_send_fd(sock, STDOUT_FILENO);
1410         mm_send_fd(sock, STDERR_FILENO);
1411
1412         /* Wait for reply, so master has a chance to gather ttymodes */
1413         buffer_clear(&m);
1414         if (ssh_msg_recv(sock, &m) == -1)
1415                 fatal("%s: msg_recv", __func__);
1416         if (buffer_get_char(&m) != 1)
1417                 fatal("%s: wrong version", __func__);
1418         buffer_free(&m);
1419
1420         signal(SIGHUP, control_client_sighandler);
1421         signal(SIGINT, control_client_sighandler);
1422         signal(SIGTERM, control_client_sighandler);
1423         signal(SIGWINCH, control_client_sigrelay);
1424
1425         if (tty_flag)
1426                 enter_raw_mode();
1427
1428         /* Stick around until the controlee closes the client_fd */
1429         exitval = 0;
1430         for (;!control_client_terminate;) {
1431                 r = read(sock, &exitval, sizeof(exitval));
1432                 if (r == 0) {
1433                         debug2("Received EOF from master");
1434                         break;
1435                 }
1436                 if (r > 0)
1437                         debug2("Received exit status from master %d", exitval);
1438                 if (r == -1 && errno != EINTR)
1439                         fatal("%s: read %s", __func__, strerror(errno));
1440         }
1441
1442         if (control_client_terminate)
1443                 debug2("Exiting on signal %d", control_client_terminate);
1444
1445         close(sock);
1446
1447         leave_raw_mode();
1448
1449         if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1450                 fprintf(stderr, "Connection to master closed.\r\n");
1451
1452         exit(exitval);
1453 }
This page took 1.84319 seconds and 3 git commands to generate.