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

Annotation of src/usr.bin/ssh/clientloop.c, Revision 1.398

1.398   ! djm         1: /* $OpenBSD: clientloop.c,v 1.397 2023/09/10 03:25:53 djm Exp $ */
1.1       deraadt     2: /*
1.12      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
1.33      deraadt     6:  * The main loop for the interactive session (client side).
1.20      markus      7:  *
1.33      deraadt     8:  * As far as I am concerned, the code I have written for this software
                      9:  * can be used freely for any purpose.  Any derived versions of this
                     10:  * software must be clearly marked as such, and if the derived work is
                     11:  * incompatible with the protocol description in the RFC file, it must be
                     12:  * called by a name other than "ssh" or "Secure Shell".
                     13:  *
                     14:  *
                     15:  * Copyright (c) 1999 Theo de Raadt.  All rights reserved.
                     16:  *
                     17:  * Redistribution and use in source and binary forms, with or without
                     18:  * modification, are permitted provided that the following conditions
                     19:  * are met:
                     20:  * 1. Redistributions of source code must retain the above copyright
                     21:  *    notice, this list of conditions and the following disclaimer.
                     22:  * 2. Redistributions in binary form must reproduce the above copyright
                     23:  *    notice, this list of conditions and the following disclaimer in the
                     24:  *    documentation and/or other materials provided with the distribution.
                     25:  *
                     26:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     27:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     28:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     29:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     30:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     31:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     32:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     33:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     34:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     35:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.20      markus     36:  *
                     37:  *
1.33      deraadt    38:  * SSH2 support added by Markus Friedl.
1.78      markus     39:  * Copyright (c) 1999, 2000, 2001 Markus Friedl.  All rights reserved.
1.20      markus     40:  *
1.33      deraadt    41:  * Redistribution and use in source and binary forms, with or without
                     42:  * modification, are permitted provided that the following conditions
                     43:  * are met:
                     44:  * 1. Redistributions of source code must retain the above copyright
                     45:  *    notice, this list of conditions and the following disclaimer.
                     46:  * 2. Redistributions in binary form must reproduce the above copyright
                     47:  *    notice, this list of conditions and the following disclaimer in the
                     48:  *    documentation and/or other materials provided with the distribution.
                     49:  *
                     50:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     51:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     52:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     53:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     54:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     55:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     56:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     57:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     58:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     59:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.12      deraadt    60:  */
1.1       deraadt    61:
1.152     stevesk    62:
1.175     deraadt    63: #include <sys/types.h>
1.152     stevesk    64: #include <sys/ioctl.h>
1.154     stevesk    65: #include <sys/stat.h>
1.166     stevesk    66: #include <sys/socket.h>
1.171     stevesk    67: #include <sys/time.h>
1.189     djm        68: #include <sys/queue.h>
1.150     stevesk    69:
1.155     stevesk    70: #include <ctype.h>
1.168     stevesk    71: #include <errno.h>
1.151     stevesk    72: #include <paths.h>
1.374     djm        73: #include <poll.h>
1.153     stevesk    74: #include <signal.h>
1.174     stevesk    75: #include <stdio.h>
1.173     stevesk    76: #include <stdlib.h>
1.170     stevesk    77: #include <string.h>
1.328     deraadt    78: #include <stdarg.h>
1.150     stevesk    79: #include <termios.h>
1.175     deraadt    80: #include <pwd.h>
1.169     stevesk    81: #include <unistd.h>
1.266     deraadt    82: #include <limits.h>
1.1       deraadt    83:
1.175     deraadt    84: #include "xmalloc.h"
1.45      markus     85: #include "ssh.h"
                     86: #include "ssh2.h"
1.1       deraadt    87: #include "packet.h"
1.315     markus     88: #include "sshbuf.h"
1.15      markus     89: #include "compat.h"
1.74      markus     90: #include "channels.h"
1.15      markus     91: #include "dispatch.h"
1.317     markus     92: #include "sshkey.h"
1.175     deraadt    93: #include "cipher.h"
1.54      markus     94: #include "kex.h"
1.275     markus     95: #include "myproposal.h"
1.45      markus     96: #include "log.h"
1.261     millert    97: #include "misc.h"
1.45      markus     98: #include "readconf.h"
                     99: #include "clientloop.h"
1.147     djm       100: #include "sshconnect.h"
1.40      markus    101: #include "authfd.h"
1.45      markus    102: #include "atomicio.h"
1.118     deraadt   103: #include "sshpty.h"
1.123     djm       104: #include "match.h"
                    105: #include "msg.h"
1.262     djm       106: #include "ssherr.h"
1.267     djm       107: #include "hostfile.h"
1.319     djm       108:
1.375     djm       109: /* Permitted RSA signature algorithms for UpdateHostkeys proofs */
                    110: #define HOSTKEY_PROOF_RSA_ALGS "rsa-sha2-512,rsa-sha2-256"
                    111:
1.397     djm       112: /* Uncertainty (in percent) of keystroke timing intervals */
                    113: #define SSH_KEYSTROKE_TIMING_FUZZ 10
                    114:
1.39      markus    115: /* import options */
                    116: extern Options options;
1.1       deraadt   117:
1.123     djm       118: /* Control socket */
1.217     djm       119: extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
1.123     djm       120:
1.13      markus    121: /*
                    122:  * Name of the host we are connecting to.  This is the name given on the
1.324     jmc       123:  * command line, or the Hostname specified for the user-supplied name in a
1.13      markus    124:  * configuration file.
                    125:  */
1.1       deraadt   126: extern char *host;
                    127:
1.13      markus    128: /*
1.330     djm       129:  * If this field is not NULL, the ForwardAgent socket is this path and different
                    130:  * instead of SSH_AUTH_SOCK.
                    131:  */
                    132: extern char *forward_agent_sock_path;
                    133:
                    134: /*
1.13      markus    135:  * Flag to indicate that we have received a window change signal which has
                    136:  * not yet been processed.  This will cause a message indicating the new
                    137:  * window size to be sent to the server a little later.  This is volatile
                    138:  * because this is updated in a signal handler.
                    139:  */
1.88      markus    140: static volatile sig_atomic_t received_window_change_signal = 0;
                    141: static volatile sig_atomic_t received_signal = 0;
1.1       deraadt   142:
1.222     djm       143: /* Time when backgrounded control master using ControlPersist should exit */
                    144: static time_t control_persist_exit_time = 0;
                    145:
1.1       deraadt   146: /* Common data for the client loop code. */
1.217     djm       147: volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
1.11      markus    148: static int last_was_cr;                /* Last character was a newline. */
1.197     djm       149: static int exit_status;                /* Used to store the command exit status. */
1.315     markus    150: static struct sshbuf *stderr_buffer;   /* Used for final exit message. */
1.11      markus    151: static int connection_in;      /* Connection to server (input). */
                    152: static int connection_out;     /* Connection to server (output). */
1.56      markus    153: static int need_rekeying;      /* Set to non-zero if rekeying is requested. */
1.221     djm       154: static int session_closed;     /* In SSH2: login session closed. */
1.388     dtucker   155: static time_t x11_refuse_time; /* If >0, refuse x11 opens after this time. */
1.345     dtucker   156: static time_t server_alive_time;       /* Time to do server_alive_check */
1.384     djm       157: static int hostkeys_update_complete;
                    158: static int session_setup_complete;
1.1       deraadt   159:
1.321     djm       160: static void client_init_dispatch(struct ssh *ssh);
1.16      markus    161: int    session_ident = -1;
                    162:
1.195     djm       163: /* Track escape per proto2 channel */
                    164: struct escape_filter_ctx {
                    165:        int escape_pending;
                    166:        int escape_char;
                    167: };
                    168:
                    169: /* Context for channel confirmation replies */
1.190     djm       170: struct channel_reply_ctx {
                    171:        const char *request_type;
1.234     djm       172:        int id;
                    173:        enum confirm_action action;
1.190     djm       174: };
                    175:
1.196     djm       176: /* Global request success/failure callbacks */
1.303     djm       177: /* XXX move to struct ssh? */
1.196     djm       178: struct global_confirm {
                    179:        TAILQ_ENTRY(global_confirm) entry;
                    180:        global_confirm_cb *cb;
                    181:        void *ctx;
                    182:        int ref_count;
                    183: };
                    184: TAILQ_HEAD(global_confirms, global_confirm);
                    185: static struct global_confirms global_confirms =
                    186:     TAILQ_HEAD_INITIALIZER(global_confirms);
                    187:
1.315     markus    188: void ssh_process_session2_setup(int, int, int, struct sshbuf *);
1.377     djm       189: static void quit_message(const char *fmt, ...)
                    190:     __attribute__((__format__ (printf, 1, 2)));
                    191:
                    192: static void
                    193: quit_message(const char *fmt, ...)
                    194: {
                    195:        char *msg;
                    196:        va_list args;
                    197:        int r;
                    198:
                    199:        va_start(args, fmt);
                    200:        xvasprintf(&msg, fmt, args);
                    201:        va_end(args);
                    202:
                    203:        if ((r = sshbuf_putf(stderr_buffer, "%s\r\n", msg)) != 0)
                    204:                fatal_fr(r, "sshbuf_putf");
                    205:        quit_pending = 1;
                    206: }
1.123     djm       207:
1.13      markus    208: /*
                    209:  * Signal handler for the window change signal (SIGWINCH).  This just sets a
                    210:  * flag indicating that the window has changed.
                    211:  */
1.77      itojun    212: static void
1.11      markus    213: window_change_handler(int sig)
1.1       deraadt   214: {
1.11      markus    215:        received_window_change_signal = 1;
1.1       deraadt   216: }
                    217:
1.13      markus    218: /*
                    219:  * Signal handler for signals that cause the program to terminate.  These
                    220:  * signals must be trapped to restore terminal modes.
                    221:  */
1.77      itojun    222: static void
1.11      markus    223: signal_handler(int sig)
1.1       deraadt   224: {
1.75      markus    225:        received_signal = sig;
                    226:        quit_pending = 1;
1.1       deraadt   227: }
                    228:
1.13      markus    229: /*
1.222     djm       230:  * Sets control_persist_exit_time to the absolute time when the
                    231:  * backgrounded control master should exit due to expiry of the
                    232:  * ControlPersist timeout.  Sets it to 0 if we are not a backgrounded
                    233:  * control master process, or if there is no ControlPersist timeout.
                    234:  */
                    235: static void
1.303     djm       236: set_control_persist_exit_time(struct ssh *ssh)
1.222     djm       237: {
                    238:        if (muxserver_sock == -1 || !options.control_persist
1.232     djm       239:            || options.control_persist_timeout == 0) {
1.222     djm       240:                /* not using a ControlPersist timeout */
                    241:                control_persist_exit_time = 0;
1.303     djm       242:        } else if (channel_still_open(ssh)) {
1.222     djm       243:                /* some client connections are still open */
                    244:                if (control_persist_exit_time > 0)
1.354     djm       245:                        debug2_f("cancel scheduled exit");
1.222     djm       246:                control_persist_exit_time = 0;
                    247:        } else if (control_persist_exit_time <= 0) {
                    248:                /* a client connection has recently closed */
1.251     dtucker   249:                control_persist_exit_time = monotime() +
1.222     djm       250:                        (time_t)options.control_persist_timeout;
1.354     djm       251:                debug2_f("schedule exit in %d seconds",
1.222     djm       252:                    options.control_persist_timeout);
                    253:        }
                    254:        /* else we are already counting down to the timeout */
                    255: }
                    256:
1.238     dtucker   257: #define SSH_X11_VALID_DISPLAY_CHARS ":/.-_"
                    258: static int
                    259: client_x11_display_valid(const char *display)
                    260: {
                    261:        size_t i, dlen;
                    262:
1.279     djm       263:        if (display == NULL)
                    264:                return 0;
                    265:
1.238     dtucker   266:        dlen = strlen(display);
                    267:        for (i = 0; i < dlen; i++) {
1.256     deraadt   268:                if (!isalnum((u_char)display[i]) &&
1.238     dtucker   269:                    strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
                    270:                        debug("Invalid character '%c' in DISPLAY", display[i]);
                    271:                        return 0;
                    272:                }
                    273:        }
                    274:        return 1;
                    275: }
                    276:
1.274     djm       277: #define SSH_X11_PROTO          "MIT-MAGIC-COOKIE-1"
                    278: #define X11_TIMEOUT_SLACK      60
1.279     djm       279: int
1.303     djm       280: client_x11_get_proto(struct ssh *ssh, const char *display,
                    281:     const char *xauth_path, u_int trusted, u_int timeout,
                    282:     char **_proto, char **_data)
1.138     djm       283: {
1.318     djm       284:        char *cmd, line[512], xdisplay[512];
1.279     djm       285:        char xauthfile[PATH_MAX], xauthdir[PATH_MAX];
1.138     djm       286:        static char proto[512], data[512];
                    287:        FILE *f;
1.288     tedu      288:        int got_data = 0, generated = 0, do_unlink = 0, r;
1.138     djm       289:        struct stat st;
1.274     djm       290:        u_int now, x11_timeout_real;
1.138     djm       291:
                    292:        *_proto = proto;
                    293:        *_data = data;
1.279     djm       294:        proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
1.138     djm       295:
1.279     djm       296:        if (!client_x11_display_valid(display)) {
1.283     millert   297:                if (display != NULL)
                    298:                        logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
                    299:                            display);
1.279     djm       300:                return -1;
                    301:        }
                    302:        if (xauth_path != NULL && stat(xauth_path, &st) == -1) {
1.138     djm       303:                debug("No xauth program.");
1.279     djm       304:                xauth_path = NULL;
                    305:        }
                    306:
                    307:        if (xauth_path != NULL) {
1.138     djm       308:                /*
                    309:                 * Handle FamilyLocal case where $DISPLAY does
                    310:                 * not match an authorization entry.  For this we
                    311:                 * just try "xauth list unix:displaynum.screennum".
                    312:                 * XXX: "localhost" match to determine FamilyLocal
                    313:                 *      is not perfect.
                    314:                 */
                    315:                if (strncmp(display, "localhost:", 10) == 0) {
1.279     djm       316:                        if ((r = snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
                    317:                            display + 10)) < 0 ||
                    318:                            (size_t)r >= sizeof(xdisplay)) {
1.354     djm       319:                                error_f("display name too long");
1.279     djm       320:                                return -1;
                    321:                        }
1.138     djm       322:                        display = xdisplay;
                    323:                }
                    324:                if (trusted == 0) {
1.274     djm       325:                        /*
1.279     djm       326:                         * Generate an untrusted X11 auth cookie.
                    327:                         *
1.274     djm       328:                         * The authentication cookie should briefly outlive
                    329:                         * ssh's willingness to forward X11 connections to
                    330:                         * avoid nasty fail-open behaviour in the X server.
                    331:                         */
1.279     djm       332:                        mktemp_proto(xauthdir, sizeof(xauthdir));
                    333:                        if (mkdtemp(xauthdir) == NULL) {
1.354     djm       334:                                error_f("mkdtemp: %s", strerror(errno));
1.279     djm       335:                                return -1;
                    336:                        }
                    337:                        do_unlink = 1;
                    338:                        if ((r = snprintf(xauthfile, sizeof(xauthfile),
                    339:                            "%s/xauthfile", xauthdir)) < 0 ||
                    340:                            (size_t)r >= sizeof(xauthfile)) {
1.354     djm       341:                                error_f("xauthfile path too long");
1.279     djm       342:                                rmdir(xauthdir);
                    343:                                return -1;
                    344:                        }
                    345:
1.318     djm       346:                        if (timeout == 0) {
                    347:                                /* auth doesn't time out */
                    348:                                xasprintf(&cmd, "%s -f %s generate %s %s "
                    349:                                    "untrusted 2>%s",
                    350:                                    xauth_path, xauthfile, display,
                    351:                                    SSH_X11_PROTO, _PATH_DEVNULL);
                    352:                        } else {
                    353:                                /* Add some slack to requested expiry */
                    354:                                if (timeout < UINT_MAX - X11_TIMEOUT_SLACK)
                    355:                                        x11_timeout_real = timeout +
                    356:                                            X11_TIMEOUT_SLACK;
                    357:                                else {
                    358:                                        /* Don't overflow on long timeouts */
                    359:                                        x11_timeout_real = UINT_MAX;
                    360:                                }
                    361:                                xasprintf(&cmd, "%s -f %s generate %s %s "
                    362:                                    "untrusted timeout %u 2>%s",
                    363:                                    xauth_path, xauthfile, display,
                    364:                                    SSH_X11_PROTO, x11_timeout_real,
                    365:                                    _PATH_DEVNULL);
                    366:                        }
1.354     djm       367:                        debug2_f("xauth command: %s", cmd);
1.318     djm       368:
                    369:                        if (timeout != 0 && x11_refuse_time == 0) {
1.279     djm       370:                                now = monotime() + 1;
1.388     dtucker   371:                                if (SSH_TIME_T_MAX - timeout < now)
                    372:                                        x11_refuse_time = SSH_TIME_T_MAX;
1.279     djm       373:                                else
                    374:                                        x11_refuse_time = now + timeout;
1.303     djm       375:                                channel_set_x11_refuse_time(ssh,
                    376:                                    x11_refuse_time);
1.138     djm       377:                        }
1.279     djm       378:                        if (system(cmd) == 0)
                    379:                                generated = 1;
1.318     djm       380:                        free(cmd);
1.138     djm       381:                }
1.181     markus    382:
                    383:                /*
                    384:                 * When in untrusted mode, we read the cookie only if it was
                    385:                 * successfully generated as an untrusted one in the step
                    386:                 * above.
                    387:                 */
                    388:                if (trusted || generated) {
1.318     djm       389:                        xasprintf(&cmd,
1.181     markus    390:                            "%s %s%s list %s 2>" _PATH_DEVNULL,
                    391:                            xauth_path,
                    392:                            generated ? "-f " : "" ,
                    393:                            generated ? xauthfile : "",
                    394:                            display);
                    395:                        debug2("x11_get_proto: %s", cmd);
                    396:                        f = popen(cmd, "r");
                    397:                        if (f && fgets(line, sizeof(line), f) &&
                    398:                            sscanf(line, "%*s %511s %511s", proto, data) == 2)
                    399:                                got_data = 1;
                    400:                        if (f)
                    401:                                pclose(f);
1.318     djm       402:                        free(cmd);
1.279     djm       403:                }
1.138     djm       404:        }
                    405:
                    406:        if (do_unlink) {
                    407:                unlink(xauthfile);
                    408:                rmdir(xauthdir);
                    409:        }
                    410:
1.279     djm       411:        /* Don't fall back to fake X11 data for untrusted forwarding */
                    412:        if (!trusted && !got_data) {
                    413:                error("Warning: untrusted X11 forwarding setup failed: "
                    414:                    "xauth key data not generated");
                    415:                return -1;
                    416:        }
                    417:
1.138     djm       418:        /*
                    419:         * If we didn't get authentication data, just make up some
                    420:         * data.  The forwarding code will check the validity of the
                    421:         * response anyway, and substitute this data.  The X11
                    422:         * server, however, will ignore this fake data and use
                    423:         * whatever authentication mechanisms it was using otherwise
                    424:         * for the local connection.
                    425:         */
                    426:        if (!got_data) {
1.288     tedu      427:                u_int8_t rnd[16];
                    428:                u_int i;
1.138     djm       429:
                    430:                logit("Warning: No xauth data; "
                    431:                    "using fake authentication data for X11 forwarding.");
                    432:                strlcpy(proto, SSH_X11_PROTO, sizeof proto);
1.288     tedu      433:                arc4random_buf(rnd, sizeof(rnd));
                    434:                for (i = 0; i < sizeof(rnd); i++) {
1.138     djm       435:                        snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
1.288     tedu      436:                            rnd[i]);
1.138     djm       437:                }
                    438:        }
1.279     djm       439:
                    440:        return 0;
1.1       deraadt   441: }
                    442:
1.13      markus    443: /*
                    444:  * Checks if the client window has changed, and sends a packet about it to
                    445:  * the server if so.  The actual change is detected elsewhere (by a software
                    446:  * interrupt on Unix); this just checks the flag and sends a message if
                    447:  * appropriate.
                    448:  */
1.1       deraadt   449:
1.77      itojun    450: static void
1.303     djm       451: client_check_window_change(struct ssh *ssh)
1.1       deraadt   452: {
1.292     djm       453:        if (!received_window_change_signal)
1.16      markus    454:                return;
                    455:        received_window_change_signal = 0;
1.354     djm       456:        debug2_f("changed");
1.303     djm       457:        channel_send_window_changes(ssh);
1.1       deraadt   458: }
                    459:
1.264     markus    460: static int
1.297     markus    461: client_global_request_reply(int type, u_int32_t seq, struct ssh *ssh)
1.117     markus    462: {
1.196     djm       463:        struct global_confirm *gc;
                    464:
                    465:        if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
1.264     markus    466:                return 0;
1.196     djm       467:        if (gc->cb != NULL)
1.303     djm       468:                gc->cb(ssh, type, seq, gc->ctx);
1.196     djm       469:        if (--gc->ref_count <= 0) {
                    470:                TAILQ_REMOVE(&global_confirms, gc, entry);
1.342     jsg       471:                freezero(gc, sizeof(*gc));
1.196     djm       472:        }
                    473:
1.320     djm       474:        ssh_packet_set_alive_timeouts(ssh, 0);
1.264     markus    475:        return 0;
1.117     markus    476: }
                    477:
                    478: static void
1.345     dtucker   479: schedule_server_alive_check(void)
                    480: {
                    481:        if (options.server_alive_interval > 0)
                    482:                server_alive_time = monotime() + options.server_alive_interval;
                    483: }
                    484:
                    485: static void
1.320     djm       486: server_alive_check(struct ssh *ssh)
1.117     markus    487: {
1.320     djm       488:        int r;
                    489:
                    490:        if (ssh_packet_inc_alive_timeouts(ssh) > options.server_alive_count_max) {
1.228     djm       491:                logit("Timeout, server %s not responding.", host);
1.176     markus    492:                cleanup_exit(255);
                    493:        }
1.320     djm       494:        if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
                    495:            (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com")) != 0 ||
                    496:            (r = sshpkt_put_u8(ssh, 1)) != 0 ||         /* boolean: want reply */
                    497:            (r = sshpkt_send(ssh)) != 0)
1.354     djm       498:                fatal_fr(r, "send packet");
1.196     djm       499:        /* Insert an empty placeholder to maintain ordering */
                    500:        client_register_global_confirm(NULL, NULL);
1.345     dtucker   501:        schedule_server_alive_check();
1.117     markus    502: }
                    503:
1.393     djm       504: /* Try to send a dummy keystroke */
                    505: static int
                    506: send_chaff(struct ssh *ssh)
                    507: {
                    508:        int r;
                    509:
                    510:        if ((ssh->kex->flags & KEX_HAS_PING) == 0)
                    511:                return 0;
                    512:        /* XXX probabilistically send chaff? */
                    513:        /*
                    514:         * a SSH2_MSG_CHANNEL_DATA payload is 9 bytes:
                    515:         *    4 bytes channel ID + 4 bytes string length + 1 byte string data
                    516:         * simulate that here.
                    517:         */
                    518:        if ((r = sshpkt_start(ssh, SSH2_MSG_PING)) != 0 ||
                    519:            (r = sshpkt_put_cstring(ssh, "PING!")) != 0 ||
                    520:            (r = sshpkt_send(ssh)) != 0)
                    521:                fatal_fr(r, "send packet");
                    522:        return 1;
                    523: }
                    524:
1.397     djm       525: /* Sets the next interval to send a keystroke or chaff packet */
                    526: static void
                    527: set_next_interval(const struct timespec *now, struct timespec *next_interval,
                    528:     u_int interval_ms, int starting)
                    529: {
                    530:        struct timespec tmp;
                    531:        long long interval_ns, fuzz_ns;
                    532:        static long long rate_fuzz;
                    533:
                    534:        interval_ns = interval_ms * (1000LL * 1000);
                    535:        fuzz_ns = (interval_ns * SSH_KEYSTROKE_TIMING_FUZZ) / 100;
                    536:        /* Center fuzz around requested interval */
                    537:        if (fuzz_ns > INT_MAX)
                    538:                fuzz_ns = INT_MAX;
                    539:        if (fuzz_ns > interval_ns) {
                    540:                /* Shouldn't happen */
                    541:                fatal_f("internal error: fuzz %u%% %lldns > interval %lldns",
                    542:                    SSH_KEYSTROKE_TIMING_FUZZ, fuzz_ns, interval_ns);
                    543:        }
                    544:        /*
                    545:         * Randomise the keystroke/chaff intervals in two ways:
                    546:         * 1. Each interval has some random jitter applied to make the
                    547:         *    interval-to-interval time unpredictable.
                    548:         * 2. The overall interval rate is also randomly perturbed for each
1.398   ! djm       549:         *    chaffing session to make the average rate unpredictable.
1.397     djm       550:         */
                    551:        if (starting)
                    552:                rate_fuzz = arc4random_uniform(fuzz_ns);
                    553:        interval_ns -= fuzz_ns;
                    554:        interval_ns += arc4random_uniform(fuzz_ns) + rate_fuzz;
                    555:
                    556:        tmp.tv_sec = interval_ns / (1000 * 1000 * 1000);
                    557:        tmp.tv_nsec = interval_ns % (1000 * 1000 * 1000);
                    558:
                    559:        timespecadd(now, &tmp, next_interval);
                    560: }
                    561:
1.393     djm       562: /*
                    563:  * Performs keystroke timing obfuscation. Returns non-zero if the
                    564:  * output fd should be polled.
                    565:  */
                    566: static int
1.396     djm       567: obfuscate_keystroke_timing(struct ssh *ssh, struct timespec *timeout,
                    568:     int channel_did_enqueue)
1.393     djm       569: {
                    570:        static int active;
                    571:        static struct timespec next_interval, chaff_until;
                    572:        struct timespec now, tmp;
                    573:        int just_started = 0, had_keystroke = 0;
                    574:        static unsigned long long nchaff;
                    575:        char *stop_reason = NULL;
                    576:        long long n;
                    577:
                    578:        monotime_ts(&now);
                    579:
                    580:        if (options.obscure_keystroke_timing_interval <= 0)
                    581:                return 1;       /* disabled in config */
                    582:
                    583:        if (!channel_still_open(ssh) || quit_pending) {
                    584:                /* Stop if no channels left of we're waiting for one to close */
                    585:                stop_reason = "no active channels";
                    586:        } else if (ssh_packet_is_rekeying(ssh)) {
                    587:                /* Stop if we're rekeying */
                    588:                stop_reason = "rekeying started";
                    589:        } else if (!ssh_packet_interactive_data_to_write(ssh) &&
                    590:            ssh_packet_have_data_to_write(ssh)) {
                    591:                /* Stop if the output buffer has more than a few keystrokes */
                    592:                stop_reason = "output buffer filling";
1.396     djm       593:        } else if (active && channel_did_enqueue &&
                    594:            ssh_packet_have_data_to_write(ssh)) {
1.393     djm       595:                /* Still in active mode and have a keystroke queued. */
                    596:                had_keystroke = 1;
                    597:        } else if (active) {
                    598:                if (timespeccmp(&now, &chaff_until, >=)) {
                    599:                        /* Stop if there have been no keystrokes for a while */
                    600:                        stop_reason = "chaff time expired";
                    601:                } else if (timespeccmp(&now, &next_interval, >=)) {
                    602:                        /* Otherwise if we were due to send, then send chaff */
                    603:                        if (send_chaff(ssh))
                    604:                                nchaff++;
                    605:                }
                    606:        }
                    607:
                    608:        if (stop_reason != NULL) {
1.395     djm       609:                if (active) {
                    610:                        debug3_f("stopping: %s (%llu chaff packets sent)",
                    611:                            stop_reason, nchaff);
                    612:                        active = 0;
                    613:                }
1.393     djm       614:                return 1;
                    615:        }
                    616:
                    617:        /*
                    618:         * If we're in interactive mode, and only have a small amount
                    619:         * of outbound data, then we assume that the user is typing
                    620:         * interactively. In this case, start quantising outbound packets to
                    621:         * fixed time intervals to hide inter-keystroke timing.
                    622:         */
1.396     djm       623:        if (!active && ssh_packet_interactive_data_to_write(ssh) &&
                    624:            channel_did_enqueue && ssh_packet_have_data_to_write(ssh)) {
1.397     djm       625:                debug3_f("starting: interval ~%dms",
1.393     djm       626:                    options.obscure_keystroke_timing_interval);
                    627:                just_started = had_keystroke = active = 1;
                    628:                nchaff = 0;
1.397     djm       629:                set_next_interval(&now, &next_interval,
                    630:                    options.obscure_keystroke_timing_interval, 1);
1.393     djm       631:        }
                    632:
                    633:        /* Don't hold off if obfuscation inactive */
                    634:        if (!active)
                    635:                return 1;
                    636:
                    637:        if (had_keystroke) {
                    638:                /*
                    639:                 * Arrange to send chaff packets for a random interval after
                    640:                 * the last keystroke was sent.
                    641:                 */
                    642:                ms_to_timespec(&tmp, SSH_KEYSTROKE_CHAFF_MIN_MS +
                    643:                    arc4random_uniform(SSH_KEYSTROKE_CHAFF_RNG_MS));
                    644:                timespecadd(&now, &tmp, &chaff_until);
                    645:        }
                    646:
                    647:        ptimeout_deadline_monotime_tsp(timeout, &next_interval);
                    648:
                    649:        if (just_started)
                    650:                return 1;
                    651:
                    652:        /* Don't arm output fd for poll until the timing interval has elapsed */
                    653:        if (timespeccmp(&now, &next_interval, <))
                    654:                return 0;
                    655:
                    656:        /* Calculate number of intervals missed since the last check */
1.394     djm       657:        n = (now.tv_sec - next_interval.tv_sec) * 1000LL * 1000 * 1000;
1.393     djm       658:        n += now.tv_nsec - next_interval.tv_nsec;
1.394     djm       659:        n /= options.obscure_keystroke_timing_interval * 1000LL * 1000;
1.393     djm       660:        n = (n < 0) ? 1 : n + 1;
                    661:
                    662:        /* Advance to the next interval */
1.397     djm       663:        set_next_interval(&now, &next_interval,
                    664:            options.obscure_keystroke_timing_interval * n, 0);
1.393     djm       665:        return 1;
                    666: }
                    667:
1.13      markus    668: /*
                    669:  * Waits until the client can do something (some data becomes available on
                    670:  * one of the file descriptors).
                    671:  */
1.77      itojun    672: static void
1.374     djm       673: client_wait_until_can_do_something(struct ssh *ssh, struct pollfd **pfdp,
1.396     djm       674:     u_int *npfd_allocp, u_int *npfd_activep, int channel_did_enqueue,
1.374     djm       675:     int *conn_in_readyp, int *conn_out_readyp)
1.11      markus    676: {
1.386     djm       677:        struct timespec timeout;
1.393     djm       678:        int ret, oready;
1.374     djm       679:        u_int p;
1.117     markus    680:
1.374     djm       681:        *conn_in_readyp = *conn_out_readyp = 0;
1.11      markus    682:
1.374     djm       683:        /* Prepare channel poll. First two pollfd entries are reserved */
1.386     djm       684:        ptimeout_init(&timeout);
                    685:        channel_prepare_poll(ssh, pfdp, npfd_allocp, npfd_activep, 2, &timeout);
1.374     djm       686:        if (*npfd_activep < 2)
                    687:                fatal_f("bad npfd %u", *npfd_activep); /* shouldn't happen */
                    688:
                    689:        /* channel_prepare_poll could have closed the last channel */
1.303     djm       690:        if (session_closed && !channel_still_open(ssh) &&
1.320     djm       691:            !ssh_packet_have_data_to_write(ssh)) {
1.374     djm       692:                /* clear events since we did not call poll() */
                    693:                for (p = 0; p < *npfd_activep; p++)
                    694:                        (*pfdp)[p].revents = 0;
1.292     djm       695:                return;
1.16      markus    696:        }
1.11      markus    697:
1.396     djm       698:        oready = obfuscate_keystroke_timing(ssh, &timeout, channel_did_enqueue);
1.393     djm       699:
1.374     djm       700:        /* Monitor server connection on reserved pollfd entries */
                    701:        (*pfdp)[0].fd = connection_in;
                    702:        (*pfdp)[0].events = POLLIN;
                    703:        (*pfdp)[1].fd = connection_out;
1.393     djm       704:        (*pfdp)[1].events = (oready && ssh_packet_have_data_to_write(ssh)) ?
                    705:            POLLOUT : 0;
1.11      markus    706:
1.13      markus    707:        /*
                    708:         * Wait for something to happen.  This will suspend the process until
1.374     djm       709:         * some polled descriptor can be read, written, or has some other
1.222     djm       710:         * event pending, or a timeout expires.
1.13      markus    711:         */
1.386     djm       712:        set_control_persist_exit_time(ssh);
                    713:        if (control_persist_exit_time > 0)
                    714:                ptimeout_deadline_monotime(&timeout, control_persist_exit_time);
1.345     dtucker   715:        if (options.server_alive_interval > 0)
1.386     djm       716:                ptimeout_deadline_monotime(&timeout, server_alive_time);
1.396     djm       717:        if (options.rekey_interval > 0 && !ssh_packet_is_rekeying(ssh)) {
1.386     djm       718:                ptimeout_deadline_sec(&timeout,
1.320     djm       719:                    ssh_packet_get_rekey_timeout(ssh));
1.386     djm       720:        }
1.374     djm       721:
1.393     djm       722:        ret = ppoll(*pfdp, *npfd_activep, ptimeout_get_tsp(&timeout), NULL);
1.222     djm       723:
1.326     deraadt   724:        if (ret == -1) {
1.51      markus    725:                /*
1.374     djm       726:                 * We have to clear the events because we return.
1.51      markus    727:                 * We have to return, because the mainloop checks for the flags
                    728:                 * set by the signal handlers.
                    729:                 */
1.374     djm       730:                for (p = 0; p < *npfd_activep; p++)
                    731:                        (*pfdp)[p].revents = 0;
1.11      markus    732:                if (errno == EINTR)
                    733:                        return;
                    734:                /* Note: we might still have data in the buffers. */
1.377     djm       735:                quit_message("poll: %s", strerror(errno));
1.374     djm       736:                return;
                    737:        }
                    738:
                    739:        *conn_in_readyp = (*pfdp)[0].revents != 0;
                    740:        *conn_out_readyp = (*pfdp)[1].revents != 0;
                    741:
                    742:        if (options.server_alive_interval > 0 && !*conn_in_readyp &&
                    743:            monotime() >= server_alive_time) {
1.249     dtucker   744:                /*
1.374     djm       745:                 * ServerAlive check is needed. We can't rely on the poll
1.345     dtucker   746:                 * timing out since traffic on the client side such as port
                    747:                 * forwards can keep waking it up.
1.249     dtucker   748:                 */
1.345     dtucker   749:                server_alive_check(ssh);
1.374     djm       750:        }
1.11      markus    751: }
                    752:
1.77      itojun    753: static void
1.315     markus    754: client_suspend_self(struct sshbuf *bin, struct sshbuf *bout, struct sshbuf *berr)
1.1       deraadt   755: {
1.11      markus    756:        /* Flush stdout and stderr buffers. */
1.315     markus    757:        if (sshbuf_len(bout) > 0)
                    758:                atomicio(vwrite, fileno(stdout), sshbuf_mutable_ptr(bout),
                    759:                    sshbuf_len(bout));
                    760:        if (sshbuf_len(berr) > 0)
                    761:                atomicio(vwrite, fileno(stderr), sshbuf_mutable_ptr(berr),
                    762:                    sshbuf_len(berr));
1.11      markus    763:
1.233     djm       764:        leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.11      markus    765:
1.305     djm       766:        sshbuf_reset(bin);
                    767:        sshbuf_reset(bout);
                    768:        sshbuf_reset(berr);
1.11      markus    769:
                    770:        /* Send the suspend signal to the program itself. */
                    771:        kill(getpid(), SIGTSTP);
                    772:
1.132     djm       773:        /* Reset window sizes in case they have changed */
                    774:        received_window_change_signal = 1;
1.11      markus    775:
1.233     djm       776:        enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.11      markus    777: }
                    778:
1.77      itojun    779: static void
1.374     djm       780: client_process_net_input(struct ssh *ssh)
1.11      markus    781: {
1.378     djm       782:        int r;
1.11      markus    783:
1.13      markus    784:        /*
                    785:         * Read input from the server, and add any such data to the buffer of
                    786:         * the packet subsystem.
                    787:         */
1.374     djm       788:        schedule_server_alive_check();
1.378     djm       789:        if ((r = ssh_packet_process_read(ssh, connection_in)) == 0)
                    790:                return; /* success */
                    791:        if (r == SSH_ERR_SYSTEM_ERROR) {
                    792:                if (errno == EAGAIN || errno == EINTR)
                    793:                        return;
                    794:                if (errno == EPIPE) {
                    795:                        quit_message("Connection to %s closed by remote host.",
                    796:                            host);
                    797:                        return;
                    798:                }
1.11      markus    799:        }
1.378     djm       800:        quit_message("Read from remote host %s: %s", host, ssh_err(r));
1.17      markus    801: }
1.16      markus    802:
1.97      jakob     803: static void
1.303     djm       804: client_status_confirm(struct ssh *ssh, int type, Channel *c, void *ctx)
1.123     djm       805: {
1.190     djm       806:        struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
                    807:        char errmsg[256];
1.315     markus    808:        int r, tochan;
1.190     djm       809:
1.234     djm       810:        /*
                    811:         * If a TTY was explicitly requested, then a failure to allocate
                    812:         * one is fatal.
                    813:         */
                    814:        if (cr->action == CONFIRM_TTY &&
                    815:            (options.request_tty == REQUEST_TTY_FORCE ||
                    816:            options.request_tty == REQUEST_TTY_YES))
                    817:                cr->action = CONFIRM_CLOSE;
                    818:
1.312     djm       819:        /* XXX suppress on mux _client_ quietmode */
1.190     djm       820:        tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
1.217     djm       821:            c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
1.190     djm       822:
                    823:        if (type == SSH2_MSG_CHANNEL_SUCCESS) {
                    824:                debug2("%s request accepted on channel %d",
                    825:                    cr->request_type, c->self);
                    826:        } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
                    827:                if (tochan) {
                    828:                        snprintf(errmsg, sizeof(errmsg),
                    829:                            "%s request failed\r\n", cr->request_type);
                    830:                } else {
                    831:                        snprintf(errmsg, sizeof(errmsg),
                    832:                            "%s request failed on channel %d",
                    833:                            cr->request_type, c->self);
                    834:                }
                    835:                /* If error occurred on primary session channel, then exit */
1.234     djm       836:                if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
1.190     djm       837:                        fatal("%s", errmsg);
1.234     djm       838:                /*
                    839:                 * If error occurred on mux client, append to
                    840:                 * their stderr.
                    841:                 */
                    842:                if (tochan) {
1.360     djm       843:                        debug3_f("channel %d: mux request: %s", c->self,
                    844:                            cr->request_type);
1.315     markus    845:                        if ((r = sshbuf_put(c->extended, errmsg,
                    846:                            strlen(errmsg))) != 0)
1.354     djm       847:                                fatal_fr(r, "sshbuf_put");
1.234     djm       848:                } else
1.190     djm       849:                        error("%s", errmsg);
1.234     djm       850:                if (cr->action == CONFIRM_TTY) {
                    851:                        /*
                    852:                         * If a TTY allocation error occurred, then arrange
                    853:                         * for the correct TTY to leave raw mode.
                    854:                         */
                    855:                        if (c->self == session_ident)
                    856:                                leave_raw_mode(0);
                    857:                        else
1.303     djm       858:                                mux_tty_alloc_failed(ssh, c);
1.234     djm       859:                } else if (cr->action == CONFIRM_CLOSE) {
1.303     djm       860:                        chan_read_failed(ssh, c);
                    861:                        chan_write_failed(ssh, c);
1.190     djm       862:                }
                    863:        }
1.250     djm       864:        free(cr);
1.190     djm       865: }
                    866:
                    867: static void
1.303     djm       868: client_abandon_status_confirm(struct ssh *ssh, Channel *c, void *ctx)
1.190     djm       869: {
1.250     djm       870:        free(ctx);
1.190     djm       871: }
1.129     deraadt   872:
1.236     djm       873: void
1.303     djm       874: client_expect_confirm(struct ssh *ssh, int id, const char *request,
1.234     djm       875:     enum confirm_action action)
1.190     djm       876: {
1.255     djm       877:        struct channel_reply_ctx *cr = xcalloc(1, sizeof(*cr));
1.123     djm       878:
1.190     djm       879:        cr->request_type = request;
1.234     djm       880:        cr->action = action;
1.123     djm       881:
1.303     djm       882:        channel_register_status_confirm(ssh, id, client_status_confirm,
1.190     djm       883:            client_abandon_status_confirm, cr);
1.196     djm       884: }
                    885:
                    886: void
                    887: client_register_global_confirm(global_confirm_cb *cb, void *ctx)
                    888: {
1.201     djm       889:        struct global_confirm *gc, *last_gc;
1.196     djm       890:
                    891:        /* Coalesce identical callbacks */
1.201     djm       892:        last_gc = TAILQ_LAST(&global_confirms, global_confirms);
                    893:        if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
                    894:                if (++last_gc->ref_count >= INT_MAX)
1.354     djm       895:                        fatal_f("last_gc->ref_count = %d",
                    896:                            last_gc->ref_count);
1.196     djm       897:                return;
                    898:        }
                    899:
1.255     djm       900:        gc = xcalloc(1, sizeof(*gc));
1.196     djm       901:        gc->cb = cb;
                    902:        gc->ctx = ctx;
                    903:        gc->ref_count = 1;
                    904:        TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
1.123     djm       905: }
                    906:
1.384     djm       907: /*
                    908:  * Returns non-zero if the client is able to handle a hostkeys-00@openssh.com
                    909:  * hostkey update request.
                    910:  */
                    911: static int
                    912: can_update_hostkeys(void)
                    913: {
                    914:        if (hostkeys_update_complete)
                    915:                return 0;
                    916:        if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK &&
                    917:            options.batch_mode)
                    918:                return 0; /* won't ask in batchmode, so don't even try */
                    919:        if (!options.update_hostkeys || options.num_user_hostfiles <= 0)
                    920:                return 0;
                    921:        return 1;
                    922: }
                    923:
1.385     dtucker   924: static void
                    925: client_repledge(void)
1.384     djm       926: {
                    927:        debug3_f("enter");
                    928:
                    929:        /* Might be able to tighten pledge now that session is established */
                    930:        if (options.control_master || options.control_path != NULL ||
                    931:            options.forward_x11 || options.fork_after_authentication ||
                    932:            can_update_hostkeys() ||
                    933:            (session_ident != -1 && !session_setup_complete)) {
                    934:                /* Can't tighten */
                    935:                return;
                    936:        }
                    937:        /*
                    938:         * LocalCommand and UpdateHostkeys have finished, so can get rid of
                    939:         * filesystem.
                    940:         *
                    941:         * XXX protocol allows a server can to change hostkeys during the
                    942:         *     connection at rekey time that could trigger a hostkeys update
                    943:         *     but AFAIK no implementations support this. Could improve by
                    944:         *     forcing known_hosts to be read-only or via unveil(2).
                    945:         */
                    946:        if (options.num_local_forwards != 0 ||
                    947:            options.num_remote_forwards != 0 ||
                    948:            options.num_permitted_remote_opens != 0 ||
                    949:            options.enable_escape_commandline != 0) {
                    950:                /* rfwd needs inet */
                    951:                debug("pledge: network");
                    952:                if (pledge("stdio unix inet dns proc tty", NULL) == -1)
                    953:                        fatal_f("pledge(): %s", strerror(errno));
                    954:        } else if (options.forward_agent != 0) {
                    955:                /* agent forwarding needs to open $SSH_AUTH_SOCK at will */
                    956:                debug("pledge: agent");
                    957:                if (pledge("stdio unix proc tty", NULL) == -1)
                    958:                        fatal_f("pledge(): %s", strerror(errno));
                    959:        } else {
                    960:                debug("pledge: fork");
                    961:                if (pledge("stdio proc tty", NULL) == -1)
                    962:                        fatal_f("pledge(): %s", strerror(errno));
                    963:        }
                    964:        /* XXX further things to do:
                    965:         *
                    966:         * - might be able to get rid of proc if we kill ~^Z
                    967:         * - ssh -N (no session)
                    968:         * - stdio forwarding
                    969:         * - sessions without tty
                    970:         */
                    971: }
                    972:
1.123     djm       973: static void
1.303     djm       974: process_cmdline(struct ssh *ssh)
1.97      jakob     975: {
                    976:        void (*handler)(int);
1.261     millert   977:        char *s, *cmd;
                    978:        int ok, delete = 0, local = 0, remote = 0, dynamic = 0;
                    979:        struct Forward fwd;
1.97      jakob     980:
1.257     tedu      981:        memset(&fwd, 0, sizeof(fwd));
1.183     djm       982:
1.233     djm       983:        leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.332     dtucker   984:        handler = ssh_signal(SIGINT, SIG_IGN);
1.99      markus    985:        cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
1.97      jakob     986:        if (s == NULL)
                    987:                goto out;
1.256     deraadt   988:        while (isspace((u_char)*s))
1.97      jakob     989:                s++;
1.121     djm       990:        if (*s == '-')
                    991:                s++;    /* Skip cmdline '-', if any */
1.120     dtucker   992:        if (*s == '\0')
1.97      jakob     993:                goto out;
1.121     djm       994:
1.122     djm       995:        if (*s == 'h' || *s == 'H' || *s == '?') {
1.121     djm       996:                logit("Commands:");
1.164     djm       997:                logit("      -L[bind_address:]port:host:hostport    "
                    998:                    "Request local forward");
                    999:                logit("      -R[bind_address:]port:host:hostport    "
                   1000:                    "Request remote forward");
1.204     stevesk  1001:                logit("      -D[bind_address:]port                  "
                   1002:                    "Request dynamic forward");
1.237     markus   1003:                logit("      -KL[bind_address:]port                 "
                   1004:                    "Cancel local forward");
1.165     stevesk  1005:                logit("      -KR[bind_address:]port                 "
1.164     djm      1006:                    "Cancel remote forward");
1.237     markus   1007:                logit("      -KD[bind_address:]port                 "
                   1008:                    "Cancel dynamic forward");
1.146     reyk     1009:                if (!options.permit_local_command)
                   1010:                        goto out;
1.164     djm      1011:                logit("      !args                                  "
                   1012:                    "Execute local command");
1.146     reyk     1013:                goto out;
                   1014:        }
                   1015:
                   1016:        if (*s == '!' && options.permit_local_command) {
                   1017:                s++;
                   1018:                ssh_local_cmd(s);
1.121     djm      1019:                goto out;
                   1020:        }
                   1021:
                   1022:        if (*s == 'K') {
                   1023:                delete = 1;
                   1024:                s++;
                   1025:        }
1.204     stevesk  1026:        if (*s == 'L')
                   1027:                local = 1;
                   1028:        else if (*s == 'R')
                   1029:                remote = 1;
                   1030:        else if (*s == 'D')
                   1031:                dynamic = 1;
                   1032:        else {
1.109     itojun   1033:                logit("Invalid command.");
1.97      jakob    1034:                goto out;
                   1035:        }
1.204     stevesk  1036:
1.256     deraadt  1037:        while (isspace((u_char)*++s))
1.179     tedu     1038:                ;
1.97      jakob    1039:
1.217     djm      1040:        /* XXX update list of forwards in options */
1.121     djm      1041:        if (delete) {
1.261     millert  1042:                /* We pass 1 for dynamicfwd to restrict to 1 or 2 fields. */
                   1043:                if (!parse_forward(&fwd, s, 1, 0)) {
                   1044:                        logit("Bad forwarding close specification.");
1.121     djm      1045:                        goto out;
                   1046:                }
1.237     markus   1047:                if (remote)
1.303     djm      1048:                        ok = channel_request_rforward_cancel(ssh, &fwd) == 0;
1.237     markus   1049:                else if (dynamic)
1.303     djm      1050:                        ok = channel_cancel_lport_listener(ssh, &fwd,
1.261     millert  1051:                            0, &options.fwd_opts) > 0;
1.237     markus   1052:                else
1.303     djm      1053:                        ok = channel_cancel_lport_listener(ssh, &fwd,
1.261     millert  1054:                            CHANNEL_CANCEL_PORT_STATIC,
                   1055:                            &options.fwd_opts) > 0;
1.237     markus   1056:                if (!ok) {
1.290     dtucker  1057:                        logit("Unknown port forwarding.");
1.237     markus   1058:                        goto out;
                   1059:                }
                   1060:                logit("Canceled forwarding.");
1.121     djm      1061:        } else {
1.382     dtucker  1062:                /* -R specs can be both dynamic or not, so check both. */
                   1063:                if (remote) {
                   1064:                        if (!parse_forward(&fwd, s, 0, remote) &&
                   1065:                            !parse_forward(&fwd, s, 1, remote)) {
                   1066:                                logit("Bad remote forwarding specification.");
                   1067:                                goto out;
                   1068:                        }
                   1069:                } else if (!parse_forward(&fwd, s, dynamic, remote)) {
                   1070:                        logit("Bad local forwarding specification.");
1.121     djm      1071:                        goto out;
                   1072:                }
1.204     stevesk  1073:                if (local || dynamic) {
1.303     djm      1074:                        if (!channel_setup_local_fwd_listener(ssh, &fwd,
1.261     millert  1075:                            &options.fwd_opts)) {
1.121     djm      1076:                                logit("Port forwarding failed.");
                   1077:                                goto out;
                   1078:                        }
1.135     djm      1079:                } else {
1.303     djm      1080:                        if (channel_request_remote_forwarding(ssh, &fwd) < 0) {
1.167     markus   1081:                                logit("Port forwarding failed.");
                   1082:                                goto out;
                   1083:                        }
1.135     djm      1084:                }
1.121     djm      1085:                logit("Forwarding port.");
                   1086:        }
                   1087:
1.97      jakob    1088: out:
1.332     dtucker  1089:        ssh_signal(SIGINT, handler);
1.233     djm      1090:        enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.250     djm      1091:        free(cmd);
                   1092:        free(fwd.listen_host);
1.261     millert  1093:        free(fwd.listen_path);
1.250     djm      1094:        free(fwd.connect_host);
1.261     millert  1095:        free(fwd.connect_path);
1.97      jakob    1096: }
                   1097:
1.244     dtucker  1098: /* reasons to suppress output of an escape command in help output */
                   1099: #define SUPPRESS_NEVER         0       /* never suppress, always show */
1.292     djm      1100: #define SUPPRESS_MUXCLIENT     1       /* don't show in mux client sessions */
                   1101: #define SUPPRESS_MUXMASTER     2       /* don't show in mux master sessions */
                   1102: #define SUPPRESS_SYSLOG                4       /* don't show when logging to syslog */
1.383     djm      1103: #define SUPPRESS_NOCMDLINE     8       /* don't show when cmdline disabled*/
1.244     dtucker  1104: struct escape_help_text {
                   1105:        const char *cmd;
                   1106:        const char *text;
                   1107:        unsigned int flags;
                   1108: };
                   1109: static struct escape_help_text esc_txt[] = {
                   1110:     {".",  "terminate session", SUPPRESS_MUXMASTER},
                   1111:     {".",  "terminate connection (and any multiplexed sessions)",
                   1112:        SUPPRESS_MUXCLIENT},
1.292     djm      1113:     {"B",  "send a BREAK to the remote system", SUPPRESS_NEVER},
1.383     djm      1114:     {"C",  "open a command line", SUPPRESS_MUXCLIENT|SUPPRESS_NOCMDLINE},
1.292     djm      1115:     {"R",  "request rekey", SUPPRESS_NEVER},
1.246     dtucker  1116:     {"V/v",  "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
1.244     dtucker  1117:     {"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
                   1118:     {"#",  "list forwarded connections", SUPPRESS_NEVER},
                   1119:     {"&",  "background ssh (when waiting for connections to terminate)",
                   1120:        SUPPRESS_MUXCLIENT},
                   1121:     {"?", "this message", SUPPRESS_NEVER},
                   1122: };
                   1123:
                   1124: static void
1.315     markus   1125: print_escape_help(struct sshbuf *b, int escape_char, int mux_client,
                   1126:     int using_stderr)
1.244     dtucker  1127: {
                   1128:        unsigned int i, suppress_flags;
1.315     markus   1129:        int r;
1.244     dtucker  1130:
1.315     markus   1131:        if ((r = sshbuf_putf(b,
                   1132:            "%c?\r\nSupported escape sequences:\r\n", escape_char)) != 0)
1.354     djm      1133:                fatal_fr(r, "sshbuf_putf");
1.244     dtucker  1134:
1.292     djm      1135:        suppress_flags =
1.244     dtucker  1136:            (mux_client ? SUPPRESS_MUXCLIENT : 0) |
                   1137:            (mux_client ? 0 : SUPPRESS_MUXMASTER) |
1.383     djm      1138:            (using_stderr ? 0 : SUPPRESS_SYSLOG) |
                   1139:            (options.enable_escape_commandline == 0 ? SUPPRESS_NOCMDLINE : 0);
1.244     dtucker  1140:
                   1141:        for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
                   1142:                if (esc_txt[i].flags & suppress_flags)
                   1143:                        continue;
1.315     markus   1144:                if ((r = sshbuf_putf(b, " %c%-3s - %s\r\n",
                   1145:                    escape_char, esc_txt[i].cmd, esc_txt[i].text)) != 0)
1.354     djm      1146:                        fatal_fr(r, "sshbuf_putf");
1.244     dtucker  1147:        }
                   1148:
1.315     markus   1149:        if ((r = sshbuf_putf(b,
1.246     dtucker  1150:            " %c%c   - send the escape character by typing it twice\r\n"
1.244     dtucker  1151:            "(Note that escapes are only recognized immediately after "
1.315     markus   1152:            "newline.)\r\n", escape_char, escape_char)) != 0)
1.354     djm      1153:                fatal_fr(r, "sshbuf_putf");
1.244     dtucker  1154: }
                   1155:
1.314     djm      1156: /*
1.296     naddy    1157:  * Process the characters one by one.
1.195     djm      1158:  */
1.77      itojun   1159: static int
1.303     djm      1160: process_escapes(struct ssh *ssh, Channel *c,
1.315     markus   1161:     struct sshbuf *bin, struct sshbuf *bout, struct sshbuf *berr,
1.195     djm      1162:     char *buf, int len)
1.31      markus   1163: {
                   1164:        pid_t pid;
1.315     markus   1165:        int r, bytes = 0;
1.42      markus   1166:        u_int i;
                   1167:        u_char ch;
1.31      markus   1168:        char *s;
1.392     dtucker  1169:        struct escape_filter_ctx *efc;
1.31      markus   1170:
1.392     dtucker  1171:        if (c == NULL || c->filter_ctx == NULL || len <= 0)
1.294     djm      1172:                return 0;
1.314     djm      1173:
1.392     dtucker  1174:        efc = (struct escape_filter_ctx *)c->filter_ctx;
1.139     djm      1175:
                   1176:        for (i = 0; i < (u_int)len; i++) {
1.31      markus   1177:                /* Get one character at a time. */
                   1178:                ch = buf[i];
                   1179:
1.294     djm      1180:                if (efc->escape_pending) {
1.31      markus   1181:                        /* We have previously seen an escape character. */
                   1182:                        /* Clear the flag now. */
1.294     djm      1183:                        efc->escape_pending = 0;
1.31      markus   1184:
                   1185:                        /* Process the escaped character. */
                   1186:                        switch (ch) {
                   1187:                        case '.':
                   1188:                                /* Terminate the connection. */
1.315     markus   1189:                                if ((r = sshbuf_putf(berr, "%c.\r\n",
                   1190:                                    efc->escape_char)) != 0)
1.354     djm      1191:                                        fatal_fr(r, "sshbuf_putf");
1.217     djm      1192:                                if (c && c->ctl_chan != -1) {
1.387     djm      1193:                                        channel_force_close(ssh, c, 1);
1.195     djm      1194:                                        return 0;
                   1195:                                } else
                   1196:                                        quit_pending = 1;
1.31      markus   1197:                                return -1;
                   1198:
                   1199:                        case 'Z' - 64:
1.195     djm      1200:                                /* XXX support this for mux clients */
1.217     djm      1201:                                if (c && c->ctl_chan != -1) {
1.245     dtucker  1202:                                        char b[16];
1.195     djm      1203:  noescape:
1.245     dtucker  1204:                                        if (ch == 'Z' - 64)
                   1205:                                                snprintf(b, sizeof b, "^Z");
                   1206:                                        else
                   1207:                                                snprintf(b, sizeof b, "%c", ch);
1.315     markus   1208:                                        if ((r = sshbuf_putf(berr,
1.245     dtucker  1209:                                            "%c%s escape not available to "
1.195     djm      1210:                                            "multiplexed sessions\r\n",
1.315     markus   1211:                                            efc->escape_char, b)) != 0)
1.354     djm      1212:                                                fatal_fr(r, "sshbuf_putf");
1.195     djm      1213:                                        continue;
                   1214:                                }
1.197     djm      1215:                                /* Suspend the program. Inform the user */
1.315     markus   1216:                                if ((r = sshbuf_putf(berr,
                   1217:                                    "%c^Z [suspend ssh]\r\n",
                   1218:                                    efc->escape_char)) != 0)
1.354     djm      1219:                                        fatal_fr(r, "sshbuf_putf");
1.31      markus   1220:
                   1221:                                /* Restore terminal modes and suspend. */
                   1222:                                client_suspend_self(bin, bout, berr);
                   1223:
                   1224:                                /* We have been continued. */
                   1225:                                continue;
                   1226:
1.111     markus   1227:                        case 'B':
1.315     markus   1228:                                if ((r = sshbuf_putf(berr,
                   1229:                                    "%cB\r\n", efc->escape_char)) != 0)
1.354     djm      1230:                                        fatal_fr(r, "sshbuf_putf");
1.303     djm      1231:                                channel_request_start(ssh, c->self, "break", 0);
1.315     markus   1232:                                if ((r = sshpkt_put_u32(ssh, 1000)) != 0 ||
                   1233:                                    (r = sshpkt_send(ssh)) != 0)
1.354     djm      1234:                                        fatal_fr(r, "send packet");
1.111     markus   1235:                                continue;
                   1236:
1.54      markus   1237:                        case 'R':
1.357     djm      1238:                                if (ssh->compat & SSH_BUG_NOREKEY)
1.292     djm      1239:                                        logit("Server does not "
                   1240:                                            "support re-keying");
                   1241:                                else
                   1242:                                        need_rekeying = 1;
1.54      markus   1243:                                continue;
                   1244:
1.242     dtucker  1245:                        case 'V':
                   1246:                                /* FALLTHROUGH */
                   1247:                        case 'v':
                   1248:                                if (c && c->ctl_chan != -1)
                   1249:                                        goto noescape;
                   1250:                                if (!log_is_on_stderr()) {
1.315     markus   1251:                                        if ((r = sshbuf_putf(berr,
1.242     dtucker  1252:                                            "%c%c [Logging to syslog]\r\n",
1.315     markus   1253:                                            efc->escape_char, ch)) != 0)
1.354     djm      1254:                                                fatal_fr(r, "sshbuf_putf");
1.242     dtucker  1255:                                        continue;
                   1256:                                }
                   1257:                                if (ch == 'V' && options.log_level >
                   1258:                                    SYSLOG_LEVEL_QUIET)
                   1259:                                        log_change_level(--options.log_level);
                   1260:                                if (ch == 'v' && options.log_level <
                   1261:                                    SYSLOG_LEVEL_DEBUG3)
                   1262:                                        log_change_level(++options.log_level);
1.315     markus   1263:                                if ((r = sshbuf_putf(berr,
1.294     djm      1264:                                    "%c%c [LogLevel %s]\r\n",
                   1265:                                    efc->escape_char, ch,
1.315     markus   1266:                                    log_level_name(options.log_level))) != 0)
1.354     djm      1267:                                        fatal_fr(r, "sshbuf_putf");
1.242     dtucker  1268:                                continue;
                   1269:
1.31      markus   1270:                        case '&':
1.392     dtucker  1271:                                if (c->ctl_chan != -1)
1.195     djm      1272:                                        goto noescape;
1.31      markus   1273:                                /*
1.197     djm      1274:                                 * Detach the program (continue to serve
                   1275:                                 * connections, but put in background and no
                   1276:                                 * more new connections).
1.31      markus   1277:                                 */
                   1278:                                /* Restore tty modes. */
1.233     djm      1279:                                leave_raw_mode(
                   1280:                                    options.request_tty == REQUEST_TTY_FORCE);
1.31      markus   1281:
                   1282:                                /* Stop listening for new connections. */
1.303     djm      1283:                                channel_stop_listening(ssh);
1.31      markus   1284:
1.354     djm      1285:                                if ((r = sshbuf_putf(berr, "%c& "
                   1286:                                    "[backgrounded]\n", efc->escape_char)) != 0)
                   1287:                                        fatal_fr(r, "sshbuf_putf");
1.31      markus   1288:
                   1289:                                /* Fork into background. */
                   1290:                                pid = fork();
1.326     deraadt  1291:                                if (pid == -1) {
1.31      markus   1292:                                        error("fork: %.100s", strerror(errno));
                   1293:                                        continue;
                   1294:                                }
                   1295:                                if (pid != 0) { /* This is the parent. */
                   1296:                                        /* The parent just exits. */
                   1297:                                        exit(0);
                   1298:                                }
                   1299:                                /* The child continues serving connections. */
1.292     djm      1300:                                /* fake EOF on stdin */
1.315     markus   1301:                                if ((r = sshbuf_put_u8(bin, 4)) != 0)
1.354     djm      1302:                                        fatal_fr(r, "sshbuf_put_u8");
1.292     djm      1303:                                return -1;
1.31      markus   1304:                        case '?':
1.294     djm      1305:                                print_escape_help(berr, efc->escape_char,
1.244     dtucker  1306:                                    (c && c->ctl_chan != -1),
                   1307:                                    log_is_on_stderr());
1.31      markus   1308:                                continue;
                   1309:
                   1310:                        case '#':
1.315     markus   1311:                                if ((r = sshbuf_putf(berr, "%c#\r\n",
                   1312:                                    efc->escape_char)) != 0)
1.354     djm      1313:                                        fatal_fr(r, "sshbuf_putf");
1.303     djm      1314:                                s = channel_open_message(ssh);
1.315     markus   1315:                                if ((r = sshbuf_put(berr, s, strlen(s))) != 0)
1.354     djm      1316:                                        fatal_fr(r, "sshbuf_put");
1.250     djm      1317:                                free(s);
1.97      jakob    1318:                                continue;
                   1319:
                   1320:                        case 'C':
1.217     djm      1321:                                if (c && c->ctl_chan != -1)
1.206     djm      1322:                                        goto noescape;
1.383     djm      1323:                                if (options.enable_escape_commandline == 0) {
                   1324:                                        if ((r = sshbuf_putf(berr,
                   1325:                                            "commandline disabled\r\n")) != 0)
                   1326:                                                fatal_fr(r, "sshbuf_putf");
                   1327:                                        continue;
                   1328:                                }
1.303     djm      1329:                                process_cmdline(ssh);
1.31      markus   1330:                                continue;
                   1331:
                   1332:                        default:
1.294     djm      1333:                                if (ch != efc->escape_char) {
1.315     markus   1334:                                        if ((r = sshbuf_put_u8(bin,
                   1335:                                            efc->escape_char)) != 0)
1.354     djm      1336:                                                fatal_fr(r, "sshbuf_put_u8");
1.31      markus   1337:                                        bytes++;
                   1338:                                }
                   1339:                                /* Escaped characters fall through here */
                   1340:                                break;
                   1341:                        }
                   1342:                } else {
                   1343:                        /*
1.197     djm      1344:                         * The previous character was not an escape char.
                   1345:                         * Check if this is an escape.
1.31      markus   1346:                         */
1.294     djm      1347:                        if (last_was_cr && ch == efc->escape_char) {
1.197     djm      1348:                                /*
                   1349:                                 * It is. Set the flag and continue to
                   1350:                                 * next character.
                   1351:                                 */
1.294     djm      1352:                                efc->escape_pending = 1;
1.31      markus   1353:                                continue;
                   1354:                        }
                   1355:                }
                   1356:
                   1357:                /*
                   1358:                 * Normal character.  Record whether it was a newline,
                   1359:                 * and append it to the buffer.
                   1360:                 */
                   1361:                last_was_cr = (ch == '\r' || ch == '\n');
1.315     markus   1362:                if ((r = sshbuf_put_u8(bin, ch)) != 0)
1.354     djm      1363:                        fatal_fr(r, "sshbuf_put_u8");
1.31      markus   1364:                bytes++;
                   1365:        }
                   1366:        return bytes;
                   1367: }
                   1368:
1.13      markus   1369: /*
1.15      markus   1370:  * Get packets from the connection input buffer, and process them as long as
                   1371:  * there are packets available.
                   1372:  *
                   1373:  * Any unknown packets received during the actual
                   1374:  * session cause the session to terminate.  This is
                   1375:  * intended to make debugging easier since no
                   1376:  * confirmations are sent.  Any compatible protocol
                   1377:  * extensions must be negotiated during the
                   1378:  * preparatory phase.
                   1379:  */
                   1380:
1.77      itojun   1381: static void
1.321     djm      1382: client_process_buffered_input_packets(struct ssh *ssh)
1.15      markus   1383: {
1.321     djm      1384:        ssh_dispatch_run_fatal(ssh, DISPATCH_NONBLOCK, &quit_pending);
1.15      markus   1385: }
                   1386:
1.31      markus   1387: /* scan buf[] for '~' before sending data to the peer */
1.30      markus   1388:
1.195     djm      1389: /* Helper: allocate a new escape_filter_ctx and fill in its escape char */
                   1390: void *
                   1391: client_new_escape_filter_ctx(int escape_char)
                   1392: {
                   1393:        struct escape_filter_ctx *ret;
                   1394:
1.255     djm      1395:        ret = xcalloc(1, sizeof(*ret));
1.195     djm      1396:        ret->escape_pending = 0;
                   1397:        ret->escape_char = escape_char;
                   1398:        return (void *)ret;
                   1399: }
                   1400:
1.198     djm      1401: /* Free the escape filter context on channel free */
                   1402: void
1.303     djm      1403: client_filter_cleanup(struct ssh *ssh, int cid, void *ctx)
1.198     djm      1404: {
1.250     djm      1405:        free(ctx);
1.198     djm      1406: }
                   1407:
1.195     djm      1408: int
1.303     djm      1409: client_simple_escape_filter(struct ssh *ssh, Channel *c, char *buf, int len)
1.30      markus   1410: {
1.190     djm      1411:        if (c->extended_usage != CHAN_EXTENDED_WRITE)
                   1412:                return 0;
                   1413:
1.303     djm      1414:        return process_escapes(ssh, c, c->input, c->output, c->extended,
1.195     djm      1415:            buf, len);
1.30      markus   1416: }
                   1417:
1.77      itojun   1418: static void
1.387     djm      1419: client_channel_closed(struct ssh *ssh, int id, int force, void *arg)
1.60      markus   1420: {
1.303     djm      1421:        channel_cancel_cleanup(ssh, id);
1.60      markus   1422:        session_closed = 1;
1.233     djm      1423:        leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.60      markus   1424: }
                   1425:
1.15      markus   1426: /*
1.13      markus   1427:  * Implements the interactive session with the server.  This is called after
                   1428:  * the user has been authenticated, and a command has been started on the
1.72      stevesk  1429:  * remote host.  If escape_char != SSH_ESCAPECHAR_NONE, it is the character
                   1430:  * used as an escape character for terminating or suspending the session.
1.13      markus   1431:  */
1.20      markus   1432: int
1.303     djm      1433: client_loop(struct ssh *ssh, int have_pty, int escape_char_arg,
                   1434:     int ssh2_chan_id)
1.1       deraadt  1435: {
1.374     djm      1436:        struct pollfd *pfd = NULL;
                   1437:        u_int npfd_alloc = 0, npfd_active = 0;
1.11      markus   1438:        double start_time, total_time;
1.396     djm      1439:        int channel_did_enqueue = 0, r, len;
1.200     markus   1440:        u_int64_t ibytes, obytes;
1.374     djm      1441:        int conn_in_ready, conn_out_ready;
1.11      markus   1442:
                   1443:        debug("Entering interactive session.");
1.384     djm      1444:        session_ident = ssh2_chan_id;
1.277     semarie  1445:
1.278     semarie  1446:        if (options.control_master &&
1.286     djm      1447:            !option_clear_or_none(options.control_path)) {
1.278     semarie  1448:                debug("pledge: id");
1.327     mestre   1449:                if (pledge("stdio rpath wpath cpath unix inet dns recvfd sendfd proc exec id tty",
1.278     semarie  1450:                    NULL) == -1)
1.354     djm      1451:                        fatal_f("pledge(): %s", strerror(errno));
1.278     semarie  1452:
                   1453:        } else if (options.forward_x11 || options.permit_local_command) {
1.277     semarie  1454:                debug("pledge: exec");
                   1455:                if (pledge("stdio rpath wpath cpath unix inet dns proc exec tty",
                   1456:                    NULL) == -1)
1.354     djm      1457:                        fatal_f("pledge(): %s", strerror(errno));
1.277     semarie  1458:
                   1459:        } else if (options.update_hostkeys) {
1.373     jsg      1460:                debug("pledge: filesystem");
1.277     semarie  1461:                if (pledge("stdio rpath wpath cpath unix inet dns proc tty",
                   1462:                    NULL) == -1)
1.354     djm      1463:                        fatal_f("pledge(): %s", strerror(errno));
1.277     semarie  1464:
1.286     djm      1465:        } else if (!option_clear_or_none(options.proxy_command) ||
1.369     djm      1466:            options.fork_after_authentication) {
1.277     semarie  1467:                debug("pledge: proc");
                   1468:                if (pledge("stdio cpath unix inet dns proc tty", NULL) == -1)
1.354     djm      1469:                        fatal_f("pledge(): %s", strerror(errno));
1.277     semarie  1470:
                   1471:        } else {
                   1472:                debug("pledge: network");
1.300     mestre   1473:                if (pledge("stdio unix inet dns proc tty", NULL) == -1)
1.354     djm      1474:                        fatal_f("pledge(): %s", strerror(errno));
1.277     semarie  1475:        }
1.11      markus   1476:
1.384     djm      1477:        /* might be able to tighten now */
                   1478:        client_repledge();
                   1479:
1.307     dtucker  1480:        start_time = monotime_double();
1.11      markus   1481:
                   1482:        /* Initialize variables. */
                   1483:        last_was_cr = 1;
                   1484:        exit_status = -1;
1.320     djm      1485:        connection_in = ssh_packet_get_connection_in(ssh);
                   1486:        connection_out = ssh_packet_get_connection_out(ssh);
1.46      markus   1487:
1.11      markus   1488:        quit_pending = 0;
                   1489:
1.315     markus   1490:        /* Initialize buffer. */
                   1491:        if ((stderr_buffer = sshbuf_new()) == NULL)
1.354     djm      1492:                fatal_f("sshbuf_new failed");
1.11      markus   1493:
1.321     djm      1494:        client_init_dispatch(ssh);
1.15      markus   1495:
1.105     markus   1496:        /*
                   1497:         * Set signal handlers, (e.g. to restore non-blocking mode)
                   1498:         * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
                   1499:         */
1.332     dtucker  1500:        if (ssh_signal(SIGHUP, SIG_IGN) != SIG_IGN)
                   1501:                ssh_signal(SIGHUP, signal_handler);
                   1502:        if (ssh_signal(SIGINT, SIG_IGN) != SIG_IGN)
                   1503:                ssh_signal(SIGINT, signal_handler);
                   1504:        if (ssh_signal(SIGQUIT, SIG_IGN) != SIG_IGN)
                   1505:                ssh_signal(SIGQUIT, signal_handler);
                   1506:        if (ssh_signal(SIGTERM, SIG_IGN) != SIG_IGN)
                   1507:                ssh_signal(SIGTERM, signal_handler);
                   1508:        ssh_signal(SIGWINCH, window_change_handler);
1.11      markus   1509:
                   1510:        if (have_pty)
1.233     djm      1511:                enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.11      markus   1512:
1.292     djm      1513:        if (session_ident != -1) {
                   1514:                if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
1.303     djm      1515:                        channel_register_filter(ssh, session_ident,
1.292     djm      1516:                            client_simple_escape_filter, NULL,
                   1517:                            client_filter_cleanup,
                   1518:                            client_new_escape_filter_ctx(
                   1519:                            escape_char_arg));
1.232     djm      1520:                }
1.303     djm      1521:                channel_register_cleanup(ssh, session_ident,
1.292     djm      1522:                    client_channel_closed, 0);
1.48      markus   1523:        }
1.345     dtucker  1524:
                   1525:        schedule_server_alive_check();
1.30      markus   1526:
1.11      markus   1527:        /* Main loop of the client for the interactive session mode. */
                   1528:        while (!quit_pending) {
1.396     djm      1529:                channel_did_enqueue = 0;
1.11      markus   1530:
1.13      markus   1531:                /* Process buffered packets sent by the server. */
1.321     djm      1532:                client_process_buffered_input_packets(ssh);
1.11      markus   1533:
1.303     djm      1534:                if (session_closed && !channel_still_open(ssh))
1.60      markus   1535:                        break;
                   1536:
1.303     djm      1537:                if (ssh_packet_is_rekeying(ssh)) {
1.56      markus   1538:                        debug("rekeying in progress");
1.284     djm      1539:                } else if (need_rekeying) {
                   1540:                        /* manual rekey request */
                   1541:                        debug("need rekeying");
1.303     djm      1542:                        if ((r = kex_start_rekex(ssh)) != 0)
1.354     djm      1543:                                fatal_fr(r, "kex_start_rekex");
1.284     djm      1544:                        need_rekeying = 0;
1.56      markus   1545:                } else {
                   1546:                        /*
                   1547:                         * Make packets from buffered channel data, and
                   1548:                         * enqueue them for sending to the server.
                   1549:                         */
1.320     djm      1550:                        if (ssh_packet_not_very_much_data_to_write(ssh))
1.396     djm      1551:                                channel_did_enqueue = channel_output_poll(ssh);
1.11      markus   1552:
1.56      markus   1553:                        /*
                   1554:                         * Check if the window size has changed, and buffer a
                   1555:                         * message about it to the server if so.
                   1556:                         */
1.303     djm      1557:                        client_check_window_change(ssh);
1.11      markus   1558:
1.56      markus   1559:                        if (quit_pending)
                   1560:                                break;
                   1561:                }
1.13      markus   1562:                /*
                   1563:                 * Wait until we have something to do (something becomes
                   1564:                 * available on one of the descriptors).
                   1565:                 */
1.374     djm      1566:                client_wait_until_can_do_something(ssh, &pfd, &npfd_alloc,
1.396     djm      1567:                    &npfd_active, channel_did_enqueue,
1.374     djm      1568:                    &conn_in_ready, &conn_out_ready);
1.11      markus   1569:
                   1570:                if (quit_pending)
                   1571:                        break;
                   1572:
1.379     djm      1573:                /* Do channel operations. */
                   1574:                channel_after_poll(ssh, pfd, npfd_active);
1.11      markus   1575:
1.17      markus   1576:                /* Buffer input from the connection.  */
1.374     djm      1577:                if (conn_in_ready)
                   1578:                        client_process_net_input(ssh);
1.17      markus   1579:
                   1580:                if (quit_pending)
                   1581:                        break;
1.367     djm      1582:
                   1583:                /* A timeout may have triggered rekeying */
                   1584:                if ((r = ssh_packet_check_rekey(ssh)) != 0)
                   1585:                        fatal_fr(r, "cannot start rekeying");
1.11      markus   1586:
1.197     djm      1587:                /*
                   1588:                 * Send as much buffered packet data as possible to the
                   1589:                 * sender.
                   1590:                 */
1.374     djm      1591:                if (conn_out_ready) {
1.338     djm      1592:                        if ((r = ssh_packet_write_poll(ssh)) != 0) {
                   1593:                                sshpkt_fatal(ssh, r,
                   1594:                                    "%s: ssh_packet_write_poll", __func__);
                   1595:                        }
                   1596:                }
1.222     djm      1597:
                   1598:                /*
                   1599:                 * If we are a backgrounded control master, and the
                   1600:                 * timeout has expired without any active client
                   1601:                 * connections, then quit.
                   1602:                 */
                   1603:                if (control_persist_exit_time > 0) {
1.251     dtucker  1604:                        if (monotime() >= control_persist_exit_time) {
1.222     djm      1605:                                debug("ControlPersist timeout expired");
                   1606:                                break;
                   1607:                        }
                   1608:                }
1.11      markus   1609:        }
1.374     djm      1610:        free(pfd);
1.11      markus   1611:
                   1612:        /* Terminate the session. */
                   1613:
                   1614:        /* Stop watching for window change. */
1.332     dtucker  1615:        ssh_signal(SIGWINCH, SIG_DFL);
1.211     andreas  1616:
1.320     djm      1617:        if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
                   1618:            (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_BY_APPLICATION)) != 0 ||
                   1619:            (r = sshpkt_put_cstring(ssh, "disconnected by user")) != 0 ||
                   1620:            (r = sshpkt_put_cstring(ssh, "")) != 0 ||   /* language tag */
                   1621:            (r = sshpkt_send(ssh)) != 0 ||
                   1622:            (r = ssh_packet_write_wait(ssh)) != 0)
1.354     djm      1623:                fatal_fr(r, "send disconnect");
1.11      markus   1624:
1.303     djm      1625:        channel_free_all(ssh);
1.11      markus   1626:
1.75      markus   1627:        if (have_pty)
1.233     djm      1628:                leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.116     dtucker  1629:
                   1630:        /*
                   1631:         * If there was no shell or command requested, there will be no remote
                   1632:         * exit status to be returned.  In that case, clear error code if the
                   1633:         * connection was deliberately terminated at this end.
                   1634:         */
1.370     djm      1635:        if (options.session_type == SESSION_TYPE_NONE &&
                   1636:            received_signal == SIGTERM) {
1.116     dtucker  1637:                received_signal = 0;
                   1638:                exit_status = 0;
                   1639:        }
1.75      markus   1640:
1.301     dtucker  1641:        if (received_signal) {
                   1642:                verbose("Killed by signal %d.", (int) received_signal);
1.359     djm      1643:                cleanup_exit(255);
1.301     dtucker  1644:        }
1.75      markus   1645:
1.13      markus   1646:        /*
                   1647:         * In interactive mode (with pseudo tty) display a message indicating
                   1648:         * that the connection has been closed.
                   1649:         */
1.377     djm      1650:        if (have_pty && options.log_level >= SYSLOG_LEVEL_INFO)
                   1651:                quit_message("Connection to %s closed.", host);
1.70      markus   1652:
1.11      markus   1653:        /* Output any buffered data for stderr. */
1.315     markus   1654:        if (sshbuf_len(stderr_buffer) > 0) {
1.230     djm      1655:                len = atomicio(vwrite, fileno(stderr),
1.315     markus   1656:                    (u_char *)sshbuf_ptr(stderr_buffer),
                   1657:                    sshbuf_len(stderr_buffer));
                   1658:                if (len < 0 || (u_int)len != sshbuf_len(stderr_buffer))
1.11      markus   1659:                        error("Write failed flushing stderr buffer.");
1.315     markus   1660:                else if ((r = sshbuf_consume(stderr_buffer, len)) != 0)
1.354     djm      1661:                        fatal_fr(r, "sshbuf_consume");
1.11      markus   1662:        }
                   1663:
                   1664:        /* Clear and free any buffers. */
1.315     markus   1665:        sshbuf_free(stderr_buffer);
1.11      markus   1666:
                   1667:        /* Report bytes transferred, and transfer rates. */
1.307     dtucker  1668:        total_time = monotime_double() - start_time;
1.320     djm      1669:        ssh_packet_get_bytes(ssh, &ibytes, &obytes);
1.200     markus   1670:        verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
1.229     djm      1671:            (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
1.11      markus   1672:        if (total_time > 0)
1.200     markus   1673:                verbose("Bytes per second: sent %.1f, received %.1f",
                   1674:                    obytes / total_time, ibytes / total_time);
1.11      markus   1675:        /* Return the exit status of the program. */
                   1676:        debug("Exit status %d", exit_status);
                   1677:        return exit_status;
1.15      markus   1678: }
                   1679:
                   1680: /*********/
                   1681:
1.77      itojun   1682: static Channel *
1.303     djm      1683: client_request_forwarded_tcpip(struct ssh *ssh, const char *request_type,
                   1684:     int rchan, u_int rwindow, u_int rmaxpack)
1.40      markus   1685: {
1.103     deraadt  1686:        Channel *c = NULL;
1.289     markus   1687:        struct sshbuf *b = NULL;
1.40      markus   1688:        char *listen_address, *originator_address;
1.320     djm      1689:        u_int listen_port, originator_port;
1.289     markus   1690:        int r;
1.40      markus   1691:
                   1692:        /* Get rest of the packet */
1.320     djm      1693:        if ((r = sshpkt_get_cstring(ssh, &listen_address, NULL)) != 0 ||
                   1694:            (r = sshpkt_get_u32(ssh, &listen_port)) != 0 ||
                   1695:            (r = sshpkt_get_cstring(ssh, &originator_address, NULL)) != 0 ||
                   1696:            (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
                   1697:            (r = sshpkt_get_end(ssh)) != 0)
1.354     djm      1698:                fatal_fr(r, "parse packet");
1.40      markus   1699:
1.354     djm      1700:        debug_f("listen %s port %d, originator %s port %d",
1.261     millert  1701:            listen_address, listen_port, originator_address, originator_port);
1.191     djm      1702:
1.320     djm      1703:        if (listen_port > 0xffff)
1.354     djm      1704:                error_f("invalid listen port");
1.320     djm      1705:        else if (originator_port > 0xffff)
1.354     djm      1706:                error_f("invalid originator port");
1.320     djm      1707:        else {
                   1708:                c = channel_connect_by_listen_address(ssh,
                   1709:                    listen_address, listen_port, "forwarded-tcpip",
                   1710:                    originator_address);
                   1711:        }
1.40      markus   1712:
1.289     markus   1713:        if (c != NULL && c->type == SSH_CHANNEL_MUX_CLIENT) {
                   1714:                if ((b = sshbuf_new()) == NULL) {
1.354     djm      1715:                        error_f("alloc reply");
1.289     markus   1716:                        goto out;
                   1717:                }
                   1718:                /* reconstruct and send to muxclient */
                   1719:                if ((r = sshbuf_put_u8(b, 0)) != 0 ||   /* padlen */
                   1720:                    (r = sshbuf_put_u8(b, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
                   1721:                    (r = sshbuf_put_cstring(b, request_type)) != 0 ||
                   1722:                    (r = sshbuf_put_u32(b, rchan)) != 0 ||
                   1723:                    (r = sshbuf_put_u32(b, rwindow)) != 0 ||
                   1724:                    (r = sshbuf_put_u32(b, rmaxpack)) != 0 ||
                   1725:                    (r = sshbuf_put_cstring(b, listen_address)) != 0 ||
                   1726:                    (r = sshbuf_put_u32(b, listen_port)) != 0 ||
                   1727:                    (r = sshbuf_put_cstring(b, originator_address)) != 0 ||
                   1728:                    (r = sshbuf_put_u32(b, originator_port)) != 0 ||
1.303     djm      1729:                    (r = sshbuf_put_stringb(c->output, b)) != 0) {
1.354     djm      1730:                        error_fr(r, "compose for muxclient");
1.289     markus   1731:                        goto out;
                   1732:                }
                   1733:        }
                   1734:
                   1735:  out:
                   1736:        sshbuf_free(b);
1.250     djm      1737:        free(originator_address);
                   1738:        free(listen_address);
1.40      markus   1739:        return c;
                   1740: }
                   1741:
1.103     deraadt  1742: static Channel *
1.303     djm      1743: client_request_forwarded_streamlocal(struct ssh *ssh,
                   1744:     const char *request_type, int rchan)
1.261     millert  1745: {
                   1746:        Channel *c = NULL;
                   1747:        char *listen_path;
1.320     djm      1748:        int r;
1.261     millert  1749:
                   1750:        /* Get the remote path. */
1.320     djm      1751:        if ((r = sshpkt_get_cstring(ssh, &listen_path, NULL)) != 0 ||
                   1752:            (r = sshpkt_get_string(ssh, NULL, NULL)) != 0 ||    /* reserved */
                   1753:            (r = sshpkt_get_end(ssh)) != 0)
1.354     djm      1754:                fatal_fr(r, "parse packet");
1.261     millert  1755:
1.354     djm      1756:        debug_f("request: %s", listen_path);
1.261     millert  1757:
1.303     djm      1758:        c = channel_connect_by_listen_path(ssh, listen_path,
1.261     millert  1759:            "forwarded-streamlocal@openssh.com", "forwarded-streamlocal");
                   1760:        free(listen_path);
                   1761:        return c;
                   1762: }
                   1763:
                   1764: static Channel *
1.303     djm      1765: client_request_x11(struct ssh *ssh, const char *request_type, int rchan)
1.40      markus   1766: {
                   1767:        Channel *c = NULL;
                   1768:        char *originator;
1.321     djm      1769:        u_int originator_port;
1.320     djm      1770:        int r, sock;
1.40      markus   1771:
                   1772:        if (!options.forward_x11) {
                   1773:                error("Warning: ssh server tried X11 forwarding.");
1.197     djm      1774:                error("Warning: this is probably a break-in attempt by a "
                   1775:                    "malicious server.");
1.221     djm      1776:                return NULL;
                   1777:        }
1.388     dtucker  1778:        if (x11_refuse_time != 0 && monotime() >= x11_refuse_time) {
1.221     djm      1779:                verbose("Rejected X11 connection after ForwardX11Timeout "
                   1780:                    "expired");
1.40      markus   1781:                return NULL;
                   1782:        }
1.320     djm      1783:        if ((r = sshpkt_get_cstring(ssh, &originator, NULL)) != 0 ||
1.321     djm      1784:            (r = sshpkt_get_u32(ssh, &originator_port)) != 0 ||
1.320     djm      1785:            (r = sshpkt_get_end(ssh)) != 0)
1.354     djm      1786:                fatal_fr(r, "parse packet");
1.40      markus   1787:        /* XXX check permission */
1.321     djm      1788:        /* XXX range check originator port? */
                   1789:        debug("client_request_x11: request from %s %u", originator,
1.47      markus   1790:            originator_port);
1.250     djm      1791:        free(originator);
1.303     djm      1792:        sock = x11_connect_display(ssh);
1.67      markus   1793:        if (sock < 0)
                   1794:                return NULL;
1.303     djm      1795:        c = channel_new(ssh, "x11",
1.67      markus   1796:            SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1.110     markus   1797:            CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
1.82      markus   1798:        c->force_drain = 1;
1.40      markus   1799:        return c;
                   1800: }
                   1801:
1.103     deraadt  1802: static Channel *
1.303     djm      1803: client_request_agent(struct ssh *ssh, const char *request_type, int rchan)
1.40      markus   1804: {
                   1805:        Channel *c = NULL;
1.262     djm      1806:        int r, sock;
1.40      markus   1807:
                   1808:        if (!options.forward_agent) {
                   1809:                error("Warning: ssh server tried agent forwarding.");
1.197     djm      1810:                error("Warning: this is probably a break-in attempt by a "
                   1811:                    "malicious server.");
1.40      markus   1812:                return NULL;
                   1813:        }
1.330     djm      1814:        if (forward_agent_sock_path == NULL) {
                   1815:                r = ssh_get_authentication_socket(&sock);
                   1816:        } else {
                   1817:                r = ssh_get_authentication_socket_path(forward_agent_sock_path, &sock);
                   1818:        }
                   1819:        if (r != 0) {
1.262     djm      1820:                if (r != SSH_ERR_AGENT_NOT_PRESENT)
1.354     djm      1821:                        debug_fr(r, "ssh_get_authentication_socket");
1.67      markus   1822:                return NULL;
1.262     djm      1823:        }
1.372     djm      1824:        if ((r = ssh_agent_bind_hostkey(sock, ssh->kex->initial_hostkey,
                   1825:            ssh->kex->session_id, ssh->kex->initial_sig, 1)) == 0)
                   1826:                debug_f("bound agent to hostkey");
                   1827:        else
                   1828:                debug2_fr(r, "ssh_agent_bind_hostkey");
                   1829:
1.303     djm      1830:        c = channel_new(ssh, "authentication agent connection",
1.67      markus   1831:            SSH_CHANNEL_OPEN, sock, sock, -1,
1.185     dtucker  1832:            CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
1.110     markus   1833:            "authentication agent connection", 1);
1.82      markus   1834:        c->force_drain = 1;
1.40      markus   1835:        return c;
1.180     djm      1836: }
                   1837:
1.306     djm      1838: char *
1.303     djm      1839: client_request_tun_fwd(struct ssh *ssh, int tun_mode,
1.343     djm      1840:     int local_tun, int remote_tun, channel_open_fn *cb, void *cbctx)
1.180     djm      1841: {
                   1842:        Channel *c;
1.320     djm      1843:        int r, fd;
1.306     djm      1844:        char *ifname = NULL;
1.180     djm      1845:
                   1846:        if (tun_mode == SSH_TUNMODE_NO)
                   1847:                return 0;
                   1848:
                   1849:        debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
                   1850:
                   1851:        /* Open local tunnel device */
1.306     djm      1852:        if ((fd = tun_open(local_tun, tun_mode, &ifname)) == -1) {
1.180     djm      1853:                error("Tunnel device open failed.");
1.306     djm      1854:                return NULL;
1.180     djm      1855:        }
1.306     djm      1856:        debug("Tunnel forwarding using interface %s", ifname);
1.180     djm      1857:
1.303     djm      1858:        c = channel_new(ssh, "tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1.180     djm      1859:            CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
                   1860:        c->datagram = 1;
1.343     djm      1861:
                   1862:        if (cb != NULL)
                   1863:                channel_register_open_confirm(ssh, c->self, cb, cbctx);
1.180     djm      1864:
1.320     djm      1865:        if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
                   1866:            (r = sshpkt_put_cstring(ssh, "tun@openssh.com")) != 0 ||
                   1867:            (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
                   1868:            (r = sshpkt_put_u32(ssh, c->local_window_max)) != 0 ||
                   1869:            (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0 ||
                   1870:            (r = sshpkt_put_u32(ssh, tun_mode)) != 0 ||
                   1871:            (r = sshpkt_put_u32(ssh, remote_tun)) != 0 ||
                   1872:            (r = sshpkt_send(ssh)) != 0)
1.321     djm      1873:                sshpkt_fatal(ssh, r, "%s: send reply", __func__);
1.180     djm      1874:
1.306     djm      1875:        return ifname;
1.40      markus   1876: }
                   1877:
1.22      markus   1878: /* XXXX move to generic input handler */
1.264     markus   1879: static int
1.297     markus   1880: client_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
1.22      markus   1881: {
                   1882:        Channel *c = NULL;
1.320     djm      1883:        char *ctype = NULL;
                   1884:        int r;
                   1885:        u_int rchan;
                   1886:        size_t len;
                   1887:        u_int rmaxpack, rwindow;
                   1888:
                   1889:        if ((r = sshpkt_get_cstring(ssh, &ctype, &len)) != 0 ||
                   1890:            (r = sshpkt_get_u32(ssh, &rchan)) != 0 ||
                   1891:            (r = sshpkt_get_u32(ssh, &rwindow)) != 0 ||
                   1892:            (r = sshpkt_get_u32(ssh, &rmaxpack)) != 0)
                   1893:                goto out;
1.22      markus   1894:
1.24      markus   1895:        debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
1.22      markus   1896:            ctype, rchan, rwindow, rmaxpack);
                   1897:
1.40      markus   1898:        if (strcmp(ctype, "forwarded-tcpip") == 0) {
1.303     djm      1899:                c = client_request_forwarded_tcpip(ssh, ctype, rchan, rwindow,
1.289     markus   1900:                    rmaxpack);
1.261     millert  1901:        } else if (strcmp(ctype, "forwarded-streamlocal@openssh.com") == 0) {
1.303     djm      1902:                c = client_request_forwarded_streamlocal(ssh, ctype, rchan);
1.40      markus   1903:        } else if (strcmp(ctype, "x11") == 0) {
1.303     djm      1904:                c = client_request_x11(ssh, ctype, rchan);
1.40      markus   1905:        } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1.303     djm      1906:                c = client_request_agent(ssh, ctype, rchan);
1.22      markus   1907:        }
1.289     markus   1908:        if (c != NULL && c->type == SSH_CHANNEL_MUX_CLIENT) {
                   1909:                debug3("proxied to downstream: %s", ctype);
                   1910:        } else if (c != NULL) {
1.22      markus   1911:                debug("confirm %s", ctype);
                   1912:                c->remote_id = rchan;
1.304     djm      1913:                c->have_remote_id = 1;
1.22      markus   1914:                c->remote_window = rwindow;
                   1915:                c->remote_maxpacket = rmaxpack;
1.69      markus   1916:                if (c->type != SSH_CHANNEL_CONNECTING) {
1.320     djm      1917:                        if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
                   1918:                            (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
                   1919:                            (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
                   1920:                            (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
                   1921:                            (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0 ||
                   1922:                            (r = sshpkt_send(ssh)) != 0)
                   1923:                                sshpkt_fatal(ssh, r, "%s: send reply", __func__);
1.69      markus   1924:                }
1.22      markus   1925:        } else {
                   1926:                debug("failure %s", ctype);
1.320     djm      1927:                if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
                   1928:                    (r = sshpkt_put_u32(ssh, rchan)) != 0 ||
                   1929:                    (r = sshpkt_put_u32(ssh, SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED)) != 0 ||
                   1930:                    (r = sshpkt_put_cstring(ssh, "open failed")) != 0 ||
                   1931:                    (r = sshpkt_put_cstring(ssh, "")) != 0 ||
                   1932:                    (r = sshpkt_send(ssh)) != 0)
                   1933:                        sshpkt_fatal(ssh, r, "%s: send failure", __func__);
1.22      markus   1934:        }
1.320     djm      1935:        r = 0;
                   1936:  out:
1.250     djm      1937:        free(ctype);
1.320     djm      1938:        return r;
1.22      markus   1939: }
1.267     djm      1940:
1.264     markus   1941: static int
1.297     markus   1942: client_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
1.48      markus   1943: {
                   1944:        Channel *c = NULL;
1.320     djm      1945:        char *rtype = NULL;
                   1946:        u_char reply;
                   1947:        u_int id, exitval;
                   1948:        int r, success = 0;
                   1949:
                   1950:        if ((r = sshpkt_get_u32(ssh, &id)) != 0)
                   1951:                return r;
                   1952:        if (id <= INT_MAX)
                   1953:                c = channel_lookup(ssh, id);
1.297     markus   1954:        if (channel_proxy_upstream(c, type, seq, ssh))
1.289     markus   1955:                return 0;
1.320     djm      1956:        if ((r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
                   1957:            (r = sshpkt_get_u8(ssh, &reply)) != 0)
                   1958:                goto out;
1.48      markus   1959:
1.320     djm      1960:        debug("client_input_channel_req: channel %u rtype %s reply %d",
1.48      markus   1961:            id, rtype, reply);
                   1962:
1.320     djm      1963:        if (c == NULL) {
1.197     djm      1964:                error("client_input_channel_req: channel %d: "
                   1965:                    "unknown channel", id);
1.193     markus   1966:        } else if (strcmp(rtype, "eow@openssh.com") == 0) {
1.320     djm      1967:                if ((r = sshpkt_get_end(ssh)) != 0)
                   1968:                        goto out;
1.303     djm      1969:                chan_rcvd_eow(ssh, c);
1.48      markus   1970:        } else if (strcmp(rtype, "exit-status") == 0) {
1.320     djm      1971:                if ((r = sshpkt_get_u32(ssh, &exitval)) != 0)
                   1972:                        goto out;
1.217     djm      1973:                if (c->ctl_chan != -1) {
1.303     djm      1974:                        mux_exit_message(ssh, c, exitval);
1.215     djm      1975:                        success = 1;
1.320     djm      1976:                } else if ((int)id == session_ident) {
1.215     djm      1977:                        /* Record exit value of local session */
1.123     djm      1978:                        success = 1;
                   1979:                        exit_status = exitval;
1.215     djm      1980:                } else {
1.218     djm      1981:                        /* Probably for a mux channel that has already closed */
1.354     djm      1982:                        debug_f("no sink for exit-status on channel %d",
                   1983:                            id);
1.123     djm      1984:                }
1.320     djm      1985:                if ((r = sshpkt_get_end(ssh)) != 0)
                   1986:                        goto out;
1.48      markus   1987:        }
1.259     djm      1988:        if (reply && c != NULL && !(c->flags & CHAN_CLOSE_SENT)) {
1.304     djm      1989:                if (!c->have_remote_id)
1.354     djm      1990:                        fatal_f("channel %d: no remote_id", c->self);
1.320     djm      1991:                if ((r = sshpkt_start(ssh, success ?
                   1992:                    SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE)) != 0 ||
                   1993:                    (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
                   1994:                    (r = sshpkt_send(ssh)) != 0)
                   1995:                        sshpkt_fatal(ssh, r, "%s: send failure", __func__);
1.48      markus   1996:        }
1.320     djm      1997:        r = 0;
                   1998:  out:
1.250     djm      1999:        free(rtype);
1.320     djm      2000:        return r;
1.48      markus   2001: }
1.267     djm      2002:
1.269     djm      2003: struct hostkeys_update_ctx {
                   2004:        /* The hostname and (optionally) IP address string for the server */
                   2005:        char *host_str, *ip_str;
                   2006:
                   2007:        /*
                   2008:         * Keys received from the server and a flag for each indicating
                   2009:         * whether they already exist in known_hosts.
1.351     djm      2010:         * keys_match is filled in by hostkeys_find() and later (for new
1.381     djm      2011:         * keys) by client_global_hostkeys_prove_confirm().
1.269     djm      2012:         */
                   2013:        struct sshkey **keys;
1.351     djm      2014:        u_int *keys_match;      /* mask of HKF_MATCH_* from hostfile.h */
                   2015:        int *keys_verified;     /* flag for new keys verified by server */
                   2016:        size_t nkeys, nnew, nincomplete; /* total, new keys, incomplete match */
1.269     djm      2017:
                   2018:        /*
                   2019:         * Keys that are in known_hosts, but were not present in the update
                   2020:         * from the server (i.e. scheduled to be deleted).
                   2021:         * Filled in by hostkeys_find().
                   2022:         */
                   2023:        struct sshkey **old_keys;
                   2024:        size_t nold;
1.347     djm      2025:
                   2026:        /* Various special cases. */
1.350     djm      2027:        int complex_hostspec;   /* wildcard or manual pattern-list host name */
1.347     djm      2028:        int ca_available;       /* saw CA key for this host */
1.352     djm      2029:        int old_key_seen;       /* saw old key with other name/addr */
1.353     djm      2030:        int other_name_seen;    /* saw key with other name/addr */
1.269     djm      2031: };
                   2032:
                   2033: static void
                   2034: hostkeys_update_ctx_free(struct hostkeys_update_ctx *ctx)
                   2035: {
                   2036:        size_t i;
                   2037:
                   2038:        if (ctx == NULL)
                   2039:                return;
                   2040:        for (i = 0; i < ctx->nkeys; i++)
                   2041:                sshkey_free(ctx->keys[i]);
                   2042:        free(ctx->keys);
1.351     djm      2043:        free(ctx->keys_match);
                   2044:        free(ctx->keys_verified);
1.269     djm      2045:        for (i = 0; i < ctx->nold; i++)
                   2046:                sshkey_free(ctx->old_keys[i]);
                   2047:        free(ctx->old_keys);
                   2048:        free(ctx->host_str);
                   2049:        free(ctx->ip_str);
                   2050:        free(ctx);
                   2051: }
                   2052:
1.350     djm      2053: /*
                   2054:  * Returns non-zero if a known_hosts hostname list is not of a form that
                   2055:  * can be handled by UpdateHostkeys. These include wildcard hostnames and
                   2056:  * hostnames lists that do not follow the form host[,ip].
                   2057:  */
                   2058: static int
                   2059: hostspec_is_complex(const char *hosts)
                   2060: {
                   2061:        char *cp;
                   2062:
                   2063:        /* wildcard */
                   2064:        if (strchr(hosts, '*') != NULL || strchr(hosts, '?') != NULL)
                   2065:                return 1;
                   2066:        /* single host/ip = ok */
                   2067:        if ((cp = strchr(hosts, ',')) == NULL)
                   2068:                return 0;
                   2069:        /* more than two entries on the line */
                   2070:        if (strchr(cp + 1, ',') != NULL)
                   2071:                return 1;
                   2072:        /* XXX maybe parse cp+1 and ensure it is an IP? */
                   2073:        return 0;
                   2074: }
                   2075:
1.352     djm      2076: /* callback to search for ctx->keys in known_hosts */
1.269     djm      2077: static int
                   2078: hostkeys_find(struct hostkey_foreach_line *l, void *_ctx)
                   2079: {
                   2080:        struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
                   2081:        size_t i;
                   2082:        struct sshkey **tmp;
                   2083:
1.353     djm      2084:        if (l->key == NULL)
1.269     djm      2085:                return 0;
1.353     djm      2086:        if (l->status != HKF_STATUS_MATCHED) {
                   2087:                /* Record if one of the keys appears on a non-matching line */
                   2088:                for (i = 0; i < ctx->nkeys; i++) {
                   2089:                        if (sshkey_equal(l->key, ctx->keys[i])) {
                   2090:                                ctx->other_name_seen = 1;
1.354     djm      2091:                                debug3_f("found %s key under different "
                   2092:                                    "name/addr at %s:%ld",
1.353     djm      2093:                                    sshkey_ssh_name(ctx->keys[i]),
                   2094:                                    l->path, l->linenum);
                   2095:                                return 0;
                   2096:                        }
                   2097:                }
                   2098:                return 0;
                   2099:        }
                   2100:        /* Don't proceed if revocation or CA markers are present */
                   2101:        /* XXX relax this */
                   2102:        if (l->marker != MRK_NONE) {
1.354     djm      2103:                debug3_f("hostkeys file %s:%ld has CA/revocation marker",
                   2104:                    l->path, l->linenum);
1.353     djm      2105:                ctx->complex_hostspec = 1;
                   2106:                return 0;
                   2107:        }
                   2108:
1.355     djm      2109:        /* If CheckHostIP is enabled, then check for mismatched hostname/addr */
                   2110:        if (ctx->ip_str != NULL && strchr(l->hosts, ',') != NULL) {
                   2111:                if ((l->match & HKF_MATCH_HOST) == 0) {
                   2112:                        /* Record if address matched a different hostname. */
                   2113:                        ctx->other_name_seen = 1;
                   2114:                        debug3_f("found address %s against different hostname "
                   2115:                            "at %s:%ld", ctx->ip_str, l->path, l->linenum);
                   2116:                        return 0;
                   2117:                } else if ((l->match & HKF_MATCH_IP) == 0) {
                   2118:                        /* Record if hostname matched a different address. */
                   2119:                        ctx->other_name_seen = 1;
                   2120:                        debug3_f("found hostname %s against different address "
                   2121:                            "at %s:%ld", ctx->host_str, l->path, l->linenum);
                   2122:                }
1.353     djm      2123:        }
1.269     djm      2124:
1.350     djm      2125:        /*
                   2126:         * UpdateHostkeys is skipped for wildcard host names and hostnames
                   2127:         * that contain more than two entries (ssh never writes these).
                   2128:         */
                   2129:        if (hostspec_is_complex(l->hosts)) {
1.354     djm      2130:                debug3_f("hostkeys file %s:%ld complex host specification",
                   2131:                    l->path, l->linenum);
1.350     djm      2132:                ctx->complex_hostspec = 1;
1.347     djm      2133:                return 0;
                   2134:        }
                   2135:
1.269     djm      2136:        /* Mark off keys we've already seen for this host */
                   2137:        for (i = 0; i < ctx->nkeys; i++) {
1.351     djm      2138:                if (!sshkey_equal(l->key, ctx->keys[i]))
                   2139:                        continue;
1.354     djm      2140:                debug3_f("found %s key at %s:%ld",
1.351     djm      2141:                    sshkey_ssh_name(ctx->keys[i]), l->path, l->linenum);
                   2142:                ctx->keys_match[i] |= l->match;
                   2143:                return 0;
1.269     djm      2144:        }
                   2145:        /* This line contained a key that not offered by the server */
1.354     djm      2146:        debug3_f("deprecated %s key at %s:%ld", sshkey_ssh_name(l->key),
                   2147:            l->path, l->linenum);
1.299     deraadt  2148:        if ((tmp = recallocarray(ctx->old_keys, ctx->nold, ctx->nold + 1,
1.269     djm      2149:            sizeof(*ctx->old_keys))) == NULL)
1.354     djm      2150:                fatal_f("recallocarray failed nold = %zu", ctx->nold);
1.269     djm      2151:        ctx->old_keys = tmp;
                   2152:        ctx->old_keys[ctx->nold++] = l->key;
                   2153:        l->key = NULL;
                   2154:
                   2155:        return 0;
                   2156: }
                   2157:
1.352     djm      2158: /* callback to search for ctx->old_keys in known_hosts under other names */
                   2159: static int
                   2160: hostkeys_check_old(struct hostkey_foreach_line *l, void *_ctx)
                   2161: {
                   2162:        struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
                   2163:        size_t i;
                   2164:        int hashed;
                   2165:
                   2166:        /* only care about lines that *don't* match the active host spec */
                   2167:        if (l->status == HKF_STATUS_MATCHED || l->key == NULL)
                   2168:                return 0;
                   2169:
                   2170:        hashed = l->match & (HKF_MATCH_HOST_HASHED|HKF_MATCH_IP_HASHED);
                   2171:        for (i = 0; i < ctx->nold; i++) {
                   2172:                if (!sshkey_equal(l->key, ctx->old_keys[i]))
                   2173:                        continue;
1.354     djm      2174:                debug3_f("found deprecated %s key at %s:%ld as %s",
1.364     djm      2175:                    sshkey_ssh_name(ctx->old_keys[i]), l->path, l->linenum,
1.352     djm      2176:                    hashed ? "[HASHED]" : l->hosts);
                   2177:                ctx->old_key_seen = 1;
                   2178:                break;
                   2179:        }
                   2180:        return 0;
                   2181: }
                   2182:
                   2183: /*
                   2184:  * Check known_hosts files for deprecated keys under other names. Returns 0
                   2185:  * on success or -1 on failure. Updates ctx->old_key_seen if deprecated keys
                   2186:  * exist under names other than the active hostname/IP.
                   2187:  */
                   2188: static int
                   2189: check_old_keys_othernames(struct hostkeys_update_ctx *ctx)
                   2190: {
                   2191:        size_t i;
                   2192:        int r;
                   2193:
1.354     djm      2194:        debug2_f("checking for %zu deprecated keys", ctx->nold);
1.352     djm      2195:        for (i = 0; i < options.num_user_hostfiles; i++) {
1.354     djm      2196:                debug3_f("searching %s for %s / %s",
1.352     djm      2197:                    options.user_hostfiles[i], ctx->host_str,
                   2198:                    ctx->ip_str ? ctx->ip_str : "(none)");
                   2199:                if ((r = hostkeys_foreach(options.user_hostfiles[i],
                   2200:                    hostkeys_check_old, ctx, ctx->host_str, ctx->ip_str,
1.356     djm      2201:                    HKF_WANT_PARSE_KEY, 0)) != 0) {
1.352     djm      2202:                        if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
1.354     djm      2203:                                debug_f("hostkeys file %s does not exist",
                   2204:                                    options.user_hostfiles[i]);
1.352     djm      2205:                                continue;
                   2206:                        }
1.354     djm      2207:                        error_fr(r, "hostkeys_foreach failed for %s",
                   2208:                            options.user_hostfiles[i]);
1.352     djm      2209:                        return -1;
                   2210:                }
                   2211:        }
                   2212:        return 0;
                   2213: }
                   2214:
1.269     djm      2215: static void
1.337     djm      2216: hostkey_change_preamble(LogLevel loglevel)
1.269     djm      2217: {
1.336     djm      2218:        do_log2(loglevel, "The server has updated its host keys.");
                   2219:        do_log2(loglevel, "These changes were verified by the server's "
                   2220:            "existing trusted key.");
                   2221: }
                   2222:
                   2223: static void
                   2224: update_known_hosts(struct hostkeys_update_ctx *ctx)
                   2225: {
                   2226:        int r, was_raw = 0, first = 1;
                   2227:        int asking = options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK;
                   2228:        LogLevel loglevel = asking ?  SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_VERBOSE;
1.269     djm      2229:        char *fp, *response;
                   2230:        size_t i;
1.333     djm      2231:        struct stat sb;
1.269     djm      2232:
                   2233:        for (i = 0; i < ctx->nkeys; i++) {
1.351     djm      2234:                if (!ctx->keys_verified[i])
1.269     djm      2235:                        continue;
                   2236:                if ((fp = sshkey_fingerprint(ctx->keys[i],
                   2237:                    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
1.354     djm      2238:                        fatal_f("sshkey_fingerprint failed");
1.336     djm      2239:                if (first && asking)
1.337     djm      2240:                        hostkey_change_preamble(loglevel);
1.269     djm      2241:                do_log2(loglevel, "Learned new hostkey: %s %s",
                   2242:                    sshkey_type(ctx->keys[i]), fp);
1.336     djm      2243:                first = 0;
1.269     djm      2244:                free(fp);
                   2245:        }
                   2246:        for (i = 0; i < ctx->nold; i++) {
                   2247:                if ((fp = sshkey_fingerprint(ctx->old_keys[i],
                   2248:                    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
1.354     djm      2249:                        fatal_f("sshkey_fingerprint failed");
1.336     djm      2250:                if (first && asking)
1.337     djm      2251:                        hostkey_change_preamble(loglevel);
1.269     djm      2252:                do_log2(loglevel, "Deprecating obsolete hostkey: %s %s",
                   2253:                    sshkey_type(ctx->old_keys[i]), fp);
1.336     djm      2254:                first = 0;
1.269     djm      2255:                free(fp);
                   2256:        }
                   2257:        if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1.271     djm      2258:                if (get_saved_tio() != NULL) {
                   2259:                        leave_raw_mode(1);
                   2260:                        was_raw = 1;
                   2261:                }
1.269     djm      2262:                response = NULL;
                   2263:                for (i = 0; !quit_pending && i < 3; i++) {
                   2264:                        free(response);
                   2265:                        response = read_passphrase("Accept updated hostkeys? "
                   2266:                            "(yes/no): ", RP_ECHO);
1.389     dtucker  2267:                        if (response != NULL && strcasecmp(response, "yes") == 0)
1.269     djm      2268:                                break;
                   2269:                        else if (quit_pending || response == NULL ||
                   2270:                            strcasecmp(response, "no") == 0) {
                   2271:                                options.update_hostkeys = 0;
                   2272:                                break;
                   2273:                        } else {
                   2274:                                do_log2(loglevel, "Please enter "
                   2275:                                    "\"yes\" or \"no\"");
                   2276:                        }
                   2277:                }
                   2278:                if (quit_pending || i >= 3 || response == NULL)
                   2279:                        options.update_hostkeys = 0;
                   2280:                free(response);
1.271     djm      2281:                if (was_raw)
                   2282:                        enter_raw_mode(1);
1.269     djm      2283:        }
1.333     djm      2284:        if (options.update_hostkeys == 0)
                   2285:                return;
1.269     djm      2286:        /*
                   2287:         * Now that all the keys are verified, we can go ahead and replace
                   2288:         * them in known_hosts (assuming SSH_UPDATE_HOSTKEYS_ASK didn't
                   2289:         * cancel the operation).
                   2290:         */
1.333     djm      2291:        for (i = 0; i < options.num_user_hostfiles; i++) {
                   2292:                /*
                   2293:                 * NB. keys are only added to hostfiles[0], for the rest we
                   2294:                 * just delete the hostname entries.
                   2295:                 */
                   2296:                if (stat(options.user_hostfiles[i], &sb) != 0) {
                   2297:                        if (errno == ENOENT) {
1.354     djm      2298:                                debug_f("known hosts file %s does not "
                   2299:                                    "exist", options.user_hostfiles[i]);
1.333     djm      2300:                        } else {
1.354     djm      2301:                                error_f("known hosts file %s "
                   2302:                                    "inaccessible: %s",
                   2303:                                    options.user_hostfiles[i], strerror(errno));
1.333     djm      2304:                        }
                   2305:                        continue;
                   2306:                }
                   2307:                if ((r = hostfile_replace_entries(options.user_hostfiles[i],
                   2308:                    ctx->host_str, ctx->ip_str,
                   2309:                    i == 0 ? ctx->keys : NULL, i == 0 ? ctx->nkeys : 0,
                   2310:                    options.hash_known_hosts, 0,
                   2311:                    options.fingerprint_hash)) != 0) {
1.354     djm      2312:                        error_fr(r, "hostfile_replace_entries failed for %s",
                   2313:                            options.user_hostfiles[i]);
1.333     djm      2314:                }
                   2315:        }
1.269     djm      2316: }
                   2317:
                   2318: static void
1.381     djm      2319: client_global_hostkeys_prove_confirm(struct ssh *ssh, int type,
1.303     djm      2320:     u_int32_t seq, void *_ctx)
1.269     djm      2321: {
                   2322:        struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
                   2323:        size_t i, ndone;
                   2324:        struct sshbuf *signdata;
1.375     djm      2325:        int r, plaintype;
1.269     djm      2326:        const u_char *sig;
1.375     djm      2327:        const char *rsa_kexalg = NULL;
                   2328:        char *alg = NULL;
1.269     djm      2329:        size_t siglen;
                   2330:
                   2331:        if (ctx->nnew == 0)
1.354     djm      2332:                fatal_f("ctx->nnew == 0"); /* sanity */
1.269     djm      2333:        if (type != SSH2_MSG_REQUEST_SUCCESS) {
                   2334:                error("Server failed to confirm ownership of "
                   2335:                    "private host keys");
                   2336:                hostkeys_update_ctx_free(ctx);
                   2337:                return;
                   2338:        }
1.375     djm      2339:        if (sshkey_type_plain(sshkey_type_from_name(
                   2340:            ssh->kex->hostkey_alg)) == KEY_RSA)
                   2341:                rsa_kexalg = ssh->kex->hostkey_alg;
1.269     djm      2342:        if ((signdata = sshbuf_new()) == NULL)
1.354     djm      2343:                fatal_f("sshbuf_new failed");
1.269     djm      2344:        /*
                   2345:         * Expect a signature for each of the ctx->nnew private keys we
                   2346:         * haven't seen before. They will be in the same order as the
1.351     djm      2347:         * ctx->keys where the corresponding ctx->keys_match[i] == 0.
1.269     djm      2348:         */
                   2349:        for (ndone = i = 0; i < ctx->nkeys; i++) {
1.351     djm      2350:                if (ctx->keys_match[i])
1.269     djm      2351:                        continue;
1.375     djm      2352:                plaintype = sshkey_type_plain(ctx->keys[i]->type);
1.269     djm      2353:                /* Prepare data to be signed: session ID, unique string, key */
                   2354:                sshbuf_reset(signdata);
1.270     djm      2355:                if ( (r = sshbuf_put_cstring(signdata,
                   2356:                    "hostkeys-prove-00@openssh.com")) != 0 ||
1.358     djm      2357:                    (r = sshbuf_put_stringb(signdata,
                   2358:                    ssh->kex->session_id)) != 0 ||
1.269     djm      2359:                    (r = sshkey_puts(ctx->keys[i], signdata)) != 0)
1.354     djm      2360:                        fatal_fr(r, "compose signdata");
1.269     djm      2361:                /* Extract and verify signature */
                   2362:                if ((r = sshpkt_get_string_direct(ssh, &sig, &siglen)) != 0) {
1.354     djm      2363:                        error_fr(r, "parse sig");
1.269     djm      2364:                        goto out;
                   2365:                }
1.375     djm      2366:                if ((r = sshkey_get_sigtype(sig, siglen, &alg)) != 0) {
                   2367:                        error_fr(r, "server gave unintelligible signature "
                   2368:                            "for %s key %zu", sshkey_type(ctx->keys[i]), i);
                   2369:                        goto out;
                   2370:                }
1.309     djm      2371:                /*
1.375     djm      2372:                 * Special case for RSA keys: if a RSA hostkey was negotiated,
                   2373:                 * then use its signature type for verification of RSA hostkey
                   2374:                 * proofs. Otherwise, accept only RSA-SHA256/512 signatures.
1.309     djm      2375:                 */
1.375     djm      2376:                if (plaintype == KEY_RSA && rsa_kexalg == NULL &&
                   2377:                    match_pattern_list(alg, HOSTKEY_PROOF_RSA_ALGS, 0) != 1) {
                   2378:                        debug_f("server used untrusted RSA signature algorithm "
                   2379:                            "%s for key %zu, disregarding", alg, i);
                   2380:                        free(alg);
                   2381:                        /* zap the key from the list */
                   2382:                        sshkey_free(ctx->keys[i]);
                   2383:                        ctx->keys[i] = NULL;
                   2384:                        ndone++;
                   2385:                        continue;
                   2386:                }
                   2387:                debug3_f("verify %s key %zu using sigalg %s",
                   2388:                    sshkey_type(ctx->keys[i]), i, alg);
                   2389:                free(alg);
1.269     djm      2390:                if ((r = sshkey_verify(ctx->keys[i], sig, siglen,
1.308     djm      2391:                    sshbuf_ptr(signdata), sshbuf_len(signdata),
1.375     djm      2392:                    plaintype == KEY_RSA ? rsa_kexalg : NULL, 0, NULL)) != 0) {
1.361     djm      2393:                        error_fr(r, "server gave bad signature for %s key %zu",
1.354     djm      2394:                            sshkey_type(ctx->keys[i]), i);
1.269     djm      2395:                        goto out;
                   2396:                }
                   2397:                /* Key is good. Mark it as 'seen' */
1.351     djm      2398:                ctx->keys_verified[i] = 1;
1.269     djm      2399:                ndone++;
                   2400:        }
1.354     djm      2401:        /* Shouldn't happen */
1.269     djm      2402:        if (ndone != ctx->nnew)
1.354     djm      2403:                fatal_f("ndone != ctx->nnew (%zu / %zu)", ndone, ctx->nnew);
1.320     djm      2404:        if ((r = sshpkt_get_end(ssh)) != 0) {
1.354     djm      2405:                error_f("protocol error");
1.320     djm      2406:                goto out;
                   2407:        }
1.269     djm      2408:
                   2409:        /* Make the edits to known_hosts */
                   2410:        update_known_hosts(ctx);
                   2411:  out:
                   2412:        hostkeys_update_ctx_free(ctx);
1.384     djm      2413:        hostkeys_update_complete = 1;
                   2414:        client_repledge();
1.269     djm      2415: }
                   2416:
1.267     djm      2417: /*
1.291     djm      2418:  * Returns non-zero if the key is accepted by HostkeyAlgorithms.
                   2419:  * Made slightly less trivial by the multiple RSA signature algorithm names.
                   2420:  */
                   2421: static int
                   2422: key_accepted_by_hostkeyalgs(const struct sshkey *key)
                   2423: {
                   2424:        const char *ktype = sshkey_ssh_name(key);
1.331     dtucker  2425:        const char *hostkeyalgs = options.hostkeyalgorithms;
1.291     djm      2426:
1.391     djm      2427:        if (key->type == KEY_UNSPEC)
1.291     djm      2428:                return 0;
                   2429:        if (key->type == KEY_RSA &&
                   2430:            (match_pattern_list("rsa-sha2-256", hostkeyalgs, 0) == 1 ||
                   2431:            match_pattern_list("rsa-sha2-512", hostkeyalgs, 0) == 1))
                   2432:                return 1;
                   2433:        return match_pattern_list(ktype, hostkeyalgs, 0) == 1;
                   2434: }
                   2435:
                   2436: /*
1.270     djm      2437:  * Handle hostkeys-00@openssh.com global request to inform the client of all
1.267     djm      2438:  * the server's hostkeys. The keys are checked against the user's
                   2439:  * HostkeyAlgorithms preference before they are accepted.
                   2440:  */
                   2441: static int
1.321     djm      2442: client_input_hostkeys(struct ssh *ssh)
1.267     djm      2443: {
                   2444:        const u_char *blob = NULL;
1.269     djm      2445:        size_t i, len = 0;
1.267     djm      2446:        struct sshbuf *buf = NULL;
1.269     djm      2447:        struct sshkey *key = NULL, **tmp;
1.384     djm      2448:        int r, prove_sent = 0;
1.269     djm      2449:        char *fp;
1.267     djm      2450:        static int hostkeys_seen = 0; /* XXX use struct ssh */
1.268     djm      2451:        extern struct sockaddr_storage hostaddr; /* XXX from ssh.c */
1.272     djm      2452:        struct hostkeys_update_ctx *ctx = NULL;
1.351     djm      2453:        u_int want;
1.267     djm      2454:
                   2455:        if (hostkeys_seen)
1.354     djm      2456:                fatal_f("server already sent hostkeys");
1.384     djm      2457:        if (!can_update_hostkeys())
1.267     djm      2458:                return 1;
1.384     djm      2459:        hostkeys_seen = 1;
1.272     djm      2460:
                   2461:        ctx = xcalloc(1, sizeof(*ctx));
1.269     djm      2462:        while (ssh_packet_remaining(ssh) > 0) {
1.267     djm      2463:                sshkey_free(key);
                   2464:                key = NULL;
1.269     djm      2465:                if ((r = sshpkt_get_string_direct(ssh, &blob, &len)) != 0) {
1.354     djm      2466:                        error_fr(r, "parse key");
1.269     djm      2467:                        goto out;
                   2468:                }
1.270     djm      2469:                if ((r = sshkey_from_blob(blob, len, &key)) != 0) {
1.354     djm      2470:                        do_log2_fr(r, r == SSH_ERR_KEY_TYPE_UNKNOWN ?
1.335     djm      2471:                            SYSLOG_LEVEL_DEBUG1 : SYSLOG_LEVEL_ERROR,
1.354     djm      2472:                            "convert key");
1.335     djm      2473:                        continue;
1.270     djm      2474:                }
1.267     djm      2475:                fp = sshkey_fingerprint(key, options.fingerprint_hash,
                   2476:                    SSH_FP_DEFAULT);
1.354     djm      2477:                debug3_f("received %s key %s", sshkey_type(key), fp);
1.267     djm      2478:                free(fp);
1.275     markus   2479:
1.291     djm      2480:                if (!key_accepted_by_hostkeyalgs(key)) {
1.354     djm      2481:                        debug3_f("%s key not permitted by "
                   2482:                            "HostkeyAlgorithms", sshkey_ssh_name(key));
1.267     djm      2483:                        continue;
                   2484:                }
1.269     djm      2485:                /* Skip certs */
                   2486:                if (sshkey_is_cert(key)) {
1.354     djm      2487:                        debug3_f("%s key is a certificate; skipping",
                   2488:                            sshkey_ssh_name(key));
1.269     djm      2489:                        continue;
                   2490:                }
                   2491:                /* Ensure keys are unique */
                   2492:                for (i = 0; i < ctx->nkeys; i++) {
                   2493:                        if (sshkey_equal(key, ctx->keys[i])) {
1.354     djm      2494:                                error_f("received duplicated %s host key",
                   2495:                                    sshkey_ssh_name(key));
1.269     djm      2496:                                goto out;
                   2497:                        }
                   2498:                }
                   2499:                /* Key is good, record it */
1.299     deraadt  2500:                if ((tmp = recallocarray(ctx->keys, ctx->nkeys, ctx->nkeys + 1,
1.269     djm      2501:                    sizeof(*ctx->keys))) == NULL)
1.354     djm      2502:                        fatal_f("recallocarray failed nkeys = %zu",
                   2503:                            ctx->nkeys);
1.269     djm      2504:                ctx->keys = tmp;
                   2505:                ctx->keys[ctx->nkeys++] = key;
1.267     djm      2506:                key = NULL;
                   2507:        }
                   2508:
1.269     djm      2509:        if (ctx->nkeys == 0) {
1.354     djm      2510:                debug_f("server sent no hostkeys");
1.267     djm      2511:                goto out;
                   2512:        }
1.270     djm      2513:
1.351     djm      2514:        if ((ctx->keys_match = calloc(ctx->nkeys,
                   2515:            sizeof(*ctx->keys_match))) == NULL ||
                   2516:            (ctx->keys_verified = calloc(ctx->nkeys,
                   2517:            sizeof(*ctx->keys_verified))) == NULL)
1.354     djm      2518:                fatal_f("calloc failed");
1.267     djm      2519:
1.268     djm      2520:        get_hostfile_hostname_ipaddr(host,
                   2521:            options.check_host_ip ? (struct sockaddr *)&hostaddr : NULL,
1.269     djm      2522:            options.port, &ctx->host_str,
                   2523:            options.check_host_ip ? &ctx->ip_str : NULL);
1.268     djm      2524:
1.269     djm      2525:        /* Find which keys we already know about. */
1.333     djm      2526:        for (i = 0; i < options.num_user_hostfiles; i++) {
1.354     djm      2527:                debug_f("searching %s for %s / %s",
1.339     dtucker  2528:                    options.user_hostfiles[i], ctx->host_str,
1.340     dtucker  2529:                    ctx->ip_str ? ctx->ip_str : "(none)");
1.333     djm      2530:                if ((r = hostkeys_foreach(options.user_hostfiles[i],
                   2531:                    hostkeys_find, ctx, ctx->host_str, ctx->ip_str,
1.356     djm      2532:                    HKF_WANT_PARSE_KEY, 0)) != 0) {
1.333     djm      2533:                        if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
1.354     djm      2534:                                debug_f("hostkeys file %s does not exist",
                   2535:                                    options.user_hostfiles[i]);
1.333     djm      2536:                                continue;
                   2537:                        }
1.354     djm      2538:                        error_fr(r, "hostkeys_foreach failed for %s",
                   2539:                            options.user_hostfiles[i]);
1.333     djm      2540:                        goto out;
                   2541:                }
1.267     djm      2542:        }
                   2543:
1.269     djm      2544:        /* Figure out if we have any new keys to add */
1.351     djm      2545:        ctx->nnew = ctx->nincomplete = 0;
                   2546:        want = HKF_MATCH_HOST | ( options.check_host_ip ? HKF_MATCH_IP : 0);
1.269     djm      2547:        for (i = 0; i < ctx->nkeys; i++) {
1.351     djm      2548:                if (ctx->keys_match[i] == 0)
1.269     djm      2549:                        ctx->nnew++;
1.351     djm      2550:                if ((ctx->keys_match[i] & want) != want)
                   2551:                        ctx->nincomplete++;
1.269     djm      2552:        }
                   2553:
1.354     djm      2554:        debug3_f("%zu server keys: %zu new, %zu retained, "
                   2555:            "%zu incomplete match. %zu to remove", ctx->nkeys, ctx->nnew,
                   2556:            ctx->nkeys - ctx->nnew - ctx->nincomplete,
1.351     djm      2557:            ctx->nincomplete, ctx->nold);
1.269     djm      2558:
1.353     djm      2559:        if (ctx->nnew == 0 && ctx->nold == 0) {
1.354     djm      2560:                debug_f("no new or deprecated keys from server");
1.353     djm      2561:                goto out;
                   2562:        }
                   2563:
                   2564:        /* Various reasons why we cannot proceed with the update */
                   2565:        if (ctx->complex_hostspec) {
1.354     djm      2566:                debug_f("CA/revocation marker, manual host list or wildcard "
                   2567:                    "host pattern found, skipping UserKnownHostsFile update");
1.353     djm      2568:                goto out;
                   2569:        }
                   2570:        if (ctx->other_name_seen) {
1.354     djm      2571:                debug_f("host key found matching a different name/address, "
                   2572:                    "skipping UserKnownHostsFile update");
1.347     djm      2573:                goto out;
1.352     djm      2574:        }
                   2575:        /*
                   2576:         * If removing keys, check whether they appear under different
                   2577:         * names/addresses and refuse to proceed if they do. This avoids
                   2578:         * cases such as hosts with multiple names becoming inconsistent
                   2579:         * with regards to CheckHostIP entries.
                   2580:         * XXX UpdateHostkeys=force to override this (and other) checks?
                   2581:         */
                   2582:        if (ctx->nold != 0) {
                   2583:                if (check_old_keys_othernames(ctx) != 0)
                   2584:                        goto out; /* error already logged */
                   2585:                if (ctx->old_key_seen) {
1.354     djm      2586:                        debug_f("key(s) for %s%s%s exist under other names; "
                   2587:                            "skipping UserKnownHostsFile update",
1.352     djm      2588:                            ctx->host_str, ctx->ip_str == NULL ? "" : ",",
                   2589:                            ctx->ip_str == NULL ? "" : ctx->ip_str);
                   2590:                        goto out;
                   2591:                }
                   2592:        }
                   2593:
1.353     djm      2594:        if (ctx->nnew == 0) {
1.351     djm      2595:                /*
                   2596:                 * We have some keys to remove or fix matching for.
                   2597:                 * We can proceed to do this without requiring a fresh proof
                   2598:                 * from the server.
                   2599:                 */
1.269     djm      2600:                update_known_hosts(ctx);
1.353     djm      2601:                goto out;
                   2602:        }
                   2603:        /*
                   2604:         * We have received previously-unseen keys from the server.
                   2605:         * Ask the server to confirm ownership of the private halves.
                   2606:         */
1.354     djm      2607:        debug3_f("asking server to prove ownership for %zu keys", ctx->nnew);
1.353     djm      2608:        if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
                   2609:            (r = sshpkt_put_cstring(ssh,
                   2610:            "hostkeys-prove-00@openssh.com")) != 0 ||
                   2611:            (r = sshpkt_put_u8(ssh, 1)) != 0) /* bool: want reply */
1.354     djm      2612:                fatal_fr(r, "prepare hostkeys-prove");
1.353     djm      2613:        if ((buf = sshbuf_new()) == NULL)
1.354     djm      2614:                fatal_f("sshbuf_new");
1.353     djm      2615:        for (i = 0; i < ctx->nkeys; i++) {
                   2616:                if (ctx->keys_match[i])
                   2617:                        continue;
                   2618:                sshbuf_reset(buf);
                   2619:                if ((r = sshkey_putb(ctx->keys[i], buf)) != 0 ||
1.354     djm      2620:                    (r = sshpkt_put_stringb(ssh, buf)) != 0)
                   2621:                        fatal_fr(r, "assemble hostkeys-prove");
1.269     djm      2622:        }
1.353     djm      2623:        if ((r = sshpkt_send(ssh)) != 0)
1.354     djm      2624:                fatal_fr(r, "send hostkeys-prove");
1.353     djm      2625:        client_register_global_confirm(
1.381     djm      2626:            client_global_hostkeys_prove_confirm, ctx);
1.353     djm      2627:        ctx = NULL;  /* will be freed in callback */
1.384     djm      2628:        prove_sent = 1;
1.269     djm      2629:
1.267     djm      2630:        /* Success */
                   2631:  out:
1.269     djm      2632:        hostkeys_update_ctx_free(ctx);
1.267     djm      2633:        sshkey_free(key);
                   2634:        sshbuf_free(buf);
1.384     djm      2635:        if (!prove_sent) {
                   2636:                /* UpdateHostkeys handling completed */
                   2637:                hostkeys_update_complete = 1;
                   2638:                client_repledge();
                   2639:        }
1.269     djm      2640:        /*
                   2641:         * NB. Return success for all cases. The server doesn't need to know
                   2642:         * what the client does with its hosts file.
                   2643:         */
                   2644:        return 1;
1.267     djm      2645: }
                   2646:
1.264     markus   2647: static int
1.297     markus   2648: client_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
1.95      markus   2649: {
                   2650:        char *rtype;
1.320     djm      2651:        u_char want_reply;
                   2652:        int r, success = 0;
1.95      markus   2653:
1.320     djm      2654:        if ((r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 ||
                   2655:            (r = sshpkt_get_u8(ssh, &want_reply)) != 0)
                   2656:                goto out;
1.117     markus   2657:        debug("client_input_global_request: rtype %s want_reply %d",
                   2658:            rtype, want_reply);
1.270     djm      2659:        if (strcmp(rtype, "hostkeys-00@openssh.com") == 0)
1.321     djm      2660:                success = client_input_hostkeys(ssh);
1.95      markus   2661:        if (want_reply) {
1.320     djm      2662:                if ((r = sshpkt_start(ssh, success ? SSH2_MSG_REQUEST_SUCCESS :
                   2663:                    SSH2_MSG_REQUEST_FAILURE)) != 0 ||
                   2664:                    (r = sshpkt_send(ssh)) != 0 ||
                   2665:                    (r = ssh_packet_write_wait(ssh)) != 0)
                   2666:                        goto out;
1.95      markus   2667:        }
1.320     djm      2668:        r = 0;
                   2669:  out:
1.250     djm      2670:        free(rtype);
1.320     djm      2671:        return r;
1.95      markus   2672: }
1.22      markus   2673:
1.354     djm      2674: static void
                   2675: client_send_env(struct ssh *ssh, int id, const char *name, const char *val)
                   2676: {
                   2677:        int r;
                   2678:
                   2679:        debug("channel %d: setting env %s = \"%s\"", id, name, val);
                   2680:        channel_request_start(ssh, id, "env", 0);
                   2681:        if ((r = sshpkt_put_cstring(ssh, name)) != 0 ||
                   2682:            (r = sshpkt_put_cstring(ssh, val)) != 0 ||
                   2683:            (r = sshpkt_send(ssh)) != 0)
                   2684:                fatal_fr(r, "send setenv");
                   2685: }
                   2686:
1.123     djm      2687: void
1.303     djm      2688: client_session2_setup(struct ssh *ssh, int id, int want_tty, int want_subsystem,
1.315     markus   2689:     const char *term, struct termios *tiop, int in_fd, struct sshbuf *cmd,
                   2690:     char **env)
1.123     djm      2691: {
1.380     djm      2692:        size_t i, j, len;
                   2693:        int matched, r;
1.313     djm      2694:        char *name, *val;
1.132     djm      2695:        Channel *c = NULL;
1.123     djm      2696:
1.354     djm      2697:        debug2_f("id %d", id);
1.123     djm      2698:
1.303     djm      2699:        if ((c = channel_lookup(ssh, id)) == NULL)
1.354     djm      2700:                fatal_f("channel %d: unknown channel", id);
1.224     djm      2701:
1.320     djm      2702:        ssh_packet_set_interactive(ssh, want_tty,
1.224     djm      2703:            options.ip_qos_interactive, options.ip_qos_bulk);
1.132     djm      2704:
1.123     djm      2705:        if (want_tty) {
                   2706:                struct winsize ws;
                   2707:
                   2708:                /* Store window size in the packet. */
1.326     deraadt  2709:                if (ioctl(in_fd, TIOCGWINSZ, &ws) == -1)
1.123     djm      2710:                        memset(&ws, 0, sizeof(ws));
                   2711:
1.303     djm      2712:                channel_request_start(ssh, id, "pty-req", 1);
                   2713:                client_expect_confirm(ssh, id, "PTY allocation", CONFIRM_TTY);
1.320     djm      2714:                if ((r = sshpkt_put_cstring(ssh, term != NULL ? term : ""))
                   2715:                    != 0 ||
                   2716:                    (r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
                   2717:                    (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
                   2718:                    (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
                   2719:                    (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0)
1.354     djm      2720:                        fatal_fr(r, "build pty-req");
1.194     djm      2721:                if (tiop == NULL)
                   2722:                        tiop = get_saved_tio();
1.316     markus   2723:                ssh_tty_make_modes(ssh, -1, tiop);
1.320     djm      2724:                if ((r = sshpkt_send(ssh)) != 0)
1.354     djm      2725:                        fatal_fr(r, "send pty-req");
1.123     djm      2726:                /* XXX wait for reply */
1.132     djm      2727:                c->client_tty = 1;
1.123     djm      2728:        }
                   2729:
                   2730:        /* Transfer any environment variables from client to server */
1.126     djm      2731:        if (options.num_send_env != 0 && env != NULL) {
1.123     djm      2732:                debug("Sending environment.");
1.126     djm      2733:                for (i = 0; env[i] != NULL; i++) {
1.123     djm      2734:                        /* Split */
1.126     djm      2735:                        name = xstrdup(env[i]);
1.123     djm      2736:                        if ((val = strchr(name, '=')) == NULL) {
1.250     djm      2737:                                free(name);
1.123     djm      2738:                                continue;
                   2739:                        }
                   2740:                        *val++ = '\0';
                   2741:
                   2742:                        matched = 0;
                   2743:                        for (j = 0; j < options.num_send_env; j++) {
                   2744:                                if (match_pattern(name, options.send_env[j])) {
                   2745:                                        matched = 1;
                   2746:                                        break;
                   2747:                                }
                   2748:                        }
                   2749:                        if (!matched) {
                   2750:                                debug3("Ignored env %s", name);
1.250     djm      2751:                                free(name);
1.123     djm      2752:                                continue;
                   2753:                        }
1.354     djm      2754:                        client_send_env(ssh, id, name, val);
1.250     djm      2755:                        free(name);
1.123     djm      2756:                }
1.313     djm      2757:        }
                   2758:        for (i = 0; i < options.num_setenv; i++) {
                   2759:                /* Split */
                   2760:                name = xstrdup(options.setenv[i]);
                   2761:                if ((val = strchr(name, '=')) == NULL) {
                   2762:                        free(name);
                   2763:                        continue;
                   2764:                }
                   2765:                *val++ = '\0';
1.354     djm      2766:                client_send_env(ssh, id, name, val);
1.313     djm      2767:                free(name);
1.123     djm      2768:        }
                   2769:
1.315     markus   2770:        len = sshbuf_len(cmd);
1.123     djm      2771:        if (len > 0) {
                   2772:                if (len > 900)
                   2773:                        len = 900;
                   2774:                if (want_subsystem) {
1.190     djm      2775:                        debug("Sending subsystem: %.*s",
1.380     djm      2776:                            (int)len, (const u_char*)sshbuf_ptr(cmd));
1.303     djm      2777:                        channel_request_start(ssh, id, "subsystem", 1);
                   2778:                        client_expect_confirm(ssh, id, "subsystem",
                   2779:                            CONFIRM_CLOSE);
1.123     djm      2780:                } else {
1.190     djm      2781:                        debug("Sending command: %.*s",
1.380     djm      2782:                            (int)len, (const u_char*)sshbuf_ptr(cmd));
1.303     djm      2783:                        channel_request_start(ssh, id, "exec", 1);
                   2784:                        client_expect_confirm(ssh, id, "exec", CONFIRM_CLOSE);
1.123     djm      2785:                }
1.320     djm      2786:                if ((r = sshpkt_put_stringb(ssh, cmd)) != 0 ||
                   2787:                    (r = sshpkt_send(ssh)) != 0)
1.354     djm      2788:                        fatal_fr(r, "send command");
1.123     djm      2789:        } else {
1.303     djm      2790:                channel_request_start(ssh, id, "shell", 1);
                   2791:                client_expect_confirm(ssh, id, "shell", CONFIRM_CLOSE);
1.354     djm      2792:                if ((r = sshpkt_send(ssh)) != 0)
                   2793:                        fatal_fr(r, "send shell");
1.123     djm      2794:        }
1.384     djm      2795:
                   2796:        session_setup_complete = 1;
                   2797:        client_repledge();
1.123     djm      2798: }
                   2799:
1.77      itojun   2800: static void
1.321     djm      2801: client_init_dispatch(struct ssh *ssh)
1.16      markus   2802: {
1.321     djm      2803:        ssh_dispatch_init(ssh, &dispatch_protocol_error);
1.100     markus   2804:
1.321     djm      2805:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
                   2806:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_DATA, &channel_input_data);
                   2807:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
                   2808:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
                   2809:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
                   2810:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
                   2811:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
                   2812:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
                   2813:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
                   2814:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
                   2815:        ssh_dispatch_set(ssh, SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
                   2816:        ssh_dispatch_set(ssh, SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
1.55      markus   2817:
                   2818:        /* rekeying */
1.321     djm      2819:        ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit);
1.100     markus   2820:
                   2821:        /* global request reply messages */
1.321     djm      2822:        ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
                   2823:        ssh_dispatch_set(ssh, SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
1.232     djm      2824: }
                   2825:
                   2826: void
                   2827: client_stop_mux(void)
                   2828: {
                   2829:        if (options.control_path != NULL && muxserver_sock != -1)
                   2830:                unlink(options.control_path);
                   2831:        /*
1.247     dtucker  2832:         * If we are in persist mode, or don't have a shell, signal that we
                   2833:         * should close when all active channels are closed.
1.232     djm      2834:         */
1.366     djm      2835:        if (options.control_persist || options.session_type == SESSION_TYPE_NONE) {
1.232     djm      2836:                session_closed = 1;
1.235     djm      2837:                setproctitle("[stopped mux]");
                   2838:        }
1.113     markus   2839: }
                   2840:
                   2841: /* client specific fatal cleanup */
                   2842: void
1.114     markus   2843: cleanup_exit(int i)
1.113     markus   2844: {
1.233     djm      2845:        leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1.192     djm      2846:        if (options.control_path != NULL && muxserver_sock != -1)
1.123     djm      2847:                unlink(options.control_path);
1.223     djm      2848:        ssh_kill_proxy_command();
1.114     markus   2849:        _exit(i);
1.1       deraadt  2850: }