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