[BACK]Return to ssh.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/ssh.c, Revision 1.147.2.1

1.1       deraadt     1: /*
1.32      deraadt     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:  *
1.64      deraadt     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:  *
                     17:  * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
                     18:  * in Canada (German citizen).
                     19:  *
                     20:  * Redistribution and use in source and binary forms, with or without
                     21:  * modification, are permitted provided that the following conditions
                     22:  * are met:
                     23:  * 1. Redistributions of source code must retain the above copyright
                     24:  *    notice, this list of conditions and the following disclaimer.
                     25:  * 2. Redistributions in binary form must reproduce the above copyright
                     26:  *    notice, this list of conditions and the following disclaimer in the
                     27:  *    documentation and/or other materials provided with the distribution.
                     28:  *
                     29:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     30:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     31:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     32:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     33:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     34:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     35:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     36:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     37:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     38:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.32      deraadt    39:  */
1.1       deraadt    40:
                     41: #include "includes.h"
1.147.2.1! jason      42: RCSID("$OpenBSD: ssh.c,v 1.149 2001/10/24 08:51:35 markus Exp $");
1.49      markus     43:
                     44: #include <openssl/evp.h>
1.72      markus     45: #include <openssl/err.h>
1.1       deraadt    46:
1.84      markus     47: #include "ssh.h"
                     48: #include "ssh1.h"
                     49: #include "ssh2.h"
                     50: #include "compat.h"
                     51: #include "cipher.h"
1.1       deraadt    52: #include "xmalloc.h"
                     53: #include "packet.h"
                     54: #include "buffer.h"
                     55: #include "uidswap.h"
1.123     markus     56: #include "channels.h"
1.49      markus     57: #include "key.h"
1.58      markus     58: #include "authfd.h"
1.49      markus     59: #include "authfile.h"
1.83      markus     60: #include "pathnames.h"
1.81      markus     61: #include "clientloop.h"
1.84      markus     62: #include "log.h"
                     63: #include "readconf.h"
                     64: #include "sshconnect.h"
                     65: #include "tildexpand.h"
1.89      markus     66: #include "dispatch.h"
1.84      markus     67: #include "misc.h"
1.95      markus     68: #include "kex.h"
                     69: #include "mac.h"
1.115     stevesk    70: #include "sshtty.h"
1.49      markus     71:
1.127     markus     72: #ifdef SMARTCARD
                     73: #include <openssl/engine.h>
                     74: #include "scard.h"
1.137     jakob      75: #endif
1.127     markus     76:
1.49      markus     77: extern char *__progname;
1.1       deraadt    78:
1.37      markus     79: /* Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
                     80:    Default value is AF_UNSPEC means both IPv4 and IPv6. */
                     81: int IPv4or6 = AF_UNSPEC;
                     82:
1.31      markus     83: /* Flag indicating whether debug mode is on.  This can be set on the command line. */
1.1       deraadt    84: int debug_flag = 0;
                     85:
1.46      markus     86: /* Flag indicating whether a tty should be allocated */
1.1       deraadt    87: int tty_flag = 0;
1.79      markus     88: int no_tty_flag = 0;
                     89: int force_tty_flag = 0;
1.1       deraadt    90:
1.45      markus     91: /* don't exec a shell */
                     92: int no_shell_flag = 0;
                     93:
1.33      markus     94: /*
                     95:  * Flag indicating that nothing should be read from stdin.  This can be set
                     96:  * on the command line.
                     97:  */
1.1       deraadt    98: int stdin_null_flag = 0;
                     99:
1.33      markus    100: /*
                    101:  * Flag indicating that ssh should fork after authentication.  This is useful
                    102:  * so that the pasphrase can be entered manually, and then ssh goes to the
                    103:  * background.
                    104:  */
1.1       deraadt   105: int fork_after_authentication_flag = 0;
                    106:
1.33      markus    107: /*
                    108:  * General data structure for command line options and options configurable
                    109:  * in configuration files.  See readconf.h.
                    110:  */
1.1       deraadt   111: Options options;
                    112:
1.139     markus    113: /* optional user configfile */
                    114: char *config = NULL;
                    115:
1.33      markus    116: /*
                    117:  * Name of the host we are connecting to.  This is the name given on the
                    118:  * command line, or the HostName specified for the user-supplied name in a
                    119:  * configuration file.
                    120:  */
1.1       deraadt   121: char *host;
                    122:
1.22      provos    123: /* socket address the host resolves to */
1.37      markus    124: struct sockaddr_storage hostaddr;
1.22      provos    125:
1.112     markus    126: /* Private host keys. */
                    127: struct {
                    128:        Key     **keys;
                    129:        int     nkeys;
                    130: } sensitive_data;
1.1       deraadt   131:
1.10      dugsong   132: /* Original real UID. */
                    133: uid_t original_real_uid;
1.1       deraadt   134:
1.45      markus    135: /* command to be executed */
                    136: Buffer command;
                    137:
1.85      djm       138: /* Should we execute a command or invoke a subsystem? */
                    139: int subsystem_flag = 0;
                    140:
1.1       deraadt   141: /* Prints a help message to the user.  This function never returns. */
                    142:
1.126     itojun    143: static void
1.93      itojun    144: usage(void)
1.1       deraadt   145: {
1.76      markus    146:        fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
1.31      markus    147:        fprintf(stderr, "Options:\n");
                    148:        fprintf(stderr, "  -l user     Log in using this user name.\n");
1.93      itojun    149:        fprintf(stderr, "  -n          Redirect input from " _PATH_DEVNULL ".\n");
1.139     markus    150:        fprintf(stderr, "  -F config   Config file (default: ~/%s).\n",
                    151:             _PATH_SSH_USER_CONFFILE);
1.53      markus    152:        fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");
1.120     markus    153:        fprintf(stderr, "  -a          Disable authentication agent forwarding (default).\n");
1.9       dugsong   154: #ifdef AFS
1.31      markus    155:        fprintf(stderr, "  -k          Disable Kerberos ticket and AFS token forwarding.\n");
                    156: #endif                         /* AFS */
1.88      stevesk   157:        fprintf(stderr, "  -X          Enable X11 connection forwarding.\n");
1.120     markus    158:        fprintf(stderr, "  -x          Disable X11 connection forwarding (default).\n");
1.99      deraadt   159:        fprintf(stderr, "  -i file     Identity for public key authentication "
                    160:            "(default: ~/.ssh/identity)\n");
1.135     jakob     161: #ifdef SMARTCARD
                    162:        fprintf(stderr, "  -I reader   Set smartcard reader.\n");
1.137     jakob     163: #endif
1.31      markus    164:        fprintf(stderr, "  -t          Tty; allocate a tty even if command is given.\n");
1.45      markus    165:        fprintf(stderr, "  -T          Do not allocate a tty.\n");
1.31      markus    166:        fprintf(stderr, "  -v          Verbose; display verbose debugging messages.\n");
1.66      markus    167:        fprintf(stderr, "              Multiple -v increases verbosity.\n");
1.31      markus    168:        fprintf(stderr, "  -V          Display version number only.\n");
                    169:        fprintf(stderr, "  -P          Don't allocate a privileged port.\n");
                    170:        fprintf(stderr, "  -q          Quiet; don't display any warning messages.\n");
                    171:        fprintf(stderr, "  -f          Fork into background after authentication.\n");
                    172:        fprintf(stderr, "  -e char     Set escape character; ``none'' = disable (default: ~).\n");
                    173:
1.120     markus    174:        fprintf(stderr, "  -c cipher   Select encryption algorithm\n");
1.102     stevesk   175:        fprintf(stderr, "  -m macs     Specify MAC algorithms for protocol version 2.\n");
1.31      markus    176:        fprintf(stderr, "  -p port     Connect to this port.  Server must be on the same port.\n");
                    177:        fprintf(stderr, "  -L listen-port:host:port   Forward local port to remote address\n");
                    178:        fprintf(stderr, "  -R listen-port:host:port   Forward remote port to local address\n");
1.76      markus    179:        fprintf(stderr, "              These cause %s to listen for connections on a port, and\n", __progname);
1.31      markus    180:        fprintf(stderr, "              forward them to the other side by connecting to host:port.\n");
1.140     stevesk   181:        fprintf(stderr, "  -D port     Enable dynamic application-level port forwarding.\n");
1.31      markus    182:        fprintf(stderr, "  -C          Enable compression.\n");
1.45      markus    183:        fprintf(stderr, "  -N          Do not execute a shell or command.\n");
1.31      markus    184:        fprintf(stderr, "  -g          Allow remote hosts to connect to forwarded ports.\n");
1.92      jakob     185:        fprintf(stderr, "  -1          Force protocol version 1.\n");
                    186:        fprintf(stderr, "  -2          Force protocol version 2.\n");
1.37      markus    187:        fprintf(stderr, "  -4          Use IPv4 only.\n");
                    188:        fprintf(stderr, "  -6          Use IPv6 only.\n");
1.31      markus    189:        fprintf(stderr, "  -o 'option' Process the option as if it was read from a configuration file.\n");
1.85      djm       190:        fprintf(stderr, "  -s          Invoke command (mandatory) as SSH2 subsystem.\n");
1.120     markus    191:        fprintf(stderr, "  -b addr     Local IP address.\n");
1.31      markus    192:        exit(1);
1.1       deraadt   193: }
                    194:
1.32      deraadt   195: /*
                    196:  * Connects to the given host using rsh (or prints an error message and exits
                    197:  * if rsh is not available).  This function never returns.
                    198:  */
1.126     itojun    199: static void
1.31      markus    200: rsh_connect(char *host, char *user, Buffer * command)
1.1       deraadt   201: {
1.31      markus    202:        char *args[10];
                    203:        int i;
                    204:
                    205:        log("Using rsh.  WARNING: Connection will not be encrypted.");
                    206:        /* Build argument list for rsh. */
                    207:        i = 0;
                    208:        args[i++] = _PATH_RSH;
                    209:        /* host may have to come after user on some systems */
                    210:        args[i++] = host;
                    211:        if (user) {
                    212:                args[i++] = "-l";
                    213:                args[i++] = user;
                    214:        }
                    215:        if (buffer_len(command) > 0) {
                    216:                buffer_append(command, "\0", 1);
                    217:                args[i++] = buffer_ptr(command);
                    218:        }
                    219:        args[i++] = NULL;
                    220:        if (debug_flag) {
                    221:                for (i = 0; args[i]; i++) {
                    222:                        if (i != 0)
                    223:                                fprintf(stderr, " ");
                    224:                        fprintf(stderr, "%s", args[i]);
                    225:                }
                    226:                fprintf(stderr, "\n");
                    227:        }
                    228:        execv(_PATH_RSH, args);
                    229:        perror(_PATH_RSH);
                    230:        exit(1);
1.1       deraadt   231: }
                    232:
1.126     itojun    233: static int ssh_session(void);
                    234: static int ssh_session2(void);
                    235: static void load_public_identity_files(void);
1.45      markus    236:
1.32      deraadt   237: /*
                    238:  * Main program for the ssh client.
                    239:  */
1.2       provos    240: int
                    241: main(int ac, char **av)
1.1       deraadt   242: {
1.130     markus    243:        int i, opt, exit_status, cerr;
1.35      markus    244:        u_short fwd_port, fwd_host_port;
1.141     stevesk   245:        char sfwd_port[6], sfwd_host_port[6];
1.128     fgsch     246:        char *p, *cp, buf[256];
1.31      markus    247:        struct stat st;
1.98      markus    248:        struct passwd *pw;
1.45      markus    249:        int dummy;
1.31      markus    250:        uid_t original_effective_uid;
1.144     stevesk   251:        extern int optind, optreset;
                    252:        extern char *optarg;
1.31      markus    253:
1.33      markus    254:        /*
                    255:         * Save the original real uid.  It will be needed later (uid-swapping
                    256:         * may clobber the real uid).
                    257:         */
1.31      markus    258:        original_real_uid = getuid();
                    259:        original_effective_uid = geteuid();
                    260:
                    261:        /* If we are installed setuid root be careful to not drop core. */
                    262:        if (original_real_uid != original_effective_uid) {
                    263:                struct rlimit rlim;
                    264:                rlim.rlim_cur = rlim.rlim_max = 0;
                    265:                if (setrlimit(RLIMIT_CORE, &rlim) < 0)
                    266:                        fatal("setrlimit failed: %.100s", strerror(errno));
1.1       deraadt   267:        }
1.107     markus    268:        /* Get user data. */
                    269:        pw = getpwuid(original_real_uid);
                    270:        if (!pw) {
                    271:                log("You don't exist, go away!");
                    272:                exit(1);
                    273:        }
                    274:        /* Take a copy of the returned structure. */
                    275:        pw = pwcopy(pw);
                    276:
1.33      markus    277:        /*
                    278:         * Use uid-swapping to give up root privileges for the duration of
                    279:         * option processing.  We will re-instantiate the rights when we are
                    280:         * ready to create the privileged port, and will permanently drop
                    281:         * them when the port has been created (actually, when the connection
                    282:         * has been made, as we may need to create the port several times).
                    283:         */
1.107     markus    284:        temporarily_use_uid(pw);
1.31      markus    285:
1.33      markus    286:        /*
                    287:         * Set our umask to something reasonable, as some files are created
                    288:         * with the default umask.  This will make them world-readable but
                    289:         * writable only by the owner, which is ok for all files for which we
                    290:         * don't set the modes explicitly.
                    291:         */
1.31      markus    292:        umask(022);
                    293:
                    294:        /* Initialize option structure to indicate that no values have been set. */
                    295:        initialize_options(&options);
                    296:
                    297:        /* Parse command-line arguments. */
                    298:        host = NULL;
                    299:
1.128     fgsch     300: again:
                    301:        while ((opt = getopt(ac, av,
1.139     markus    302:            "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
1.31      markus    303:                switch (opt) {
1.91      jakob     304:                case '1':
                    305:                        options.protocol = SSH_PROTO_1;
                    306:                        break;
1.47      markus    307:                case '2':
                    308:                        options.protocol = SSH_PROTO_2;
                    309:                        break;
1.37      markus    310:                case '4':
                    311:                        IPv4or6 = AF_INET;
                    312:                        break;
                    313:                case '6':
                    314:                        IPv4or6 = AF_INET6;
                    315:                        break;
1.31      markus    316:                case 'n':
                    317:                        stdin_null_flag = 1;
                    318:                        break;
                    319:                case 'f':
                    320:                        fork_after_authentication_flag = 1;
                    321:                        stdin_null_flag = 1;
                    322:                        break;
                    323:                case 'x':
                    324:                        options.forward_x11 = 0;
                    325:                        break;
                    326:                case 'X':
                    327:                        options.forward_x11 = 1;
                    328:                        break;
                    329:                case 'g':
                    330:                        options.gateway_ports = 1;
                    331:                        break;
                    332:                case 'P':
                    333:                        options.use_privileged_port = 0;
                    334:                        break;
                    335:                case 'a':
                    336:                        options.forward_agent = 0;
1.53      markus    337:                        break;
                    338:                case 'A':
                    339:                        options.forward_agent = 1;
1.31      markus    340:                        break;
1.9       dugsong   341: #ifdef AFS
1.31      markus    342:                case 'k':
                    343:                        options.kerberos_tgt_passing = 0;
                    344:                        options.afs_token_passing = 0;
                    345:                        break;
1.1       deraadt   346: #endif
1.31      markus    347:                case 'i':
                    348:                        if (stat(optarg, &st) < 0) {
1.128     fgsch     349:                                fprintf(stderr, "Warning: Identity file %s "
                    350:                                    "does not exist.\n", optarg);
1.31      markus    351:                                break;
                    352:                        }
1.128     fgsch     353:                        if (options.num_identity_files >=
                    354:                            SSH_MAX_IDENTITY_FILES)
                    355:                                fatal("Too many identity files specified "
                    356:                                    "(max %d)", SSH_MAX_IDENTITY_FILES);
                    357:                        options.identity_files[options.num_identity_files++] =
                    358:                            xstrdup(optarg);
1.31      markus    359:                        break;
1.127     markus    360:                case 'I':
                    361: #ifdef SMARTCARD
1.133     markus    362:                        options.smartcard_device = xstrdup(optarg);
1.137     jakob     363: #else
1.127     markus    364:                        fprintf(stderr, "no support for smartcards.\n");
1.137     jakob     365: #endif
1.127     markus    366:                        break;
1.31      markus    367:                case 't':
1.79      markus    368:                        if (tty_flag)
                    369:                                force_tty_flag = 1;
1.31      markus    370:                        tty_flag = 1;
                    371:                        break;
                    372:                case 'v':
1.66      markus    373:                        if (0 == debug_flag) {
                    374:                                debug_flag = 1;
                    375:                                options.log_level = SYSLOG_LEVEL_DEBUG1;
                    376:                        } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
                    377:                                options.log_level++;
                    378:                                break;
1.128     fgsch     379:                        } else
1.103     millert   380:                                fatal("Too high debugging level.");
1.66      markus    381:                        /* fallthrough */
1.31      markus    382:                case 'V':
1.96      deraadt   383:                        fprintf(stderr,
                    384:                            "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
1.46      markus    385:                            SSH_VERSION,
                    386:                            PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
1.96      deraadt   387:                            PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
                    388:                            SSLeay());
1.31      markus    389:                        if (opt == 'V')
                    390:                                exit(0);
                    391:                        break;
                    392:                case 'q':
                    393:                        options.log_level = SYSLOG_LEVEL_QUIET;
                    394:                        break;
                    395:                case 'e':
                    396:                        if (optarg[0] == '^' && optarg[2] == 0 &&
1.128     fgsch     397:                            (u_char) optarg[1] >= 64 &&
                    398:                            (u_char) optarg[1] < 128)
1.78      markus    399:                                options.escape_char = (u_char) optarg[1] & 31;
1.31      markus    400:                        else if (strlen(optarg) == 1)
1.78      markus    401:                                options.escape_char = (u_char) optarg[0];
1.31      markus    402:                        else if (strcmp(optarg, "none") == 0)
1.119     stevesk   403:                                options.escape_char = SSH_ESCAPECHAR_NONE;
1.31      markus    404:                        else {
1.128     fgsch     405:                                fprintf(stderr, "Bad escape character '%s'.\n",
                    406:                                    optarg);
1.31      markus    407:                                exit(1);
                    408:                        }
                    409:                        break;
                    410:                case 'c':
1.49      markus    411:                        if (ciphers_valid(optarg)) {
                    412:                                /* SSH2 only */
                    413:                                options.ciphers = xstrdup(optarg);
1.51      markus    414:                                options.cipher = SSH_CIPHER_ILLEGAL;
1.49      markus    415:                        } else {
                    416:                                /* SSH1 only */
1.74      markus    417:                                options.cipher = cipher_number(optarg);
                    418:                                if (options.cipher == -1) {
1.128     fgsch     419:                                        fprintf(stderr,
                    420:                                            "Unknown cipher type '%s'\n",
                    421:                                            optarg);
1.49      markus    422:                                        exit(1);
                    423:                                }
1.128     fgsch     424:                                if (options.cipher == SSH_CIPHER_3DES)
1.74      markus    425:                                        options.ciphers = "3des-cbc";
1.128     fgsch     426:                                else if (options.cipher == SSH_CIPHER_BLOWFISH)
1.74      markus    427:                                        options.ciphers = "blowfish-cbc";
1.128     fgsch     428:                                else
1.74      markus    429:                                        options.ciphers = (char *)-1;
1.95      markus    430:                        }
                    431:                        break;
                    432:                case 'm':
                    433:                        if (mac_valid(optarg))
                    434:                                options.macs = xstrdup(optarg);
                    435:                        else {
1.128     fgsch     436:                                fprintf(stderr, "Unknown mac type '%s'\n",
                    437:                                    optarg);
1.95      markus    438:                                exit(1);
1.31      markus    439:                        }
                    440:                        break;
                    441:                case 'p':
1.113     stevesk   442:                        options.port = a2port(optarg);
                    443:                        if (options.port == 0) {
1.109     markus    444:                                fprintf(stderr, "Bad port '%s'\n", optarg);
                    445:                                exit(1);
                    446:                        }
1.31      markus    447:                        break;
                    448:                case 'l':
                    449:                        options.user = optarg;
                    450:                        break;
1.141     stevesk   451:
                    452:                case 'L':
1.31      markus    453:                case 'R':
1.141     stevesk   454:                        if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
                    455:                            sfwd_port, buf, sfwd_host_port) != 3 &&
                    456:                            sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
                    457:                            sfwd_port, buf, sfwd_host_port) != 3) {
1.128     fgsch     458:                                fprintf(stderr,
1.141     stevesk   459:                                    "Bad forwarding specification '%s'\n",
1.128     fgsch     460:                                    optarg);
1.31      markus    461:                                usage();
                    462:                                /* NOTREACHED */
                    463:                        }
1.141     stevesk   464:                        if ((fwd_port = a2port(sfwd_port)) == 0 ||
                    465:                            (fwd_host_port = a2port(sfwd_host_port)) == 0) {
1.128     fgsch     466:                                fprintf(stderr,
1.141     stevesk   467:                                    "Bad forwarding port(s) '%s'\n", optarg);
                    468:                                exit(1);
1.31      markus    469:                        }
1.141     stevesk   470:                        if (opt == 'L')
                    471:                                add_local_forward(&options, fwd_port, buf,
                    472:                                    fwd_host_port);
                    473:                        else if (opt == 'R')
                    474:                                add_remote_forward(&options, fwd_port, buf,
                    475:                                     fwd_host_port);
1.31      markus    476:                        break;
1.108     markus    477:
                    478:                case 'D':
1.113     stevesk   479:                        fwd_port = a2port(optarg);
                    480:                        if (fwd_port == 0) {
1.128     fgsch     481:                                fprintf(stderr, "Bad dynamic port '%s'\n",
                    482:                                    optarg);
1.109     markus    483:                                exit(1);
                    484:                        }
1.108     markus    485:                        add_local_forward(&options, fwd_port, "socks4", 0);
                    486:                        break;
                    487:
1.31      markus    488:                case 'C':
                    489:                        options.compression = 1;
                    490:                        break;
1.45      markus    491:                case 'N':
                    492:                        no_shell_flag = 1;
                    493:                        no_tty_flag = 1;
                    494:                        break;
                    495:                case 'T':
                    496:                        no_tty_flag = 1;
                    497:                        break;
1.31      markus    498:                case 'o':
                    499:                        dummy = 1;
1.128     fgsch     500:                        if (process_config_line(&options, host ? host : "",
                    501:                            optarg, "command-line", 0, &dummy) != 0)
1.31      markus    502:                                exit(1);
                    503:                        break;
1.85      djm       504:                case 's':
                    505:                        subsystem_flag = 1;
1.117     markus    506:                        break;
                    507:                case 'b':
                    508:                        options.bind_address = optarg;
1.85      djm       509:                        break;
1.139     markus    510:                case 'F':
                    511:                        config = optarg;
                    512:                        break;
1.31      markus    513:                default:
                    514:                        usage();
1.1       deraadt   515:                }
1.31      markus    516:        }
                    517:
1.128     fgsch     518:        ac -= optind;
                    519:        av += optind;
                    520:
                    521:        if (ac > 0 && !host && **av != '-') {
                    522:                if (strchr(*av, '@')) {
                    523:                        p = xstrdup(*av);
                    524:                        cp = strchr(p, '@');
                    525:                        if (cp == NULL || cp == p)
                    526:                                usage();
                    527:                        options.user = p;
                    528:                        *cp = '\0';
                    529:                        host = ++cp;
                    530:                } else
                    531:                        host = *av;
                    532:                ac--, av++;
                    533:                if (ac > 0) {
                    534:                        optind = 0;
                    535:                        optreset = 1;
                    536:                        goto again;
                    537:                }
                    538:        }
                    539:
1.31      markus    540:        /* Check that we got a host name. */
                    541:        if (!host)
                    542:                usage();
                    543:
1.54      markus    544:        SSLeay_add_all_algorithms();
1.72      markus    545:        ERR_load_crypto_strings();
1.146     markus    546:        channel_set_af(IPv4or6);
1.31      markus    547:
                    548:        /* Initialize the command to execute on remote host. */
                    549:        buffer_init(&command);
1.1       deraadt   550:
1.33      markus    551:        /*
                    552:         * Save the command to execute on the remote host in a buffer. There
                    553:         * is no limit on the length of the command, except by the maximum
                    554:         * packet size.  Also sets the tty flag if there is no command.
                    555:         */
1.128     fgsch     556:        if (!ac) {
1.31      markus    557:                /* No command specified - execute shell on a tty. */
                    558:                tty_flag = 1;
1.85      djm       559:                if (subsystem_flag) {
1.128     fgsch     560:                        fprintf(stderr,
                    561:                            "You must specify a subsystem to invoke.\n");
1.85      djm       562:                        usage();
                    563:                }
1.31      markus    564:        } else {
1.128     fgsch     565:                /* A command has been specified.  Store it into the buffer. */
                    566:                for (i = 0; i < ac; i++) {
                    567:                        if (i)
1.31      markus    568:                                buffer_append(&command, " ", 1);
                    569:                        buffer_append(&command, av[i], strlen(av[i]));
                    570:                }
                    571:        }
                    572:
                    573:        /* Cannot fork to background if no command. */
1.63      markus    574:        if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
1.31      markus    575:                fatal("Cannot fork into background without a command to execute.");
                    576:
                    577:        /* Allocate a tty by default if no command specified. */
                    578:        if (buffer_len(&command) == 0)
                    579:                tty_flag = 1;
                    580:
1.75      markus    581:        /* Force no tty*/
                    582:        if (no_tty_flag)
                    583:                tty_flag = 0;
1.31      markus    584:        /* Do not allocate a tty if stdin is not a tty. */
1.79      markus    585:        if (!isatty(fileno(stdin)) && !force_tty_flag) {
1.31      markus    586:                if (tty_flag)
1.103     millert   587:                        log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
1.31      markus    588:                tty_flag = 0;
                    589:        }
1.45      markus    590:
1.101     markus    591:        /*
                    592:         * Initialize "log" output.  Since we are the client all output
                    593:         * actually goes to stderr.
                    594:         */
1.111     markus    595:        log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
                    596:            SYSLOG_FACILITY_USER, 1);
1.31      markus    597:
1.139     markus    598:        /*
                    599:         * Read per-user configuration file.  Ignore the system wide config
                    600:         * file if the user specifies a config file on the command line.
                    601:         */
                    602:        if (config != NULL) {
1.142     stevesk   603:                if (!read_config_file(config, host, &options))
                    604:                        fatal("Can't open user config file %.100s: "
                    605:                            "%.100s", config, strerror(errno));
1.139     markus    606:        } else  {
                    607:                snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
                    608:                    _PATH_SSH_USER_CONFFILE);
1.145     markus    609:                (void)read_config_file(buf, host, &options);
1.139     markus    610:
1.145     markus    611:                /* Read systemwide configuration file after use config. */
1.142     stevesk   612:                (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
1.139     markus    613:        }
1.31      markus    614:
                    615:        /* Fill configuration defaults. */
                    616:        fill_default_options(&options);
                    617:
                    618:        /* reinit */
1.101     markus    619:        log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
1.31      markus    620:
                    621:        if (options.user == NULL)
                    622:                options.user = xstrdup(pw->pw_name);
                    623:
                    624:        if (options.hostname != NULL)
                    625:                host = options.hostname;
                    626:
                    627:        /* Disable rhosts authentication if not running as root. */
                    628:        if (original_effective_uid != 0 || !options.use_privileged_port) {
1.77      markus    629:                debug("Rhosts Authentication disabled, "
1.71      markus    630:                    "originating port will not be trusted.");
1.31      markus    631:                options.rhosts_authentication = 0;
                    632:        }
1.33      markus    633:        /*
                    634:         * If using rsh has been selected, exec it now (without trying
                    635:         * anything else).  Note that we must release privileges first.
                    636:         */
1.31      markus    637:        if (options.use_rsh) {
1.33      markus    638:                /*
                    639:                 * Restore our superuser privileges.  This must be done
                    640:                 * before permanently setting the uid.
                    641:                 */
1.31      markus    642:                restore_uid();
                    643:
                    644:                /* Switch to the original uid permanently. */
1.107     markus    645:                permanently_set_uid(pw);
1.31      markus    646:
                    647:                /* Execute rsh. */
                    648:                rsh_connect(host, options.user, &command);
                    649:                fatal("rsh_connect returned");
                    650:        }
                    651:        /* Restore our superuser privileges. */
                    652:        restore_uid();
                    653:
1.77      markus    654:        /* Open a connection to the remote host. */
1.31      markus    655:
1.147     markus    656:        cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
1.77      markus    657:            options.connection_attempts,
                    658:            original_effective_uid != 0 || !options.use_privileged_port,
1.107     markus    659:            pw, options.proxy_command);
1.31      markus    660:
1.33      markus    661:        /*
                    662:         * If we successfully made the connection, load the host private key
                    663:         * in case we will need it later for combined rsa-rhosts
                    664:         * authentication. This must be done before releasing extra
                    665:         * privileges, because the file is only readable by root.
                    666:         */
1.112     markus    667:        sensitive_data.nkeys = 0;
                    668:        sensitive_data.keys = NULL;
1.130     markus    669:        if (!cerr && (options.rhosts_rsa_authentication ||
1.112     markus    670:            options.hostbased_authentication)) {
                    671:                sensitive_data.nkeys = 3;
                    672:                sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
                    673:                sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
1.105     markus    674:                    _PATH_HOST_KEY_FILE, "", NULL);
1.112     markus    675:                sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
                    676:                    _PATH_HOST_DSA_KEY_FILE, "", NULL);
                    677:                sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
                    678:                    _PATH_HOST_RSA_KEY_FILE, "", NULL);
1.31      markus    679:        }
1.33      markus    680:        /*
                    681:         * Get rid of any extra privileges that we may have.  We will no
                    682:         * longer need them.  Also, extra privileges could make it very hard
                    683:         * to read identity files and other non-world-readable files from the
                    684:         * user's home directory if it happens to be on a NFS volume where
                    685:         * root is mapped to nobody.
                    686:         */
                    687:
                    688:        /*
                    689:         * Note that some legacy systems need to postpone the following call
                    690:         * to permanently_set_uid() until the private hostkey is destroyed
                    691:         * with RSA_free().  Otherwise the calling user could ptrace() the
                    692:         * process, read the private hostkey and impersonate the host.
                    693:         * OpenBSD does not allow ptracing of setuid processes.
                    694:         */
1.107     markus    695:        permanently_set_uid(pw);
1.31      markus    696:
1.33      markus    697:        /*
                    698:         * Now that we are back to our own permissions, create ~/.ssh
                    699:         * directory if it doesn\'t already exist.
                    700:         */
1.138     jakob     701:        snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1.31      markus    702:        if (stat(buf, &st) < 0)
1.57      djm       703:                if (mkdir(buf, 0700) < 0)
1.31      markus    704:                        error("Could not create directory '%.200s'.", buf);
                    705:
                    706:        /* Check if the connection failed, and try "rsh" if appropriate. */
1.130     markus    707:        if (cerr) {
                    708:                if (!options.fallback_to_rsh)
                    709:                        exit(1);
1.31      markus    710:                if (options.port != 0)
1.130     markus    711:                        log("Secure connection to %.100s on port %hu refused; "
                    712:                            "reverting to insecure method",
                    713:                            host, options.port);
1.31      markus    714:                else
1.130     markus    715:                        log("Secure connection to %.100s refused; "
                    716:                            "reverting to insecure method.", host);
1.31      markus    717:
1.130     markus    718:                rsh_connect(host, options.user, &command);
                    719:                fatal("rsh_connect returned");
1.31      markus    720:        }
1.104     markus    721:        /* load options.identity_files */
                    722:        load_public_identity_files();
                    723:
                    724:        /* Expand ~ in known host file names. */
                    725:        /* XXX mem-leaks: */
1.72      markus    726:        options.system_hostfile =
                    727:            tilde_expand_filename(options.system_hostfile, original_real_uid);
                    728:        options.user_hostfile =
                    729:            tilde_expand_filename(options.user_hostfile, original_real_uid);
                    730:        options.system_hostfile2 =
                    731:            tilde_expand_filename(options.system_hostfile2, original_real_uid);
                    732:        options.user_hostfile2 =
                    733:            tilde_expand_filename(options.user_hostfile2, original_real_uid);
1.147.2.1! jason     734:
        !           735:        signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1.31      markus    736:
                    737:        /* Log into the remote system.  This never returns if the login fails. */
1.112     markus    738:        ssh_login(sensitive_data.keys, sensitive_data.nkeys,
                    739:            host, (struct sockaddr *)&hostaddr, pw);
1.31      markus    740:
1.112     markus    741:        /* We no longer need the private host keys.  Clear them now. */
                    742:        if (sensitive_data.nkeys != 0) {
                    743:                for (i = 0; i < sensitive_data.nkeys; i++) {
                    744:                        if (sensitive_data.keys[i] != NULL) {
                    745:                                /* Destroys contents safely */
                    746:                                debug3("clear hostkey %d", i);
                    747:                                key_free(sensitive_data.keys[i]);
                    748:                                sensitive_data.keys[i] = NULL;
                    749:                        }
                    750:                }
                    751:                xfree(sensitive_data.keys);
1.134     markus    752:        }
                    753:        for (i = 0; i < options.num_identity_files; i++) {
                    754:                if (options.identity_files[i]) {
                    755:                        xfree(options.identity_files[i]);
                    756:                        options.identity_files[i] = NULL;
                    757:                }
                    758:                if (options.identity_keys[i]) {
                    759:                        key_free(options.identity_keys[i]);
                    760:                        options.identity_keys[i] = NULL;
                    761:                }
1.112     markus    762:        }
1.31      markus    763:
1.45      markus    764:        exit_status = compat20 ? ssh_session2() : ssh_session();
                    765:        packet_close();
                    766:        return exit_status;
                    767: }
                    768:
1.126     itojun    769: static void
1.50      markus    770: x11_get_proto(char *proto, int proto_len, char *data, int data_len)
                    771: {
                    772:        char line[512];
                    773:        FILE *f;
                    774:        int got_data = 0, i;
                    775:
1.55      markus    776:        if (options.xauth_location) {
                    777:                /* Try to get Xauthority information for the display. */
1.93      itojun    778:                snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
1.55      markus    779:                    options.xauth_location, getenv("DISPLAY"));
                    780:                f = popen(line, "r");
                    781:                if (f && fgets(line, sizeof(line), f) &&
                    782:                    sscanf(line, "%*s %s %s", proto, data) == 2)
                    783:                        got_data = 1;
                    784:                if (f)
                    785:                        pclose(f);
                    786:        }
1.50      markus    787:        /*
                    788:         * If we didn't get authentication data, just make up some
                    789:         * data.  The forwarding code will check the validity of the
                    790:         * response anyway, and substitute this data.  The X11
                    791:         * server, however, will ignore this fake data and use
                    792:         * whatever authentication mechanisms it was using otherwise
                    793:         * for the local connection.
                    794:         */
                    795:        if (!got_data) {
                    796:                u_int32_t rand = 0;
                    797:
                    798:                strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
                    799:                for (i = 0; i < 16; i++) {
                    800:                        if (i % 4 == 0)
                    801:                                rand = arc4random();
                    802:                        snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
                    803:                        rand >>= 8;
                    804:                }
                    805:        }
                    806: }
                    807:
1.126     itojun    808: static void
1.70      markus    809: ssh_init_forwarding(void)
                    810: {
1.86      markus    811:        int success = 0;
1.70      markus    812:        int i;
1.86      markus    813:
1.70      markus    814:        /* Initiate local TCP/IP port forwardings. */
                    815:        for (i = 0; i < options.num_local_forwards; i++) {
                    816:                debug("Connections to local port %d forwarded to remote address %.200s:%d",
                    817:                    options.local_forwards[i].port,
                    818:                    options.local_forwards[i].host,
                    819:                    options.local_forwards[i].host_port);
1.86      markus    820:                success += channel_request_local_forwarding(
1.70      markus    821:                    options.local_forwards[i].port,
                    822:                    options.local_forwards[i].host,
                    823:                    options.local_forwards[i].host_port,
                    824:                    options.gateway_ports);
                    825:        }
1.86      markus    826:        if (i > 0 && success == 0)
                    827:                error("Could not request local forwarding.");
1.70      markus    828:
                    829:        /* Initiate remote TCP/IP port forwardings. */
                    830:        for (i = 0; i < options.num_remote_forwards; i++) {
                    831:                debug("Connections to remote port %d forwarded to local address %.200s:%d",
                    832:                    options.remote_forwards[i].port,
                    833:                    options.remote_forwards[i].host,
                    834:                    options.remote_forwards[i].host_port);
                    835:                channel_request_remote_forwarding(
                    836:                    options.remote_forwards[i].port,
                    837:                    options.remote_forwards[i].host,
                    838:                    options.remote_forwards[i].host_port);
                    839:        }
                    840: }
                    841:
1.126     itojun    842: static void
1.70      markus    843: check_agent_present(void)
                    844: {
                    845:        if (options.forward_agent) {
                    846:                /* Clear agent forwarding if we don\'t have an agent. */
                    847:                int authfd = ssh_get_authentication_socket();
                    848:                if (authfd < 0)
                    849:                        options.forward_agent = 0;
                    850:                else
                    851:                        ssh_close_authentication_socket(authfd);
                    852:        }
                    853: }
                    854:
1.126     itojun    855: static int
1.45      markus    856: ssh_session(void)
                    857: {
                    858:        int type;
                    859:        int plen;
                    860:        int interactive = 0;
                    861:        int have_tty = 0;
                    862:        struct winsize ws;
                    863:        char *cp;
                    864:
1.31      markus    865:        /* Enable compression if requested. */
                    866:        if (options.compression) {
                    867:                debug("Requesting compression at level %d.", options.compression_level);
                    868:
                    869:                if (options.compression_level < 1 || options.compression_level > 9)
                    870:                        fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
                    871:
                    872:                /* Send the request. */
                    873:                packet_start(SSH_CMSG_REQUEST_COMPRESSION);
                    874:                packet_put_int(options.compression_level);
                    875:                packet_send();
                    876:                packet_write_wait();
                    877:                type = packet_read(&plen);
                    878:                if (type == SSH_SMSG_SUCCESS)
                    879:                        packet_start_compression(options.compression_level);
                    880:                else if (type == SSH_SMSG_FAILURE)
                    881:                        log("Warning: Remote host refused compression.");
                    882:                else
                    883:                        packet_disconnect("Protocol error waiting for compression response.");
                    884:        }
                    885:        /* Allocate a pseudo tty if appropriate. */
                    886:        if (tty_flag) {
                    887:                debug("Requesting pty.");
                    888:
                    889:                /* Start the packet. */
                    890:                packet_start(SSH_CMSG_REQUEST_PTY);
                    891:
                    892:                /* Store TERM in the packet.  There is no limit on the
                    893:                   length of the string. */
                    894:                cp = getenv("TERM");
                    895:                if (!cp)
                    896:                        cp = "";
1.124     markus    897:                packet_put_cstring(cp);
1.31      markus    898:
                    899:                /* Store window size in the packet. */
                    900:                if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
                    901:                        memset(&ws, 0, sizeof(ws));
                    902:                packet_put_int(ws.ws_row);
                    903:                packet_put_int(ws.ws_col);
                    904:                packet_put_int(ws.ws_xpixel);
                    905:                packet_put_int(ws.ws_ypixel);
                    906:
                    907:                /* Store tty modes in the packet. */
1.115     stevesk   908:                tty_make_modes(fileno(stdin), NULL);
1.31      markus    909:
                    910:                /* Send the packet, and wait for it to leave. */
                    911:                packet_send();
                    912:                packet_write_wait();
                    913:
                    914:                /* Read response from the server. */
                    915:                type = packet_read(&plen);
1.43      markus    916:                if (type == SSH_SMSG_SUCCESS) {
1.31      markus    917:                        interactive = 1;
1.45      markus    918:                        have_tty = 1;
1.43      markus    919:                } else if (type == SSH_SMSG_FAILURE)
1.31      markus    920:                        log("Warning: Remote host failed or refused to allocate a pseudo tty.");
                    921:                else
                    922:                        packet_disconnect("Protocol error waiting for pty request response.");
                    923:        }
                    924:        /* Request X11 forwarding if enabled and DISPLAY is set. */
                    925:        if (options.forward_x11 && getenv("DISPLAY") != NULL) {
1.50      markus    926:                char proto[512], data[512];
                    927:                /* Get reasonable local authentication information. */
                    928:                x11_get_proto(proto, sizeof proto, data, sizeof data);
                    929:                /* Request forwarding with authentication spoofing. */
1.31      markus    930:                debug("Requesting X11 forwarding with authentication spoofing.");
1.50      markus    931:                x11_request_forwarding_with_spoofing(0, proto, data);
1.31      markus    932:
                    933:                /* Read response from the server. */
                    934:                type = packet_read(&plen);
                    935:                if (type == SSH_SMSG_SUCCESS) {
                    936:                        interactive = 1;
1.50      markus    937:                } else if (type == SSH_SMSG_FAILURE) {
1.31      markus    938:                        log("Warning: Remote host denied X11 forwarding.");
1.50      markus    939:                } else {
1.31      markus    940:                        packet_disconnect("Protocol error waiting for X11 forwarding");
1.50      markus    941:                }
1.31      markus    942:        }
                    943:        /* Tell the packet module whether this is an interactive session. */
1.80      markus    944:        packet_set_interactive(interactive);
1.31      markus    945:
                    946:        /* Request authentication agent forwarding if appropriate. */
1.70      markus    947:        check_agent_present();
                    948:
1.31      markus    949:        if (options.forward_agent) {
                    950:                debug("Requesting authentication agent forwarding.");
                    951:                auth_request_forwarding();
                    952:
                    953:                /* Read response from the server. */
                    954:                type = packet_read(&plen);
                    955:                packet_integrity_check(plen, 0, type);
                    956:                if (type != SSH_SMSG_SUCCESS)
                    957:                        log("Warning: Remote host denied authentication agent forwarding.");
                    958:        }
                    959:
1.70      markus    960:        /* Initiate port forwardings. */
                    961:        ssh_init_forwarding();
1.34      markus    962:
                    963:        /* If requested, let ssh continue in the background. */
1.48      markus    964:        if (fork_after_authentication_flag)
1.34      markus    965:                if (daemon(1, 1) < 0)
                    966:                        fatal("daemon() failed: %.200s", strerror(errno));
1.31      markus    967:
1.33      markus    968:        /*
                    969:         * If a command was specified on the command line, execute the
                    970:         * command now. Otherwise request the server to start a shell.
                    971:         */
1.31      markus    972:        if (buffer_len(&command) > 0) {
                    973:                int len = buffer_len(&command);
                    974:                if (len > 900)
                    975:                        len = 900;
                    976:                debug("Sending command: %.*s", len, buffer_ptr(&command));
                    977:                packet_start(SSH_CMSG_EXEC_CMD);
                    978:                packet_put_string(buffer_ptr(&command), buffer_len(&command));
                    979:                packet_send();
                    980:                packet_write_wait();
                    981:        } else {
                    982:                debug("Requesting shell.");
                    983:                packet_start(SSH_CMSG_EXEC_SHELL);
                    984:                packet_send();
                    985:                packet_write_wait();
                    986:        }
                    987:
                    988:        /* Enter the interactive session. */
1.119     stevesk   989:        return client_loop(have_tty, tty_flag ?
                    990:            options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1.45      markus    991: }
                    992:
1.126     itojun    993: static void
1.89      markus    994: client_subsystem_reply(int type, int plen, void *ctxt)
                    995: {
                    996:        int id, len;
                    997:
                    998:        id = packet_get_int();
                    999:        len = buffer_len(&command);
1.100     markus   1000:        if (len > 900)
                   1001:                len = 900;
1.89      markus   1002:        packet_done();
                   1003:        if (type == SSH2_MSG_CHANNEL_FAILURE)
                   1004:                fatal("Request for subsystem '%.*s' failed on channel %d",
                   1005:                    len, buffer_ptr(&command), id);
                   1006: }
                   1007:
1.143     markus   1008: /* request pty/x11/agent/tcpfwd/shell for channel */
1.126     itojun   1009: static void
1.143     markus   1010: ssh_session2_setup(int id, void *arg)
1.45      markus   1011: {
                   1012:        int len;
1.80      markus   1013:        int interactive = 0;
1.115     stevesk  1014:        struct termios tio;
1.80      markus   1015:
1.143     markus   1016:        debug("ssh_session2_setup: id %d", id);
1.31      markus   1017:
1.45      markus   1018:        if (tty_flag) {
                   1019:                struct winsize ws;
                   1020:                char *cp;
                   1021:                cp = getenv("TERM");
                   1022:                if (!cp)
                   1023:                        cp = "";
                   1024:                /* Store window size in the packet. */
                   1025:                if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
                   1026:                        memset(&ws, 0, sizeof(ws));
                   1027:
                   1028:                channel_request_start(id, "pty-req", 0);
                   1029:                packet_put_cstring(cp);
                   1030:                packet_put_int(ws.ws_col);
                   1031:                packet_put_int(ws.ws_row);
                   1032:                packet_put_int(ws.ws_xpixel);
                   1033:                packet_put_int(ws.ws_ypixel);
1.115     stevesk  1034:                tio = get_saved_tio();
                   1035:                tty_make_modes(/*ignored*/ 0, &tio);
1.45      markus   1036:                packet_send();
1.80      markus   1037:                interactive = 1;
1.45      markus   1038:                /* XXX wait for reply */
                   1039:        }
1.50      markus   1040:        if (options.forward_x11 &&
                   1041:            getenv("DISPLAY") != NULL) {
                   1042:                char proto[512], data[512];
                   1043:                /* Get reasonable local authentication information. */
                   1044:                x11_get_proto(proto, sizeof proto, data, sizeof data);
                   1045:                /* Request forwarding with authentication spoofing. */
                   1046:                debug("Requesting X11 forwarding with authentication spoofing.");
                   1047:                x11_request_forwarding_with_spoofing(id, proto, data);
1.80      markus   1048:                interactive = 1;
1.50      markus   1049:                /* XXX wait for reply */
                   1050:        }
                   1051:
1.70      markus   1052:        check_agent_present();
                   1053:        if (options.forward_agent) {
                   1054:                debug("Requesting authentication agent forwarding.");
                   1055:                channel_request_start(id, "auth-agent-req@openssh.com", 0);
                   1056:                packet_send();
                   1057:        }
                   1058:
1.45      markus   1059:        len = buffer_len(&command);
                   1060:        if (len > 0) {
                   1061:                if (len > 900)
                   1062:                        len = 900;
1.85      djm      1063:                if (subsystem_flag) {
                   1064:                        debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
1.89      markus   1065:                        channel_request_start(id, "subsystem", /*want reply*/ 1);
                   1066:                        /* register callback for reply */
                   1067:                        /* XXX we asume that client_loop has already been called */
                   1068:                        dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
                   1069:                        dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
1.85      djm      1070:                } else {
                   1071:                        debug("Sending command: %.*s", len, buffer_ptr(&command));
                   1072:                        channel_request_start(id, "exec", 0);
                   1073:                }
1.100     markus   1074:                packet_put_string(buffer_ptr(&command), buffer_len(&command));
1.45      markus   1075:                packet_send();
                   1076:        } else {
                   1077:                channel_request(id, "shell", 0);
                   1078:        }
                   1079:        /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
1.90      markus   1080:
1.45      markus   1081:        /* register different callback, etc. XXX */
1.80      markus   1082:        packet_set_interactive(interactive);
1.45      markus   1083: }
                   1084:
1.143     markus   1085: /* open new channel for a session */
1.126     itojun   1086: static int
1.143     markus   1087: ssh_session2_open(void)
1.45      markus   1088: {
1.118     markus   1089:        Channel *c;
                   1090:        int window, packetmax, in, out, err;
1.60      markus   1091:
1.62      markus   1092:        if (stdin_null_flag) {
1.93      itojun   1093:                in = open(_PATH_DEVNULL, O_RDONLY);
1.62      markus   1094:        } else {
                   1095:                in = dup(STDIN_FILENO);
                   1096:        }
1.60      markus   1097:        out = dup(STDOUT_FILENO);
                   1098:        err = dup(STDERR_FILENO);
1.45      markus   1099:
                   1100:        if (in < 0 || out < 0 || err < 0)
1.62      markus   1101:                fatal("dup() in/out/err failed");
1.45      markus   1102:
1.69      markus   1103:        /* enable nonblocking unless tty */
                   1104:        if (!isatty(in))
                   1105:                set_nonblock(in);
                   1106:        if (!isatty(out))
                   1107:                set_nonblock(out);
                   1108:        if (!isatty(err))
                   1109:                set_nonblock(err);
                   1110:
1.65      markus   1111:        window = CHAN_SES_WINDOW_DEFAULT;
                   1112:        packetmax = CHAN_SES_PACKET_DEFAULT;
                   1113:        if (!tty_flag) {
1.45      markus   1114:                window *= 2;
1.65      markus   1115:                packetmax *=2;
1.45      markus   1116:        }
1.118     markus   1117:        c = channel_new(
1.45      markus   1118:            "session", SSH_CHANNEL_OPENING, in, out, err,
1.65      markus   1119:            window, packetmax, CHAN_EXTENDED_WRITE,
1.69      markus   1120:            xstrdup("client-session"), /*nonblock*/0);
1.118     markus   1121:        if (c == NULL)
1.143     markus   1122:                fatal("ssh_session2_open: channel_new failed");
1.45      markus   1123:
1.143     markus   1124:        debug3("ssh_session2_open: channel_new: %d", c->self);
1.106     markus   1125:
1.122     markus   1126:        channel_send_open(c->self);
1.143     markus   1127:        if (!no_shell_flag)
                   1128:                channel_register_callback(c->self,
                   1129:                     SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
                   1130:                     ssh_session2_setup, (void *)0);
1.106     markus   1131:
1.118     markus   1132:        return c->self;
1.106     markus   1133: }
                   1134:
1.126     itojun   1135: static int
1.106     markus   1136: ssh_session2(void)
                   1137: {
1.143     markus   1138:        int id = -1;
1.106     markus   1139:
                   1140:        /* XXX should be pre-session */
                   1141:        ssh_init_forwarding();
                   1142:
1.143     markus   1143:        if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
                   1144:                id = ssh_session2_open();
1.106     markus   1145:
                   1146:        /* If requested, let ssh continue in the background. */
                   1147:        if (fork_after_authentication_flag)
                   1148:                if (daemon(1, 1) < 0)
                   1149:                        fatal("daemon() failed: %.200s", strerror(errno));
1.31      markus   1150:
1.119     stevesk  1151:        return client_loop(tty_flag, tty_flag ?
                   1152:            options.escape_char : SSH_ESCAPECHAR_NONE, id);
1.72      markus   1153: }
                   1154:
1.126     itojun   1155: static void
1.104     markus   1156: load_public_identity_files(void)
                   1157: {
                   1158:        char *filename;
                   1159:        Key *public;
1.131     millert  1160:        int i = 0;
1.104     markus   1161:
1.127     markus   1162: #ifdef SMARTCARD
1.133     markus   1163:        if (options.smartcard_device != NULL &&
1.127     markus   1164:            options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
1.132     jakob    1165:            (public = sc_get_key(options.smartcard_device)) != NULL ) {
1.127     markus   1166:                Key *new;
                   1167:
1.131     millert  1168:                if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
                   1169:                        options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
                   1170:                memmove(&options.identity_files[2], &options.identity_files[0],
                   1171:                    sizeof(char *) * options.num_identity_files);
                   1172:                options.num_identity_files += 2;
                   1173:                i = 2;
                   1174:
1.127     markus   1175:                /* XXX ssh1 vs ssh2 */
                   1176:                new = key_new(KEY_RSA);
                   1177:                new->flags = KEY_FLAG_EXT;
                   1178:                BN_copy(new->rsa->n, public->rsa->n);
                   1179:                BN_copy(new->rsa->e, public->rsa->e);
                   1180:                RSA_set_method(new->rsa, sc_get_engine());
1.131     millert  1181:                options.identity_keys[0] = new;
                   1182:                options.identity_files[0] = xstrdup("smartcard rsa key");;
1.127     markus   1183:
                   1184:                new = key_new(KEY_RSA1);
                   1185:                new->flags = KEY_FLAG_EXT;
                   1186:                BN_copy(new->rsa->n, public->rsa->n);
                   1187:                BN_copy(new->rsa->e, public->rsa->e);
                   1188:                RSA_set_method(new->rsa, sc_get_engine());
1.131     millert  1189:                options.identity_keys[1] = new;
                   1190:                options.identity_files[1] = xstrdup("smartcard rsa1 key");
1.127     markus   1191:
                   1192:                key_free(public);
                   1193:        }
1.136     jakob    1194: #endif /* SMARTCARD */
1.131     millert  1195:        for (; i < options.num_identity_files; i++) {
                   1196:                filename = tilde_expand_filename(options.identity_files[i],
                   1197:                    original_real_uid);
                   1198:                public = key_load_public(filename, NULL);
                   1199:                debug("identity file %s type %d", filename,
                   1200:                    public ? public->type : -1);
                   1201:                xfree(options.identity_files[i]);
                   1202:                options.identity_files[i] = filename;
                   1203:                options.identity_keys[i] = public;
                   1204:        }
1.1       deraadt  1205: }