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

1.325   ! djm         1: /* $OpenBSD: channels.c,v 1.324 2013/07/12 00:19:58 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);
                    418:                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:
                    699:        cc = xmalloc(sizeof(*cc));
                    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);
                   1067:        len = strlen(p);
1.106     markus   1068:        debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
1.292     djm      1069:        len++;                                  /* trailing '\0' */
1.103     markus   1070:        if (len > have)
1.104     markus   1071:                fatal("channel %d: decode socks4: len %d > have %d",
1.103     markus   1072:                    c->self, len, have);
                   1073:        strlcpy(username, p, sizeof(username));
                   1074:        buffer_consume(&c->input, len);
                   1075:
1.321     djm      1076:        free(c->path);
                   1077:        c->path = NULL;
1.292     djm      1078:        if (need == 1) {                        /* SOCKS4: one string */
                   1079:                host = inet_ntoa(s4_req.dest_addr);
1.293     djm      1080:                c->path = xstrdup(host);
1.292     djm      1081:        } else {                                /* SOCKS4A: two strings */
                   1082:                have = buffer_len(&c->input);
                   1083:                p = buffer_ptr(&c->input);
                   1084:                len = strlen(p);
                   1085:                debug2("channel %d: decode socks4a: host %s/%d",
                   1086:                    c->self, p, len);
                   1087:                len++;                          /* trailing '\0' */
                   1088:                if (len > have)
                   1089:                        fatal("channel %d: decode socks4a: len %d > have %d",
                   1090:                            c->self, len, have);
1.293     djm      1091:                if (len > NI_MAXHOST) {
1.292     djm      1092:                        error("channel %d: hostname \"%.100s\" too long",
                   1093:                            c->self, p);
                   1094:                        return -1;
                   1095:                }
1.293     djm      1096:                c->path = xstrdup(p);
1.292     djm      1097:                buffer_consume(&c->input, len);
                   1098:        }
1.103     markus   1099:        c->host_port = ntohs(s4_req.dest_port);
1.148     deraadt  1100:
1.194     markus   1101:        debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
1.292     djm      1102:            c->self, c->path, c->host_port, s4_req.command);
1.103     markus   1103:
1.104     markus   1104:        if (s4_req.command != 1) {
1.292     djm      1105:                debug("channel %d: cannot handle: %s cn %d",
                   1106:                    c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
1.104     markus   1107:                return -1;
1.103     markus   1108:        }
1.104     markus   1109:        s4_rsp.version = 0;                     /* vn: 0 for reply */
                   1110:        s4_rsp.command = 90;                    /* cd: req granted */
1.103     markus   1111:        s4_rsp.dest_port = 0;                   /* ignored */
1.104     markus   1112:        s4_rsp.dest_addr.s_addr = INADDR_ANY;   /* ignored */
1.246     deraadt  1113:        buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
1.104     markus   1114:        return 1;
                   1115: }
                   1116:
1.193     markus   1117: /* try to decode a socks5 header */
                   1118: #define SSH_SOCKS5_AUTHDONE    0x1000
                   1119: #define SSH_SOCKS5_NOAUTH      0x00
                   1120: #define SSH_SOCKS5_IPV4                0x01
                   1121: #define SSH_SOCKS5_DOMAIN      0x03
                   1122: #define SSH_SOCKS5_IPV6                0x04
                   1123: #define SSH_SOCKS5_CONNECT     0x01
                   1124: #define SSH_SOCKS5_SUCCESS     0x00
                   1125:
1.259     stevesk  1126: /* ARGSUSED */
1.193     markus   1127: static int
1.237     deraadt  1128: channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
1.193     markus   1129: {
                   1130:        struct {
                   1131:                u_int8_t version;
                   1132:                u_int8_t command;
                   1133:                u_int8_t reserved;
                   1134:                u_int8_t atyp;
                   1135:        } s5_req, s5_rsp;
                   1136:        u_int16_t dest_port;
1.324     djm      1137:        char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
                   1138:        u_char *p;
1.252     djm      1139:        u_int have, need, i, found, nmethods, addrlen, af;
1.193     markus   1140:
                   1141:        debug2("channel %d: decode socks5", c->self);
                   1142:        p = buffer_ptr(&c->input);
                   1143:        if (p[0] != 0x05)
                   1144:                return -1;
                   1145:        have = buffer_len(&c->input);
                   1146:        if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
                   1147:                /* format: ver | nmethods | methods */
1.198     djm      1148:                if (have < 2)
1.193     markus   1149:                        return 0;
                   1150:                nmethods = p[1];
                   1151:                if (have < nmethods + 2)
                   1152:                        return 0;
                   1153:                /* look for method: "NO AUTHENTICATION REQUIRED" */
1.268     stevesk  1154:                for (found = 0, i = 2; i < nmethods + 2; i++) {
1.264     stevesk  1155:                        if (p[i] == SSH_SOCKS5_NOAUTH) {
1.193     markus   1156:                                found = 1;
                   1157:                                break;
                   1158:                        }
                   1159:                }
                   1160:                if (!found) {
                   1161:                        debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
                   1162:                            c->self);
                   1163:                        return -1;
                   1164:                }
                   1165:                buffer_consume(&c->input, nmethods + 2);
                   1166:                buffer_put_char(&c->output, 0x05);              /* version */
                   1167:                buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
                   1168:                FD_SET(c->sock, writeset);
                   1169:                c->flags |= SSH_SOCKS5_AUTHDONE;
                   1170:                debug2("channel %d: socks5 auth done", c->self);
                   1171:                return 0;                               /* need more */
                   1172:        }
                   1173:        debug2("channel %d: socks5 post auth", c->self);
                   1174:        if (have < sizeof(s5_req)+1)
                   1175:                return 0;                       /* need more */
1.247     deraadt  1176:        memcpy(&s5_req, p, sizeof(s5_req));
1.193     markus   1177:        if (s5_req.version != 0x05 ||
                   1178:            s5_req.command != SSH_SOCKS5_CONNECT ||
                   1179:            s5_req.reserved != 0x00) {
1.194     markus   1180:                debug2("channel %d: only socks5 connect supported", c->self);
1.193     markus   1181:                return -1;
                   1182:        }
1.213     deraadt  1183:        switch (s5_req.atyp){
1.193     markus   1184:        case SSH_SOCKS5_IPV4:
                   1185:                addrlen = 4;
                   1186:                af = AF_INET;
                   1187:                break;
                   1188:        case SSH_SOCKS5_DOMAIN:
                   1189:                addrlen = p[sizeof(s5_req)];
                   1190:                af = -1;
                   1191:                break;
                   1192:        case SSH_SOCKS5_IPV6:
                   1193:                addrlen = 16;
                   1194:                af = AF_INET6;
                   1195:                break;
                   1196:        default:
1.194     markus   1197:                debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
1.193     markus   1198:                return -1;
                   1199:        }
1.252     djm      1200:        need = sizeof(s5_req) + addrlen + 2;
                   1201:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
                   1202:                need++;
                   1203:        if (have < need)
1.193     markus   1204:                return 0;
                   1205:        buffer_consume(&c->input, sizeof(s5_req));
                   1206:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
                   1207:                buffer_consume(&c->input, 1);    /* host string length */
1.324     djm      1208:        buffer_get(&c->input, &dest_addr, addrlen);
1.193     markus   1209:        buffer_get(&c->input, (char *)&dest_port, 2);
                   1210:        dest_addr[addrlen] = '\0';
1.321     djm      1211:        free(c->path);
                   1212:        c->path = NULL;
1.293     djm      1213:        if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1.294     djm      1214:                if (addrlen >= NI_MAXHOST) {
1.293     djm      1215:                        error("channel %d: dynamic request: socks5 hostname "
                   1216:                            "\"%.100s\" too long", c->self, dest_addr);
                   1217:                        return -1;
                   1218:                }
                   1219:                c->path = xstrdup(dest_addr);
                   1220:        } else {
                   1221:                if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
                   1222:                        return -1;
                   1223:                c->path = xstrdup(ntop);
                   1224:        }
1.193     markus   1225:        c->host_port = ntohs(dest_port);
1.198     djm      1226:
1.194     markus   1227:        debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
1.193     markus   1228:            c->self, c->path, c->host_port, s5_req.command);
                   1229:
                   1230:        s5_rsp.version = 0x05;
                   1231:        s5_rsp.command = SSH_SOCKS5_SUCCESS;
                   1232:        s5_rsp.reserved = 0;                    /* ignored */
                   1233:        s5_rsp.atyp = SSH_SOCKS5_IPV4;
                   1234:        dest_port = 0;                          /* ignored */
                   1235:
1.246     deraadt  1236:        buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1.325   ! djm      1237:        buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
1.246     deraadt  1238:        buffer_append(&c->output, &dest_port, sizeof(dest_port));
1.193     markus   1239:        return 1;
1.301     dtucker  1240: }
                   1241:
                   1242: Channel *
1.302     djm      1243: channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
                   1244:     int in, int out)
1.301     dtucker  1245: {
                   1246:        Channel *c;
                   1247:
                   1248:        debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
                   1249:            port_to_connect);
                   1250:
                   1251:        c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
                   1252:            -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
                   1253:            0, "stdio-forward", /*nonblock*/0);
                   1254:
                   1255:        c->path = xstrdup(host_to_connect);
                   1256:        c->host_port = port_to_connect;
                   1257:        c->listening_port = 0;
                   1258:        c->force_drain = 1;
                   1259:
                   1260:        channel_register_fds(c, in, out, -1, 0, 1, 0);
                   1261:        port_open_helper(c, "direct-tcpip");
                   1262:
                   1263:        return c;
1.193     markus   1264: }
                   1265:
1.104     markus   1266: /* dynamic port forwarding */
1.127     itojun   1267: static void
1.237     deraadt  1268: channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
1.104     markus   1269: {
                   1270:        u_char *p;
1.217     djm      1271:        u_int have;
                   1272:        int ret;
1.103     markus   1273:
1.104     markus   1274:        have = buffer_len(&c->input);
                   1275:        debug2("channel %d: pre_dynamic: have %d", c->self, have);
1.105     markus   1276:        /* buffer_dump(&c->input); */
1.104     markus   1277:        /* check if the fixed size part of the packet is in buffer. */
1.193     markus   1278:        if (have < 3) {
1.104     markus   1279:                /* need more */
                   1280:                FD_SET(c->sock, readset);
                   1281:                return;
                   1282:        }
                   1283:        /* try to guess the protocol */
                   1284:        p = buffer_ptr(&c->input);
                   1285:        switch (p[0]) {
                   1286:        case 0x04:
                   1287:                ret = channel_decode_socks4(c, readset, writeset);
1.193     markus   1288:                break;
                   1289:        case 0x05:
                   1290:                ret = channel_decode_socks5(c, readset, writeset);
1.104     markus   1291:                break;
                   1292:        default:
                   1293:                ret = -1;
                   1294:                break;
                   1295:        }
                   1296:        if (ret < 0) {
1.113     markus   1297:                chan_mark_dead(c);
1.104     markus   1298:        } else if (ret == 0) {
                   1299:                debug2("channel %d: pre_dynamic: need more", c->self);
                   1300:                /* need more */
                   1301:                FD_SET(c->sock, readset);
                   1302:        } else {
                   1303:                /* switch to the next state */
                   1304:                c->type = SSH_CHANNEL_OPENING;
                   1305:                port_open_helper(c, "direct-tcpip");
                   1306:        }
1.103     markus   1307: }
                   1308:
1.41      markus   1309: /* This is our fake X11 server socket. */
1.259     stevesk  1310: /* ARGSUSED */
1.127     itojun   1311: static void
1.237     deraadt  1312: channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1313: {
1.113     markus   1314:        Channel *nc;
1.285     djm      1315:        struct sockaddr_storage addr;
1.320     markus   1316:        int newsock, oerrno;
1.41      markus   1317:        socklen_t addrlen;
1.85      markus   1318:        char buf[16384], *remote_ipaddr;
1.51      markus   1319:        int remote_port;
1.25      markus   1320:
1.41      markus   1321:        if (FD_ISSET(c->sock, readset)) {
                   1322:                debug("X11 connection requested.");
                   1323:                addrlen = sizeof(addr);
1.285     djm      1324:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.149     markus   1325:                if (c->single_connection) {
1.320     markus   1326:                        oerrno = errno;
1.194     markus   1327:                        debug2("single_connection: closing X11 listener.");
1.149     markus   1328:                        channel_close_fd(&c->sock);
                   1329:                        chan_mark_dead(c);
1.320     markus   1330:                        errno = oerrno;
1.149     markus   1331:                }
1.41      markus   1332:                if (newsock < 0) {
1.320     markus   1333:                        if (errno != EINTR && errno != EWOULDBLOCK &&
                   1334:                            errno != ECONNABORTED)
                   1335:                                error("accept: %.100s", strerror(errno));
1.317     djm      1336:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1337:                                c->notbefore = monotime() + 1;
1.41      markus   1338:                        return;
                   1339:                }
1.162     stevesk  1340:                set_nodelay(newsock);
1.85      markus   1341:                remote_ipaddr = get_peer_ipaddr(newsock);
1.51      markus   1342:                remote_port = get_peer_port(newsock);
1.41      markus   1343:                snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1.85      markus   1344:                    remote_ipaddr, remote_port);
1.51      markus   1345:
1.113     markus   1346:                nc = channel_new("accepted x11 socket",
1.51      markus   1347:                    SSH_CHANNEL_OPENING, newsock, newsock, -1,
1.190     markus   1348:                    c->local_window_max, c->local_maxpacket, 0, buf, 1);
1.51      markus   1349:                if (compat20) {
                   1350:                        packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1351:                        packet_put_cstring("x11");
1.113     markus   1352:                        packet_put_int(nc->self);
1.149     markus   1353:                        packet_put_int(nc->local_window_max);
                   1354:                        packet_put_int(nc->local_maxpacket);
1.85      markus   1355:                        /* originator ipaddr and port */
                   1356:                        packet_put_cstring(remote_ipaddr);
1.57      markus   1357:                        if (datafellows & SSH_BUG_X11FWD) {
1.194     markus   1358:                                debug2("ssh2 x11 bug compat mode");
1.57      markus   1359:                        } else {
                   1360:                                packet_put_int(remote_port);
                   1361:                        }
1.51      markus   1362:                        packet_send();
                   1363:                } else {
                   1364:                        packet_start(SSH_SMSG_X11_OPEN);
1.113     markus   1365:                        packet_put_int(nc->self);
1.121     markus   1366:                        if (packet_get_protocol_flags() &
                   1367:                            SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
1.125     markus   1368:                                packet_put_cstring(buf);
1.51      markus   1369:                        packet_send();
                   1370:                }
1.321     djm      1371:                free(remote_ipaddr);
1.41      markus   1372:        }
                   1373: }
1.25      markus   1374:
1.127     itojun   1375: static void
1.103     markus   1376: port_open_helper(Channel *c, char *rtype)
                   1377: {
                   1378:        int direct;
                   1379:        char buf[1024];
                   1380:        char *remote_ipaddr = get_peer_ipaddr(c->sock);
1.216     markus   1381:        int remote_port = get_peer_port(c->sock);
1.303     djm      1382:
                   1383:        if (remote_port == -1) {
                   1384:                /* Fake addr/port to appease peers that validate it (Tectia) */
1.321     djm      1385:                free(remote_ipaddr);
1.303     djm      1386:                remote_ipaddr = xstrdup("127.0.0.1");
                   1387:                remote_port = 65535;
                   1388:        }
1.103     markus   1389:
                   1390:        direct = (strcmp(rtype, "direct-tcpip") == 0);
                   1391:
                   1392:        snprintf(buf, sizeof buf,
                   1393:            "%s: listening port %d for %.100s port %d, "
                   1394:            "connect from %.200s port %d",
                   1395:            rtype, c->listening_port, c->path, c->host_port,
                   1396:            remote_ipaddr, remote_port);
                   1397:
1.321     djm      1398:        free(c->remote_name);
1.103     markus   1399:        c->remote_name = xstrdup(buf);
                   1400:
                   1401:        if (compat20) {
                   1402:                packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1403:                packet_put_cstring(rtype);
                   1404:                packet_put_int(c->self);
                   1405:                packet_put_int(c->local_window_max);
                   1406:                packet_put_int(c->local_maxpacket);
                   1407:                if (direct) {
                   1408:                        /* target host, port */
                   1409:                        packet_put_cstring(c->path);
                   1410:                        packet_put_int(c->host_port);
                   1411:                } else {
                   1412:                        /* listen address, port */
                   1413:                        packet_put_cstring(c->path);
                   1414:                        packet_put_int(c->listening_port);
                   1415:                }
                   1416:                /* originator host and port */
                   1417:                packet_put_cstring(remote_ipaddr);
1.216     markus   1418:                packet_put_int((u_int)remote_port);
1.103     markus   1419:                packet_send();
                   1420:        } else {
                   1421:                packet_start(SSH_MSG_PORT_OPEN);
                   1422:                packet_put_int(c->self);
                   1423:                packet_put_cstring(c->path);
                   1424:                packet_put_int(c->host_port);
1.121     markus   1425:                if (packet_get_protocol_flags() &
                   1426:                    SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
1.103     markus   1427:                        packet_put_cstring(c->remote_name);
                   1428:                packet_send();
                   1429:        }
1.321     djm      1430:        free(remote_ipaddr);
1.103     markus   1431: }
                   1432:
1.226     djm      1433: static void
                   1434: channel_set_reuseaddr(int fd)
                   1435: {
                   1436:        int on = 1;
                   1437:
                   1438:        /*
                   1439:         * Set socket options.
                   1440:         * Allow local port reuse in TIME_WAIT.
                   1441:         */
                   1442:        if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
                   1443:                error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
                   1444: }
                   1445:
1.41      markus   1446: /*
                   1447:  * This socket is listening for connections to a forwarded TCP/IP port.
                   1448:  */
1.259     stevesk  1449: /* ARGSUSED */
1.127     itojun   1450: static void
1.237     deraadt  1451: channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1452: {
1.103     markus   1453:        Channel *nc;
1.285     djm      1454:        struct sockaddr_storage addr;
1.113     markus   1455:        int newsock, nextstate;
1.41      markus   1456:        socklen_t addrlen;
1.103     markus   1457:        char *rtype;
1.73      markus   1458:
1.41      markus   1459:        if (FD_ISSET(c->sock, readset)) {
                   1460:                debug("Connection to port %d forwarding "
                   1461:                    "to %.100s port %d requested.",
                   1462:                    c->listening_port, c->path, c->host_port);
1.103     markus   1463:
1.137     markus   1464:                if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
                   1465:                        nextstate = SSH_CHANNEL_OPENING;
                   1466:                        rtype = "forwarded-tcpip";
                   1467:                } else {
                   1468:                        if (c->host_port == 0) {
                   1469:                                nextstate = SSH_CHANNEL_DYNAMIC;
1.138     markus   1470:                                rtype = "dynamic-tcpip";
1.137     markus   1471:                        } else {
                   1472:                                nextstate = SSH_CHANNEL_OPENING;
                   1473:                                rtype = "direct-tcpip";
                   1474:                        }
                   1475:                }
1.103     markus   1476:
1.41      markus   1477:                addrlen = sizeof(addr);
1.285     djm      1478:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.41      markus   1479:                if (newsock < 0) {
1.320     markus   1480:                        if (errno != EINTR && errno != EWOULDBLOCK &&
                   1481:                            errno != ECONNABORTED)
                   1482:                                error("accept: %.100s", strerror(errno));
1.317     djm      1483:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1484:                                c->notbefore = monotime() + 1;
1.41      markus   1485:                        return;
                   1486:                }
1.169     stevesk  1487:                set_nodelay(newsock);
1.190     markus   1488:                nc = channel_new(rtype, nextstate, newsock, newsock, -1,
                   1489:                    c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1.103     markus   1490:                nc->listening_port = c->listening_port;
                   1491:                nc->host_port = c->host_port;
1.293     djm      1492:                if (c->path != NULL)
                   1493:                        nc->path = xstrdup(c->path);
1.103     markus   1494:
1.299     markus   1495:                if (nextstate != SSH_CHANNEL_DYNAMIC)
1.103     markus   1496:                        port_open_helper(nc, rtype);
1.41      markus   1497:        }
                   1498: }
1.25      markus   1499:
1.41      markus   1500: /*
                   1501:  * This is the authentication agent socket listening for connections from
                   1502:  * clients.
                   1503:  */
1.259     stevesk  1504: /* ARGSUSED */
1.127     itojun   1505: static void
1.237     deraadt  1506: channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1507: {
1.113     markus   1508:        Channel *nc;
                   1509:        int newsock;
1.285     djm      1510:        struct sockaddr_storage addr;
1.41      markus   1511:        socklen_t addrlen;
1.25      markus   1512:
1.41      markus   1513:        if (FD_ISSET(c->sock, readset)) {
                   1514:                addrlen = sizeof(addr);
1.285     djm      1515:                newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1.41      markus   1516:                if (newsock < 0) {
1.317     djm      1517:                        error("accept from auth socket: %.100s",
                   1518:                            strerror(errno));
                   1519:                        if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1520:                                c->notbefore = monotime() + 1;
1.41      markus   1521:                        return;
                   1522:                }
1.113     markus   1523:                nc = channel_new("accepted auth socket",
1.73      markus   1524:                    SSH_CHANNEL_OPENING, newsock, newsock, -1,
                   1525:                    c->local_window_max, c->local_maxpacket,
1.190     markus   1526:                    0, "accepted auth socket", 1);
1.73      markus   1527:                if (compat20) {
                   1528:                        packet_start(SSH2_MSG_CHANNEL_OPEN);
                   1529:                        packet_put_cstring("auth-agent@openssh.com");
1.113     markus   1530:                        packet_put_int(nc->self);
1.73      markus   1531:                        packet_put_int(c->local_window_max);
                   1532:                        packet_put_int(c->local_maxpacket);
                   1533:                } else {
                   1534:                        packet_start(SSH_SMSG_AGENT_OPEN);
1.113     markus   1535:                        packet_put_int(nc->self);
1.73      markus   1536:                }
1.41      markus   1537:                packet_send();
                   1538:        }
                   1539: }
1.25      markus   1540:
1.259     stevesk  1541: /* ARGSUSED */
1.127     itojun   1542: static void
1.237     deraadt  1543: channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
1.75      markus   1544: {
1.276     djm      1545:        int err = 0, sock;
1.129     stevesk  1546:        socklen_t sz = sizeof(err);
1.114     markus   1547:
1.75      markus   1548:        if (FD_ISSET(c->sock, writeset)) {
1.170     stevesk  1549:                if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1.114     markus   1550:                        err = errno;
                   1551:                        error("getsockopt SO_ERROR failed");
                   1552:                }
                   1553:                if (err == 0) {
1.276     djm      1554:                        debug("channel %d: connected to %s port %d",
                   1555:                            c->self, c->connect_ctx.host, c->connect_ctx.port);
                   1556:                        channel_connect_ctx_free(&c->connect_ctx);
1.114     markus   1557:                        c->type = SSH_CHANNEL_OPEN;
                   1558:                        if (compat20) {
                   1559:                                packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
                   1560:                                packet_put_int(c->remote_id);
                   1561:                                packet_put_int(c->self);
                   1562:                                packet_put_int(c->local_window);
                   1563:                                packet_put_int(c->local_maxpacket);
                   1564:                        } else {
                   1565:                                packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
                   1566:                                packet_put_int(c->remote_id);
                   1567:                                packet_put_int(c->self);
                   1568:                        }
1.75      markus   1569:                } else {
1.276     djm      1570:                        debug("channel %d: connection failed: %s",
1.114     markus   1571:                            c->self, strerror(err));
1.276     djm      1572:                        /* Try next address, if any */
                   1573:                        if ((sock = connect_next(&c->connect_ctx)) > 0) {
                   1574:                                close(c->sock);
                   1575:                                c->sock = c->rfd = c->wfd = sock;
                   1576:                                channel_max_fd = channel_find_maxfd();
                   1577:                                return;
                   1578:                        }
                   1579:                        /* Exhausted all addresses */
                   1580:                        error("connect_to %.100s port %d: failed.",
                   1581:                            c->connect_ctx.host, c->connect_ctx.port);
                   1582:                        channel_connect_ctx_free(&c->connect_ctx);
1.114     markus   1583:                        if (compat20) {
                   1584:                                packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
                   1585:                                packet_put_int(c->remote_id);
                   1586:                                packet_put_int(SSH2_OPEN_CONNECT_FAILED);
                   1587:                                if (!(datafellows & SSH_BUG_OPENFAILURE)) {
                   1588:                                        packet_put_cstring(strerror(err));
                   1589:                                        packet_put_cstring("");
                   1590:                                }
1.75      markus   1591:                        } else {
1.114     markus   1592:                                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   1593:                                packet_put_int(c->remote_id);
1.75      markus   1594:                        }
1.114     markus   1595:                        chan_mark_dead(c);
1.75      markus   1596:                }
1.114     markus   1597:                packet_send();
1.75      markus   1598:        }
                   1599: }
                   1600:
1.259     stevesk  1601: /* ARGSUSED */
1.127     itojun   1602: static int
1.237     deraadt  1603: channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1604: {
1.214     markus   1605:        char buf[CHAN_RBUF];
1.41      markus   1606:        int len;
1.25      markus   1607:
1.118     markus   1608:        if (c->rfd != -1 &&
1.41      markus   1609:            FD_ISSET(c->rfd, readset)) {
                   1610:                len = read(c->rfd, buf, sizeof(buf));
1.53      markus   1611:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1612:                        return 1;
1.41      markus   1613:                if (len <= 0) {
1.194     markus   1614:                        debug2("channel %d: read<=0 rfd %d len %d",
1.41      markus   1615:                            c->self, c->rfd, len);
1.104     markus   1616:                        if (c->type != SSH_CHANNEL_OPEN) {
1.194     markus   1617:                                debug2("channel %d: not open", c->self);
1.113     markus   1618:                                chan_mark_dead(c);
1.103     markus   1619:                                return -1;
1.104     markus   1620:                        } else if (compat13) {
1.158     markus   1621:                                buffer_clear(&c->output);
1.41      markus   1622:                                c->type = SSH_CHANNEL_INPUT_DRAINING;
1.194     markus   1623:                                debug2("channel %d: input draining.", c->self);
1.25      markus   1624:                        } else {
1.41      markus   1625:                                chan_read_failed(c);
1.25      markus   1626:                        }
1.41      markus   1627:                        return -1;
                   1628:                }
1.143     deraadt  1629:                if (c->input_filter != NULL) {
1.66      markus   1630:                        if (c->input_filter(c, buf, len) == -1) {
1.194     markus   1631:                                debug2("channel %d: filter stops", c->self);
1.65      markus   1632:                                chan_read_failed(c);
                   1633:                        }
1.228     reyk     1634:                } else if (c->datagram) {
                   1635:                        buffer_put_string(&c->input, buf, len);
1.65      markus   1636:                } else {
                   1637:                        buffer_append(&c->input, buf, len);
                   1638:                }
1.41      markus   1639:        }
                   1640:        return 1;
                   1641: }
1.241     deraadt  1642:
1.259     stevesk  1643: /* ARGSUSED */
1.127     itojun   1644: static int
1.237     deraadt  1645: channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1646: {
1.95      markus   1647:        struct termios tio;
1.231     reyk     1648:        u_char *data = NULL, *buf;
1.309     djm      1649:        u_int dlen, olen = 0;
1.41      markus   1650:        int len;
1.25      markus   1651:
1.41      markus   1652:        /* Send buffered output data to the socket. */
1.118     markus   1653:        if (c->wfd != -1 &&
1.41      markus   1654:            FD_ISSET(c->wfd, writeset) &&
                   1655:            buffer_len(&c->output) > 0) {
1.309     djm      1656:                olen = buffer_len(&c->output);
1.231     reyk     1657:                if (c->output_filter != NULL) {
                   1658:                        if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
                   1659:                                debug2("channel %d: filter stops", c->self);
1.232     reyk     1660:                                if (c->type != SSH_CHANNEL_OPEN)
                   1661:                                        chan_mark_dead(c);
                   1662:                                else
                   1663:                                        chan_write_failed(c);
                   1664:                                return -1;
1.231     reyk     1665:                        }
                   1666:                } else if (c->datagram) {
                   1667:                        buf = data = buffer_get_string(&c->output, &dlen);
                   1668:                } else {
                   1669:                        buf = data = buffer_ptr(&c->output);
                   1670:                        dlen = buffer_len(&c->output);
                   1671:                }
                   1672:
1.228     reyk     1673:                if (c->datagram) {
                   1674:                        /* ignore truncated writes, datagrams might get lost */
1.231     reyk     1675:                        len = write(c->wfd, buf, dlen);
1.321     djm      1676:                        free(data);
1.228     reyk     1677:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1678:                                return 1;
                   1679:                        if (len <= 0) {
                   1680:                                if (c->type != SSH_CHANNEL_OPEN)
                   1681:                                        chan_mark_dead(c);
                   1682:                                else
                   1683:                                        chan_write_failed(c);
                   1684:                                return -1;
                   1685:                        }
1.309     djm      1686:                        goto out;
1.228     reyk     1687:                }
1.231     reyk     1688:
                   1689:                len = write(c->wfd, buf, dlen);
1.53      markus   1690:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1691:                        return 1;
1.41      markus   1692:                if (len <= 0) {
1.104     markus   1693:                        if (c->type != SSH_CHANNEL_OPEN) {
1.194     markus   1694:                                debug2("channel %d: not open", c->self);
1.113     markus   1695:                                chan_mark_dead(c);
1.104     markus   1696:                                return -1;
                   1697:                        } else if (compat13) {
1.158     markus   1698:                                buffer_clear(&c->output);
1.194     markus   1699:                                debug2("channel %d: input draining.", c->self);
1.41      markus   1700:                                c->type = SSH_CHANNEL_INPUT_DRAINING;
                   1701:                        } else {
                   1702:                                chan_write_failed(c);
                   1703:                        }
                   1704:                        return -1;
1.91      markus   1705:                }
1.231     reyk     1706:                if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
1.91      markus   1707:                        if (tcgetattr(c->wfd, &tio) == 0 &&
                   1708:                            !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
                   1709:                                /*
                   1710:                                 * Simulate echo to reduce the impact of
1.96      markus   1711:                                 * traffic analysis. We need to match the
1.95      markus   1712:                                 * size of a SSH2_MSG_CHANNEL_DATA message
1.231     reyk     1713:                                 * (4 byte channel id + buf)
1.91      markus   1714:                                 */
1.95      markus   1715:                                packet_send_ignore(4 + len);
1.91      markus   1716:                                packet_send();
                   1717:                        }
1.25      markus   1718:                }
1.41      markus   1719:                buffer_consume(&c->output, len);
1.44      markus   1720:        }
1.309     djm      1721:  out:
                   1722:        if (compat20 && olen > 0)
                   1723:                c->local_consumed += olen - buffer_len(&c->output);
1.44      markus   1724:        return 1;
                   1725: }
1.241     deraadt  1726:
1.127     itojun   1727: static int
1.237     deraadt  1728: channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
1.44      markus   1729: {
1.214     markus   1730:        char buf[CHAN_RBUF];
1.44      markus   1731:        int len;
                   1732:
1.45      markus   1733: /** XXX handle drain efd, too */
1.44      markus   1734:        if (c->efd != -1) {
                   1735:                if (c->extended_usage == CHAN_EXTENDED_WRITE &&
                   1736:                    FD_ISSET(c->efd, writeset) &&
                   1737:                    buffer_len(&c->extended) > 0) {
                   1738:                        len = write(c->efd, buffer_ptr(&c->extended),
                   1739:                            buffer_len(&c->extended));
1.70      markus   1740:                        debug2("channel %d: written %d to efd %d",
1.44      markus   1741:                            c->self, len, c->efd);
1.93      markus   1742:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1743:                                return 1;
                   1744:                        if (len <= 0) {
                   1745:                                debug2("channel %d: closing write-efd %d",
                   1746:                                    c->self, c->efd);
1.132     markus   1747:                                channel_close_fd(&c->efd);
1.93      markus   1748:                        } else {
1.44      markus   1749:                                buffer_consume(&c->extended, len);
                   1750:                                c->local_consumed += len;
                   1751:                        }
1.306     djm      1752:                } else if (c->efd != -1 &&
                   1753:                    (c->extended_usage == CHAN_EXTENDED_READ ||
                   1754:                    c->extended_usage == CHAN_EXTENDED_IGNORE) &&
1.44      markus   1755:                    FD_ISSET(c->efd, readset)) {
                   1756:                        len = read(c->efd, buf, sizeof(buf));
1.70      markus   1757:                        debug2("channel %d: read %d from efd %d",
1.148     deraadt  1758:                            c->self, len, c->efd);
1.93      markus   1759:                        if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1760:                                return 1;
                   1761:                        if (len <= 0) {
                   1762:                                debug2("channel %d: closing read-efd %d",
1.45      markus   1763:                                    c->self, c->efd);
1.132     markus   1764:                                channel_close_fd(&c->efd);
1.93      markus   1765:                        } else {
1.306     djm      1766:                                if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
                   1767:                                        debug3("channel %d: discard efd",
                   1768:                                            c->self);
                   1769:                                } else
                   1770:                                        buffer_append(&c->extended, buf, len);
1.93      markus   1771:                        }
1.44      markus   1772:                }
                   1773:        }
                   1774:        return 1;
                   1775: }
1.241     deraadt  1776:
1.259     stevesk  1777: /* ARGSUSED */
1.127     itojun   1778: static int
1.93      markus   1779: channel_check_window(Channel *c)
1.44      markus   1780: {
1.104     markus   1781:        if (c->type == SSH_CHANNEL_OPEN &&
                   1782:            !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
1.270     dtucker  1783:            ((c->local_window_max - c->local_window >
1.269     markus   1784:            c->local_maxpacket*3) ||
                   1785:            c->local_window < c->local_window_max/2) &&
1.44      markus   1786:            c->local_consumed > 0) {
                   1787:                packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
                   1788:                packet_put_int(c->remote_id);
                   1789:                packet_put_int(c->local_consumed);
                   1790:                packet_send();
1.70      markus   1791:                debug2("channel %d: window %d sent adjust %d",
1.44      markus   1792:                    c->self, c->local_window,
                   1793:                    c->local_consumed);
                   1794:                c->local_window += c->local_consumed;
                   1795:                c->local_consumed = 0;
1.1       deraadt  1796:        }
1.41      markus   1797:        return 1;
1.1       deraadt  1798: }
                   1799:
1.127     itojun   1800: static void
1.237     deraadt  1801: channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
1.41      markus   1802: {
                   1803:        channel_handle_rfd(c, readset, writeset);
                   1804:        channel_handle_wfd(c, readset, writeset);
1.157     markus   1805:        if (!compat20)
1.137     markus   1806:                return;
1.44      markus   1807:        channel_handle_efd(c, readset, writeset);
1.93      markus   1808:        channel_check_window(c);
1.44      markus   1809: }
                   1810:
1.302     djm      1811: static u_int
                   1812: read_mux(Channel *c, u_int need)
                   1813: {
                   1814:        char buf[CHAN_RBUF];
                   1815:        int len;
                   1816:        u_int rlen;
                   1817:
                   1818:        if (buffer_len(&c->input) < need) {
                   1819:                rlen = need - buffer_len(&c->input);
                   1820:                len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
                   1821:                if (len <= 0) {
                   1822:                        if (errno != EINTR && errno != EAGAIN) {
                   1823:                                debug2("channel %d: ctl read<=0 rfd %d len %d",
                   1824:                                    c->self, c->rfd, len);
                   1825:                                chan_read_failed(c);
                   1826:                                return 0;
                   1827:                        }
                   1828:                } else
                   1829:                        buffer_append(&c->input, buf, len);
                   1830:        }
                   1831:        return buffer_len(&c->input);
                   1832: }
                   1833:
                   1834: static void
                   1835: channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
                   1836: {
                   1837:        u_int need;
                   1838:        ssize_t len;
                   1839:
                   1840:        if (!compat20)
                   1841:                fatal("%s: entered with !compat20", __func__);
                   1842:
1.304     djm      1843:        if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
1.302     djm      1844:            (c->istate == CHAN_INPUT_OPEN ||
                   1845:            c->istate == CHAN_INPUT_WAIT_DRAIN)) {
                   1846:                /*
                   1847:                 * Don't not read past the precise end of packets to
                   1848:                 * avoid disrupting fd passing.
                   1849:                 */
                   1850:                if (read_mux(c, 4) < 4) /* read header */
                   1851:                        return;
                   1852:                need = get_u32(buffer_ptr(&c->input));
                   1853: #define CHANNEL_MUX_MAX_PACKET (256 * 1024)
                   1854:                if (need > CHANNEL_MUX_MAX_PACKET) {
                   1855:                        debug2("channel %d: packet too big %u > %u",
                   1856:                            c->self, CHANNEL_MUX_MAX_PACKET, need);
                   1857:                        chan_rcvd_oclose(c);
                   1858:                        return;
                   1859:                }
                   1860:                if (read_mux(c, need + 4) < need + 4) /* read body */
                   1861:                        return;
                   1862:                if (c->mux_rcb(c) != 0) {
                   1863:                        debug("channel %d: mux_rcb failed", c->self);
                   1864:                        chan_mark_dead(c);
                   1865:                        return;
                   1866:                }
                   1867:        }
                   1868:
                   1869:        if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
                   1870:            buffer_len(&c->output) > 0) {
                   1871:                len = write(c->wfd, buffer_ptr(&c->output),
                   1872:                    buffer_len(&c->output));
                   1873:                if (len < 0 && (errno == EINTR || errno == EAGAIN))
                   1874:                        return;
                   1875:                if (len <= 0) {
                   1876:                        chan_mark_dead(c);
                   1877:                        return;
                   1878:                }
                   1879:                buffer_consume(&c->output, len);
                   1880:        }
                   1881: }
                   1882:
                   1883: static void
                   1884: channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
                   1885: {
                   1886:        Channel *nc;
                   1887:        struct sockaddr_storage addr;
                   1888:        socklen_t addrlen;
                   1889:        int newsock;
                   1890:        uid_t euid;
                   1891:        gid_t egid;
                   1892:
                   1893:        if (!FD_ISSET(c->sock, readset))
                   1894:                return;
                   1895:
                   1896:        debug("multiplexing control connection");
                   1897:
                   1898:        /*
                   1899:         * Accept connection on control socket
                   1900:         */
                   1901:        memset(&addr, 0, sizeof(addr));
                   1902:        addrlen = sizeof(addr);
                   1903:        if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
                   1904:            &addrlen)) == -1) {
                   1905:                error("%s accept: %s", __func__, strerror(errno));
1.317     djm      1906:                if (errno == EMFILE || errno == ENFILE)
1.322     dtucker  1907:                        c->notbefore = monotime() + 1;
1.302     djm      1908:                return;
                   1909:        }
                   1910:
                   1911:        if (getpeereid(newsock, &euid, &egid) < 0) {
                   1912:                error("%s getpeereid failed: %s", __func__,
                   1913:                    strerror(errno));
                   1914:                close(newsock);
                   1915:                return;
                   1916:        }
                   1917:        if ((euid != 0) && (getuid() != euid)) {
                   1918:                error("multiplex uid mismatch: peer euid %u != uid %u",
                   1919:                    (u_int)euid, (u_int)getuid());
                   1920:                close(newsock);
                   1921:                return;
                   1922:        }
                   1923:        nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
                   1924:            newsock, newsock, -1, c->local_window_max,
                   1925:            c->local_maxpacket, 0, "mux-control", 1);
                   1926:        nc->mux_rcb = c->mux_rcb;
                   1927:        debug3("%s: new mux channel %d fd %d", __func__,
                   1928:            nc->self, nc->sock);
                   1929:        /* establish state */
                   1930:        nc->mux_rcb(nc);
                   1931:        /* mux state transitions must not elicit protocol messages */
                   1932:        nc->flags |= CHAN_LOCAL;
                   1933: }
                   1934:
1.259     stevesk  1935: /* ARGSUSED */
1.127     itojun   1936: static void
1.237     deraadt  1937: channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
1.1       deraadt  1938: {
1.41      markus   1939:        int len;
1.180     deraadt  1940:
1.41      markus   1941:        /* Send buffered output data to the socket. */
                   1942:        if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
                   1943:                len = write(c->sock, buffer_ptr(&c->output),
                   1944:                            buffer_len(&c->output));
                   1945:                if (len <= 0)
1.158     markus   1946:                        buffer_clear(&c->output);
1.41      markus   1947:                else
                   1948:                        buffer_consume(&c->output, len);
                   1949:        }
                   1950: }
1.25      markus   1951:
1.127     itojun   1952: static void
1.44      markus   1953: channel_handler_init_20(void)
                   1954: {
1.157     markus   1955:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open;
1.51      markus   1956:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open;
1.44      markus   1957:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
1.73      markus   1958:        channel_pre[SSH_CHANNEL_RPORT_LISTENER] =       &channel_pre_listener;
1.51      markus   1959:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
1.73      markus   1960:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
1.75      markus   1961:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   1962:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.302     djm      1963:        channel_pre[SSH_CHANNEL_MUX_LISTENER] =         &channel_pre_listener;
                   1964:        channel_pre[SSH_CHANNEL_MUX_CLIENT] =           &channel_pre_mux_client;
1.44      markus   1965:
1.157     markus   1966:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.44      markus   1967:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
1.73      markus   1968:        channel_post[SSH_CHANNEL_RPORT_LISTENER] =      &channel_post_port_listener;
1.51      markus   1969:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
1.73      markus   1970:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
1.75      markus   1971:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   1972:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.302     djm      1973:        channel_post[SSH_CHANNEL_MUX_LISTENER] =        &channel_post_mux_listener;
                   1974:        channel_post[SSH_CHANNEL_MUX_CLIENT] =          &channel_post_mux_client;
1.44      markus   1975: }
                   1976:
1.127     itojun   1977: static void
1.41      markus   1978: channel_handler_init_13(void)
                   1979: {
                   1980:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open_13;
                   1981:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open_13;
                   1982:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
                   1983:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
                   1984:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
                   1985:        channel_pre[SSH_CHANNEL_INPUT_DRAINING] =       &channel_pre_input_draining;
                   1986:        channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] =      &channel_pre_output_draining;
1.75      markus   1987:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   1988:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.25      markus   1989:
1.157     markus   1990:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.41      markus   1991:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
                   1992:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
                   1993:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
                   1994:        channel_post[SSH_CHANNEL_OUTPUT_DRAINING] =     &channel_post_output_drain_13;
1.75      markus   1995:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   1996:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.41      markus   1997: }
1.25      markus   1998:
1.127     itojun   1999: static void
1.41      markus   2000: channel_handler_init_15(void)
                   2001: {
1.157     markus   2002:        channel_pre[SSH_CHANNEL_OPEN] =                 &channel_pre_open;
1.51      markus   2003:        channel_pre[SSH_CHANNEL_X11_OPEN] =             &channel_pre_x11_open;
1.41      markus   2004:        channel_pre[SSH_CHANNEL_X11_LISTENER] =         &channel_pre_listener;
                   2005:        channel_pre[SSH_CHANNEL_PORT_LISTENER] =        &channel_pre_listener;
                   2006:        channel_pre[SSH_CHANNEL_AUTH_SOCKET] =          &channel_pre_listener;
1.75      markus   2007:        channel_pre[SSH_CHANNEL_CONNECTING] =           &channel_pre_connecting;
1.103     markus   2008:        channel_pre[SSH_CHANNEL_DYNAMIC] =              &channel_pre_dynamic;
1.25      markus   2009:
1.41      markus   2010:        channel_post[SSH_CHANNEL_X11_LISTENER] =        &channel_post_x11_listener;
                   2011:        channel_post[SSH_CHANNEL_PORT_LISTENER] =       &channel_post_port_listener;
                   2012:        channel_post[SSH_CHANNEL_AUTH_SOCKET] =         &channel_post_auth_listener;
1.157     markus   2013:        channel_post[SSH_CHANNEL_OPEN] =                &channel_post_open;
1.75      markus   2014:        channel_post[SSH_CHANNEL_CONNECTING] =          &channel_post_connecting;
1.157     markus   2015:        channel_post[SSH_CHANNEL_DYNAMIC] =             &channel_post_open;
1.41      markus   2016: }
1.27      markus   2017:
1.127     itojun   2018: static void
1.41      markus   2019: channel_handler_init(void)
                   2020: {
                   2021:        int i;
1.180     deraadt  2022:
1.148     deraadt  2023:        for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
1.41      markus   2024:                channel_pre[i] = NULL;
                   2025:                channel_post[i] = NULL;
                   2026:        }
1.44      markus   2027:        if (compat20)
                   2028:                channel_handler_init_20();
                   2029:        else if (compat13)
1.41      markus   2030:                channel_handler_init_13();
                   2031:        else
                   2032:                channel_handler_init_15();
                   2033: }
1.25      markus   2034:
1.140     markus   2035: /* gc dead channels */
                   2036: static void
                   2037: channel_garbage_collect(Channel *c)
                   2038: {
                   2039:        if (c == NULL)
                   2040:                return;
                   2041:        if (c->detach_user != NULL) {
1.225     djm      2042:                if (!chan_is_dead(c, c->detach_close))
1.140     markus   2043:                        return;
1.194     markus   2044:                debug2("channel %d: gc: notify user", c->self);
1.140     markus   2045:                c->detach_user(c->self, NULL);
                   2046:                /* if we still have a callback */
                   2047:                if (c->detach_user != NULL)
                   2048:                        return;
1.194     markus   2049:                debug2("channel %d: gc: user detached", c->self);
1.140     markus   2050:        }
                   2051:        if (!chan_is_dead(c, 1))
                   2052:                return;
1.194     markus   2053:        debug2("channel %d: garbage collecting", c->self);
1.140     markus   2054:        channel_free(c);
                   2055: }
                   2056:
1.127     itojun   2057: static void
1.317     djm      2058: channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
                   2059:     time_t *unpause_secs)
1.41      markus   2060: {
                   2061:        static int did_init = 0;
1.299     markus   2062:        u_int i, oalloc;
1.41      markus   2063:        Channel *c;
1.317     djm      2064:        time_t now;
1.25      markus   2065:
1.41      markus   2066:        if (!did_init) {
                   2067:                channel_handler_init();
                   2068:                did_init = 1;
                   2069:        }
1.322     dtucker  2070:        now = monotime();
1.317     djm      2071:        if (unpause_secs != NULL)
                   2072:                *unpause_secs = 0;
1.299     markus   2073:        for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
1.113     markus   2074:                c = channels[i];
                   2075:                if (c == NULL)
1.41      markus   2076:                        continue;
1.299     markus   2077:                if (c->delayed) {
                   2078:                        if (ftab == channel_pre)
                   2079:                                c->delayed = 0;
                   2080:                        else
                   2081:                                continue;
                   2082:                }
1.317     djm      2083:                if (ftab[c->type] != NULL) {
                   2084:                        /*
                   2085:                         * Run handlers that are not paused.
                   2086:                         */
                   2087:                        if (c->notbefore <= now)
                   2088:                                (*ftab[c->type])(c, readset, writeset);
                   2089:                        else if (unpause_secs != NULL) {
                   2090:                                /*
                   2091:                                 * Collect the time that the earliest
                   2092:                                 * channel comes off pause.
                   2093:                                 */
                   2094:                                debug3("%s: chan %d: skip for %d more seconds",
                   2095:                                    __func__, c->self,
                   2096:                                    (int)(c->notbefore - now));
                   2097:                                if (*unpause_secs == 0 ||
                   2098:                                    (c->notbefore - now) < *unpause_secs)
                   2099:                                        *unpause_secs = c->notbefore - now;
                   2100:                        }
                   2101:                }
1.140     markus   2102:                channel_garbage_collect(c);
1.1       deraadt  2103:        }
1.317     djm      2104:        if (unpause_secs != NULL && *unpause_secs != 0)
                   2105:                debug3("%s: first channel unpauses in %d seconds",
                   2106:                    __func__, (int)*unpause_secs);
1.1       deraadt  2107: }
                   2108:
1.121     markus   2109: /*
                   2110:  * Allocate/update select bitmasks and add any bits relevant to channels in
                   2111:  * select bitmasks.
                   2112:  */
1.49      markus   2113: void
1.100     markus   2114: channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
1.318     djm      2115:     u_int *nallocp, time_t *minwait_secs, int rekeying)
1.41      markus   2116: {
1.243     djm      2117:        u_int n, sz, nfdset;
1.84      markus   2118:
                   2119:        n = MAX(*maxfdp, channel_max_fd);
                   2120:
1.243     djm      2121:        nfdset = howmany(n+1, NFDBITS);
                   2122:        /* Explicitly test here, because xrealloc isn't always called */
                   2123:        if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
                   2124:                fatal("channel_prepare_select: max_fd (%d) is too large", n);
                   2125:        sz = nfdset * sizeof(fd_mask);
                   2126:
1.132     markus   2127:        /* perhaps check sz < nalloc/2 and shrink? */
                   2128:        if (*readsetp == NULL || sz > *nallocp) {
1.243     djm      2129:                *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
                   2130:                *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
1.132     markus   2131:                *nallocp = sz;
1.84      markus   2132:        }
1.132     markus   2133:        *maxfdp = n;
1.84      markus   2134:        memset(*readsetp, 0, sz);
                   2135:        memset(*writesetp, 0, sz);
                   2136:
1.100     markus   2137:        if (!rekeying)
1.317     djm      2138:                channel_handler(channel_pre, *readsetp, *writesetp,
                   2139:                    minwait_secs);
1.41      markus   2140: }
                   2141:
1.121     markus   2142: /*
                   2143:  * After select, perform any appropriate operations for channels which have
                   2144:  * events pending.
                   2145:  */
1.49      markus   2146: void
1.237     deraadt  2147: channel_after_select(fd_set *readset, fd_set *writeset)
1.41      markus   2148: {
1.317     djm      2149:        channel_handler(channel_post, readset, writeset, NULL);
1.41      markus   2150: }
                   2151:
1.121     markus   2152:
1.84      markus   2153: /* If there is data to send to the connection, enqueue some of it now. */
1.49      markus   2154: void
1.142     itojun   2155: channel_output_poll(void)
1.1       deraadt  2156: {
1.41      markus   2157:        Channel *c;
1.209     avsm     2158:        u_int i, len;
1.1       deraadt  2159:
1.25      markus   2160:        for (i = 0; i < channels_alloc; i++) {
1.113     markus   2161:                c = channels[i];
                   2162:                if (c == NULL)
                   2163:                        continue;
1.37      markus   2164:
1.121     markus   2165:                /*
                   2166:                 * We are only interested in channels that can have buffered
                   2167:                 * incoming data.
                   2168:                 */
1.37      markus   2169:                if (compat13) {
1.41      markus   2170:                        if (c->type != SSH_CHANNEL_OPEN &&
                   2171:                            c->type != SSH_CHANNEL_INPUT_DRAINING)
1.37      markus   2172:                                continue;
                   2173:                } else {
1.41      markus   2174:                        if (c->type != SSH_CHANNEL_OPEN)
1.37      markus   2175:                                continue;
                   2176:                }
1.46      markus   2177:                if (compat20 &&
                   2178:                    (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
1.93      markus   2179:                        /* XXX is this true? */
1.140     markus   2180:                        debug3("channel %d: will not send data after close", c->self);
1.44      markus   2181:                        continue;
                   2182:                }
1.25      markus   2183:
                   2184:                /* Get the amount of buffered data for this channel. */
1.93      markus   2185:                if ((c->istate == CHAN_INPUT_OPEN ||
                   2186:                    c->istate == CHAN_INPUT_WAIT_DRAIN) &&
                   2187:                    (len = buffer_len(&c->input)) > 0) {
1.228     reyk     2188:                        if (c->datagram) {
                   2189:                                if (len > 0) {
                   2190:                                        u_char *data;
                   2191:                                        u_int dlen;
                   2192:
                   2193:                                        data = buffer_get_string(&c->input,
                   2194:                                            &dlen);
1.309     djm      2195:                                        if (dlen > c->remote_window ||
                   2196:                                            dlen > c->remote_maxpacket) {
                   2197:                                                debug("channel %d: datagram "
                   2198:                                                    "too big for channel",
                   2199:                                                    c->self);
1.321     djm      2200:                                                free(data);
1.309     djm      2201:                                                continue;
                   2202:                                        }
1.228     reyk     2203:                                        packet_start(SSH2_MSG_CHANNEL_DATA);
                   2204:                                        packet_put_int(c->remote_id);
                   2205:                                        packet_put_string(data, dlen);
                   2206:                                        packet_send();
                   2207:                                        c->remote_window -= dlen + 4;
1.321     djm      2208:                                        free(data);
1.228     reyk     2209:                                }
                   2210:                                continue;
                   2211:                        }
1.121     markus   2212:                        /*
                   2213:                         * Send some data for the other side over the secure
                   2214:                         * connection.
                   2215:                         */
1.44      markus   2216:                        if (compat20) {
                   2217:                                if (len > c->remote_window)
                   2218:                                        len = c->remote_window;
                   2219:                                if (len > c->remote_maxpacket)
                   2220:                                        len = c->remote_maxpacket;
1.25      markus   2221:                        } else {
1.44      markus   2222:                                if (packet_is_interactive()) {
                   2223:                                        if (len > 1024)
                   2224:                                                len = 512;
                   2225:                                } else {
                   2226:                                        /* Keep the packets at reasonable size. */
                   2227:                                        if (len > packet_get_maxsize()/2)
                   2228:                                                len = packet_get_maxsize()/2;
                   2229:                                }
1.25      markus   2230:                        }
1.41      markus   2231:                        if (len > 0) {
1.44      markus   2232:                                packet_start(compat20 ?
                   2233:                                    SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
1.41      markus   2234:                                packet_put_int(c->remote_id);
                   2235:                                packet_put_string(buffer_ptr(&c->input), len);
                   2236:                                packet_send();
                   2237:                                buffer_consume(&c->input, len);
                   2238:                                c->remote_window -= len;
                   2239:                        }
                   2240:                } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1.25      markus   2241:                        if (compat13)
                   2242:                                fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
1.27      markus   2243:                        /*
                   2244:                         * input-buffer is empty and read-socket shutdown:
1.172     markus   2245:                         * tell peer, that we will not send more data: send IEOF.
                   2246:                         * hack for extended data: delay EOF if EFD still in use.
1.27      markus   2247:                         */
1.172     markus   2248:                        if (CHANNEL_EFD_INPUT_ACTIVE(c))
1.223     djm      2249:                                debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
                   2250:                                    c->self, c->efd, buffer_len(&c->extended));
1.172     markus   2251:                        else
                   2252:                                chan_ibuf_empty(c);
1.25      markus   2253:                }
1.44      markus   2254:                /* Send extended data, i.e. stderr */
                   2255:                if (compat20 &&
1.172     markus   2256:                    !(c->flags & CHAN_EOF_SENT) &&
1.44      markus   2257:                    c->remote_window > 0 &&
                   2258:                    (len = buffer_len(&c->extended)) > 0 &&
                   2259:                    c->extended_usage == CHAN_EXTENDED_READ) {
1.178     markus   2260:                        debug2("channel %d: rwin %u elen %u euse %d",
1.93      markus   2261:                            c->self, c->remote_window, buffer_len(&c->extended),
                   2262:                            c->extended_usage);
1.44      markus   2263:                        if (len > c->remote_window)
                   2264:                                len = c->remote_window;
                   2265:                        if (len > c->remote_maxpacket)
                   2266:                                len = c->remote_maxpacket;
                   2267:                        packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
                   2268:                        packet_put_int(c->remote_id);
                   2269:                        packet_put_int(SSH2_EXTENDED_DATA_STDERR);
                   2270:                        packet_put_string(buffer_ptr(&c->extended), len);
                   2271:                        packet_send();
                   2272:                        buffer_consume(&c->extended, len);
                   2273:                        c->remote_window -= len;
1.93      markus   2274:                        debug2("channel %d: sent ext data %d", c->self, len);
1.44      markus   2275:                }
1.25      markus   2276:        }
1.1       deraadt  2277: }
                   2278:
1.121     markus   2279:
                   2280: /* -- protocol input */
1.249     djm      2281:
                   2282: /* ARGSUSED */
1.49      markus   2283: void
1.154     markus   2284: channel_input_data(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2285: {
1.37      markus   2286:        int id;
1.25      markus   2287:        char *data;
1.309     djm      2288:        u_int data_len, win_len;
1.41      markus   2289:        Channel *c;
1.25      markus   2290:
                   2291:        /* Get the channel number and verify it. */
1.37      markus   2292:        id = packet_get_int();
1.41      markus   2293:        c = channel_lookup(id);
                   2294:        if (c == NULL)
1.37      markus   2295:                packet_disconnect("Received data for nonexistent channel %d.", id);
1.25      markus   2296:
                   2297:        /* Ignore any data for non-open channels (might happen on close) */
1.41      markus   2298:        if (c->type != SSH_CHANNEL_OPEN &&
                   2299:            c->type != SSH_CHANNEL_X11_OPEN)
1.37      markus   2300:                return;
                   2301:
1.25      markus   2302:        /* Get the data. */
1.274     markus   2303:        data = packet_get_string_ptr(&data_len);
1.309     djm      2304:        win_len = data_len;
                   2305:        if (c->datagram)
                   2306:                win_len += 4;  /* string length header */
1.200     markus   2307:
                   2308:        /*
                   2309:         * Ignore data for protocol > 1.3 if output end is no longer open.
                   2310:         * For protocol 2 the sending side is reducing its window as it sends
                   2311:         * data, so we must 'fake' consumption of the data in order to ensure
                   2312:         * that window updates are sent back.  Otherwise the connection might
                   2313:         * deadlock.
                   2314:         */
                   2315:        if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
                   2316:                if (compat20) {
1.309     djm      2317:                        c->local_window -= win_len;
                   2318:                        c->local_consumed += win_len;
1.200     markus   2319:                }
                   2320:                return;
                   2321:        }
1.41      markus   2322:
1.143     deraadt  2323:        if (compat20) {
1.309     djm      2324:                if (win_len > c->local_maxpacket) {
1.188     itojun   2325:                        logit("channel %d: rcvd big packet %d, maxpack %d",
1.309     djm      2326:                            c->self, win_len, c->local_maxpacket);
1.44      markus   2327:                }
1.309     djm      2328:                if (win_len > c->local_window) {
1.188     itojun   2329:                        logit("channel %d: rcvd too much data %d, win %d",
1.309     djm      2330:                            c->self, win_len, c->local_window);
1.44      markus   2331:                        return;
                   2332:                }
1.309     djm      2333:                c->local_window -= win_len;
1.44      markus   2334:        }
1.228     reyk     2335:        if (c->datagram)
                   2336:                buffer_put_string(&c->output, data, data_len);
                   2337:        else
                   2338:                buffer_append(&c->output, data, data_len);
1.274     markus   2339:        packet_check_eom();
1.1       deraadt  2340: }
1.121     markus   2341:
1.249     djm      2342: /* ARGSUSED */
1.49      markus   2343: void
1.154     markus   2344: channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
1.44      markus   2345: {
                   2346:        int id;
                   2347:        char *data;
1.177     markus   2348:        u_int data_len, tcode;
1.44      markus   2349:        Channel *c;
                   2350:
                   2351:        /* Get the channel number and verify it. */
                   2352:        id = packet_get_int();
                   2353:        c = channel_lookup(id);
                   2354:
                   2355:        if (c == NULL)
                   2356:                packet_disconnect("Received extended_data for bad channel %d.", id);
                   2357:        if (c->type != SSH_CHANNEL_OPEN) {
1.188     itojun   2358:                logit("channel %d: ext data for non open", id);
1.44      markus   2359:                return;
1.172     markus   2360:        }
                   2361:        if (c->flags & CHAN_EOF_RCVD) {
                   2362:                if (datafellows & SSH_BUG_EXTEOF)
                   2363:                        debug("channel %d: accepting ext data after eof", id);
                   2364:                else
                   2365:                        packet_disconnect("Received extended_data after EOF "
                   2366:                            "on channel %d.", id);
1.44      markus   2367:        }
                   2368:        tcode = packet_get_int();
                   2369:        if (c->efd == -1 ||
                   2370:            c->extended_usage != CHAN_EXTENDED_WRITE ||
                   2371:            tcode != SSH2_EXTENDED_DATA_STDERR) {
1.188     itojun   2372:                logit("channel %d: bad ext data", c->self);
1.44      markus   2373:                return;
                   2374:        }
                   2375:        data = packet_get_string(&data_len);
1.152     markus   2376:        packet_check_eom();
1.44      markus   2377:        if (data_len > c->local_window) {
1.188     itojun   2378:                logit("channel %d: rcvd too much extended_data %d, win %d",
1.44      markus   2379:                    c->self, data_len, c->local_window);
1.321     djm      2380:                free(data);
1.44      markus   2381:                return;
                   2382:        }
1.70      markus   2383:        debug2("channel %d: rcvd ext data %d", c->self, data_len);
1.44      markus   2384:        c->local_window -= data_len;
                   2385:        buffer_append(&c->extended, data, data_len);
1.321     djm      2386:        free(data);
1.44      markus   2387: }
                   2388:
1.249     djm      2389: /* ARGSUSED */
1.49      markus   2390: void
1.154     markus   2391: channel_input_ieof(int type, u_int32_t seq, void *ctxt)
1.41      markus   2392: {
                   2393:        int id;
                   2394:        Channel *c;
                   2395:
                   2396:        id = packet_get_int();
1.152     markus   2397:        packet_check_eom();
1.41      markus   2398:        c = channel_lookup(id);
                   2399:        if (c == NULL)
                   2400:                packet_disconnect("Received ieof for nonexistent channel %d.", id);
                   2401:        chan_rcvd_ieof(c);
1.133     markus   2402:
                   2403:        /* XXX force input close */
1.156     markus   2404:        if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
1.133     markus   2405:                debug("channel %d: FORCE input drain", c->self);
                   2406:                c->istate = CHAN_INPUT_WAIT_DRAIN;
1.161     markus   2407:                if (buffer_len(&c->input) == 0)
                   2408:                        chan_ibuf_empty(c);
1.133     markus   2409:        }
                   2410:
1.41      markus   2411: }
1.1       deraadt  2412:
1.249     djm      2413: /* ARGSUSED */
1.49      markus   2414: void
1.154     markus   2415: channel_input_close(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2416: {
1.41      markus   2417:        int id;
                   2418:        Channel *c;
1.1       deraadt  2419:
1.41      markus   2420:        id = packet_get_int();
1.152     markus   2421:        packet_check_eom();
1.41      markus   2422:        c = channel_lookup(id);
                   2423:        if (c == NULL)
                   2424:                packet_disconnect("Received close for nonexistent channel %d.", id);
1.27      markus   2425:
                   2426:        /*
                   2427:         * Send a confirmation that we have closed the channel and no more
                   2428:         * data is coming for it.
                   2429:         */
1.25      markus   2430:        packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
1.41      markus   2431:        packet_put_int(c->remote_id);
1.25      markus   2432:        packet_send();
                   2433:
1.27      markus   2434:        /*
                   2435:         * If the channel is in closed state, we have sent a close request,
                   2436:         * and the other side will eventually respond with a confirmation.
                   2437:         * Thus, we cannot free the channel here, because then there would be
                   2438:         * no-one to receive the confirmation.  The channel gets freed when
                   2439:         * the confirmation arrives.
                   2440:         */
1.41      markus   2441:        if (c->type != SSH_CHANNEL_CLOSED) {
1.27      markus   2442:                /*
                   2443:                 * Not a closed channel - mark it as draining, which will
                   2444:                 * cause it to be freed later.
                   2445:                 */
1.158     markus   2446:                buffer_clear(&c->input);
1.41      markus   2447:                c->type = SSH_CHANNEL_OUTPUT_DRAINING;
1.25      markus   2448:        }
1.1       deraadt  2449: }
                   2450:
1.41      markus   2451: /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
1.249     djm      2452: /* ARGSUSED */
1.49      markus   2453: void
1.154     markus   2454: channel_input_oclose(int type, u_int32_t seq, void *ctxt)
1.41      markus   2455: {
                   2456:        int id = packet_get_int();
                   2457:        Channel *c = channel_lookup(id);
1.151     markus   2458:
1.152     markus   2459:        packet_check_eom();
1.41      markus   2460:        if (c == NULL)
                   2461:                packet_disconnect("Received oclose for nonexistent channel %d.", id);
                   2462:        chan_rcvd_oclose(c);
                   2463: }
1.1       deraadt  2464:
1.249     djm      2465: /* ARGSUSED */
1.49      markus   2466: void
1.154     markus   2467: channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2468: {
1.41      markus   2469:        int id = packet_get_int();
                   2470:        Channel *c = channel_lookup(id);
1.1       deraadt  2471:
1.152     markus   2472:        packet_check_eom();
1.41      markus   2473:        if (c == NULL)
                   2474:                packet_disconnect("Received close confirmation for "
                   2475:                    "out-of-range channel %d.", id);
1.323     dtucker  2476:        if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
1.41      markus   2477:                packet_disconnect("Received close confirmation for "
                   2478:                    "non-closed channel %d (type %d).", id, c->type);
1.113     markus   2479:        channel_free(c);
1.1       deraadt  2480: }
                   2481:
1.249     djm      2482: /* ARGSUSED */
1.49      markus   2483: void
1.154     markus   2484: channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2485: {
1.41      markus   2486:        int id, remote_id;
                   2487:        Channel *c;
1.1       deraadt  2488:
1.41      markus   2489:        id = packet_get_int();
                   2490:        c = channel_lookup(id);
1.25      markus   2491:
1.41      markus   2492:        if (c==NULL || c->type != SSH_CHANNEL_OPENING)
                   2493:                packet_disconnect("Received open confirmation for "
                   2494:                    "non-opening channel %d.", id);
                   2495:        remote_id = packet_get_int();
1.27      markus   2496:        /* Record the remote channel number and mark that the channel is now open. */
1.41      markus   2497:        c->remote_id = remote_id;
                   2498:        c->type = SSH_CHANNEL_OPEN;
1.44      markus   2499:
                   2500:        if (compat20) {
                   2501:                c->remote_window = packet_get_int();
                   2502:                c->remote_maxpacket = packet_get_int();
1.275     djm      2503:                if (c->open_confirm) {
1.70      markus   2504:                        debug2("callback start");
1.304     djm      2505:                        c->open_confirm(c->self, 1, c->open_confirm_ctx);
1.70      markus   2506:                        debug2("callback done");
1.44      markus   2507:                }
1.194     markus   2508:                debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
1.44      markus   2509:                    c->remote_window, c->remote_maxpacket);
                   2510:        }
1.152     markus   2511:        packet_check_eom();
1.1       deraadt  2512: }
                   2513:
1.127     itojun   2514: static char *
1.114     markus   2515: reason2txt(int reason)
                   2516: {
1.143     deraadt  2517:        switch (reason) {
1.114     markus   2518:        case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
                   2519:                return "administratively prohibited";
                   2520:        case SSH2_OPEN_CONNECT_FAILED:
                   2521:                return "connect failed";
                   2522:        case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
                   2523:                return "unknown channel type";
                   2524:        case SSH2_OPEN_RESOURCE_SHORTAGE:
                   2525:                return "resource shortage";
                   2526:        }
1.117     stevesk  2527:        return "unknown reason";
1.114     markus   2528: }
                   2529:
1.249     djm      2530: /* ARGSUSED */
1.49      markus   2531: void
1.154     markus   2532: channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2533: {
1.86      markus   2534:        int id, reason;
                   2535:        char *msg = NULL, *lang = NULL;
1.41      markus   2536:        Channel *c;
                   2537:
                   2538:        id = packet_get_int();
                   2539:        c = channel_lookup(id);
1.25      markus   2540:
1.41      markus   2541:        if (c==NULL || c->type != SSH_CHANNEL_OPENING)
                   2542:                packet_disconnect("Received open failure for "
                   2543:                    "non-opening channel %d.", id);
1.44      markus   2544:        if (compat20) {
1.86      markus   2545:                reason = packet_get_int();
1.110     markus   2546:                if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1.86      markus   2547:                        msg  = packet_get_string(NULL);
                   2548:                        lang = packet_get_string(NULL);
                   2549:                }
1.188     itojun   2550:                logit("channel %d: open failed: %s%s%s", id,
1.114     markus   2551:                    reason2txt(reason), msg ? ": ": "", msg ? msg : "");
1.321     djm      2552:                free(msg);
                   2553:                free(lang);
1.304     djm      2554:                if (c->open_confirm) {
                   2555:                        debug2("callback start");
                   2556:                        c->open_confirm(c->self, 0, c->open_confirm_ctx);
                   2557:                        debug2("callback done");
                   2558:                }
1.44      markus   2559:        }
1.152     markus   2560:        packet_check_eom();
1.291     djm      2561:        /* Schedule the channel for cleanup/deletion. */
                   2562:        chan_mark_dead(c);
1.44      markus   2563: }
                   2564:
1.249     djm      2565: /* ARGSUSED */
1.121     markus   2566: void
1.154     markus   2567: channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
1.121     markus   2568: {
                   2569:        Channel *c;
1.178     markus   2570:        int id;
                   2571:        u_int adjust;
1.121     markus   2572:
                   2573:        if (!compat20)
                   2574:                return;
                   2575:
                   2576:        /* Get the channel number and verify it. */
                   2577:        id = packet_get_int();
                   2578:        c = channel_lookup(id);
1.1       deraadt  2579:
1.229     markus   2580:        if (c == NULL) {
                   2581:                logit("Received window adjust for non-open channel %d.", id);
1.121     markus   2582:                return;
                   2583:        }
                   2584:        adjust = packet_get_int();
1.152     markus   2585:        packet_check_eom();
1.178     markus   2586:        debug2("channel %d: rcvd adjust %u", id, adjust);
1.121     markus   2587:        c->remote_window += adjust;
                   2588: }
1.1       deraadt  2589:
1.249     djm      2590: /* ARGSUSED */
1.121     markus   2591: void
1.154     markus   2592: channel_input_port_open(int type, u_int32_t seq, void *ctxt)
1.1       deraadt  2593: {
1.121     markus   2594:        Channel *c = NULL;
                   2595:        u_short host_port;
                   2596:        char *host, *originator_string;
1.276     djm      2597:        int remote_id;
1.121     markus   2598:
                   2599:        remote_id = packet_get_int();
                   2600:        host = packet_get_string(NULL);
                   2601:        host_port = packet_get_int();
1.25      markus   2602:
1.121     markus   2603:        if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
                   2604:                originator_string = packet_get_string(NULL);
                   2605:        } else {
                   2606:                originator_string = xstrdup("unknown (remote did not supply name)");
                   2607:        }
1.152     markus   2608:        packet_check_eom();
1.276     djm      2609:        c = channel_connect_to(host, host_port,
                   2610:            "connected socket", originator_string);
1.321     djm      2611:        free(originator_string);
                   2612:        free(host);
1.121     markus   2613:        if (c == NULL) {
                   2614:                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   2615:                packet_put_int(remote_id);
                   2616:                packet_send();
1.276     djm      2617:        } else
                   2618:                c->remote_id = remote_id;
1.1       deraadt  2619: }
                   2620:
1.275     djm      2621: /* ARGSUSED */
                   2622: void
                   2623: channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
                   2624: {
                   2625:        Channel *c;
                   2626:        struct channel_confirm *cc;
1.289     markus   2627:        int id;
1.275     djm      2628:
                   2629:        /* Reset keepalive timeout */
1.296     andreas  2630:        packet_set_alive_timeouts(0);
1.275     djm      2631:
1.289     markus   2632:        id = packet_get_int();
1.275     djm      2633:        packet_check_eom();
                   2634:
1.289     markus   2635:        debug2("channel_input_status_confirm: type %d id %d", type, id);
1.275     djm      2636:
1.289     markus   2637:        if ((c = channel_lookup(id)) == NULL) {
                   2638:                logit("channel_input_status_confirm: %d: unknown", id);
1.275     djm      2639:                return;
                   2640:        }
                   2641:        ;
                   2642:        if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
                   2643:                return;
                   2644:        cc->cb(type, c, cc->ctx);
                   2645:        TAILQ_REMOVE(&c->status_confirms, cc, entry);
                   2646:        bzero(cc, sizeof(*cc));
1.321     djm      2647:        free(cc);
1.275     djm      2648: }
1.121     markus   2649:
                   2650: /* -- tcp forwarding */
1.135     markus   2651:
                   2652: void
                   2653: channel_set_af(int af)
                   2654: {
                   2655:        IPv4or6 = af;
                   2656: }
1.121     markus   2657:
1.312     djm      2658:
                   2659: /*
                   2660:  * Determine whether or not a port forward listens to loopback, the
                   2661:  * specified address or wildcard. On the client, a specified bind
                   2662:  * address will always override gateway_ports. On the server, a
                   2663:  * gateway_ports of 1 (``yes'') will override the client's specification
                   2664:  * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
                   2665:  * will bind to whatever address the client asked for.
                   2666:  *
                   2667:  * Special-case listen_addrs are:
                   2668:  *
                   2669:  * "0.0.0.0"               -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
                   2670:  * "" (empty string), "*"  -> wildcard v4/v6
                   2671:  * "localhost"             -> loopback v4/v6
                   2672:  */
                   2673: static const char *
                   2674: channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
                   2675:     int is_client, int gateway_ports)
                   2676: {
                   2677:        const char *addr = NULL;
                   2678:        int wildcard = 0;
                   2679:
                   2680:        if (listen_addr == NULL) {
                   2681:                /* No address specified: default to gateway_ports setting */
                   2682:                if (gateway_ports)
                   2683:                        wildcard = 1;
                   2684:        } else if (gateway_ports || is_client) {
                   2685:                if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
                   2686:                    strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
                   2687:                    *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
                   2688:                    (!is_client && gateway_ports == 1))
                   2689:                        wildcard = 1;
                   2690:                else if (strcmp(listen_addr, "localhost") != 0)
                   2691:                        addr = listen_addr;
                   2692:        }
                   2693:        if (wildcardp != NULL)
                   2694:                *wildcardp = wildcard;
                   2695:        return addr;
                   2696: }
                   2697:
1.160     markus   2698: static int
1.295     djm      2699: channel_setup_fwd_listener(int type, const char *listen_addr,
                   2700:     u_short listen_port, int *allocated_listen_port,
1.160     markus   2701:     const char *host_to_connect, u_short port_to_connect, int gateway_ports)
1.25      markus   2702: {
1.113     markus   2703:        Channel *c;
1.226     djm      2704:        int sock, r, success = 0, wildcard = 0, is_client;
1.35      markus   2705:        struct addrinfo hints, *ai, *aitop;
1.212     djm      2706:        const char *host, *addr;
1.35      markus   2707:        char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1.295     djm      2708:        in_port_t *lport_p;
1.25      markus   2709:
1.160     markus   2710:        host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
                   2711:            listen_addr : host_to_connect;
1.212     djm      2712:        is_client = (type == SSH_CHANNEL_PORT_LISTENER);
1.87      markus   2713:
1.160     markus   2714:        if (host == NULL) {
                   2715:                error("No forward host name.");
1.218     markus   2716:                return 0;
1.73      markus   2717:        }
1.294     djm      2718:        if (strlen(host) >= NI_MAXHOST) {
1.87      markus   2719:                error("Forward host name too long.");
1.218     markus   2720:                return 0;
1.87      markus   2721:        }
1.25      markus   2722:
1.312     djm      2723:        /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
                   2724:        addr = channel_fwd_bind_addr(listen_addr, &wildcard,
                   2725:            is_client, gateway_ports);
1.212     djm      2726:        debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
                   2727:            type, wildcard, (addr == NULL) ? "NULL" : addr);
                   2728:
                   2729:        /*
1.35      markus   2730:         * getaddrinfo returns a loopback address if the hostname is
                   2731:         * set to NULL and hints.ai_flags is not AI_PASSIVE
1.28      markus   2732:         */
1.35      markus   2733:        memset(&hints, 0, sizeof(hints));
                   2734:        hints.ai_family = IPv4or6;
1.212     djm      2735:        hints.ai_flags = wildcard ? AI_PASSIVE : 0;
1.35      markus   2736:        hints.ai_socktype = SOCK_STREAM;
1.73      markus   2737:        snprintf(strport, sizeof strport, "%d", listen_port);
1.212     djm      2738:        if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
                   2739:                if (addr == NULL) {
                   2740:                        /* This really shouldn't happen */
                   2741:                        packet_disconnect("getaddrinfo: fatal error: %s",
1.271     dtucker  2742:                            ssh_gai_strerror(r));
1.212     djm      2743:                } else {
1.218     markus   2744:                        error("channel_setup_fwd_listener: "
1.271     dtucker  2745:                            "getaddrinfo(%.64s): %s", addr,
                   2746:                            ssh_gai_strerror(r));
1.212     djm      2747:                }
1.218     markus   2748:                return 0;
1.212     djm      2749:        }
1.295     djm      2750:        if (allocated_listen_port != NULL)
                   2751:                *allocated_listen_port = 0;
1.35      markus   2752:        for (ai = aitop; ai; ai = ai->ai_next) {
1.295     djm      2753:                switch (ai->ai_family) {
                   2754:                case AF_INET:
                   2755:                        lport_p = &((struct sockaddr_in *)ai->ai_addr)->
                   2756:                            sin_port;
                   2757:                        break;
                   2758:                case AF_INET6:
                   2759:                        lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
                   2760:                            sin6_port;
                   2761:                        break;
                   2762:                default:
1.35      markus   2763:                        continue;
1.295     djm      2764:                }
                   2765:                /*
                   2766:                 * If allocating a port for -R forwards, then use the
                   2767:                 * same port for all address families.
                   2768:                 */
                   2769:                if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
                   2770:                    allocated_listen_port != NULL && *allocated_listen_port > 0)
                   2771:                        *lport_p = htons(*allocated_listen_port);
                   2772:
1.35      markus   2773:                if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
                   2774:                    strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1.160     markus   2775:                        error("channel_setup_fwd_listener: getnameinfo failed");
1.35      markus   2776:                        continue;
                   2777:                }
                   2778:                /* Create a port to listen for the host. */
1.300     dtucker  2779:                sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1.35      markus   2780:                if (sock < 0) {
                   2781:                        /* this is no error since kernel may not support ipv6 */
                   2782:                        verbose("socket: %.100s", strerror(errno));
                   2783:                        continue;
                   2784:                }
1.226     djm      2785:
                   2786:                channel_set_reuseaddr(sock);
1.182     stevesk  2787:
1.295     djm      2788:                debug("Local forwarding listening on %s port %s.",
                   2789:                    ntop, strport);
1.35      markus   2790:
                   2791:                /* Bind the socket to the address. */
                   2792:                if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
                   2793:                        /* address can be in use ipv6 address is already bound */
                   2794:                        verbose("bind: %.100s", strerror(errno));
                   2795:                        close(sock);
                   2796:                        continue;
                   2797:                }
                   2798:                /* Start listening for connections on the socket. */
1.199     markus   2799:                if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
1.35      markus   2800:                        error("listen: %.100s", strerror(errno));
                   2801:                        close(sock);
                   2802:                        continue;
                   2803:                }
1.295     djm      2804:
                   2805:                /*
                   2806:                 * listen_port == 0 requests a dynamically allocated port -
                   2807:                 * record what we got.
                   2808:                 */
                   2809:                if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
                   2810:                    allocated_listen_port != NULL &&
                   2811:                    *allocated_listen_port == 0) {
                   2812:                        *allocated_listen_port = get_sock_port(sock, 1);
                   2813:                        debug("Allocated listen port %d",
                   2814:                            *allocated_listen_port);
                   2815:                }
                   2816:
1.35      markus   2817:                /* Allocate a channel number for the socket. */
1.121     markus   2818:                c = channel_new("port listener", type, sock, sock, -1,
1.51      markus   2819:                    CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1.190     markus   2820:                    0, "port listener", 1);
1.293     djm      2821:                c->path = xstrdup(host);
1.113     markus   2822:                c->host_port = port_to_connect;
1.312     djm      2823:                c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
1.315     markus   2824:                if (listen_port == 0 && allocated_listen_port != NULL &&
                   2825:                    !(datafellows & SSH_BUG_DYNAMIC_RPORT))
                   2826:                        c->listening_port = *allocated_listen_port;
                   2827:                else
                   2828:                        c->listening_port = listen_port;
1.35      markus   2829:                success = 1;
                   2830:        }
                   2831:        if (success == 0)
1.160     markus   2832:                error("channel_setup_fwd_listener: cannot listen to port: %d",
1.87      markus   2833:                    listen_port);
1.35      markus   2834:        freeaddrinfo(aitop);
1.87      markus   2835:        return success;
1.25      markus   2836: }
1.1       deraadt  2837:
1.202     djm      2838: int
                   2839: channel_cancel_rport_listener(const char *host, u_short port)
                   2840: {
1.209     avsm     2841:        u_int i;
                   2842:        int found = 0;
1.202     djm      2843:
1.213     deraadt  2844:        for (i = 0; i < channels_alloc; i++) {
1.202     djm      2845:                Channel *c = channels[i];
1.312     djm      2846:                if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
                   2847:                        continue;
                   2848:                if (strcmp(c->path, host) == 0 && c->listening_port == port) {
                   2849:                        debug2("%s: close channel %d", __func__, i);
                   2850:                        channel_free(c);
                   2851:                        found = 1;
                   2852:                }
                   2853:        }
                   2854:
                   2855:        return (found);
                   2856: }
                   2857:
                   2858: int
                   2859: channel_cancel_lport_listener(const char *lhost, u_short lport,
1.313     markus   2860:     int cport, int gateway_ports)
1.312     djm      2861: {
                   2862:        u_int i;
                   2863:        int found = 0;
                   2864:        const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
1.202     djm      2865:
1.312     djm      2866:        for (i = 0; i < channels_alloc; i++) {
                   2867:                Channel *c = channels[i];
                   2868:                if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
                   2869:                        continue;
1.313     markus   2870:                if (c->listening_port != lport)
1.312     djm      2871:                        continue;
1.313     markus   2872:                if (cport == CHANNEL_CANCEL_PORT_STATIC) {
                   2873:                        /* skip dynamic forwardings */
                   2874:                        if (c->host_port == 0)
                   2875:                                continue;
                   2876:                } else {
                   2877:                        if (c->host_port != cport)
                   2878:                                continue;
                   2879:                }
1.312     djm      2880:                if ((c->listening_addr == NULL && addr != NULL) ||
                   2881:                    (c->listening_addr != NULL && addr == NULL))
                   2882:                        continue;
                   2883:                if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
1.210     djm      2884:                        debug2("%s: close channel %d", __func__, i);
1.202     djm      2885:                        channel_free(c);
                   2886:                        found = 1;
                   2887:                }
                   2888:        }
                   2889:
                   2890:        return (found);
                   2891: }
                   2892:
1.160     markus   2893: /* protocol local port fwd, used by ssh (and sshd in v1) */
                   2894: int
1.212     djm      2895: channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
1.160     markus   2896:     const char *host_to_connect, u_short port_to_connect, int gateway_ports)
                   2897: {
                   2898:        return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
1.295     djm      2899:            listen_host, listen_port, NULL, host_to_connect, port_to_connect,
1.212     djm      2900:            gateway_ports);
1.160     markus   2901: }
                   2902:
                   2903: /* protocol v2 remote port fwd, used by sshd */
                   2904: int
                   2905: channel_setup_remote_fwd_listener(const char *listen_address,
1.295     djm      2906:     u_short listen_port, int *allocated_listen_port, int gateway_ports)
1.160     markus   2907: {
                   2908:        return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
1.295     djm      2909:            listen_address, listen_port, allocated_listen_port,
                   2910:            NULL, 0, gateway_ports);
1.160     markus   2911: }
                   2912:
1.27      markus   2913: /*
1.312     djm      2914:  * Translate the requested rfwd listen host to something usable for
                   2915:  * this server.
                   2916:  */
                   2917: static const char *
                   2918: channel_rfwd_bind_host(const char *listen_host)
                   2919: {
                   2920:        if (listen_host == NULL) {
                   2921:                if (datafellows & SSH_BUG_RFWD_ADDR)
                   2922:                        return "127.0.0.1";
                   2923:                else
                   2924:                        return "localhost";
                   2925:        } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
                   2926:                if (datafellows & SSH_BUG_RFWD_ADDR)
                   2927:                        return "0.0.0.0";
                   2928:                else
                   2929:                        return "";
                   2930:        } else
                   2931:                return listen_host;
                   2932: }
                   2933:
                   2934: /*
1.27      markus   2935:  * Initiate forwarding of connections to port "port" on remote host through
                   2936:  * the secure channel to host:port from local side.
1.315     markus   2937:  * Returns handle (index) for updating the dynamic listen port with
                   2938:  * channel_update_permitted_opens().
1.27      markus   2939:  */
1.253     markus   2940: int
1.212     djm      2941: channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
1.73      markus   2942:     const char *host_to_connect, u_short port_to_connect)
1.25      markus   2943: {
1.315     markus   2944:        int type, success = 0, idx = -1;
1.73      markus   2945:
1.25      markus   2946:        /* Send the forward request to the remote side. */
1.44      markus   2947:        if (compat20) {
                   2948:                packet_start(SSH2_MSG_GLOBAL_REQUEST);
                   2949:                packet_put_cstring("tcpip-forward");
1.312     djm      2950:                packet_put_char(1);             /* boolean: want reply */
                   2951:                packet_put_cstring(channel_rfwd_bind_host(listen_host));
1.44      markus   2952:                packet_put_int(listen_port);
1.73      markus   2953:                packet_send();
                   2954:                packet_write_wait();
                   2955:                /* Assume that server accepts the request */
                   2956:                success = 1;
1.44      markus   2957:        } else {
                   2958:                packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
1.50      markus   2959:                packet_put_int(listen_port);
                   2960:                packet_put_cstring(host_to_connect);
1.44      markus   2961:                packet_put_int(port_to_connect);
                   2962:                packet_send();
                   2963:                packet_write_wait();
1.73      markus   2964:
                   2965:                /* Wait for response from the remote side. */
1.153     markus   2966:                type = packet_read();
1.73      markus   2967:                switch (type) {
                   2968:                case SSH_SMSG_SUCCESS:
                   2969:                        success = 1;
                   2970:                        break;
                   2971:                case SSH_SMSG_FAILURE:
                   2972:                        break;
                   2973:                default:
                   2974:                        /* Unknown packet */
                   2975:                        packet_disconnect("Protocol error for port forward request:"
                   2976:                            "received packet type %d.", type);
                   2977:                }
                   2978:        }
                   2979:        if (success) {
1.305     djm      2980:                /* Record that connection to this host/port is permitted. */
                   2981:                permitted_opens = xrealloc(permitted_opens,
                   2982:                    num_permitted_opens + 1, sizeof(*permitted_opens));
1.315     markus   2983:                idx = num_permitted_opens++;
                   2984:                permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
                   2985:                permitted_opens[idx].port_to_connect = port_to_connect;
                   2986:                permitted_opens[idx].listen_port = listen_port;
1.44      markus   2987:        }
1.315     markus   2988:        return (idx);
1.1       deraadt  2989: }
                   2990:
1.27      markus   2991: /*
1.208     deraadt  2992:  * Request cancellation of remote forwarding of connection host:port from
1.202     djm      2993:  * local side.
                   2994:  */
1.312     djm      2995: int
1.212     djm      2996: channel_request_rforward_cancel(const char *host, u_short port)
1.202     djm      2997: {
                   2998:        int i;
                   2999:
                   3000:        if (!compat20)
1.312     djm      3001:                return -1;
1.202     djm      3002:
                   3003:        for (i = 0; i < num_permitted_opens; i++) {
1.208     deraadt  3004:                if (permitted_opens[i].host_to_connect != NULL &&
1.202     djm      3005:                    permitted_opens[i].listen_port == port)
                   3006:                        break;
                   3007:        }
                   3008:        if (i >= num_permitted_opens) {
                   3009:                debug("%s: requested forward not found", __func__);
1.312     djm      3010:                return -1;
1.202     djm      3011:        }
                   3012:        packet_start(SSH2_MSG_GLOBAL_REQUEST);
                   3013:        packet_put_cstring("cancel-tcpip-forward");
                   3014:        packet_put_char(0);
1.312     djm      3015:        packet_put_cstring(channel_rfwd_bind_host(host));
1.202     djm      3016:        packet_put_int(port);
                   3017:        packet_send();
                   3018:
                   3019:        permitted_opens[i].listen_port = 0;
                   3020:        permitted_opens[i].port_to_connect = 0;
1.321     djm      3021:        free(permitted_opens[i].host_to_connect);
1.202     djm      3022:        permitted_opens[i].host_to_connect = NULL;
1.312     djm      3023:
                   3024:        return 0;
1.202     djm      3025: }
                   3026:
                   3027: /*
1.27      markus   3028:  * This is called after receiving CHANNEL_FORWARDING_REQUEST.  This initates
                   3029:  * listening for the port, and sends back a success reply (or disconnect
1.253     markus   3030:  * message if there was an error).
1.27      markus   3031:  */
1.253     markus   3032: int
1.56      markus   3033: channel_input_port_forward_request(int is_root, int gateway_ports)
1.1       deraadt  3034: {
1.31      markus   3035:        u_short port, host_port;
1.253     markus   3036:        int success = 0;
1.25      markus   3037:        char *hostname;
1.1       deraadt  3038:
1.25      markus   3039:        /* Get arguments from the packet. */
                   3040:        port = packet_get_int();
                   3041:        hostname = packet_get_string(NULL);
                   3042:        host_port = packet_get_int();
                   3043:
1.27      markus   3044:        /*
                   3045:         * Check that an unprivileged user is not trying to forward a
                   3046:         * privileged port.
                   3047:         */
1.25      markus   3048:        if (port < IPPORT_RESERVED && !is_root)
1.192     markus   3049:                packet_disconnect(
                   3050:                    "Requested forwarding of port %d but user is not root.",
                   3051:                    port);
                   3052:        if (host_port == 0)
                   3053:                packet_disconnect("Dynamic forwarding denied.");
                   3054:
1.73      markus   3055:        /* Initiate forwarding */
1.253     markus   3056:        success = channel_setup_local_fwd_listener(NULL, port, hostname,
1.212     djm      3057:            host_port, gateway_ports);
1.25      markus   3058:
                   3059:        /* Free the argument string. */
1.321     djm      3060:        free(hostname);
1.253     markus   3061:
                   3062:        return (success ? 0 : -1);
1.1       deraadt  3063: }
                   3064:
1.99      markus   3065: /*
                   3066:  * Permits opening to any host/port if permitted_opens[] is empty.  This is
                   3067:  * usually called by the server, because the user could connect to any port
                   3068:  * anyway, and the server has no way to know but to trust the client anyway.
                   3069:  */
                   3070: void
1.142     itojun   3071: channel_permit_all_opens(void)
1.99      markus   3072: {
                   3073:        if (num_permitted_opens == 0)
                   3074:                all_opens_permitted = 1;
                   3075: }
                   3076:
1.101     markus   3077: void
1.99      markus   3078: channel_add_permitted_opens(char *host, int port)
                   3079: {
                   3080:        debug("allow port forwarding to host %s port %d", host, port);
                   3081:
1.305     djm      3082:        permitted_opens = xrealloc(permitted_opens,
                   3083:            num_permitted_opens + 1, sizeof(*permitted_opens));
1.99      markus   3084:        permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
                   3085:        permitted_opens[num_permitted_opens].port_to_connect = port;
                   3086:        num_permitted_opens++;
                   3087:
                   3088:        all_opens_permitted = 0;
1.315     markus   3089: }
                   3090:
                   3091: /*
                   3092:  * Update the listen port for a dynamic remote forward, after
                   3093:  * the actual 'newport' has been allocated. If 'newport' < 0 is
                   3094:  * passed then they entry will be invalidated.
                   3095:  */
                   3096: void
                   3097: channel_update_permitted_opens(int idx, int newport)
                   3098: {
                   3099:        if (idx < 0 || idx >= num_permitted_opens) {
                   3100:                debug("channel_update_permitted_opens: index out of range:"
                   3101:                    " %d num_permitted_opens %d", idx, num_permitted_opens);
                   3102:                return;
                   3103:        }
                   3104:        debug("%s allowed port %d for forwarding to host %s port %d",
                   3105:            newport > 0 ? "Updating" : "Removing",
                   3106:            newport,
                   3107:            permitted_opens[idx].host_to_connect,
                   3108:            permitted_opens[idx].port_to_connect);
                   3109:        if (newport >= 0)  {
                   3110:                permitted_opens[idx].listen_port =
                   3111:                    (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
                   3112:        } else {
                   3113:                permitted_opens[idx].listen_port = 0;
                   3114:                permitted_opens[idx].port_to_connect = 0;
1.321     djm      3115:                free(permitted_opens[idx].host_to_connect);
1.315     markus   3116:                permitted_opens[idx].host_to_connect = NULL;
                   3117:        }
1.99      markus   3118: }
                   3119:
1.258     dtucker  3120: int
1.257     dtucker  3121: channel_add_adm_permitted_opens(char *host, int port)
                   3122: {
1.258     dtucker  3123:        debug("config allows port forwarding to host %s port %d", host, port);
1.257     dtucker  3124:
1.305     djm      3125:        permitted_adm_opens = xrealloc(permitted_adm_opens,
                   3126:            num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
1.257     dtucker  3127:        permitted_adm_opens[num_adm_permitted_opens].host_to_connect
                   3128:             = xstrdup(host);
                   3129:        permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
1.258     dtucker  3130:        return ++num_adm_permitted_opens;
1.257     dtucker  3131: }
                   3132:
                   3133: void
1.316     dtucker  3134: channel_disable_adm_local_opens(void)
                   3135: {
1.319     djm      3136:        channel_clear_adm_permitted_opens();
                   3137:        permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
                   3138:        permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
                   3139:        num_adm_permitted_opens = 1;
1.316     dtucker  3140: }
                   3141:
                   3142: void
1.99      markus   3143: channel_clear_permitted_opens(void)
                   3144: {
                   3145:        int i;
                   3146:
                   3147:        for (i = 0; i < num_permitted_opens; i++)
1.321     djm      3148:                free(permitted_opens[i].host_to_connect);
                   3149:        free(permitted_opens);
                   3150:        permitted_opens = NULL;
1.99      markus   3151:        num_permitted_opens = 0;
1.257     dtucker  3152: }
                   3153:
                   3154: void
                   3155: channel_clear_adm_permitted_opens(void)
                   3156: {
                   3157:        int i;
1.99      markus   3158:
1.257     dtucker  3159:        for (i = 0; i < num_adm_permitted_opens; i++)
1.321     djm      3160:                free(permitted_adm_opens[i].host_to_connect);
                   3161:        free(permitted_adm_opens);
                   3162:        permitted_adm_opens = NULL;
1.257     dtucker  3163:        num_adm_permitted_opens = 0;
1.278     dtucker  3164: }
                   3165:
                   3166: void
                   3167: channel_print_adm_permitted_opens(void)
                   3168: {
1.286     djm      3169:        int i;
1.278     dtucker  3170:
1.290     stevesk  3171:        printf("permitopen");
1.288     stevesk  3172:        if (num_adm_permitted_opens == 0) {
1.290     stevesk  3173:                printf(" any\n");
1.288     stevesk  3174:                return;
                   3175:        }
1.278     dtucker  3176:        for (i = 0; i < num_adm_permitted_opens; i++)
1.316     dtucker  3177:                if (permitted_adm_opens[i].host_to_connect == NULL)
                   3178:                        printf(" none");
                   3179:                else
1.278     dtucker  3180:                        printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
                   3181:                            permitted_adm_opens[i].port_to_connect);
1.290     stevesk  3182:        printf("\n");
1.99      markus   3183: }
                   3184:
1.314     dtucker  3185: /* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
                   3186: int
                   3187: permitopen_port(const char *p)
                   3188: {
                   3189:        int port;
                   3190:
                   3191:        if (strcmp(p, "*") == 0)
                   3192:                return FWD_PERMIT_ANY_PORT;
                   3193:        if ((port = a2port(p)) > 0)
                   3194:                return port;
                   3195:        return -1;
                   3196: }
                   3197:
                   3198: static int
                   3199: port_match(u_short allowedport, u_short requestedport)
                   3200: {
                   3201:        if (allowedport == FWD_PERMIT_ANY_PORT ||
                   3202:            allowedport == requestedport)
                   3203:                return 1;
                   3204:        return 0;
                   3205: }
                   3206:
1.276     djm      3207: /* Try to start non-blocking connect to next host in cctx list */
1.127     itojun   3208: static int
1.276     djm      3209: connect_next(struct channel_connect *cctx)
1.41      markus   3210: {
1.276     djm      3211:        int sock, saved_errno;
1.41      markus   3212:        char ntop[NI_MAXHOST], strport[NI_MAXSERV];
                   3213:
1.276     djm      3214:        for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
                   3215:                if (cctx->ai->ai_family != AF_INET &&
                   3216:                    cctx->ai->ai_family != AF_INET6)
1.41      markus   3217:                        continue;
1.276     djm      3218:                if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
                   3219:                    ntop, sizeof(ntop), strport, sizeof(strport),
                   3220:                    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
                   3221:                        error("connect_next: getnameinfo failed");
1.41      markus   3222:                        continue;
                   3223:                }
1.300     dtucker  3224:                if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
                   3225:                    cctx->ai->ai_protocol)) == -1) {
1.276     djm      3226:                        if (cctx->ai->ai_next == NULL)
1.186     djm      3227:                                error("socket: %.100s", strerror(errno));
                   3228:                        else
                   3229:                                verbose("socket: %.100s", strerror(errno));
1.41      markus   3230:                        continue;
                   3231:                }
1.205     djm      3232:                if (set_nonblock(sock) == -1)
                   3233:                        fatal("%s: set_nonblock(%d)", __func__, sock);
1.276     djm      3234:                if (connect(sock, cctx->ai->ai_addr,
                   3235:                    cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
                   3236:                        debug("connect_next: host %.100s ([%.100s]:%s): "
                   3237:                            "%.100s", cctx->host, ntop, strport,
1.41      markus   3238:                            strerror(errno));
1.276     djm      3239:                        saved_errno = errno;
1.41      markus   3240:                        close(sock);
1.276     djm      3241:                        errno = saved_errno;
1.89      stevesk  3242:                        continue;       /* fail -- try next */
1.41      markus   3243:                }
1.276     djm      3244:                debug("connect_next: host %.100s ([%.100s]:%s) "
                   3245:                    "in progress, fd=%d", cctx->host, ntop, strport, sock);
                   3246:                cctx->ai = cctx->ai->ai_next;
                   3247:                set_nodelay(sock);
                   3248:                return sock;
                   3249:        }
                   3250:        return -1;
                   3251: }
1.41      markus   3252:
1.276     djm      3253: static void
                   3254: channel_connect_ctx_free(struct channel_connect *cctx)
                   3255: {
1.321     djm      3256:        free(cctx->host);
1.276     djm      3257:        if (cctx->aitop)
                   3258:                freeaddrinfo(cctx->aitop);
                   3259:        bzero(cctx, sizeof(*cctx));
                   3260:        cctx->host = NULL;
                   3261:        cctx->ai = cctx->aitop = NULL;
                   3262: }
                   3263:
                   3264: /* Return CONNECTING channel to remote host, port */
                   3265: static Channel *
                   3266: connect_to(const char *host, u_short port, char *ctype, char *rname)
                   3267: {
                   3268:        struct addrinfo hints;
                   3269:        int gaierr;
                   3270:        int sock = -1;
                   3271:        char strport[NI_MAXSERV];
                   3272:        struct channel_connect cctx;
                   3273:        Channel *c;
                   3274:
1.284     djm      3275:        memset(&cctx, 0, sizeof(cctx));
1.276     djm      3276:        memset(&hints, 0, sizeof(hints));
                   3277:        hints.ai_family = IPv4or6;
                   3278:        hints.ai_socktype = SOCK_STREAM;
                   3279:        snprintf(strport, sizeof strport, "%d", port);
                   3280:        if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
                   3281:                error("connect_to %.100s: unknown host (%s)", host,
                   3282:                    ssh_gai_strerror(gaierr));
                   3283:                return NULL;
1.41      markus   3284:        }
1.276     djm      3285:
                   3286:        cctx.host = xstrdup(host);
                   3287:        cctx.port = port;
                   3288:        cctx.ai = cctx.aitop;
                   3289:
                   3290:        if ((sock = connect_next(&cctx)) == -1) {
                   3291:                error("connect to %.100s port %d failed: %s",
                   3292:                    host, port, strerror(errno));
                   3293:                channel_connect_ctx_free(&cctx);
                   3294:                return NULL;
1.41      markus   3295:        }
1.276     djm      3296:        c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
                   3297:            CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
                   3298:        c->connect_ctx = cctx;
                   3299:        return c;
1.41      markus   3300: }
1.99      markus   3301:
1.276     djm      3302: Channel *
                   3303: channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
1.73      markus   3304: {
                   3305:        int i;
1.99      markus   3306:
1.276     djm      3307:        for (i = 0; i < num_permitted_opens; i++) {
1.202     djm      3308:                if (permitted_opens[i].host_to_connect != NULL &&
1.314     dtucker  3309:                    port_match(permitted_opens[i].listen_port, listen_port)) {
1.99      markus   3310:                        return connect_to(
1.73      markus   3311:                            permitted_opens[i].host_to_connect,
1.276     djm      3312:                            permitted_opens[i].port_to_connect, ctype, rname);
                   3313:                }
                   3314:        }
1.74      markus   3315:        error("WARNING: Server requests forwarding for unknown listen_port %d",
                   3316:            listen_port);
1.276     djm      3317:        return NULL;
1.73      markus   3318: }
                   3319:
1.99      markus   3320: /* Check if connecting to that port is permitted and connect. */
1.276     djm      3321: Channel *
                   3322: channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
1.99      markus   3323: {
1.257     dtucker  3324:        int i, permit, permit_adm = 1;
1.99      markus   3325:
                   3326:        permit = all_opens_permitted;
                   3327:        if (!permit) {
                   3328:                for (i = 0; i < num_permitted_opens; i++)
1.202     djm      3329:                        if (permitted_opens[i].host_to_connect != NULL &&
1.314     dtucker  3330:                            port_match(permitted_opens[i].port_to_connect, port) &&
1.99      markus   3331:                            strcmp(permitted_opens[i].host_to_connect, host) == 0)
                   3332:                                permit = 1;
1.257     dtucker  3333:        }
1.99      markus   3334:
1.257     dtucker  3335:        if (num_adm_permitted_opens > 0) {
                   3336:                permit_adm = 0;
                   3337:                for (i = 0; i < num_adm_permitted_opens; i++)
                   3338:                        if (permitted_adm_opens[i].host_to_connect != NULL &&
1.314     dtucker  3339:                            port_match(permitted_adm_opens[i].port_to_connect, port) &&
1.257     dtucker  3340:                            strcmp(permitted_adm_opens[i].host_to_connect, host)
                   3341:                            == 0)
                   3342:                                permit_adm = 1;
1.99      markus   3343:        }
1.257     dtucker  3344:
                   3345:        if (!permit || !permit_adm) {
1.188     itojun   3346:                logit("Received request to connect to host %.100s port %d, "
1.99      markus   3347:                    "but the request was denied.", host, port);
1.276     djm      3348:                return NULL;
1.99      markus   3349:        }
1.276     djm      3350:        return connect_to(host, port, ctype, rname);
1.204     djm      3351: }
                   3352:
                   3353: void
                   3354: channel_send_window_changes(void)
                   3355: {
1.209     avsm     3356:        u_int i;
1.204     djm      3357:        struct winsize ws;
                   3358:
                   3359:        for (i = 0; i < channels_alloc; i++) {
1.213     deraadt  3360:                if (channels[i] == NULL || !channels[i]->client_tty ||
1.204     djm      3361:                    channels[i]->type != SSH_CHANNEL_OPEN)
                   3362:                        continue;
                   3363:                if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
                   3364:                        continue;
                   3365:                channel_request_start(i, "window-change", 0);
1.238     deraadt  3366:                packet_put_int((u_int)ws.ws_col);
                   3367:                packet_put_int((u_int)ws.ws_row);
                   3368:                packet_put_int((u_int)ws.ws_xpixel);
                   3369:                packet_put_int((u_int)ws.ws_ypixel);
1.204     djm      3370:                packet_send();
                   3371:        }
1.99      markus   3372: }
                   3373:
1.121     markus   3374: /* -- X11 forwarding */
1.1       deraadt  3375:
1.27      markus   3376: /*
                   3377:  * Creates an internet domain socket for listening for X11 connections.
1.176     deraadt  3378:  * Returns 0 and a suitable display number for the DISPLAY variable
                   3379:  * stored in display_numberp , or -1 if an error occurs.
1.27      markus   3380:  */
1.141     stevesk  3381: int
1.163     stevesk  3382: x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
1.222     djm      3383:     int single_connection, u_int *display_numberp, int **chanids)
1.1       deraadt  3384: {
1.149     markus   3385:        Channel *nc = NULL;
1.31      markus   3386:        int display_number, sock;
                   3387:        u_short port;
1.35      markus   3388:        struct addrinfo hints, *ai, *aitop;
                   3389:        char strport[NI_MAXSERV];
                   3390:        int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1.25      markus   3391:
1.224     markus   3392:        if (chanids == NULL)
                   3393:                return -1;
                   3394:
1.33      markus   3395:        for (display_number = x11_display_offset;
1.148     deraadt  3396:            display_number < MAX_DISPLAYS;
                   3397:            display_number++) {
1.25      markus   3398:                port = 6000 + display_number;
1.35      markus   3399:                memset(&hints, 0, sizeof(hints));
                   3400:                hints.ai_family = IPv4or6;
1.163     stevesk  3401:                hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
1.35      markus   3402:                hints.ai_socktype = SOCK_STREAM;
                   3403:                snprintf(strport, sizeof strport, "%d", port);
                   3404:                if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1.271     dtucker  3405:                        error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
1.141     stevesk  3406:                        return -1;
1.25      markus   3407:                }
1.35      markus   3408:                for (ai = aitop; ai; ai = ai->ai_next) {
                   3409:                        if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
                   3410:                                continue;
1.300     dtucker  3411:                        sock = socket(ai->ai_family, ai->ai_socktype,
                   3412:                            ai->ai_protocol);
1.35      markus   3413:                        if (sock < 0) {
                   3414:                                error("socket: %.100s", strerror(errno));
1.203     markus   3415:                                freeaddrinfo(aitop);
1.141     stevesk  3416:                                return -1;
1.35      markus   3417:                        }
1.226     djm      3418:                        channel_set_reuseaddr(sock);
1.35      markus   3419:                        if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1.194     markus   3420:                                debug2("bind port %d: %.100s", port, strerror(errno));
1.35      markus   3421:                                close(sock);
1.183     itojun   3422:
1.35      markus   3423:                                for (n = 0; n < num_socks; n++) {
                   3424:                                        close(socks[n]);
                   3425:                                }
                   3426:                                num_socks = 0;
                   3427:                                break;
                   3428:                        }
                   3429:                        socks[num_socks++] = sock;
                   3430:                        if (num_socks == NUM_SOCKS)
                   3431:                                break;
1.25      markus   3432:                }
1.83      stevesk  3433:                freeaddrinfo(aitop);
1.35      markus   3434:                if (num_socks > 0)
                   3435:                        break;
1.25      markus   3436:        }
                   3437:        if (display_number >= MAX_DISPLAYS) {
                   3438:                error("Failed to allocate internet-domain X11 display socket.");
1.141     stevesk  3439:                return -1;
1.25      markus   3440:        }
                   3441:        /* Start listening for connections on the socket. */
1.35      markus   3442:        for (n = 0; n < num_socks; n++) {
                   3443:                sock = socks[n];
1.199     markus   3444:                if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
1.35      markus   3445:                        error("listen: %.100s", strerror(errno));
                   3446:                        close(sock);
1.141     stevesk  3447:                        return -1;
1.35      markus   3448:                }
1.25      markus   3449:        }
1.35      markus   3450:
                   3451:        /* Allocate a channel for each socket. */
1.242     djm      3452:        *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
1.35      markus   3453:        for (n = 0; n < num_socks; n++) {
                   3454:                sock = socks[n];
1.149     markus   3455:                nc = channel_new("x11 listener",
1.51      markus   3456:                    SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
                   3457:                    CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
1.190     markus   3458:                    0, "X11 inet listener", 1);
1.167     markus   3459:                nc->single_connection = single_connection;
1.224     markus   3460:                (*chanids)[n] = nc->self;
1.35      markus   3461:        }
1.224     markus   3462:        (*chanids)[n] = -1;
1.1       deraadt  3463:
1.141     stevesk  3464:        /* Return the display number for the DISPLAY environment variable. */
1.176     deraadt  3465:        *display_numberp = display_number;
                   3466:        return (0);
1.1       deraadt  3467: }
                   3468:
1.127     itojun   3469: static int
1.77      markus   3470: connect_local_xsocket(u_int dnr)
1.1       deraadt  3471: {
1.25      markus   3472:        int sock;
                   3473:        struct sockaddr_un addr;
                   3474:
1.147     stevesk  3475:        sock = socket(AF_UNIX, SOCK_STREAM, 0);
                   3476:        if (sock < 0)
                   3477:                error("socket: %.100s", strerror(errno));
                   3478:        memset(&addr, 0, sizeof(addr));
                   3479:        addr.sun_family = AF_UNIX;
                   3480:        snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
1.239     deraadt  3481:        if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
1.147     stevesk  3482:                return sock;
                   3483:        close(sock);
1.25      markus   3484:        error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
                   3485:        return -1;
1.1       deraadt  3486: }
                   3487:
1.51      markus   3488: int
                   3489: x11_connect_display(void)
1.1       deraadt  3490: {
1.248     deraadt  3491:        u_int display_number;
1.25      markus   3492:        const char *display;
1.51      markus   3493:        char buf[1024], *cp;
1.35      markus   3494:        struct addrinfo hints, *ai, *aitop;
                   3495:        char strport[NI_MAXSERV];
1.248     deraadt  3496:        int gaierr, sock = 0;
1.25      markus   3497:
                   3498:        /* Try to open a socket for the local X server. */
                   3499:        display = getenv("DISPLAY");
                   3500:        if (!display) {
                   3501:                error("DISPLAY not set.");
1.51      markus   3502:                return -1;
1.25      markus   3503:        }
1.27      markus   3504:        /*
                   3505:         * Now we decode the value of the DISPLAY variable and make a
                   3506:         * connection to the real X server.
                   3507:         */
                   3508:
                   3509:        /*
                   3510:         * Check if it is a unix domain socket.  Unix domain displays are in
                   3511:         * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
                   3512:         */
1.25      markus   3513:        if (strncmp(display, "unix:", 5) == 0 ||
                   3514:            display[0] == ':') {
                   3515:                /* Connect to the unix domain socket. */
1.248     deraadt  3516:                if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
1.25      markus   3517:                        error("Could not parse display number from DISPLAY: %.100s",
1.148     deraadt  3518:                            display);
1.51      markus   3519:                        return -1;
1.25      markus   3520:                }
                   3521:                /* Create a socket. */
                   3522:                sock = connect_local_xsocket(display_number);
                   3523:                if (sock < 0)
1.51      markus   3524:                        return -1;
1.25      markus   3525:
                   3526:                /* OK, we now have a connection to the display. */
1.51      markus   3527:                return sock;
1.25      markus   3528:        }
1.27      markus   3529:        /*
                   3530:         * Connect to an inet socket.  The DISPLAY value is supposedly
                   3531:         * hostname:d[.s], where hostname may also be numeric IP address.
                   3532:         */
1.145     stevesk  3533:        strlcpy(buf, display, sizeof(buf));
1.25      markus   3534:        cp = strchr(buf, ':');
                   3535:        if (!cp) {
                   3536:                error("Could not find ':' in DISPLAY: %.100s", display);
1.51      markus   3537:                return -1;
1.25      markus   3538:        }
                   3539:        *cp = 0;
1.27      markus   3540:        /* buf now contains the host name.  But first we parse the display number. */
1.248     deraadt  3541:        if (sscanf(cp + 1, "%u", &display_number) != 1) {
1.25      markus   3542:                error("Could not parse display number from DISPLAY: %.100s",
1.148     deraadt  3543:                    display);
1.51      markus   3544:                return -1;
1.25      markus   3545:        }
1.35      markus   3546:
                   3547:        /* Look up the host address */
                   3548:        memset(&hints, 0, sizeof(hints));
                   3549:        hints.ai_family = IPv4or6;
                   3550:        hints.ai_socktype = SOCK_STREAM;
1.248     deraadt  3551:        snprintf(strport, sizeof strport, "%u", 6000 + display_number);
1.35      markus   3552:        if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
1.271     dtucker  3553:                error("%.100s: unknown host. (%s)", buf,
                   3554:                ssh_gai_strerror(gaierr));
1.51      markus   3555:                return -1;
1.25      markus   3556:        }
1.35      markus   3557:        for (ai = aitop; ai; ai = ai->ai_next) {
                   3558:                /* Create a socket. */
1.300     dtucker  3559:                sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1.35      markus   3560:                if (sock < 0) {
1.194     markus   3561:                        debug2("socket: %.100s", strerror(errno));
1.41      markus   3562:                        continue;
                   3563:                }
                   3564:                /* Connect it to the display. */
                   3565:                if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1.248     deraadt  3566:                        debug2("connect %.100s port %u: %.100s", buf,
1.41      markus   3567:                            6000 + display_number, strerror(errno));
                   3568:                        close(sock);
                   3569:                        continue;
                   3570:                }
                   3571:                /* Success */
                   3572:                break;
1.35      markus   3573:        }
                   3574:        freeaddrinfo(aitop);
                   3575:        if (!ai) {
1.248     deraadt  3576:                error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
1.35      markus   3577:                    strerror(errno));
1.51      markus   3578:                return -1;
1.25      markus   3579:        }
1.162     stevesk  3580:        set_nodelay(sock);
1.51      markus   3581:        return sock;
                   3582: }
                   3583:
                   3584: /*
                   3585:  * This is called when SSH_SMSG_X11_OPEN is received.  The packet contains
                   3586:  * the remote channel number.  We should do whatever we want, and respond
                   3587:  * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
                   3588:  */
                   3589:
1.259     stevesk  3590: /* ARGSUSED */
1.51      markus   3591: void
1.154     markus   3592: x11_input_open(int type, u_int32_t seq, void *ctxt)
1.51      markus   3593: {
1.113     markus   3594:        Channel *c = NULL;
                   3595:        int remote_id, sock = 0;
1.51      markus   3596:        char *remote_host;
1.25      markus   3597:
1.113     markus   3598:        debug("Received X11 open request.");
1.51      markus   3599:
1.113     markus   3600:        remote_id = packet_get_int();
1.121     markus   3601:
                   3602:        if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1.113     markus   3603:                remote_host = packet_get_string(NULL);
1.51      markus   3604:        } else {
                   3605:                remote_host = xstrdup("unknown (remote did not supply name)");
                   3606:        }
1.152     markus   3607:        packet_check_eom();
1.25      markus   3608:
1.51      markus   3609:        /* Obtain a connection to the real X display. */
                   3610:        sock = x11_connect_display();
1.113     markus   3611:        if (sock != -1) {
                   3612:                /* Allocate a channel for this connection. */
                   3613:                c = channel_new("connected x11 socket",
                   3614:                    SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
                   3615:                    remote_host, 1);
1.167     markus   3616:                c->remote_id = remote_id;
                   3617:                c->force_drain = 1;
1.113     markus   3618:        }
1.321     djm      3619:        free(remote_host);
1.113     markus   3620:        if (c == NULL) {
1.51      markus   3621:                /* Send refusal to the remote host. */
                   3622:                packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1.113     markus   3623:                packet_put_int(remote_id);
1.51      markus   3624:        } else {
                   3625:                /* Send a confirmation to the remote host. */
                   3626:                packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1.113     markus   3627:                packet_put_int(remote_id);
                   3628:                packet_put_int(c->self);
1.51      markus   3629:        }
1.113     markus   3630:        packet_send();
1.72      markus   3631: }
                   3632:
                   3633: /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
1.259     stevesk  3634: /* ARGSUSED */
1.72      markus   3635: void
1.154     markus   3636: deny_input_open(int type, u_int32_t seq, void *ctxt)
1.72      markus   3637: {
                   3638:        int rchan = packet_get_int();
1.180     deraadt  3639:
1.143     deraadt  3640:        switch (type) {
1.72      markus   3641:        case SSH_SMSG_AGENT_OPEN:
                   3642:                error("Warning: ssh server tried agent forwarding.");
                   3643:                break;
                   3644:        case SSH_SMSG_X11_OPEN:
                   3645:                error("Warning: ssh server tried X11 forwarding.");
                   3646:                break;
                   3647:        default:
1.154     markus   3648:                error("deny_input_open: type %d", type);
1.72      markus   3649:                break;
                   3650:        }
1.230     stevesk  3651:        error("Warning: this is probably a break-in attempt by a malicious server.");
1.72      markus   3652:        packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
                   3653:        packet_put_int(rchan);
                   3654:        packet_send();
1.1       deraadt  3655: }
                   3656:
1.27      markus   3657: /*
                   3658:  * Requests forwarding of X11 connections, generates fake authentication
                   3659:  * data, and enables authentication spoofing.
1.121     markus   3660:  * This should be called in the client only.
1.27      markus   3661:  */
1.49      markus   3662: void
1.215     djm      3663: x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
1.311     djm      3664:     const char *proto, const char *data, int want_reply)
1.1       deraadt  3665: {
1.77      markus   3666:        u_int data_len = (u_int) strlen(data) / 2;
1.219     djm      3667:        u_int i, value;
1.25      markus   3668:        char *new_data;
                   3669:        int screen_number;
                   3670:        const char *cp;
1.207     avsm     3671:        u_int32_t rnd = 0;
1.25      markus   3672:
1.220     markus   3673:        if (x11_saved_display == NULL)
                   3674:                x11_saved_display = xstrdup(disp);
                   3675:        else if (strcmp(disp, x11_saved_display) != 0) {
1.219     djm      3676:                error("x11_request_forwarding_with_spoofing: different "
                   3677:                    "$DISPLAY already forwarded");
                   3678:                return;
                   3679:        }
                   3680:
1.266     djm      3681:        cp = strchr(disp, ':');
1.25      markus   3682:        if (cp)
                   3683:                cp = strchr(cp, '.');
                   3684:        if (cp)
1.245     deraadt  3685:                screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
1.25      markus   3686:        else
                   3687:                screen_number = 0;
                   3688:
1.219     djm      3689:        if (x11_saved_proto == NULL) {
                   3690:                /* Save protocol name. */
                   3691:                x11_saved_proto = xstrdup(proto);
                   3692:                /*
1.221     djm      3693:                 * Extract real authentication data and generate fake data
1.219     djm      3694:                 * of the same length.
                   3695:                 */
                   3696:                x11_saved_data = xmalloc(data_len);
                   3697:                x11_fake_data = xmalloc(data_len);
                   3698:                for (i = 0; i < data_len; i++) {
                   3699:                        if (sscanf(data + 2 * i, "%2x", &value) != 1)
                   3700:                                fatal("x11_request_forwarding: bad "
                   3701:                                    "authentication data: %.100s", data);
                   3702:                        if (i % 4 == 0)
                   3703:                                rnd = arc4random();
                   3704:                        x11_saved_data[i] = value;
                   3705:                        x11_fake_data[i] = rnd & 0xff;
                   3706:                        rnd >>= 8;
                   3707:                }
                   3708:                x11_saved_data_len = data_len;
                   3709:                x11_fake_data_len = data_len;
1.25      markus   3710:        }
                   3711:
                   3712:        /* Convert the fake data into hex. */
1.219     djm      3713:        new_data = tohex(x11_fake_data, data_len);
1.25      markus   3714:
                   3715:        /* Send the request packet. */
1.51      markus   3716:        if (compat20) {
1.311     djm      3717:                channel_request_start(client_session_id, "x11-req", want_reply);
1.51      markus   3718:                packet_put_char(0);     /* XXX bool single connection */
                   3719:        } else {
                   3720:                packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
                   3721:        }
                   3722:        packet_put_cstring(proto);
                   3723:        packet_put_cstring(new_data);
1.25      markus   3724:        packet_put_int(screen_number);
                   3725:        packet_send();
                   3726:        packet_write_wait();
1.321     djm      3727:        free(new_data);
1.1       deraadt  3728: }
                   3729:
1.121     markus   3730:
                   3731: /* -- agent forwarding */
                   3732:
1.1       deraadt  3733: /* Sends a message to the server to request authentication fd forwarding. */
                   3734:
1.49      markus   3735: void
1.142     itojun   3736: auth_request_forwarding(void)
1.1       deraadt  3737: {
1.25      markus   3738:        packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
                   3739:        packet_send();
                   3740:        packet_write_wait();
1.1       deraadt  3741: }