blob: 07dc9577ab7e71689a4e6bd52d70ada35ddd9fec [file] [log] [blame]
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001/* $OpenBSD: channels.c,v 1.376 2017/10/25 00:15:35 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * 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.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * 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 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * 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.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100046#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110047#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100048#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100049#ifdef HAVE_SYS_TIME_H
50# include <sys/time.h>
51#endif
Damien Millerefc04e72006-07-10 20:26:27 +100052
53#include <netinet/in.h>
54#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055
Darren Tucker39972492006-07-12 22:22:46 +100056#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110057#include <fcntl.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000058#include <limits.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100059#include <netdb.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000060#include <stdarg.h>
Darren Tucker37f92202015-02-23 03:07:24 +110061#ifdef HAVE_STDINT_H
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000062 #include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110063#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110067#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Millerb84886b2008-05-19 15:05:07 +100070#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "ssh2.h"
markus@openbsd.org8d057842016-09-30 09:19:13 +000074#include "ssherr.h"
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000075#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100082#include "key.h"
83#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110084#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000086/* -- agent forwarding */
87#define NUM_SOCKS 10
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Ben Lindstrome9c99912001-06-09 00:41:05 +000089/* -- tcp forwarding */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000090/* special-case port number meaning allow any port */
91#define FWD_PERMIT_ANY_PORT 0
92
93/* special-case wildcard meaning allow any host */
94#define FWD_PERMIT_ANY_HOST "*"
95
96/* -- X11 forwarding */
97/* Maximum number of fake X11 displays to try. */
98#define MAX_DISPLAYS 1000
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
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 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000106/* XXX: streamlocal wants a path instead of host:port */
107/* Overload host_to_connect; we could just make this match Forward */
108/* XXX - can we use listen_host instead of listen_path? */
Damien Miller95def091999-11-25 00:26:21 +1100109typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000110 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000111 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000112 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000113 char *listen_path; /* Remote side should listen path. */
114 int listen_port; /* Remote side should listen port. */
markus@openbsd.org8d057842016-09-30 09:19:13 +0000115 Channel *downstream; /* Downstream mux*/
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116} ForwardPermission;
117
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000118typedef void chan_fn(struct ssh *, Channel *c,
119 fd_set *readset, fd_set *writeset);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000120
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000121/* Master structure for channels state */
122struct ssh_channels {
123 /*
124 * Pointer to an array containing all allocated channels. The array
125 * is dynamically extended as needed.
126 */
127 Channel **channels;
Damien Miller9b439df2006-07-24 14:04:00 +1000128
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000129 /*
130 * Size of the channel array. All slots of the array must always be
131 * initialized (at least the type field); unused slots set to NULL
132 */
133 u_int channels_alloc;
Damien Miller9b439df2006-07-24 14:04:00 +1000134
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000135 /*
136 * Maximum file descriptor value used in any of the channels. This is
137 * updated in channel_new.
138 */
139 int channel_max_fd;
Damien Miller9b439df2006-07-24 14:04:00 +1000140
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000141 /*
142 * 'channel_pre*' are called just before select() to add any bits
143 * relevant to channels in the select bitmasks.
144 *
145 * 'channel_post*': perform any appropriate operations for
146 * channels which have events pending.
147 */
148 chan_fn **channel_pre;
149 chan_fn **channel_post;
Darren Tucker1338b9e2011-10-02 18:57:35 +1100150
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000151 /* -- tcp forwarding */
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +0000152
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000153 /* List of all permitted host/port pairs to connect by the user. */
154 ForwardPermission *permitted_opens;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000156 /* List of all permitted host/port pairs to connect by the admin. */
157 ForwardPermission *permitted_adm_opens;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000158
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000159 /*
160 * Number of permitted host/port pairs in the array permitted by
161 * the user.
162 */
163 u_int num_permitted_opens;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000164
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000165 /*
166 * Number of permitted host/port pair in the array permitted by
167 * the admin.
168 */
169 u_int num_adm_permitted_opens;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000170
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000171 /*
172 * If this is true, all opens are permitted. This is the case on
173 * the server on which we have to trust the client anyway, and the
174 * user could do anything after logging in anyway.
175 */
176 int all_opens_permitted;
Damien Miller13390022005-07-06 09:44:19 +1000177
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000178 /* -- X11 forwarding */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000179
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000180 /* Saved X11 local (client) display. */
181 char *x11_saved_display;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000182
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000183 /* Saved X11 authentication protocol name. */
184 char *x11_saved_proto;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000185
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000186 /* Saved X11 authentication data. This is the real data. */
187 char *x11_saved_data;
188 u_int x11_saved_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000189
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000190 /* Deadline after which all X11 connections are refused */
191 u_int x11_refuse_time;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000192
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000193 /*
194 * Fake X11 authentication data. This is what the server will be
195 * sending us; we should replace any occurrences of this by the
196 * real data.
197 */
198 u_char *x11_fake_data;
199 u_int x11_fake_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000200
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000201 /* AF_UNSPEC or AF_INET or AF_INET6 */
202 int IPv4or6;
203};
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000204
Ben Lindstrome9c99912001-06-09 00:41:05 +0000205/* helper */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000206static void port_open_helper(struct ssh *ssh, Channel *c, char *rtype);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000207static const char *channel_rfwd_bind_host(const char *listen_host);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000208
Damien Millerbd740252008-05-19 15:37:09 +1000209/* non-blocking connect helpers */
210static int connect_next(struct channel_connect *);
211static void channel_connect_ctx_free(struct channel_connect *);
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000212static Channel *rdynamic_connect_prepare(struct ssh *, char *, char *);
213static int rdynamic_connect_finish(struct ssh *, Channel *);
Damien Millerbd740252008-05-19 15:37:09 +1000214
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000215/* Setup helper */
216static void channel_handler_init(struct ssh_channels *sc);
217
Ben Lindstrome9c99912001-06-09 00:41:05 +0000218/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000219
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000220void
221channel_init_channels(struct ssh *ssh)
222{
223 struct ssh_channels *sc;
224
225 if ((sc = calloc(1, sizeof(*sc))) == NULL ||
226 (sc->channel_pre = calloc(SSH_CHANNEL_MAX_TYPE,
227 sizeof(*sc->channel_pre))) == NULL ||
228 (sc->channel_post = calloc(SSH_CHANNEL_MAX_TYPE,
229 sizeof(*sc->channel_post))) == NULL)
230 fatal("%s: allocation failed", __func__);
231 sc->channels_alloc = 10;
232 sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
233 sc->IPv4or6 = AF_UNSPEC;
234 channel_handler_init(sc);
235
236 ssh->chanctxt = sc;
237}
238
Damien Millerb38eff82000-04-01 11:09:21 +1000239Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000240channel_by_id(struct ssh *ssh, int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000241{
242 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000243
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000244 if (id < 0 || (u_int)id >= ssh->chanctxt->channels_alloc) {
245 logit("%s: %d: bad id", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000246 return NULL;
247 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000248 c = ssh->chanctxt->channels[id];
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000249 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000250 logit("%s: %d: bad id: channel free", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000251 return NULL;
252 }
253 return c;
254}
255
markus@openbsd.org8d057842016-09-30 09:19:13 +0000256Channel *
djm@openbsd.org9f532292017-09-12 06:35:31 +0000257channel_by_remote_id(struct ssh *ssh, u_int remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000258{
259 Channel *c;
260 u_int i;
261
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000262 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
263 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000264 if (c != NULL && c->have_remote_id && c->remote_id == remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000265 return c;
266 }
267 return NULL;
268}
269
Damien Miller5428f641999-11-25 11:54:57 +1100270/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100271 * Returns the channel if it is allowed to receive protocol messages.
272 * Private channels, like listening sockets, may not receive messages.
273 */
274Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000275channel_lookup(struct ssh *ssh, int id)
Damien Millerd47c62a2005-12-13 19:33:57 +1100276{
277 Channel *c;
278
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000279 if ((c = channel_by_id(ssh, id)) == NULL)
280 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100281
Damien Millerd62f2ca2006-03-26 13:57:41 +1100282 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100283 case SSH_CHANNEL_X11_OPEN:
284 case SSH_CHANNEL_LARVAL:
285 case SSH_CHANNEL_CONNECTING:
286 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000287 case SSH_CHANNEL_RDYNAMIC_OPEN:
288 case SSH_CHANNEL_RDYNAMIC_FINISH:
Damien Millerd47c62a2005-12-13 19:33:57 +1100289 case SSH_CHANNEL_OPENING:
290 case SSH_CHANNEL_OPEN:
Damien Miller36187092013-06-10 13:07:11 +1000291 case SSH_CHANNEL_ABANDONED:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000292 case SSH_CHANNEL_MUX_PROXY:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000293 return c;
Damien Millerd47c62a2005-12-13 19:33:57 +1100294 }
295 logit("Non-public channel %d, type %d.", id, c->type);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000296 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100297}
298
299/*
Damien Millere247cc42000-05-07 12:03:14 +1000300 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000301 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100302 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000304channel_register_fds(struct ssh *ssh, Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000305 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000307 struct ssh_channels *sc = ssh->chanctxt;
308
Damien Miller95def091999-11-25 00:26:21 +1100309 /* Update the maximum file descriptor value. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000310 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, rfd);
311 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, wfd);
312 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, efd);
Damien Miller5e953212001-01-30 09:14:00 +1100313
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100314 if (rfd != -1)
315 fcntl(rfd, F_SETFD, FD_CLOEXEC);
316 if (wfd != -1 && wfd != rfd)
317 fcntl(wfd, F_SETFD, FD_CLOEXEC);
318 if (efd != -1 && efd != rfd && efd != wfd)
319 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000320
Damien Miller6f83b8e2000-05-02 09:23:45 +1000321 c->rfd = rfd;
322 c->wfd = wfd;
323 c->sock = (rfd == wfd) ? rfd : -1;
324 c->efd = efd;
325 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100326
Darren Tuckered3cdc02008-06-16 23:29:18 +1000327 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000328 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000329#ifdef _AIX
330 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000331 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000332#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100333
Damien Miller69b69aa2000-10-28 14:19:58 +1100334 /* enable nonblocking mode */
335 if (nonblock) {
336 if (rfd != -1)
337 set_nonblock(rfd);
338 if (wfd != -1)
339 set_nonblock(wfd);
340 if (efd != -1)
341 set_nonblock(efd);
342 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000343}
344
345/*
346 * Allocate a new channel object and set its type and socket. This will cause
347 * remote_name to be freed.
348 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000349Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000350channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000351 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000352{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000353 struct ssh_channels *sc = ssh->chanctxt;
354 u_int i, found;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000355 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356
Damien Miller95def091999-11-25 00:26:21 +1100357 /* Try to find a free slot where to put the new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000358 for (i = 0; i < sc->channels_alloc; i++) {
359 if (sc->channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100360 /* Found a free slot. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000361 found = i;
Damien Miller95def091999-11-25 00:26:21 +1100362 break;
363 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000364 }
365 if (i >= sc->channels_alloc) {
366 /*
367 * There are no free slots. Take last+1 slot and expand
368 * the array.
369 */
370 found = sc->channels_alloc;
371 if (sc->channels_alloc > CHANNELS_MAX_CHANNELS)
372 fatal("%s: internal error: channels_alloc %d too big",
373 __func__, sc->channels_alloc);
374 sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
375 sc->channels_alloc + 10, sizeof(*sc->channels));
376 sc->channels_alloc += 10;
377 debug2("channel: expanding %d", sc->channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100378 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000379 /* Initialize and return new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000380 c = sc->channels[found] = xcalloc(1, sizeof(Channel));
381 if ((c->input = sshbuf_new()) == NULL ||
382 (c->output = sshbuf_new()) == NULL ||
383 (c->extended = sshbuf_new()) == NULL)
384 fatal("%s: sshbuf_new failed", __func__);
Damien Miller5144df92002-01-22 23:28:45 +1100385 c->ostate = CHAN_OUTPUT_OPEN;
386 c->istate = CHAN_INPUT_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000387 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100388 c->self = found;
389 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000390 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000391 c->local_window = window;
392 c->local_window_max = window;
Damien Millerbd483e72000-04-30 10:00:53 +1000393 c->local_maxpacket = maxpack;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000394 c->remote_name = xstrdup(remote_name);
Damien Millere1537f92010-01-26 13:26:22 +1100395 c->ctl_chan = -1;
Darren Tucker876045b2010-01-08 17:08:00 +1100396 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000397 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100398 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000399 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000401
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000402static void
403channel_find_maxfd(struct ssh_channels *sc)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000404{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000405 u_int i;
406 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000407 Channel *c;
408
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000409 for (i = 0; i < sc->channels_alloc; i++) {
410 c = sc->channels[i];
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000411 if (c != NULL) {
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000412 max = MAXIMUM(max, c->rfd);
413 max = MAXIMUM(max, c->wfd);
414 max = MAXIMUM(max, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000415 }
416 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000417 sc->channel_max_fd = max;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000418}
419
420int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000421channel_close_fd(struct ssh *ssh, int *fdp)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000422{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000423 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000424 int ret = 0, fd = *fdp;
425
426 if (fd != -1) {
427 ret = close(fd);
428 *fdp = -1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000429 if (fd == sc->channel_max_fd)
430 channel_find_maxfd(sc);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000431 }
432 return ret;
433}
434
Damien Miller6f83b8e2000-05-02 09:23:45 +1000435/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000436static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000437channel_close_fds(struct ssh *ssh, Channel *c)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000438{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000439 channel_close_fd(ssh, &c->sock);
440 channel_close_fd(ssh, &c->rfd);
441 channel_close_fd(ssh, &c->wfd);
442 channel_close_fd(ssh, &c->efd);
443}
444
445static void
446fwd_perm_clear(ForwardPermission *fp)
447{
448 free(fp->host_to_connect);
449 free(fp->listen_host);
450 free(fp->listen_path);
451 bzero(fp, sizeof(*fp));
452}
453
454enum { FWDPERM_USER, FWDPERM_ADMIN };
455
456static int
457fwd_perm_list_add(struct ssh *ssh, int which,
458 const char *host_to_connect, int port_to_connect,
459 const char *listen_host, const char *listen_path, int listen_port,
460 Channel *downstream)
461{
462 ForwardPermission **fpl;
463 u_int n, *nfpl;
464
465 switch (which) {
466 case FWDPERM_USER:
467 fpl = &ssh->chanctxt->permitted_opens;
468 nfpl = &ssh->chanctxt->num_permitted_opens;
469 break;
470 case FWDPERM_ADMIN:
471 fpl = &ssh->chanctxt->permitted_adm_opens;
472 nfpl = &ssh->chanctxt->num_adm_permitted_opens;
473 break;
474 default:
475 fatal("%s: invalid list %d", __func__, which);
476 }
477
478 if (*nfpl >= INT_MAX)
479 fatal("%s: overflow", __func__);
480
481 *fpl = xrecallocarray(*fpl, *nfpl, *nfpl + 1, sizeof(**fpl));
482 n = (*nfpl)++;
483#define MAYBE_DUP(s) ((s == NULL) ? NULL : xstrdup(s))
484 (*fpl)[n].host_to_connect = MAYBE_DUP(host_to_connect);
485 (*fpl)[n].port_to_connect = port_to_connect;
486 (*fpl)[n].listen_host = MAYBE_DUP(listen_host);
487 (*fpl)[n].listen_path = MAYBE_DUP(listen_path);
488 (*fpl)[n].listen_port = listen_port;
489 (*fpl)[n].downstream = downstream;
490#undef MAYBE_DUP
491 return (int)n;
492}
493
494static void
495mux_remove_remote_forwardings(struct ssh *ssh, Channel *c)
496{
497 struct ssh_channels *sc = ssh->chanctxt;
498 ForwardPermission *fp;
499 int r;
500 u_int i;
501
502 for (i = 0; i < sc->num_permitted_opens; i++) {
503 fp = &sc->permitted_opens[i];
504 if (fp->downstream != c)
505 continue;
506
507 /* cancel on the server, since mux client is gone */
508 debug("channel %d: cleanup remote forward for %s:%u",
509 c->self, fp->listen_host, fp->listen_port);
510 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
511 (r = sshpkt_put_cstring(ssh,
512 "cancel-tcpip-forward")) != 0 ||
513 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
514 (r = sshpkt_put_cstring(ssh,
515 channel_rfwd_bind_host(fp->listen_host))) != 0 ||
516 (r = sshpkt_put_u32(ssh, fp->listen_port)) != 0 ||
517 (r = sshpkt_send(ssh)) != 0) {
518 fatal("%s: channel %i: %s", __func__,
519 c->self, ssh_err(r));
520 }
521 fwd_perm_clear(fp); /* unregister */
522 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000523}
524
525/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000526void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000527channel_free(struct ssh *ssh, Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000529 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000530 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000531 u_int i, n;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000532 Channel *other;
Damien Millerb84886b2008-05-19 15:05:07 +1000533 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000534
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000535 for (n = 0, i = 0; i < sc->channels_alloc; i++) {
536 if ((other = sc->channels[i]) == NULL)
537 continue;
538 n++;
539 /* detach from mux client and prepare for closing */
540 if (c->type == SSH_CHANNEL_MUX_CLIENT &&
541 other->type == SSH_CHANNEL_MUX_PROXY &&
542 other->mux_ctx == c) {
543 other->mux_ctx = NULL;
544 other->type = SSH_CHANNEL_OPEN;
545 other->istate = CHAN_INPUT_CLOSED;
546 other->ostate = CHAN_OUTPUT_CLOSED;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000547 }
548 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000549 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000550 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000551
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000552 if (c->type == SSH_CHANNEL_MUX_CLIENT)
553 mux_remove_remote_forwardings(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000554
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000555 s = channel_open_message(ssh);
Damien Millerfbdeece2003-09-02 22:52:31 +1000556 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000557 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000558
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000559 channel_close_fds(ssh, c);
560 sshbuf_free(c->input);
561 sshbuf_free(c->output);
562 sshbuf_free(c->extended);
563 c->input = c->output = c->extended = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000564 free(c->remote_name);
565 c->remote_name = NULL;
566 free(c->path);
567 c->path = NULL;
568 free(c->listening_addr);
569 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000570 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
571 if (cc->abandon_cb != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000572 cc->abandon_cb(ssh, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +1000573 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100574 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000575 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000576 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000577 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000578 c->filter_cleanup(ssh, c->self, c->filter_ctx);
579 sc->channels[c->self] = NULL;
millert@openbsd.org3e8d1852017-09-19 12:10:30 +0000580 explicit_bzero(c, sizeof(*c));
Darren Tuckera627d422013-06-02 07:31:17 +1000581 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582}
583
Ben Lindstrome9c99912001-06-09 00:41:05 +0000584void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000585channel_free_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000586{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000587 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000588
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000589 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
590 if (ssh->chanctxt->channels[i] != NULL)
591 channel_free(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592}
593
594/*
595 * Closes the sockets/fds of all channels. This is used to close extra file
596 * descriptors after a fork.
597 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000598void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000599channel_close_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000600{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000601 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000603 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
604 if (ssh->chanctxt->channels[i] != NULL)
605 channel_close_fds(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606}
607
608/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000609 * Stop listening to channels.
610 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000611void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000612channel_stop_listening(struct ssh *ssh)
Ben Lindstrom809744e2001-07-04 05:26:06 +0000613{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000614 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000615 Channel *c;
616
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000617 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
618 c = ssh->chanctxt->channels[i];
Ben Lindstrom809744e2001-07-04 05:26:06 +0000619 if (c != NULL) {
620 switch (c->type) {
621 case SSH_CHANNEL_AUTH_SOCKET:
622 case SSH_CHANNEL_PORT_LISTENER:
623 case SSH_CHANNEL_RPORT_LISTENER:
624 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000625 case SSH_CHANNEL_UNIX_LISTENER:
626 case SSH_CHANNEL_RUNIX_LISTENER:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000627 channel_close_fd(ssh, &c->sock);
628 channel_free(ssh, c);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000629 break;
630 }
631 }
632 }
633}
634
635/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000636 * Returns true if no channel has too much buffered data, and false if one or
637 * more channel is overfull.
638 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000639int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000640channel_not_very_much_buffered_data(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641{
642 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000643 u_int maxsize = ssh_packet_get_maxsize(ssh);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644 Channel *c;
645
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000646 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
647 c = ssh->chanctxt->channels[i];
648 if (c == NULL || c->type != SSH_CHANNEL_OPEN)
649 continue;
650 if (sshbuf_len(c->output) > maxsize) {
651 debug2("channel %d: big output buffer %zu > %u",
652 c->self, sshbuf_len(c->output), maxsize);
653 return 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654 }
655 }
656 return 1;
657}
658
659/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000661channel_still_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000663 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664 Channel *c;
665
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000666 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
667 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 if (c == NULL)
669 continue;
670 switch (c->type) {
671 case SSH_CHANNEL_X11_LISTENER:
672 case SSH_CHANNEL_PORT_LISTENER:
673 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100674 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675 case SSH_CHANNEL_CLOSED:
676 case SSH_CHANNEL_AUTH_SOCKET:
677 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000678 case SSH_CHANNEL_RDYNAMIC_OPEN:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 case SSH_CHANNEL_CONNECTING:
680 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000681 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000682 case SSH_CHANNEL_UNIX_LISTENER:
683 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000684 continue;
685 case SSH_CHANNEL_LARVAL:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686 continue;
687 case SSH_CHANNEL_OPENING:
688 case SSH_CHANNEL_OPEN:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000689 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100691 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000692 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 return 1;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000694 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000695 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696 /* NOTREACHED */
697 }
698 }
699 return 0;
700}
701
702/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000704channel_find_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000706 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707 Channel *c;
708
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000709 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
710 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000711 if (c == NULL || !c->have_remote_id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712 continue;
713 switch (c->type) {
714 case SSH_CHANNEL_CLOSED:
715 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000716 case SSH_CHANNEL_RDYNAMIC_OPEN:
717 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718 case SSH_CHANNEL_X11_LISTENER:
719 case SSH_CHANNEL_PORT_LISTENER:
720 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100721 case SSH_CHANNEL_MUX_LISTENER:
722 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000723 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724 case SSH_CHANNEL_OPENING:
725 case SSH_CHANNEL_CONNECTING:
726 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000727 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000728 case SSH_CHANNEL_UNIX_LISTENER:
729 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730 continue;
731 case SSH_CHANNEL_LARVAL:
732 case SSH_CHANNEL_AUTH_SOCKET:
733 case SSH_CHANNEL_OPEN:
734 case SSH_CHANNEL_X11_OPEN:
735 return i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000737 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738 /* NOTREACHED */
739 }
740 }
741 return -1;
742}
743
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744/*
745 * Returns a message describing the currently open forwarded connections,
746 * suitable for sending to the client. The message contains crlf pairs for
747 * newlines.
748 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749char *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000750channel_open_message(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000752 struct sshbuf *buf;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000754 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000755 int r;
756 char *ret;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000757
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000758 if ((buf = sshbuf_new()) == NULL)
759 fatal("%s: sshbuf_new", __func__);
760 if ((r = sshbuf_putf(buf,
761 "The following connections are open:\r\n")) != 0)
762 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
763 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
764 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765 if (c == NULL)
766 continue;
767 switch (c->type) {
768 case SSH_CHANNEL_X11_LISTENER:
769 case SSH_CHANNEL_PORT_LISTENER:
770 case SSH_CHANNEL_RPORT_LISTENER:
771 case SSH_CHANNEL_CLOSED:
772 case SSH_CHANNEL_AUTH_SOCKET:
773 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000774 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100775 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000776 case SSH_CHANNEL_UNIX_LISTENER:
777 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000778 continue;
779 case SSH_CHANNEL_LARVAL:
780 case SSH_CHANNEL_OPENING:
781 case SSH_CHANNEL_CONNECTING:
782 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000783 case SSH_CHANNEL_RDYNAMIC_OPEN:
784 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000785 case SSH_CHANNEL_OPEN:
786 case SSH_CHANNEL_X11_OPEN:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000787 case SSH_CHANNEL_MUX_PROXY:
788 case SSH_CHANNEL_MUX_CLIENT:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000789 if ((r = sshbuf_putf(buf, " #%d %.300s "
djm@openbsd.org9f532292017-09-12 06:35:31 +0000790 "(t%d %s%u i%u/%zu o%u/%zu fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000791 c->self, c->remote_name,
djm@openbsd.org9f532292017-09-12 06:35:31 +0000792 c->type,
793 c->have_remote_id ? "r" : "nr", c->remote_id,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000794 c->istate, sshbuf_len(c->input),
795 c->ostate, sshbuf_len(c->output),
796 c->rfd, c->wfd, c->ctl_chan)) != 0)
797 fatal("%s: sshbuf_putf: %s",
798 __func__, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000799 continue;
800 default:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000801 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000802 /* NOTREACHED */
803 }
804 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000805 if ((ret = sshbuf_dup_string(buf)) == NULL)
806 fatal("%s: sshbuf_dup_string", __func__);
807 sshbuf_free(buf);
808 return ret;
809}
810
811static void
812open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
813{
814 int r;
815
816 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
817 (r = sshpkt_put_cstring(ssh, type)) != 0 ||
818 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
819 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
820 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
821 fatal("%s: channel %i: open: %s", where, c->self, ssh_err(r));
822 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000823}
824
825void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000826channel_send_open(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000827{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000828 Channel *c = channel_lookup(ssh, id);
829 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000830
Ben Lindstrome9c99912001-06-09 00:41:05 +0000831 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000832 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000833 return;
834 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000835 debug2("channel %d: send open", id);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000836 open_preamble(ssh, __func__, c, c->ctype);
837 if ((r = sshpkt_send(ssh)) != 0)
838 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000839}
840
841void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000842channel_request_start(struct ssh *ssh, int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000844 Channel *c = channel_lookup(ssh, id);
845 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000846
Ben Lindstrome9c99912001-06-09 00:41:05 +0000847 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000848 logit("%s: %d: unknown channel id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000849 return;
850 }
djm@openbsd.org9f532292017-09-12 06:35:31 +0000851 if (!c->have_remote_id)
852 fatal(":%s: channel %d: no remote id", __func__, c->self);
853
Damien Miller0e220db2004-06-15 10:34:08 +1000854 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000855 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_REQUEST)) != 0 ||
856 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
857 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
858 (r = sshpkt_put_u8(ssh, wantconfirm)) != 0) {
859 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
860 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000861}
Damien Miller4f7becb2006-03-26 14:10:14 +1100862
Ben Lindstrome9c99912001-06-09 00:41:05 +0000863void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000864channel_register_status_confirm(struct ssh *ssh, int id,
865 channel_confirm_cb *cb, channel_confirm_abandon_cb *abandon_cb, void *ctx)
Damien Millerb84886b2008-05-19 15:05:07 +1000866{
867 struct channel_confirm *cc;
868 Channel *c;
869
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000870 if ((c = channel_lookup(ssh, id)) == NULL)
871 fatal("%s: %d: bad id", __func__, id);
Damien Millerb84886b2008-05-19 15:05:07 +1000872
Damien Miller6c81fee2013-11-08 12:19:55 +1100873 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000874 cc->cb = cb;
875 cc->abandon_cb = abandon_cb;
876 cc->ctx = ctx;
877 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
878}
879
880void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000881channel_register_open_confirm(struct ssh *ssh, int id,
882 channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000883{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000884 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000885
Ben Lindstrome9c99912001-06-09 00:41:05 +0000886 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000887 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000888 return;
889 }
Damien Millerb84886b2008-05-19 15:05:07 +1000890 c->open_confirm = fn;
891 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892}
Damien Miller4f7becb2006-03-26 14:10:14 +1100893
Ben Lindstrome9c99912001-06-09 00:41:05 +0000894void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000895channel_register_cleanup(struct ssh *ssh, int id,
896 channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000897{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000898 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000899
Ben Lindstrome9c99912001-06-09 00:41:05 +0000900 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000901 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000902 return;
903 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000904 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100905 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000906}
Damien Miller4f7becb2006-03-26 14:10:14 +1100907
Ben Lindstrome9c99912001-06-09 00:41:05 +0000908void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000909channel_cancel_cleanup(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000910{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000911 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000912
Ben Lindstrome9c99912001-06-09 00:41:05 +0000913 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000914 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000915 return;
916 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000917 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100918 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000919}
Damien Miller4f7becb2006-03-26 14:10:14 +1100920
Ben Lindstrome9c99912001-06-09 00:41:05 +0000921void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000922channel_register_filter(struct ssh *ssh, int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000923 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000924{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000925 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000926
Ben Lindstrome9c99912001-06-09 00:41:05 +0000927 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000928 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000929 return;
930 }
Damien Miller077b2382005-12-31 16:22:32 +1100931 c->input_filter = ifn;
932 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000933 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000934 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000935}
936
937void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000938channel_set_fds(struct ssh *ssh, int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000939 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000940{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000941 Channel *c = channel_lookup(ssh, id);
942 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000943
Ben Lindstrome9c99912001-06-09 00:41:05 +0000944 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
945 fatal("channel_activate for non-larval channel %d.", id);
djm@openbsd.org9f532292017-09-12 06:35:31 +0000946 if (!c->have_remote_id)
947 fatal(":%s: channel %d: no remote id", __func__, c->self);
948
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000949 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000950 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100951 c->local_window = c->local_window_max = window_max;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000952
953 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
954 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
955 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
956 (r = sshpkt_send(ssh)) != 0)
957 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000958}
959
Ben Lindstrombba81212001-06-25 05:01:22 +0000960static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000961channel_pre_listener(struct ssh *ssh, Channel *c,
962 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000963{
964 FD_SET(c->sock, readset);
965}
966
Ben Lindstrombba81212001-06-25 05:01:22 +0000967static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000968channel_pre_connecting(struct ssh *ssh, Channel *c,
969 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000970{
971 debug3("channel %d: waiting for connection", c->self);
972 FD_SET(c->sock, writeset);
973}
974
Ben Lindstrombba81212001-06-25 05:01:22 +0000975static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000976channel_pre_open(struct ssh *ssh, Channel *c,
977 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000978{
Damien Miller33b13562000-04-04 14:38:59 +1000979 if (c->istate == CHAN_INPUT_OPEN &&
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000980 c->remote_window > 0 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000981 sshbuf_len(c->input) < c->remote_window &&
982 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Miller33b13562000-04-04 14:38:59 +1000983 FD_SET(c->rfd, readset);
984 if (c->ostate == CHAN_OUTPUT_OPEN ||
985 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000986 if (sshbuf_len(c->output) > 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000987 FD_SET(c->wfd, writeset);
988 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000989 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000990 debug2("channel %d: "
991 "obuf_empty delayed efd %d/(%zu)", c->self,
992 c->efd, sshbuf_len(c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000993 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000994 chan_obuf_empty(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +1000995 }
996 }
997 /** XXX check close conditions, too */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000998 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED &&
999 c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +10001000 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001001 sshbuf_len(c->extended) > 0)
Damien Miller33b13562000-04-04 14:38:59 +10001002 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +10001003 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
1004 (c->extended_usage == CHAN_EXTENDED_READ ||
1005 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001006 sshbuf_len(c->extended) < c->remote_window)
Damien Miller33b13562000-04-04 14:38:59 +10001007 FD_SET(c->efd, readset);
1008 }
Damien Miller0e220db2004-06-15 10:34:08 +10001009 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +10001010}
1011
Damien Millerb38eff82000-04-01 11:09:21 +10001012/*
1013 * This is a special state for X11 authentication spoofing. An opened X11
1014 * connection (when authentication spoofing is being done) remains in this
1015 * state until the first packet has been completely read. The authentication
1016 * data in that packet is then substituted by the real data if it matches the
1017 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +10001018 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +00001019 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +10001020 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001021static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001022x11_open_helper(struct ssh *ssh, struct sshbuf *b)
Damien Millerb38eff82000-04-01 11:09:21 +10001023{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001024 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001025 u_char *ucp;
1026 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001027
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001028 /* Is this being called after the refusal deadline? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001029 if (sc->x11_refuse_time != 0 &&
1030 (u_int)monotime() >= sc->x11_refuse_time) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001031 verbose("Rejected X11 connection after ForwardX11Timeout "
1032 "expired");
1033 return -1;
1034 }
1035
Damien Millerb38eff82000-04-01 11:09:21 +10001036 /* Check if the fixed size part of the packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001037 if (sshbuf_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +10001038 return 0;
1039
1040 /* Parse the lengths of variable-length fields. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001041 ucp = sshbuf_mutable_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +10001042 if (ucp[0] == 0x42) { /* Byte order MSB first. */
1043 proto_len = 256 * ucp[6] + ucp[7];
1044 data_len = 256 * ucp[8] + ucp[9];
1045 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
1046 proto_len = ucp[6] + 256 * ucp[7];
1047 data_len = ucp[8] + 256 * ucp[9];
1048 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +10001049 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001050 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +10001051 return -1;
1052 }
1053
1054 /* Check if the whole packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001055 if (sshbuf_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +10001056 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
1057 return 0;
1058
1059 /* Check if authentication protocol matches. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001060 if (proto_len != strlen(sc->x11_saved_proto) ||
1061 memcmp(ucp + 12, sc->x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001062 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +10001063 return -1;
1064 }
1065 /* Check if authentication data matches our fake data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001066 if (data_len != sc->x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001067 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001068 sc->x11_fake_data, sc->x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001069 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +10001070 return -1;
1071 }
1072 /* Check fake data length */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001073 if (sc->x11_fake_data_len != sc->x11_saved_data_len) {
Damien Millerb38eff82000-04-01 11:09:21 +10001074 error("X11 fake_data_len %d != saved_data_len %d",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001075 sc->x11_fake_data_len, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001076 return -1;
1077 }
1078 /*
1079 * Received authentication protocol and data match
1080 * our fake data. Substitute the fake data with real
1081 * data.
1082 */
1083 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001084 sc->x11_saved_data, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001085 return 1;
1086}
1087
Ben Lindstrombba81212001-06-25 05:01:22 +00001088static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001089channel_pre_x11_open(struct ssh *ssh, Channel *c,
1090 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001091{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001092 int ret = x11_open_helper(ssh, c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001093
1094 /* c->force_drain = 1; */
1095
Damien Millerb38eff82000-04-01 11:09:21 +10001096 if (ret == 1) {
1097 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001098 channel_pre_open(ssh, c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001099 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001100 logit("X11 connection rejected because of wrong authentication.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001101 debug2("X11 rejected %d i%d/o%d",
1102 c->self, c->istate, c->ostate);
1103 chan_read_failed(ssh, c);
1104 sshbuf_reset(c->input);
1105 chan_ibuf_empty(ssh, c);
1106 sshbuf_reset(c->output);
1107 chan_write_failed(ssh, c);
Damien Millerfbdeece2003-09-02 22:52:31 +10001108 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001109 }
1110}
1111
Damien Millere1537f92010-01-26 13:26:22 +11001112static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001113channel_pre_mux_client(struct ssh *ssh,
1114 Channel *c, fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11001115{
Damien Millerd530f5f2010-05-21 14:57:10 +10001116 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001117 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Millere1537f92010-01-26 13:26:22 +11001118 FD_SET(c->rfd, readset);
1119 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1120 /* clear buffer immediately (discard any partial packet) */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001121 sshbuf_reset(c->input);
1122 chan_ibuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001123 /* Start output drain. XXX just kill chan? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001124 chan_rcvd_oclose(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001125 }
1126 if (c->ostate == CHAN_OUTPUT_OPEN ||
1127 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001128 if (sshbuf_len(c->output) > 0)
Damien Millere1537f92010-01-26 13:26:22 +11001129 FD_SET(c->wfd, writeset);
1130 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001131 chan_obuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001132 }
1133}
1134
Ben Lindstromb3921512001-04-11 15:57:50 +00001135/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +00001136static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001137channel_decode_socks4(Channel *c, struct sshbuf *input, struct sshbuf *output)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001138{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001139 const u_char *p;
1140 char *host;
Damien Miller1781f532009-01-28 16:24:41 +11001141 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001142 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001143 struct {
1144 u_int8_t version;
1145 u_int8_t command;
1146 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001147 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001148 } s4_req, s4_rsp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001149 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001150
Ben Lindstromb3921512001-04-11 15:57:50 +00001151 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001152
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001153 have = sshbuf_len(input);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001154 len = sizeof(s4_req);
1155 if (have < len)
1156 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001157 p = sshbuf_ptr(input);
Damien Miller1781f532009-01-28 16:24:41 +11001158
1159 need = 1;
1160 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1161 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1162 debug2("channel %d: socks4a request", c->self);
1163 /* ... and needs an extra string (the hostname) */
1164 need = 2;
1165 }
1166 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001167 for (found = 0, i = len; i < have; i++) {
1168 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001169 found++;
1170 if (found == need)
1171 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001172 }
1173 if (i > 1024) {
1174 /* the peer is probably sending garbage */
1175 debug("channel %d: decode socks4: too long",
1176 c->self);
1177 return -1;
1178 }
1179 }
Damien Miller1781f532009-01-28 16:24:41 +11001180 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001181 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001182 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1183 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1184 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1185 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001186 debug("channels %d: decode socks4: %s", c->self, ssh_err(r));
1187 return -1;
1188 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001189 have = sshbuf_len(input);
1190 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001191 if (memchr(p, '\0', have) == NULL) {
1192 error("channel %d: decode socks4: user not nul terminated",
Damien Miller13481292014-02-27 10:18:32 +11001193 c->self);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001194 return -1;
1195 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001196 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001197 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001198 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001199 strlcpy(username, p, sizeof(username));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001200 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001201 fatal("%s: channel %d: consume: %s", __func__,
1202 c->self, ssh_err(r));
1203 }
Darren Tuckera627d422013-06-02 07:31:17 +10001204 free(c->path);
1205 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001206 if (need == 1) { /* SOCKS4: one string */
1207 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001208 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001209 } else { /* SOCKS4A: two strings */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001210 have = sshbuf_len(input);
1211 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001212 if (memchr(p, '\0', have) == NULL) {
1213 error("channel %d: decode socks4a: host not nul "
1214 "terminated", c->self);
1215 return -1;
1216 }
Damien Miller1781f532009-01-28 16:24:41 +11001217 len = strlen(p);
1218 debug2("channel %d: decode socks4a: host %s/%d",
1219 c->self, p, len);
1220 len++; /* trailing '\0' */
Damien Millera1c1b6c2009-01-28 16:29:49 +11001221 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001222 error("channel %d: hostname \"%.100s\" too long",
1223 c->self, p);
1224 return -1;
1225 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001226 c->path = xstrdup(p);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001227 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001228 fatal("%s: channel %d: consume: %s", __func__,
1229 c->self, ssh_err(r));
1230 }
Damien Miller1781f532009-01-28 16:24:41 +11001231 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001232 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001233
Damien Millerfbdeece2003-09-02 22:52:31 +10001234 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001235 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001236
Ben Lindstromb3921512001-04-11 15:57:50 +00001237 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001238 debug("channel %d: cannot handle: %s cn %d",
1239 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001240 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001241 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001242 s4_rsp.version = 0; /* vn: 0 for reply */
1243 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001244 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001245 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001246 if ((r = sshbuf_put(output, &s4_rsp, sizeof(s4_rsp))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001247 fatal("%s: channel %d: append reply: %s", __func__,
1248 c->self, ssh_err(r));
1249 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001250 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001251}
1252
Darren Tucker46471c92003-07-03 13:55:19 +10001253/* try to decode a socks5 header */
1254#define SSH_SOCKS5_AUTHDONE 0x1000
1255#define SSH_SOCKS5_NOAUTH 0x00
1256#define SSH_SOCKS5_IPV4 0x01
1257#define SSH_SOCKS5_DOMAIN 0x03
1258#define SSH_SOCKS5_IPV6 0x04
1259#define SSH_SOCKS5_CONNECT 0x01
1260#define SSH_SOCKS5_SUCCESS 0x00
1261
1262static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001263channel_decode_socks5(Channel *c, struct sshbuf *input, struct sshbuf *output)
Darren Tucker46471c92003-07-03 13:55:19 +10001264{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001265 /* XXX use get/put_u8 instead of trusting struct padding */
Darren Tucker46471c92003-07-03 13:55:19 +10001266 struct {
1267 u_int8_t version;
1268 u_int8_t command;
1269 u_int8_t reserved;
1270 u_int8_t atyp;
1271 } s5_req, s5_rsp;
1272 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001273 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001274 const u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001275 u_int have, need, i, found, nmethods, addrlen, af;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001276 int r;
Darren Tucker46471c92003-07-03 13:55:19 +10001277
1278 debug2("channel %d: decode socks5", c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001279 p = sshbuf_ptr(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001280 if (p[0] != 0x05)
1281 return -1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001282 have = sshbuf_len(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001283 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1284 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001285 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001286 return 0;
1287 nmethods = p[1];
1288 if (have < nmethods + 2)
1289 return 0;
1290 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001291 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001292 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001293 found = 1;
1294 break;
1295 }
1296 }
1297 if (!found) {
1298 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1299 c->self);
1300 return -1;
1301 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001302 if ((r = sshbuf_consume(input, nmethods + 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001303 fatal("%s: channel %d: consume: %s", __func__,
1304 c->self, ssh_err(r));
1305 }
1306 /* version, method */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001307 if ((r = sshbuf_put_u8(output, 0x05)) != 0 ||
1308 (r = sshbuf_put_u8(output, SSH_SOCKS5_NOAUTH)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001309 fatal("%s: channel %d: append reply: %s", __func__,
1310 c->self, ssh_err(r));
1311 }
Darren Tucker46471c92003-07-03 13:55:19 +10001312 c->flags |= SSH_SOCKS5_AUTHDONE;
1313 debug2("channel %d: socks5 auth done", c->self);
1314 return 0; /* need more */
1315 }
1316 debug2("channel %d: socks5 post auth", c->self);
1317 if (have < sizeof(s5_req)+1)
1318 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001319 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001320 if (s5_req.version != 0x05 ||
1321 s5_req.command != SSH_SOCKS5_CONNECT ||
1322 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001323 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001324 return -1;
1325 }
Darren Tucker47eede72005-03-14 23:08:12 +11001326 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001327 case SSH_SOCKS5_IPV4:
1328 addrlen = 4;
1329 af = AF_INET;
1330 break;
1331 case SSH_SOCKS5_DOMAIN:
1332 addrlen = p[sizeof(s5_req)];
1333 af = -1;
1334 break;
1335 case SSH_SOCKS5_IPV6:
1336 addrlen = 16;
1337 af = AF_INET6;
1338 break;
1339 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001340 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001341 return -1;
1342 }
Damien Miller0f077072006-07-10 22:21:02 +10001343 need = sizeof(s5_req) + addrlen + 2;
1344 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1345 need++;
1346 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001347 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001348 if ((r = sshbuf_consume(input, sizeof(s5_req))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001349 fatal("%s: channel %d: consume: %s", __func__,
1350 c->self, ssh_err(r));
1351 }
1352 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1353 /* host string length */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001354 if ((r = sshbuf_consume(input, 1)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001355 fatal("%s: channel %d: consume: %s", __func__,
1356 c->self, ssh_err(r));
1357 }
1358 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001359 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1360 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001361 debug("channel %d: parse addr/port: %s", c->self, ssh_err(r));
1362 return -1;
1363 }
Darren Tucker46471c92003-07-03 13:55:19 +10001364 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001365 free(c->path);
1366 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001367 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001368 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001369 error("channel %d: dynamic request: socks5 hostname "
1370 "\"%.100s\" too long", c->self, dest_addr);
1371 return -1;
1372 }
1373 c->path = xstrdup(dest_addr);
1374 } else {
1375 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1376 return -1;
1377 c->path = xstrdup(ntop);
1378 }
Darren Tucker46471c92003-07-03 13:55:19 +10001379 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001380
Damien Millerfbdeece2003-09-02 22:52:31 +10001381 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001382 c->self, c->path, c->host_port, s5_req.command);
1383
1384 s5_rsp.version = 0x05;
1385 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1386 s5_rsp.reserved = 0; /* ignored */
1387 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001388 dest_port = 0; /* ignored */
1389
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001390 if ((r = sshbuf_put(output, &s5_rsp, sizeof(s5_rsp))) != 0 ||
1391 (r = sshbuf_put_u32(output, ntohl(INADDR_ANY))) != 0 ||
1392 (r = sshbuf_put(output, &dest_port, sizeof(dest_port))) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001393 fatal("%s: channel %d: append reply: %s", __func__,
1394 c->self, ssh_err(r));
Darren Tucker46471c92003-07-03 13:55:19 +10001395 return 1;
1396}
1397
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001398Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001399channel_connect_stdio_fwd(struct ssh *ssh,
1400 const char *host_to_connect, u_short port_to_connect, int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001401{
1402 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001403
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001404 debug("%s %s:%d", __func__, host_to_connect, port_to_connect);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001405
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001406 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001407 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1408 0, "stdio-forward", /*nonblock*/0);
1409
1410 c->path = xstrdup(host_to_connect);
1411 c->host_port = port_to_connect;
1412 c->listening_port = 0;
1413 c->force_drain = 1;
1414
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001415 channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
1416 port_open_helper(ssh, c, "direct-tcpip");
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001417
1418 return c;
1419}
1420
Ben Lindstromb3921512001-04-11 15:57:50 +00001421/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001422static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001423channel_pre_dynamic(struct ssh *ssh, Channel *c,
1424 fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001425{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001426 const u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001427 u_int have;
1428 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001429
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001430 have = sshbuf_len(c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001431 debug2("channel %d: pre_dynamic: have %d", c->self, have);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001432 /* sshbuf_dump(c->input, stderr); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001433 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001434 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001435 /* need more */
1436 FD_SET(c->sock, readset);
1437 return;
1438 }
1439 /* try to guess the protocol */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001440 p = sshbuf_ptr(c->input);
1441 /* XXX sshbuf_peek_u8? */
Ben Lindstromb3921512001-04-11 15:57:50 +00001442 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001443 case 0x04:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001444 ret = channel_decode_socks4(c, c->input, c->output);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001445 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001446 case 0x05:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001447 ret = channel_decode_socks5(c, c->input, c->output);
Darren Tucker46471c92003-07-03 13:55:19 +10001448 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001449 default:
1450 ret = -1;
1451 break;
1452 }
1453 if (ret < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001454 chan_mark_dead(ssh, c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001455 } else if (ret == 0) {
1456 debug2("channel %d: pre_dynamic: need more", c->self);
1457 /* need more */
1458 FD_SET(c->sock, readset);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001459 if (sshbuf_len(c->output))
1460 FD_SET(c->sock, writeset);
Ben Lindstromb3921512001-04-11 15:57:50 +00001461 } else {
1462 /* switch to the next state */
1463 c->type = SSH_CHANNEL_OPENING;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001464 port_open_helper(ssh, c, "direct-tcpip");
Ben Lindstromb3921512001-04-11 15:57:50 +00001465 }
1466}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001467
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001468/* simulate read-error */
1469static void
1470rdynamic_close(struct ssh *ssh, Channel *c)
1471{
1472 c->type = SSH_CHANNEL_OPEN;
1473 chan_read_failed(ssh, c);
1474 sshbuf_reset(c->input);
1475 chan_ibuf_empty(ssh, c);
1476 sshbuf_reset(c->output);
1477 chan_write_failed(ssh, c);
1478}
1479
1480/* reverse dynamic port forwarding */
1481static void
1482channel_before_prepare_select_rdynamic(struct ssh *ssh, Channel *c)
1483{
1484 const u_char *p;
1485 u_int have, len;
1486 int r, ret;
1487
1488 have = sshbuf_len(c->output);
1489 debug2("channel %d: pre_rdynamic: have %d", c->self, have);
1490 /* sshbuf_dump(c->output, stderr); */
1491 /* EOF received */
1492 if (c->flags & CHAN_EOF_RCVD) {
1493 if ((r = sshbuf_consume(c->output, have)) != 0) {
1494 fatal("%s: channel %d: consume: %s",
1495 __func__, c->self, ssh_err(r));
1496 }
1497 rdynamic_close(ssh, c);
1498 return;
1499 }
1500 /* check if the fixed size part of the packet is in buffer. */
1501 if (have < 3)
1502 return;
1503 /* try to guess the protocol */
1504 p = sshbuf_ptr(c->output);
1505 switch (p[0]) {
1506 case 0x04:
1507 /* switch input/output for reverse forwarding */
1508 ret = channel_decode_socks4(c, c->output, c->input);
1509 break;
1510 case 0x05:
1511 ret = channel_decode_socks5(c, c->output, c->input);
1512 break;
1513 default:
1514 ret = -1;
1515 break;
1516 }
1517 if (ret < 0) {
1518 rdynamic_close(ssh, c);
1519 } else if (ret == 0) {
1520 debug2("channel %d: pre_rdynamic: need more", c->self);
1521 /* send socks request to peer */
1522 len = sshbuf_len(c->input);
1523 if (len > 0 && len < c->remote_window) {
1524 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
1525 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1526 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
1527 (r = sshpkt_send(ssh)) != 0) {
1528 fatal("%s: channel %i: rdynamic: %s", __func__,
1529 c->self, ssh_err(r));
1530 }
1531 if ((r = sshbuf_consume(c->input, len)) != 0) {
1532 fatal("%s: channel %d: consume: %s",
1533 __func__, c->self, ssh_err(r));
1534 }
1535 c->remote_window -= len;
1536 }
1537 } else if (rdynamic_connect_finish(ssh, c) < 0) {
1538 /* the connect failed */
1539 rdynamic_close(ssh, c);
1540 }
1541}
1542
Damien Millerb38eff82000-04-01 11:09:21 +10001543/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001544static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001545channel_post_x11_listener(struct ssh *ssh, Channel *c,
1546 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001547{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001548 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001549 struct sockaddr_storage addr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001550 int r, newsock, oerrno, remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001551 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001552 char buf[16384], *remote_ipaddr;
Damien Millerb38eff82000-04-01 11:09:21 +10001553
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001554 if (!FD_ISSET(c->sock, readset))
1555 return;
Damien Millerbd483e72000-04-30 10:00:53 +10001556
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001557 debug("X11 connection requested.");
1558 addrlen = sizeof(addr);
1559 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1560 if (c->single_connection) {
1561 oerrno = errno;
1562 debug2("single_connection: closing X11 listener.");
1563 channel_close_fd(ssh, &c->sock);
1564 chan_mark_dead(ssh, c);
1565 errno = oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001566 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001567 if (newsock < 0) {
1568 if (errno != EINTR && errno != EWOULDBLOCK &&
1569 errno != ECONNABORTED)
1570 error("accept: %.100s", strerror(errno));
1571 if (errno == EMFILE || errno == ENFILE)
1572 c->notbefore = monotime() + 1;
1573 return;
1574 }
1575 set_nodelay(newsock);
1576 remote_ipaddr = get_peer_ipaddr(newsock);
1577 remote_port = get_peer_port(newsock);
1578 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1579 remote_ipaddr, remote_port);
1580
1581 nc = channel_new(ssh, "accepted x11 socket",
1582 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1583 c->local_window_max, c->local_maxpacket, 0, buf, 1);
1584 open_preamble(ssh, __func__, nc, "x11");
1585 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0) {
1586 fatal("%s: channel %i: reply %s", __func__,
1587 c->self, ssh_err(r));
1588 }
1589 if ((datafellows & SSH_BUG_X11FWD) != 0)
1590 debug2("channel %d: ssh2 x11 bug compat mode", nc->self);
1591 else if ((r = sshpkt_put_u32(ssh, remote_port)) != 0) {
1592 fatal("%s: channel %i: reply %s", __func__,
1593 c->self, ssh_err(r));
1594 }
1595 if ((r = sshpkt_send(ssh)) != 0)
1596 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
1597 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001598}
1599
Ben Lindstrombba81212001-06-25 05:01:22 +00001600static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001601port_open_helper(struct ssh *ssh, Channel *c, char *rtype)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001602{
Damien Miller4def1842013-12-29 17:45:26 +11001603 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001604 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001605 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001606 int remote_port = get_peer_port(c->sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001607 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001608
Damien Millerd6369432010-02-02 17:02:07 +11001609 if (remote_port == -1) {
1610 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001611 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001612 remote_ipaddr = xstrdup("127.0.0.1");
1613 remote_port = 65535;
1614 }
1615
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001616 free(c->remote_name);
1617 xasprintf(&c->remote_name,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001618 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001619 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001620 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001621 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001622
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001623 open_preamble(ssh, __func__, c, rtype);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001624 if (strcmp(rtype, "direct-tcpip") == 0) {
1625 /* target host, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001626 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1627 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) {
1628 fatal("%s: channel %i: reply %s", __func__,
1629 c->self, ssh_err(r));
1630 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001631 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1632 /* target path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001633 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1634 fatal("%s: channel %i: reply %s", __func__,
1635 c->self, ssh_err(r));
1636 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001637 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1638 /* listen path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001639 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1640 fatal("%s: channel %i: reply %s", __func__,
1641 c->self, ssh_err(r));
1642 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001643 } else {
1644 /* listen address, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001645 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1646 (r = sshpkt_put_u32(ssh, local_port)) != 0) {
1647 fatal("%s: channel %i: reply %s", __func__,
1648 c->self, ssh_err(r));
1649 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001650 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001651 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1652 /* reserved for future owner/mode info */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001653 if ((r = sshpkt_put_cstring(ssh, "")) != 0) {
1654 fatal("%s: channel %i: reply %s", __func__,
1655 c->self, ssh_err(r));
1656 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001657 } else {
1658 /* originator host and port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001659 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1660 (r = sshpkt_put_u32(ssh, (u_int)remote_port)) != 0) {
1661 fatal("%s: channel %i: reply %s", __func__,
1662 c->self, ssh_err(r));
1663 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001664 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001665 if ((r = sshpkt_send(ssh)) != 0)
1666 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10001667 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001668 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001669}
1670
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001671void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001672channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001673{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001674 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001675}
1676
Damien Millerb38eff82000-04-01 11:09:21 +10001677/*
1678 * This socket is listening for connections to a forwarded TCP/IP port.
1679 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001680static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001681channel_post_port_listener(struct ssh *ssh, Channel *c,
1682 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001683{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001684 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001685 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001686 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001687 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001688 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001689
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001690 if (!FD_ISSET(c->sock, readset))
1691 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001692
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001693 debug("Connection to port %d forwarding to %.100s port %d requested.",
1694 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001695
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001696 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1697 nextstate = SSH_CHANNEL_OPENING;
1698 rtype = "forwarded-tcpip";
1699 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1700 nextstate = SSH_CHANNEL_OPENING;
1701 rtype = "forwarded-streamlocal@openssh.com";
1702 } else if (c->host_port == PORT_STREAMLOCAL) {
1703 nextstate = SSH_CHANNEL_OPENING;
1704 rtype = "direct-streamlocal@openssh.com";
1705 } else if (c->host_port == 0) {
1706 nextstate = SSH_CHANNEL_DYNAMIC;
1707 rtype = "dynamic-tcpip";
1708 } else {
1709 nextstate = SSH_CHANNEL_OPENING;
1710 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001711 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001712
1713 addrlen = sizeof(addr);
1714 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1715 if (newsock < 0) {
1716 if (errno != EINTR && errno != EWOULDBLOCK &&
1717 errno != ECONNABORTED)
1718 error("accept: %.100s", strerror(errno));
1719 if (errno == EMFILE || errno == ENFILE)
1720 c->notbefore = monotime() + 1;
1721 return;
1722 }
1723 if (c->host_port != PORT_STREAMLOCAL)
1724 set_nodelay(newsock);
1725 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1726 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1727 nc->listening_port = c->listening_port;
1728 nc->host_port = c->host_port;
1729 if (c->path != NULL)
1730 nc->path = xstrdup(c->path);
1731
1732 if (nextstate != SSH_CHANNEL_DYNAMIC)
1733 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001734}
1735
1736/*
1737 * This is the authentication agent socket listening for connections from
1738 * clients.
1739 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001740static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001741channel_post_auth_listener(struct ssh *ssh, Channel *c,
1742 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001743{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001744 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001745 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001746 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001747 socklen_t addrlen;
1748
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001749 if (!FD_ISSET(c->sock, readset))
1750 return;
1751
1752 addrlen = sizeof(addr);
1753 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1754 if (newsock < 0) {
1755 error("accept from auth socket: %.100s", strerror(errno));
1756 if (errno == EMFILE || errno == ENFILE)
1757 c->notbefore = monotime() + 1;
1758 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001759 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001760 nc = channel_new(ssh, "accepted auth socket",
1761 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1762 c->local_window_max, c->local_maxpacket,
1763 0, "accepted auth socket", 1);
1764 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1765 if ((r = sshpkt_send(ssh)) != 0)
1766 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001767}
1768
Ben Lindstrombba81212001-06-25 05:01:22 +00001769static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001770channel_post_connecting(struct ssh *ssh, Channel *c,
1771 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001772{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001773 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001774 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001775
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001776 if (!FD_ISSET(c->sock, writeset))
1777 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001778 if (!c->have_remote_id)
1779 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001780 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1781 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001782 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1783 err = errno;
1784 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001785 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001786 if (err == 0) {
1787 debug("channel %d: connected to %s port %d",
1788 c->self, c->connect_ctx.host, c->connect_ctx.port);
1789 channel_connect_ctx_free(&c->connect_ctx);
1790 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001791 if (isopen) {
1792 /* no message necessary */
1793 } else {
1794 if ((r = sshpkt_start(ssh,
1795 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1796 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1797 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1798 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1799 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1800 != 0)
1801 fatal("%s: channel %i: confirm: %s", __func__,
1802 c->self, ssh_err(r));
1803 if ((r = sshpkt_send(ssh)) != 0)
1804 fatal("%s: channel %i: %s", __func__, c->self,
1805 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001806 }
1807 } else {
1808 debug("channel %d: connection failed: %s",
1809 c->self, strerror(err));
1810 /* Try next address, if any */
1811 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1812 close(c->sock);
1813 c->sock = c->rfd = c->wfd = sock;
1814 channel_find_maxfd(ssh->chanctxt);
1815 return;
1816 }
1817 /* Exhausted all addresses */
1818 error("connect_to %.100s port %d: failed.",
1819 c->connect_ctx.host, c->connect_ctx.port);
1820 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001821 if (isopen) {
1822 rdynamic_close(ssh, c);
1823 } else {
1824 if ((r = sshpkt_start(ssh,
1825 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1826 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1827 (r = sshpkt_put_u32(ssh, SSH2_OPEN_CONNECT_FAILED))
1828 != 0)
1829 fatal("%s: channel %i: failure: %s", __func__,
1830 c->self, ssh_err(r));
1831 if ((datafellows & SSH_BUG_OPENFAILURE) == 0 &&
1832 ((r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1833 (r = sshpkt_put_cstring(ssh, "")) != 0))
1834 fatal("%s: channel %i: failure: %s", __func__,
1835 c->self, ssh_err(r));
1836 if ((r = sshpkt_send(ssh)) != 0)
1837 fatal("%s: channel %i: %s", __func__, c->self,
1838 ssh_err(r));
1839 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001840 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001841 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001842}
1843
Ben Lindstrombba81212001-06-25 05:01:22 +00001844static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001845channel_handle_rfd(struct ssh *ssh, Channel *c,
1846 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001847{
Darren Tucker11327cc2005-03-14 23:22:25 +11001848 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001849 ssize_t len;
1850 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001851
Damien Miller835284b2007-06-11 13:03:16 +10001852 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001853
1854 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1855 return 1;
1856
1857 errno = 0;
1858 len = read(c->rfd, buf, sizeof(buf));
1859 if (len < 0 && (errno == EINTR ||
1860 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1861 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001862#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001863 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001864#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001865 if ((!c->isatty && len <= 0) ||
1866 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001867#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001868 debug2("channel %d: read<=0 rfd %d len %zd",
1869 c->self, c->rfd, len);
1870 if (c->type != SSH_CHANNEL_OPEN) {
1871 debug2("channel %d: not open", c->self);
1872 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001873 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001874 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001875 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001876 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001877 return -1;
1878 }
1879 if (c->input_filter != NULL) {
1880 if (c->input_filter(ssh, c, buf, len) == -1) {
1881 debug2("channel %d: filter stops", c->self);
1882 chan_read_failed(ssh, c);
1883 }
1884 } else if (c->datagram) {
1885 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1886 fatal("%s: channel %d: put datagram: %s", __func__,
1887 c->self, ssh_err(r));
1888 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1889 fatal("%s: channel %d: put data: %s", __func__,
1890 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001891 }
1892 return 1;
1893}
Damien Miller4f7becb2006-03-26 14:10:14 +11001894
Ben Lindstrombba81212001-06-25 05:01:22 +00001895static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001896channel_handle_wfd(struct ssh *ssh, Channel *c,
1897 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001898{
Ben Lindstrome229b252001-03-05 06:28:06 +00001899 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001900 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1901 size_t dlen, olen = 0;
1902 int r, len;
1903
1904 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
1905 sshbuf_len(c->output) == 0)
1906 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001907
1908 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001909 olen = sshbuf_len(c->output);
1910 if (c->output_filter != NULL) {
1911 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
1912 debug2("channel %d: filter stops", c->self);
1913 if (c->type != SSH_CHANNEL_OPEN)
1914 chan_mark_dead(ssh, c);
1915 else
1916 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001917 return -1;
1918 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001919 } else if (c->datagram) {
1920 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
1921 fatal("%s: channel %d: get datagram: %s", __func__,
1922 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00001923 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001924 } else {
1925 buf = data = sshbuf_mutable_ptr(c->output);
1926 dlen = sshbuf_len(c->output);
1927 }
1928
1929 if (c->datagram) {
1930 /* ignore truncated writes, datagrams might get lost */
djm@openbsd.orgc704f642017-09-24 09:50:01 +00001931 len = write(c->wfd, buf, dlen);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001932 free(data);
1933 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1934 errno == EWOULDBLOCK))
1935 return 1;
1936 if (len <= 0)
1937 goto write_fail;
1938 goto out;
1939 }
1940
1941#ifdef _AIX
1942 /* XXX: Later AIX versions can't push as much data to tty */
1943 if (c->wfd_isatty)
1944 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10001945#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001946
1947 len = write(c->wfd, buf, dlen);
1948 if (len < 0 &&
1949 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
1950 return 1;
1951 if (len <= 0) {
1952 write_fail:
1953 if (c->type != SSH_CHANNEL_OPEN) {
1954 debug2("channel %d: not open", c->self);
1955 chan_mark_dead(ssh, c);
1956 return -1;
1957 } else {
1958 chan_write_failed(ssh, c);
1959 }
1960 return -1;
1961 }
1962#ifndef BROKEN_TCGETATTR_ICANON
1963 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
1964 if (tcgetattr(c->wfd, &tio) == 0 &&
1965 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1966 /*
1967 * Simulate echo to reduce the impact of
1968 * traffic analysis. We need to match the
1969 * size of a SSH2_MSG_CHANNEL_DATA message
1970 * (4 byte channel id + buf)
1971 */
1972 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
1973 (r = sshpkt_send(ssh)) != 0)
1974 fatal("%s: channel %d: ignore: %s",
1975 __func__, c->self, ssh_err(r));
1976 }
1977 }
1978#endif /* BROKEN_TCGETATTR_ICANON */
1979 if ((r = sshbuf_consume(c->output, len)) != 0) {
1980 fatal("%s: channel %d: consume: %s",
1981 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10001982 }
Damien Miller7d457182010-08-05 23:09:48 +10001983 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001984 c->local_consumed += olen - sshbuf_len(c->output);
1985
Damien Miller33b13562000-04-04 14:38:59 +10001986 return 1;
1987}
Damien Miller4f7becb2006-03-26 14:10:14 +11001988
Ben Lindstrombba81212001-06-25 05:01:22 +00001989static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001990channel_handle_efd_write(struct ssh *ssh, Channel *c,
1991 fd_set *readset, fd_set *writeset)
1992{
1993 int r;
1994 ssize_t len;
1995
1996 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
1997 return 1;
1998
1999 len = write(c->efd, sshbuf_ptr(c->extended),
2000 sshbuf_len(c->extended));
2001 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
2002 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2003 errno == EWOULDBLOCK))
2004 return 1;
2005 if (len <= 0) {
2006 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2007 channel_close_fd(ssh, &c->efd);
2008 } else {
2009 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2010 fatal("%s: channel %d: consume: %s",
2011 __func__, c->self, ssh_err(r));
2012 }
2013 c->local_consumed += len;
2014 }
2015 return 1;
2016}
2017
2018static int
2019channel_handle_efd_read(struct ssh *ssh, Channel *c,
2020 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002021{
Darren Tucker11327cc2005-03-14 23:22:25 +11002022 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002023 int r;
2024 ssize_t len;
Damien Miller33b13562000-04-04 14:38:59 +10002025
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002026 if (!c->detach_close && !FD_ISSET(c->efd, readset))
2027 return 1;
2028
2029 len = read(c->efd, buf, sizeof(buf));
2030 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
2031 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
2032 errno == EWOULDBLOCK) && !c->detach_close)))
2033 return 1;
2034 if (len <= 0) {
2035 debug2("channel %d: closing read-efd %d",
2036 c->self, c->efd);
2037 channel_close_fd(ssh, &c->efd);
2038 } else {
2039 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2040 debug3("channel %d: discard efd",
2041 c->self);
2042 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2043 fatal("%s: channel %d: append: %s",
2044 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002045 }
2046 }
2047 return 1;
2048}
Damien Miller4f7becb2006-03-26 14:10:14 +11002049
Damien Miller0e220db2004-06-15 10:34:08 +10002050static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002051channel_handle_efd(struct ssh *ssh, Channel *c,
2052 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002053{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002054 if (c->efd == -1)
2055 return 1;
2056
2057 /** XXX handle drain efd, too */
2058
2059 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2060 return channel_handle_efd_write(ssh, c, readset, writeset);
2061 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2062 c->extended_usage == CHAN_EXTENDED_IGNORE)
2063 return channel_handle_efd_read(ssh, c, readset, writeset);
2064
2065 return 1;
2066}
2067
2068static int
2069channel_check_window(struct ssh *ssh, Channel *c)
2070{
2071 int r;
2072
Ben Lindstromb3921512001-04-11 15:57:50 +00002073 if (c->type == SSH_CHANNEL_OPEN &&
2074 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002075 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002076 c->local_maxpacket*3) ||
2077 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002078 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002079 if (!c->have_remote_id)
2080 fatal(":%s: channel %d: no remote id",
2081 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002082 if ((r = sshpkt_start(ssh,
2083 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2084 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2085 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2086 (r = sshpkt_send(ssh)) != 0) {
2087 fatal("%s: channel %i: %s", __func__,
2088 c->self, ssh_err(r));
2089 }
Damien Millerd3444942000-09-30 14:20:03 +11002090 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002091 c->self, c->local_window,
2092 c->local_consumed);
2093 c->local_window += c->local_consumed;
2094 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002095 }
2096 return 1;
2097}
2098
Ben Lindstrombba81212001-06-25 05:01:22 +00002099static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002100channel_post_open(struct ssh *ssh, Channel *c,
2101 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002102{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002103 channel_handle_rfd(ssh, c, readset, writeset);
2104 channel_handle_wfd(ssh, c, readset, writeset);
2105 channel_handle_efd(ssh, c, readset, writeset);
2106 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002107}
2108
Damien Millere1537f92010-01-26 13:26:22 +11002109static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002110read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002111{
2112 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002113 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002114 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002115 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002116
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002117 if (sshbuf_len(c->input) < need) {
2118 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002119 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002120 if (len < 0 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002121 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002122 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002123 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002124 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002125 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002126 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002127 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2128 fatal("%s: channel %d: append: %s",
2129 __func__, c->self, ssh_err(r));
2130 }
Damien Millere1537f92010-01-26 13:26:22 +11002131 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002132 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002133}
2134
2135static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002136channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2137 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002138{
2139 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002140
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002141 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2142 return;
2143 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2144 return;
2145 if (c->mux_pause)
2146 return;
2147
2148 /*
2149 * Don't not read past the precise end of packets to
2150 * avoid disrupting fd passing.
2151 */
2152 if (read_mux(ssh, c, 4) < 4) /* read header */
2153 return;
2154 /* XXX sshbuf_peek_u32 */
2155 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002156#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002157 if (need > CHANNEL_MUX_MAX_PACKET) {
2158 debug2("channel %d: packet too big %u > %u",
2159 c->self, CHANNEL_MUX_MAX_PACKET, need);
2160 chan_rcvd_oclose(ssh, c);
2161 return;
Damien Millere1537f92010-01-26 13:26:22 +11002162 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002163 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2164 return;
2165 if (c->mux_rcb(ssh, c) != 0) {
2166 debug("channel %d: mux_rcb failed", c->self);
2167 chan_mark_dead(ssh, c);
2168 return;
Damien Millere1537f92010-01-26 13:26:22 +11002169 }
2170}
2171
2172static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002173channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2174 fd_set *readset, fd_set *writeset)
2175{
2176 ssize_t len;
2177 int r;
2178
2179 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2180 sshbuf_len(c->output) == 0)
2181 return;
2182
2183 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
2184 if (len < 0 && (errno == EINTR || errno == EAGAIN))
2185 return;
2186 if (len <= 0) {
2187 chan_mark_dead(ssh, c);
2188 return;
2189 }
2190 if ((r = sshbuf_consume(c->output, len)) != 0)
2191 fatal("%s: channel %d: consume: %s", __func__,
2192 c->self, ssh_err(r));
2193}
2194
2195static void
2196channel_post_mux_client(struct ssh *ssh, Channel *c,
2197 fd_set *readset, fd_set *writeset)
2198{
2199 channel_post_mux_client_read(ssh, c, readset, writeset);
2200 channel_post_mux_client_write(ssh, c, readset, writeset);
2201}
2202
2203static void
2204channel_post_mux_listener(struct ssh *ssh, Channel *c,
2205 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002206{
2207 Channel *nc;
2208 struct sockaddr_storage addr;
2209 socklen_t addrlen;
2210 int newsock;
2211 uid_t euid;
2212 gid_t egid;
2213
2214 if (!FD_ISSET(c->sock, readset))
2215 return;
2216
2217 debug("multiplexing control connection");
2218
2219 /*
2220 * Accept connection on control socket
2221 */
2222 memset(&addr, 0, sizeof(addr));
2223 addrlen = sizeof(addr);
2224 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2225 &addrlen)) == -1) {
2226 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002227 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002228 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002229 return;
2230 }
2231
2232 if (getpeereid(newsock, &euid, &egid) < 0) {
2233 error("%s getpeereid failed: %s", __func__,
2234 strerror(errno));
2235 close(newsock);
2236 return;
2237 }
2238 if ((euid != 0) && (getuid() != euid)) {
2239 error("multiplex uid mismatch: peer euid %u != uid %u",
2240 (u_int)euid, (u_int)getuid());
2241 close(newsock);
2242 return;
2243 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002244 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002245 newsock, newsock, -1, c->local_window_max,
2246 c->local_maxpacket, 0, "mux-control", 1);
2247 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002248 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002249 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002250 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002251 /* mux state transitions must not elicit protocol messages */
2252 nc->flags |= CHAN_LOCAL;
2253}
2254
Ben Lindstrombba81212001-06-25 05:01:22 +00002255static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002256channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002257{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002258 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002259
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002260 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2261 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2262 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002263
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002264 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2265 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2266 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2267 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2268 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2269 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2270 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2271 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2272 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2273 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002274 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002275 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2276 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2277
2278 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2279 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2280 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2281 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2282 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2283 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2284 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2285 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2286 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002287 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002288 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2289 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2290
2291 sc->channel_pre = pre;
2292 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002293}
2294
Damien Miller3ec27592001-10-12 11:35:04 +10002295/* gc dead channels */
2296static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002297channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002298{
2299 if (c == NULL)
2300 return;
2301 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002302 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002303 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002304 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002305 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002306 /* if we still have a callback */
2307 if (c->detach_user != NULL)
2308 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002309 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002310 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002311 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002312 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002313 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002314 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002315}
2316
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002317enum channel_table { CHAN_PRE, CHAN_POST };
2318
Ben Lindstrombba81212001-06-25 05:01:22 +00002319static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002320channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002321 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002322{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002323 struct ssh_channels *sc = ssh->chanctxt;
2324 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002325 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002326 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002327 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002328
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002329 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002330 if (unpause_secs != NULL)
2331 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002332 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2333 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002334 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002335 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002336 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002337 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002338 c->delayed = 0;
2339 else
2340 continue;
2341 }
Damien Millera6508752012-04-22 11:21:10 +10002342 if (ftab[c->type] != NULL) {
2343 /*
2344 * Run handlers that are not paused.
2345 */
2346 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002347 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002348 else if (unpause_secs != NULL) {
2349 /*
2350 * Collect the time that the earliest
2351 * channel comes off pause.
2352 */
2353 debug3("%s: chan %d: skip for %d more seconds",
2354 __func__, c->self,
2355 (int)(c->notbefore - now));
2356 if (*unpause_secs == 0 ||
2357 (c->notbefore - now) < *unpause_secs)
2358 *unpause_secs = c->notbefore - now;
2359 }
2360 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002361 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002362 }
Damien Millera6508752012-04-22 11:21:10 +10002363 if (unpause_secs != NULL && *unpause_secs != 0)
2364 debug3("%s: first channel unpauses in %d seconds",
2365 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002366}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002367
Ben Lindstrome9c99912001-06-09 00:41:05 +00002368/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002369 * Create sockets before allocating the select bitmasks.
2370 * This is necessary for things that need to happen after reading
2371 * the network-input but before channel_prepare_select().
2372 */
2373static void
2374channel_before_prepare_select(struct ssh *ssh)
2375{
2376 struct ssh_channels *sc = ssh->chanctxt;
2377 Channel *c;
2378 u_int i, oalloc;
2379
2380 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2381 c = sc->channels[i];
2382 if (c == NULL)
2383 continue;
2384 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2385 channel_before_prepare_select_rdynamic(ssh, c);
2386 }
2387}
2388
2389/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002390 * Allocate/update select bitmasks and add any bits relevant to channels in
2391 * select bitmasks.
2392 */
Damien Miller4af51302000-04-16 11:18:38 +10002393void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002394channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2395 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002396{
Damien Miller36812092006-03-26 14:22:47 +11002397 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002398
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002399 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2400
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002401 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002402
Damien Miller36812092006-03-26 14:22:47 +11002403 nfdset = howmany(n+1, NFDBITS);
2404 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002405 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002406 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2407 sz = nfdset * sizeof(fd_mask);
2408
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002409 /* perhaps check sz < nalloc/2 and shrink? */
2410 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002411 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2412 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002413 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002414 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002415 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002416 memset(*readsetp, 0, sz);
2417 memset(*writesetp, 0, sz);
2418
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002419 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002420 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002421 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002422}
2423
Ben Lindstrome9c99912001-06-09 00:41:05 +00002424/*
2425 * After select, perform any appropriate operations for channels which have
2426 * events pending.
2427 */
Damien Miller4af51302000-04-16 11:18:38 +10002428void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002429channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002430{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002431 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432}
2433
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002434/*
2435 * Enqueue data for channels with open or draining c->input.
2436 */
2437static void
2438channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2439{
djm@openbsd.org55486f52017-09-23 22:04:07 +00002440 size_t len, plen;
2441 const u_char *pkt;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002442 int r;
2443
2444 if ((len = sshbuf_len(c->input)) == 0) {
2445 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2446 /*
2447 * input-buffer is empty and read-socket shutdown:
2448 * tell peer, that we will not send more data:
2449 * send IEOF.
2450 * hack for extended data: delay EOF if EFD still
2451 * in use.
2452 */
2453 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2454 debug2("channel %d: "
2455 "ibuf_empty delayed efd %d/(%zu)",
2456 c->self, c->efd, sshbuf_len(c->extended));
2457 else
2458 chan_ibuf_empty(ssh, c);
2459 }
2460 return;
2461 }
2462
djm@openbsd.org9f532292017-09-12 06:35:31 +00002463 if (!c->have_remote_id)
2464 fatal(":%s: channel %d: no remote id", __func__, c->self);
2465
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002466 if (c->datagram) {
2467 /* Check datagram will fit; drop if not */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002468 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2469 fatal("%s: channel %d: get datagram: %s", __func__,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002470 c->self, ssh_err(r));
2471 /*
2472 * XXX this does tail-drop on the datagram queue which is
2473 * usually suboptimal compared to head-drop. Better to have
2474 * backpressure at read time? (i.e. read + discard)
2475 */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002476 if (plen > c->remote_window || plen > c->remote_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002477 debug("channel %d: datagram too big", c->self);
2478 return;
2479 }
2480 /* Enqueue it */
2481 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2482 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org55486f52017-09-23 22:04:07 +00002483 (r = sshpkt_put_string(ssh, pkt, plen)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002484 (r = sshpkt_send(ssh)) != 0) {
2485 fatal("%s: channel %i: datagram: %s", __func__,
2486 c->self, ssh_err(r));
2487 }
djm@openbsd.org55486f52017-09-23 22:04:07 +00002488 c->remote_window -= plen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002489 return;
2490 }
2491
2492 /* Enqueue packet for buffered data. */
2493 if (len > c->remote_window)
2494 len = c->remote_window;
2495 if (len > c->remote_maxpacket)
2496 len = c->remote_maxpacket;
2497 if (len == 0)
2498 return;
2499 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2500 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2501 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2502 (r = sshpkt_send(ssh)) != 0) {
2503 fatal("%s: channel %i: data: %s", __func__,
2504 c->self, ssh_err(r));
2505 }
2506 if ((r = sshbuf_consume(c->input, len)) != 0)
2507 fatal("%s: channel %i: consume: %s", __func__,
2508 c->self, ssh_err(r));
2509 c->remote_window -= len;
2510}
2511
2512/*
2513 * Enqueue data for channels with open c->extended in read mode.
2514 */
2515static void
2516channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2517{
2518 size_t len;
2519 int r;
2520
2521 if ((len = sshbuf_len(c->extended)) == 0)
2522 return;
2523
2524 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2525 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2526 if (len > c->remote_window)
2527 len = c->remote_window;
2528 if (len > c->remote_maxpacket)
2529 len = c->remote_maxpacket;
2530 if (len == 0)
2531 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002532 if (!c->have_remote_id)
2533 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002534 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2535 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2536 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2537 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2538 (r = sshpkt_send(ssh)) != 0) {
2539 fatal("%s: channel %i: data: %s", __func__,
2540 c->self, ssh_err(r));
2541 }
2542 if ((r = sshbuf_consume(c->extended, len)) != 0)
2543 fatal("%s: channel %i: consume: %s", __func__,
2544 c->self, ssh_err(r));
2545 c->remote_window -= len;
2546 debug2("channel %d: sent ext data %zu", c->self, len);
2547}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002548
Damien Miller5e953212001-01-30 09:14:00 +11002549/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002550void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002551channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002552{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002553 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002554 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002555 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002556
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002557 for (i = 0; i < sc->channels_alloc; i++) {
2558 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002559 if (c == NULL)
2560 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002561
Ben Lindstrome9c99912001-06-09 00:41:05 +00002562 /*
2563 * We are only interested in channels that can have buffered
2564 * incoming data.
2565 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002566 if (c->type != SSH_CHANNEL_OPEN)
2567 continue;
2568 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002569 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002570 debug3("channel %d: will not send data after close",
2571 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002572 continue;
2573 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002574
Damien Miller95def091999-11-25 00:26:21 +11002575 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002576 if (c->istate == CHAN_INPUT_OPEN ||
2577 c->istate == CHAN_INPUT_WAIT_DRAIN)
2578 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002579 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002580 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002581 c->extended_usage == CHAN_EXTENDED_READ)
2582 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002583 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002584}
2585
markus@openbsd.org8d057842016-09-30 09:19:13 +00002586/* -- mux proxy support */
2587
2588/*
2589 * When multiplexing channel messages for mux clients we have to deal
2590 * with downstream messages from the mux client and upstream messages
2591 * from the ssh server:
2592 * 1) Handling downstream messages is straightforward and happens
2593 * in channel_proxy_downstream():
2594 * - We forward all messages (mostly) unmodified to the server.
2595 * - However, in order to route messages from upstream to the correct
2596 * downstream client, we have to replace the channel IDs used by the
2597 * mux clients with a unique channel ID because the mux clients might
2598 * use conflicting channel IDs.
2599 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2600 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2601 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2602 * with the newly allocated channel ID.
2603 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
2604 * channels and procesed by channel_proxy_upstream(). The local channel ID
2605 * is then translated back to the original mux client ID.
2606 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2607 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2608 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2609 * downstream mux client are removed.
2610 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2611 * requires more work, because they are not addressed to a specific
2612 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2613 * out whether the request is addressed to the local client or a
2614 * specific downstream client based on the listen-address/port.
2615 * 6) Agent and X11-Forwarding have a similar problem and are currenly
2616 * not supported as the matching session/channel cannot be identified
2617 * easily.
2618 */
2619
2620/*
2621 * receive packets from downstream mux clients:
2622 * channel callback fired on read from mux client, creates
2623 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2624 * on channel creation.
2625 */
2626int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002627channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002628{
2629 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002630 struct sshbuf *original = NULL, *modified = NULL;
2631 const u_char *cp;
2632 char *ctype = NULL, *listen_host = NULL;
2633 u_char type;
2634 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002635 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002636 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002637
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002638 /* sshbuf_dump(downstream->input, stderr); */
2639 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002640 != 0) {
2641 error("%s: malformed message: %s", __func__, ssh_err(r));
2642 return -1;
2643 }
2644 if (have < 2) {
2645 error("%s: short message", __func__);
2646 return -1;
2647 }
2648 type = cp[1];
2649 /* skip padlen + type */
2650 cp += 2;
2651 have -= 2;
2652 if (ssh_packet_log_type(type))
2653 debug3("%s: channel %u: down->up: type %u", __func__,
2654 downstream->self, type);
2655
2656 switch (type) {
2657 case SSH2_MSG_CHANNEL_OPEN:
2658 if ((original = sshbuf_from(cp, have)) == NULL ||
2659 (modified = sshbuf_new()) == NULL) {
2660 error("%s: alloc", __func__);
2661 goto out;
2662 }
2663 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2664 (r = sshbuf_get_u32(original, &id)) != 0) {
2665 error("%s: parse error %s", __func__, ssh_err(r));
2666 goto out;
2667 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002668 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002669 -1, -1, -1, 0, 0, 0, ctype, 1);
2670 c->mux_ctx = downstream; /* point to mux client */
2671 c->mux_downstream_id = id; /* original downstream id */
2672 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2673 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2674 (r = sshbuf_putb(modified, original)) != 0) {
2675 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002676 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002677 goto out;
2678 }
2679 break;
2680 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2681 /*
2682 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2683 * need to parse 'remote_id' instead of 'ctype'.
2684 */
2685 if ((original = sshbuf_from(cp, have)) == NULL ||
2686 (modified = sshbuf_new()) == NULL) {
2687 error("%s: alloc", __func__);
2688 goto out;
2689 }
2690 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2691 (r = sshbuf_get_u32(original, &id)) != 0) {
2692 error("%s: parse error %s", __func__, ssh_err(r));
2693 goto out;
2694 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002695 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002696 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2697 c->mux_ctx = downstream; /* point to mux client */
2698 c->mux_downstream_id = id;
2699 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002700 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002701 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2702 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2703 (r = sshbuf_putb(modified, original)) != 0) {
2704 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002705 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002706 goto out;
2707 }
2708 break;
2709 case SSH2_MSG_GLOBAL_REQUEST:
2710 if ((original = sshbuf_from(cp, have)) == NULL) {
2711 error("%s: alloc", __func__);
2712 goto out;
2713 }
2714 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2715 error("%s: parse error %s", __func__, ssh_err(r));
2716 goto out;
2717 }
2718 if (strcmp(ctype, "tcpip-forward") != 0) {
2719 error("%s: unsupported request %s", __func__, ctype);
2720 goto out;
2721 }
2722 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2723 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2724 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2725 error("%s: parse error %s", __func__, ssh_err(r));
2726 goto out;
2727 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002728 if (listen_port > 65535) {
2729 error("%s: tcpip-forward for %s: bad port %u",
2730 __func__, listen_host, listen_port);
2731 goto out;
2732 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002733 /* Record that connection to this host/port is permitted. */
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002734 fwd_perm_list_add(ssh, FWDPERM_USER, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002735 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002736 listen_host = NULL;
2737 break;
2738 case SSH2_MSG_CHANNEL_CLOSE:
2739 if (have < 4)
2740 break;
2741 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002742 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002743 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002744 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002745 else
2746 c->flags |= CHAN_CLOSE_SENT;
2747 }
2748 break;
2749 }
2750 if (modified) {
2751 if ((r = sshpkt_start(ssh, type)) != 0 ||
2752 (r = sshpkt_putb(ssh, modified)) != 0 ||
2753 (r = sshpkt_send(ssh)) != 0) {
2754 error("%s: send %s", __func__, ssh_err(r));
2755 goto out;
2756 }
2757 } else {
2758 if ((r = sshpkt_start(ssh, type)) != 0 ||
2759 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2760 (r = sshpkt_send(ssh)) != 0) {
2761 error("%s: send %s", __func__, ssh_err(r));
2762 goto out;
2763 }
2764 }
2765 ret = 0;
2766 out:
2767 free(ctype);
2768 free(listen_host);
2769 sshbuf_free(original);
2770 sshbuf_free(modified);
2771 return ret;
2772}
2773
2774/*
2775 * receive packets from upstream server and de-multiplex packets
2776 * to correct downstream:
2777 * implemented as a helper for channel input handlers,
2778 * replaces local (proxy) channel ID with downstream channel ID.
2779 */
2780int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002781channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002782{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002783 struct sshbuf *b = NULL;
2784 Channel *downstream;
2785 const u_char *cp = NULL;
2786 size_t len;
2787 int r;
2788
2789 /*
2790 * When receiving packets from the peer we need to check whether we
2791 * need to forward the packets to the mux client. In this case we
2792 * restore the orignal channel id and keep track of CLOSE messages,
2793 * so we can cleanup the channel.
2794 */
2795 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2796 return 0;
2797 if ((downstream = c->mux_ctx) == NULL)
2798 return 0;
2799 switch (type) {
2800 case SSH2_MSG_CHANNEL_CLOSE:
2801 case SSH2_MSG_CHANNEL_DATA:
2802 case SSH2_MSG_CHANNEL_EOF:
2803 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2804 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2805 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2806 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2807 case SSH2_MSG_CHANNEL_SUCCESS:
2808 case SSH2_MSG_CHANNEL_FAILURE:
2809 case SSH2_MSG_CHANNEL_REQUEST:
2810 break;
2811 default:
2812 debug2("%s: channel %u: unsupported type %u", __func__,
2813 c->self, type);
2814 return 0;
2815 }
2816 if ((b = sshbuf_new()) == NULL) {
2817 error("%s: alloc reply", __func__);
2818 goto out;
2819 }
2820 /* get remaining payload (after id) */
2821 cp = sshpkt_ptr(ssh, &len);
2822 if (cp == NULL) {
2823 error("%s: no packet", __func__);
2824 goto out;
2825 }
2826 /* translate id and send to muxclient */
2827 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2828 (r = sshbuf_put_u8(b, type)) != 0 ||
2829 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2830 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002831 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002832 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2833 goto out;
2834 }
2835 /* sshbuf_dump(b, stderr); */
2836 if (ssh_packet_log_type(type))
2837 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2838 type);
2839 out:
2840 /* update state */
2841 switch (type) {
2842 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2843 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002844 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002845 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002846 c->have_remote_id = 1;
2847 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002848 break;
2849 case SSH2_MSG_CHANNEL_CLOSE:
2850 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002851 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002852 else
2853 c->flags |= CHAN_CLOSE_RCVD;
2854 break;
2855 }
2856 sshbuf_free(b);
2857 return 1;
2858}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002859
2860/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002861
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002862/* Parse a channel ID from the current packet */
2863static int
2864channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2865{
2866 u_int32_t id;
2867 int r;
2868
2869 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2870 error("%s: parse id: %s", where, ssh_err(r));
2871 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2872 }
2873 if (id > INT_MAX) {
2874 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2875 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2876 }
2877 return (int)id;
2878}
2879
2880/* Lookup a channel from an ID in the current packet */
2881static Channel *
2882channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2883{
2884 int id = channel_parse_id(ssh, where, what);
2885 Channel *c;
2886
2887 if ((c = channel_lookup(ssh, id)) == NULL) {
2888 ssh_packet_disconnect(ssh,
2889 "%s packet referred to nonexistent channel %d", what, id);
2890 }
2891 return c;
2892}
2893
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002894int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002895channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002896{
Damien Miller633de332014-05-15 13:48:26 +10002897 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002898 size_t data_len, win_len;
2899 Channel *c = channel_from_packet_id(ssh, __func__, "data");
2900 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002901
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002902 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002903 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002904
Damien Miller95def091999-11-25 00:26:21 +11002905 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002906 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002907 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
2908 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10002909 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002910 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002911
Damien Miller95def091999-11-25 00:26:21 +11002912 /* Get the data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002913 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0)
2914 fatal("%s: channel %d: get data: %s", __func__,
2915 c->self, ssh_err(r));
2916 ssh_packet_check_eom(ssh);
2917
Damien Miller7d457182010-08-05 23:09:48 +10002918 win_len = data_len;
2919 if (c->datagram)
2920 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002921
Damien Millera04ad492004-01-21 11:02:09 +11002922 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002923 * The sending side reduces its window as it sends data, so we
2924 * must 'fake' consumption of the data in order to ensure that window
2925 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11002926 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002927 if (c->ostate != CHAN_OUTPUT_OPEN) {
2928 c->local_window -= win_len;
2929 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002930 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002931 }
2932
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002933 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002934 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002935 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002936 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002937 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002938 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002939 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002940 c->self, win_len, c->local_window);
2941 return 0;
2942 }
2943 c->local_window -= win_len;
2944
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002945 if (c->datagram) {
2946 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
2947 fatal("%s: channel %d: append datagram: %s",
2948 __func__, c->self, ssh_err(r));
2949 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
2950 fatal("%s: channel %d: append data: %s",
2951 __func__, c->self, ssh_err(r));
2952
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002953 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002954}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002955
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002956int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002957channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10002958{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002959 const u_char *data;
2960 size_t data_len;
2961 u_int32_t tcode;
2962 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
2963 int r;
Damien Miller33b13562000-04-04 14:38:59 +10002964
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002965 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002966 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002967 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002968 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002969 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002970 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002971 if (c->flags & CHAN_EOF_RCVD) {
2972 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002973 debug("channel %d: accepting ext data after eof",
2974 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00002975 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002976 ssh_packet_disconnect(ssh, "Received extended_data "
2977 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00002978 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002979
2980 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
2981 error("%s: parse tcode: %s", __func__, ssh_err(r));
2982 ssh_packet_disconnect(ssh, "Invalid extended_data message");
2983 }
Damien Miller33b13562000-04-04 14:38:59 +10002984 if (c->efd == -1 ||
2985 c->extended_usage != CHAN_EXTENDED_WRITE ||
2986 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002987 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002988 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002989 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002990 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0) {
2991 error("%s: parse data: %s", __func__, ssh_err(r));
2992 ssh_packet_disconnect(ssh, "Invalid extended_data message");
2993 }
2994 ssh_packet_check_eom(ssh);
2995
Damien Miller33b13562000-04-04 14:38:59 +10002996 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002997 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10002998 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002999 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003000 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003001 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3002 /* XXX sshpkt_getb? */
3003 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3004 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003005 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003006 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003007}
3008
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003009int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003010channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003011{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003012 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
Damien Millerb38eff82000-04-01 11:09:21 +10003013
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003014 ssh_packet_check_eom(ssh);
3015
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003016 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003017 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003018 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003019
3020 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003021 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003022 debug("channel %d: FORCE input drain", c->self);
3023 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003024 if (sshbuf_len(c->input) == 0)
3025 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003026 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003027 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003028}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003029
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003030int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003031channel_input_oclose(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003032{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003033 Channel *c = channel_from_packet_id(ssh, __func__, "oclose");
Damien Miller66823cd2002-01-22 23:11:38 +11003034
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003035 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003036 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003037 ssh_packet_check_eom(ssh);
3038 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003039 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003040}
3041
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003042int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003043channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003044{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003045 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3046 u_int32_t remote_window, remote_maxpacket;
3047 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003048
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003049 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003050 return 0;
3051 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003052 packet_disconnect("Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003053 "non-opening channel %d.", c->self);
3054 /*
3055 * Record the remote channel number and mark that the channel
3056 * is now open.
3057 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003058 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3059 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003060 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0) {
3061 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
3062 packet_disconnect("Invalid open confirmation message");
3063 }
3064 ssh_packet_check_eom(ssh);
Damien Miller33b13562000-04-04 14:38:59 +10003065
djm@openbsd.org9f532292017-09-12 06:35:31 +00003066 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003067 c->remote_window = remote_window;
3068 c->remote_maxpacket = remote_maxpacket;
3069 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003070 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003071 debug2("%s: channel %d: callback start", __func__, c->self);
3072 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3073 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003074 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003075 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3076 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003077 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003078}
3079
Ben Lindstrombba81212001-06-25 05:01:22 +00003080static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003081reason2txt(int reason)
3082{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003083 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003084 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3085 return "administratively prohibited";
3086 case SSH2_OPEN_CONNECT_FAILED:
3087 return "connect failed";
3088 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3089 return "unknown channel type";
3090 case SSH2_OPEN_RESOURCE_SHORTAGE:
3091 return "resource shortage";
3092 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003093 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003094}
3095
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003096int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003097channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003098{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003099 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3100 u_int32_t reason;
3101 char *msg = NULL;
3102 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003103
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003104 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003105 return 0;
3106 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003107 packet_disconnect("Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003108 "non-opening channel %d.", c->self);
3109 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3110 error("%s: reason: %s", __func__, ssh_err(r));
3111 packet_disconnect("Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003112 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003113 if ((datafellows & SSH_BUG_OPENFAILURE) == 0) {
3114 /* skip language */
3115 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
djm@openbsd.org218e6f92017-09-24 13:45:34 +00003116 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003117 error("%s: message/lang: %s", __func__, ssh_err(r));
3118 packet_disconnect("Invalid open failure message");
3119 }
3120 }
3121 ssh_packet_check_eom(ssh);
3122 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003123 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3124 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003125 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003126 debug2("%s: channel %d: callback start", __func__, c->self);
3127 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3128 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003129 }
Damien Miller7a606212009-01-28 16:22:34 +11003130 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003131 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003132 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003133}
3134
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003135int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003136channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003137{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003138 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003139 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003140 u_int32_t adjust;
3141 u_int new_rwin;
3142 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003143
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003144 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003145 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003146 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003147 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003148
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003149 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003150 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003151 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0) {
3152 error("%s: adjust: %s", __func__, ssh_err(r));
3153 packet_disconnect("Invalid window adjust message");
3154 }
3155 ssh_packet_check_eom(ssh);
3156 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3157 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003158 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003159 c->self, adjust, c->remote_window);
3160 }
3161 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003162 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003163}
3164
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003165int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003166channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003167{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003168 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003169 Channel *c;
3170 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003171
3172 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10003173 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10003174
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003175 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003176
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003177 if ((c = channel_lookup(ssh, id)) == NULL) {
3178 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003179 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003180 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003181 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003182 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003183 ssh_packet_check_eom(ssh);
Damien Millerb84886b2008-05-19 15:05:07 +10003184 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003185 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003186 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003187 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11003188 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10003189 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003190 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003191}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003192
Ben Lindstrome9c99912001-06-09 00:41:05 +00003193/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003194
Ben Lindstrom908afed2001-10-03 17:34:59 +00003195void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003196channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003197{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003198 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003199}
3200
Damien Millerf6dff7c2011-09-22 21:38:52 +10003201
3202/*
3203 * Determine whether or not a port forward listens to loopback, the
3204 * specified address or wildcard. On the client, a specified bind
3205 * address will always override gateway_ports. On the server, a
3206 * gateway_ports of 1 (``yes'') will override the client's specification
3207 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3208 * will bind to whatever address the client asked for.
3209 *
3210 * Special-case listen_addrs are:
3211 *
3212 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3213 * "" (empty string), "*" -> wildcard v4/v6
3214 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003215 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003216 */
3217static const char *
3218channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003219 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003220{
3221 const char *addr = NULL;
3222 int wildcard = 0;
3223
3224 if (listen_addr == NULL) {
3225 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003226 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003227 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003228 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003229 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3230 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3231 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003232 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003233 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003234 /*
3235 * Notify client if they requested a specific listen
3236 * address and it was overridden.
3237 */
3238 if (*listen_addr != '\0' &&
3239 strcmp(listen_addr, "0.0.0.0") != 0 &&
3240 strcmp(listen_addr, "*") != 0) {
3241 packet_send_debug("Forwarding listen address "
3242 "\"%s\" overridden by server "
3243 "GatewayPorts", listen_addr);
3244 }
Damien Miller602943d2014-07-04 08:59:41 +10003245 } else if (strcmp(listen_addr, "localhost") != 0 ||
3246 strcmp(listen_addr, "127.0.0.1") == 0 ||
3247 strcmp(listen_addr, "::1") == 0) {
3248 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10003249 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003250 }
3251 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3252 strcmp(listen_addr, "::1") == 0) {
3253 /*
3254 * If a specific IPv4/IPv6 localhost address has been
3255 * requested then accept it even if gateway_ports is in
3256 * effect. This allows the client to prefer IPv4 or IPv6.
3257 */
3258 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003259 }
3260 if (wildcardp != NULL)
3261 *wildcardp = wildcard;
3262 return addr;
3263}
3264
Damien Millerb16461c2002-01-22 23:29:22 +11003265static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003266channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3267 struct Forward *fwd, int *allocated_listen_port,
3268 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003269{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003270 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003271 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003272 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003273 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003274 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003275 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003276
Damien Millerf91ee4c2005-03-01 21:24:33 +11003277 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003278
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003279 if (is_client && fwd->connect_path != NULL) {
3280 host = fwd->connect_path;
3281 } else {
3282 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3283 fwd->listen_host : fwd->connect_host;
3284 if (host == NULL) {
3285 error("No forward host name.");
3286 return 0;
3287 }
3288 if (strlen(host) >= NI_MAXHOST) {
3289 error("Forward host name too long.");
3290 return 0;
3291 }
Kevin Steves12057502001-02-05 14:54:34 +00003292 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003293
Damien Millerf6dff7c2011-09-22 21:38:52 +10003294 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10003295 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3296 is_client, fwd_opts);
3297 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003298 type, wildcard, (addr == NULL) ? "NULL" : addr);
3299
3300 /*
Damien Miller34132e52000-01-14 15:45:46 +11003301 * getaddrinfo returns a loopback address if the hostname is
3302 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003303 */
Damien Miller34132e52000-01-14 15:45:46 +11003304 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003305 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003306 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003307 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003308 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003309 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3310 if (addr == NULL) {
3311 /* This really shouldn't happen */
3312 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003313 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003314 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003315 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003316 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003317 }
Damien Millera7270302005-07-06 09:36:05 +10003318 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003319 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003320 if (allocated_listen_port != NULL)
3321 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003322 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003323 switch (ai->ai_family) {
3324 case AF_INET:
3325 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3326 sin_port;
3327 break;
3328 case AF_INET6:
3329 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3330 sin6_port;
3331 break;
3332 default:
Damien Miller34132e52000-01-14 15:45:46 +11003333 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003334 }
3335 /*
3336 * If allocating a port for -R forwards, then use the
3337 * same port for all address families.
3338 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003339 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3340 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3341 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003342 *lport_p = htons(*allocated_listen_port);
3343
Damien Miller34132e52000-01-14 15:45:46 +11003344 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003345 strport, sizeof(strport),
3346 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003347 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003348 continue;
3349 }
3350 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003351 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003352 if (sock < 0) {
3353 /* this is no error since kernel may not support ipv6 */
3354 verbose("socket: %.100s", strerror(errno));
3355 continue;
3356 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003357
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00003358 set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003359 if (ai->ai_family == AF_INET6)
3360 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003361
Damien Miller4bf648f2009-02-14 16:28:21 +11003362 debug("Local forwarding listening on %s port %s.",
3363 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003364
Damien Miller34132e52000-01-14 15:45:46 +11003365 /* Bind the socket to the address. */
3366 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003367 /*
3368 * address can be in if use ipv6 address is
3369 * already bound
3370 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003371 if (!ai->ai_next)
3372 error("bind: %.100s", strerror(errno));
3373 else
3374 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003375
Damien Miller34132e52000-01-14 15:45:46 +11003376 close(sock);
3377 continue;
3378 }
3379 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11003380 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003381 error("listen: %.100s", strerror(errno));
3382 close(sock);
3383 continue;
3384 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003385
3386 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003387 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003388 * record what we got.
3389 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003390 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3391 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003392 allocated_listen_port != NULL &&
3393 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003394 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003395 debug("Allocated listen port %d",
3396 *allocated_listen_port);
3397 }
3398
Damien Miller34132e52000-01-14 15:45:46 +11003399 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003400 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003401 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003402 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003403 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003404 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003405 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003406 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003407 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3408 c->listening_port = *allocated_listen_port;
3409 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003410 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003411 success = 1;
3412 }
3413 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003414 error("%s: cannot listen to port: %d", __func__,
3415 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003416 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003417 return success;
Damien Miller95def091999-11-25 00:26:21 +11003418}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003419
Damien Miller7acefbb2014-07-18 14:11:24 +10003420static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003421channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3422 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003423{
3424 struct sockaddr_un sunaddr;
3425 const char *path;
3426 Channel *c;
3427 int port, sock;
3428 mode_t omask;
3429
3430 switch (type) {
3431 case SSH_CHANNEL_UNIX_LISTENER:
3432 if (fwd->connect_path != NULL) {
3433 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3434 error("Local connecting path too long: %s",
3435 fwd->connect_path);
3436 return 0;
3437 }
3438 path = fwd->connect_path;
3439 port = PORT_STREAMLOCAL;
3440 } else {
3441 if (fwd->connect_host == NULL) {
3442 error("No forward host name.");
3443 return 0;
3444 }
3445 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3446 error("Forward host name too long.");
3447 return 0;
3448 }
3449 path = fwd->connect_host;
3450 port = fwd->connect_port;
3451 }
3452 break;
3453 case SSH_CHANNEL_RUNIX_LISTENER:
3454 path = fwd->listen_path;
3455 port = PORT_STREAMLOCAL;
3456 break;
3457 default:
3458 error("%s: unexpected channel type %d", __func__, type);
3459 return 0;
3460 }
3461
3462 if (fwd->listen_path == NULL) {
3463 error("No forward path name.");
3464 return 0;
3465 }
3466 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3467 error("Local listening path too long: %s", fwd->listen_path);
3468 return 0;
3469 }
3470
3471 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3472
3473 /* Start a Unix domain listener. */
3474 omask = umask(fwd_opts->streamlocal_bind_mask);
3475 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3476 fwd_opts->streamlocal_bind_unlink);
3477 umask(omask);
3478 if (sock < 0)
3479 return 0;
3480
3481 debug("Local forwarding listening on path %s.", fwd->listen_path);
3482
3483 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003484 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003485 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3486 0, "unix listener", 1);
3487 c->path = xstrdup(path);
3488 c->host_port = port;
3489 c->listening_port = PORT_STREAMLOCAL;
3490 c->listening_addr = xstrdup(fwd->listen_path);
3491 return 1;
3492}
3493
3494static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003495channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3496 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003497{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003498 u_int i;
3499 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003500
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003501 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3502 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003503 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3504 continue;
3505 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3506 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003507 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003508 found = 1;
3509 }
3510 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003511
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003512 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003513}
3514
Damien Miller7acefbb2014-07-18 14:11:24 +10003515static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003516channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003517{
3518 u_int i;
3519 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003520
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003521 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3522 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003523 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3524 continue;
3525 if (c->path == NULL)
3526 continue;
3527 if (strcmp(c->path, path) == 0) {
3528 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003529 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003530 found = 1;
3531 }
3532 }
3533
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003534 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003535}
3536
3537int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003538channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003539{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003540 if (fwd->listen_path != NULL) {
3541 return channel_cancel_rport_listener_streamlocal(ssh,
3542 fwd->listen_path);
3543 } else {
3544 return channel_cancel_rport_listener_tcpip(ssh,
3545 fwd->listen_host, fwd->listen_port);
3546 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003547}
3548
3549static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003550channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3551 const char *lhost, u_short lport, int cport,
3552 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003553{
3554 u_int i;
3555 int found = 0;
3556 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003557
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003558 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3559 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003560 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3561 continue;
Damien Millerff773642011-09-22 21:39:48 +10003562 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003563 continue;
Damien Millerff773642011-09-22 21:39:48 +10003564 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3565 /* skip dynamic forwardings */
3566 if (c->host_port == 0)
3567 continue;
3568 } else {
3569 if (c->host_port != cport)
3570 continue;
3571 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003572 if ((c->listening_addr == NULL && addr != NULL) ||
3573 (c->listening_addr != NULL && addr == NULL))
3574 continue;
3575 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003576 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003577 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003578 found = 1;
3579 }
3580 }
3581
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003582 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003583}
3584
Damien Miller7acefbb2014-07-18 14:11:24 +10003585static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003586channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003587{
3588 u_int i;
3589 int found = 0;
3590
3591 if (path == NULL) {
3592 error("%s: no path specified.", __func__);
3593 return 0;
3594 }
3595
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003596 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3597 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003598 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3599 continue;
3600 if (c->listening_addr == NULL)
3601 continue;
3602 if (strcmp(c->listening_addr, path) == 0) {
3603 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003604 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003605 found = 1;
3606 }
3607 }
3608
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003609 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003610}
3611
3612int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003613channel_cancel_lport_listener(struct ssh *ssh,
3614 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003615{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003616 if (fwd->listen_path != NULL) {
3617 return channel_cancel_lport_listener_streamlocal(ssh,
3618 fwd->listen_path);
3619 } else {
3620 return channel_cancel_lport_listener_tcpip(ssh,
3621 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3622 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003623}
3624
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003625/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003626int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003627channel_setup_local_fwd_listener(struct ssh *ssh,
3628 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003629{
Damien Miller7acefbb2014-07-18 14:11:24 +10003630 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003631 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003632 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3633 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003634 return channel_setup_fwd_listener_tcpip(ssh,
3635 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003636 }
Damien Millerb16461c2002-01-22 23:29:22 +11003637}
3638
3639/* protocol v2 remote port fwd, used by sshd */
3640int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003641channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003642 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003643{
Damien Miller7acefbb2014-07-18 14:11:24 +10003644 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003645 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003646 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3647 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003648 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003649 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3650 fwd_opts);
3651 }
Damien Millerb16461c2002-01-22 23:29:22 +11003652}
3653
Damien Miller5428f641999-11-25 11:54:57 +11003654/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003655 * Translate the requested rfwd listen host to something usable for
3656 * this server.
3657 */
3658static const char *
3659channel_rfwd_bind_host(const char *listen_host)
3660{
3661 if (listen_host == NULL) {
3662 if (datafellows & SSH_BUG_RFWD_ADDR)
3663 return "127.0.0.1";
3664 else
3665 return "localhost";
3666 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3667 if (datafellows & SSH_BUG_RFWD_ADDR)
3668 return "0.0.0.0";
3669 else
3670 return "";
3671 } else
3672 return listen_host;
3673}
3674
3675/*
Damien Miller5428f641999-11-25 11:54:57 +11003676 * Initiate forwarding of connections to port "port" on remote host through
3677 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003678 * Returns handle (index) for updating the dynamic listen port with
3679 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003680 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003681int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003682channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003683{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003684 int r, success = 0, idx = -1;
3685 char *host_to_connect, *listen_host, *listen_path;
3686 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003687
Damien Miller95def091999-11-25 00:26:21 +11003688 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003689 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003690 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3691 (r = sshpkt_put_cstring(ssh,
3692 "streamlocal-forward@openssh.com")) != 0 ||
3693 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3694 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3695 (r = sshpkt_send(ssh)) != 0 ||
3696 (r = ssh_packet_write_wait(ssh)) != 0)
3697 fatal("%s: request streamlocal: %s",
3698 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003699 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003700 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3701 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3702 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3703 (r = sshpkt_put_cstring(ssh,
3704 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3705 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3706 (r = sshpkt_send(ssh)) != 0 ||
3707 (r = ssh_packet_write_wait(ssh)) != 0)
3708 fatal("%s: request tcpip-forward: %s",
3709 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003710 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003711 /* Assume that server accepts the request */
3712 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003713 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003714 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003715 host_to_connect = listen_host = listen_path = NULL;
3716 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003717 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003718 host_to_connect = xstrdup(fwd->connect_path);
3719 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003720 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003721 host_to_connect = xstrdup(fwd->connect_host);
3722 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003723 }
3724 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003725 listen_path = xstrdup(fwd->listen_path);
3726 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003727 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003728 if (fwd->listen_host != NULL)
3729 listen_host = xstrdup(fwd->listen_host);
3730 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003731 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003732 idx = fwd_perm_list_add(ssh, FWDPERM_USER,
3733 host_to_connect, port_to_connect,
3734 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003735 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003736 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003737}
3738
Damien Miller4b3ed642014-07-02 15:29:40 +10003739static int
3740open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003741 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003742{
3743 if (allowed_open->host_to_connect == NULL)
3744 return 0;
3745 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3746 allowed_open->port_to_connect != requestedport)
3747 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003748 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3749 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003750 return 0;
3751 return 1;
3752}
3753
3754/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003755 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003756 * we don't support FWD_PERMIT_ANY_PORT and
3757 * need to translate between the configured-host (listen_host)
3758 * and what we've sent to the remote server (channel_rfwd_bind_host)
3759 */
3760static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003761open_listen_match_tcpip(ForwardPermission *allowed_open,
3762 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003763{
3764 const char *allowed_host;
3765
3766 if (allowed_open->host_to_connect == NULL)
3767 return 0;
3768 if (allowed_open->listen_port != requestedport)
3769 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003770 if (!translate && allowed_open->listen_host == NULL &&
3771 requestedhost == NULL)
3772 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003773 allowed_host = translate ?
3774 channel_rfwd_bind_host(allowed_open->listen_host) :
3775 allowed_open->listen_host;
3776 if (allowed_host == NULL ||
3777 strcmp(allowed_host, requestedhost) != 0)
3778 return 0;
3779 return 1;
3780}
3781
Damien Miller7acefbb2014-07-18 14:11:24 +10003782static int
3783open_listen_match_streamlocal(ForwardPermission *allowed_open,
3784 const char *requestedpath)
3785{
3786 if (allowed_open->host_to_connect == NULL)
3787 return 0;
3788 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3789 return 0;
3790 if (allowed_open->listen_path == NULL ||
3791 strcmp(allowed_open->listen_path, requestedpath) != 0)
3792 return 0;
3793 return 1;
3794}
3795
Damien Miller5428f641999-11-25 11:54:57 +11003796/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003797 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003798 * local side.
3799 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003800static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003801channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3802 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003803{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003804 struct ssh_channels *sc = ssh->chanctxt;
3805 int r;
3806 u_int i;
3807 ForwardPermission *fp;
Darren Tuckere7066df2004-05-24 10:18:05 +10003808
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003809 for (i = 0; i < sc->num_permitted_opens; i++) {
3810 fp = &sc->permitted_opens[i];
3811 if (open_listen_match_tcpip(fp, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003812 break;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003813 fp = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10003814 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003815 if (fp == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003816 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003817 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003818 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003819 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3820 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
3821 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3822 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
3823 (r = sshpkt_put_u32(ssh, port)) != 0 ||
3824 (r = sshpkt_send(ssh)) != 0)
3825 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10003826
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003827 fwd_perm_clear(fp); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003828
3829 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003830}
3831
3832/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003833 * Request cancellation of remote forwarding of Unix domain socket
3834 * path from local side.
3835 */
3836static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003837channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003838{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003839 struct ssh_channels *sc = ssh->chanctxt;
3840 int r;
3841 u_int i;
3842 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10003843
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003844 for (i = 0; i < sc->num_permitted_opens; i++) {
3845 fp = &sc->permitted_opens[i];
3846 if (open_listen_match_streamlocal(fp, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10003847 break;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003848 fp = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003849 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003850 if (fp == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003851 debug("%s: requested forward not found", __func__);
3852 return -1;
3853 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003854 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3855 (r = sshpkt_put_cstring(ssh,
3856 "cancel-streamlocal-forward@openssh.com")) != 0 ||
3857 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3858 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
3859 (r = sshpkt_send(ssh)) != 0)
3860 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003861
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003862 fwd_perm_clear(fp); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10003863
3864 return 0;
3865}
3866
3867/*
3868 * Request cancellation of remote forwarding of a connection from local side.
3869 */
3870int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003871channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003872{
3873 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003874 return channel_request_rforward_cancel_streamlocal(ssh,
3875 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10003876 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003877 return channel_request_rforward_cancel_tcpip(ssh,
3878 fwd->listen_host,
3879 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10003880 }
3881}
3882
3883/*
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003884 * Permits opening to any host/port if permitted_opens[] is empty. This is
3885 * usually called by the server, because the user could connect to any port
3886 * anyway, and the server has no way to know but to trust the client anyway.
3887 */
3888void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003889channel_permit_all_opens(struct ssh *ssh)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003890{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003891 if (ssh->chanctxt->num_permitted_opens == 0)
3892 ssh->chanctxt->all_opens_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003893}
3894
Ben Lindstroma3700052001-04-05 23:26:32 +00003895void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003896channel_add_permitted_opens(struct ssh *ssh, char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003897{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003898 struct ssh_channels *sc = ssh->chanctxt;
3899
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003900 debug("allow port forwarding to host %s port %d", host, port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003901 fwd_perm_list_add(ssh, FWDPERM_USER, host, port, NULL, NULL, 0, NULL);
3902 sc->all_opens_permitted = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003903}
3904
Darren Tucker68afb8c2011-10-02 18:59:03 +11003905/*
3906 * Update the listen port for a dynamic remote forward, after
3907 * the actual 'newport' has been allocated. If 'newport' < 0 is
3908 * passed then they entry will be invalidated.
3909 */
3910void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003911channel_update_permitted_opens(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11003912{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003913 struct ssh_channels *sc = ssh->chanctxt;
3914
3915 if (idx < 0 || (u_int)idx >= sc->num_permitted_opens) {
3916 debug("%s: index out of range: %d num_permitted_opens %d",
3917 __func__, idx, sc->num_permitted_opens);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003918 return;
3919 }
3920 debug("%s allowed port %d for forwarding to host %s port %d",
3921 newport > 0 ? "Updating" : "Removing",
3922 newport,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003923 sc->permitted_opens[idx].host_to_connect,
3924 sc->permitted_opens[idx].port_to_connect);
3925 if (newport <= 0)
3926 fwd_perm_clear(&sc->permitted_opens[idx]);
3927 else {
3928 sc->permitted_opens[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11003929 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003930 }
3931}
3932
Damien Millera765cf42006-07-24 14:08:13 +10003933int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003934channel_add_adm_permitted_opens(struct ssh *ssh, char *host, int port)
Damien Miller9b439df2006-07-24 14:04:00 +10003935{
Damien Millera765cf42006-07-24 14:08:13 +10003936 debug("config allows port forwarding to host %s port %d", host, port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003937 return fwd_perm_list_add(ssh, FWDPERM_ADMIN, host, port,
3938 NULL, NULL, 0, NULL);
Damien Miller9b439df2006-07-24 14:04:00 +10003939}
3940
3941void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003942channel_disable_adm_local_opens(struct ssh *ssh)
Damien Millerc6081482012-04-22 11:18:53 +10003943{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003944 channel_clear_adm_permitted_opens(ssh);
3945 fwd_perm_list_add(ssh, FWDPERM_ADMIN, NULL, 0, NULL, NULL, 0, NULL);
Damien Millerc6081482012-04-22 11:18:53 +10003946}
3947
3948void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003949channel_clear_permitted_opens(struct ssh *ssh)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003950{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003951 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003952
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003953 sc->permitted_opens = xrecallocarray(sc->permitted_opens,
3954 sc->num_permitted_opens, 0, sizeof(*sc->permitted_opens));
3955 sc->num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003956}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003957
Damien Miller9b439df2006-07-24 14:04:00 +10003958void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003959channel_clear_adm_permitted_opens(struct ssh *ssh)
Damien Miller9b439df2006-07-24 14:04:00 +10003960{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003961 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller9b439df2006-07-24 14:04:00 +10003962
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003963 sc->permitted_adm_opens = xrecallocarray(sc->permitted_adm_opens,
3964 sc->num_adm_permitted_opens, 0, sizeof(*sc->permitted_adm_opens));
3965 sc->num_adm_permitted_opens = 0;
Darren Tuckere7140f22008-06-10 23:01:51 +10003966}
3967
Darren Tucker1338b9e2011-10-02 18:57:35 +11003968/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3969int
3970permitopen_port(const char *p)
3971{
3972 int port;
3973
3974 if (strcmp(p, "*") == 0)
3975 return FWD_PERMIT_ANY_PORT;
3976 if ((port = a2port(p)) > 0)
3977 return port;
3978 return -1;
3979}
3980
Damien Millerbd740252008-05-19 15:37:09 +10003981/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003982static int
Damien Millerbd740252008-05-19 15:37:09 +10003983connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003984{
Damien Millerbd740252008-05-19 15:37:09 +10003985 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003986 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003987 char ntop[NI_MAXHOST];
3988 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003989
Damien Millerbd740252008-05-19 15:37:09 +10003990 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003991 switch (cctx->ai->ai_family) {
3992 case AF_UNIX:
3993 /* unix:pathname instead of host:port */
3994 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3995 strlcpy(ntop, "unix", sizeof(ntop));
3996 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3997 break;
3998 case AF_INET:
3999 case AF_INET6:
4000 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4001 ntop, sizeof(ntop), strport, sizeof(strport),
4002 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4003 error("connect_next: getnameinfo failed");
4004 continue;
4005 }
4006 break;
4007 default:
Damien Miller34132e52000-01-14 15:45:46 +11004008 continue;
4009 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004010 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4011 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004012 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004013 error("socket: %.100s", strerror(errno));
4014 else
4015 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004016 continue;
4017 }
Damien Miller232711f2004-06-15 10:35:30 +10004018 if (set_nonblock(sock) == -1)
4019 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004020 if (connect(sock, cctx->ai->ai_addr,
4021 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4022 debug("connect_next: host %.100s ([%.100s]:%s): "
4023 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004024 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004025 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004026 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004027 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004028 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004029 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004030 if (cctx->ai->ai_family != AF_UNIX)
4031 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004032 debug("connect_next: host %.100s ([%.100s]:%s) "
4033 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4034 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004035 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004036 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004037 return -1;
4038}
Damien Millerb38eff82000-04-01 11:09:21 +10004039
Damien Millerbd740252008-05-19 15:37:09 +10004040static void
4041channel_connect_ctx_free(struct channel_connect *cctx)
4042{
Darren Tuckera627d422013-06-02 07:31:17 +10004043 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004044 if (cctx->aitop) {
4045 if (cctx->aitop->ai_family == AF_UNIX)
4046 free(cctx->aitop);
4047 else
4048 freeaddrinfo(cctx->aitop);
4049 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004050 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004051}
4052
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004053/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004054 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004055 * passing back the failure reason if appropriate.
4056 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004057static int
4058connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4059 char *ctype, char *rname, struct channel_connect *cctx,
4060 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004061{
4062 struct addrinfo hints;
4063 int gaierr;
4064 int sock = -1;
4065 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004066
4067 if (port == PORT_STREAMLOCAL) {
4068 struct sockaddr_un *sunaddr;
4069 struct addrinfo *ai;
4070
4071 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4072 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004073 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004074 }
4075
4076 /*
4077 * Fake up a struct addrinfo for AF_UNIX connections.
4078 * channel_connect_ctx_free() must check ai_family
4079 * and use free() not freeaddirinfo() for AF_UNIX.
4080 */
4081 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4082 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4083 ai->ai_addr = (struct sockaddr *)(ai + 1);
4084 ai->ai_addrlen = sizeof(*sunaddr);
4085 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004086 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004087 ai->ai_protocol = PF_UNSPEC;
4088 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4089 sunaddr->sun_family = AF_UNIX;
4090 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004091 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004092 } else {
4093 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004094 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004095 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004096 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004097 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004098 != 0) {
4099 if (errmsg != NULL)
4100 *errmsg = ssh_gai_strerror(gaierr);
4101 if (reason != NULL)
4102 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004103 error("connect_to %.100s: unknown host (%s)", name,
4104 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004105 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004106 }
Damien Millerbd740252008-05-19 15:37:09 +10004107 }
4108
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004109 cctx->host = xstrdup(name);
4110 cctx->port = port;
4111 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004112
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004113 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004114 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004115 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004116 return -1;
4117 }
4118
4119 return sock;
4120}
4121
4122/* Return CONNECTING channel to remote host:port or local socket path */
4123static Channel *
4124connect_to(struct ssh *ssh, const char *host, int port,
4125 char *ctype, char *rname)
4126{
4127 struct channel_connect cctx;
4128 Channel *c;
4129 int sock;
4130
4131 memset(&cctx, 0, sizeof(cctx));
4132 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4133 &cctx, NULL, NULL);
4134 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004135 channel_connect_ctx_free(&cctx);
4136 return NULL;
4137 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004138 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004139 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004140 c->host_port = port;
4141 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004142 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004143
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004144 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004145}
4146
markus@openbsd.org8d057842016-09-30 09:19:13 +00004147/*
4148 * returns either the newly connected channel or the downstream channel
4149 * that needs to deal with this connection.
4150 */
Damien Millerbd740252008-05-19 15:37:09 +10004151Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004152channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004153 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004154{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004155 struct ssh_channels *sc = ssh->chanctxt;
4156 u_int i;
4157 ForwardPermission *fp;
Damien Millerbd740252008-05-19 15:37:09 +10004158
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004159 for (i = 0; i < sc->num_permitted_opens; i++) {
4160 fp = &sc->permitted_opens[i];
4161 if (open_listen_match_tcpip(fp, listen_host, listen_port, 1)) {
4162 if (fp->downstream)
4163 return fp->downstream;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004164 if (fp->port_to_connect == 0)
4165 return rdynamic_connect_prepare(ssh,
4166 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004167 return connect_to(ssh,
4168 fp->host_to_connect, fp->port_to_connect,
4169 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004170 }
4171 }
4172 error("WARNING: Server requests forwarding for unknown listen_port %d",
4173 listen_port);
4174 return NULL;
4175}
4176
Damien Miller7acefbb2014-07-18 14:11:24 +10004177Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004178channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4179 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004180{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004181 struct ssh_channels *sc = ssh->chanctxt;
4182 u_int i;
4183 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10004184
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004185 for (i = 0; i < sc->num_permitted_opens; i++) {
4186 fp = &sc->permitted_opens[i];
4187 if (open_listen_match_streamlocal(fp, path)) {
4188 return connect_to(ssh,
4189 fp->host_to_connect, fp->port_to_connect,
4190 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004191 }
4192 }
4193 error("WARNING: Server requests forwarding for unknown path %.100s",
4194 path);
4195 return NULL;
4196}
4197
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004198/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004199Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004200channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4201 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004202{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004203 struct ssh_channels *sc = ssh->chanctxt;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004204 struct channel_connect cctx;
4205 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004206 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004207 int sock;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004208 ForwardPermission *fp;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004209
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004210 permit = sc->all_opens_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004211 if (!permit) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004212 for (i = 0; i < sc->num_permitted_opens; i++) {
4213 fp = &sc->permitted_opens[i];
4214 if (open_match(fp, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004215 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004216 break;
4217 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004218 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004219 }
Damien Miller9b439df2006-07-24 14:04:00 +10004220
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004221 if (sc->num_adm_permitted_opens > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004222 permit_adm = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004223 for (i = 0; i < sc->num_adm_permitted_opens; i++) {
4224 fp = &sc->permitted_adm_opens[i];
4225 if (open_match(fp, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004226 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004227 break;
4228 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004229 }
Damien Miller9b439df2006-07-24 14:04:00 +10004230 }
4231
4232 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10004233 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004234 "but the request was denied.", host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004235 if (reason != NULL)
4236 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004237 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004238 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004239
4240 memset(&cctx, 0, sizeof(cctx));
4241 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4242 &cctx, reason, errmsg);
4243 if (sock == -1) {
4244 channel_connect_ctx_free(&cctx);
4245 return NULL;
4246 }
4247
4248 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4249 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4250 c->host_port = port;
4251 c->path = xstrdup(host);
4252 c->connect_ctx = cctx;
4253
4254 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004255}
4256
Damien Miller7acefbb2014-07-18 14:11:24 +10004257/* Check if connecting to that path is permitted and connect. */
4258Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004259channel_connect_to_path(struct ssh *ssh, const char *path,
4260 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004261{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004262 struct ssh_channels *sc = ssh->chanctxt;
4263 u_int i, permit, permit_adm = 1;
4264 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10004265
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004266 permit = sc->all_opens_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004267 if (!permit) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004268 for (i = 0; i < sc->num_permitted_opens; i++) {
4269 fp = &sc->permitted_opens[i];
4270 if (open_match(fp, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004271 permit = 1;
4272 break;
4273 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004274 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004275 }
4276
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004277 if (sc->num_adm_permitted_opens > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004278 permit_adm = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004279 for (i = 0; i < sc->num_adm_permitted_opens; i++) {
4280 fp = &sc->permitted_adm_opens[i];
4281 if (open_match(fp, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004282 permit_adm = 1;
4283 break;
4284 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004285 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004286 }
4287
4288 if (!permit || !permit_adm) {
4289 logit("Received request to connect to path %.100s, "
4290 "but the request was denied.", path);
4291 return NULL;
4292 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004293 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004294}
4295
Damien Miller0e220db2004-06-15 10:34:08 +10004296void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004297channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004298{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004299 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004300 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004301 int r;
4302 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004303
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004304 for (i = 0; i < sc->channels_alloc; i++) {
4305 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4306 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004307 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004308 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
Damien Miller0e220db2004-06-15 10:34:08 +10004309 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004310 channel_request_start(ssh, i, "window-change", 0);
4311 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4312 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4313 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4314 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4315 (r = sshpkt_send(ssh)) != 0)
4316 fatal("%s: channel %u: send window-change: %s",
4317 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004318 }
4319}
4320
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004321/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4322static Channel *
4323rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4324{
4325 Channel *c;
4326 int r;
4327
4328 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4329 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4330 c->host_port = 0;
4331 c->path = NULL;
4332
4333 /*
4334 * We need to open the channel before we have a FD,
4335 * so that we can get SOCKS header from peer.
4336 */
4337 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4338 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4339 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4340 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4341 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4342 fatal("%s: channel %i: confirm: %s", __func__,
4343 c->self, ssh_err(r));
4344 }
4345 return c;
4346}
4347
4348/* Return CONNECTING socket to remote host:port or local socket path */
4349static int
4350rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4351{
4352 struct channel_connect cctx;
4353 int sock;
4354
4355 memset(&cctx, 0, sizeof(cctx));
4356 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4357 NULL, &cctx, NULL, NULL);
4358 if (sock == -1)
4359 channel_connect_ctx_free(&cctx);
4360 else {
4361 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4362 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4363 c->connect_ctx = cctx;
4364 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4365 }
4366 return sock;
4367}
4368
Ben Lindstrome9c99912001-06-09 00:41:05 +00004369/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004370
Damien Miller5428f641999-11-25 11:54:57 +11004371/*
4372 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004373 * Returns 0 and a suitable display number for the DISPLAY variable
4374 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004375 */
Kevin Steves366298c2001-12-19 17:58:01 +00004376int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004377x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4378 int x11_use_localhost, int single_connection,
4379 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004380{
Damien Millere7378562001-12-21 14:58:35 +11004381 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004382 int display_number, sock;
4383 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004384 struct addrinfo hints, *ai, *aitop;
4385 char strport[NI_MAXSERV];
4386 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004387
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004388 if (chanids == NULL)
4389 return -1;
4390
Damien Millera34a28b1999-12-14 10:47:15 +11004391 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004392 display_number < MAX_DISPLAYS;
4393 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004394 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004395 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004396 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004397 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004398 hints.ai_socktype = SOCK_STREAM;
4399 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004400 if ((gaierr = getaddrinfo(NULL, strport,
4401 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004402 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004403 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004404 }
Damien Miller34132e52000-01-14 15:45:46 +11004405 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004406 if (ai->ai_family != AF_INET &&
4407 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004408 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004409 sock = socket(ai->ai_family, ai->ai_socktype,
4410 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004411 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11004412 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4413#ifdef EPFNOSUPPORT
4414 && (errno != EPFNOSUPPORT)
4415#endif
4416 ) {
Damien Millere2192732000-01-17 13:22:55 +11004417 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004418 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004419 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004420 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004421 debug("x11_create_display_inet: Socket family %d not supported",
4422 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004423 continue;
4424 }
Damien Miller34132e52000-01-14 15:45:46 +11004425 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004426 if (ai->ai_family == AF_INET6)
4427 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004428 if (x11_use_localhost)
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00004429 set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11004430 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004431 debug2("%s: bind port %d: %.100s", __func__,
4432 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004433 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004434 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004435 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004436 num_socks = 0;
4437 break;
4438 }
4439 socks[num_socks++] = sock;
4440 if (num_socks == NUM_SOCKS)
4441 break;
Damien Miller95def091999-11-25 00:26:21 +11004442 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004443 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004444 if (num_socks > 0)
4445 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004446 }
Damien Miller95def091999-11-25 00:26:21 +11004447 if (display_number >= MAX_DISPLAYS) {
4448 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004449 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004450 }
Damien Miller95def091999-11-25 00:26:21 +11004451 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004452 for (n = 0; n < num_socks; n++) {
4453 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11004454 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11004455 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004456 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004457 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004458 }
Damien Miller95def091999-11-25 00:26:21 +11004459 }
Damien Miller34132e52000-01-14 15:45:46 +11004460
Damien Miller34132e52000-01-14 15:45:46 +11004461 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004462 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004463 for (n = 0; n < num_socks; n++) {
4464 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004465 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004466 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4467 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004468 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004469 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004470 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004471 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004472 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004473
Kevin Steves366298c2001-12-19 17:58:01 +00004474 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004475 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004476 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004477}
4478
Ben Lindstrombba81212001-06-25 05:01:22 +00004479static int
Damien Miller819dbb62009-01-21 16:46:26 +11004480connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004481{
Damien Miller95def091999-11-25 00:26:21 +11004482 int sock;
4483 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004484
Damien Miller3afe3752001-12-21 12:39:51 +11004485 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4486 if (sock < 0)
4487 error("socket: %.100s", strerror(errno));
4488 memset(&addr, 0, sizeof(addr));
4489 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004490 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004491 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004492 return sock;
4493 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004494 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4495 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004496}
4497
Damien Miller819dbb62009-01-21 16:46:26 +11004498static int
4499connect_local_xsocket(u_int dnr)
4500{
4501 char buf[1024];
4502 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4503 return connect_local_xsocket_path(buf);
4504}
4505
Darren Tuckerda39b092017-03-10 13:22:32 +11004506#ifdef __APPLE__
4507static int
4508is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4509{
4510 struct stat sbuf;
4511
4512 if (strlcpy(path, display, pathlen) >= pathlen) {
4513 error("%s: display path too long", __func__);
4514 return 0;
4515 }
4516 if (display[0] != '/')
4517 return 0;
4518 if (stat(path, &sbuf) == 0) {
4519 return 1;
4520 } else {
4521 char *dot = strrchr(path, '.');
4522 if (dot != NULL) {
4523 *dot = '\0';
4524 if (stat(path, &sbuf) == 0) {
4525 return 1;
4526 }
4527 }
4528 }
4529 return 0;
4530}
4531#endif
4532
Damien Millerbd483e72000-04-30 10:00:53 +10004533int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004534x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004535{
Damien Miller57c4e872006-03-31 23:11:07 +11004536 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004537 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004538 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004539 struct addrinfo hints, *ai, *aitop;
4540 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004541 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004542
Damien Miller95def091999-11-25 00:26:21 +11004543 /* Try to open a socket for the local X server. */
4544 display = getenv("DISPLAY");
4545 if (!display) {
4546 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004547 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004548 }
Damien Miller5428f641999-11-25 11:54:57 +11004549 /*
4550 * Now we decode the value of the DISPLAY variable and make a
4551 * connection to the real X server.
4552 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004553
Damien Miller819dbb62009-01-21 16:46:26 +11004554#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004555 /* Check if display is a path to a socket (as set by launchd). */
4556 {
4557 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004558
Darren Tuckerda39b092017-03-10 13:22:32 +11004559 if (is_path_to_xsocket(display, path, sizeof(path))) {
4560 debug("x11_connect_display: $DISPLAY is launchd");
4561
4562 /* Create a socket. */
4563 sock = connect_local_xsocket_path(path);
4564 if (sock < 0)
4565 return -1;
4566
4567 /* OK, we now have a connection to the display. */
4568 return sock;
4569 }
Damien Miller819dbb62009-01-21 16:46:26 +11004570 }
4571#endif
Damien Miller5428f641999-11-25 11:54:57 +11004572 /*
4573 * Check if it is a unix domain socket. Unix domain displays are in
4574 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4575 */
Damien Miller95def091999-11-25 00:26:21 +11004576 if (strncmp(display, "unix:", 5) == 0 ||
4577 display[0] == ':') {
4578 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004579 if (sscanf(strrchr(display, ':') + 1, "%u",
4580 &display_number) != 1) {
4581 error("Could not parse display number from DISPLAY: "
4582 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004583 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004584 }
4585 /* Create a socket. */
4586 sock = connect_local_xsocket(display_number);
4587 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004588 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004589
4590 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004591 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004592 }
Damien Miller5428f641999-11-25 11:54:57 +11004593 /*
4594 * Connect to an inet socket. The DISPLAY value is supposedly
4595 * hostname:d[.s], where hostname may also be numeric IP address.
4596 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004597 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004598 cp = strchr(buf, ':');
4599 if (!cp) {
4600 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004601 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004602 }
Damien Miller95def091999-11-25 00:26:21 +11004603 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004604 /*
4605 * buf now contains the host name. But first we parse the
4606 * display number.
4607 */
Damien Miller57c4e872006-03-31 23:11:07 +11004608 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004609 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004610 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004611 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004612 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004613
Damien Miller34132e52000-01-14 15:45:46 +11004614 /* Look up the host address */
4615 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004616 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004617 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004618 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004619 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004620 error("%.100s: unknown host. (%s)", buf,
4621 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004622 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004623 }
Damien Miller34132e52000-01-14 15:45:46 +11004624 for (ai = aitop; ai; ai = ai->ai_next) {
4625 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004626 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004627 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004628 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004629 continue;
4630 }
4631 /* Connect it to the display. */
4632 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004633 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004634 6000 + display_number, strerror(errno));
4635 close(sock);
4636 continue;
4637 }
4638 /* Success */
4639 break;
Damien Miller34132e52000-01-14 15:45:46 +11004640 }
Damien Miller34132e52000-01-14 15:45:46 +11004641 freeaddrinfo(aitop);
4642 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004643 error("connect %.100s port %u: %.100s", buf,
4644 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004645 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004646 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004647 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004648 return sock;
4649}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004650
Damien Millerbd483e72000-04-30 10:00:53 +10004651/*
Damien Miller5428f641999-11-25 11:54:57 +11004652 * Requests forwarding of X11 connections, generates fake authentication
4653 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004654 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004655 */
Damien Miller4af51302000-04-16 11:18:38 +10004656void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004657x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4658 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004659{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004660 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004661 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004662 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004663 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004664 char *new_data;
4665 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004666
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004667 if (sc->x11_saved_display == NULL)
4668 sc->x11_saved_display = xstrdup(disp);
4669 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004670 error("x11_request_forwarding_with_spoofing: different "
4671 "$DISPLAY already forwarded");
4672 return;
4673 }
4674
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004675 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004676 if (cp)
4677 cp = strchr(cp, '.');
4678 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004679 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004680 else
4681 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004682
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004683 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004684 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004685 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004686
4687 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004688 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004689 for (i = 0; i < data_len; i++) {
4690 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4691 fatal("x11_request_forwarding: bad "
4692 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004693 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004694 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004695 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004696
4697 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004698 sc->x11_fake_data = xmalloc(data_len);
4699 arc4random_buf(sc->x11_fake_data, data_len);
4700 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004701 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004702
Damien Miller95def091999-11-25 00:26:21 +11004703 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004704 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004705
Damien Miller95def091999-11-25 00:26:21 +11004706 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004707 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4708 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4709 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4710 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4711 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4712 (r = sshpkt_send(ssh)) != 0 ||
4713 (r = ssh_packet_write_wait(ssh)) != 0)
4714 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004715 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004716}