[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.358

1.358   ! djm         1: /* $OpenBSD: ssh.c,v 1.357 2011/04/17 22:42:42 djm Exp $ */
1.1       deraadt     2: /*
1.32      deraadt     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:  *
1.64      deraadt    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.
1.202     markus     17:  * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl.  All rights reserved.
1.64      deraadt    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.
1.32      deraadt    41:  */
1.1       deraadt    42:
1.293     deraadt    43: #include <sys/types.h>
1.312     djm        44: #include <sys/ioctl.h>
1.326     dtucker    45: #include <sys/param.h>
1.312     djm        46: #include <sys/queue.h>
1.259     stevesk    47: #include <sys/resource.h>
1.280     stevesk    48: #include <sys/socket.h>
1.264     stevesk    49: #include <sys/stat.h>
1.312     djm        50: #include <sys/types.h>
                     51: #include <sys/time.h>
1.352     djm        52: #include <sys/wait.h>
1.258     stevesk    53:
1.265     stevesk    54: #include <ctype.h>
1.285     stevesk    55: #include <errno.h>
1.281     stevesk    56: #include <fcntl.h>
1.286     stevesk    57: #include <netdb.h>
1.258     stevesk    58: #include <paths.h>
1.279     stevesk    59: #include <pwd.h>
1.263     stevesk    60: #include <signal.h>
1.287     stevesk    61: #include <stddef.h>
1.291     stevesk    62: #include <stdio.h>
1.290     stevesk    63: #include <stdlib.h>
1.289     stevesk    64: #include <string.h>
1.288     stevesk    65: #include <unistd.h>
1.49      markus     66:
                     67: #include <openssl/evp.h>
1.72      markus     68: #include <openssl/err.h>
1.1       deraadt    69:
1.293     deraadt    70: #include "xmalloc.h"
1.84      markus     71: #include "ssh.h"
                     72: #include "ssh1.h"
                     73: #include "ssh2.h"
1.341     djm        74: #include "canohost.h"
1.84      markus     75: #include "compat.h"
                     76: #include "cipher.h"
1.1       deraadt    77: #include "packet.h"
                     78: #include "buffer.h"
1.123     markus     79: #include "channels.h"
1.49      markus     80: #include "key.h"
1.58      markus     81: #include "authfd.h"
1.49      markus     82: #include "authfile.h"
1.83      markus     83: #include "pathnames.h"
1.214     djm        84: #include "dispatch.h"
1.81      markus     85: #include "clientloop.h"
1.84      markus     86: #include "log.h"
                     87: #include "readconf.h"
                     88: #include "sshconnect.h"
                     89: #include "misc.h"
1.95      markus     90: #include "kex.h"
                     91: #include "mac.h"
1.213     deraadt    92: #include "sshpty.h"
1.212     djm        93: #include "match.h"
1.214     djm        94: #include "msg.h"
1.225     dtucker    95: #include "uidswap.h"
1.327     andreas    96: #include "roaming.h"
1.278     stevesk    97: #include "version.h"
1.49      markus     98:
1.333     markus     99: #ifdef ENABLE_PKCS11
                    100: #include "ssh-pkcs11.h"
1.137     jakob     101: #endif
1.127     markus    102:
1.49      markus    103: extern char *__progname;
1.1       deraadt   104:
1.316     djm       105: /* Flag indicating whether debug mode is on.  May be set on the command line. */
1.1       deraadt   106: int debug_flag = 0;
                    107:
1.46      markus    108: /* Flag indicating whether a tty should be allocated */
1.1       deraadt   109: int tty_flag = 0;
1.79      markus    110: int no_tty_flag = 0;
                    111: int force_tty_flag = 0;
1.1       deraadt   112:
1.45      markus    113: /* don't exec a shell */
                    114: int no_shell_flag = 0;
                    115:
1.33      markus    116: /*
                    117:  * Flag indicating that nothing should be read from stdin.  This can be set
                    118:  * on the command line.
                    119:  */
1.1       deraadt   120: int stdin_null_flag = 0;
                    121:
1.33      markus    122: /*
1.344     djm       123:  * Flag indicating that the current process should be backgrounded and
                    124:  * a new slave launched in the foreground for ControlPersist.
                    125:  */
                    126: int need_controlpersist_detach = 0;
                    127:
                    128: /* Copies of flags for ControlPersist foreground slave */
                    129: int ostdin_null_flag, ono_shell_flag, ono_tty_flag, otty_flag;
                    130:
                    131: /*
1.33      markus    132:  * Flag indicating that ssh should fork after authentication.  This is useful
1.172     deraadt   133:  * so that the passphrase can be entered manually, and then ssh goes to the
1.33      markus    134:  * background.
                    135:  */
1.1       deraadt   136: int fork_after_authentication_flag = 0;
                    137:
1.331     dtucker   138: /* forward stdio to remote host and port */
                    139: char *stdio_forward_host = NULL;
                    140: int stdio_forward_port = 0;
                    141:
1.33      markus    142: /*
                    143:  * General data structure for command line options and options configurable
                    144:  * in configuration files.  See readconf.h.
                    145:  */
1.1       deraadt   146: Options options;
                    147:
1.139     markus    148: /* optional user configfile */
                    149: char *config = NULL;
                    150:
1.33      markus    151: /*
                    152:  * Name of the host we are connecting to.  This is the name given on the
                    153:  * command line, or the HostName specified for the user-supplied name in a
                    154:  * configuration file.
                    155:  */
1.1       deraadt   156: char *host;
                    157:
1.22      provos    158: /* socket address the host resolves to */
1.37      markus    159: struct sockaddr_storage hostaddr;
1.1       deraadt   160:
1.112     markus    161: /* Private host keys. */
1.173     markus    162: Sensitive sensitive_data;
1.1       deraadt   163:
1.10      dugsong   164: /* Original real UID. */
                    165: uid_t original_real_uid;
1.177     markus    166: uid_t original_effective_uid;
1.1       deraadt   167:
1.45      markus    168: /* command to be executed */
                    169: Buffer command;
                    170:
1.85      djm       171: /* Should we execute a command or invoke a subsystem? */
                    172: int subsystem_flag = 0;
                    173:
1.170     markus    174: /* # of replies received for global requests */
1.315     djm       175: static int remote_forward_confirms_received = 0;
1.170     markus    176:
1.313     djm       177: /* mux.c */
                    178: extern int muxserver_sock;
                    179: extern u_int muxclient_command;
                    180:
1.186     djm       181:
1.1       deraadt   182: /* Prints a help message to the user.  This function never returns. */
                    183:
1.126     itojun    184: static void
1.93      itojun    185: usage(void)
1.1       deraadt   186: {
1.208     markus    187:        fprintf(stderr,
1.321     jmc       188: "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
1.251     jmc       189: "           [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
1.334     jmc       190: "           [-I pkcs11] [-i identity_file]\n"
                    191: "           [-L [bind_address:]port:host:hostport]\n"
1.232     djm       192: "           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
1.233     jmc       193: "           [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
1.331     dtucker   194: "           [-W host:port] [-w local_tun[:remote_tun]]\n"
                    195: "           [user@]hostname [command]\n"
1.208     markus    196:        );
1.257     dtucker   197:        exit(255);
1.1       deraadt   198: }
                    199:
1.126     itojun    200: static int ssh_session(void);
                    201: static int ssh_session2(void);
                    202: static void load_public_identity_files(void);
1.352     djm       203: static void main_sigchld_handler(int);
1.312     djm       204:
                    205: /* from muxclient.c */
                    206: void muxclient(const char *);
                    207: void muxserver_listen(void);
1.45      markus    208:
1.32      deraadt   209: /*
                    210:  * Main program for the ssh client.
                    211:  */
1.2       provos    212: int
                    213: main(int ac, char **av)
1.1       deraadt   214: {
1.326     dtucker   215:        int i, r, opt, exit_status, use_syslog;
1.356     djm       216:        char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg;
1.358   ! djm       217:        char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
1.31      markus    218:        struct stat st;
1.98      markus    219:        struct passwd *pw;
1.303     djm       220:        int dummy, timeout_ms;
1.144     stevesk   221:        extern int optind, optreset;
                    222:        extern char *optarg;
1.244     djm       223:        struct servent *sp;
1.232     djm       224:        Forward fwd;
1.250     djm       225:
                    226:        /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
                    227:        sanitise_stdfd();
1.31      markus    228:
1.33      markus    229:        /*
1.346     djm       230:         * Discard other fds that are hanging around. These can cause problem
                    231:         * with backgrounded ssh processes started by ControlPersist.
                    232:         */
                    233:        closefrom(STDERR_FILENO + 1);
                    234:
                    235:        /*
1.33      markus    236:         * Save the original real uid.  It will be needed later (uid-swapping
                    237:         * may clobber the real uid).
                    238:         */
1.31      markus    239:        original_real_uid = getuid();
                    240:        original_effective_uid = geteuid();
                    241:
1.184     stevesk   242:        /*
                    243:         * Use uid-swapping to give up root privileges for the duration of
                    244:         * option processing.  We will re-instantiate the rights when we are
                    245:         * ready to create the privileged port, and will permanently drop
                    246:         * them when the port has been created (actually, when the connection
                    247:         * has been made, as we may need to create the port several times).
                    248:         */
                    249:        PRIV_END;
                    250:
1.31      markus    251:        /* If we are installed setuid root be careful to not drop core. */
                    252:        if (original_real_uid != original_effective_uid) {
                    253:                struct rlimit rlim;
                    254:                rlim.rlim_cur = rlim.rlim_max = 0;
                    255:                if (setrlimit(RLIMIT_CORE, &rlim) < 0)
                    256:                        fatal("setrlimit failed: %.100s", strerror(errno));
1.1       deraadt   257:        }
1.107     markus    258:        /* Get user data. */
                    259:        pw = getpwuid(original_real_uid);
                    260:        if (!pw) {
1.191     itojun    261:                logit("You don't exist, go away!");
1.257     dtucker   262:                exit(255);
1.107     markus    263:        }
                    264:        /* Take a copy of the returned structure. */
                    265:        pw = pwcopy(pw);
1.31      markus    266:
1.33      markus    267:        /*
                    268:         * Set our umask to something reasonable, as some files are created
                    269:         * with the default umask.  This will make them world-readable but
                    270:         * writable only by the owner, which is ok for all files for which we
                    271:         * don't set the modes explicitly.
                    272:         */
1.31      markus    273:        umask(022);
                    274:
1.316     djm       275:        /*
                    276:         * Initialize option structure to indicate that no values have been
                    277:         * set.
                    278:         */
1.31      markus    279:        initialize_options(&options);
                    280:
                    281:        /* Parse command-line arguments. */
                    282:        host = NULL;
1.320     djm       283:        use_syslog = 0;
1.325     markus    284:        argv0 = av[0];
1.31      markus    285:
1.266     djm       286:  again:
1.316     djm       287:        while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
1.331     dtucker   288:            "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
1.31      markus    289:                switch (opt) {
1.91      jakob     290:                case '1':
                    291:                        options.protocol = SSH_PROTO_1;
                    292:                        break;
1.47      markus    293:                case '2':
                    294:                        options.protocol = SSH_PROTO_2;
                    295:                        break;
1.37      markus    296:                case '4':
1.196     djm       297:                        options.address_family = AF_INET;
1.37      markus    298:                        break;
                    299:                case '6':
1.196     djm       300:                        options.address_family = AF_INET6;
1.37      markus    301:                        break;
1.31      markus    302:                case 'n':
                    303:                        stdin_null_flag = 1;
                    304:                        break;
                    305:                case 'f':
                    306:                        fork_after_authentication_flag = 1;
                    307:                        stdin_null_flag = 1;
                    308:                        break;
                    309:                case 'x':
                    310:                        options.forward_x11 = 0;
                    311:                        break;
                    312:                case 'X':
                    313:                        options.forward_x11 = 1;
                    314:                        break;
1.320     djm       315:                case 'y':
                    316:                        use_syslog = 1;
                    317:                        break;
1.202     markus    318:                case 'Y':
                    319:                        options.forward_x11 = 1;
                    320:                        options.forward_x11_trusted = 1;
                    321:                        break;
1.31      markus    322:                case 'g':
                    323:                        options.gateway_ports = 1;
                    324:                        break;
1.229     djm       325:                case 'O':
1.332     djm       326:                        if (stdio_forward_host != NULL)
                    327:                                fatal("Cannot specify multiplexing "
                    328:                                    "command with -W");
                    329:                        else if (muxclient_command != 0)
                    330:                                fatal("Multiplexing command already specified");
1.229     djm       331:                        if (strcmp(optarg, "check") == 0)
1.312     djm       332:                                muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
1.338     markus    333:                        else if (strcmp(optarg, "forward") == 0)
                    334:                                muxclient_command = SSHMUX_COMMAND_FORWARD;
1.229     djm       335:                        else if (strcmp(optarg, "exit") == 0)
1.312     djm       336:                                muxclient_command = SSHMUX_COMMAND_TERMINATE;
1.357     djm       337:                        else if (strcmp(optarg, "stop") == 0)
                    338:                                muxclient_command = SSHMUX_COMMAND_STOP;
1.229     djm       339:                        else
                    340:                                fatal("Invalid multiplex command.");
                    341:                        break;
1.183     stevesk   342:                case 'P':       /* deprecated */
1.31      markus    343:                        options.use_privileged_port = 0;
                    344:                        break;
                    345:                case 'a':
                    346:                        options.forward_agent = 0;
1.53      markus    347:                        break;
                    348:                case 'A':
                    349:                        options.forward_agent = 1;
1.31      markus    350:                        break;
                    351:                case 'k':
1.204     dtucker   352:                        options.gss_deleg_creds = 0;
1.297     djm       353:                        break;
                    354:                case 'K':
                    355:                        options.gss_authentication = 1;
                    356:                        options.gss_deleg_creds = 1;
1.31      markus    357:                        break;
                    358:                case 'i':
                    359:                        if (stat(optarg, &st) < 0) {
1.128     fgsch     360:                                fprintf(stderr, "Warning: Identity file %s "
1.231     otto      361:                                    "not accessible: %s.\n", optarg,
                    362:                                    strerror(errno));
1.31      markus    363:                                break;
                    364:                        }
1.128     fgsch     365:                        if (options.num_identity_files >=
                    366:                            SSH_MAX_IDENTITY_FILES)
                    367:                                fatal("Too many identity files specified "
                    368:                                    "(max %d)", SSH_MAX_IDENTITY_FILES);
                    369:                        options.identity_files[options.num_identity_files++] =
                    370:                            xstrdup(optarg);
1.31      markus    371:                        break;
1.127     markus    372:                case 'I':
1.333     markus    373: #ifdef ENABLE_PKCS11
                    374:                        options.pkcs11_provider = xstrdup(optarg);
1.137     jakob     375: #else
1.333     markus    376:                        fprintf(stderr, "no support for PKCS#11.\n");
1.137     jakob     377: #endif
1.127     markus    378:                        break;
1.31      markus    379:                case 't':
1.79      markus    380:                        if (tty_flag)
                    381:                                force_tty_flag = 1;
1.31      markus    382:                        tty_flag = 1;
                    383:                        break;
                    384:                case 'v':
1.197     markus    385:                        if (debug_flag == 0) {
1.66      markus    386:                                debug_flag = 1;
                    387:                                options.log_level = SYSLOG_LEVEL_DEBUG1;
1.197     markus    388:                        } else {
                    389:                                if (options.log_level < SYSLOG_LEVEL_DEBUG3)
                    390:                                        options.log_level++;
1.66      markus    391:                                break;
1.197     markus    392:                        }
1.227     deraadt   393:                        /* FALLTHROUGH */
1.31      markus    394:                case 'V':
1.209     markus    395:                        fprintf(stderr, "%s, %s\n",
                    396:                            SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
1.31      markus    397:                        if (opt == 'V')
                    398:                                exit(0);
                    399:                        break;
1.255     reyk      400:                case 'w':
1.256     reyk      401:                        if (options.tun_open == -1)
                    402:                                options.tun_open = SSH_TUNMODE_DEFAULT;
1.255     reyk      403:                        options.tun_local = a2tun(optarg, &options.tun_remote);
1.256     reyk      404:                        if (options.tun_local == SSH_TUNID_ERR) {
1.316     djm       405:                                fprintf(stderr,
                    406:                                    "Bad tun device '%s'\n", optarg);
1.257     dtucker   407:                                exit(255);
1.255     reyk      408:                        }
                    409:                        break;
1.331     dtucker   410:                case 'W':
1.332     djm       411:                        if (stdio_forward_host != NULL)
                    412:                                fatal("stdio forward already specified");
                    413:                        if (muxclient_command != 0)
                    414:                                fatal("Cannot specify stdio forward with -O");
1.331     dtucker   415:                        if (parse_forward(&fwd, optarg, 1, 0)) {
                    416:                                stdio_forward_host = fwd.listen_host;
                    417:                                stdio_forward_port = fwd.listen_port;
                    418:                                xfree(fwd.connect_host);
                    419:                        } else {
                    420:                                fprintf(stderr,
                    421:                                    "Bad stdio forwarding specification '%s'\n",
                    422:                                    optarg);
                    423:                                exit(255);
                    424:                        }
                    425:                        no_tty_flag = 1;
                    426:                        no_shell_flag = 1;
                    427:                        options.clear_forwardings = 1;
                    428:                        options.exit_on_forward_failure = 1;
                    429:                        break;
1.31      markus    430:                case 'q':
                    431:                        options.log_level = SYSLOG_LEVEL_QUIET;
                    432:                        break;
                    433:                case 'e':
                    434:                        if (optarg[0] == '^' && optarg[2] == 0 &&
1.128     fgsch     435:                            (u_char) optarg[1] >= 64 &&
                    436:                            (u_char) optarg[1] < 128)
1.78      markus    437:                                options.escape_char = (u_char) optarg[1] & 31;
1.31      markus    438:                        else if (strlen(optarg) == 1)
1.78      markus    439:                                options.escape_char = (u_char) optarg[0];
1.31      markus    440:                        else if (strcmp(optarg, "none") == 0)
1.119     stevesk   441:                                options.escape_char = SSH_ESCAPECHAR_NONE;
1.31      markus    442:                        else {
1.128     fgsch     443:                                fprintf(stderr, "Bad escape character '%s'.\n",
                    444:                                    optarg);
1.257     dtucker   445:                                exit(255);
1.31      markus    446:                        }
                    447:                        break;
                    448:                case 'c':
1.49      markus    449:                        if (ciphers_valid(optarg)) {
                    450:                                /* SSH2 only */
                    451:                                options.ciphers = xstrdup(optarg);
1.224     markus    452:                                options.cipher = SSH_CIPHER_INVALID;
1.49      markus    453:                        } else {
                    454:                                /* SSH1 only */
1.74      markus    455:                                options.cipher = cipher_number(optarg);
                    456:                                if (options.cipher == -1) {
1.128     fgsch     457:                                        fprintf(stderr,
                    458:                                            "Unknown cipher type '%s'\n",
                    459:                                            optarg);
1.257     dtucker   460:                                        exit(255);
1.49      markus    461:                                }
1.128     fgsch     462:                                if (options.cipher == SSH_CIPHER_3DES)
1.74      markus    463:                                        options.ciphers = "3des-cbc";
1.128     fgsch     464:                                else if (options.cipher == SSH_CIPHER_BLOWFISH)
1.74      markus    465:                                        options.ciphers = "blowfish-cbc";
1.128     fgsch     466:                                else
1.74      markus    467:                                        options.ciphers = (char *)-1;
1.95      markus    468:                        }
                    469:                        break;
                    470:                case 'm':
                    471:                        if (mac_valid(optarg))
                    472:                                options.macs = xstrdup(optarg);
                    473:                        else {
1.128     fgsch     474:                                fprintf(stderr, "Unknown mac type '%s'\n",
                    475:                                    optarg);
1.257     dtucker   476:                                exit(255);
1.31      markus    477:                        }
                    478:                        break;
1.214     djm       479:                case 'M':
1.242     djm       480:                        if (options.control_master == SSHCTL_MASTER_YES)
                    481:                                options.control_master = SSHCTL_MASTER_ASK;
                    482:                        else
                    483:                                options.control_master = SSHCTL_MASTER_YES;
1.214     djm       484:                        break;
1.31      markus    485:                case 'p':
1.113     stevesk   486:                        options.port = a2port(optarg);
1.323     djm       487:                        if (options.port <= 0) {
1.109     markus    488:                                fprintf(stderr, "Bad port '%s'\n", optarg);
1.257     dtucker   489:                                exit(255);
1.109     markus    490:                        }
1.31      markus    491:                        break;
                    492:                case 'l':
                    493:                        options.user = optarg;
                    494:                        break;
1.141     stevesk   495:
                    496:                case 'L':
1.324     djm       497:                        if (parse_forward(&fwd, optarg, 0, 0))
1.232     djm       498:                                add_local_forward(&options, &fwd);
                    499:                        else {
1.128     fgsch     500:                                fprintf(stderr,
1.232     djm       501:                                    "Bad local forwarding specification '%s'\n",
1.128     fgsch     502:                                    optarg);
1.257     dtucker   503:                                exit(255);
1.31      markus    504:                        }
1.232     djm       505:                        break;
                    506:
                    507:                case 'R':
1.324     djm       508:                        if (parse_forward(&fwd, optarg, 0, 1)) {
1.232     djm       509:                                add_remote_forward(&options, &fwd);
                    510:                        } else {
1.128     fgsch     511:                                fprintf(stderr,
1.232     djm       512:                                    "Bad remote forwarding specification "
                    513:                                    "'%s'\n", optarg);
1.257     dtucker   514:                                exit(255);
1.31      markus    515:                        }
                    516:                        break;
1.108     markus    517:
                    518:                case 'D':
1.324     djm       519:                        if (parse_forward(&fwd, optarg, 1, 0)) {
1.322     stevesk   520:                                add_local_forward(&options, &fwd);
1.232     djm       521:                        } else {
1.322     stevesk   522:                                fprintf(stderr,
                    523:                                    "Bad dynamic forwarding specification "
                    524:                                    "'%s'\n", optarg);
1.257     dtucker   525:                                exit(255);
1.109     markus    526:                        }
1.108     markus    527:                        break;
                    528:
1.31      markus    529:                case 'C':
                    530:                        options.compression = 1;
                    531:                        break;
1.45      markus    532:                case 'N':
                    533:                        no_shell_flag = 1;
                    534:                        no_tty_flag = 1;
                    535:                        break;
                    536:                case 'T':
                    537:                        no_tty_flag = 1;
                    538:                        break;
1.31      markus    539:                case 'o':
                    540:                        dummy = 1;
1.205     markus    541:                        line = xstrdup(optarg);
1.128     fgsch     542:                        if (process_config_line(&options, host ? host : "",
1.205     markus    543:                            line, "command-line", 0, &dummy) != 0)
1.257     dtucker   544:                                exit(255);
1.205     markus    545:                        xfree(line);
1.31      markus    546:                        break;
1.85      djm       547:                case 's':
                    548:                        subsystem_flag = 1;
1.117     markus    549:                        break;
1.214     djm       550:                case 'S':
                    551:                        if (options.control_path != NULL)
                    552:                                free(options.control_path);
                    553:                        options.control_path = xstrdup(optarg);
                    554:                        break;
1.117     markus    555:                case 'b':
                    556:                        options.bind_address = optarg;
1.85      djm       557:                        break;
1.139     markus    558:                case 'F':
                    559:                        config = optarg;
                    560:                        break;
1.31      markus    561:                default:
                    562:                        usage();
1.1       deraadt   563:                }
1.31      markus    564:        }
                    565:
1.128     fgsch     566:        ac -= optind;
                    567:        av += optind;
                    568:
1.329     guenther  569:        if (ac > 0 && !host) {
1.188     markus    570:                if (strrchr(*av, '@')) {
1.128     fgsch     571:                        p = xstrdup(*av);
1.188     markus    572:                        cp = strrchr(p, '@');
1.128     fgsch     573:                        if (cp == NULL || cp == p)
                    574:                                usage();
                    575:                        options.user = p;
                    576:                        *cp = '\0';
                    577:                        host = ++cp;
                    578:                } else
                    579:                        host = *av;
1.189     millert   580:                if (ac > 1) {
                    581:                        optind = optreset = 1;
1.128     fgsch     582:                        goto again;
                    583:                }
1.189     millert   584:                ac--, av++;
1.128     fgsch     585:        }
                    586:
1.31      markus    587:        /* Check that we got a host name. */
                    588:        if (!host)
                    589:                usage();
                    590:
1.350     djm       591:        OpenSSL_add_all_algorithms();
1.72      markus    592:        ERR_load_crypto_strings();
1.31      markus    593:
                    594:        /* Initialize the command to execute on remote host. */
                    595:        buffer_init(&command);
1.1       deraadt   596:
1.33      markus    597:        /*
                    598:         * Save the command to execute on the remote host in a buffer. There
                    599:         * is no limit on the length of the command, except by the maximum
                    600:         * packet size.  Also sets the tty flag if there is no command.
                    601:         */
1.128     fgsch     602:        if (!ac) {
1.31      markus    603:                /* No command specified - execute shell on a tty. */
                    604:                tty_flag = 1;
1.85      djm       605:                if (subsystem_flag) {
1.128     fgsch     606:                        fprintf(stderr,
                    607:                            "You must specify a subsystem to invoke.\n");
1.85      djm       608:                        usage();
                    609:                }
1.31      markus    610:        } else {
1.128     fgsch     611:                /* A command has been specified.  Store it into the buffer. */
                    612:                for (i = 0; i < ac; i++) {
                    613:                        if (i)
1.31      markus    614:                                buffer_append(&command, " ", 1);
                    615:                        buffer_append(&command, av[i], strlen(av[i]));
                    616:                }
                    617:        }
                    618:
                    619:        /* Cannot fork to background if no command. */
1.316     djm       620:        if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
                    621:            !no_shell_flag)
                    622:                fatal("Cannot fork into background without a command "
                    623:                    "to execute.");
1.31      markus    624:
                    625:        /* Allocate a tty by default if no command specified. */
                    626:        if (buffer_len(&command) == 0)
                    627:                tty_flag = 1;
                    628:
1.180     deraadt   629:        /* Force no tty */
1.336     djm       630:        if (no_tty_flag || muxclient_command != 0)
1.75      markus    631:                tty_flag = 0;
1.31      markus    632:        /* Do not allocate a tty if stdin is not a tty. */
1.236     djm       633:        if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
1.31      markus    634:                if (tty_flag)
1.316     djm       635:                        logit("Pseudo-terminal will not be allocated because "
                    636:                            "stdin is not a terminal.");
1.31      markus    637:                tty_flag = 0;
                    638:        }
1.45      markus    639:
1.101     markus    640:        /*
                    641:         * Initialize "log" output.  Since we are the client all output
                    642:         * actually goes to stderr.
                    643:         */
1.325     markus    644:        log_init(argv0,
1.316     djm       645:            options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
1.320     djm       646:            SYSLOG_FACILITY_USER, !use_syslog);
1.31      markus    647:
1.139     markus    648:        /*
                    649:         * Read per-user configuration file.  Ignore the system wide config
                    650:         * file if the user specifies a config file on the command line.
                    651:         */
                    652:        if (config != NULL) {
1.211     djm       653:                if (!read_config_file(config, host, &options, 0))
1.142     stevesk   654:                        fatal("Can't open user config file %.100s: "
                    655:                            "%.100s", config, strerror(errno));
1.295     stevesk   656:        } else {
1.326     dtucker   657:                r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
1.139     markus    658:                    _PATH_SSH_USER_CONFFILE);
1.326     dtucker   659:                if (r > 0 && (size_t)r < sizeof(buf))
                    660:                        (void)read_config_file(buf, host, &options, 1);
1.139     markus    661:
1.145     markus    662:                /* Read systemwide configuration file after use config. */
1.223     deraadt   663:                (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
1.210     djm       664:                    &options, 0);
1.139     markus    665:        }
1.31      markus    666:
                    667:        /* Fill configuration defaults. */
                    668:        fill_default_options(&options);
                    669:
1.196     djm       670:        channel_set_af(options.address_family);
                    671:
1.31      markus    672:        /* reinit */
1.325     markus    673:        log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
1.31      markus    674:
                    675:        if (options.user == NULL)
                    676:                options.user = xstrdup(pw->pw_name);
                    677:
1.317     dtucker   678:        /* Get default port if port has not been set. */
                    679:        if (options.port == 0) {
                    680:                sp = getservbyname(SSH_SERVICE_NAME, "tcp");
                    681:                options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
                    682:        }
                    683:
1.356     djm       684:        /* preserve host name given on command line for %n expansion */
                    685:        host_arg = host;
1.343     djm       686:        if (options.hostname != NULL) {
                    687:                host = percent_expand(options.hostname,
                    688:                    "h", host, (char *)NULL);
                    689:        }
                    690:
1.358   ! djm       691:        if (gethostname(thishost, sizeof(thishost)) == -1)
        !           692:                fatal("gethostname: %s", strerror(errno));
        !           693:        strlcpy(shorthost, thishost, sizeof(shorthost));
        !           694:        shorthost[strcspn(thishost, ".")] = '\0';
        !           695:        snprintf(portstr, sizeof(portstr), "%d", options.port);
        !           696:
1.317     dtucker   697:        if (options.local_command != NULL) {
                    698:                debug3("expanding LocalCommand: %s", options.local_command);
                    699:                cp = options.local_command;
                    700:                options.local_command = percent_expand(cp, "d", pw->pw_dir,
1.356     djm       701:                    "h", host, "l", thishost, "n", host_arg, "r", options.user,
1.358   ! djm       702:                    "p", portstr, "u", pw->pw_name, "L", shorthost,
        !           703:                    (char *)NULL);
1.317     dtucker   704:                debug3("expanded LocalCommand: %s", options.local_command);
                    705:                xfree(cp);
                    706:        }
1.195     markus    707:
                    708:        /* force lowercase for hostkey matching */
                    709:        if (options.host_key_alias != NULL) {
                    710:                for (p = options.host_key_alias; *p; p++)
                    711:                        if (isupper(*p))
1.271     deraadt   712:                                *p = (char)tolower(*p);
1.246     djm       713:        }
                    714:
1.190     markus    715:        if (options.proxy_command != NULL &&
1.304     dtucker   716:            strcmp(options.proxy_command, "none") == 0) {
                    717:                xfree(options.proxy_command);
1.190     markus    718:                options.proxy_command = NULL;
1.304     dtucker   719:        }
1.245     djm       720:        if (options.control_path != NULL &&
1.304     dtucker   721:            strcmp(options.control_path, "none") == 0) {
                    722:                xfree(options.control_path);
1.245     djm       723:                options.control_path = NULL;
1.304     dtucker   724:        }
1.31      markus    725:
1.214     djm       726:        if (options.control_path != NULL) {
1.241     djm       727:                cp = tilde_expand_filename(options.control_path,
                    728:                    original_real_uid);
1.304     dtucker   729:                xfree(options.control_path);
1.358   ! djm       730:                options.control_path = percent_expand(cp, "h", host,
        !           731:                    "l", thishost, "n", host_arg, "r", options.user,
        !           732:                    "p", portstr, "u", pw->pw_name, "L", shorthost,
        !           733:                    (char *)NULL);
1.241     djm       734:                xfree(cp);
1.214     djm       735:        }
1.312     djm       736:        if (muxclient_command != 0 && options.control_path == NULL)
1.240     djm       737:                fatal("No ControlPath specified for \"-O\" command");
1.242     djm       738:        if (options.control_path != NULL)
1.312     djm       739:                muxclient(options.control_path);
1.214     djm       740:
1.303     djm       741:        timeout_ms = options.connection_timeout * 1000;
                    742:
1.77      markus    743:        /* Open a connection to the remote host. */
1.203     djm       744:        if (ssh_connect(host, &hostaddr, options.port,
1.303     djm       745:            options.address_family, options.connection_attempts, &timeout_ms,
                    746:            options.tcp_keep_alive,
1.177     markus    747:            original_effective_uid == 0 && options.use_privileged_port,
1.179     markus    748:            options.proxy_command) != 0)
1.257     dtucker   749:                exit(255);
1.31      markus    750:
1.303     djm       751:        if (timeout_ms > 0)
                    752:                debug3("timeout: %d ms remain after connect", timeout_ms);
                    753:
1.33      markus    754:        /*
                    755:         * If we successfully made the connection, load the host private key
                    756:         * in case we will need it later for combined rsa-rhosts
                    757:         * authentication. This must be done before releasing extra
                    758:         * privileges, because the file is only readable by root.
1.174     markus    759:         * If we cannot access the private keys, load the public keys
                    760:         * instead and try to execute the ssh-keysign helper instead.
1.33      markus    761:         */
1.112     markus    762:        sensitive_data.nkeys = 0;
                    763:        sensitive_data.keys = NULL;
1.173     markus    764:        sensitive_data.external_keysign = 0;
1.178     markus    765:        if (options.rhosts_rsa_authentication ||
                    766:            options.hostbased_authentication) {
1.349     djm       767:                sensitive_data.nkeys = 7;
1.274     deraadt   768:                sensitive_data.keys = xcalloc(sensitive_data.nkeys,
1.180     deraadt   769:                    sizeof(Key));
1.177     markus    770:
                    771:                PRIV_START;
1.112     markus    772:                sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
1.276     dtucker   773:                    _PATH_HOST_KEY_FILE, "", NULL, NULL);
1.345     djm       774:                sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
                    775:                    _PATH_HOST_DSA_KEY_FILE, "", NULL);
1.349     djm       776:                sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
                    777:                    _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
                    778:                sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
1.345     djm       779:                    _PATH_HOST_RSA_KEY_FILE, "", NULL);
1.349     djm       780:                sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
1.276     dtucker   781:                    _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
1.349     djm       782:                sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
                    783:                    _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
                    784:                sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
1.276     dtucker   785:                    _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
1.177     markus    786:                PRIV_END;
1.173     markus    787:
1.181     markus    788:                if (options.hostbased_authentication == 1 &&
                    789:                    sensitive_data.keys[0] == NULL &&
1.349     djm       790:                    sensitive_data.keys[4] == NULL &&
                    791:                    sensitive_data.keys[5] == NULL &&
                    792:                    sensitive_data.keys[6] == NULL) {
1.345     djm       793:                        sensitive_data.keys[1] = key_load_cert(
                    794:                            _PATH_HOST_DSA_KEY_FILE);
                    795:                        sensitive_data.keys[2] = key_load_cert(
1.349     djm       796:                            _PATH_HOST_ECDSA_KEY_FILE);
                    797:                        sensitive_data.keys[3] = key_load_cert(
1.345     djm       798:                            _PATH_HOST_RSA_KEY_FILE);
1.349     djm       799:                        sensitive_data.keys[4] = key_load_public(
1.173     markus    800:                            _PATH_HOST_DSA_KEY_FILE, NULL);
1.349     djm       801:                        sensitive_data.keys[5] = key_load_public(
                    802:                            _PATH_HOST_ECDSA_KEY_FILE, NULL);
                    803:                        sensitive_data.keys[6] = key_load_public(
1.173     markus    804:                            _PATH_HOST_RSA_KEY_FILE, NULL);
                    805:                        sensitive_data.external_keysign = 1;
                    806:                }
1.31      markus    807:        }
1.33      markus    808:        /*
                    809:         * Get rid of any extra privileges that we may have.  We will no
                    810:         * longer need them.  Also, extra privileges could make it very hard
                    811:         * to read identity files and other non-world-readable files from the
                    812:         * user's home directory if it happens to be on a NFS volume where
                    813:         * root is mapped to nobody.
                    814:         */
1.225     dtucker   815:        if (original_effective_uid == 0) {
                    816:                PRIV_START;
                    817:                permanently_set_uid(pw);
                    818:        }
1.31      markus    819:
1.33      markus    820:        /*
                    821:         * Now that we are back to our own permissions, create ~/.ssh
1.254     djm       822:         * directory if it doesn't already exist.
1.33      markus    823:         */
1.326     dtucker   824:        r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1.316     djm       825:            strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1.326     dtucker   826:        if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
1.57      djm       827:                if (mkdir(buf, 0700) < 0)
1.31      markus    828:                        error("Could not create directory '%.200s'.", buf);
                    829:
1.104     markus    830:        /* load options.identity_files */
                    831:        load_public_identity_files();
                    832:
                    833:        /* Expand ~ in known host file names. */
                    834:        /* XXX mem-leaks: */
1.72      markus    835:        options.system_hostfile =
                    836:            tilde_expand_filename(options.system_hostfile, original_real_uid);
                    837:        options.user_hostfile =
                    838:            tilde_expand_filename(options.user_hostfile, original_real_uid);
                    839:        options.system_hostfile2 =
                    840:            tilde_expand_filename(options.system_hostfile2, original_real_uid);
                    841:        options.user_hostfile2 =
                    842:            tilde_expand_filename(options.user_hostfile2, original_real_uid);
1.149     markus    843:
                    844:        signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1.352     djm       845:        signal(SIGCHLD, main_sigchld_handler);
1.31      markus    846:
1.316     djm       847:        /* Log into the remote system.  Never returns if the login fails. */
1.303     djm       848:        ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
1.355     djm       849:            options.port, pw, timeout_ms);
1.339     djm       850:
                    851:        if (packet_connection_is_on_socket()) {
                    852:                verbose("Authenticated to %s ([%s]:%d).", host,
                    853:                    get_remote_ipaddr(), get_remote_port());
                    854:        } else {
                    855:                verbose("Authenticated to %s (via proxy).", host);
                    856:        }
1.31      markus    857:
1.112     markus    858:        /* We no longer need the private host keys.  Clear them now. */
                    859:        if (sensitive_data.nkeys != 0) {
                    860:                for (i = 0; i < sensitive_data.nkeys; i++) {
                    861:                        if (sensitive_data.keys[i] != NULL) {
                    862:                                /* Destroys contents safely */
                    863:                                debug3("clear hostkey %d", i);
                    864:                                key_free(sensitive_data.keys[i]);
                    865:                                sensitive_data.keys[i] = NULL;
                    866:                        }
                    867:                }
                    868:                xfree(sensitive_data.keys);
1.134     markus    869:        }
                    870:        for (i = 0; i < options.num_identity_files; i++) {
                    871:                if (options.identity_files[i]) {
                    872:                        xfree(options.identity_files[i]);
                    873:                        options.identity_files[i] = NULL;
                    874:                }
                    875:                if (options.identity_keys[i]) {
                    876:                        key_free(options.identity_keys[i]);
                    877:                        options.identity_keys[i] = NULL;
                    878:                }
1.112     markus    879:        }
1.31      markus    880:
1.45      markus    881:        exit_status = compat20 ? ssh_session2() : ssh_session();
                    882:        packet_close();
1.186     djm       883:
1.312     djm       884:        if (options.control_path != NULL && muxserver_sock != -1)
1.214     djm       885:                unlink(options.control_path);
                    886:
1.353     djm       887:        /* Kill ProxyCommand if it is running. */
                    888:        ssh_kill_proxy_command();
1.186     djm       889:
1.45      markus    890:        return exit_status;
                    891: }
                    892:
1.344     djm       893: static void
                    894: control_persist_detach(void)
                    895: {
                    896:        pid_t pid;
1.346     djm       897:        int devnull;
1.344     djm       898:
                    899:        debug("%s: backgrounding master process", __func__);
                    900:
                    901:        /*
                    902:         * master (current process) into the background, and make the
                    903:         * foreground process a client of the backgrounded master.
                    904:         */
                    905:        switch ((pid = fork())) {
                    906:        case -1:
                    907:                fatal("%s: fork: %s", __func__, strerror(errno));
                    908:        case 0:
                    909:                /* Child: master process continues mainloop */
                    910:                break;
                    911:        default:
                    912:                /* Parent: set up mux slave to connect to backgrounded master */
                    913:                debug2("%s: background process is %ld", __func__, (long)pid);
                    914:                stdin_null_flag = ostdin_null_flag;
                    915:                no_shell_flag = ono_shell_flag;
                    916:                no_tty_flag = ono_tty_flag;
                    917:                tty_flag = otty_flag;
                    918:                close(muxserver_sock);
                    919:                muxserver_sock = -1;
1.351     markus    920:                options.control_master = SSHCTL_MASTER_NO;
1.344     djm       921:                muxclient(options.control_path);
                    922:                /* muxclient() doesn't return on success. */
                    923:                fatal("Failed to connect to new control master");
                    924:        }
1.346     djm       925:        if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
                    926:                error("%s: open(\"/dev/null\"): %s", __func__,
                    927:                    strerror(errno));
                    928:        } else {
                    929:                if (dup2(devnull, STDIN_FILENO) == -1 ||
                    930:                    dup2(devnull, STDOUT_FILENO) == -1)
                    931:                        error("%s: dup2: %s", __func__, strerror(errno));
                    932:                if (devnull > STDERR_FILENO)
                    933:                        close(devnull);
                    934:        }
1.344     djm       935: }
                    936:
                    937: /* Do fork() after authentication. Used by "ssh -f" */
                    938: static void
                    939: fork_postauth(void)
                    940: {
                    941:        if (need_controlpersist_detach)
                    942:                control_persist_detach();
                    943:        debug("forking to background");
                    944:        fork_after_authentication_flag = 0;
                    945:        if (daemon(1, 1) < 0)
                    946:                fatal("daemon() failed: %.200s", strerror(errno));
                    947: }
                    948:
1.315     djm       949: /* Callback for remote forward global requests */
                    950: static void
                    951: ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
                    952: {
                    953:        Forward *rfwd = (Forward *)ctxt;
                    954:
1.324     djm       955:        /* XXX verbose() on failure? */
1.315     djm       956:        debug("remote forward %s for: listen %d, connect %s:%d",
                    957:            type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
                    958:            rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
1.324     djm       959:        if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
1.338     markus    960:                rfwd->allocated_port = packet_get_int();
1.324     djm       961:                logit("Allocated port %u for remote forward to %s:%d",
1.338     markus    962:                    rfwd->allocated_port,
                    963:                    rfwd->connect_host, rfwd->connect_port);
1.324     djm       964:        }
                    965:
1.315     djm       966:        if (type == SSH2_MSG_REQUEST_FAILURE) {
                    967:                if (options.exit_on_forward_failure)
                    968:                        fatal("Error: remote port forwarding failed for "
                    969:                            "listen port %d", rfwd->listen_port);
                    970:                else
                    971:                        logit("Warning: remote port forwarding failed for "
                    972:                            "listen port %d", rfwd->listen_port);
                    973:        }
1.318     djm       974:        if (++remote_forward_confirms_received == options.num_remote_forwards) {
1.315     djm       975:                debug("All remote forwarding requests processed");
1.344     djm       976:                if (fork_after_authentication_flag)
                    977:                        fork_postauth();
1.318     djm       978:        }
1.315     djm       979: }
                    980:
1.126     itojun    981: static void
1.331     dtucker   982: client_cleanup_stdio_fwd(int id, void *arg)
                    983: {
                    984:        debug("stdio forwarding: done");
                    985:        cleanup_exit(0);
                    986: }
                    987:
                    988: static int
                    989: client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
                    990: {
                    991:        Channel *c;
1.332     djm       992:        int in, out;
1.331     dtucker   993:
                    994:        debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
                    995:            port_to_connect);
1.332     djm       996:
                    997:        in = dup(STDIN_FILENO);
                    998:        out = dup(STDOUT_FILENO);
                    999:        if (in < 0 || out < 0)
                   1000:                fatal("channel_connect_stdio_fwd: dup() in/out failed");
                   1001:
                   1002:        if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
                   1003:            in, out)) == NULL)
1.331     dtucker  1004:                return 0;
                   1005:        channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
                   1006:        return 1;
                   1007: }
                   1008:
                   1009: static void
1.70      markus   1010: ssh_init_forwarding(void)
                   1011: {
1.86      markus   1012:        int success = 0;
1.70      markus   1013:        int i;
1.331     dtucker  1014:
                   1015:        if (stdio_forward_host != NULL) {
                   1016:                if (!compat20) {
                   1017:                        fatal("stdio forwarding require Protocol 2");
                   1018:                }
                   1019:                if (!client_setup_stdio_fwd(stdio_forward_host,
                   1020:                    stdio_forward_port))
                   1021:                        fatal("Failed to connect in stdio forward mode.");
                   1022:        }
1.86      markus   1023:
1.70      markus   1024:        /* Initiate local TCP/IP port forwardings. */
                   1025:        for (i = 0; i < options.num_local_forwards; i++) {
1.232     djm      1026:                debug("Local connections to %.200s:%d forwarded to remote "
                   1027:                    "address %.200s:%d",
1.234     deraadt  1028:                    (options.local_forwards[i].listen_host == NULL) ?
                   1029:                    (options.gateway_ports ? "*" : "LOCALHOST") :
1.232     djm      1030:                    options.local_forwards[i].listen_host,
                   1031:                    options.local_forwards[i].listen_port,
                   1032:                    options.local_forwards[i].connect_host,
                   1033:                    options.local_forwards[i].connect_port);
1.158     markus   1034:                success += channel_setup_local_fwd_listener(
1.232     djm      1035:                    options.local_forwards[i].listen_host,
                   1036:                    options.local_forwards[i].listen_port,
                   1037:                    options.local_forwards[i].connect_host,
                   1038:                    options.local_forwards[i].connect_port,
1.70      markus   1039:                    options.gateway_ports);
                   1040:        }
1.283     markus   1041:        if (i > 0 && success != i && options.exit_on_forward_failure)
                   1042:                fatal("Could not request local forwarding.");
1.86      markus   1043:        if (i > 0 && success == 0)
                   1044:                error("Could not request local forwarding.");
1.70      markus   1045:
                   1046:        /* Initiate remote TCP/IP port forwardings. */
                   1047:        for (i = 0; i < options.num_remote_forwards; i++) {
1.232     djm      1048:                debug("Remote connections from %.200s:%d forwarded to "
                   1049:                    "local address %.200s:%d",
1.248     djm      1050:                    (options.remote_forwards[i].listen_host == NULL) ?
1.253     djm      1051:                    "LOCALHOST" : options.remote_forwards[i].listen_host,
1.232     djm      1052:                    options.remote_forwards[i].listen_port,
                   1053:                    options.remote_forwards[i].connect_host,
                   1054:                    options.remote_forwards[i].connect_port);
1.283     markus   1055:                if (channel_request_remote_forwarding(
1.232     djm      1056:                    options.remote_forwards[i].listen_host,
                   1057:                    options.remote_forwards[i].listen_port,
                   1058:                    options.remote_forwards[i].connect_host,
1.283     markus   1059:                    options.remote_forwards[i].connect_port) < 0) {
                   1060:                        if (options.exit_on_forward_failure)
                   1061:                                fatal("Could not request remote forwarding.");
                   1062:                        else
                   1063:                                logit("Warning: Could not request remote "
                   1064:                                    "forwarding.");
                   1065:                }
1.315     djm      1066:                client_register_global_confirm(ssh_confirm_remote_forward,
                   1067:                    &options.remote_forwards[i]);
1.70      markus   1068:        }
1.301     djm      1069:
                   1070:        /* Initiate tunnel forwarding. */
                   1071:        if (options.tun_open != SSH_TUNMODE_NO) {
                   1072:                if (client_request_tun_fwd(options.tun_open,
                   1073:                    options.tun_local, options.tun_remote) == -1) {
                   1074:                        if (options.exit_on_forward_failure)
                   1075:                                fatal("Could not request tunnel forwarding.");
                   1076:                        else
                   1077:                                error("Could not request tunnel forwarding.");
                   1078:                }
                   1079:        }
1.70      markus   1080: }
                   1081:
1.126     itojun   1082: static void
1.70      markus   1083: check_agent_present(void)
                   1084: {
                   1085:        if (options.forward_agent) {
1.254     djm      1086:                /* Clear agent forwarding if we don't have an agent. */
1.185     stevesk  1087:                if (!ssh_agent_present())
1.70      markus   1088:                        options.forward_agent = 0;
                   1089:        }
                   1090: }
                   1091:
1.126     itojun   1092: static int
1.45      markus   1093: ssh_session(void)
                   1094: {
                   1095:        int type;
                   1096:        int interactive = 0;
                   1097:        int have_tty = 0;
                   1098:        struct winsize ws;
                   1099:        char *cp;
1.243     djm      1100:        const char *display;
1.45      markus   1101:
1.31      markus   1102:        /* Enable compression if requested. */
                   1103:        if (options.compression) {
1.316     djm      1104:                debug("Requesting compression at level %d.",
                   1105:                    options.compression_level);
1.31      markus   1106:
1.316     djm      1107:                if (options.compression_level < 1 ||
                   1108:                    options.compression_level > 9)
                   1109:                        fatal("Compression level must be from 1 (fast) to "
                   1110:                            "9 (slow, best).");
1.31      markus   1111:
                   1112:                /* Send the request. */
                   1113:                packet_start(SSH_CMSG_REQUEST_COMPRESSION);
                   1114:                packet_put_int(options.compression_level);
                   1115:                packet_send();
                   1116:                packet_write_wait();
1.156     markus   1117:                type = packet_read();
1.31      markus   1118:                if (type == SSH_SMSG_SUCCESS)
                   1119:                        packet_start_compression(options.compression_level);
                   1120:                else if (type == SSH_SMSG_FAILURE)
1.191     itojun   1121:                        logit("Warning: Remote host refused compression.");
1.31      markus   1122:                else
1.316     djm      1123:                        packet_disconnect("Protocol error waiting for "
                   1124:                            "compression response.");
1.31      markus   1125:        }
                   1126:        /* Allocate a pseudo tty if appropriate. */
                   1127:        if (tty_flag) {
                   1128:                debug("Requesting pty.");
                   1129:
                   1130:                /* Start the packet. */
                   1131:                packet_start(SSH_CMSG_REQUEST_PTY);
                   1132:
                   1133:                /* Store TERM in the packet.  There is no limit on the
                   1134:                   length of the string. */
                   1135:                cp = getenv("TERM");
                   1136:                if (!cp)
                   1137:                        cp = "";
1.124     markus   1138:                packet_put_cstring(cp);
1.31      markus   1139:
                   1140:                /* Store window size in the packet. */
                   1141:                if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
                   1142:                        memset(&ws, 0, sizeof(ws));
1.269     deraadt  1143:                packet_put_int((u_int)ws.ws_row);
                   1144:                packet_put_int((u_int)ws.ws_col);
                   1145:                packet_put_int((u_int)ws.ws_xpixel);
                   1146:                packet_put_int((u_int)ws.ws_ypixel);
1.31      markus   1147:
                   1148:                /* Store tty modes in the packet. */
1.115     stevesk  1149:                tty_make_modes(fileno(stdin), NULL);
1.31      markus   1150:
                   1151:                /* Send the packet, and wait for it to leave. */
                   1152:                packet_send();
                   1153:                packet_write_wait();
                   1154:
                   1155:                /* Read response from the server. */
1.156     markus   1156:                type = packet_read();
1.43      markus   1157:                if (type == SSH_SMSG_SUCCESS) {
1.31      markus   1158:                        interactive = 1;
1.45      markus   1159:                        have_tty = 1;
1.43      markus   1160:                } else if (type == SSH_SMSG_FAILURE)
1.316     djm      1161:                        logit("Warning: Remote host failed or refused to "
                   1162:                            "allocate a pseudo tty.");
1.31      markus   1163:                else
1.316     djm      1164:                        packet_disconnect("Protocol error waiting for pty "
                   1165:                            "request response.");
1.31      markus   1166:        }
                   1167:        /* Request X11 forwarding if enabled and DISPLAY is set. */
1.243     djm      1168:        display = getenv("DISPLAY");
                   1169:        if (options.forward_x11 && display != NULL) {
1.150     stevesk  1170:                char *proto, *data;
1.50      markus   1171:                /* Get reasonable local authentication information. */
1.243     djm      1172:                client_x11_get_proto(display, options.xauth_location,
1.340     djm      1173:                    options.forward_x11_trusted,
                   1174:                    options.forward_x11_timeout,
                   1175:                    &proto, &data);
1.50      markus   1176:                /* Request forwarding with authentication spoofing. */
1.316     djm      1177:                debug("Requesting X11 forwarding with authentication "
                   1178:                    "spoofing.");
1.243     djm      1179:                x11_request_forwarding_with_spoofing(0, display, proto, data);
1.31      markus   1180:
                   1181:                /* Read response from the server. */
1.156     markus   1182:                type = packet_read();
1.31      markus   1183:                if (type == SSH_SMSG_SUCCESS) {
                   1184:                        interactive = 1;
1.50      markus   1185:                } else if (type == SSH_SMSG_FAILURE) {
1.191     itojun   1186:                        logit("Warning: Remote host denied X11 forwarding.");
1.50      markus   1187:                } else {
1.316     djm      1188:                        packet_disconnect("Protocol error waiting for X11 "
                   1189:                            "forwarding");
1.50      markus   1190:                }
1.31      markus   1191:        }
                   1192:        /* Tell the packet module whether this is an interactive session. */
1.354     djm      1193:        packet_set_interactive(interactive,
                   1194:            options.ip_qos_interactive, options.ip_qos_bulk);
1.31      markus   1195:
                   1196:        /* Request authentication agent forwarding if appropriate. */
1.70      markus   1197:        check_agent_present();
                   1198:
1.31      markus   1199:        if (options.forward_agent) {
                   1200:                debug("Requesting authentication agent forwarding.");
                   1201:                auth_request_forwarding();
                   1202:
                   1203:                /* Read response from the server. */
1.156     markus   1204:                type = packet_read();
1.155     markus   1205:                packet_check_eom();
1.31      markus   1206:                if (type != SSH_SMSG_SUCCESS)
1.191     itojun   1207:                        logit("Warning: Remote host denied authentication agent forwarding.");
1.31      markus   1208:        }
                   1209:
1.70      markus   1210:        /* Initiate port forwardings. */
                   1211:        ssh_init_forwarding();
1.305     dtucker  1212:
                   1213:        /* Execute a local command */
                   1214:        if (options.local_command != NULL &&
                   1215:            options.permit_local_command)
                   1216:                ssh_local_cmd(options.local_command);
1.34      markus   1217:
1.318     djm      1218:        /*
                   1219:         * If requested and we are not interested in replies to remote
                   1220:         * forwarding requests, then let ssh continue in the background.
                   1221:         */
1.344     djm      1222:        if (fork_after_authentication_flag) {
                   1223:                if (options.exit_on_forward_failure &&
                   1224:                    options.num_remote_forwards > 0) {
                   1225:                        debug("deferring postauth fork until remote forward "
                   1226:                            "confirmation received");
                   1227:                } else
                   1228:                        fork_postauth();
1.318     djm      1229:        }
1.31      markus   1230:
1.33      markus   1231:        /*
                   1232:         * If a command was specified on the command line, execute the
                   1233:         * command now. Otherwise request the server to start a shell.
                   1234:         */
1.31      markus   1235:        if (buffer_len(&command) > 0) {
                   1236:                int len = buffer_len(&command);
                   1237:                if (len > 900)
                   1238:                        len = 900;
1.316     djm      1239:                debug("Sending command: %.*s", len,
                   1240:                    (u_char *)buffer_ptr(&command));
1.31      markus   1241:                packet_start(SSH_CMSG_EXEC_CMD);
                   1242:                packet_put_string(buffer_ptr(&command), buffer_len(&command));
                   1243:                packet_send();
                   1244:                packet_write_wait();
                   1245:        } else {
                   1246:                debug("Requesting shell.");
                   1247:                packet_start(SSH_CMSG_EXEC_SHELL);
                   1248:                packet_send();
                   1249:                packet_write_wait();
                   1250:        }
                   1251:
                   1252:        /* Enter the interactive session. */
1.119     stevesk  1253:        return client_loop(have_tty, tty_flag ?
                   1254:            options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1.89      markus   1255: }
                   1256:
1.214     djm      1257: /* request pty/x11/agent/tcpfwd/shell for channel */
                   1258: static void
1.337     djm      1259: ssh_session2_setup(int id, int success, void *arg)
1.214     djm      1260: {
1.215     djm      1261:        extern char **environ;
1.243     djm      1262:        const char *display;
                   1263:        int interactive = tty_flag;
1.337     djm      1264:
                   1265:        if (!success)
                   1266:                return; /* No need for error message, channels code sens one */
1.215     djm      1267:
1.248     djm      1268:        display = getenv("DISPLAY");
1.243     djm      1269:        if (options.forward_x11 && display != NULL) {
1.150     stevesk  1270:                char *proto, *data;
1.50      markus   1271:                /* Get reasonable local authentication information. */
1.243     djm      1272:                client_x11_get_proto(display, options.xauth_location,
1.340     djm      1273:                    options.forward_x11_trusted,
                   1274:                    options.forward_x11_timeout, &proto, &data);
1.50      markus   1275:                /* Request forwarding with authentication spoofing. */
1.316     djm      1276:                debug("Requesting X11 forwarding with authentication "
                   1277:                    "spoofing.");
1.243     djm      1278:                x11_request_forwarding_with_spoofing(id, display, proto, data);
1.80      markus   1279:                interactive = 1;
1.50      markus   1280:                /* XXX wait for reply */
                   1281:        }
                   1282:
1.70      markus   1283:        check_agent_present();
                   1284:        if (options.forward_agent) {
                   1285:                debug("Requesting authentication agent forwarding.");
                   1286:                channel_request_start(id, "auth-agent-req@openssh.com", 0);
                   1287:                packet_send();
1.212     djm      1288:        }
                   1289:
1.214     djm      1290:        client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1.311     djm      1291:            NULL, fileno(stdin), &command, environ);
1.45      markus   1292: }
                   1293:
1.143     markus   1294: /* open new channel for a session */
1.126     itojun   1295: static int
1.143     markus   1296: ssh_session2_open(void)
1.45      markus   1297: {
1.118     markus   1298:        Channel *c;
                   1299:        int window, packetmax, in, out, err;
1.60      markus   1300:
1.62      markus   1301:        if (stdin_null_flag) {
1.93      itojun   1302:                in = open(_PATH_DEVNULL, O_RDONLY);
1.62      markus   1303:        } else {
                   1304:                in = dup(STDIN_FILENO);
                   1305:        }
1.60      markus   1306:        out = dup(STDOUT_FILENO);
                   1307:        err = dup(STDERR_FILENO);
1.45      markus   1308:
                   1309:        if (in < 0 || out < 0 || err < 0)
1.62      markus   1310:                fatal("dup() in/out/err failed");
1.45      markus   1311:
1.69      markus   1312:        /* enable nonblocking unless tty */
                   1313:        if (!isatty(in))
                   1314:                set_nonblock(in);
                   1315:        if (!isatty(out))
                   1316:                set_nonblock(out);
                   1317:        if (!isatty(err))
                   1318:                set_nonblock(err);
                   1319:
1.65      markus   1320:        window = CHAN_SES_WINDOW_DEFAULT;
                   1321:        packetmax = CHAN_SES_PACKET_DEFAULT;
1.164     markus   1322:        if (tty_flag) {
                   1323:                window >>= 1;
                   1324:                packetmax >>= 1;
1.45      markus   1325:        }
1.118     markus   1326:        c = channel_new(
1.45      markus   1327:            "session", SSH_CHANNEL_OPENING, in, out, err,
1.65      markus   1328:            window, packetmax, CHAN_EXTENDED_WRITE,
1.192     markus   1329:            "client-session", /*nonblock*/0);
1.45      markus   1330:
1.143     markus   1331:        debug3("ssh_session2_open: channel_new: %d", c->self);
1.106     markus   1332:
1.122     markus   1333:        channel_send_open(c->self);
1.143     markus   1334:        if (!no_shell_flag)
1.310     djm      1335:                channel_register_open_confirm(c->self,
                   1336:                    ssh_session2_setup, NULL);
1.106     markus   1337:
1.118     markus   1338:        return c->self;
1.106     markus   1339: }
                   1340:
1.126     itojun   1341: static int
1.106     markus   1342: ssh_session2(void)
                   1343: {
1.143     markus   1344:        int id = -1;
1.106     markus   1345:
                   1346:        /* XXX should be pre-session */
                   1347:        ssh_init_forwarding();
                   1348:
1.344     djm      1349:        /* Start listening for multiplex clients */
                   1350:        muxserver_listen();
                   1351:
                   1352:        /*
                   1353:         * If we are in control persist mode, then prepare to background
                   1354:         * ourselves and have a foreground client attach as a control
                   1355:         * slave. NB. we must save copies of the flags that we override for
                   1356:         * the backgrounding, since we defer attachment of the slave until
                   1357:         * after the connection is fully established (in particular,
                   1358:         * async rfwd replies have been received for ExitOnForwardFailure).
                   1359:         */
                   1360:        if (options.control_persist && muxserver_sock != -1) {
                   1361:                ostdin_null_flag = stdin_null_flag;
                   1362:                ono_shell_flag = no_shell_flag;
                   1363:                ono_tty_flag = no_tty_flag;
                   1364:                otty_flag = tty_flag;
                   1365:                stdin_null_flag = 1;
                   1366:                no_shell_flag = 1;
                   1367:                no_tty_flag = 1;
                   1368:                tty_flag = 0;
                   1369:                if (!fork_after_authentication_flag)
                   1370:                        need_controlpersist_detach = 1;
                   1371:                fork_after_authentication_flag = 1;
                   1372:        }
                   1373:
1.143     markus   1374:        if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
                   1375:                id = ssh_session2_open();
1.314     djm      1376:
                   1377:        /* If we don't expect to open a new session, then disallow it */
1.319     markus   1378:        if (options.control_master == SSHCTL_MASTER_NO &&
                   1379:            (datafellows & SSH_NEW_OPENSSH)) {
1.314     djm      1380:                debug("Requesting no-more-sessions@openssh.com");
                   1381:                packet_start(SSH2_MSG_GLOBAL_REQUEST);
                   1382:                packet_put_cstring("no-more-sessions@openssh.com");
                   1383:                packet_put_char(0);
                   1384:                packet_send();
                   1385:        }
1.255     reyk     1386:
                   1387:        /* Execute a local command */
                   1388:        if (options.local_command != NULL &&
                   1389:            options.permit_local_command)
                   1390:                ssh_local_cmd(options.local_command);
1.301     djm      1391:
1.342     djm      1392:        /*
                   1393:         * If requested and we are not interested in replies to remote
                   1394:         * forwarding requests, then let ssh continue in the background.
                   1395:         */
1.344     djm      1396:        if (fork_after_authentication_flag) {
                   1397:                if (options.exit_on_forward_failure &&
                   1398:                    options.num_remote_forwards > 0) {
                   1399:                        debug("deferring postauth fork until remote forward "
                   1400:                            "confirmation received");
                   1401:                } else
                   1402:                        fork_postauth();
1.318     djm      1403:        }
1.327     andreas  1404:
                   1405:        if (options.use_roaming)
                   1406:                request_roaming();
1.31      markus   1407:
1.119     stevesk  1408:        return client_loop(tty_flag, tty_flag ?
                   1409:            options.escape_char : SSH_ESCAPECHAR_NONE, id);
1.72      markus   1410: }
                   1411:
1.126     itojun   1412: static void
1.104     markus   1413: load_public_identity_files(void)
                   1414: {
1.275     djm      1415:        char *filename, *cp, thishost[NI_MAXHOST];
1.306     deraadt  1416:        char *pwdir = NULL, *pwname = NULL;
1.167     markus   1417:        int i = 0;
1.104     markus   1418:        Key *public;
1.275     djm      1419:        struct passwd *pw;
1.335     djm      1420:        u_int n_ids;
                   1421:        char *identity_files[SSH_MAX_IDENTITY_FILES];
                   1422:        Key *identity_keys[SSH_MAX_IDENTITY_FILES];
1.333     markus   1423: #ifdef ENABLE_PKCS11
1.167     markus   1424:        Key **keys;
1.333     markus   1425:        int nkeys;
1.335     djm      1426: #endif /* PKCS11 */
1.104     markus   1427:
1.335     djm      1428:        n_ids = 0;
                   1429:        bzero(identity_files, sizeof(identity_files));
                   1430:        bzero(identity_keys, sizeof(identity_keys));
                   1431:
                   1432: #ifdef ENABLE_PKCS11
1.333     markus   1433:        if (options.pkcs11_provider != NULL &&
1.167     markus   1434:            options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1.333     markus   1435:            (pkcs11_init(!options.batch_mode) == 0) &&
                   1436:            (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
                   1437:            &keys)) > 0) {
                   1438:                for (i = 0; i < nkeys; i++) {
1.335     djm      1439:                        if (n_ids >= SSH_MAX_IDENTITY_FILES) {
                   1440:                                key_free(keys[i]);
                   1441:                                continue;
                   1442:                        }
                   1443:                        identity_keys[n_ids] = keys[i];
                   1444:                        identity_files[n_ids] =
1.333     markus   1445:                            xstrdup(options.pkcs11_provider); /* XXX */
1.335     djm      1446:                        n_ids++;
1.167     markus   1447:                }
                   1448:                xfree(keys);
1.127     markus   1449:        }
1.333     markus   1450: #endif /* ENABLE_PKCS11 */
1.275     djm      1451:        if ((pw = getpwuid(original_real_uid)) == NULL)
                   1452:                fatal("load_public_identity_files: getpwuid failed");
1.307     dtucker  1453:        pwname = xstrdup(pw->pw_name);
                   1454:        pwdir = xstrdup(pw->pw_dir);
1.275     djm      1455:        if (gethostname(thishost, sizeof(thishost)) == -1)
                   1456:                fatal("load_public_identity_files: gethostname: %s",
                   1457:                    strerror(errno));
1.335     djm      1458:        for (i = 0; i < options.num_identity_files; i++) {
                   1459:                if (n_ids >= SSH_MAX_IDENTITY_FILES) {
                   1460:                        xfree(options.identity_files[i]);
                   1461:                        continue;
                   1462:                }
1.275     djm      1463:                cp = tilde_expand_filename(options.identity_files[i],
1.131     millert  1464:                    original_real_uid);
1.306     deraadt  1465:                filename = percent_expand(cp, "d", pwdir,
                   1466:                    "u", pwname, "l", thishost, "h", host,
1.275     djm      1467:                    "r", options.user, (char *)NULL);
                   1468:                xfree(cp);
1.131     millert  1469:                public = key_load_public(filename, NULL);
                   1470:                debug("identity file %s type %d", filename,
                   1471:                    public ? public->type : -1);
                   1472:                xfree(options.identity_files[i]);
1.335     djm      1473:                identity_files[n_ids] = filename;
                   1474:                identity_keys[n_ids] = public;
                   1475:
                   1476:                if (++n_ids >= SSH_MAX_IDENTITY_FILES)
                   1477:                        continue;
                   1478:
                   1479:                /* Try to add the certificate variant too */
                   1480:                xasprintf(&cp, "%s-cert", filename);
                   1481:                public = key_load_public(cp, NULL);
                   1482:                debug("identity file %s type %d", cp,
                   1483:                    public ? public->type : -1);
                   1484:                if (public == NULL) {
                   1485:                        xfree(cp);
                   1486:                        continue;
                   1487:                }
                   1488:                if (!key_is_cert(public)) {
                   1489:                        debug("%s: key %s type %s is not a certificate",
                   1490:                            __func__, cp, key_type(public));
                   1491:                        key_free(public);
                   1492:                        xfree(cp);
                   1493:                        continue;
                   1494:                }
                   1495:                identity_keys[n_ids] = public;
                   1496:                /* point to the original path, most likely the private key */
                   1497:                identity_files[n_ids] = xstrdup(filename);
                   1498:                n_ids++;
                   1499:        }
                   1500:        options.num_identity_files = n_ids;
                   1501:        memcpy(options.identity_files, identity_files, sizeof(identity_files));
                   1502:        memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
                   1503:
1.306     deraadt  1504:        bzero(pwname, strlen(pwname));
1.307     dtucker  1505:        xfree(pwname);
1.306     deraadt  1506:        bzero(pwdir, strlen(pwdir));
1.307     dtucker  1507:        xfree(pwdir);
1.214     djm      1508: }
1.352     djm      1509:
                   1510: static void
                   1511: main_sigchld_handler(int sig)
                   1512: {
                   1513:        int save_errno = errno;
                   1514:        pid_t pid;
                   1515:        int status;
                   1516:
                   1517:        while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
                   1518:            (pid < 0 && errno == EINTR))
                   1519:                ;
                   1520:
                   1521:        signal(sig, main_sigchld_handler);
                   1522:        errno = save_errno;
                   1523: }
                   1524: