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

Annotation of src/usr.bin/ssh/channels.c, Revision 1.331

1.331   ! djm         1: /* $OpenBSD: channels.c,v 1.330 2014/02/15 23:05:36 djm Exp $ */
1.1       deraadt     2: /*
1.26      deraadt     3:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      4:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      5:  *                    All rights reserved
                      6:  * This file contains functions for generic socket connection forwarding.
                      7:  * There is also code for initiating connection forwarding for X11 connections,
                      8:  * arbitrary tcp/ip connections, and the authentication agent connection.
1.49      markus      9:  *
1.67      deraadt    10:  * As far as I am concerned, the code I have written for this software
                     11:  * can be used freely for any purpose.  Any derived versions of this
                     12:  * software must be clearly marked as such, and if the derived work is
                     13:  * incompatible with the protocol description in the RFC file, it must be
                     14:  * called by a name other than "ssh" or "Secure Shell".
                     15:  *
1.44      markus     16:  * SSH2 support added by Markus Friedl.
1.156     markus     17:  * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl.  All rights reserved.
1.67      deraadt    18:  * Copyright (c) 1999 Dug Song.  All rights reserved.
                     19:  * Copyright (c) 1999 Theo de Raadt.  All rights reserved.
                     20:  *
                     21:  * Redistribution and use in source and binary forms, with or without
                     22:  * modification, are permitted provided that the following conditions
                     23:  * are met:
                     24:  * 1. Redistributions of source code must retain the above copyright
                     25:  *    notice, this list of conditions and the following disclaimer.
                     26:  * 2. Redistributions in binary form must reproduce the above copyright
                     27:  *    notice, this list of conditions and the following disclaimer in the
                     28:  *    documentation and/or other materials provided with the distribution.
                     29:  *
                     30:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     31:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     32:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     33:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     34:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     35:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     36:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     37:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     38:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     39:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.26      deraadt    40:  */
1.1       deraadt    41:
1.265     deraadt    42: #include <sys/types.h>
1.234     stevesk    43: #include <sys/ioctl.h>
1.235     stevesk    44: #include <sys/un.h>
1.251     stevesk    45: #include <sys/socket.h>
1.261     stevesk    46: #include <sys/time.h>
1.275     djm        47: #include <sys/queue.h>
1.251     stevesk    48:
                     49: #include <netinet/in.h>
                     50: #include <arpa/inet.h>
1.233     stevesk    51:
1.254     stevesk    52: #include <errno.h>
1.298     dtucker    53: #include <fcntl.h>
1.255     stevesk    54: #include <netdb.h>
1.263     stevesk    55: #include <stdio.h>
1.262     stevesk    56: #include <stdlib.h>
1.260     stevesk    57: #include <string.h>
1.233     stevesk    58: #include <termios.h>
1.256     stevesk    59: #include <unistd.h>
1.265     deraadt    60: #include <stdarg.h>
1.1       deraadt    61:
1.265     deraadt    62: #include "xmalloc.h"
1.1       deraadt    63: #include "ssh.h"
1.82      markus     64: #include "ssh1.h"
                     65: #include "ssh2.h"
1.1       deraadt    66: #include "packet.h"
1.82      markus     67: #include "log.h"
                     68: #include "misc.h"
1.265     deraadt    69: #include "buffer.h"
1.14      markus     70: #include "channels.h"
                     71: #include "compat.h"
1.82      markus     72: #include "canohost.h"
1.64      markus     73: #include "key.h"
                     74: #include "authfd.h"
1.147     stevesk    75: #include "pathnames.h"
1.1       deraadt    76:
1.121     markus     77: /* -- channel core */
1.12      markus     78:
1.27      markus     79: /*
                     80:  * Pointer to an array containing all allocated channels.  The array is
                     81:  * dynamically extended as needed.
                     82:  */
1.113     markus     83: static Channel **channels = NULL;
1.1       deraadt    84:
1.27      markus     85: /*
                     86:  * Size of the channel array.  All slots of the array must always be
1.113     markus     87:  * initialized (at least the type field); unused slots set to NULL
1.27      markus     88:  */
1.209     avsm       89: static u_int channels_alloc = 0;
1.1       deraadt    90:
1.27      markus     91: /*
                     92:  * Maximum file descriptor value used in any of the channels.  This is
1.113     markus     93:  * updated in channel_new.
1.27      markus     94:  */
1.84      markus     95: static int channel_max_fd = 0;
1.1       deraadt    96:
                     97:
1.121     markus     98: /* -- tcp forwarding */
1.1       deraadt    99:
1.27      markus    100: /*
                    101:  * Data structure for storing which hosts are permitted for forward requests.
                    102:  * The local sides of any remote forwards are stored in this array to prevent
                    103:  * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
                    104:  * network (which might be behind a firewall).
                    105:  */
1.25      markus    106: typedef struct {
1.41      markus    107:        char *host_to_connect;          /* Connect to 'host'. */
                    108:        u_short port_to_connect;        /* Connect to 'port'. */
                    109:        u_short listen_port;            /* Remote side should listen port number. */
1.1       deraadt   110: } ForwardPermission;
                    111:
1.257     dtucker   112: /* List of all permitted host/port pairs to connect by the user. */
1.305     djm       113: static ForwardPermission *permitted_opens = NULL;
1.121     markus    114:
1.257     dtucker   115: /* List of all permitted host/port pairs to connect by the admin. */
1.305     djm       116: static ForwardPermission *permitted_adm_opens = NULL;
1.257     dtucker   117:
                    118: /* Number of permitted host/port pairs in the array permitted by the user. */
1.1       deraadt   119: static int num_permitted_opens = 0;
1.257     dtucker   120:
                    121: /* Number of permitted host/port pair in the array permitted by the admin. */
                    122: static int num_adm_permitted_opens = 0;
                    123:
1.314     dtucker   124: /* special-case port number meaning allow any port */
                    125: #define FWD_PERMIT_ANY_PORT    0
                    126:
1.27      markus    127: /*
                    128:  * If this is true, all opens are permitted.  This is the case on the server
                    129:  * on which we have to trust the client anyway, and the user could do
                    130:  * anything after logging in anyway.
                    131:  */
1.1       deraadt   132: static int all_opens_permitted = 0;
                    133:
1.121     markus    134:
                    135: /* -- X11 forwarding */
                    136:
                    137: /* Maximum number of fake X11 displays to try. */
                    138: #define MAX_DISPLAYS  1000
                    139:
1.219     djm       140: /* Saved X11 local (client) display. */
                    141: static char *x11_saved_display = NULL;
                    142:
1.121     markus    143: /* Saved X11 authentication protocol name. */
                    144: static char *x11_saved_proto = NULL;
                    145:
                    146: /* Saved X11 authentication data.  This is the real data. */
                    147: static char *x11_saved_data = NULL;
                    148: static u_int x11_saved_data_len = 0;
                    149:
                    150: /*
                    151:  * Fake X11 authentication data.  This is what the server will be sending us;
                    152:  * we should replace any occurrences of this by the real data.
                    153:  */
1.240     deraadt   154: static u_char *x11_fake_data = NULL;
1.121     markus    155: static u_int x11_fake_data_len;
                    156:
                    157:
                    158: /* -- agent forwarding */
                    159:
                    160: #define        NUM_SOCKS       10
                    161:
1.82      markus    162: /* AF_UNSPEC or AF_INET or AF_INET6 */
1.135     markus    163: static int IPv4or6 = AF_UNSPEC;
1.1       deraadt   164:
1.121     markus    165: /* helper */
1.127     itojun    166: static void port_open_helper(Channel *c, char *rtype);
1.103     markus    167:
1.276     djm       168: /* non-blocking connect helpers */
                    169: static int connect_next(struct channel_connect *);
                    170: static void channel_connect_ctx_free(struct channel_connect *);
                    171:
1.121     markus    172: /* -- channel core */
1.41      markus    173:
                    174: Channel *
1.229     markus    175: channel_by_id(int id)
1.41      markus    176: {
                    177:        Channel *c;
1.113     markus    178:
1.209     avsm      179:        if (id < 0 || (u_int)id >= channels_alloc) {
1.229     markus    180:                logit("channel_by_id: %d: bad id", id);
1.41      markus    181:                return NULL;
                    182:        }
1.113     markus    183:        c = channels[id];
                    184:        if (c == NULL) {
1.229     markus    185:                logit("channel_by_id: %d: bad id: channel free", id);
1.41      markus    186:                return NULL;
                    187:        }
                    188:        return c;
1.55      markus    189: }
                    190:
1.27      markus    191: /*
1.229     markus    192:  * Returns the channel if it is allowed to receive protocol messages.
                    193:  * Private channels, like listening sockets, may not receive messages.
                    194:  */
                    195: Channel *
                    196: channel_lookup(int id)
                    197: {
                    198:        Channel *c;
                    199:
                    200:        if ((c = channel_by_id(id)) == NULL)
                    201:                return (NULL);
                    202:
1.237     deraadt   203:        switch (c->type) {
1.229     markus    204:        case SSH_CHANNEL_X11_OPEN:
                    205:        case SSH_CHANNEL_LARVAL:
                    206:        case SSH_CHANNEL_CONNECTING:
                    207:        case SSH_CHANNEL_DYNAMIC:
                    208:        case SSH_CHANNEL_OPENING:
                    209:        case SSH_CHANNEL_OPEN:
                    210:        case SSH_CHANNEL_INPUT_DRAINING:
                    211:        case SSH_CHANNEL_OUTPUT_DRAINING:
1.323     dtucker   212:        case SSH_CHANNEL_ABANDONED:
1.229     markus    213:                return (c);
                    214:        }
                    215:        logit("Non-public channel %d, type %d.", id, c->type);
                    216:        return (NULL);
                    217: }
                    218:
                    219: /*
1.55      markus    220:  * Register filedescriptors for a channel, used when allocating a channel or
1.52      markus    221:  * when the channel consumer/producer is ready, e.g. shell exec'd
1.27      markus    222:  */
1.127     itojun    223: static void
1.71      markus    224: channel_register_fds(Channel *c, int rfd, int wfd, int efd,
1.282     dtucker   225:     int extusage, int nonblock, int is_tty)
1.1       deraadt   226: {
1.25      markus    227:        /* Update the maximum file descriptor value. */
1.84      markus    228:        channel_max_fd = MAX(channel_max_fd, rfd);
                    229:        channel_max_fd = MAX(channel_max_fd, wfd);
                    230:        channel_max_fd = MAX(channel_max_fd, efd);
                    231:
1.298     dtucker   232:        if (rfd != -1)
                    233:                fcntl(rfd, F_SETFD, FD_CLOEXEC);
                    234:        if (wfd != -1 && wfd != rfd)
                    235:                fcntl(wfd, F_SETFD, FD_CLOEXEC);
                    236:        if (efd != -1 && efd != rfd && efd != wfd)
                    237:                fcntl(efd, F_SETFD, FD_CLOEXEC);
1.55      markus    238:
1.52      markus    239:        c->rfd = rfd;
                    240:        c->wfd = wfd;
                    241:        c->sock = (rfd == wfd) ? rfd : -1;
                    242:        c->efd = efd;
                    243:        c->extended_usage = extusage;
1.71      markus    244:
1.282     dtucker   245:        if ((c->isatty = is_tty) != 0)
1.194     markus    246:                debug2("channel %d: rfd %d isatty", c->self, c->rfd);
1.91      markus    247:
1.71      markus    248:        /* enable nonblocking mode */
                    249:        if (nonblock) {
                    250:                if (rfd != -1)
                    251:                        set_nonblock(rfd);
                    252:                if (wfd != -1)
                    253:                        set_nonblock(wfd);
                    254:                if (efd != -1)
                    255:                        set_nonblock(efd);
                    256:        }
1.52      markus    257: }
                    258:
                    259: /*
                    260:  * Allocate a new channel object and set its type and socket. This will cause
                    261:  * remote_name to be freed.
                    262:  */
1.113     markus    263: Channel *
1.52      markus    264: channel_new(char *ctype, int type, int rfd, int wfd, int efd,
1.178     markus    265:     u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
1.52      markus    266: {
1.209     avsm      267:        int found;
                    268:        u_int i;
1.52      markus    269:        Channel *c;
1.25      markus    270:
                    271:        /* Do initial allocation if this is the first call. */
                    272:        if (channels_alloc == 0) {
                    273:                channels_alloc = 10;
1.242     djm       274:                channels = xcalloc(channels_alloc, sizeof(Channel *));
1.25      markus    275:                for (i = 0; i < channels_alloc; i++)
1.113     markus    276:                        channels[i] = NULL;
1.25      markus    277:        }
                    278:        /* Try to find a free slot where to put the new channel. */
                    279:        for (found = -1, i = 0; i < channels_alloc; i++)
1.113     markus    280:                if (channels[i] == NULL) {
1.25      markus    281:                        /* Found a free slot. */
1.209     avsm      282:                        found = (int)i;
1.25      markus    283:                        break;
                    284:                }
1.209     avsm      285:        if (found < 0) {
1.27      markus    286:                /* There are no free slots.  Take last+1 slot and expand the array.  */
1.25      markus    287:                found = channels_alloc;
1.179     markus    288:                if (channels_alloc > 10000)
                    289:                        fatal("channel_new: internal error: channels_alloc %d "
                    290:                            "too big.", channels_alloc);
1.243     djm       291:                channels = xrealloc(channels, channels_alloc + 10,
                    292:                    sizeof(Channel *));
1.195     markus    293:                channels_alloc += 10;
1.70      markus    294:                debug2("channel: expanding %d", channels_alloc);
1.25      markus    295:                for (i = found; i < channels_alloc; i++)
1.113     markus    296:                        channels[i] = NULL;
1.25      markus    297:        }
1.113     markus    298:        /* Initialize and return new channel. */
1.242     djm       299:        c = channels[found] = xcalloc(1, sizeof(Channel));
1.25      markus    300:        buffer_init(&c->input);
                    301:        buffer_init(&c->output);
1.41      markus    302:        buffer_init(&c->extended);
1.293     djm       303:        c->path = NULL;
1.312     djm       304:        c->listening_addr = NULL;
                    305:        c->listening_port = 0;
1.159     markus    306:        c->ostate = CHAN_OUTPUT_OPEN;
                    307:        c->istate = CHAN_INPUT_OPEN;
                    308:        c->flags = 0;
1.281     djm       309:        channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
1.317     djm       310:        c->notbefore = 0;
1.25      markus    311:        c->self = found;
                    312:        c->type = type;
1.41      markus    313:        c->ctype = ctype;
1.51      markus    314:        c->local_window = window;
                    315:        c->local_window_max = window;
                    316:        c->local_consumed = 0;
                    317:        c->local_maxpacket = maxpack;
1.25      markus    318:        c->remote_id = -1;
1.190     markus    319:        c->remote_name = xstrdup(remote_name);
1.41      markus    320:        c->remote_window = 0;
                    321:        c->remote_maxpacket = 0;
1.133     markus    322:        c->force_drain = 0;
1.149     markus    323:        c->single_connection = 0;
1.131     markus    324:        c->detach_user = NULL;
1.225     djm       325:        c->detach_close = 0;
1.275     djm       326:        c->open_confirm = NULL;
                    327:        c->open_confirm_ctx = NULL;
1.65      markus    328:        c->input_filter = NULL;
1.231     reyk      329:        c->output_filter = NULL;
1.280     djm       330:        c->filter_ctx = NULL;
                    331:        c->filter_cleanup = NULL;
1.302     djm       332:        c->ctl_chan = -1;
                    333:        c->mux_rcb = NULL;
                    334:        c->mux_ctx = NULL;
1.304     djm       335:        c->mux_pause = 0;
1.299     markus    336:        c->delayed = 1;         /* prevent call to channel_post handler */
1.275     djm       337:        TAILQ_INIT(&c->status_confirms);
1.25      markus    338:        debug("channel %d: new [%s]", found, remote_name);
1.113     markus    339:        return c;
1.1       deraadt   340: }
1.52      markus    341:
1.132     markus    342: static int
                    343: channel_find_maxfd(void)
                    344: {
1.209     avsm      345:        u_int i;
                    346:        int max = 0;
1.132     markus    347:        Channel *c;
                    348:
                    349:        for (i = 0; i < channels_alloc; i++) {
                    350:                c = channels[i];
                    351:                if (c != NULL) {
                    352:                        max = MAX(max, c->rfd);
                    353:                        max = MAX(max, c->wfd);
                    354:                        max = MAX(max, c->efd);
                    355:                }
                    356:        }
                    357:        return max;
                    358: }
                    359:
                    360: int
                    361: channel_close_fd(int *fdp)
                    362: {
                    363:        int ret = 0, fd = *fdp;
                    364:
                    365:        if (fd != -1) {
                    366:                ret = close(fd);
                    367:                *fdp = -1;
                    368:                if (fd == channel_max_fd)
                    369:                        channel_max_fd = channel_find_maxfd();
                    370:        }
                    371:        return ret;
                    372: }
                    373:
1.52      markus    374: /* Close all channel fd/socket. */
1.127     itojun    375: static void
1.52      markus    376: channel_close_fds(Channel *c)
                    377: {
1.132     markus    378:        channel_close_fd(&c->sock);
                    379:        channel_close_fd(&c->rfd);
                    380:        channel_close_fd(&c->wfd);
                    381:        channel_close_fd(&c->efd);
1.121     markus    382: }
                    383:
                    384: /* Free the channel and close its fd/socket. */
                    385: void
                    386: channel_free(Channel *c)
                    387: {
                    388:        char *s;
1.209     avsm      389:        u_int i, n;
1.275     djm       390:        struct channel_confirm *cc;
1.121     markus    391:
                    392:        for (n = 0, i = 0; i < channels_alloc; i++)
                    393:                if (channels[i])
                    394:                        n++;
1.209     avsm      395:        debug("channel %d: free: %s, nchannels %u", c->self,
1.121     markus    396:            c->remote_name ? c->remote_name : "???", n);
                    397:
                    398:        s = channel_open_message();
1.194     markus    399:        debug3("channel %d: status: %s", c->self, s);
1.321     djm       400:        free(s);
1.121     markus    401:
                    402:        if (c->sock != -1)
                    403:                shutdown(c->sock, SHUT_RDWR);
                    404:        channel_close_fds(c);
                    405:        buffer_free(&c->input);
                    406:        buffer_free(&c->output);
                    407:        buffer_free(&c->extended);
1.321     djm       408:        free(c->remote_name);
                    409:        c->remote_name = NULL;
                    410:        free(c->path);
                    411:        c->path = NULL;
                    412:        free(c->listening_addr);
                    413:        c->listening_addr = NULL;
1.275     djm       414:        while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
                    415:                if (cc->abandon_cb != NULL)
                    416:                        cc->abandon_cb(c, cc->ctx);
                    417:                TAILQ_REMOVE(&c->status_confirms, cc, entry);
1.329     tedu      418:                explicit_bzero(cc, sizeof(*cc));
1.321     djm       419:                free(cc);
1.275     djm       420:        }
1.280     djm       421:        if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
                    422:                c->filter_cleanup(c->self, c->filter_ctx);
1.121     markus    423:        channels[c->self] = NULL;
1.321     djm       424:        free(c);
1.121     markus    425: }
                    426:
                    427: void
1.126     markus    428: channel_free_all(void)
1.121     markus    429: {
1.209     avsm      430:        u_int i;
1.121     markus    431:
1.126     markus    432:        for (i = 0; i < channels_alloc; i++)
                    433:                if (channels[i] != NULL)
                    434:                        channel_free(channels[i]);
1.131     markus    435: }
                    436:
1.121     markus    437: /*
                    438:  * Closes the sockets/fds of all channels.  This is used to close extra file
                    439:  * descriptors after a fork.
                    440:  */
                    441: void
1.142     itojun    442: channel_close_all(void)
1.121     markus    443: {
1.209     avsm      444:        u_int i;
1.121     markus    445:
                    446:        for (i = 0; i < channels_alloc; i++)
                    447:                if (channels[i] != NULL)
                    448:                        channel_close_fds(channels[i]);
                    449: }
                    450:
                    451: /*
1.131     markus    452:  * Stop listening to channels.
                    453:  */
                    454: void
                    455: channel_stop_listening(void)
                    456: {
1.209     avsm      457:        u_int i;
1.131     markus    458:        Channel *c;
                    459:
                    460:        for (i = 0; i < channels_alloc; i++) {
                    461:                c = channels[i];
                    462:                if (c != NULL) {
                    463:                        switch (c->type) {
                    464:                        case SSH_CHANNEL_AUTH_SOCKET:
                    465:                        case SSH_CHANNEL_PORT_LISTENER:
                    466:                        case SSH_CHANNEL_RPORT_LISTENER:
                    467:                        case SSH_CHANNEL_X11_LISTENER:
1.132     markus    468:                                channel_close_fd(&c->sock);
1.131     markus    469:                                channel_free(c);
                    470:                                break;
                    471:                        }
                    472:                }
                    473:        }
                    474: }
                    475:
                    476: /*
1.121     markus    477:  * Returns true if no channel has too much buffered data, and false if one or
                    478:  * more channel is overfull.
                    479:  */
                    480: int
1.142     itojun    481: channel_not_very_much_buffered_data(void)
1.121     markus    482: {
                    483:        u_int i;
                    484:        Channel *c;
                    485:
                    486:        for (i = 0; i < channels_alloc; i++) {
                    487:                c = channels[i];
                    488:                if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
1.136     markus    489: #if 0
                    490:                        if (!compat20 &&
                    491:                            buffer_len(&c->input) > packet_get_maxsize()) {
1.185     markus    492:                                debug2("channel %d: big input buffer %d",
1.121     markus    493:                                    c->self, buffer_len(&c->input));
                    494:                                return 0;
                    495:                        }
1.136     markus    496: #endif
1.121     markus    497:                        if (buffer_len(&c->output) > packet_get_maxsize()) {
1.191     markus    498:                                debug2("channel %d: big output buffer %u > %u",
1.136     markus    499:                                    c->self, buffer_len(&c->output),
                    500:                                    packet_get_maxsize());
1.121     markus    501:                                return 0;
                    502:                        }
                    503:                }
                    504:        }
                    505:        return 1;
                    506: }
                    507:
                    508: /* Returns true if any channel is still open. */
                    509: int
1.142     itojun    510: channel_still_open(void)
1.121     markus    511: {
1.209     avsm      512:        u_int i;
1.121     markus    513:        Channel *c;
                    514:
                    515:        for (i = 0; i < channels_alloc; i++) {
                    516:                c = channels[i];
                    517:                if (c == NULL)
                    518:                        continue;
                    519:                switch (c->type) {
                    520:                case SSH_CHANNEL_X11_LISTENER:
                    521:                case SSH_CHANNEL_PORT_LISTENER:
                    522:                case SSH_CHANNEL_RPORT_LISTENER:
1.302     djm       523:                case SSH_CHANNEL_MUX_LISTENER:
1.121     markus    524:                case SSH_CHANNEL_CLOSED:
                    525:                case SSH_CHANNEL_AUTH_SOCKET:
                    526:                case SSH_CHANNEL_DYNAMIC:
                    527:                case SSH_CHANNEL_CONNECTING:
                    528:                case SSH_CHANNEL_ZOMBIE:
1.323     dtucker   529:                case SSH_CHANNEL_ABANDONED:
1.121     markus    530:                        continue;
                    531:                case SSH_CHANNEL_LARVAL:
                    532:                        if (!compat20)
                    533:                                fatal("cannot happen: SSH_CHANNEL_LARVAL");
                    534:                        continue;
                    535:                case SSH_CHANNEL_OPENING:
                    536:                case SSH_CHANNEL_OPEN:
                    537:                case SSH_CHANNEL_X11_OPEN:
1.302     djm       538:                case SSH_CHANNEL_MUX_CLIENT:
1.121     markus    539:                        return 1;
                    540:                case SSH_CHANNEL_INPUT_DRAINING:
                    541:                case SSH_CHANNEL_OUTPUT_DRAINING:
                    542:                        if (!compat13)
                    543:                                fatal("cannot happen: OUT_DRAIN");
                    544:                        return 1;
                    545:                default:
                    546:                        fatal("channel_still_open: bad channel type %d", c->type);
                    547:                        /* NOTREACHED */
                    548:                }
                    549:        }
                    550:        return 0;
                    551: }
                    552:
                    553: /* Returns the id of an open channel suitable for keepaliving */
                    554: int
1.142     itojun    555: channel_find_open(void)
1.121     markus    556: {
1.209     avsm      557:        u_int i;
1.121     markus    558:        Channel *c;
                    559:
                    560:        for (i = 0; i < channels_alloc; i++) {
                    561:                c = channels[i];
1.206     djm       562:                if (c == NULL || c->remote_id < 0)
1.121     markus    563:                        continue;
                    564:                switch (c->type) {
                    565:                case SSH_CHANNEL_CLOSED:
                    566:                case SSH_CHANNEL_DYNAMIC:
                    567:                case SSH_CHANNEL_X11_LISTENER:
                    568:                case SSH_CHANNEL_PORT_LISTENER:
                    569:                case SSH_CHANNEL_RPORT_LISTENER:
1.302     djm       570:                case SSH_CHANNEL_MUX_LISTENER:
                    571:                case SSH_CHANNEL_MUX_CLIENT:
1.121     markus    572:                case SSH_CHANNEL_OPENING:
                    573:                case SSH_CHANNEL_CONNECTING:
                    574:                case SSH_CHANNEL_ZOMBIE:
1.323     dtucker   575:                case SSH_CHANNEL_ABANDONED:
1.121     markus    576:                        continue;
                    577:                case SSH_CHANNEL_LARVAL:
                    578:                case SSH_CHANNEL_AUTH_SOCKET:
                    579:                case SSH_CHANNEL_OPEN:
                    580:                case SSH_CHANNEL_X11_OPEN:
                    581:                        return i;
                    582:                case SSH_CHANNEL_INPUT_DRAINING:
                    583:                case SSH_CHANNEL_OUTPUT_DRAINING:
                    584:                        if (!compat13)
                    585:                                fatal("cannot happen: OUT_DRAIN");
                    586:                        return i;
                    587:                default:
                    588:                        fatal("channel_find_open: bad channel type %d", c->type);
                    589:                        /* NOTREACHED */
                    590:                }
                    591:        }
                    592:        return -1;
                    593: }
                    594:
                    595:
                    596: /*
                    597:  * Returns a message describing the currently open forwarded connections,
                    598:  * suitable for sending to the client.  The message contains crlf pairs for
                    599:  * newlines.
                    600:  */
                    601: char *
1.142     itojun    602: channel_open_message(void)
1.121     markus    603: {
                    604:        Buffer buffer;
                    605:        Channel *c;
                    606:        char buf[1024], *cp;
1.209     avsm      607:        u_int i;
1.121     markus    608:
                    609:        buffer_init(&buffer);
                    610:        snprintf(buf, sizeof buf, "The following connections are open:\r\n");
                    611:        buffer_append(&buffer, buf, strlen(buf));
                    612:        for (i = 0; i < channels_alloc; i++) {
                    613:                c = channels[i];
                    614:                if (c == NULL)
                    615:                        continue;
                    616:                switch (c->type) {
                    617:                case SSH_CHANNEL_X11_LISTENER:
                    618:                case SSH_CHANNEL_PORT_LISTENER:
                    619:                case SSH_CHANNEL_RPORT_LISTENER:
                    620:                case SSH_CHANNEL_CLOSED:
                    621:                case SSH_CHANNEL_AUTH_SOCKET:
                    622:                case SSH_CHANNEL_ZOMBIE:
1.323     dtucker   623:                case SSH_CHANNEL_ABANDONED:
1.302     djm       624:                case SSH_CHANNEL_MUX_CLIENT:
                    625:                case SSH_CHANNEL_MUX_LISTENER:
1.121     markus    626:                        continue;
                    627:                case SSH_CHANNEL_LARVAL:
                    628:                case SSH_CHANNEL_OPENING:
                    629:                case SSH_CHANNEL_CONNECTING:
                    630:                case SSH_CHANNEL_DYNAMIC:
                    631:                case SSH_CHANNEL_OPEN:
                    632:                case SSH_CHANNEL_X11_OPEN:
                    633:                case SSH_CHANNEL_INPUT_DRAINING:
                    634:                case SSH_CHANNEL_OUTPUT_DRAINING:
1.204     djm       635:                        snprintf(buf, sizeof buf,
1.302     djm       636:                            "  #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cc %d)\r\n",
1.121     markus    637:                            c->self, c->remote_name,
                    638:                            c->type, c->remote_id,
                    639:                            c->istate, buffer_len(&c->input),
                    640:                            c->ostate, buffer_len(&c->output),
1.302     djm       641:                            c->rfd, c->wfd, c->ctl_chan);
1.121     markus    642:                        buffer_append(&buffer, buf, strlen(buf));
                    643:                        continue;
                    644:                default:
                    645:                        fatal("channel_open_message: bad channel type %d", c->type);
                    646:                        /* NOTREACHED */
                    647:                }
                    648:        }
                    649:        buffer_append(&buffer, "\0", 1);
                    650:        cp = xstrdup(buffer_ptr(&buffer));
                    651:        buffer_free(&buffer);
                    652:        return cp;
                    653: }
                    654:
                    655: void
                    656: channel_send_open(int id)
                    657: {
                    658:        Channel *c = channel_lookup(id);
1.180     deraadt   659:
1.121     markus    660:        if (c == NULL) {
1.188     itojun    661:                logit("channel_send_open: %d: bad id", id);
1.121     markus    662:                return;
                    663:        }
1.184     markus    664:        debug2("channel %d: send open", id);
1.121     markus    665:        packet_start(SSH2_MSG_CHANNEL_OPEN);
                    666:        packet_put_cstring(c->ctype);
                    667:        packet_put_int(c->self);
                    668:        packet_put_int(c->local_window);
                    669:        packet_put_int(c->local_maxpacket);
                    670:        packet_send();
                    671: }
                    672:
                    673: void
1.184     markus    674: channel_request_start(int id, char *service, int wantconfirm)
1.121     markus    675: {
1.184     markus    676:        Channel *c = channel_lookup(id);
1.180     deraadt   677:
1.121     markus    678:        if (c == NULL) {
1.188     itojun    679:                logit("channel_request_start: %d: unknown channel id", id);
1.121     markus    680:                return;
                    681:        }
1.204     djm       682:        debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
1.121     markus    683:        packet_start(SSH2_MSG_CHANNEL_REQUEST);
                    684:        packet_put_int(c->remote_id);
                    685:        packet_put_cstring(service);
                    686:        packet_put_char(wantconfirm);
                    687: }
1.241     deraadt   688:
1.121     markus    689: void
1.275     djm       690: channel_register_status_confirm(int id, channel_confirm_cb *cb,
                    691:     channel_confirm_abandon_cb *abandon_cb, void *ctx)
                    692: {
                    693:        struct channel_confirm *cc;
                    694:        Channel *c;
                    695:
                    696:        if ((c = channel_lookup(id)) == NULL)
                    697:                fatal("channel_register_expect: %d: bad id", id);
                    698:
1.327     djm       699:        cc = xcalloc(1, sizeof(*cc));
1.275     djm       700:        cc->cb = cb;
                    701:        cc->abandon_cb = abandon_cb;
                    702:        cc->ctx = ctx;
                    703:        TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
                    704: }
                    705:
                    706: void
1.304     djm       707: channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
1.121     markus    708: {
                    709:        Channel *c = channel_lookup(id);
1.180     deraadt   710:
1.121     markus    711:        if (c == NULL) {
1.287     stevesk   712:                logit("channel_register_open_confirm: %d: bad id", id);
1.121     markus    713:                return;
                    714:        }
1.275     djm       715:        c->open_confirm = fn;
                    716:        c->open_confirm_ctx = ctx;
1.121     markus    717: }
1.241     deraadt   718:
1.121     markus    719: void
1.225     djm       720: channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
1.121     markus    721: {
1.229     markus    722:        Channel *c = channel_by_id(id);
1.180     deraadt   723:
1.121     markus    724:        if (c == NULL) {
1.188     itojun    725:                logit("channel_register_cleanup: %d: bad id", id);
1.121     markus    726:                return;
                    727:        }
1.131     markus    728:        c->detach_user = fn;
1.225     djm       729:        c->detach_close = do_close;
1.121     markus    730: }
1.241     deraadt   731:
1.121     markus    732: void
                    733: channel_cancel_cleanup(int id)
                    734: {
1.229     markus    735:        Channel *c = channel_by_id(id);
1.180     deraadt   736:
1.121     markus    737:        if (c == NULL) {
1.188     itojun    738:                logit("channel_cancel_cleanup: %d: bad id", id);
1.121     markus    739:                return;
1.52      markus    740:        }
1.131     markus    741:        c->detach_user = NULL;
1.225     djm       742:        c->detach_close = 0;
1.121     markus    743: }
1.241     deraadt   744:
1.121     markus    745: void
1.231     reyk      746: channel_register_filter(int id, channel_infilter_fn *ifn,
1.280     djm       747:     channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
1.121     markus    748: {
                    749:        Channel *c = channel_lookup(id);
1.180     deraadt   750:
1.121     markus    751:        if (c == NULL) {
1.188     itojun    752:                logit("channel_register_filter: %d: bad id", id);
1.121     markus    753:                return;
1.52      markus    754:        }
1.231     reyk      755:        c->input_filter = ifn;
                    756:        c->output_filter = ofn;
1.279     djm       757:        c->filter_ctx = ctx;
1.280     djm       758:        c->filter_cleanup = cfn;
1.52      markus    759: }
                    760:
1.49      markus    761: void
1.121     markus    762: channel_set_fds(int id, int rfd, int wfd, int efd,
1.282     dtucker   763:     int extusage, int nonblock, int is_tty, u_int window_max)
1.1       deraadt   764: {
1.121     markus    765:        Channel *c = channel_lookup(id);
1.180     deraadt   766:
1.121     markus    767:        if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
                    768:                fatal("channel_activate for non-larval channel %d.", id);
1.282     dtucker   769:        channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
1.121     markus    770:        c->type = SSH_CHANNEL_OPEN;
1.168     markus    771:        c->local_window = c->local_window_max = window_max;
1.121     markus    772:        packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
                    773:        packet_put_int(c->remote_id);
                    774:        packet_put_int(c->local_window);
                    775:        packet_send();
1.1       deraadt   776: }
                    777:
1.27      markus    778: /*
1.41      markus    779:  * 'channel_pre*' are called just before select() to add any bits relevant to
                    780:  * channels in the select bitmasks.
                    781:  */
                    782: /*
                    783:  * 'channel_post*': perform any appropriate operations for channels which
                    784:  * have events pending.
1.27      markus    785:  */
1.237     deraadt   786: typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
1.41      markus    787: chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
                    788: chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
                    789:
1.259     stevesk   790: /* ARGSUSED */
1.127     itojun    791: static void
1.237     deraadt   792: channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    793: {
                    794:        FD_SET(c->sock, readset);
                    795: }
                    796:
1.259     stevesk   797: /* ARGSUSED */
1.127     itojun    798: static void
1.237     deraadt   799: channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
1.75      markus    800: {
                    801:        debug3("channel %d: waiting for connection", c->self);
                    802:        FD_SET(c->sock, writeset);
                    803: }
                    804:
1.127     itojun    805: static void
1.237     deraadt   806: channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    807: {
                    808:        if (buffer_len(&c->input) < packet_get_maxsize())
                    809:                FD_SET(c->sock, readset);
                    810:        if (buffer_len(&c->output) > 0)
                    811:                FD_SET(c->sock, writeset);
                    812: }
1.1       deraadt   813:
1.127     itojun    814: static void
1.237     deraadt   815: channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    816: {
1.157     markus    817:        u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
1.41      markus    818:
1.44      markus    819:        if (c->istate == CHAN_INPUT_OPEN &&
1.157     markus    820:            limit > 0 &&
1.250     djm       821:            buffer_len(&c->input) < limit &&
                    822:            buffer_check_alloc(&c->input, CHAN_RBUF))
1.44      markus    823:                FD_SET(c->rfd, readset);
                    824:        if (c->ostate == CHAN_OUTPUT_OPEN ||
                    825:            c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
                    826:                if (buffer_len(&c->output) > 0) {
                    827:                        FD_SET(c->wfd, writeset);
                    828:                } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1.172     markus    829:                        if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
1.223     djm       830:                                debug2("channel %d: obuf_empty delayed efd %d/(%d)",
                    831:                                    c->self, c->efd, buffer_len(&c->extended));
1.172     markus    832:                        else
                    833:                                chan_obuf_empty(c);
1.44      markus    834:                }
                    835:        }
                    836:        /** XXX check close conditions, too */
1.277     markus    837:        if (compat20 && c->efd != -1 &&
                    838:            !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
1.44      markus    839:                if (c->extended_usage == CHAN_EXTENDED_WRITE &&
                    840:                    buffer_len(&c->extended) > 0)
                    841:                        FD_SET(c->efd, writeset);
1.306     djm       842:                else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
                    843:                    (c->extended_usage == CHAN_EXTENDED_READ ||
                    844:                    c->extended_usage == CHAN_EXTENDED_IGNORE) &&
1.44      markus    845:                    buffer_len(&c->extended) < c->remote_window)
                    846:                        FD_SET(c->efd, readset);
                    847:        }
1.204     djm       848:        /* XXX: What about efd? races? */
1.44      markus    849: }
                    850:
1.259     stevesk   851: /* ARGSUSED */
1.127     itojun    852: static void
1.237     deraadt   853: channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    854: {
                    855:        if (buffer_len(&c->input) == 0) {
                    856:                packet_start(SSH_MSG_CHANNEL_CLOSE);
                    857:                packet_put_int(c->remote_id);
                    858:                packet_send();
                    859:                c->type = SSH_CHANNEL_CLOSED;
1.194     markus    860:                debug2("channel %d: closing after input drain.", c->self);
1.41      markus    861:        }
                    862: }
                    863:
1.259     stevesk   864: /* ARGSUSED */
1.127     itojun    865: static void
1.237     deraadt   866: channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    867: {
                    868:        if (buffer_len(&c->output) == 0)
1.113     markus    869:                chan_mark_dead(c);
1.49      markus    870:        else
1.41      markus    871:                FD_SET(c->sock, writeset);
                    872: }
                    873:
                    874: /*
                    875:  * This is a special state for X11 authentication spoofing.  An opened X11
                    876:  * connection (when authentication spoofing is being done) remains in this
                    877:  * state until the first packet has been completely read.  The authentication
                    878:  * data in that packet is then substituted by the real data if it matches the
                    879:  * fake data, and the channel is put into normal mode.
1.51      markus    880:  * XXX All this happens at the client side.
1.121     markus    881:  * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
1.41      markus    882:  */
1.127     itojun    883: static int
1.121     markus    884: x11_open_helper(Buffer *b)
1.1       deraadt   885: {
1.77      markus    886:        u_char *ucp;
                    887:        u_int proto_len, data_len;
1.25      markus    888:
1.41      markus    889:        /* Check if the fixed size part of the packet is in buffer. */
1.121     markus    890:        if (buffer_len(b) < 12)
1.41      markus    891:                return 0;
                    892:
                    893:        /* Parse the lengths of variable-length fields. */
1.155     stevesk   894:        ucp = buffer_ptr(b);
1.41      markus    895:        if (ucp[0] == 0x42) {   /* Byte order MSB first. */
                    896:                proto_len = 256 * ucp[6] + ucp[7];
                    897:                data_len = 256 * ucp[8] + ucp[9];
                    898:        } else if (ucp[0] == 0x6c) {    /* Byte order LSB first. */
                    899:                proto_len = ucp[6] + 256 * ucp[7];
                    900:                data_len = ucp[8] + 256 * ucp[9];
                    901:        } else {
1.194     markus    902:                debug2("Initial X11 packet contains bad byte order byte: 0x%x",
1.148     deraadt   903:                    ucp[0]);
1.41      markus    904:                return -1;
                    905:        }
                    906:
                    907:        /* Check if the whole packet is in buffer. */
1.121     markus    908:        if (buffer_len(b) <
1.41      markus    909:            12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
                    910:                return 0;
                    911:
                    912:        /* Check if authentication protocol matches. */
                    913:        if (proto_len != strlen(x11_saved_proto) ||
                    914:            memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
1.194     markus    915:                debug2("X11 connection uses different authentication protocol.");
1.41      markus    916:                return -1;
                    917:        }
                    918:        /* Check if authentication data matches our fake data. */
                    919:        if (data_len != x11_fake_data_len ||
1.308     djm       920:            timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
1.41      markus    921:                x11_fake_data, x11_fake_data_len) != 0) {
1.194     markus    922:                debug2("X11 auth data does not match fake data.");
1.41      markus    923:                return -1;
                    924:        }
                    925:        /* Check fake data length */
                    926:        if (x11_fake_data_len != x11_saved_data_len) {
                    927:                error("X11 fake_data_len %d != saved_data_len %d",
                    928:                    x11_fake_data_len, x11_saved_data_len);
                    929:                return -1;
                    930:        }
                    931:        /*
                    932:         * Received authentication protocol and data match
                    933:         * our fake data. Substitute the fake data with real
                    934:         * data.
                    935:         */
                    936:        memcpy(ucp + 12 + ((proto_len + 3) & ~3),
                    937:            x11_saved_data, x11_saved_data_len);
                    938:        return 1;
                    939: }
                    940:
1.127     itojun    941: static void
1.237     deraadt   942: channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    943: {
1.121     markus    944:        int ret = x11_open_helper(&c->output);
1.180     deraadt   945:
1.41      markus    946:        if (ret == 1) {
                    947:                /* Start normal processing for the channel. */
                    948:                c->type = SSH_CHANNEL_OPEN;
1.47      markus    949:                channel_pre_open_13(c, readset, writeset);
1.41      markus    950:        } else if (ret == -1) {
                    951:                /*
                    952:                 * We have received an X11 connection that has bad
                    953:                 * authentication information.
                    954:                 */
1.188     itojun    955:                logit("X11 connection rejected because of wrong authentication.");
1.41      markus    956:                buffer_clear(&c->input);
                    957:                buffer_clear(&c->output);
1.132     markus    958:                channel_close_fd(&c->sock);
1.41      markus    959:                c->sock = -1;
                    960:                c->type = SSH_CHANNEL_CLOSED;
                    961:                packet_start(SSH_MSG_CHANNEL_CLOSE);
                    962:                packet_put_int(c->remote_id);
                    963:                packet_send();
                    964:        }
                    965: }
1.25      markus    966:
1.127     itojun    967: static void
1.237     deraadt   968: channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus    969: {
1.121     markus    970:        int ret = x11_open_helper(&c->output);
1.133     markus    971:
                    972:        /* c->force_drain = 1; */
                    973:
1.41      markus    974:        if (ret == 1) {
                    975:                c->type = SSH_CHANNEL_OPEN;
1.157     markus    976:                channel_pre_open(c, readset, writeset);
1.41      markus    977:        } else if (ret == -1) {
1.188     itojun    978:                logit("X11 connection rejected because of wrong authentication.");
1.194     markus    979:                debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
1.156     markus    980:                chan_read_failed(c);
                    981:                buffer_clear(&c->input);
                    982:                chan_ibuf_empty(c);
                    983:                buffer_clear(&c->output);
                    984:                /* for proto v1, the peer will send an IEOF */
                    985:                if (compat20)
                    986:                        chan_write_failed(c);
                    987:                else
                    988:                        c->type = SSH_CHANNEL_OPEN;
1.194     markus    989:                debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
1.41      markus    990:        }
                    991: }
1.25      markus    992:
1.302     djm       993: static void
                    994: channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
                    995: {
1.304     djm       996:        if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
1.302     djm       997:            buffer_check_alloc(&c->input, CHAN_RBUF))
                    998:                FD_SET(c->rfd, readset);
                    999:        if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
                   1000:                /* clear buffer immediately (discard any partial packet) */
                   1001:                buffer_clear(&c->input);
                   1002:                chan_ibuf_empty(c);
                   1003:                /* Start output drain. XXX just kill chan? */
                   1004:                chan_rcvd_oclose(c);
                   1005:        }
                   1006:        if (c->ostate == CHAN_OUTPUT_OPEN ||
                   1007:            c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
                   1008:                if (buffer_len(&c->output) > 0)
                   1009:                        FD_SET(c->wfd, writeset);
                   1010:                else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
                   1011:                        chan_obuf_empty(c);
                   1012:        }
                   1013: }
                   1014:
1.104     markus   1015: /* try to decode a socks4 header */
1.259     stevesk  1016: /* ARGSUSED */
1.127     itojun   1017: static int
1.237     deraadt  1018: channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
1.103     markus   1019: {
1.181     markus   1020:        char *p, *host;
1.292     djm      1021:        u_int len, have, i, found, need;
1.148     deraadt  1022:        char username[256];
1.103     markus   1023:        struct {
                   1024:                u_int8_t version;
                   1025:                u_int8_t command;
                   1026:                u_int16_t dest_port;
1.104     markus   1027:                struct in_addr dest_addr;
1.103     markus   1028:        } s4_req, s4_rsp;
                   1029:
1.104     markus   1030:        debug2("channel %d: decode socks4", c->self);
1.109     markus   1031:
                   1032:        have = buffer_len(&c->input);
                   1033:        len = sizeof(s4_req);
                   1034:        if (have < len)
                   1035:                return 0;
                   1036:        p = buffer_ptr(&c->input);
1.292     djm      1037:
                   1038:        need = 1;
                   1039:        /* SOCKS4A uses an invalid IP address 0.0.0.x */
                   1040:        if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
                   1041:                debug2("channel %d: socks4a request", c->self);
                   1042:                /* ... and needs an extra string (the hostname) */
                   1043:                need = 2;
                   1044:        }
                   1045:        /* Check for terminating NUL on the string(s) */
1.109     markus   1046:        for (found = 0, i = len; i < have; i++) {
                   1047:                if (p[i] == '\0') {
1.292     djm      1048:                        found++;
                   1049:                        if (found == need)
                   1050:                                break;
1.109     markus   1051:                }
                   1052:                if (i > 1024) {
                   1053:                        /* the peer is probably sending garbage */
                   1054:                        debug("channel %d: decode socks4: too long",
                   1055:                            c->self);
                   1056:                        return -1;
                   1057:                }
                   1058:        }
1.292     djm      1059:        if (found < need)
1.109     markus   1060:                return 0;
1.103     markus   1061:        buffer_get(&c->input, (char *)&s4_req.version, 1);
                   1062:        buffer_get(&c->input, (char *)&s4_req.command, 1);
                   1063:        buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
1.104     markus   1064:        buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
1.109     markus   1065:        have = buffer_len(&c->input);
1.103     markus   1066:        p = buffer_ptr(&c->input);
1.331   ! djm      1067:        if (memchr(p, '\0', have) == NULL)
        !          1068:                fatal("channel %d: decode socks4: user not nul terminated",
        !          1069:                    c->self);
1.103     markus   1070:        len = strlen(p);
1.106     markus   1071:        debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
1.292     djm      1072:        len++;                                  /* trailing '\0' */
1.103     markus   1073:        if (len > have)
1.104     markus   1074:                fatal("channel %d: decode socks4: len %d > have %d",
1.103     markus   1075:                    c->self, len, have);
                   1076:        strlcpy(username, p, sizeof(username));
                   1077:        buffer_consume(&c->input, len);
                   1078:
1.321     djm      1079:        free(c->path);
                   1080:        c->path = NULL;
1.292     djm      1081:        if (need == 1) {                        /* SOCKS4: one string */
                   1082:                host = inet_ntoa(s4_req.dest_addr);
1.293     djm      1083:                c->path = xstrdup(host);
1.292     djm      1084:        } else {                                /* SOCKS4A: two strings */
                   1085:                have = buffer_len(&c->input);
                   1086:                p = buffer_ptr(&c->input);
                   1087:                len = strlen(p);
                   1088:                debug2("channel %d: decode socks4a: host %s/%d",
                   1089:                    c->self, p, len);
                   1090:                len++;                          /* trailing '\0' */
                   1091:                if (len > have)
                   1092:                        fatal("channel %d: decode socks4a: len %d > have %d",
                   1093:                            c->self, len, have);
1.293     djm      1094:                if (len > NI_MAXHOST) {
1.292     djm      1095:                        error("channel %d: hostname \"%.100s\" too long",
                   1096:                            c->self, p);
                   1097:                        return -1;
                   1098:                }
1.293     djm      1099:                c->path = xstrdup(p);
1.292     djm      1100:                buffer_consume(&c->input, len);
                   1101:        }
1.103     markus   1102:        c->host_port = ntohs(s4_req.dest_port);
1.148     deraadt  1103:
1.194     markus   1104:        debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
1.292     djm      1105:            c->self, c->path, c->host_port, s4_req.command);
1.103     markus   1106:
1.104     markus   1107:        if (s4_req.command != 1) {
1.292     djm      1108:                debug("channel %d: cannot handle: %s cn %d",
                   1109:                    c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
1.104     markus   1110:                return -1;
1.103     markus   1111:        }
1.104     markus   1112:        s4_rsp.version = 0;                     /* vn: 0 for reply */
                   1113:        s4_rsp.command = 90;                    /* cd: req granted */
1.103     markus   1114:        s4_rsp.dest_port = 0;                   /* ignored */
1.104     markus   1115:        s4_rsp.dest_addr.s_addr = INADDR_ANY;   /* ignored */
1.246     deraadt  1116:        buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
1.104     markus   1117:        return 1;
                   1118: }
                   1119:
1.193     markus   1120: /* try to decode a socks5 header */
                   1121: #define SSH_SOCKS5_AUTHDONE    0x1000
                   1122: #define SSH_SOCKS5_NOAUTH      0x00
                   1123: #define SSH_SOCKS5_IPV4                0x01
                   1124: #define SSH_SOCKS5_DOMAIN      0x03
                   1125: #define SSH_SOCKS5_IPV6                0x04
                   1126: #define SSH_SOCKS5_CONNECT     0x01
                   1127: #define SSH_SOCKS5_SUCCESS     0x00
                   1128:
1.259     stevesk  1129: /* ARGSUSED */
1.193     markus   1130: static int
1.237     deraadt  1131: channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
1.193     markus   1132: {
                   1133:        struct {
                   1134:                u_int8_t version;
                   1135:                u_int8_t command;
                   1136:                u_int8_t reserved;
                   1137:                u_int8_t atyp;
                   1138:        } s5_req, s5_rsp;
                   1139:        u_int16_t dest_port;
1.324     djm      1140:        char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
                   1141:        u_char *p;
1.252     djm      1142:        u_int have, need, i, found, nmethods, addrlen, af;
1.193     markus   1143:
                   1144:        debug2("channel %d: decode socks5", c->self);
                   1145:        p = buffer_ptr(&c->input);
                   1146:        if (p[0] != 0x05)
                   1147:                return -1;
                   1148:        have = buffer_len(&c->input);
                   1149:        if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
                   1150:                /* format: ver | nmethods | methods */
1.198     djm      1151:                if (have < 2)
1.193     markus   1152:                        return 0;
                   1153:                nmethods = p[1];
                   1154:                if (have < nmethods + 2)
                   1155:                        return 0;
                   1156:                /* look for method: "NO AUTHENTICATION REQUIRED" */
1.268     stevesk  1157:                for (found = 0, i = 2; i < nmethods + 2; i++) {
1.264     stevesk  1158:                        if (p[i] == SSH_SOCKS5_NOAUTH) {
1.193     markus   1159:                                found = 1;
                   1160:                                break;
                   1161:                        }
                   1162:                }
                   1163:                if (!found) {
                   1164:                        debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
                   1165:                            c->self);
                   1166:                        return -1;
                   1167:                }
                   1168:                buffer_consume(&c->input, nmethods + 2);
                   1169:                buffer_put_char(&c->output, 0x05);              /* version */
                   1170:                buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
                   1171:                FD_SET(c->sock, writeset);
                   1172:                c->flags |= SSH_SOCKS5_AUTHDONE;
                   1173:                debug2("channel %d: socks5 auth done", c->self);
                   1174:                return 0;                               /* need more */
                   1175:        }
                   1176:        debug2("channel %d: socks5 post auth", c->self);
                   1177:        if (have < sizeof(s5_req)+1)
                   1178:                return 0;                       /* need more */
1.247     deraadt  1179:        memcpy(&s5_req, p, sizeof(s5_req));
1.193     markus   1180:        if (s5_req.version != 0x05 ||
                   1181:            s5_req.command != SSH_SOCKS5_CONNECT ||
                   1182:            s5_req.reserved != 0x00) {
1.194     markus   1183:                debug2("channel %d: only socks5 connect supported", c->self);
1.193     markus   1184:                return -1;
                   1185:        }
1.213     deraadt  1186:        switch (s5_req.atyp){
1.193     markus   1187:        case SSH_SOCKS5_IPV4:
                   1188:                addrlen = 4;
                   1189:                af = AF_INET;
                   1190:                break;
                   1191:        case SSH_SOCKS5_DOMAIN:
                   1192:                addrlen = p[sizeof(s5_req)];
                   1193:                af = -1;
                   1194:                break;
                   1195:        case SSH_SOCKS5_IPV6:
                   1196:                addrlen = 16;
                   1197:                af = AF_INET6;
                   1198:                break;
                   1199:        default:
1.194     markus   1200:                debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
1.193     markus   1201:                return -1;
                   1202:        }
1.252     djm      1203:        need = sizeof(s5_req) + addrlen + 2;
                   1204:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
                   1205:                need++;
                   1206:        if (have < need)
1.193     markus   1207:                return 0;
                   1208:        buffer_consume(&c->input, sizeof(s5_req));
                   1209:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
                   1210:                buffer_consume(&c->input, 1);    /* host string length */
1.324     djm      1211:        buffer_get(&c->input, &dest_addr, addrlen);
1.193     markus   1212:        buffer_get(&c->input, (char *)&dest_port, 2);
                   1213:        dest_addr[addrlen] = '\0';
1.321     djm      1214:        free(c->path);
                   1215:        c->path = NULL;
1.293     djm      1216:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1.294     djm      1217:                if (addrlen >= NI_MAXHOST) {
1.293     djm      1218:                        error("channel %d: dynamic request: socks5 hostname "
                   1219:                            "\"%.100s\" too long", c->self, dest_addr);
                   1220:                        return -1;
                   1221:                }
                   1222:                c->path = xstrdup(dest_addr);
                   1223:        } else {
                   1224:                if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
                   1225:                        return -1;
                   1226:                c->path = xstrdup(ntop);
                   1227:        }
1.193     markus   1228:        c->host_port = ntohs(dest_port);
1.198     djm      1229:
1.194     markus   1230:        debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
1.193     markus   1231:            c->self, c->path, c->host_port, s5_req.command);
                   1232:
                   1233:        s5_rsp.version = 0x05;
                   1234:        s5_rsp.command = SSH_SOCKS5_SUCCESS;
                   1235:        s5_rsp.reserved = 0;                    /* ignored */
                   1236:        s5_rsp.atyp = SSH_SOCKS5_IPV4;
                   1237:        dest_port = 0;                          /* ignored */
                   1238:
1.246     deraadt  1239:        buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1.325     djm      1240:        buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
1.246     deraadt  1241:        buffer_append(&c->output, &dest_port, sizeof(dest_port));
1.193     markus   1242:        return 1;
1.301     dtucker  1243: }
                   1244:
                   1245: Channel *
1.302     djm      1246: channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
                   1247:     int in, int out)
1.301     dtucker  1248: {
                   1249:        Channel *c;
                   1250:
                   1251:        debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
                   1252:            port_to_connect);
                   1253:
                   1254:        c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
                   1255:            -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
                   1256:            0, "stdio-forward", /*nonblock*/0);
                   1257:
                   1258:        c->path = xstrdup(host_to_connect);
                   1259:        c->host_port = port_to_connect;
                   1260:        c->listening_port = 0;
                   1261:        c->force_drain = 1;
                   1262:
                   1263:        channel_register_fds(c, in, out, -1, 0, 1, 0);
                   1264:        port_open_helper(c, "direct-tcpip");
                   1265:
                   1266:        return c;
1.193     markus   1267: }
                   1268:
1.104     markus   1269: /* dynamic port forwarding */
1.127     itojun   1270: static void
1.237     deraadt  1271: channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
1.104     markus   1272: {
                   1273:        u_char *p;
1.217     djm      1274:        u_int have;
                   1275:        int ret;
1.103     markus   1276:
1.104     markus   1277:        have = buffer_len(&c->input);
                   1278:        debug2("channel %d: pre_dynamic: have %d", c->self, have);
1.105     markus   1279:        /* buffer_dump(&c->input); */
1.104     markus   1280:        /* check if the fixed size part of the packet is in buffer. */
1.193     markus   1281:        if (have < 3) {
1.104     markus   1282:                /* need more */
                   1283:                FD_SET(c->sock, readset);
                   1284:                return;
                   1285:        }
                   1286:        /* try to guess the protocol */
                   1287:        p = buffer_ptr(&c->input);
                   1288:        switch (p[0]) {
                   1289:        case 0x04:
                   1290:                ret = channel_decode_socks4(c, readset, writeset);
1.193     markus   1291:                break;
                   1292:        case 0x05:
                   1293:                ret = channel_decode_socks5(c, readset, writeset);
1.104     markus   1294:                break;
                   1295:        default:
                   1296:                ret = -1;
                   1297:                break;
                   1298:        }
                   1299:        if (ret < 0) {
1.113     markus   1300:                chan_mark_dead(c);
1.104     markus   1301:        } else if (ret == 0) {
                   1302:                debug2("channel %d: pre_dynamic: need more", c->self);
                   1303:                /* need more */
                   1304:                FD_SET(c->sock, readset);
                   1305:        } else {
                   1306:                /* switch to the next state */
                   1307:                c->type = SSH_CHANNEL_OPENING;
                   1308:                port_open_helper(c, "direct-tcpip");
                   1309:        }
1.103     markus   1310: }
                   1311:
1.41      markus   1312: /* This is our fake X11 server socket. */
1.259     stevesk  1313: /* ARGSUSED */
1.127     itojun   1314: static void
1.237     deraadt  1315: channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1316: {
1.113     markus   1317:        Channel *nc;
1.285     djm      1318:        struct sockaddr_storage addr;
1.320     markus   1319:        int newsock, oerrno;
1.41      markus   1320:        socklen_t addrlen;
1.85      markus   1321:        char buf[16384], *remote_ipaddr;
1.51      markus   1322:        int remote_port;
1.25      markus   1323:
1.41      markus   1324:        if (FD_ISSET(c->sock, readset)) {
                   1325:                debug("X11 connection requested.");
                   1326:                addrlen = sizeof(addr);
1.285     djm      1327:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.149     markus   1328:                if (c->single_connection) {
1.320     markus   1329:                        oerrno = errno;
1.194     markus   1330:                        debug2("single_connection: closing X11 listener.");
1.149     markus   1331:                        channel_close_fd(&c->sock);
                   1332:                        chan_mark_dead(c);
1.320     markus   1333:                        errno = oerrno;
1.149     markus   1334:                }
1.41      markus   1335:                if (newsock < 0) {
1.320     markus   1336:                        if (errno != EINTR && errno != EWOULDBLOCK &&
                   1337:                            errno != ECONNABORTED)
                   1338:                                error("accept: %.100s", strerror(errno));
1.317     djm      1339:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1340:                                c->notbefore = monotime() + 1;
1.41      markus   1341:                        return;
                   1342:                }
1.162     stevesk  1343:                set_nodelay(newsock);
1.85      markus   1344:                remote_ipaddr = get_peer_ipaddr(newsock);
1.51      markus   1345:                remote_port = get_peer_port(newsock);
1.41      markus   1346:                snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1.85      markus   1347:                    remote_ipaddr, remote_port);
1.51      markus   1348:
1.113     markus   1349:                nc = channel_new("accepted x11 socket",
1.51      markus   1350:                    SSH_CHANNEL_OPENING, newsock, newsock, -1,
1.190     markus   1351:                    c->local_window_max, c->local_maxpacket, 0, buf, 1);
1.51      markus   1352:                if (compat20) {
                   1353:                        packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1354:                        packet_put_cstring("x11");
1.113     markus   1355:                        packet_put_int(nc->self);
1.149     markus   1356:                        packet_put_int(nc->local_window_max);
                   1357:                        packet_put_int(nc->local_maxpacket);
1.85      markus   1358:                        /* originator ipaddr and port */
                   1359:                        packet_put_cstring(remote_ipaddr);
1.57      markus   1360:                        if (datafellows & SSH_BUG_X11FWD) {
1.194     markus   1361:                                debug2("ssh2 x11 bug compat mode");
1.57      markus   1362:                        } else {
                   1363:                                packet_put_int(remote_port);
                   1364:                        }
1.51      markus   1365:                        packet_send();
                   1366:                } else {
                   1367:                        packet_start(SSH_SMSG_X11_OPEN);
1.113     markus   1368:                        packet_put_int(nc->self);
1.121     markus   1369:                        if (packet_get_protocol_flags() &
                   1370:                            SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
1.125     markus   1371:                                packet_put_cstring(buf);
1.51      markus   1372:                        packet_send();
                   1373:                }
1.321     djm      1374:                free(remote_ipaddr);
1.41      markus   1375:        }
                   1376: }
1.25      markus   1377:
1.127     itojun   1378: static void
1.103     markus   1379: port_open_helper(Channel *c, char *rtype)
                   1380: {
                   1381:        int direct;
                   1382:        char buf[1024];
1.328     djm      1383:        char *local_ipaddr = get_local_ipaddr(c->sock);
1.330     djm      1384:        int local_port = c->sock == -1 ? 65536 : get_sock_port(c->sock, 1);
1.103     markus   1385:        char *remote_ipaddr = get_peer_ipaddr(c->sock);
1.216     markus   1386:        int remote_port = get_peer_port(c->sock);
1.303     djm      1387:
                   1388:        if (remote_port == -1) {
                   1389:                /* Fake addr/port to appease peers that validate it (Tectia) */
1.321     djm      1390:                free(remote_ipaddr);
1.303     djm      1391:                remote_ipaddr = xstrdup("127.0.0.1");
                   1392:                remote_port = 65535;
                   1393:        }
1.103     markus   1394:
                   1395:        direct = (strcmp(rtype, "direct-tcpip") == 0);
                   1396:
                   1397:        snprintf(buf, sizeof buf,
                   1398:            "%s: listening port %d for %.100s port %d, "
1.328     djm      1399:            "connect from %.200s port %d to %.100s port %d",
1.103     markus   1400:            rtype, c->listening_port, c->path, c->host_port,
1.328     djm      1401:            remote_ipaddr, remote_port, local_ipaddr, local_port);
1.103     markus   1402:
1.321     djm      1403:        free(c->remote_name);
1.103     markus   1404:        c->remote_name = xstrdup(buf);
                   1405:
                   1406:        if (compat20) {
                   1407:                packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1408:                packet_put_cstring(rtype);
                   1409:                packet_put_int(c->self);
                   1410:                packet_put_int(c->local_window_max);
                   1411:                packet_put_int(c->local_maxpacket);
                   1412:                if (direct) {
                   1413:                        /* target host, port */
                   1414:                        packet_put_cstring(c->path);
                   1415:                        packet_put_int(c->host_port);
                   1416:                } else {
                   1417:                        /* listen address, port */
                   1418:                        packet_put_cstring(c->path);
1.328     djm      1419:                        packet_put_int(local_port);
1.103     markus   1420:                }
                   1421:                /* originator host and port */
                   1422:                packet_put_cstring(remote_ipaddr);
1.216     markus   1423:                packet_put_int((u_int)remote_port);
1.103     markus   1424:                packet_send();
                   1425:        } else {
                   1426:                packet_start(SSH_MSG_PORT_OPEN);
                   1427:                packet_put_int(c->self);
                   1428:                packet_put_cstring(c->path);
                   1429:                packet_put_int(c->host_port);
1.121     markus   1430:                if (packet_get_protocol_flags() &
                   1431:                    SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
1.103     markus   1432:                        packet_put_cstring(c->remote_name);
                   1433:                packet_send();
                   1434:        }
1.321     djm      1435:        free(remote_ipaddr);
1.328     djm      1436:        free(local_ipaddr);
1.103     markus   1437: }
                   1438:
1.226     djm      1439: static void
                   1440: channel_set_reuseaddr(int fd)
                   1441: {
                   1442:        int on = 1;
                   1443:
                   1444:        /*
                   1445:         * Set socket options.
                   1446:         * Allow local port reuse in TIME_WAIT.
                   1447:         */
                   1448:        if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
                   1449:                error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
                   1450: }
                   1451:
1.41      markus   1452: /*
                   1453:  * This socket is listening for connections to a forwarded TCP/IP port.
                   1454:  */
1.259     stevesk  1455: /* ARGSUSED */
1.127     itojun   1456: static void
1.237     deraadt  1457: channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1458: {
1.103     markus   1459:        Channel *nc;
1.285     djm      1460:        struct sockaddr_storage addr;
1.113     markus   1461:        int newsock, nextstate;
1.41      markus   1462:        socklen_t addrlen;
1.103     markus   1463:        char *rtype;
1.73      markus   1464:
1.41      markus   1465:        if (FD_ISSET(c->sock, readset)) {
                   1466:                debug("Connection to port %d forwarding "
                   1467:                    "to %.100s port %d requested.",
                   1468:                    c->listening_port, c->path, c->host_port);
1.103     markus   1469:
1.137     markus   1470:                if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
                   1471:                        nextstate = SSH_CHANNEL_OPENING;
                   1472:                        rtype = "forwarded-tcpip";
                   1473:                } else {
                   1474:                        if (c->host_port == 0) {
                   1475:                                nextstate = SSH_CHANNEL_DYNAMIC;
1.138     markus   1476:                                rtype = "dynamic-tcpip";
1.137     markus   1477:                        } else {
                   1478:                                nextstate = SSH_CHANNEL_OPENING;
                   1479:                                rtype = "direct-tcpip";
                   1480:                        }
                   1481:                }
1.103     markus   1482:
1.41      markus   1483:                addrlen = sizeof(addr);
1.285     djm      1484:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.41      markus   1485:                if (newsock < 0) {
1.320     markus   1486:                        if (errno != EINTR && errno != EWOULDBLOCK &&
                   1487:                            errno != ECONNABORTED)
                   1488:                                error("accept: %.100s", strerror(errno));
1.317     djm      1489:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1490:                                c->notbefore = monotime() + 1;
1.41      markus   1491:                        return;
                   1492:                }
1.169     stevesk  1493:                set_nodelay(newsock);
1.190     markus   1494:                nc = channel_new(rtype, nextstate, newsock, newsock, -1,
                   1495:                    c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1.103     markus   1496:                nc->listening_port = c->listening_port;
                   1497:                nc->host_port = c->host_port;
1.293     djm      1498:                if (c->path != NULL)
                   1499:                        nc->path = xstrdup(c->path);
1.103     markus   1500:
1.299     markus   1501:                if (nextstate != SSH_CHANNEL_DYNAMIC)
1.103     markus   1502:                        port_open_helper(nc, rtype);
1.41      markus   1503:        }
                   1504: }
1.25      markus   1505:
1.41      markus   1506: /*
                   1507:  * This is the authentication agent socket listening for connections from
                   1508:  * clients.
                   1509:  */
1.259     stevesk  1510: /* ARGSUSED */
1.127     itojun   1511: static void
1.237     deraadt  1512: channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1513: {
1.113     markus   1514:        Channel *nc;
                   1515:        int newsock;
1.285     djm      1516:        struct sockaddr_storage addr;
1.41      markus   1517:        socklen_t addrlen;
1.25      markus   1518:
1.41      markus   1519:        if (FD_ISSET(c->sock, readset)) {
                   1520:                addrlen = sizeof(addr);
1.285     djm      1521:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.41      markus   1522:                if (newsock < 0) {
1.317     djm      1523:                        error("accept from auth socket: %.100s",
                   1524:                            strerror(errno));
                   1525:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1526:                                c->notbefore = monotime() + 1;
1.41      markus   1527:                        return;
                   1528:                }
1.113     markus   1529:                nc = channel_new("accepted auth socket",
1.73      markus   1530:                    SSH_CHANNEL_OPENING, newsock, newsock, -1,
                   1531:                    c->local_window_max, c->local_maxpacket,
1.190     markus   1532:                    0, "accepted auth socket", 1);
1.73      markus   1533:                if (compat20) {
                   1534:                        packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1535:                        packet_put_cstring("auth-agent@openssh.com");
1.113     markus   1536:                        packet_put_int(nc->self);
1.73      markus   1537:                        packet_put_int(c->local_window_max);
                   1538:                        packet_put_int(c->local_maxpacket);
                   1539:                } else {
                   1540:                        packet_start(SSH_SMSG_AGENT_OPEN);
1.113     markus   1541:                        packet_put_int(nc->self);
1.73      markus   1542:                }
1.41      markus   1543:                packet_send();
                   1544:        }
                   1545: }
1.25      markus   1546:
1.259     stevesk  1547: /* ARGSUSED */
1.127     itojun   1548: static void
1.237     deraadt  1549: channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
1.75      markus   1550: {
1.276     djm      1551:        int err = 0, sock;
1.129     stevesk  1552:        socklen_t sz = sizeof(err);
1.114     markus   1553:
1.75      markus   1554:        if (FD_ISSET(c->sock, writeset)) {
1.170     stevesk  1555:                if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1.114     markus   1556:                        err = errno;
                   1557:                        error("getsockopt SO_ERROR failed");
                   1558:                }
                   1559:                if (err == 0) {
1.276     djm      1560:                        debug("channel %d: connected to %s port %d",
                   1561:                            c->self, c->connect_ctx.host, c->connect_ctx.port);
                   1562:                        channel_connect_ctx_free(&c->connect_ctx);
1.114     markus   1563:                        c->type = SSH_CHANNEL_OPEN;
                   1564:                        if (compat20) {
                   1565:                                packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
                   1566:                                packet_put_int(c->remote_id);
                   1567:                                packet_put_int(c->self);
                   1568:                                packet_put_int(c->local_window);
                   1569:                                packet_put_int(c->local_maxpacket);
                   1570:                        } else {
                   1571:                                packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
                   1572:                                packet_put_int(c->remote_id);
                   1573:                                packet_put_int(c->self);
                   1574:                        }
1.75      markus   1575:                } else {
1.276     djm      1576:                        debug("channel %d: connection failed: %s",
1.114     markus   1577:                            c->self, strerror(err));
1.276     djm      1578:                        /* Try next address, if any */
                   1579:                        if ((sock = connect_next(&c->connect_ctx)) > 0) {
                   1580:                                close(c->sock);
                   1581:                                c->sock = c->rfd = c->wfd = sock;
                   1582:                                channel_max_fd = channel_find_maxfd();
                   1583:                                return;
                   1584:                        }
                   1585:                        /* Exhausted all addresses */
                   1586:                        error("connect_to %.100s port %d: failed.",
                   1587:                            c->connect_ctx.host, c->connect_ctx.port);
                   1588:                        channel_connect_ctx_free(&c->connect_ctx);
1.114     markus   1589:                        if (compat20) {
                   1590:                                packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
                   1591:                                packet_put_int(c->remote_id);
                   1592:                                packet_put_int(SSH2_OPEN_CONNECT_FAILED);
                   1593:                                if (!(datafellows & SSH_BUG_OPENFAILURE)) {
                   1594:                                        packet_put_cstring(strerror(err));
                   1595:                                        packet_put_cstring("");
                   1596:                                }
1.75      markus   1597:                        } else {
1.114     markus   1598:                                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   1599:                                packet_put_int(c->remote_id);
1.75      markus   1600:                        }
1.114     markus   1601:                        chan_mark_dead(c);
1.75      markus   1602:                }
1.114     markus   1603:                packet_send();
1.75      markus   1604:        }
                   1605: }
                   1606:
1.259     stevesk  1607: /* ARGSUSED */
1.127     itojun   1608: static int
1.237     deraadt  1609: channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1610: {
1.214     markus   1611:        char buf[CHAN_RBUF];
1.41      markus   1612:        int len;
1.25      markus   1613:
1.118     markus   1614:        if (c->rfd != -1 &&
1.41      markus   1615:            FD_ISSET(c->rfd, readset)) {
                   1616:                len = read(c->rfd, buf, sizeof(buf));
1.53      markus   1617:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1618:                        return 1;
1.41      markus   1619:                if (len <= 0) {
1.194     markus   1620:                        debug2("channel %d: read<=0 rfd %d len %d",
1.41      markus   1621:                            c->self, c->rfd, len);
1.104     markus   1622:                        if (c->type != SSH_CHANNEL_OPEN) {
1.194     markus   1623:                                debug2("channel %d: not open", c->self);
1.113     markus   1624:                                chan_mark_dead(c);
1.103     markus   1625:                                return -1;
1.104     markus   1626:                        } else if (compat13) {
1.158     markus   1627:                                buffer_clear(&c->output);
1.41      markus   1628:                                c->type = SSH_CHANNEL_INPUT_DRAINING;
1.194     markus   1629:                                debug2("channel %d: input draining.", c->self);
1.25      markus   1630:                        } else {
1.41      markus   1631:                                chan_read_failed(c);
1.25      markus   1632:                        }
1.41      markus   1633:                        return -1;
                   1634:                }
1.143     deraadt  1635:                if (c->input_filter != NULL) {
1.66      markus   1636:                        if (c->input_filter(c, buf, len) == -1) {
1.194     markus   1637:                                debug2("channel %d: filter stops", c->self);
1.65      markus   1638:                                chan_read_failed(c);
                   1639:                        }
1.228     reyk     1640:                } else if (c->datagram) {
                   1641:                        buffer_put_string(&c->input, buf, len);
1.65      markus   1642:                } else {
                   1643:                        buffer_append(&c->input, buf, len);
                   1644:                }
1.41      markus   1645:        }
                   1646:        return 1;
                   1647: }
1.241     deraadt  1648:
1.259     stevesk  1649: /* ARGSUSED */
1.127     itojun   1650: static int
1.237     deraadt  1651: channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1652: {
1.95      markus   1653:        struct termios tio;
1.231     reyk     1654:        u_char *data = NULL, *buf;
1.309     djm      1655:        u_int dlen, olen = 0;
1.41      markus   1656:        int len;
1.25      markus   1657:
1.41      markus   1658:        /* Send buffered output data to the socket. */
1.118     markus   1659:        if (c->wfd != -1 &&
1.41      markus   1660:            FD_ISSET(c->wfd, writeset) &&
                   1661:            buffer_len(&c->output) > 0) {
1.309     djm      1662:                olen = buffer_len(&c->output);
1.231     reyk     1663:                if (c->output_filter != NULL) {
                   1664:                        if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
                   1665:                                debug2("channel %d: filter stops", c->self);
1.232     reyk     1666:                                if (c->type != SSH_CHANNEL_OPEN)
                   1667:                                        chan_mark_dead(c);
                   1668:                                else
                   1669:                                        chan_write_failed(c);
                   1670:                                return -1;
1.231     reyk     1671:                        }
                   1672:                } else if (c->datagram) {
                   1673:                        buf = data = buffer_get_string(&c->output, &dlen);
                   1674:                } else {
                   1675:                        buf = data = buffer_ptr(&c->output);
                   1676:                        dlen = buffer_len(&c->output);
                   1677:                }
                   1678:
1.228     reyk     1679:                if (c->datagram) {
                   1680:                        /* ignore truncated writes, datagrams might get lost */
1.231     reyk     1681:                        len = write(c->wfd, buf, dlen);
1.321     djm      1682:                        free(data);
1.228     reyk     1683:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1684:                                return 1;
                   1685:                        if (len <= 0) {
                   1686:                                if (c->type != SSH_CHANNEL_OPEN)
                   1687:                                        chan_mark_dead(c);
                   1688:                                else
                   1689:                                        chan_write_failed(c);
                   1690:                                return -1;
                   1691:                        }
1.309     djm      1692:                        goto out;
1.228     reyk     1693:                }
1.231     reyk     1694:
                   1695:                len = write(c->wfd, buf, dlen);
1.53      markus   1696:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1697:                        return 1;
1.41      markus   1698:                if (len <= 0) {
1.104     markus   1699:                        if (c->type != SSH_CHANNEL_OPEN) {
1.194     markus   1700:                                debug2("channel %d: not open", c->self);
1.113     markus   1701:                                chan_mark_dead(c);
1.104     markus   1702:                                return -1;
                   1703:                        } else if (compat13) {
1.158     markus   1704:                                buffer_clear(&c->output);
1.194     markus   1705:                                debug2("channel %d: input draining.", c->self);
1.41      markus   1706:                                c->type = SSH_CHANNEL_INPUT_DRAINING;
                   1707:                        } else {
                   1708:                                chan_write_failed(c);
                   1709:                        }
                   1710:                        return -1;
1.91      markus   1711:                }
1.231     reyk     1712:                if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
1.91      markus   1713:                        if (tcgetattr(c->wfd, &tio) == 0 &&
                   1714:                            !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
                   1715:                                /*
                   1716:                                 * Simulate echo to reduce the impact of
1.96      markus   1717:                                 * traffic analysis. We need to match the
1.95      markus   1718:                                 * size of a SSH2_MSG_CHANNEL_DATA message
1.231     reyk     1719:                                 * (4 byte channel id + buf)
1.91      markus   1720:                                 */
1.95      markus   1721:                                packet_send_ignore(4 + len);
1.91      markus   1722:                                packet_send();
                   1723:                        }
1.25      markus   1724:                }
1.41      markus   1725:                buffer_consume(&c->output, len);
1.44      markus   1726:        }
1.309     djm      1727:  out:
                   1728:        if (compat20 && olen > 0)
                   1729:                c->local_consumed += olen - buffer_len(&c->output);
1.44      markus   1730:        return 1;
                   1731: }
1.241     deraadt  1732:
1.127     itojun   1733: static int
1.237     deraadt  1734: channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
1.44      markus   1735: {
1.214     markus   1736:        char buf[CHAN_RBUF];
1.44      markus   1737:        int len;
                   1738:
1.45      markus   1739: /** XXX handle drain efd, too */
1.44      markus   1740:        if (c->efd != -1) {
                   1741:                if (c->extended_usage == CHAN_EXTENDED_WRITE &&
                   1742:                    FD_ISSET(c->efd, writeset) &&
                   1743:                    buffer_len(&c->extended) > 0) {
                   1744:                        len = write(c->efd, buffer_ptr(&c->extended),
                   1745:                            buffer_len(&c->extended));
1.70      markus   1746:                        debug2("channel %d: written %d to efd %d",
1.44      markus   1747:                            c->self, len, c->efd);
1.93      markus   1748:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1749:                                return 1;
                   1750:                        if (len <= 0) {
                   1751:                                debug2("channel %d: closing write-efd %d",
                   1752:                                    c->self, c->efd);
1.132     markus   1753:                                channel_close_fd(&c->efd);
1.93      markus   1754:                        } else {
1.44      markus   1755:                                buffer_consume(&c->extended, len);
                   1756:                                c->local_consumed += len;
                   1757:                        }
1.306     djm      1758:                } else if (c->efd != -1 &&
                   1759:                    (c->extended_usage == CHAN_EXTENDED_READ ||
                   1760:                    c->extended_usage == CHAN_EXTENDED_IGNORE) &&
1.44      markus   1761:                    FD_ISSET(c->efd, readset)) {
                   1762:                        len = read(c->efd, buf, sizeof(buf));
1.70      markus   1763:                        debug2("channel %d: read %d from efd %d",
1.148     deraadt  1764:                            c->self, len, c->efd);
1.93      markus   1765:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1766:                                return 1;
                   1767:                        if (len <= 0) {
                   1768:                                debug2("channel %d: closing read-efd %d",
1.45      markus   1769:                                    c->self, c->efd);
1.132     markus   1770:                                channel_close_fd(&c->efd);
1.93      markus   1771:                        } else {
1.306     djm      1772:                                if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
                   1773:                                        debug3("channel %d: discard efd",
                   1774:                                            c->self);
                   1775:                                } else
                   1776:                                        buffer_append(&c->extended, buf, len);
1.93      markus   1777:                        }
1.44      markus   1778:                }
                   1779:        }
                   1780:        return 1;
                   1781: }
1.241     deraadt  1782:
1.259     stevesk  1783: /* ARGSUSED */
1.127     itojun   1784: static int
1.93      markus   1785: channel_check_window(Channel *c)
1.44      markus   1786: {
1.104     markus   1787:        if (c->type == SSH_CHANNEL_OPEN &&
                   1788:            !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
1.270     dtucker  1789:            ((c->local_window_max - c->local_window >
1.269     markus   1790:            c->local_maxpacket*3) ||
                   1791:            c->local_window < c->local_window_max/2) &&
1.44      markus   1792:            c->local_consumed > 0) {
                   1793:                packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
                   1794:                packet_put_int(c->remote_id);
                   1795:                packet_put_int(c->local_consumed);
                   1796:                packet_send();
1.70      markus   1797:                debug2("channel %d: window %d sent adjust %d",
1.44      markus   1798:                    c->self, c->local_window,
                   1799:                    c->local_consumed);
                   1800:                c->local_window += c->local_consumed;
                   1801:                c->local_consumed = 0;
1.1       deraadt  1802:        }
1.41      markus   1803:        return 1;
1.1       deraadt  1804: }
                   1805:
1.127     itojun   1806: static void
1.237     deraadt  1807: channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1808: {
                   1809:        channel_handle_rfd(c, readset, writeset);
                   1810:        channel_handle_wfd(c, readset, writeset);
1.157     markus   1811:        if (!compat20)
1.137     markus   1812:                return;
1.44      markus   1813:        channel_handle_efd(c, readset, writeset);
1.93      markus   1814:        channel_check_window(c);
1.44      markus   1815: }
                   1816:
1.302     djm      1817: static u_int
                   1818: read_mux(Channel *c, u_int need)
                   1819: {
                   1820:        char buf[CHAN_RBUF];
                   1821:        int len;
                   1822:        u_int rlen;
                   1823:
                   1824:        if (buffer_len(&c->input) < need) {
                   1825:                rlen = need - buffer_len(&c->input);
                   1826:                len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
                   1827:                if (len <= 0) {
                   1828:                        if (errno != EINTR && errno != EAGAIN) {
                   1829:                                debug2("channel %d: ctl read<=0 rfd %d len %d",
                   1830:                                    c->self, c->rfd, len);
                   1831:                                chan_read_failed(c);
                   1832:                                return 0;
                   1833:                        }
                   1834:                } else
                   1835:                        buffer_append(&c->input, buf, len);
                   1836:        }
                   1837:        return buffer_len(&c->input);
                   1838: }
                   1839:
                   1840: static void
                   1841: channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
                   1842: {
                   1843:        u_int need;
                   1844:        ssize_t len;
                   1845:
                   1846:        if (!compat20)
                   1847:                fatal("%s: entered with !compat20", __func__);
                   1848:
1.304     djm      1849:        if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
1.302     djm      1850:            (c->istate == CHAN_INPUT_OPEN ||
                   1851:            c->istate == CHAN_INPUT_WAIT_DRAIN)) {
                   1852:                /*
                   1853:                 * Don't not read past the precise end of packets to
                   1854:                 * avoid disrupting fd passing.
                   1855:                 */
                   1856:                if (read_mux(c, 4) < 4) /* read header */
                   1857:                        return;
                   1858:                need = get_u32(buffer_ptr(&c->input));
                   1859: #define CHANNEL_MUX_MAX_PACKET (256 * 1024)
                   1860:                if (need > CHANNEL_MUX_MAX_PACKET) {
                   1861:                        debug2("channel %d: packet too big %u > %u",
                   1862:                            c->self, CHANNEL_MUX_MAX_PACKET, need);
                   1863:                        chan_rcvd_oclose(c);
                   1864:                        return;
                   1865:                }
                   1866:                if (read_mux(c, need + 4) < need + 4) /* read body */
                   1867:                        return;
                   1868:                if (c->mux_rcb(c) != 0) {
                   1869:                        debug("channel %d: mux_rcb failed", c->self);
                   1870:                        chan_mark_dead(c);
                   1871:                        return;
                   1872:                }
                   1873:        }
                   1874:
                   1875:        if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
                   1876:            buffer_len(&c->output) > 0) {
                   1877:                len = write(c->wfd, buffer_ptr(&c->output),
                   1878:                    buffer_len(&c->output));
                   1879:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1880:                        return;
                   1881:                if (len <= 0) {
                   1882:                        chan_mark_dead(c);
                   1883:                        return;
                   1884:                }
                   1885:                buffer_consume(&c->output, len);
                   1886:        }
                   1887: }
                   1888:
                   1889: static void
                   1890: channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
                   1891: {
                   1892:        Channel *nc;
                   1893:        struct sockaddr_storage addr;
                   1894:        socklen_t addrlen;
                   1895:        int newsock;
                   1896:        uid_t euid;
                   1897:        gid_t egid;
                   1898:
                   1899:        if (!FD_ISSET(c->sock, readset))
                   1900:                return;
                   1901:
                   1902:        debug("multiplexing control connection");
                   1903:
                   1904:        /*
                   1905:         * Accept connection on control socket
                   1906:         */
                   1907:        memset(&addr, 0, sizeof(addr));
                   1908:        addrlen = sizeof(addr);
                   1909:        if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
                   1910:            &addrlen)) == -1) {
                   1911:                error("%s accept: %s", __func__, strerror(errno));
1.317     djm      1912:                if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1913:                        c->notbefore = monotime() + 1;
1.302     djm      1914:                return;
                   1915:        }
                   1916:
                   1917:        if (getpeereid(newsock, &euid, &egid) < 0) {
                   1918:                error("%s getpeereid failed: %s", __func__,
                   1919:                    strerror(errno));
                   1920:                close(newsock);
                   1921:                return;
                   1922:        }
                   1923:        if ((euid != 0) && (getuid() != euid)) {
                   1924:                error("multiplex uid mismatch: peer euid %u != uid %u",
                   1925:                    (u_int)euid, (u_int)getuid());
                   1926:                close(newsock);
                   1927:                return;
                   1928:        }
                   1929:        nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
                   1930:            newsock, newsock, -1, c->local_window_max,
                   1931:            c->local_maxpacket, 0, "mux-control", 1);
                   1932:        nc->mux_rcb = c->mux_rcb;
                   1933:        debug3("%s: new mux channel %d fd %d", __func__,
                   1934:            nc->self, nc->sock);
                   1935:        /* establish state */
                   1936:        nc->mux_rcb(nc);
                   1937:        /* mux state transitions must not elicit protocol messages */
                   1938:        nc->flags |= CHAN_LOCAL;
                   1939: }
                   1940:
1.259     stevesk  1941: /* ARGSUSED */
1.127     itojun   1942: static void
1.237     deraadt  1943: channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
1.1       deraadt  1944: {
1.41      markus   1945:        int len;
1.180     deraadt  1946:
1.41      markus   1947:        /* Send buffered output data to the socket. */
                   1948:        if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
                   1949:                len = write(c->sock, buffer_ptr(&c->output),
                   1950:                            buffer_len(&c->output));
                   1951:                if (len <= 0)
1.158     markus   1952:                        buffer_clear(&c->output);
1.41      markus   1953:                else
                   1954:                        buffer_consume(&c->output, len);
                   1955:        }
                   1956: }
1.25      markus   1957:
1.127     itojun   1958: static void
1.44      markus   1959: channel_handler_init_20(void)
                   1960: {
1.157     markus   1961:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open;
1.51      markus   1962:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open;
1.44      markus   1963:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
1.73      markus   1964:        channel_pre[SSH_CHANNEL_RPORT_LISTENER] =       &channel_pre_listener;
1.51      markus   1965:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
1.73      markus   1966:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
1.75      markus   1967:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   1968:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.302     djm      1969:        channel_pre[SSH_CHANNEL_MUX_LISTENER] =         &channel_pre_listener;
                   1970:        channel_pre[SSH_CHANNEL_MUX_CLIENT] =           &channel_pre_mux_client;
1.44      markus   1971:
1.157     markus   1972:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.44      markus   1973:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
1.73      markus   1974:        channel_post[SSH_CHANNEL_RPORT_LISTENER] =      &channel_post_port_listener;
1.51      markus   1975:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
1.73      markus   1976:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
1.75      markus   1977:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   1978:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.302     djm      1979:        channel_post[SSH_CHANNEL_MUX_LISTENER] =        &channel_post_mux_listener;
                   1980:        channel_post[SSH_CHANNEL_MUX_CLIENT] =          &channel_post_mux_client;
1.44      markus   1981: }
                   1982:
1.127     itojun   1983: static void
1.41      markus   1984: channel_handler_init_13(void)
                   1985: {
                   1986:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open_13;
                   1987:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open_13;
                   1988:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
                   1989:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
                   1990:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
                   1991:        channel_pre[SSH_CHANNEL_INPUT_DRAINING] =       &channel_pre_input_draining;
                   1992:        channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] =      &channel_pre_output_draining;
1.75      markus   1993:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   1994:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.25      markus   1995:
1.157     markus   1996:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.41      markus   1997:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
                   1998:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
                   1999:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
                   2000:        channel_post[SSH_CHANNEL_OUTPUT_DRAINING] =     &channel_post_output_drain_13;
1.75      markus   2001:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   2002:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.41      markus   2003: }
1.25      markus   2004:
1.127     itojun   2005: static void
1.41      markus   2006: channel_handler_init_15(void)
                   2007: {
1.157     markus   2008:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open;
1.51      markus   2009:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open;
1.41      markus   2010:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
                   2011:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
                   2012:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
1.75      markus   2013:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   2014:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.25      markus   2015:
1.41      markus   2016:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
                   2017:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
                   2018:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
1.157     markus   2019:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.75      markus   2020:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   2021:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.41      markus   2022: }
1.27      markus   2023:
1.127     itojun   2024: static void
1.41      markus   2025: channel_handler_init(void)
                   2026: {
                   2027:        int i;
1.180     deraadt  2028:
1.148     deraadt  2029:        for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
1.41      markus   2030:                channel_pre[i] = NULL;
                   2031:                channel_post[i] = NULL;
                   2032:        }
1.44      markus   2033:        if (compat20)
                   2034:                channel_handler_init_20();
                   2035:        else if (compat13)
1.41      markus   2036:                channel_handler_init_13();
                   2037:        else
                   2038:                channel_handler_init_15();
                   2039: }
1.25      markus   2040:
1.140     markus   2041: /* gc dead channels */
                   2042: static void
                   2043: channel_garbage_collect(Channel *c)
                   2044: {
                   2045:        if (c == NULL)
                   2046:                return;
                   2047:        if (c->detach_user != NULL) {
1.225     djm      2048:                if (!chan_is_dead(c, c->detach_close))
1.140     markus   2049:                        return;
1.194     markus   2050:                debug2("channel %d: gc: notify user", c->self);
1.140     markus   2051:                c->detach_user(c->self, NULL);
                   2052:                /* if we still have a callback */
                   2053:                if (c->detach_user != NULL)
                   2054:                        return;
1.194     markus   2055:                debug2("channel %d: gc: user detached", c->self);
1.140     markus   2056:        }
                   2057:        if (!chan_is_dead(c, 1))
                   2058:                return;
1.194     markus   2059:        debug2("channel %d: garbage collecting", c->self);
1.140     markus   2060:        channel_free(c);
                   2061: }
                   2062:
1.127     itojun   2063: static void
1.317     djm      2064: channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
                   2065:     time_t *unpause_secs)
1.41      markus   2066: {
                   2067:        static int did_init = 0;
1.299     markus   2068:        u_int i, oalloc;
1.41      markus   2069:        Channel *c;
1.317     djm      2070:        time_t now;
1.25      markus   2071:
1.41      markus   2072:        if (!did_init) {
                   2073:                channel_handler_init();
                   2074:                did_init = 1;
                   2075:        }
1.322     dtucker  2076:        now = monotime();
1.317     djm      2077:        if (unpause_secs != NULL)
                   2078:                *unpause_secs = 0;
1.299     markus   2079:        for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
1.113     markus   2080:                c = channels[i];
                   2081:                if (c == NULL)
1.41      markus   2082:                        continue;
1.299     markus   2083:                if (c->delayed) {
                   2084:                        if (ftab == channel_pre)
                   2085:                                c->delayed = 0;
                   2086:                        else
                   2087:                                continue;
                   2088:                }
1.317     djm      2089:                if (ftab[c->type] != NULL) {
                   2090:                        /*
                   2091:                         * Run handlers that are not paused.
                   2092:                         */
                   2093:                        if (c->notbefore <= now)
                   2094:                                (*ftab[c->type])(c, readset, writeset);
                   2095:                        else if (unpause_secs != NULL) {
                   2096:                                /*
                   2097:                                 * Collect the time that the earliest
                   2098:                                 * channel comes off pause.
                   2099:                                 */
                   2100:                                debug3("%s: chan %d: skip for %d more seconds",
                   2101:                                    __func__, c->self,
                   2102:                                    (int)(c->notbefore - now));
                   2103:                                if (*unpause_secs == 0 ||
                   2104:                                    (c->notbefore - now) < *unpause_secs)
                   2105:                                        *unpause_secs = c->notbefore - now;
                   2106:                        }
                   2107:                }
1.140     markus   2108:                channel_garbage_collect(c);
1.1       deraadt  2109:        }
1.317     djm      2110:        if (unpause_secs != NULL && *unpause_secs != 0)
                   2111:                debug3("%s: first channel unpauses in %d seconds",
                   2112:                    __func__, (int)*unpause_secs);
1.1       deraadt  2113: }
                   2114:
1.121     markus   2115: /*
                   2116:  * Allocate/update select bitmasks and add any bits relevant to channels in
                   2117:  * select bitmasks.
                   2118:  */
1.49      markus   2119: void
1.100     markus   2120: channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
1.318     djm      2121:     u_int *nallocp, time_t *minwait_secs, int rekeying)
1.41      markus   2122: {
1.243     djm      2123:        u_int n, sz, nfdset;
1.84      markus   2124:
                   2125:        n = MAX(*maxfdp, channel_max_fd);
                   2126:
1.243     djm      2127:        nfdset = howmany(n+1, NFDBITS);
                   2128:        /* Explicitly test here, because xrealloc isn't always called */
                   2129:        if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
                   2130:                fatal("channel_prepare_select: max_fd (%d) is too large", n);
                   2131:        sz = nfdset * sizeof(fd_mask);
                   2132:
1.132     markus   2133:        /* perhaps check sz < nalloc/2 and shrink? */
                   2134:        if (*readsetp == NULL || sz > *nallocp) {
1.243     djm      2135:                *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
                   2136:                *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
1.132     markus   2137:                *nallocp = sz;
1.84      markus   2138:        }
1.132     markus   2139:        *maxfdp = n;
1.84      markus   2140:        memset(*readsetp, 0, sz);
                   2141:        memset(*writesetp, 0, sz);
                   2142:
1.100     markus   2143:        if (!rekeying)
1.317     djm      2144:                channel_handler(channel_pre, *readsetp, *writesetp,
                   2145:                    minwait_secs);
1.41      markus   2146: }
                   2147:
1.121     markus   2148: /*
                   2149:  * After select, perform any appropriate operations for channels which have
                   2150:  * events pending.
                   2151:  */
1.49      markus   2152: void
1.237     deraadt  2153: channel_after_select(fd_set *readset, fd_set *writeset)
1.41      markus   2154: {
1.317     djm      2155:        channel_handler(channel_post, readset, writeset, NULL);
1.41      markus   2156: }
                   2157:
1.121     markus   2158:
1.84      markus   2159: /* If there is data to send to the connection, enqueue some of it now. */
1.49      markus   2160: void
1.142     itojun   2161: channel_output_poll(void)
1.1       deraadt  2162: {
1.41      markus   2163:        Channel *c;
1.209     avsm     2164:        u_int i, len;
1.1       deraadt  2165:
1.25      markus   2166:        for (i = 0; i < channels_alloc; i++) {
1.113     markus   2167:                c = channels[i];
                   2168:                if (c == NULL)
                   2169:                        continue;
1.37      markus   2170:
1.121     markus   2171:                /*
                   2172:                 * We are only interested in channels that can have buffered
                   2173:                 * incoming data.
                   2174:                 */
1.37      markus   2175:                if (compat13) {
1.41      markus   2176:                        if (c->type != SSH_CHANNEL_OPEN &&
                   2177:                            c->type != SSH_CHANNEL_INPUT_DRAINING)
1.37      markus   2178:                                continue;
                   2179:                } else {
1.41      markus   2180:                        if (c->type != SSH_CHANNEL_OPEN)
1.37      markus   2181:                                continue;
                   2182:                }
1.46      markus   2183:                if (compat20 &&
                   2184:                    (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
1.93      markus   2185:                        /* XXX is this true? */
1.140     markus   2186:                        debug3("channel %d: will not send data after close", c->self);
1.44      markus   2187:                        continue;
                   2188:                }
1.25      markus   2189:
                   2190:                /* Get the amount of buffered data for this channel. */
1.93      markus   2191:                if ((c->istate == CHAN_INPUT_OPEN ||
                   2192:                    c->istate == CHAN_INPUT_WAIT_DRAIN) &&
                   2193:                    (len = buffer_len(&c->input)) > 0) {
1.228     reyk     2194:                        if (c->datagram) {
                   2195:                                if (len > 0) {
                   2196:                                        u_char *data;
                   2197:                                        u_int dlen;
                   2198:
                   2199:                                        data = buffer_get_string(&c->input,
                   2200:                                            &dlen);
1.309     djm      2201:                                        if (dlen > c->remote_window ||
                   2202:                                            dlen > c->remote_maxpacket) {
                   2203:                                                debug("channel %d: datagram "
                   2204:                                                    "too big for channel",
                   2205:                                                    c->self);
1.321     djm      2206:                                                free(data);
1.309     djm      2207:                                                continue;
                   2208:                                        }
1.228     reyk     2209:                                        packet_start(SSH2_MSG_CHANNEL_DATA);
                   2210:                                        packet_put_int(c->remote_id);
                   2211:                                        packet_put_string(data, dlen);
                   2212:                                        packet_send();
                   2213:                                        c->remote_window -= dlen + 4;
1.321     djm      2214:                                        free(data);
1.228     reyk     2215:                                }
                   2216:                                continue;
                   2217:                        }
1.121     markus   2218:                        /*
                   2219:                         * Send some data for the other side over the secure
                   2220:                         * connection.
                   2221:                         */
1.44      markus   2222:                        if (compat20) {
                   2223:                                if (len > c->remote_window)
                   2224:                                        len = c->remote_window;
                   2225:                                if (len > c->remote_maxpacket)
                   2226:                                        len = c->remote_maxpacket;
1.25      markus   2227:                        } else {
1.44      markus   2228:                                if (packet_is_interactive()) {
                   2229:                                        if (len > 1024)
                   2230:                                                len = 512;
                   2231:                                } else {
                   2232:                                        /* Keep the packets at reasonable size. */
                   2233:                                        if (len > packet_get_maxsize()/2)
                   2234:                                                len = packet_get_maxsize()/2;
                   2235:                                }
1.25      markus   2236:                        }
1.41      markus   2237:                        if (len > 0) {
1.44      markus   2238:                                packet_start(compat20 ?
                   2239:                                    SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
1.41      markus   2240:                                packet_put_int(c->remote_id);
                   2241:                                packet_put_string(buffer_ptr(&c->input), len);
                   2242:                                packet_send();
                   2243:                                buffer_consume(&c->input, len);
                   2244:                                c->remote_window -= len;
                   2245:                        }
                   2246:                } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1.25      markus   2247:                        if (compat13)
                   2248:                                fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
1.27      markus   2249:                        /*
                   2250:                         * input-buffer is empty and read-socket shutdown:
1.172     markus   2251:                         * tell peer, that we will not send more data: send IEOF.
                   2252:                         * hack for extended data: delay EOF if EFD still in use.
1.27      markus   2253:                         */
1.172     markus   2254:                        if (CHANNEL_EFD_INPUT_ACTIVE(c))
1.223     djm      2255:                                debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
                   2256:                                    c->self, c->efd, buffer_len(&c->extended));
1.172     markus   2257:                        else
                   2258:                                chan_ibuf_empty(c);
1.25      markus   2259:                }
1.44      markus   2260:                /* Send extended data, i.e. stderr */
                   2261:                if (compat20 &&
1.172     markus   2262:                    !(c->flags & CHAN_EOF_SENT) &&
1.44      markus   2263:                    c->remote_window > 0 &&
                   2264:                    (len = buffer_len(&c->extended)) > 0 &&
                   2265:                    c->extended_usage == CHAN_EXTENDED_READ) {
1.178     markus   2266:                        debug2("channel %d: rwin %u elen %u euse %d",
1.93      markus   2267:                            c->self, c->remote_window, buffer_len(&c->extended),
                   2268:                            c->extended_usage);
1.44      markus   2269:                        if (len > c->remote_window)
                   2270:                                len = c->remote_window;
                   2271:                        if (len > c->remote_maxpacket)
                   2272:                                len = c->remote_maxpacket;
                   2273:                        packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
                   2274:                        packet_put_int(c->remote_id);
                   2275:                        packet_put_int(SSH2_EXTENDED_DATA_STDERR);
                   2276:                        packet_put_string(buffer_ptr(&c->extended), len);
                   2277:                        packet_send();
                   2278:                        buffer_consume(&c->extended, len);
                   2279:                        c->remote_window -= len;
1.93      markus   2280:                        debug2("channel %d: sent ext data %d", c->self, len);
1.44      markus   2281:                }
1.25      markus   2282:        }
1.1       deraadt  2283: }
                   2284:
1.121     markus   2285:
                   2286: /* -- protocol input */
1.249     djm      2287:
                   2288: /* ARGSUSED */
1.49      markus   2289: void
1.154     markus   2290: channel_input_data(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2291: {
1.37      markus   2292:        int id;
1.25      markus   2293:        char *data;
1.309     djm      2294:        u_int data_len, win_len;
1.41      markus   2295:        Channel *c;
1.25      markus   2296:
                   2297:        /* Get the channel number and verify it. */
1.37      markus   2298:        id = packet_get_int();
1.41      markus   2299:        c = channel_lookup(id);
                   2300:        if (c == NULL)
1.37      markus   2301:                packet_disconnect("Received data for nonexistent channel %d.", id);
1.25      markus   2302:
                   2303:        /* Ignore any data for non-open channels (might happen on close) */
1.41      markus   2304:        if (c->type != SSH_CHANNEL_OPEN &&
                   2305:            c->type != SSH_CHANNEL_X11_OPEN)
1.37      markus   2306:                return;
                   2307:
1.25      markus   2308:        /* Get the data. */
1.274     markus   2309:        data = packet_get_string_ptr(&data_len);
1.309     djm      2310:        win_len = data_len;
                   2311:        if (c->datagram)
                   2312:                win_len += 4;  /* string length header */
1.200     markus   2313:
                   2314:        /*
                   2315:         * Ignore data for protocol > 1.3 if output end is no longer open.
                   2316:         * For protocol 2 the sending side is reducing its window as it sends
                   2317:         * data, so we must 'fake' consumption of the data in order to ensure
                   2318:         * that window updates are sent back.  Otherwise the connection might
                   2319:         * deadlock.
                   2320:         */
                   2321:        if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
                   2322:                if (compat20) {
1.309     djm      2323:                        c->local_window -= win_len;
                   2324:                        c->local_consumed += win_len;
1.200     markus   2325:                }
                   2326:                return;
                   2327:        }
1.41      markus   2328:
1.143     deraadt  2329:        if (compat20) {
1.309     djm      2330:                if (win_len > c->local_maxpacket) {
1.188     itojun   2331:                        logit("channel %d: rcvd big packet %d, maxpack %d",
1.309     djm      2332:                            c->self, win_len, c->local_maxpacket);
1.44      markus   2333:                }
1.309     djm      2334:                if (win_len > c->local_window) {
1.188     itojun   2335:                        logit("channel %d: rcvd too much data %d, win %d",
1.309     djm      2336:                            c->self, win_len, c->local_window);
1.44      markus   2337:                        return;
                   2338:                }
1.309     djm      2339:                c->local_window -= win_len;
1.44      markus   2340:        }
1.228     reyk     2341:        if (c->datagram)
                   2342:                buffer_put_string(&c->output, data, data_len);
                   2343:        else
                   2344:                buffer_append(&c->output, data, data_len);
1.274     markus   2345:        packet_check_eom();
1.1       deraadt  2346: }
1.121     markus   2347:
1.249     djm      2348: /* ARGSUSED */
1.49      markus   2349: void
1.154     markus   2350: channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
1.44      markus   2351: {
                   2352:        int id;
                   2353:        char *data;
1.177     markus   2354:        u_int data_len, tcode;
1.44      markus   2355:        Channel *c;
                   2356:
                   2357:        /* Get the channel number and verify it. */
                   2358:        id = packet_get_int();
                   2359:        c = channel_lookup(id);
                   2360:
                   2361:        if (c == NULL)
                   2362:                packet_disconnect("Received extended_data for bad channel %d.", id);
                   2363:        if (c->type != SSH_CHANNEL_OPEN) {
1.188     itojun   2364:                logit("channel %d: ext data for non open", id);
1.44      markus   2365:                return;
1.172     markus   2366:        }
                   2367:        if (c->flags & CHAN_EOF_RCVD) {
                   2368:                if (datafellows & SSH_BUG_EXTEOF)
                   2369:                        debug("channel %d: accepting ext data after eof", id);
                   2370:                else
                   2371:                        packet_disconnect("Received extended_data after EOF "
                   2372:                            "on channel %d.", id);
1.44      markus   2373:        }
                   2374:        tcode = packet_get_int();
                   2375:        if (c->efd == -1 ||
                   2376:            c->extended_usage != CHAN_EXTENDED_WRITE ||
                   2377:            tcode != SSH2_EXTENDED_DATA_STDERR) {
1.188     itojun   2378:                logit("channel %d: bad ext data", c->self);
1.44      markus   2379:                return;
                   2380:        }
                   2381:        data = packet_get_string(&data_len);
1.152     markus   2382:        packet_check_eom();
1.44      markus   2383:        if (data_len > c->local_window) {
1.188     itojun   2384:                logit("channel %d: rcvd too much extended_data %d, win %d",
1.44      markus   2385:                    c->self, data_len, c->local_window);
1.321     djm      2386:                free(data);
1.44      markus   2387:                return;
                   2388:        }
1.70      markus   2389:        debug2("channel %d: rcvd ext data %d", c->self, data_len);
1.44      markus   2390:        c->local_window -= data_len;
                   2391:        buffer_append(&c->extended, data, data_len);
1.321     djm      2392:        free(data);
1.44      markus   2393: }
                   2394:
1.249     djm      2395: /* ARGSUSED */
1.49      markus   2396: void
1.154     markus   2397: channel_input_ieof(int type, u_int32_t seq, void *ctxt)
1.41      markus   2398: {
                   2399:        int id;
                   2400:        Channel *c;
                   2401:
                   2402:        id = packet_get_int();
1.152     markus   2403:        packet_check_eom();
1.41      markus   2404:        c = channel_lookup(id);
                   2405:        if (c == NULL)
                   2406:                packet_disconnect("Received ieof for nonexistent channel %d.", id);
                   2407:        chan_rcvd_ieof(c);
1.133     markus   2408:
                   2409:        /* XXX force input close */
1.156     markus   2410:        if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
1.133     markus   2411:                debug("channel %d: FORCE input drain", c->self);
                   2412:                c->istate = CHAN_INPUT_WAIT_DRAIN;
1.161     markus   2413:                if (buffer_len(&c->input) == 0)
                   2414:                        chan_ibuf_empty(c);
1.133     markus   2415:        }
                   2416:
1.41      markus   2417: }
1.1       deraadt  2418:
1.249     djm      2419: /* ARGSUSED */
1.49      markus   2420: void
1.154     markus   2421: channel_input_close(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2422: {
1.41      markus   2423:        int id;
                   2424:        Channel *c;
1.1       deraadt  2425:
1.41      markus   2426:        id = packet_get_int();
1.152     markus   2427:        packet_check_eom();
1.41      markus   2428:        c = channel_lookup(id);
                   2429:        if (c == NULL)
                   2430:                packet_disconnect("Received close for nonexistent channel %d.", id);
1.27      markus   2431:
                   2432:        /*
                   2433:         * Send a confirmation that we have closed the channel and no more
                   2434:         * data is coming for it.
                   2435:         */
1.25      markus   2436:        packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
1.41      markus   2437:        packet_put_int(c->remote_id);
1.25      markus   2438:        packet_send();
                   2439:
1.27      markus   2440:        /*
                   2441:         * If the channel is in closed state, we have sent a close request,
                   2442:         * and the other side will eventually respond with a confirmation.
                   2443:         * Thus, we cannot free the channel here, because then there would be
                   2444:         * no-one to receive the confirmation.  The channel gets freed when
                   2445:         * the confirmation arrives.
                   2446:         */
1.41      markus   2447:        if (c->type != SSH_CHANNEL_CLOSED) {
1.27      markus   2448:                /*
                   2449:                 * Not a closed channel - mark it as draining, which will
                   2450:                 * cause it to be freed later.
                   2451:                 */
1.158     markus   2452:                buffer_clear(&c->input);
1.41      markus   2453:                c->type = SSH_CHANNEL_OUTPUT_DRAINING;
1.25      markus   2454:        }
1.1       deraadt  2455: }
                   2456:
1.41      markus   2457: /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
1.249     djm      2458: /* ARGSUSED */
1.49      markus   2459: void
1.154     markus   2460: channel_input_oclose(int type, u_int32_t seq, void *ctxt)
1.41      markus   2461: {
                   2462:        int id = packet_get_int();
                   2463:        Channel *c = channel_lookup(id);
1.151     markus   2464:
1.152     markus   2465:        packet_check_eom();
1.41      markus   2466:        if (c == NULL)
                   2467:                packet_disconnect("Received oclose for nonexistent channel %d.", id);
                   2468:        chan_rcvd_oclose(c);
                   2469: }
1.1       deraadt  2470:
1.249     djm      2471: /* ARGSUSED */
1.49      markus   2472: void
1.154     markus   2473: channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2474: {
1.41      markus   2475:        int id = packet_get_int();
                   2476:        Channel *c = channel_lookup(id);
1.1       deraadt  2477:
1.152     markus   2478:        packet_check_eom();
1.41      markus   2479:        if (c == NULL)
                   2480:                packet_disconnect("Received close confirmation for "
                   2481:                    "out-of-range channel %d.", id);
1.323     dtucker  2482:        if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
1.41      markus   2483:                packet_disconnect("Received close confirmation for "
                   2484:                    "non-closed channel %d (type %d).", id, c->type);
1.113     markus   2485:        channel_free(c);
1.1       deraadt  2486: }
                   2487:
1.249     djm      2488: /* ARGSUSED */
1.49      markus   2489: void
1.154     markus   2490: channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2491: {
1.41      markus   2492:        int id, remote_id;
                   2493:        Channel *c;
1.1       deraadt  2494:
1.41      markus   2495:        id = packet_get_int();
                   2496:        c = channel_lookup(id);
1.25      markus   2497:
1.41      markus   2498:        if (c==NULL || c->type != SSH_CHANNEL_OPENING)
                   2499:                packet_disconnect("Received open confirmation for "
                   2500:                    "non-opening channel %d.", id);
                   2501:        remote_id = packet_get_int();
1.27      markus   2502:        /* Record the remote channel number and mark that the channel is now open. */
1.41      markus   2503:        c->remote_id = remote_id;
                   2504:        c->type = SSH_CHANNEL_OPEN;
1.44      markus   2505:
                   2506:        if (compat20) {
                   2507:                c->remote_window = packet_get_int();
                   2508:                c->remote_maxpacket = packet_get_int();
1.275     djm      2509:                if (c->open_confirm) {
1.70      markus   2510:                        debug2("callback start");
1.304     djm      2511:                        c->open_confirm(c->self, 1, c->open_confirm_ctx);
1.70      markus   2512:                        debug2("callback done");
1.44      markus   2513:                }
1.194     markus   2514:                debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
1.44      markus   2515:                    c->remote_window, c->remote_maxpacket);
                   2516:        }
1.152     markus   2517:        packet_check_eom();
1.1       deraadt  2518: }
                   2519:
1.127     itojun   2520: static char *
1.114     markus   2521: reason2txt(int reason)
                   2522: {
1.143     deraadt  2523:        switch (reason) {
1.114     markus   2524:        case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
                   2525:                return "administratively prohibited";
                   2526:        case SSH2_OPEN_CONNECT_FAILED:
                   2527:                return "connect failed";
                   2528:        case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
                   2529:                return "unknown channel type";
                   2530:        case SSH2_OPEN_RESOURCE_SHORTAGE:
                   2531:                return "resource shortage";
                   2532:        }
1.117     stevesk  2533:        return "unknown reason";
1.114     markus   2534: }
                   2535:
1.249     djm      2536: /* ARGSUSED */
1.49      markus   2537: void
1.154     markus   2538: channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2539: {
1.86      markus   2540:        int id, reason;
                   2541:        char *msg = NULL, *lang = NULL;
1.41      markus   2542:        Channel *c;
                   2543:
                   2544:        id = packet_get_int();
                   2545:        c = channel_lookup(id);
1.25      markus   2546:
1.41      markus   2547:        if (c==NULL || c->type != SSH_CHANNEL_OPENING)
                   2548:                packet_disconnect("Received open failure for "
                   2549:                    "non-opening channel %d.", id);
1.44      markus   2550:        if (compat20) {
1.86      markus   2551:                reason = packet_get_int();
1.110     markus   2552:                if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1.86      markus   2553:                        msg  = packet_get_string(NULL);
                   2554:                        lang = packet_get_string(NULL);
                   2555:                }
1.188     itojun   2556:                logit("channel %d: open failed: %s%s%s", id,
1.114     markus   2557:                    reason2txt(reason), msg ? ": ": "", msg ? msg : "");
1.321     djm      2558:                free(msg);
                   2559:                free(lang);
1.304     djm      2560:                if (c->open_confirm) {
                   2561:                        debug2("callback start");
                   2562:                        c->open_confirm(c->self, 0, c->open_confirm_ctx);
                   2563:                        debug2("callback done");
                   2564:                }
1.44      markus   2565:        }
1.152     markus   2566:        packet_check_eom();
1.291     djm      2567:        /* Schedule the channel for cleanup/deletion. */
                   2568:        chan_mark_dead(c);
1.44      markus   2569: }
                   2570:
1.249     djm      2571: /* ARGSUSED */
1.121     markus   2572: void
1.154     markus   2573: channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
1.121     markus   2574: {
                   2575:        Channel *c;
1.178     markus   2576:        int id;
                   2577:        u_int adjust;
1.121     markus   2578:
                   2579:        if (!compat20)
                   2580:                return;
                   2581:
                   2582:        /* Get the channel number and verify it. */
                   2583:        id = packet_get_int();
                   2584:        c = channel_lookup(id);
1.1       deraadt  2585:
1.229     markus   2586:        if (c == NULL) {
                   2587:                logit("Received window adjust for non-open channel %d.", id);
1.121     markus   2588:                return;
                   2589:        }
                   2590:        adjust = packet_get_int();
1.152     markus   2591:        packet_check_eom();
1.178     markus   2592:        debug2("channel %d: rcvd adjust %u", id, adjust);
1.121     markus   2593:        c->remote_window += adjust;
                   2594: }
1.1       deraadt  2595:
1.249     djm      2596: /* ARGSUSED */
1.121     markus   2597: void
1.154     markus   2598: channel_input_port_open(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2599: {
1.121     markus   2600:        Channel *c = NULL;
                   2601:        u_short host_port;
                   2602:        char *host, *originator_string;
1.276     djm      2603:        int remote_id;
1.121     markus   2604:
                   2605:        remote_id = packet_get_int();
                   2606:        host = packet_get_string(NULL);
                   2607:        host_port = packet_get_int();
1.25      markus   2608:
1.121     markus   2609:        if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
                   2610:                originator_string = packet_get_string(NULL);
                   2611:        } else {
                   2612:                originator_string = xstrdup("unknown (remote did not supply name)");
                   2613:        }
1.152     markus   2614:        packet_check_eom();
1.276     djm      2615:        c = channel_connect_to(host, host_port,
                   2616:            "connected socket", originator_string);
1.321     djm      2617:        free(originator_string);
                   2618:        free(host);
1.121     markus   2619:        if (c == NULL) {
                   2620:                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   2621:                packet_put_int(remote_id);
                   2622:                packet_send();
1.276     djm      2623:        } else
                   2624:                c->remote_id = remote_id;
1.1       deraadt  2625: }
                   2626:
1.275     djm      2627: /* ARGSUSED */
                   2628: void
                   2629: channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
                   2630: {
                   2631:        Channel *c;
                   2632:        struct channel_confirm *cc;
1.289     markus   2633:        int id;
1.275     djm      2634:
                   2635:        /* Reset keepalive timeout */
1.296     andreas  2636:        packet_set_alive_timeouts(0);
1.275     djm      2637:
1.289     markus   2638:        id = packet_get_int();
1.275     djm      2639:        packet_check_eom();
                   2640:
1.289     markus   2641:        debug2("channel_input_status_confirm: type %d id %d", type, id);
1.275     djm      2642:
1.289     markus   2643:        if ((c = channel_lookup(id)) == NULL) {
                   2644:                logit("channel_input_status_confirm: %d: unknown", id);
1.275     djm      2645:                return;
                   2646:        }
                   2647:        ;
                   2648:        if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
                   2649:                return;
                   2650:        cc->cb(type, c, cc->ctx);
                   2651:        TAILQ_REMOVE(&c->status_confirms, cc, entry);
1.329     tedu     2652:        explicit_bzero(cc, sizeof(*cc));
1.321     djm      2653:        free(cc);
1.275     djm      2654: }
1.121     markus   2655:
                   2656: /* -- tcp forwarding */
1.135     markus   2657:
                   2658: void
                   2659: channel_set_af(int af)
                   2660: {
                   2661:        IPv4or6 = af;
                   2662: }
1.121     markus   2663:
1.312     djm      2664:
                   2665: /*
                   2666:  * Determine whether or not a port forward listens to loopback, the
                   2667:  * specified address or wildcard. On the client, a specified bind
                   2668:  * address will always override gateway_ports. On the server, a
                   2669:  * gateway_ports of 1 (``yes'') will override the client's specification
                   2670:  * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
                   2671:  * will bind to whatever address the client asked for.
                   2672:  *
                   2673:  * Special-case listen_addrs are:
                   2674:  *
                   2675:  * "0.0.0.0"               -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
                   2676:  * "" (empty string), "*"  -> wildcard v4/v6
                   2677:  * "localhost"             -> loopback v4/v6
                   2678:  */
                   2679: static const char *
                   2680: channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
                   2681:     int is_client, int gateway_ports)
                   2682: {
                   2683:        const char *addr = NULL;
                   2684:        int wildcard = 0;
                   2685:
                   2686:        if (listen_addr == NULL) {
                   2687:                /* No address specified: default to gateway_ports setting */
                   2688:                if (gateway_ports)
                   2689:                        wildcard = 1;
                   2690:        } else if (gateway_ports || is_client) {
                   2691:                if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
                   2692:                    strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
                   2693:                    *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
1.326     djm      2694:                    (!is_client && gateway_ports == 1)) {
1.312     djm      2695:                        wildcard = 1;
1.326     djm      2696:                        /*
                   2697:                         * Notify client if they requested a specific listen
                   2698:                         * address and it was overridden.
                   2699:                         */
                   2700:                        if (*listen_addr != '\0' &&
                   2701:                            strcmp(listen_addr, "0.0.0.0") != 0 &&
                   2702:                            strcmp(listen_addr, "*") != 0) {
                   2703:                                packet_send_debug("Forwarding listen address "
                   2704:                                    "\"%s\" overridden by server "
                   2705:                                    "GatewayPorts", listen_addr);
                   2706:                        }
                   2707:                }
1.312     djm      2708:                else if (strcmp(listen_addr, "localhost") != 0)
                   2709:                        addr = listen_addr;
                   2710:        }
                   2711:        if (wildcardp != NULL)
                   2712:                *wildcardp = wildcard;
                   2713:        return addr;
                   2714: }
                   2715:
1.160     markus   2716: static int
1.295     djm      2717: channel_setup_fwd_listener(int type, const char *listen_addr,
                   2718:     u_short listen_port, int *allocated_listen_port,
1.160     markus   2719:     const char *host_to_connect, u_short port_to_connect, int gateway_ports)
1.25      markus   2720: {
1.113     markus   2721:        Channel *c;
1.226     djm      2722:        int sock, r, success = 0, wildcard = 0, is_client;
1.35      markus   2723:        struct addrinfo hints, *ai, *aitop;
1.212     djm      2724:        const char *host, *addr;
1.35      markus   2725:        char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1.295     djm      2726:        in_port_t *lport_p;
1.25      markus   2727:
1.160     markus   2728:        host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
                   2729:            listen_addr : host_to_connect;
1.212     djm      2730:        is_client = (type == SSH_CHANNEL_PORT_LISTENER);
1.87      markus   2731:
1.160     markus   2732:        if (host == NULL) {
                   2733:                error("No forward host name.");
1.218     markus   2734:                return 0;
1.73      markus   2735:        }
1.294     djm      2736:        if (strlen(host) >= NI_MAXHOST) {
1.87      markus   2737:                error("Forward host name too long.");
1.218     markus   2738:                return 0;
1.87      markus   2739:        }
1.25      markus   2740:
1.312     djm      2741:        /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
                   2742:        addr = channel_fwd_bind_addr(listen_addr, &wildcard,
                   2743:            is_client, gateway_ports);
1.212     djm      2744:        debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
                   2745:            type, wildcard, (addr == NULL) ? "NULL" : addr);
                   2746:
                   2747:        /*
1.35      markus   2748:         * getaddrinfo returns a loopback address if the hostname is
                   2749:         * set to NULL and hints.ai_flags is not AI_PASSIVE
1.28      markus   2750:         */
1.35      markus   2751:        memset(&hints, 0, sizeof(hints));
                   2752:        hints.ai_family = IPv4or6;
1.212     djm      2753:        hints.ai_flags = wildcard ? AI_PASSIVE : 0;
1.35      markus   2754:        hints.ai_socktype = SOCK_STREAM;
1.73      markus   2755:        snprintf(strport, sizeof strport, "%d", listen_port);
1.212     djm      2756:        if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
                   2757:                if (addr == NULL) {
                   2758:                        /* This really shouldn't happen */
                   2759:                        packet_disconnect("getaddrinfo: fatal error: %s",
1.271     dtucker  2760:                            ssh_gai_strerror(r));
1.212     djm      2761:                } else {
1.218     markus   2762:                        error("channel_setup_fwd_listener: "
1.271     dtucker  2763:                            "getaddrinfo(%.64s): %s", addr,
                   2764:                            ssh_gai_strerror(r));
1.212     djm      2765:                }
1.218     markus   2766:                return 0;
1.212     djm      2767:        }
1.295     djm      2768:        if (allocated_listen_port != NULL)
                   2769:                *allocated_listen_port = 0;
1.35      markus   2770:        for (ai = aitop; ai; ai = ai->ai_next) {
1.295     djm      2771:                switch (ai->ai_family) {
                   2772:                case AF_INET:
                   2773:                        lport_p = &((struct sockaddr_in *)ai->ai_addr)->
                   2774:                            sin_port;
                   2775:                        break;
                   2776:                case AF_INET6:
                   2777:                        lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
                   2778:                            sin6_port;
                   2779:                        break;
                   2780:                default:
1.35      markus   2781:                        continue;
1.295     djm      2782:                }
                   2783:                /*
                   2784:                 * If allocating a port for -R forwards, then use the
                   2785:                 * same port for all address families.
                   2786:                 */
                   2787:                if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
                   2788:                    allocated_listen_port != NULL && *allocated_listen_port > 0)
                   2789:                        *lport_p = htons(*allocated_listen_port);
                   2790:
1.35      markus   2791:                if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
                   2792:                    strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1.160     markus   2793:                        error("channel_setup_fwd_listener: getnameinfo failed");
1.35      markus   2794:                        continue;
                   2795:                }
                   2796:                /* Create a port to listen for the host. */
1.300     dtucker  2797:                sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1.35      markus   2798:                if (sock < 0) {
                   2799:                        /* this is no error since kernel may not support ipv6 */
                   2800:                        verbose("socket: %.100s", strerror(errno));
                   2801:                        continue;
                   2802:                }
1.226     djm      2803:
                   2804:                channel_set_reuseaddr(sock);
1.182     stevesk  2805:
1.295     djm      2806:                debug("Local forwarding listening on %s port %s.",
                   2807:                    ntop, strport);
1.35      markus   2808:
                   2809:                /* Bind the socket to the address. */
                   2810:                if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
                   2811:                        /* address can be in use ipv6 address is already bound */
                   2812:                        verbose("bind: %.100s", strerror(errno));
                   2813:                        close(sock);
                   2814:                        continue;
                   2815:                }
                   2816:                /* Start listening for connections on the socket. */
1.199     markus   2817:                if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
1.35      markus   2818:                        error("listen: %.100s", strerror(errno));
                   2819:                        close(sock);
                   2820:                        continue;
                   2821:                }
1.295     djm      2822:
                   2823:                /*
                   2824:                 * listen_port == 0 requests a dynamically allocated port -
                   2825:                 * record what we got.
                   2826:                 */
                   2827:                if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
                   2828:                    allocated_listen_port != NULL &&
                   2829:                    *allocated_listen_port == 0) {
                   2830:                        *allocated_listen_port = get_sock_port(sock, 1);
                   2831:                        debug("Allocated listen port %d",
                   2832:                            *allocated_listen_port);
                   2833:                }
                   2834:
1.35      markus   2835:                /* Allocate a channel number for the socket. */
1.121     markus   2836:                c = channel_new("port listener", type, sock, sock, -1,
1.51      markus   2837:                    CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1.190     markus   2838:                    0, "port listener", 1);
1.293     djm      2839:                c->path = xstrdup(host);
1.113     markus   2840:                c->host_port = port_to_connect;
1.312     djm      2841:                c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
1.315     markus   2842:                if (listen_port == 0 && allocated_listen_port != NULL &&
                   2843:                    !(datafellows & SSH_BUG_DYNAMIC_RPORT))
                   2844:                        c->listening_port = *allocated_listen_port;
                   2845:                else
                   2846:                        c->listening_port = listen_port;
1.35      markus   2847:                success = 1;
                   2848:        }
                   2849:        if (success == 0)
1.160     markus   2850:                error("channel_setup_fwd_listener: cannot listen to port: %d",
1.87      markus   2851:                    listen_port);
1.35      markus   2852:        freeaddrinfo(aitop);
1.87      markus   2853:        return success;
1.25      markus   2854: }
1.1       deraadt  2855:
1.202     djm      2856: int
                   2857: channel_cancel_rport_listener(const char *host, u_short port)
                   2858: {
1.209     avsm     2859:        u_int i;
                   2860:        int found = 0;
1.202     djm      2861:
1.213     deraadt  2862:        for (i = 0; i < channels_alloc; i++) {
1.202     djm      2863:                Channel *c = channels[i];
1.312     djm      2864:                if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
                   2865:                        continue;
                   2866:                if (strcmp(c->path, host) == 0 && c->listening_port == port) {
                   2867:                        debug2("%s: close channel %d", __func__, i);
                   2868:                        channel_free(c);
                   2869:                        found = 1;
                   2870:                }
                   2871:        }
                   2872:
                   2873:        return (found);
                   2874: }
                   2875:
                   2876: int
                   2877: channel_cancel_lport_listener(const char *lhost, u_short lport,
1.313     markus   2878:     int cport, int gateway_ports)
1.312     djm      2879: {
                   2880:        u_int i;
                   2881:        int found = 0;
                   2882:        const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
1.202     djm      2883:
1.312     djm      2884:        for (i = 0; i < channels_alloc; i++) {
                   2885:                Channel *c = channels[i];
                   2886:                if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
                   2887:                        continue;
1.313     markus   2888:                if (c->listening_port != lport)
1.312     djm      2889:                        continue;
1.313     markus   2890:                if (cport == CHANNEL_CANCEL_PORT_STATIC) {
                   2891:                        /* skip dynamic forwardings */
                   2892:                        if (c->host_port == 0)
                   2893:                                continue;
                   2894:                } else {
                   2895:                        if (c->host_port != cport)
                   2896:                                continue;
                   2897:                }
1.312     djm      2898:                if ((c->listening_addr == NULL && addr != NULL) ||
                   2899:                    (c->listening_addr != NULL && addr == NULL))
                   2900:                        continue;
                   2901:                if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
1.210     djm      2902:                        debug2("%s: close channel %d", __func__, i);
1.202     djm      2903:                        channel_free(c);
                   2904:                        found = 1;
                   2905:                }
                   2906:        }
                   2907:
                   2908:        return (found);
                   2909: }
                   2910:
1.160     markus   2911: /* protocol local port fwd, used by ssh (and sshd in v1) */
                   2912: int
1.212     djm      2913: channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
1.160     markus   2914:     const char *host_to_connect, u_short port_to_connect, int gateway_ports)
                   2915: {
                   2916:        return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
1.295     djm      2917:            listen_host, listen_port, NULL, host_to_connect, port_to_connect,
1.212     djm      2918:            gateway_ports);
1.160     markus   2919: }
                   2920:
                   2921: /* protocol v2 remote port fwd, used by sshd */
                   2922: int
                   2923: channel_setup_remote_fwd_listener(const char *listen_address,
1.295     djm      2924:     u_short listen_port, int *allocated_listen_port, int gateway_ports)
1.160     markus   2925: {
                   2926:        return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
1.295     djm      2927:            listen_address, listen_port, allocated_listen_port,
                   2928:            NULL, 0, gateway_ports);
1.160     markus   2929: }
                   2930:
1.27      markus   2931: /*
1.312     djm      2932:  * Translate the requested rfwd listen host to something usable for
                   2933:  * this server.
                   2934:  */
                   2935: static const char *
                   2936: channel_rfwd_bind_host(const char *listen_host)
                   2937: {
                   2938:        if (listen_host == NULL) {
                   2939:                if (datafellows & SSH_BUG_RFWD_ADDR)
                   2940:                        return "127.0.0.1";
                   2941:                else
                   2942:                        return "localhost";
                   2943:        } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
                   2944:                if (datafellows & SSH_BUG_RFWD_ADDR)
                   2945:                        return "0.0.0.0";
                   2946:                else
                   2947:                        return "";
                   2948:        } else
                   2949:                return listen_host;
                   2950: }
                   2951:
                   2952: /*
1.27      markus   2953:  * Initiate forwarding of connections to port "port" on remote host through
                   2954:  * the secure channel to host:port from local side.
1.315     markus   2955:  * Returns handle (index) for updating the dynamic listen port with
                   2956:  * channel_update_permitted_opens().
1.27      markus   2957:  */
1.253     markus   2958: int
1.212     djm      2959: channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
1.73      markus   2960:     const char *host_to_connect, u_short port_to_connect)
1.25      markus   2961: {
1.315     markus   2962:        int type, success = 0, idx = -1;
1.73      markus   2963:
1.25      markus   2964:        /* Send the forward request to the remote side. */
1.44      markus   2965:        if (compat20) {
                   2966:                packet_start(SSH2_MSG_GLOBAL_REQUEST);
                   2967:                packet_put_cstring("tcpip-forward");
1.312     djm      2968:                packet_put_char(1);             /* boolean: want reply */
                   2969:                packet_put_cstring(channel_rfwd_bind_host(listen_host));
1.44      markus   2970:                packet_put_int(listen_port);
1.73      markus   2971:                packet_send();
                   2972:                packet_write_wait();
                   2973:                /* Assume that server accepts the request */
                   2974:                success = 1;
1.44      markus   2975:        } else {
                   2976:                packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
1.50      markus   2977:                packet_put_int(listen_port);
                   2978:                packet_put_cstring(host_to_connect);
1.44      markus   2979:                packet_put_int(port_to_connect);
                   2980:                packet_send();
                   2981:                packet_write_wait();
1.73      markus   2982:
                   2983:                /* Wait for response from the remote side. */
1.153     markus   2984:                type = packet_read();
1.73      markus   2985:                switch (type) {
                   2986:                case SSH_SMSG_SUCCESS:
                   2987:                        success = 1;
                   2988:                        break;
                   2989:                case SSH_SMSG_FAILURE:
                   2990:                        break;
                   2991:                default:
                   2992:                        /* Unknown packet */
                   2993:                        packet_disconnect("Protocol error for port forward request:"
                   2994:                            "received packet type %d.", type);
                   2995:                }
                   2996:        }
                   2997:        if (success) {
1.305     djm      2998:                /* Record that connection to this host/port is permitted. */
                   2999:                permitted_opens = xrealloc(permitted_opens,
                   3000:                    num_permitted_opens + 1, sizeof(*permitted_opens));
1.315     markus   3001:                idx = num_permitted_opens++;
                   3002:                permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
                   3003:                permitted_opens[idx].port_to_connect = port_to_connect;
                   3004:                permitted_opens[idx].listen_port = listen_port;
1.44      markus   3005:        }
1.315     markus   3006:        return (idx);
1.1       deraadt  3007: }
                   3008:
1.27      markus   3009: /*
1.208     deraadt  3010:  * Request cancellation of remote forwarding of connection host:port from
1.202     djm      3011:  * local side.
                   3012:  */
1.312     djm      3013: int
1.212     djm      3014: channel_request_rforward_cancel(const char *host, u_short port)
1.202     djm      3015: {
                   3016:        int i;
                   3017:
                   3018:        if (!compat20)
1.312     djm      3019:                return -1;
1.202     djm      3020:
                   3021:        for (i = 0; i < num_permitted_opens; i++) {
1.208     deraadt  3022:                if (permitted_opens[i].host_to_connect != NULL &&
1.202     djm      3023:                    permitted_opens[i].listen_port == port)
                   3024:                        break;
                   3025:        }
                   3026:        if (i >= num_permitted_opens) {
                   3027:                debug("%s: requested forward not found", __func__);
1.312     djm      3028:                return -1;
1.202     djm      3029:        }
                   3030:        packet_start(SSH2_MSG_GLOBAL_REQUEST);
                   3031:        packet_put_cstring("cancel-tcpip-forward");
                   3032:        packet_put_char(0);
1.312     djm      3033:        packet_put_cstring(channel_rfwd_bind_host(host));
1.202     djm      3034:        packet_put_int(port);
                   3035:        packet_send();
                   3036:
                   3037:        permitted_opens[i].listen_port = 0;
                   3038:        permitted_opens[i].port_to_connect = 0;
1.321     djm      3039:        free(permitted_opens[i].host_to_connect);
1.202     djm      3040:        permitted_opens[i].host_to_connect = NULL;
1.312     djm      3041:
                   3042:        return 0;
1.202     djm      3043: }
                   3044:
                   3045: /*
1.27      markus   3046:  * This is called after receiving CHANNEL_FORWARDING_REQUEST.  This initates
                   3047:  * listening for the port, and sends back a success reply (or disconnect
1.253     markus   3048:  * message if there was an error).
1.27      markus   3049:  */
1.253     markus   3050: int
1.56      markus   3051: channel_input_port_forward_request(int is_root, int gateway_ports)
1.1       deraadt  3052: {
1.31      markus   3053:        u_short port, host_port;
1.253     markus   3054:        int success = 0;
1.25      markus   3055:        char *hostname;
1.1       deraadt  3056:
1.25      markus   3057:        /* Get arguments from the packet. */
                   3058:        port = packet_get_int();
                   3059:        hostname = packet_get_string(NULL);
                   3060:        host_port = packet_get_int();
                   3061:
1.27      markus   3062:        /*
                   3063:         * Check that an unprivileged user is not trying to forward a
                   3064:         * privileged port.
                   3065:         */
1.25      markus   3066:        if (port < IPPORT_RESERVED && !is_root)
1.192     markus   3067:                packet_disconnect(
                   3068:                    "Requested forwarding of port %d but user is not root.",
                   3069:                    port);
                   3070:        if (host_port == 0)
                   3071:                packet_disconnect("Dynamic forwarding denied.");
                   3072:
1.73      markus   3073:        /* Initiate forwarding */
1.253     markus   3074:        success = channel_setup_local_fwd_listener(NULL, port, hostname,
1.212     djm      3075:            host_port, gateway_ports);
1.25      markus   3076:
                   3077:        /* Free the argument string. */
1.321     djm      3078:        free(hostname);
1.253     markus   3079:
                   3080:        return (success ? 0 : -1);
1.1       deraadt  3081: }
                   3082:
1.99      markus   3083: /*
                   3084:  * Permits opening to any host/port if permitted_opens[] is empty.  This is
                   3085:  * usually called by the server, because the user could connect to any port
                   3086:  * anyway, and the server has no way to know but to trust the client anyway.
                   3087:  */
                   3088: void
1.142     itojun   3089: channel_permit_all_opens(void)
1.99      markus   3090: {
                   3091:        if (num_permitted_opens == 0)
                   3092:                all_opens_permitted = 1;
                   3093: }
                   3094:
1.101     markus   3095: void
1.99      markus   3096: channel_add_permitted_opens(char *host, int port)
                   3097: {
                   3098:        debug("allow port forwarding to host %s port %d", host, port);
                   3099:
1.305     djm      3100:        permitted_opens = xrealloc(permitted_opens,
                   3101:            num_permitted_opens + 1, sizeof(*permitted_opens));
1.99      markus   3102:        permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
                   3103:        permitted_opens[num_permitted_opens].port_to_connect = port;
                   3104:        num_permitted_opens++;
                   3105:
                   3106:        all_opens_permitted = 0;
1.315     markus   3107: }
                   3108:
                   3109: /*
                   3110:  * Update the listen port for a dynamic remote forward, after
                   3111:  * the actual 'newport' has been allocated. If 'newport' < 0 is
                   3112:  * passed then they entry will be invalidated.
                   3113:  */
                   3114: void
                   3115: channel_update_permitted_opens(int idx, int newport)
                   3116: {
                   3117:        if (idx < 0 || idx >= num_permitted_opens) {
                   3118:                debug("channel_update_permitted_opens: index out of range:"
                   3119:                    " %d num_permitted_opens %d", idx, num_permitted_opens);
                   3120:                return;
                   3121:        }
                   3122:        debug("%s allowed port %d for forwarding to host %s port %d",
                   3123:            newport > 0 ? "Updating" : "Removing",
                   3124:            newport,
                   3125:            permitted_opens[idx].host_to_connect,
                   3126:            permitted_opens[idx].port_to_connect);
                   3127:        if (newport >= 0)  {
                   3128:                permitted_opens[idx].listen_port =
                   3129:                    (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
                   3130:        } else {
                   3131:                permitted_opens[idx].listen_port = 0;
                   3132:                permitted_opens[idx].port_to_connect = 0;
1.321     djm      3133:                free(permitted_opens[idx].host_to_connect);
1.315     markus   3134:                permitted_opens[idx].host_to_connect = NULL;
                   3135:        }
1.99      markus   3136: }
                   3137:
1.258     dtucker  3138: int
1.257     dtucker  3139: channel_add_adm_permitted_opens(char *host, int port)
                   3140: {
1.258     dtucker  3141:        debug("config allows port forwarding to host %s port %d", host, port);
1.257     dtucker  3142:
1.305     djm      3143:        permitted_adm_opens = xrealloc(permitted_adm_opens,
                   3144:            num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
1.257     dtucker  3145:        permitted_adm_opens[num_adm_permitted_opens].host_to_connect
                   3146:             = xstrdup(host);
                   3147:        permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
1.258     dtucker  3148:        return ++num_adm_permitted_opens;
1.257     dtucker  3149: }
                   3150:
                   3151: void
1.316     dtucker  3152: channel_disable_adm_local_opens(void)
                   3153: {
1.319     djm      3154:        channel_clear_adm_permitted_opens();
                   3155:        permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
                   3156:        permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
                   3157:        num_adm_permitted_opens = 1;
1.316     dtucker  3158: }
                   3159:
                   3160: void
1.99      markus   3161: channel_clear_permitted_opens(void)
                   3162: {
                   3163:        int i;
                   3164:
                   3165:        for (i = 0; i < num_permitted_opens; i++)
1.321     djm      3166:                free(permitted_opens[i].host_to_connect);
                   3167:        free(permitted_opens);
                   3168:        permitted_opens = NULL;
1.99      markus   3169:        num_permitted_opens = 0;
1.257     dtucker  3170: }
                   3171:
                   3172: void
                   3173: channel_clear_adm_permitted_opens(void)
                   3174: {
                   3175:        int i;
1.99      markus   3176:
1.257     dtucker  3177:        for (i = 0; i < num_adm_permitted_opens; i++)
1.321     djm      3178:                free(permitted_adm_opens[i].host_to_connect);
                   3179:        free(permitted_adm_opens);
                   3180:        permitted_adm_opens = NULL;
1.257     dtucker  3181:        num_adm_permitted_opens = 0;
1.278     dtucker  3182: }
                   3183:
                   3184: void
                   3185: channel_print_adm_permitted_opens(void)
                   3186: {
1.286     djm      3187:        int i;
1.278     dtucker  3188:
1.290     stevesk  3189:        printf("permitopen");
1.288     stevesk  3190:        if (num_adm_permitted_opens == 0) {
1.290     stevesk  3191:                printf(" any\n");
1.288     stevesk  3192:                return;
                   3193:        }
1.278     dtucker  3194:        for (i = 0; i < num_adm_permitted_opens; i++)
1.316     dtucker  3195:                if (permitted_adm_opens[i].host_to_connect == NULL)
                   3196:                        printf(" none");
                   3197:                else
1.278     dtucker  3198:                        printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
                   3199:                            permitted_adm_opens[i].port_to_connect);
1.290     stevesk  3200:        printf("\n");
1.99      markus   3201: }
                   3202:
1.314     dtucker  3203: /* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
                   3204: int
                   3205: permitopen_port(const char *p)
                   3206: {
                   3207:        int port;
                   3208:
                   3209:        if (strcmp(p, "*") == 0)
                   3210:                return FWD_PERMIT_ANY_PORT;
                   3211:        if ((port = a2port(p)) > 0)
                   3212:                return port;
                   3213:        return -1;
                   3214: }
                   3215:
                   3216: static int
                   3217: port_match(u_short allowedport, u_short requestedport)
                   3218: {
                   3219:        if (allowedport == FWD_PERMIT_ANY_PORT ||
                   3220:            allowedport == requestedport)
                   3221:                return 1;
                   3222:        return 0;
                   3223: }
                   3224:
1.276     djm      3225: /* Try to start non-blocking connect to next host in cctx list */
1.127     itojun   3226: static int
1.276     djm      3227: connect_next(struct channel_connect *cctx)
1.41      markus   3228: {
1.276     djm      3229:        int sock, saved_errno;
1.41      markus   3230:        char ntop[NI_MAXHOST], strport[NI_MAXSERV];
                   3231:
1.276     djm      3232:        for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
                   3233:                if (cctx->ai->ai_family != AF_INET &&
                   3234:                    cctx->ai->ai_family != AF_INET6)
1.41      markus   3235:                        continue;
1.276     djm      3236:                if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
                   3237:                    ntop, sizeof(ntop), strport, sizeof(strport),
                   3238:                    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
                   3239:                        error("connect_next: getnameinfo failed");
1.41      markus   3240:                        continue;
                   3241:                }
1.300     dtucker  3242:                if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
                   3243:                    cctx->ai->ai_protocol)) == -1) {
1.276     djm      3244:                        if (cctx->ai->ai_next == NULL)
1.186     djm      3245:                                error("socket: %.100s", strerror(errno));
                   3246:                        else
                   3247:                                verbose("socket: %.100s", strerror(errno));
1.41      markus   3248:                        continue;
                   3249:                }
1.205     djm      3250:                if (set_nonblock(sock) == -1)
                   3251:                        fatal("%s: set_nonblock(%d)", __func__, sock);
1.276     djm      3252:                if (connect(sock, cctx->ai->ai_addr,
                   3253:                    cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
                   3254:                        debug("connect_next: host %.100s ([%.100s]:%s): "
                   3255:                            "%.100s", cctx->host, ntop, strport,
1.41      markus   3256:                            strerror(errno));
1.276     djm      3257:                        saved_errno = errno;
1.41      markus   3258:                        close(sock);
1.276     djm      3259:                        errno = saved_errno;
1.89      stevesk  3260:                        continue;       /* fail -- try next */
1.41      markus   3261:                }
1.276     djm      3262:                debug("connect_next: host %.100s ([%.100s]:%s) "
                   3263:                    "in progress, fd=%d", cctx->host, ntop, strport, sock);
                   3264:                cctx->ai = cctx->ai->ai_next;
                   3265:                set_nodelay(sock);
                   3266:                return sock;
                   3267:        }
                   3268:        return -1;
                   3269: }
1.41      markus   3270:
1.276     djm      3271: static void
                   3272: channel_connect_ctx_free(struct channel_connect *cctx)
                   3273: {
1.321     djm      3274:        free(cctx->host);
1.276     djm      3275:        if (cctx->aitop)
                   3276:                freeaddrinfo(cctx->aitop);
1.329     tedu     3277:        memset(cctx, 0, sizeof(*cctx));
1.276     djm      3278: }
                   3279:
                   3280: /* Return CONNECTING channel to remote host, port */
                   3281: static Channel *
                   3282: connect_to(const char *host, u_short port, char *ctype, char *rname)
                   3283: {
                   3284:        struct addrinfo hints;
                   3285:        int gaierr;
                   3286:        int sock = -1;
                   3287:        char strport[NI_MAXSERV];
                   3288:        struct channel_connect cctx;
                   3289:        Channel *c;
                   3290:
1.284     djm      3291:        memset(&cctx, 0, sizeof(cctx));
1.276     djm      3292:        memset(&hints, 0, sizeof(hints));
                   3293:        hints.ai_family = IPv4or6;
                   3294:        hints.ai_socktype = SOCK_STREAM;
                   3295:        snprintf(strport, sizeof strport, "%d", port);
                   3296:        if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
                   3297:                error("connect_to %.100s: unknown host (%s)", host,
                   3298:                    ssh_gai_strerror(gaierr));
                   3299:                return NULL;
1.41      markus   3300:        }
1.276     djm      3301:
                   3302:        cctx.host = xstrdup(host);
                   3303:        cctx.port = port;
                   3304:        cctx.ai = cctx.aitop;
                   3305:
                   3306:        if ((sock = connect_next(&cctx)) == -1) {
                   3307:                error("connect to %.100s port %d failed: %s",
                   3308:                    host, port, strerror(errno));
                   3309:                channel_connect_ctx_free(&cctx);
                   3310:                return NULL;
1.41      markus   3311:        }
1.276     djm      3312:        c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
                   3313:            CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
                   3314:        c->connect_ctx = cctx;
                   3315:        return c;
1.41      markus   3316: }
1.99      markus   3317:
1.276     djm      3318: Channel *
                   3319: channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
1.73      markus   3320: {
                   3321:        int i;
1.99      markus   3322:
1.276     djm      3323:        for (i = 0; i < num_permitted_opens; i++) {
1.202     djm      3324:                if (permitted_opens[i].host_to_connect != NULL &&
1.314     dtucker  3325:                    port_match(permitted_opens[i].listen_port, listen_port)) {
1.99      markus   3326:                        return connect_to(
1.73      markus   3327:                            permitted_opens[i].host_to_connect,
1.276     djm      3328:                            permitted_opens[i].port_to_connect, ctype, rname);
                   3329:                }
                   3330:        }
1.74      markus   3331:        error("WARNING: Server requests forwarding for unknown listen_port %d",
                   3332:            listen_port);
1.276     djm      3333:        return NULL;
1.73      markus   3334: }
                   3335:
1.99      markus   3336: /* Check if connecting to that port is permitted and connect. */
1.276     djm      3337: Channel *
                   3338: channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
1.99      markus   3339: {
1.257     dtucker  3340:        int i, permit, permit_adm = 1;
1.99      markus   3341:
                   3342:        permit = all_opens_permitted;
                   3343:        if (!permit) {
                   3344:                for (i = 0; i < num_permitted_opens; i++)
1.202     djm      3345:                        if (permitted_opens[i].host_to_connect != NULL &&
1.314     dtucker  3346:                            port_match(permitted_opens[i].port_to_connect, port) &&
1.99      markus   3347:                            strcmp(permitted_opens[i].host_to_connect, host) == 0)
                   3348:                                permit = 1;
1.257     dtucker  3349:        }
1.99      markus   3350:
1.257     dtucker  3351:        if (num_adm_permitted_opens > 0) {
                   3352:                permit_adm = 0;
                   3353:                for (i = 0; i < num_adm_permitted_opens; i++)
                   3354:                        if (permitted_adm_opens[i].host_to_connect != NULL &&
1.314     dtucker  3355:                            port_match(permitted_adm_opens[i].port_to_connect, port) &&
1.257     dtucker  3356:                            strcmp(permitted_adm_opens[i].host_to_connect, host)
                   3357:                            == 0)
                   3358:                                permit_adm = 1;
1.99      markus   3359:        }
1.257     dtucker  3360:
                   3361:        if (!permit || !permit_adm) {
1.188     itojun   3362:                logit("Received request to connect to host %.100s port %d, "
1.99      markus   3363:                    "but the request was denied.", host, port);
1.276     djm      3364:                return NULL;
1.99      markus   3365:        }
1.276     djm      3366:        return connect_to(host, port, ctype, rname);
1.204     djm      3367: }
                   3368:
                   3369: void
                   3370: channel_send_window_changes(void)
                   3371: {
1.209     avsm     3372:        u_int i;
1.204     djm      3373:        struct winsize ws;
                   3374:
                   3375:        for (i = 0; i < channels_alloc; i++) {
1.213     deraadt  3376:                if (channels[i] == NULL || !channels[i]->client_tty ||
1.204     djm      3377:                    channels[i]->type != SSH_CHANNEL_OPEN)
                   3378:                        continue;
                   3379:                if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
                   3380:                        continue;
                   3381:                channel_request_start(i, "window-change", 0);
1.238     deraadt  3382:                packet_put_int((u_int)ws.ws_col);
                   3383:                packet_put_int((u_int)ws.ws_row);
                   3384:                packet_put_int((u_int)ws.ws_xpixel);
                   3385:                packet_put_int((u_int)ws.ws_ypixel);
1.204     djm      3386:                packet_send();
                   3387:        }
1.99      markus   3388: }
                   3389:
1.121     markus   3390: /* -- X11 forwarding */
1.1       deraadt  3391:
1.27      markus   3392: /*
                   3393:  * Creates an internet domain socket for listening for X11 connections.
1.176     deraadt  3394:  * Returns 0 and a suitable display number for the DISPLAY variable
                   3395:  * stored in display_numberp , or -1 if an error occurs.
1.27      markus   3396:  */
1.141     stevesk  3397: int
1.163     stevesk  3398: x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
1.222     djm      3399:     int single_connection, u_int *display_numberp, int **chanids)
1.1       deraadt  3400: {
1.149     markus   3401:        Channel *nc = NULL;
1.31      markus   3402:        int display_number, sock;
                   3403:        u_short port;
1.35      markus   3404:        struct addrinfo hints, *ai, *aitop;
                   3405:        char strport[NI_MAXSERV];
                   3406:        int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1.25      markus   3407:
1.224     markus   3408:        if (chanids == NULL)
                   3409:                return -1;
                   3410:
1.33      markus   3411:        for (display_number = x11_display_offset;
1.148     deraadt  3412:            display_number < MAX_DISPLAYS;
                   3413:            display_number++) {
1.25      markus   3414:                port = 6000 + display_number;
1.35      markus   3415:                memset(&hints, 0, sizeof(hints));
                   3416:                hints.ai_family = IPv4or6;
1.163     stevesk  3417:                hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
1.35      markus   3418:                hints.ai_socktype = SOCK_STREAM;
                   3419:                snprintf(strport, sizeof strport, "%d", port);
                   3420:                if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1.271     dtucker  3421:                        error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
1.141     stevesk  3422:                        return -1;
1.25      markus   3423:                }
1.35      markus   3424:                for (ai = aitop; ai; ai = ai->ai_next) {
                   3425:                        if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
                   3426:                                continue;
1.300     dtucker  3427:                        sock = socket(ai->ai_family, ai->ai_socktype,
                   3428:                            ai->ai_protocol);
1.35      markus   3429:                        if (sock < 0) {
                   3430:                                error("socket: %.100s", strerror(errno));
1.203     markus   3431:                                freeaddrinfo(aitop);
1.141     stevesk  3432:                                return -1;
1.35      markus   3433:                        }
1.226     djm      3434:                        channel_set_reuseaddr(sock);
1.35      markus   3435:                        if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1.194     markus   3436:                                debug2("bind port %d: %.100s", port, strerror(errno));
1.35      markus   3437:                                close(sock);
1.183     itojun   3438:
1.35      markus   3439:                                for (n = 0; n < num_socks; n++) {
                   3440:                                        close(socks[n]);
                   3441:                                }
                   3442:                                num_socks = 0;
                   3443:                                break;
                   3444:                        }
                   3445:                        socks[num_socks++] = sock;
                   3446:                        if (num_socks == NUM_SOCKS)
                   3447:                                break;
1.25      markus   3448:                }
1.83      stevesk  3449:                freeaddrinfo(aitop);
1.35      markus   3450:                if (num_socks > 0)
                   3451:                        break;
1.25      markus   3452:        }
                   3453:        if (display_number >= MAX_DISPLAYS) {
                   3454:                error("Failed to allocate internet-domain X11 display socket.");
1.141     stevesk  3455:                return -1;
1.25      markus   3456:        }
                   3457:        /* Start listening for connections on the socket. */
1.35      markus   3458:        for (n = 0; n < num_socks; n++) {
                   3459:                sock = socks[n];
1.199     markus   3460:                if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
1.35      markus   3461:                        error("listen: %.100s", strerror(errno));
                   3462:                        close(sock);
1.141     stevesk  3463:                        return -1;
1.35      markus   3464:                }
1.25      markus   3465:        }
1.35      markus   3466:
                   3467:        /* Allocate a channel for each socket. */
1.242     djm      3468:        *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
1.35      markus   3469:        for (n = 0; n < num_socks; n++) {
                   3470:                sock = socks[n];
1.149     markus   3471:                nc = channel_new("x11 listener",
1.51      markus   3472:                    SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
                   3473:                    CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
1.190     markus   3474:                    0, "X11 inet listener", 1);
1.167     markus   3475:                nc->single_connection = single_connection;
1.224     markus   3476:                (*chanids)[n] = nc->self;
1.35      markus   3477:        }
1.224     markus   3478:        (*chanids)[n] = -1;
1.1       deraadt  3479:
1.141     stevesk  3480:        /* Return the display number for the DISPLAY environment variable. */
1.176     deraadt  3481:        *display_numberp = display_number;
                   3482:        return (0);
1.1       deraadt  3483: }
                   3484:
1.127     itojun   3485: static int
1.77      markus   3486: connect_local_xsocket(u_int dnr)
1.1       deraadt  3487: {
1.25      markus   3488:        int sock;
                   3489:        struct sockaddr_un addr;
                   3490:
1.147     stevesk  3491:        sock = socket(AF_UNIX, SOCK_STREAM, 0);
                   3492:        if (sock < 0)
                   3493:                error("socket: %.100s", strerror(errno));
                   3494:        memset(&addr, 0, sizeof(addr));
                   3495:        addr.sun_family = AF_UNIX;
                   3496:        snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
1.239     deraadt  3497:        if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
1.147     stevesk  3498:                return sock;
                   3499:        close(sock);
1.25      markus   3500:        error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
                   3501:        return -1;
1.1       deraadt  3502: }
                   3503:
1.51      markus   3504: int
                   3505: x11_connect_display(void)
1.1       deraadt  3506: {
1.248     deraadt  3507:        u_int display_number;
1.25      markus   3508:        const char *display;
1.51      markus   3509:        char buf[1024], *cp;
1.35      markus   3510:        struct addrinfo hints, *ai, *aitop;
                   3511:        char strport[NI_MAXSERV];
1.248     deraadt  3512:        int gaierr, sock = 0;
1.25      markus   3513:
                   3514:        /* Try to open a socket for the local X server. */
                   3515:        display = getenv("DISPLAY");
                   3516:        if (!display) {
                   3517:                error("DISPLAY not set.");
1.51      markus   3518:                return -1;
1.25      markus   3519:        }
1.27      markus   3520:        /*
                   3521:         * Now we decode the value of the DISPLAY variable and make a
                   3522:         * connection to the real X server.
                   3523:         */
                   3524:
                   3525:        /*
                   3526:         * Check if it is a unix domain socket.  Unix domain displays are in
                   3527:         * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
                   3528:         */
1.25      markus   3529:        if (strncmp(display, "unix:", 5) == 0 ||
                   3530:            display[0] == ':') {
                   3531:                /* Connect to the unix domain socket. */
1.248     deraadt  3532:                if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
1.25      markus   3533:                        error("Could not parse display number from DISPLAY: %.100s",
1.148     deraadt  3534:                            display);
1.51      markus   3535:                        return -1;
1.25      markus   3536:                }
                   3537:                /* Create a socket. */
                   3538:                sock = connect_local_xsocket(display_number);
                   3539:                if (sock < 0)
1.51      markus   3540:                        return -1;
1.25      markus   3541:
                   3542:                /* OK, we now have a connection to the display. */
1.51      markus   3543:                return sock;
1.25      markus   3544:        }
1.27      markus   3545:        /*
                   3546:         * Connect to an inet socket.  The DISPLAY value is supposedly
                   3547:         * hostname:d[.s], where hostname may also be numeric IP address.
                   3548:         */
1.145     stevesk  3549:        strlcpy(buf, display, sizeof(buf));
1.25      markus   3550:        cp = strchr(buf, ':');
                   3551:        if (!cp) {
                   3552:                error("Could not find ':' in DISPLAY: %.100s", display);
1.51      markus   3553:                return -1;
1.25      markus   3554:        }
                   3555:        *cp = 0;
1.27      markus   3556:        /* buf now contains the host name.  But first we parse the display number. */
1.248     deraadt  3557:        if (sscanf(cp + 1, "%u", &display_number) != 1) {
1.25      markus   3558:                error("Could not parse display number from DISPLAY: %.100s",
1.148     deraadt  3559:                    display);
1.51      markus   3560:                return -1;
1.25      markus   3561:        }
1.35      markus   3562:
                   3563:        /* Look up the host address */
                   3564:        memset(&hints, 0, sizeof(hints));
                   3565:        hints.ai_family = IPv4or6;
                   3566:        hints.ai_socktype = SOCK_STREAM;
1.248     deraadt  3567:        snprintf(strport, sizeof strport, "%u", 6000 + display_number);
1.35      markus   3568:        if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
1.271     dtucker  3569:                error("%.100s: unknown host. (%s)", buf,
                   3570:                ssh_gai_strerror(gaierr));
1.51      markus   3571:                return -1;
1.25      markus   3572:        }
1.35      markus   3573:        for (ai = aitop; ai; ai = ai->ai_next) {
                   3574:                /* Create a socket. */
1.300     dtucker  3575:                sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1.35      markus   3576:                if (sock < 0) {
1.194     markus   3577:                        debug2("socket: %.100s", strerror(errno));
1.41      markus   3578:                        continue;
                   3579:                }
                   3580:                /* Connect it to the display. */
                   3581:                if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1.248     deraadt  3582:                        debug2("connect %.100s port %u: %.100s", buf,
1.41      markus   3583:                            6000 + display_number, strerror(errno));
                   3584:                        close(sock);
                   3585:                        continue;
                   3586:                }
                   3587:                /* Success */
                   3588:                break;
1.35      markus   3589:        }
                   3590:        freeaddrinfo(aitop);
                   3591:        if (!ai) {
1.248     deraadt  3592:                error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
1.35      markus   3593:                    strerror(errno));
1.51      markus   3594:                return -1;
1.25      markus   3595:        }
1.162     stevesk  3596:        set_nodelay(sock);
1.51      markus   3597:        return sock;
                   3598: }
                   3599:
                   3600: /*
                   3601:  * This is called when SSH_SMSG_X11_OPEN is received.  The packet contains
                   3602:  * the remote channel number.  We should do whatever we want, and respond
                   3603:  * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
                   3604:  */
                   3605:
1.259     stevesk  3606: /* ARGSUSED */
1.51      markus   3607: void
1.154     markus   3608: x11_input_open(int type, u_int32_t seq, void *ctxt)
1.51      markus   3609: {
1.113     markus   3610:        Channel *c = NULL;
                   3611:        int remote_id, sock = 0;
1.51      markus   3612:        char *remote_host;
1.25      markus   3613:
1.113     markus   3614:        debug("Received X11 open request.");
1.51      markus   3615:
1.113     markus   3616:        remote_id = packet_get_int();
1.121     markus   3617:
                   3618:        if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1.113     markus   3619:                remote_host = packet_get_string(NULL);
1.51      markus   3620:        } else {
                   3621:                remote_host = xstrdup("unknown (remote did not supply name)");
                   3622:        }
1.152     markus   3623:        packet_check_eom();
1.25      markus   3624:
1.51      markus   3625:        /* Obtain a connection to the real X display. */
                   3626:        sock = x11_connect_display();
1.113     markus   3627:        if (sock != -1) {
                   3628:                /* Allocate a channel for this connection. */
                   3629:                c = channel_new("connected x11 socket",
                   3630:                    SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
                   3631:                    remote_host, 1);
1.167     markus   3632:                c->remote_id = remote_id;
                   3633:                c->force_drain = 1;
1.113     markus   3634:        }
1.321     djm      3635:        free(remote_host);
1.113     markus   3636:        if (c == NULL) {
1.51      markus   3637:                /* Send refusal to the remote host. */
                   3638:                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1.113     markus   3639:                packet_put_int(remote_id);
1.51      markus   3640:        } else {
                   3641:                /* Send a confirmation to the remote host. */
                   3642:                packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1.113     markus   3643:                packet_put_int(remote_id);
                   3644:                packet_put_int(c->self);
1.51      markus   3645:        }
1.113     markus   3646:        packet_send();
1.72      markus   3647: }
                   3648:
                   3649: /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
1.259     stevesk  3650: /* ARGSUSED */
1.72      markus   3651: void
1.154     markus   3652: deny_input_open(int type, u_int32_t seq, void *ctxt)
1.72      markus   3653: {
                   3654:        int rchan = packet_get_int();
1.180     deraadt  3655:
1.143     deraadt  3656:        switch (type) {
1.72      markus   3657:        case SSH_SMSG_AGENT_OPEN:
                   3658:                error("Warning: ssh server tried agent forwarding.");
                   3659:                break;
                   3660:        case SSH_SMSG_X11_OPEN:
                   3661:                error("Warning: ssh server tried X11 forwarding.");
                   3662:                break;
                   3663:        default:
1.154     markus   3664:                error("deny_input_open: type %d", type);
1.72      markus   3665:                break;
                   3666:        }
1.230     stevesk  3667:        error("Warning: this is probably a break-in attempt by a malicious server.");
1.72      markus   3668:        packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   3669:        packet_put_int(rchan);
                   3670:        packet_send();
1.1       deraadt  3671: }
                   3672:
1.27      markus   3673: /*
                   3674:  * Requests forwarding of X11 connections, generates fake authentication
                   3675:  * data, and enables authentication spoofing.
1.121     markus   3676:  * This should be called in the client only.
1.27      markus   3677:  */
1.49      markus   3678: void
1.215     djm      3679: x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
1.311     djm      3680:     const char *proto, const char *data, int want_reply)
1.1       deraadt  3681: {
1.77      markus   3682:        u_int data_len = (u_int) strlen(data) / 2;
1.219     djm      3683:        u_int i, value;
1.25      markus   3684:        char *new_data;
                   3685:        int screen_number;
                   3686:        const char *cp;
1.207     avsm     3687:        u_int32_t rnd = 0;
1.25      markus   3688:
1.220     markus   3689:        if (x11_saved_display == NULL)
                   3690:                x11_saved_display = xstrdup(disp);
                   3691:        else if (strcmp(disp, x11_saved_display) != 0) {
1.219     djm      3692:                error("x11_request_forwarding_with_spoofing: different "
                   3693:                    "$DISPLAY already forwarded");
                   3694:                return;
                   3695:        }
                   3696:
1.266     djm      3697:        cp = strchr(disp, ':');
1.25      markus   3698:        if (cp)
                   3699:                cp = strchr(cp, '.');
                   3700:        if (cp)
1.245     deraadt  3701:                screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
1.25      markus   3702:        else
                   3703:                screen_number = 0;
                   3704:
1.219     djm      3705:        if (x11_saved_proto == NULL) {
                   3706:                /* Save protocol name. */
                   3707:                x11_saved_proto = xstrdup(proto);
                   3708:                /*
1.221     djm      3709:                 * Extract real authentication data and generate fake data
1.219     djm      3710:                 * of the same length.
                   3711:                 */
                   3712:                x11_saved_data = xmalloc(data_len);
                   3713:                x11_fake_data = xmalloc(data_len);
                   3714:                for (i = 0; i < data_len; i++) {
                   3715:                        if (sscanf(data + 2 * i, "%2x", &value) != 1)
                   3716:                                fatal("x11_request_forwarding: bad "
                   3717:                                    "authentication data: %.100s", data);
                   3718:                        if (i % 4 == 0)
                   3719:                                rnd = arc4random();
                   3720:                        x11_saved_data[i] = value;
                   3721:                        x11_fake_data[i] = rnd & 0xff;
                   3722:                        rnd >>= 8;
                   3723:                }
                   3724:                x11_saved_data_len = data_len;
                   3725:                x11_fake_data_len = data_len;
1.25      markus   3726:        }
                   3727:
                   3728:        /* Convert the fake data into hex. */
1.219     djm      3729:        new_data = tohex(x11_fake_data, data_len);
1.25      markus   3730:
                   3731:        /* Send the request packet. */
1.51      markus   3732:        if (compat20) {
1.311     djm      3733:                channel_request_start(client_session_id, "x11-req", want_reply);
1.51      markus   3734:                packet_put_char(0);     /* XXX bool single connection */
                   3735:        } else {
                   3736:                packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
                   3737:        }
                   3738:        packet_put_cstring(proto);
                   3739:        packet_put_cstring(new_data);
1.25      markus   3740:        packet_put_int(screen_number);
                   3741:        packet_send();
                   3742:        packet_write_wait();
1.321     djm      3743:        free(new_data);
1.1       deraadt  3744: }
                   3745:
1.121     markus   3746:
                   3747: /* -- agent forwarding */
                   3748:
1.1       deraadt  3749: /* Sends a message to the server to request authentication fd forwarding. */
                   3750:
1.49      markus   3751: void
1.142     itojun   3752: auth_request_forwarding(void)
1.1       deraadt  3753: {
1.25      markus   3754:        packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
                   3755:        packet_send();
                   3756:        packet_write_wait();
1.1       deraadt  3757: }