blob: 8ef37c45348b7d4f89ea30841f52809e6df467a8 [file] [log] [blame]
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001/* $OpenBSD: channels.c,v 1.372 2017/09/21 19:16:53 markus 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
Damien Miller5e7fd072005-11-05 14:53:39 +11001671static void
1672channel_set_reuseaddr(int fd)
1673{
1674 int on = 1;
1675
1676 /*
1677 * Set socket options.
1678 * Allow local port reuse in TIME_WAIT.
1679 */
1680 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1681 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1682}
1683
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001684void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001685channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001686{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001687 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001688}
1689
Damien Millerb38eff82000-04-01 11:09:21 +10001690/*
1691 * This socket is listening for connections to a forwarded TCP/IP port.
1692 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001693static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001694channel_post_port_listener(struct ssh *ssh, Channel *c,
1695 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001696{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001697 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001698 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001699 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001700 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001701 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001702
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001703 if (!FD_ISSET(c->sock, readset))
1704 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001705
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001706 debug("Connection to port %d forwarding to %.100s port %d requested.",
1707 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001708
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001709 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1710 nextstate = SSH_CHANNEL_OPENING;
1711 rtype = "forwarded-tcpip";
1712 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1713 nextstate = SSH_CHANNEL_OPENING;
1714 rtype = "forwarded-streamlocal@openssh.com";
1715 } else if (c->host_port == PORT_STREAMLOCAL) {
1716 nextstate = SSH_CHANNEL_OPENING;
1717 rtype = "direct-streamlocal@openssh.com";
1718 } else if (c->host_port == 0) {
1719 nextstate = SSH_CHANNEL_DYNAMIC;
1720 rtype = "dynamic-tcpip";
1721 } else {
1722 nextstate = SSH_CHANNEL_OPENING;
1723 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001724 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001725
1726 addrlen = sizeof(addr);
1727 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1728 if (newsock < 0) {
1729 if (errno != EINTR && errno != EWOULDBLOCK &&
1730 errno != ECONNABORTED)
1731 error("accept: %.100s", strerror(errno));
1732 if (errno == EMFILE || errno == ENFILE)
1733 c->notbefore = monotime() + 1;
1734 return;
1735 }
1736 if (c->host_port != PORT_STREAMLOCAL)
1737 set_nodelay(newsock);
1738 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1739 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1740 nc->listening_port = c->listening_port;
1741 nc->host_port = c->host_port;
1742 if (c->path != NULL)
1743 nc->path = xstrdup(c->path);
1744
1745 if (nextstate != SSH_CHANNEL_DYNAMIC)
1746 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001747}
1748
1749/*
1750 * This is the authentication agent socket listening for connections from
1751 * clients.
1752 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001754channel_post_auth_listener(struct ssh *ssh, Channel *c,
1755 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001756{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001757 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001758 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001759 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001760 socklen_t addrlen;
1761
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001762 if (!FD_ISSET(c->sock, readset))
1763 return;
1764
1765 addrlen = sizeof(addr);
1766 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1767 if (newsock < 0) {
1768 error("accept from auth socket: %.100s", strerror(errno));
1769 if (errno == EMFILE || errno == ENFILE)
1770 c->notbefore = monotime() + 1;
1771 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001772 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001773 nc = channel_new(ssh, "accepted auth socket",
1774 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1775 c->local_window_max, c->local_maxpacket,
1776 0, "accepted auth socket", 1);
1777 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1778 if ((r = sshpkt_send(ssh)) != 0)
1779 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001780}
1781
Ben Lindstrombba81212001-06-25 05:01:22 +00001782static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001783channel_post_connecting(struct ssh *ssh, Channel *c,
1784 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001785{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001786 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001787 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001788
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001789 if (!FD_ISSET(c->sock, writeset))
1790 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001791 if (!c->have_remote_id)
1792 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001793 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1794 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001795 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1796 err = errno;
1797 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001798 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001799 if (err == 0) {
1800 debug("channel %d: connected to %s port %d",
1801 c->self, c->connect_ctx.host, c->connect_ctx.port);
1802 channel_connect_ctx_free(&c->connect_ctx);
1803 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001804 if (isopen) {
1805 /* no message necessary */
1806 } else {
1807 if ((r = sshpkt_start(ssh,
1808 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1809 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1810 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1811 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1812 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1813 != 0)
1814 fatal("%s: channel %i: confirm: %s", __func__,
1815 c->self, ssh_err(r));
1816 if ((r = sshpkt_send(ssh)) != 0)
1817 fatal("%s: channel %i: %s", __func__, c->self,
1818 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001819 }
1820 } else {
1821 debug("channel %d: connection failed: %s",
1822 c->self, strerror(err));
1823 /* Try next address, if any */
1824 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1825 close(c->sock);
1826 c->sock = c->rfd = c->wfd = sock;
1827 channel_find_maxfd(ssh->chanctxt);
1828 return;
1829 }
1830 /* Exhausted all addresses */
1831 error("connect_to %.100s port %d: failed.",
1832 c->connect_ctx.host, c->connect_ctx.port);
1833 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001834 if (isopen) {
1835 rdynamic_close(ssh, c);
1836 } else {
1837 if ((r = sshpkt_start(ssh,
1838 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1839 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1840 (r = sshpkt_put_u32(ssh, SSH2_OPEN_CONNECT_FAILED))
1841 != 0)
1842 fatal("%s: channel %i: failure: %s", __func__,
1843 c->self, ssh_err(r));
1844 if ((datafellows & SSH_BUG_OPENFAILURE) == 0 &&
1845 ((r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1846 (r = sshpkt_put_cstring(ssh, "")) != 0))
1847 fatal("%s: channel %i: failure: %s", __func__,
1848 c->self, ssh_err(r));
1849 if ((r = sshpkt_send(ssh)) != 0)
1850 fatal("%s: channel %i: %s", __func__, c->self,
1851 ssh_err(r));
1852 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001853 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001854 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001855}
1856
Ben Lindstrombba81212001-06-25 05:01:22 +00001857static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001858channel_handle_rfd(struct ssh *ssh, Channel *c,
1859 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001860{
Darren Tucker11327cc2005-03-14 23:22:25 +11001861 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001862 ssize_t len;
1863 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001864
Damien Miller835284b2007-06-11 13:03:16 +10001865 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001866
1867 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1868 return 1;
1869
1870 errno = 0;
1871 len = read(c->rfd, buf, sizeof(buf));
1872 if (len < 0 && (errno == EINTR ||
1873 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1874 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001875#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001876 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001877#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001878 if ((!c->isatty && len <= 0) ||
1879 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001880#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001881 debug2("channel %d: read<=0 rfd %d len %zd",
1882 c->self, c->rfd, len);
1883 if (c->type != SSH_CHANNEL_OPEN) {
1884 debug2("channel %d: not open", c->self);
1885 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001886 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001887 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001888 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001889 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001890 return -1;
1891 }
1892 if (c->input_filter != NULL) {
1893 if (c->input_filter(ssh, c, buf, len) == -1) {
1894 debug2("channel %d: filter stops", c->self);
1895 chan_read_failed(ssh, c);
1896 }
1897 } else if (c->datagram) {
1898 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1899 fatal("%s: channel %d: put datagram: %s", __func__,
1900 c->self, ssh_err(r));
1901 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1902 fatal("%s: channel %d: put data: %s", __func__,
1903 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001904 }
1905 return 1;
1906}
Damien Miller4f7becb2006-03-26 14:10:14 +11001907
Ben Lindstrombba81212001-06-25 05:01:22 +00001908static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001909channel_handle_wfd(struct ssh *ssh, Channel *c,
1910 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001911{
Ben Lindstrome229b252001-03-05 06:28:06 +00001912 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001913 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1914 size_t dlen, olen = 0;
1915 int r, len;
1916
1917 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
1918 sshbuf_len(c->output) == 0)
1919 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001920
1921 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001922 olen = sshbuf_len(c->output);
1923 if (c->output_filter != NULL) {
1924 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
1925 debug2("channel %d: filter stops", c->self);
1926 if (c->type != SSH_CHANNEL_OPEN)
1927 chan_mark_dead(ssh, c);
1928 else
1929 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001930 return -1;
1931 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001932 } else if (c->datagram) {
1933 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
1934 fatal("%s: channel %d: get datagram: %s", __func__,
1935 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00001936 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001937 } else {
1938 buf = data = sshbuf_mutable_ptr(c->output);
1939 dlen = sshbuf_len(c->output);
1940 }
1941
1942 if (c->datagram) {
1943 /* ignore truncated writes, datagrams might get lost */
1944 len = write(c->wfd, data, dlen);
1945 free(data);
1946 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1947 errno == EWOULDBLOCK))
1948 return 1;
1949 if (len <= 0)
1950 goto write_fail;
1951 goto out;
1952 }
1953
1954#ifdef _AIX
1955 /* XXX: Later AIX versions can't push as much data to tty */
1956 if (c->wfd_isatty)
1957 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10001958#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001959
1960 len = write(c->wfd, buf, dlen);
1961 if (len < 0 &&
1962 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
1963 return 1;
1964 if (len <= 0) {
1965 write_fail:
1966 if (c->type != SSH_CHANNEL_OPEN) {
1967 debug2("channel %d: not open", c->self);
1968 chan_mark_dead(ssh, c);
1969 return -1;
1970 } else {
1971 chan_write_failed(ssh, c);
1972 }
1973 return -1;
1974 }
1975#ifndef BROKEN_TCGETATTR_ICANON
1976 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
1977 if (tcgetattr(c->wfd, &tio) == 0 &&
1978 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1979 /*
1980 * Simulate echo to reduce the impact of
1981 * traffic analysis. We need to match the
1982 * size of a SSH2_MSG_CHANNEL_DATA message
1983 * (4 byte channel id + buf)
1984 */
1985 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
1986 (r = sshpkt_send(ssh)) != 0)
1987 fatal("%s: channel %d: ignore: %s",
1988 __func__, c->self, ssh_err(r));
1989 }
1990 }
1991#endif /* BROKEN_TCGETATTR_ICANON */
1992 if ((r = sshbuf_consume(c->output, len)) != 0) {
1993 fatal("%s: channel %d: consume: %s",
1994 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10001995 }
Damien Miller7d457182010-08-05 23:09:48 +10001996 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001997 c->local_consumed += olen - sshbuf_len(c->output);
1998
Damien Miller33b13562000-04-04 14:38:59 +10001999 return 1;
2000}
Damien Miller4f7becb2006-03-26 14:10:14 +11002001
Ben Lindstrombba81212001-06-25 05:01:22 +00002002static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002003channel_handle_efd_write(struct ssh *ssh, Channel *c,
2004 fd_set *readset, fd_set *writeset)
2005{
2006 int r;
2007 ssize_t len;
2008
2009 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2010 return 1;
2011
2012 len = write(c->efd, sshbuf_ptr(c->extended),
2013 sshbuf_len(c->extended));
2014 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
2015 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2016 errno == EWOULDBLOCK))
2017 return 1;
2018 if (len <= 0) {
2019 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2020 channel_close_fd(ssh, &c->efd);
2021 } else {
2022 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2023 fatal("%s: channel %d: consume: %s",
2024 __func__, c->self, ssh_err(r));
2025 }
2026 c->local_consumed += len;
2027 }
2028 return 1;
2029}
2030
2031static int
2032channel_handle_efd_read(struct ssh *ssh, Channel *c,
2033 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002034{
Darren Tucker11327cc2005-03-14 23:22:25 +11002035 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002036 int r;
2037 ssize_t len;
Damien Miller33b13562000-04-04 14:38:59 +10002038
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002039 if (!c->detach_close && !FD_ISSET(c->efd, readset))
2040 return 1;
2041
2042 len = read(c->efd, buf, sizeof(buf));
2043 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
2044 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
2045 errno == EWOULDBLOCK) && !c->detach_close)))
2046 return 1;
2047 if (len <= 0) {
2048 debug2("channel %d: closing read-efd %d",
2049 c->self, c->efd);
2050 channel_close_fd(ssh, &c->efd);
2051 } else {
2052 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2053 debug3("channel %d: discard efd",
2054 c->self);
2055 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2056 fatal("%s: channel %d: append: %s",
2057 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002058 }
2059 }
2060 return 1;
2061}
Damien Miller4f7becb2006-03-26 14:10:14 +11002062
Damien Miller0e220db2004-06-15 10:34:08 +10002063static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002064channel_handle_efd(struct ssh *ssh, Channel *c,
2065 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002066{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002067 if (c->efd == -1)
2068 return 1;
2069
2070 /** XXX handle drain efd, too */
2071
2072 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2073 return channel_handle_efd_write(ssh, c, readset, writeset);
2074 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2075 c->extended_usage == CHAN_EXTENDED_IGNORE)
2076 return channel_handle_efd_read(ssh, c, readset, writeset);
2077
2078 return 1;
2079}
2080
2081static int
2082channel_check_window(struct ssh *ssh, Channel *c)
2083{
2084 int r;
2085
Ben Lindstromb3921512001-04-11 15:57:50 +00002086 if (c->type == SSH_CHANNEL_OPEN &&
2087 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002088 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002089 c->local_maxpacket*3) ||
2090 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002091 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002092 if (!c->have_remote_id)
2093 fatal(":%s: channel %d: no remote id",
2094 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002095 if ((r = sshpkt_start(ssh,
2096 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2097 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2098 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2099 (r = sshpkt_send(ssh)) != 0) {
2100 fatal("%s: channel %i: %s", __func__,
2101 c->self, ssh_err(r));
2102 }
Damien Millerd3444942000-09-30 14:20:03 +11002103 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002104 c->self, c->local_window,
2105 c->local_consumed);
2106 c->local_window += c->local_consumed;
2107 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002108 }
2109 return 1;
2110}
2111
Ben Lindstrombba81212001-06-25 05:01:22 +00002112static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002113channel_post_open(struct ssh *ssh, Channel *c,
2114 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002115{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002116 channel_handle_rfd(ssh, c, readset, writeset);
2117 channel_handle_wfd(ssh, c, readset, writeset);
2118 channel_handle_efd(ssh, c, readset, writeset);
2119 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002120}
2121
Damien Millere1537f92010-01-26 13:26:22 +11002122static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002123read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002124{
2125 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002126 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002127 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002128 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002129
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002130 if (sshbuf_len(c->input) < need) {
2131 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002132 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002133 if (len < 0 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002134 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002135 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002136 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002137 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002138 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002139 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002140 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2141 fatal("%s: channel %d: append: %s",
2142 __func__, c->self, ssh_err(r));
2143 }
Damien Millere1537f92010-01-26 13:26:22 +11002144 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002145 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002146}
2147
2148static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002149channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2150 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002151{
2152 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002153
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002154 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2155 return;
2156 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2157 return;
2158 if (c->mux_pause)
2159 return;
2160
2161 /*
2162 * Don't not read past the precise end of packets to
2163 * avoid disrupting fd passing.
2164 */
2165 if (read_mux(ssh, c, 4) < 4) /* read header */
2166 return;
2167 /* XXX sshbuf_peek_u32 */
2168 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002169#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002170 if (need > CHANNEL_MUX_MAX_PACKET) {
2171 debug2("channel %d: packet too big %u > %u",
2172 c->self, CHANNEL_MUX_MAX_PACKET, need);
2173 chan_rcvd_oclose(ssh, c);
2174 return;
Damien Millere1537f92010-01-26 13:26:22 +11002175 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002176 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2177 return;
2178 if (c->mux_rcb(ssh, c) != 0) {
2179 debug("channel %d: mux_rcb failed", c->self);
2180 chan_mark_dead(ssh, c);
2181 return;
Damien Millere1537f92010-01-26 13:26:22 +11002182 }
2183}
2184
2185static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002186channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2187 fd_set *readset, fd_set *writeset)
2188{
2189 ssize_t len;
2190 int r;
2191
2192 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2193 sshbuf_len(c->output) == 0)
2194 return;
2195
2196 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
2197 if (len < 0 && (errno == EINTR || errno == EAGAIN))
2198 return;
2199 if (len <= 0) {
2200 chan_mark_dead(ssh, c);
2201 return;
2202 }
2203 if ((r = sshbuf_consume(c->output, len)) != 0)
2204 fatal("%s: channel %d: consume: %s", __func__,
2205 c->self, ssh_err(r));
2206}
2207
2208static void
2209channel_post_mux_client(struct ssh *ssh, Channel *c,
2210 fd_set *readset, fd_set *writeset)
2211{
2212 channel_post_mux_client_read(ssh, c, readset, writeset);
2213 channel_post_mux_client_write(ssh, c, readset, writeset);
2214}
2215
2216static void
2217channel_post_mux_listener(struct ssh *ssh, Channel *c,
2218 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002219{
2220 Channel *nc;
2221 struct sockaddr_storage addr;
2222 socklen_t addrlen;
2223 int newsock;
2224 uid_t euid;
2225 gid_t egid;
2226
2227 if (!FD_ISSET(c->sock, readset))
2228 return;
2229
2230 debug("multiplexing control connection");
2231
2232 /*
2233 * Accept connection on control socket
2234 */
2235 memset(&addr, 0, sizeof(addr));
2236 addrlen = sizeof(addr);
2237 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2238 &addrlen)) == -1) {
2239 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002240 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002241 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002242 return;
2243 }
2244
2245 if (getpeereid(newsock, &euid, &egid) < 0) {
2246 error("%s getpeereid failed: %s", __func__,
2247 strerror(errno));
2248 close(newsock);
2249 return;
2250 }
2251 if ((euid != 0) && (getuid() != euid)) {
2252 error("multiplex uid mismatch: peer euid %u != uid %u",
2253 (u_int)euid, (u_int)getuid());
2254 close(newsock);
2255 return;
2256 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002257 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002258 newsock, newsock, -1, c->local_window_max,
2259 c->local_maxpacket, 0, "mux-control", 1);
2260 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002261 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002262 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002263 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002264 /* mux state transitions must not elicit protocol messages */
2265 nc->flags |= CHAN_LOCAL;
2266}
2267
Ben Lindstrombba81212001-06-25 05:01:22 +00002268static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002269channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002270{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002271 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002272
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002273 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2274 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2275 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002276
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002277 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2278 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2279 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2280 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2281 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2282 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2283 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2284 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2285 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2286 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002287 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002288 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2289 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2290
2291 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2292 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2293 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2294 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2295 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2296 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2297 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2298 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2299 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002300 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002301 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2302 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2303
2304 sc->channel_pre = pre;
2305 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002306}
2307
Damien Miller3ec27592001-10-12 11:35:04 +10002308/* gc dead channels */
2309static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002310channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002311{
2312 if (c == NULL)
2313 return;
2314 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002315 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002316 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002317 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002318 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002319 /* if we still have a callback */
2320 if (c->detach_user != NULL)
2321 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002322 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002323 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002324 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002325 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002326 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002327 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002328}
2329
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002330enum channel_table { CHAN_PRE, CHAN_POST };
2331
Ben Lindstrombba81212001-06-25 05:01:22 +00002332static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002333channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002334 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002335{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002336 struct ssh_channels *sc = ssh->chanctxt;
2337 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002338 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002339 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002340 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002341
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002342 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002343 if (unpause_secs != NULL)
2344 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002345 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2346 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002347 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002348 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002349 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002350 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002351 c->delayed = 0;
2352 else
2353 continue;
2354 }
Damien Millera6508752012-04-22 11:21:10 +10002355 if (ftab[c->type] != NULL) {
2356 /*
2357 * Run handlers that are not paused.
2358 */
2359 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002360 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002361 else if (unpause_secs != NULL) {
2362 /*
2363 * Collect the time that the earliest
2364 * channel comes off pause.
2365 */
2366 debug3("%s: chan %d: skip for %d more seconds",
2367 __func__, c->self,
2368 (int)(c->notbefore - now));
2369 if (*unpause_secs == 0 ||
2370 (c->notbefore - now) < *unpause_secs)
2371 *unpause_secs = c->notbefore - now;
2372 }
2373 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002374 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002375 }
Damien Millera6508752012-04-22 11:21:10 +10002376 if (unpause_secs != NULL && *unpause_secs != 0)
2377 debug3("%s: first channel unpauses in %d seconds",
2378 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002379}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002380
Ben Lindstrome9c99912001-06-09 00:41:05 +00002381/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002382 * Create sockets before allocating the select bitmasks.
2383 * This is necessary for things that need to happen after reading
2384 * the network-input but before channel_prepare_select().
2385 */
2386static void
2387channel_before_prepare_select(struct ssh *ssh)
2388{
2389 struct ssh_channels *sc = ssh->chanctxt;
2390 Channel *c;
2391 u_int i, oalloc;
2392
2393 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2394 c = sc->channels[i];
2395 if (c == NULL)
2396 continue;
2397 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2398 channel_before_prepare_select_rdynamic(ssh, c);
2399 }
2400}
2401
2402/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002403 * Allocate/update select bitmasks and add any bits relevant to channels in
2404 * select bitmasks.
2405 */
Damien Miller4af51302000-04-16 11:18:38 +10002406void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002407channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2408 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002409{
Damien Miller36812092006-03-26 14:22:47 +11002410 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002411
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002412 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2413
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002414 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002415
Damien Miller36812092006-03-26 14:22:47 +11002416 nfdset = howmany(n+1, NFDBITS);
2417 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002418 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002419 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2420 sz = nfdset * sizeof(fd_mask);
2421
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002422 /* perhaps check sz < nalloc/2 and shrink? */
2423 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002424 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2425 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002426 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002427 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002428 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002429 memset(*readsetp, 0, sz);
2430 memset(*writesetp, 0, sz);
2431
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002432 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002433 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002434 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002435}
2436
Ben Lindstrome9c99912001-06-09 00:41:05 +00002437/*
2438 * After select, perform any appropriate operations for channels which have
2439 * events pending.
2440 */
Damien Miller4af51302000-04-16 11:18:38 +10002441void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002442channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002443{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002444 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002445}
2446
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002447/*
2448 * Enqueue data for channels with open or draining c->input.
2449 */
2450static void
2451channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2452{
2453 size_t len, dlen;
2454 int r;
2455
2456 if ((len = sshbuf_len(c->input)) == 0) {
2457 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2458 /*
2459 * input-buffer is empty and read-socket shutdown:
2460 * tell peer, that we will not send more data:
2461 * send IEOF.
2462 * hack for extended data: delay EOF if EFD still
2463 * in use.
2464 */
2465 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2466 debug2("channel %d: "
2467 "ibuf_empty delayed efd %d/(%zu)",
2468 c->self, c->efd, sshbuf_len(c->extended));
2469 else
2470 chan_ibuf_empty(ssh, c);
2471 }
2472 return;
2473 }
2474
djm@openbsd.org9f532292017-09-12 06:35:31 +00002475 if (!c->have_remote_id)
2476 fatal(":%s: channel %d: no remote id", __func__, c->self);
2477
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002478 if (c->datagram) {
2479 /* Check datagram will fit; drop if not */
2480 if ((r = sshbuf_peek_string_direct(c->input, NULL, &dlen)) != 0)
2481 fatal("%s: channel %d: peek datagram: %s", __func__,
2482 c->self, ssh_err(r));
2483 /*
2484 * XXX this does tail-drop on the datagram queue which is
2485 * usually suboptimal compared to head-drop. Better to have
2486 * backpressure at read time? (i.e. read + discard)
2487 */
2488 if (dlen > c->remote_window || dlen > c->remote_maxpacket) {
2489 debug("channel %d: datagram too big", c->self);
2490 return;
2491 }
2492 /* Enqueue it */
2493 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2494 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2495 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
2496 (r = sshpkt_send(ssh)) != 0) {
2497 fatal("%s: channel %i: datagram: %s", __func__,
2498 c->self, ssh_err(r));
2499 }
2500 c->remote_window -= dlen;
2501 return;
2502 }
2503
2504 /* Enqueue packet for buffered data. */
2505 if (len > c->remote_window)
2506 len = c->remote_window;
2507 if (len > c->remote_maxpacket)
2508 len = c->remote_maxpacket;
2509 if (len == 0)
2510 return;
2511 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2512 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2513 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2514 (r = sshpkt_send(ssh)) != 0) {
2515 fatal("%s: channel %i: data: %s", __func__,
2516 c->self, ssh_err(r));
2517 }
2518 if ((r = sshbuf_consume(c->input, len)) != 0)
2519 fatal("%s: channel %i: consume: %s", __func__,
2520 c->self, ssh_err(r));
2521 c->remote_window -= len;
2522}
2523
2524/*
2525 * Enqueue data for channels with open c->extended in read mode.
2526 */
2527static void
2528channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2529{
2530 size_t len;
2531 int r;
2532
2533 if ((len = sshbuf_len(c->extended)) == 0)
2534 return;
2535
2536 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2537 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2538 if (len > c->remote_window)
2539 len = c->remote_window;
2540 if (len > c->remote_maxpacket)
2541 len = c->remote_maxpacket;
2542 if (len == 0)
2543 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002544 if (!c->have_remote_id)
2545 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002546 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2547 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2548 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2549 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2550 (r = sshpkt_send(ssh)) != 0) {
2551 fatal("%s: channel %i: data: %s", __func__,
2552 c->self, ssh_err(r));
2553 }
2554 if ((r = sshbuf_consume(c->extended, len)) != 0)
2555 fatal("%s: channel %i: consume: %s", __func__,
2556 c->self, ssh_err(r));
2557 c->remote_window -= len;
2558 debug2("channel %d: sent ext data %zu", c->self, len);
2559}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002560
Damien Miller5e953212001-01-30 09:14:00 +11002561/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002562void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002563channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002564{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002565 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002566 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002567 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002568
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002569 for (i = 0; i < sc->channels_alloc; i++) {
2570 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002571 if (c == NULL)
2572 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002573
Ben Lindstrome9c99912001-06-09 00:41:05 +00002574 /*
2575 * We are only interested in channels that can have buffered
2576 * incoming data.
2577 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002578 if (c->type != SSH_CHANNEL_OPEN)
2579 continue;
2580 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002581 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002582 debug3("channel %d: will not send data after close",
2583 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002584 continue;
2585 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002586
Damien Miller95def091999-11-25 00:26:21 +11002587 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002588 if (c->istate == CHAN_INPUT_OPEN ||
2589 c->istate == CHAN_INPUT_WAIT_DRAIN)
2590 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002591 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002592 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002593 c->extended_usage == CHAN_EXTENDED_READ)
2594 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002595 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002596}
2597
markus@openbsd.org8d057842016-09-30 09:19:13 +00002598/* -- mux proxy support */
2599
2600/*
2601 * When multiplexing channel messages for mux clients we have to deal
2602 * with downstream messages from the mux client and upstream messages
2603 * from the ssh server:
2604 * 1) Handling downstream messages is straightforward and happens
2605 * in channel_proxy_downstream():
2606 * - We forward all messages (mostly) unmodified to the server.
2607 * - However, in order to route messages from upstream to the correct
2608 * downstream client, we have to replace the channel IDs used by the
2609 * mux clients with a unique channel ID because the mux clients might
2610 * use conflicting channel IDs.
2611 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2612 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2613 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2614 * with the newly allocated channel ID.
2615 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
2616 * channels and procesed by channel_proxy_upstream(). The local channel ID
2617 * is then translated back to the original mux client ID.
2618 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2619 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2620 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2621 * downstream mux client are removed.
2622 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2623 * requires more work, because they are not addressed to a specific
2624 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2625 * out whether the request is addressed to the local client or a
2626 * specific downstream client based on the listen-address/port.
2627 * 6) Agent and X11-Forwarding have a similar problem and are currenly
2628 * not supported as the matching session/channel cannot be identified
2629 * easily.
2630 */
2631
2632/*
2633 * receive packets from downstream mux clients:
2634 * channel callback fired on read from mux client, creates
2635 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2636 * on channel creation.
2637 */
2638int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002639channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002640{
2641 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002642 struct sshbuf *original = NULL, *modified = NULL;
2643 const u_char *cp;
2644 char *ctype = NULL, *listen_host = NULL;
2645 u_char type;
2646 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002647 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002648 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002649
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002650 /* sshbuf_dump(downstream->input, stderr); */
2651 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002652 != 0) {
2653 error("%s: malformed message: %s", __func__, ssh_err(r));
2654 return -1;
2655 }
2656 if (have < 2) {
2657 error("%s: short message", __func__);
2658 return -1;
2659 }
2660 type = cp[1];
2661 /* skip padlen + type */
2662 cp += 2;
2663 have -= 2;
2664 if (ssh_packet_log_type(type))
2665 debug3("%s: channel %u: down->up: type %u", __func__,
2666 downstream->self, type);
2667
2668 switch (type) {
2669 case SSH2_MSG_CHANNEL_OPEN:
2670 if ((original = sshbuf_from(cp, have)) == NULL ||
2671 (modified = sshbuf_new()) == NULL) {
2672 error("%s: alloc", __func__);
2673 goto out;
2674 }
2675 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2676 (r = sshbuf_get_u32(original, &id)) != 0) {
2677 error("%s: parse error %s", __func__, ssh_err(r));
2678 goto out;
2679 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002680 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002681 -1, -1, -1, 0, 0, 0, ctype, 1);
2682 c->mux_ctx = downstream; /* point to mux client */
2683 c->mux_downstream_id = id; /* original downstream id */
2684 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2685 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2686 (r = sshbuf_putb(modified, original)) != 0) {
2687 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002688 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002689 goto out;
2690 }
2691 break;
2692 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2693 /*
2694 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2695 * need to parse 'remote_id' instead of 'ctype'.
2696 */
2697 if ((original = sshbuf_from(cp, have)) == NULL ||
2698 (modified = sshbuf_new()) == NULL) {
2699 error("%s: alloc", __func__);
2700 goto out;
2701 }
2702 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2703 (r = sshbuf_get_u32(original, &id)) != 0) {
2704 error("%s: parse error %s", __func__, ssh_err(r));
2705 goto out;
2706 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002707 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002708 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2709 c->mux_ctx = downstream; /* point to mux client */
2710 c->mux_downstream_id = id;
2711 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002712 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002713 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2714 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2715 (r = sshbuf_putb(modified, original)) != 0) {
2716 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002717 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002718 goto out;
2719 }
2720 break;
2721 case SSH2_MSG_GLOBAL_REQUEST:
2722 if ((original = sshbuf_from(cp, have)) == NULL) {
2723 error("%s: alloc", __func__);
2724 goto out;
2725 }
2726 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2727 error("%s: parse error %s", __func__, ssh_err(r));
2728 goto out;
2729 }
2730 if (strcmp(ctype, "tcpip-forward") != 0) {
2731 error("%s: unsupported request %s", __func__, ctype);
2732 goto out;
2733 }
2734 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2735 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2736 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2737 error("%s: parse error %s", __func__, ssh_err(r));
2738 goto out;
2739 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002740 if (listen_port > 65535) {
2741 error("%s: tcpip-forward for %s: bad port %u",
2742 __func__, listen_host, listen_port);
2743 goto out;
2744 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002745 /* Record that connection to this host/port is permitted. */
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002746 fwd_perm_list_add(ssh, FWDPERM_USER, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002747 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002748 listen_host = NULL;
2749 break;
2750 case SSH2_MSG_CHANNEL_CLOSE:
2751 if (have < 4)
2752 break;
2753 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002754 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002755 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002756 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002757 else
2758 c->flags |= CHAN_CLOSE_SENT;
2759 }
2760 break;
2761 }
2762 if (modified) {
2763 if ((r = sshpkt_start(ssh, type)) != 0 ||
2764 (r = sshpkt_putb(ssh, modified)) != 0 ||
2765 (r = sshpkt_send(ssh)) != 0) {
2766 error("%s: send %s", __func__, ssh_err(r));
2767 goto out;
2768 }
2769 } else {
2770 if ((r = sshpkt_start(ssh, type)) != 0 ||
2771 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2772 (r = sshpkt_send(ssh)) != 0) {
2773 error("%s: send %s", __func__, ssh_err(r));
2774 goto out;
2775 }
2776 }
2777 ret = 0;
2778 out:
2779 free(ctype);
2780 free(listen_host);
2781 sshbuf_free(original);
2782 sshbuf_free(modified);
2783 return ret;
2784}
2785
2786/*
2787 * receive packets from upstream server and de-multiplex packets
2788 * to correct downstream:
2789 * implemented as a helper for channel input handlers,
2790 * replaces local (proxy) channel ID with downstream channel ID.
2791 */
2792int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002793channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002794{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002795 struct sshbuf *b = NULL;
2796 Channel *downstream;
2797 const u_char *cp = NULL;
2798 size_t len;
2799 int r;
2800
2801 /*
2802 * When receiving packets from the peer we need to check whether we
2803 * need to forward the packets to the mux client. In this case we
2804 * restore the orignal channel id and keep track of CLOSE messages,
2805 * so we can cleanup the channel.
2806 */
2807 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2808 return 0;
2809 if ((downstream = c->mux_ctx) == NULL)
2810 return 0;
2811 switch (type) {
2812 case SSH2_MSG_CHANNEL_CLOSE:
2813 case SSH2_MSG_CHANNEL_DATA:
2814 case SSH2_MSG_CHANNEL_EOF:
2815 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2816 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2817 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2818 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2819 case SSH2_MSG_CHANNEL_SUCCESS:
2820 case SSH2_MSG_CHANNEL_FAILURE:
2821 case SSH2_MSG_CHANNEL_REQUEST:
2822 break;
2823 default:
2824 debug2("%s: channel %u: unsupported type %u", __func__,
2825 c->self, type);
2826 return 0;
2827 }
2828 if ((b = sshbuf_new()) == NULL) {
2829 error("%s: alloc reply", __func__);
2830 goto out;
2831 }
2832 /* get remaining payload (after id) */
2833 cp = sshpkt_ptr(ssh, &len);
2834 if (cp == NULL) {
2835 error("%s: no packet", __func__);
2836 goto out;
2837 }
2838 /* translate id and send to muxclient */
2839 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2840 (r = sshbuf_put_u8(b, type)) != 0 ||
2841 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2842 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002843 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002844 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2845 goto out;
2846 }
2847 /* sshbuf_dump(b, stderr); */
2848 if (ssh_packet_log_type(type))
2849 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2850 type);
2851 out:
2852 /* update state */
2853 switch (type) {
2854 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2855 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002856 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002857 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002858 c->have_remote_id = 1;
2859 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002860 break;
2861 case SSH2_MSG_CHANNEL_CLOSE:
2862 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002863 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002864 else
2865 c->flags |= CHAN_CLOSE_RCVD;
2866 break;
2867 }
2868 sshbuf_free(b);
2869 return 1;
2870}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002871
2872/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002873
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002874/* Parse a channel ID from the current packet */
2875static int
2876channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2877{
2878 u_int32_t id;
2879 int r;
2880
2881 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2882 error("%s: parse id: %s", where, ssh_err(r));
2883 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2884 }
2885 if (id > INT_MAX) {
2886 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2887 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2888 }
2889 return (int)id;
2890}
2891
2892/* Lookup a channel from an ID in the current packet */
2893static Channel *
2894channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2895{
2896 int id = channel_parse_id(ssh, where, what);
2897 Channel *c;
2898
2899 if ((c = channel_lookup(ssh, id)) == NULL) {
2900 ssh_packet_disconnect(ssh,
2901 "%s packet referred to nonexistent channel %d", what, id);
2902 }
2903 return c;
2904}
2905
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002906int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002907channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002908{
Damien Miller633de332014-05-15 13:48:26 +10002909 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002910 size_t data_len, win_len;
2911 Channel *c = channel_from_packet_id(ssh, __func__, "data");
2912 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002913
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002914 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002915 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002916
Damien Miller95def091999-11-25 00:26:21 +11002917 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002918 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002919 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
2920 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10002921 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002922 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002923
Damien Miller95def091999-11-25 00:26:21 +11002924 /* Get the data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002925 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0)
2926 fatal("%s: channel %d: get data: %s", __func__,
2927 c->self, ssh_err(r));
2928 ssh_packet_check_eom(ssh);
2929
Damien Miller7d457182010-08-05 23:09:48 +10002930 win_len = data_len;
2931 if (c->datagram)
2932 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002933
Damien Millera04ad492004-01-21 11:02:09 +11002934 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002935 * The sending side reduces its window as it sends data, so we
2936 * must 'fake' consumption of the data in order to ensure that window
2937 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11002938 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002939 if (c->ostate != CHAN_OUTPUT_OPEN) {
2940 c->local_window -= win_len;
2941 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002942 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002943 }
2944
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002945 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002946 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002947 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002948 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002949 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002950 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002951 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002952 c->self, win_len, c->local_window);
2953 return 0;
2954 }
2955 c->local_window -= win_len;
2956
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002957 if (c->datagram) {
2958 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
2959 fatal("%s: channel %d: append datagram: %s",
2960 __func__, c->self, ssh_err(r));
2961 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
2962 fatal("%s: channel %d: append data: %s",
2963 __func__, c->self, ssh_err(r));
2964
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002965 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002966}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002967
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002968int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002969channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10002970{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002971 const u_char *data;
2972 size_t data_len;
2973 u_int32_t tcode;
2974 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
2975 int r;
Damien Miller33b13562000-04-04 14:38:59 +10002976
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002977 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002978 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002979 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002980 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002981 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002982 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002983 if (c->flags & CHAN_EOF_RCVD) {
2984 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002985 debug("channel %d: accepting ext data after eof",
2986 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00002987 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002988 ssh_packet_disconnect(ssh, "Received extended_data "
2989 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00002990 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002991
2992 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
2993 error("%s: parse tcode: %s", __func__, ssh_err(r));
2994 ssh_packet_disconnect(ssh, "Invalid extended_data message");
2995 }
Damien Miller33b13562000-04-04 14:38:59 +10002996 if (c->efd == -1 ||
2997 c->extended_usage != CHAN_EXTENDED_WRITE ||
2998 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002999 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003000 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003001 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003002 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0) {
3003 error("%s: parse data: %s", __func__, ssh_err(r));
3004 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3005 }
3006 ssh_packet_check_eom(ssh);
3007
Damien Miller33b13562000-04-04 14:38:59 +10003008 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003009 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10003010 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003011 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003012 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003013 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3014 /* XXX sshpkt_getb? */
3015 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3016 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003017 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003018 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003019}
3020
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003021int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003022channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003023{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003024 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
Damien Millerb38eff82000-04-01 11:09:21 +10003025
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003026 ssh_packet_check_eom(ssh);
3027
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003028 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003029 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003030 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003031
3032 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003033 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003034 debug("channel %d: FORCE input drain", c->self);
3035 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003036 if (sshbuf_len(c->input) == 0)
3037 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003038 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003039 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003040}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003041
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003042int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003043channel_input_oclose(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__, "oclose");
Damien Miller66823cd2002-01-22 23:11:38 +11003046
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003047 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003048 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003049 ssh_packet_check_eom(ssh);
3050 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003051 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003052}
3053
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003054int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003055channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003056{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003057 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3058 u_int32_t remote_window, remote_maxpacket;
3059 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003060
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003061 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003062 return 0;
3063 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003064 packet_disconnect("Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003065 "non-opening channel %d.", c->self);
3066 /*
3067 * Record the remote channel number and mark that the channel
3068 * is now open.
3069 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003070 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3071 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003072 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0) {
3073 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
3074 packet_disconnect("Invalid open confirmation message");
3075 }
3076 ssh_packet_check_eom(ssh);
Damien Miller33b13562000-04-04 14:38:59 +10003077
djm@openbsd.org9f532292017-09-12 06:35:31 +00003078 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003079 c->remote_window = remote_window;
3080 c->remote_maxpacket = remote_maxpacket;
3081 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003082 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003083 debug2("%s: channel %d: callback start", __func__, c->self);
3084 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3085 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003086 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003087 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3088 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003089 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003090}
3091
Ben Lindstrombba81212001-06-25 05:01:22 +00003092static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003093reason2txt(int reason)
3094{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003095 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003096 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3097 return "administratively prohibited";
3098 case SSH2_OPEN_CONNECT_FAILED:
3099 return "connect failed";
3100 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3101 return "unknown channel type";
3102 case SSH2_OPEN_RESOURCE_SHORTAGE:
3103 return "resource shortage";
3104 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003105 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003106}
3107
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003108int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003109channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003110{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003111 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3112 u_int32_t reason;
3113 char *msg = NULL;
3114 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003115
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003116 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003117 return 0;
3118 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003119 packet_disconnect("Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003120 "non-opening channel %d.", c->self);
3121 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3122 error("%s: reason: %s", __func__, ssh_err(r));
3123 packet_disconnect("Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003124 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003125 if ((datafellows & SSH_BUG_OPENFAILURE) == 0) {
3126 /* skip language */
3127 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
3128 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) == 0) {
3129 error("%s: message/lang: %s", __func__, ssh_err(r));
3130 packet_disconnect("Invalid open failure message");
3131 }
3132 }
3133 ssh_packet_check_eom(ssh);
3134 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003135 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3136 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003137 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003138 debug2("%s: channel %d: callback start", __func__, c->self);
3139 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3140 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003141 }
Damien Miller7a606212009-01-28 16:22:34 +11003142 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003143 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003144 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003145}
3146
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003147int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003148channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003149{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003150 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003151 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003152 u_int32_t adjust;
3153 u_int new_rwin;
3154 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003155
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003156 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003157 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003158 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003159 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003160
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003161 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003162 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003163 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0) {
3164 error("%s: adjust: %s", __func__, ssh_err(r));
3165 packet_disconnect("Invalid window adjust message");
3166 }
3167 ssh_packet_check_eom(ssh);
3168 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3169 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003170 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003171 c->self, adjust, c->remote_window);
3172 }
3173 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003174 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003175}
3176
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003177int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003178channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003179{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003180 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003181 Channel *c;
3182 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003183
3184 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10003185 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10003186
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003187 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003188
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003189 if ((c = channel_lookup(ssh, id)) == NULL) {
3190 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003191 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003192 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003193 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003194 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003195 ssh_packet_check_eom(ssh);
Damien Millerb84886b2008-05-19 15:05:07 +10003196 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003197 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003198 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003199 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11003200 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10003201 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003202 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003203}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003204
Ben Lindstrome9c99912001-06-09 00:41:05 +00003205/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003206
Ben Lindstrom908afed2001-10-03 17:34:59 +00003207void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003208channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003209{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003210 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003211}
3212
Damien Millerf6dff7c2011-09-22 21:38:52 +10003213
3214/*
3215 * Determine whether or not a port forward listens to loopback, the
3216 * specified address or wildcard. On the client, a specified bind
3217 * address will always override gateway_ports. On the server, a
3218 * gateway_ports of 1 (``yes'') will override the client's specification
3219 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3220 * will bind to whatever address the client asked for.
3221 *
3222 * Special-case listen_addrs are:
3223 *
3224 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3225 * "" (empty string), "*" -> wildcard v4/v6
3226 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003227 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003228 */
3229static const char *
3230channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003231 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003232{
3233 const char *addr = NULL;
3234 int wildcard = 0;
3235
3236 if (listen_addr == NULL) {
3237 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003238 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003239 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003240 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003241 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3242 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3243 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003244 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003245 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003246 /*
3247 * Notify client if they requested a specific listen
3248 * address and it was overridden.
3249 */
3250 if (*listen_addr != '\0' &&
3251 strcmp(listen_addr, "0.0.0.0") != 0 &&
3252 strcmp(listen_addr, "*") != 0) {
3253 packet_send_debug("Forwarding listen address "
3254 "\"%s\" overridden by server "
3255 "GatewayPorts", listen_addr);
3256 }
Damien Miller602943d2014-07-04 08:59:41 +10003257 } else if (strcmp(listen_addr, "localhost") != 0 ||
3258 strcmp(listen_addr, "127.0.0.1") == 0 ||
3259 strcmp(listen_addr, "::1") == 0) {
3260 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10003261 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003262 }
3263 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3264 strcmp(listen_addr, "::1") == 0) {
3265 /*
3266 * If a specific IPv4/IPv6 localhost address has been
3267 * requested then accept it even if gateway_ports is in
3268 * effect. This allows the client to prefer IPv4 or IPv6.
3269 */
3270 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003271 }
3272 if (wildcardp != NULL)
3273 *wildcardp = wildcard;
3274 return addr;
3275}
3276
Damien Millerb16461c2002-01-22 23:29:22 +11003277static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003278channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3279 struct Forward *fwd, int *allocated_listen_port,
3280 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003281{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003282 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003283 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003284 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003285 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003286 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003287 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003288
Damien Millerf91ee4c2005-03-01 21:24:33 +11003289 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003290
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003291 if (is_client && fwd->connect_path != NULL) {
3292 host = fwd->connect_path;
3293 } else {
3294 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3295 fwd->listen_host : fwd->connect_host;
3296 if (host == NULL) {
3297 error("No forward host name.");
3298 return 0;
3299 }
3300 if (strlen(host) >= NI_MAXHOST) {
3301 error("Forward host name too long.");
3302 return 0;
3303 }
Kevin Steves12057502001-02-05 14:54:34 +00003304 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003305
Damien Millerf6dff7c2011-09-22 21:38:52 +10003306 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10003307 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3308 is_client, fwd_opts);
3309 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003310 type, wildcard, (addr == NULL) ? "NULL" : addr);
3311
3312 /*
Damien Miller34132e52000-01-14 15:45:46 +11003313 * getaddrinfo returns a loopback address if the hostname is
3314 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003315 */
Damien Miller34132e52000-01-14 15:45:46 +11003316 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003317 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003318 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003319 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003320 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003321 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3322 if (addr == NULL) {
3323 /* This really shouldn't happen */
3324 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003325 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003326 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003327 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003328 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003329 }
Damien Millera7270302005-07-06 09:36:05 +10003330 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003331 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003332 if (allocated_listen_port != NULL)
3333 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003334 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003335 switch (ai->ai_family) {
3336 case AF_INET:
3337 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3338 sin_port;
3339 break;
3340 case AF_INET6:
3341 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3342 sin6_port;
3343 break;
3344 default:
Damien Miller34132e52000-01-14 15:45:46 +11003345 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003346 }
3347 /*
3348 * If allocating a port for -R forwards, then use the
3349 * same port for all address families.
3350 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003351 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3352 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3353 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003354 *lport_p = htons(*allocated_listen_port);
3355
Damien Miller34132e52000-01-14 15:45:46 +11003356 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003357 strport, sizeof(strport),
3358 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003359 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003360 continue;
3361 }
3362 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003363 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003364 if (sock < 0) {
3365 /* this is no error since kernel may not support ipv6 */
3366 verbose("socket: %.100s", strerror(errno));
3367 continue;
3368 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003369
3370 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003371 if (ai->ai_family == AF_INET6)
3372 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003373
Damien Miller4bf648f2009-02-14 16:28:21 +11003374 debug("Local forwarding listening on %s port %s.",
3375 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003376
Damien Miller34132e52000-01-14 15:45:46 +11003377 /* Bind the socket to the address. */
3378 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003379 /*
3380 * address can be in if use ipv6 address is
3381 * already bound
3382 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003383 if (!ai->ai_next)
3384 error("bind: %.100s", strerror(errno));
3385 else
3386 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003387
Damien Miller34132e52000-01-14 15:45:46 +11003388 close(sock);
3389 continue;
3390 }
3391 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11003392 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003393 error("listen: %.100s", strerror(errno));
3394 close(sock);
3395 continue;
3396 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003397
3398 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003399 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003400 * record what we got.
3401 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003402 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3403 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003404 allocated_listen_port != NULL &&
3405 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003406 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003407 debug("Allocated listen port %d",
3408 *allocated_listen_port);
3409 }
3410
Damien Miller34132e52000-01-14 15:45:46 +11003411 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003412 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003413 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003414 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003415 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003416 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003417 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003418 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003419 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3420 c->listening_port = *allocated_listen_port;
3421 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003422 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003423 success = 1;
3424 }
3425 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003426 error("%s: cannot listen to port: %d", __func__,
3427 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003428 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003429 return success;
Damien Miller95def091999-11-25 00:26:21 +11003430}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003431
Damien Miller7acefbb2014-07-18 14:11:24 +10003432static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003433channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3434 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003435{
3436 struct sockaddr_un sunaddr;
3437 const char *path;
3438 Channel *c;
3439 int port, sock;
3440 mode_t omask;
3441
3442 switch (type) {
3443 case SSH_CHANNEL_UNIX_LISTENER:
3444 if (fwd->connect_path != NULL) {
3445 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3446 error("Local connecting path too long: %s",
3447 fwd->connect_path);
3448 return 0;
3449 }
3450 path = fwd->connect_path;
3451 port = PORT_STREAMLOCAL;
3452 } else {
3453 if (fwd->connect_host == NULL) {
3454 error("No forward host name.");
3455 return 0;
3456 }
3457 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3458 error("Forward host name too long.");
3459 return 0;
3460 }
3461 path = fwd->connect_host;
3462 port = fwd->connect_port;
3463 }
3464 break;
3465 case SSH_CHANNEL_RUNIX_LISTENER:
3466 path = fwd->listen_path;
3467 port = PORT_STREAMLOCAL;
3468 break;
3469 default:
3470 error("%s: unexpected channel type %d", __func__, type);
3471 return 0;
3472 }
3473
3474 if (fwd->listen_path == NULL) {
3475 error("No forward path name.");
3476 return 0;
3477 }
3478 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3479 error("Local listening path too long: %s", fwd->listen_path);
3480 return 0;
3481 }
3482
3483 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3484
3485 /* Start a Unix domain listener. */
3486 omask = umask(fwd_opts->streamlocal_bind_mask);
3487 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3488 fwd_opts->streamlocal_bind_unlink);
3489 umask(omask);
3490 if (sock < 0)
3491 return 0;
3492
3493 debug("Local forwarding listening on path %s.", fwd->listen_path);
3494
3495 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003496 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003497 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3498 0, "unix listener", 1);
3499 c->path = xstrdup(path);
3500 c->host_port = port;
3501 c->listening_port = PORT_STREAMLOCAL;
3502 c->listening_addr = xstrdup(fwd->listen_path);
3503 return 1;
3504}
3505
3506static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003507channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3508 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003509{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003510 u_int i;
3511 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003512
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003513 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3514 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003515 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3516 continue;
3517 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3518 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003519 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003520 found = 1;
3521 }
3522 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003523
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003524 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003525}
3526
Damien Miller7acefbb2014-07-18 14:11:24 +10003527static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003528channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003529{
3530 u_int i;
3531 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003532
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003533 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3534 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003535 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3536 continue;
3537 if (c->path == NULL)
3538 continue;
3539 if (strcmp(c->path, path) == 0) {
3540 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003541 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003542 found = 1;
3543 }
3544 }
3545
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003546 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003547}
3548
3549int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003550channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003551{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003552 if (fwd->listen_path != NULL) {
3553 return channel_cancel_rport_listener_streamlocal(ssh,
3554 fwd->listen_path);
3555 } else {
3556 return channel_cancel_rport_listener_tcpip(ssh,
3557 fwd->listen_host, fwd->listen_port);
3558 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003559}
3560
3561static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003562channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3563 const char *lhost, u_short lport, int cport,
3564 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003565{
3566 u_int i;
3567 int found = 0;
3568 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003569
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003570 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3571 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003572 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3573 continue;
Damien Millerff773642011-09-22 21:39:48 +10003574 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003575 continue;
Damien Millerff773642011-09-22 21:39:48 +10003576 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3577 /* skip dynamic forwardings */
3578 if (c->host_port == 0)
3579 continue;
3580 } else {
3581 if (c->host_port != cport)
3582 continue;
3583 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003584 if ((c->listening_addr == NULL && addr != NULL) ||
3585 (c->listening_addr != NULL && addr == NULL))
3586 continue;
3587 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003588 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003589 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003590 found = 1;
3591 }
3592 }
3593
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003594 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003595}
3596
Damien Miller7acefbb2014-07-18 14:11:24 +10003597static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003598channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003599{
3600 u_int i;
3601 int found = 0;
3602
3603 if (path == NULL) {
3604 error("%s: no path specified.", __func__);
3605 return 0;
3606 }
3607
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003608 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3609 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003610 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3611 continue;
3612 if (c->listening_addr == NULL)
3613 continue;
3614 if (strcmp(c->listening_addr, path) == 0) {
3615 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003616 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003617 found = 1;
3618 }
3619 }
3620
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003621 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003622}
3623
3624int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003625channel_cancel_lport_listener(struct ssh *ssh,
3626 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003627{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003628 if (fwd->listen_path != NULL) {
3629 return channel_cancel_lport_listener_streamlocal(ssh,
3630 fwd->listen_path);
3631 } else {
3632 return channel_cancel_lport_listener_tcpip(ssh,
3633 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3634 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003635}
3636
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003637/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003638int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003639channel_setup_local_fwd_listener(struct ssh *ssh,
3640 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003641{
Damien Miller7acefbb2014-07-18 14:11:24 +10003642 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003643 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003644 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3645 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003646 return channel_setup_fwd_listener_tcpip(ssh,
3647 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003648 }
Damien Millerb16461c2002-01-22 23:29:22 +11003649}
3650
3651/* protocol v2 remote port fwd, used by sshd */
3652int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003653channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003654 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003655{
Damien Miller7acefbb2014-07-18 14:11:24 +10003656 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003657 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003658 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3659 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003660 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003661 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3662 fwd_opts);
3663 }
Damien Millerb16461c2002-01-22 23:29:22 +11003664}
3665
Damien Miller5428f641999-11-25 11:54:57 +11003666/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003667 * Translate the requested rfwd listen host to something usable for
3668 * this server.
3669 */
3670static const char *
3671channel_rfwd_bind_host(const char *listen_host)
3672{
3673 if (listen_host == NULL) {
3674 if (datafellows & SSH_BUG_RFWD_ADDR)
3675 return "127.0.0.1";
3676 else
3677 return "localhost";
3678 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3679 if (datafellows & SSH_BUG_RFWD_ADDR)
3680 return "0.0.0.0";
3681 else
3682 return "";
3683 } else
3684 return listen_host;
3685}
3686
3687/*
Damien Miller5428f641999-11-25 11:54:57 +11003688 * Initiate forwarding of connections to port "port" on remote host through
3689 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003690 * Returns handle (index) for updating the dynamic listen port with
3691 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003692 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003693int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003694channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003695{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003696 int r, success = 0, idx = -1;
3697 char *host_to_connect, *listen_host, *listen_path;
3698 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003699
Damien Miller95def091999-11-25 00:26:21 +11003700 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003701 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003702 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3703 (r = sshpkt_put_cstring(ssh,
3704 "streamlocal-forward@openssh.com")) != 0 ||
3705 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3706 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3707 (r = sshpkt_send(ssh)) != 0 ||
3708 (r = ssh_packet_write_wait(ssh)) != 0)
3709 fatal("%s: request streamlocal: %s",
3710 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003711 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003712 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3713 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3714 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3715 (r = sshpkt_put_cstring(ssh,
3716 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3717 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3718 (r = sshpkt_send(ssh)) != 0 ||
3719 (r = ssh_packet_write_wait(ssh)) != 0)
3720 fatal("%s: request tcpip-forward: %s",
3721 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003722 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003723 /* Assume that server accepts the request */
3724 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003725 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003726 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003727 host_to_connect = listen_host = listen_path = NULL;
3728 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003729 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003730 host_to_connect = xstrdup(fwd->connect_path);
3731 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003732 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003733 host_to_connect = xstrdup(fwd->connect_host);
3734 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003735 }
3736 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003737 listen_path = xstrdup(fwd->listen_path);
3738 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003739 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003740 if (fwd->listen_host != NULL)
3741 listen_host = xstrdup(fwd->listen_host);
3742 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003743 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003744 idx = fwd_perm_list_add(ssh, FWDPERM_USER,
3745 host_to_connect, port_to_connect,
3746 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003747 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003748 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003749}
3750
Damien Miller4b3ed642014-07-02 15:29:40 +10003751static int
3752open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003753 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003754{
3755 if (allowed_open->host_to_connect == NULL)
3756 return 0;
3757 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3758 allowed_open->port_to_connect != requestedport)
3759 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003760 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3761 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003762 return 0;
3763 return 1;
3764}
3765
3766/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003767 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003768 * we don't support FWD_PERMIT_ANY_PORT and
3769 * need to translate between the configured-host (listen_host)
3770 * and what we've sent to the remote server (channel_rfwd_bind_host)
3771 */
3772static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003773open_listen_match_tcpip(ForwardPermission *allowed_open,
3774 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003775{
3776 const char *allowed_host;
3777
3778 if (allowed_open->host_to_connect == NULL)
3779 return 0;
3780 if (allowed_open->listen_port != requestedport)
3781 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003782 if (!translate && allowed_open->listen_host == NULL &&
3783 requestedhost == NULL)
3784 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003785 allowed_host = translate ?
3786 channel_rfwd_bind_host(allowed_open->listen_host) :
3787 allowed_open->listen_host;
3788 if (allowed_host == NULL ||
3789 strcmp(allowed_host, requestedhost) != 0)
3790 return 0;
3791 return 1;
3792}
3793
Damien Miller7acefbb2014-07-18 14:11:24 +10003794static int
3795open_listen_match_streamlocal(ForwardPermission *allowed_open,
3796 const char *requestedpath)
3797{
3798 if (allowed_open->host_to_connect == NULL)
3799 return 0;
3800 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3801 return 0;
3802 if (allowed_open->listen_path == NULL ||
3803 strcmp(allowed_open->listen_path, requestedpath) != 0)
3804 return 0;
3805 return 1;
3806}
3807
Damien Miller5428f641999-11-25 11:54:57 +11003808/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003809 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003810 * local side.
3811 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003812static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003813channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3814 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003815{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003816 struct ssh_channels *sc = ssh->chanctxt;
3817 int r;
3818 u_int i;
3819 ForwardPermission *fp;
Darren Tuckere7066df2004-05-24 10:18:05 +10003820
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003821 for (i = 0; i < sc->num_permitted_opens; i++) {
3822 fp = &sc->permitted_opens[i];
3823 if (open_listen_match_tcpip(fp, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003824 break;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003825 fp = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10003826 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003827 if (fp == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003828 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003829 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003830 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003831 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3832 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
3833 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3834 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
3835 (r = sshpkt_put_u32(ssh, port)) != 0 ||
3836 (r = sshpkt_send(ssh)) != 0)
3837 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10003838
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003839 fwd_perm_clear(fp); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003840
3841 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003842}
3843
3844/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003845 * Request cancellation of remote forwarding of Unix domain socket
3846 * path from local side.
3847 */
3848static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003849channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003850{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003851 struct ssh_channels *sc = ssh->chanctxt;
3852 int r;
3853 u_int i;
3854 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10003855
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003856 for (i = 0; i < sc->num_permitted_opens; i++) {
3857 fp = &sc->permitted_opens[i];
3858 if (open_listen_match_streamlocal(fp, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10003859 break;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003860 fp = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003861 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003862 if (fp == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003863 debug("%s: requested forward not found", __func__);
3864 return -1;
3865 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003866 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3867 (r = sshpkt_put_cstring(ssh,
3868 "cancel-streamlocal-forward@openssh.com")) != 0 ||
3869 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3870 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
3871 (r = sshpkt_send(ssh)) != 0)
3872 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003873
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003874 fwd_perm_clear(fp); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10003875
3876 return 0;
3877}
3878
3879/*
3880 * Request cancellation of remote forwarding of a connection from local side.
3881 */
3882int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003883channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003884{
3885 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003886 return channel_request_rforward_cancel_streamlocal(ssh,
3887 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10003888 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003889 return channel_request_rforward_cancel_tcpip(ssh,
3890 fwd->listen_host,
3891 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10003892 }
3893}
3894
3895/*
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003896 * Permits opening to any host/port if permitted_opens[] is empty. This is
3897 * usually called by the server, because the user could connect to any port
3898 * anyway, and the server has no way to know but to trust the client anyway.
3899 */
3900void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003901channel_permit_all_opens(struct ssh *ssh)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003902{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003903 if (ssh->chanctxt->num_permitted_opens == 0)
3904 ssh->chanctxt->all_opens_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003905}
3906
Ben Lindstroma3700052001-04-05 23:26:32 +00003907void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003908channel_add_permitted_opens(struct ssh *ssh, char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003909{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003910 struct ssh_channels *sc = ssh->chanctxt;
3911
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003912 debug("allow port forwarding to host %s port %d", host, port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003913 fwd_perm_list_add(ssh, FWDPERM_USER, host, port, NULL, NULL, 0, NULL);
3914 sc->all_opens_permitted = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003915}
3916
Darren Tucker68afb8c2011-10-02 18:59:03 +11003917/*
3918 * Update the listen port for a dynamic remote forward, after
3919 * the actual 'newport' has been allocated. If 'newport' < 0 is
3920 * passed then they entry will be invalidated.
3921 */
3922void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003923channel_update_permitted_opens(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11003924{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003925 struct ssh_channels *sc = ssh->chanctxt;
3926
3927 if (idx < 0 || (u_int)idx >= sc->num_permitted_opens) {
3928 debug("%s: index out of range: %d num_permitted_opens %d",
3929 __func__, idx, sc->num_permitted_opens);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003930 return;
3931 }
3932 debug("%s allowed port %d for forwarding to host %s port %d",
3933 newport > 0 ? "Updating" : "Removing",
3934 newport,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003935 sc->permitted_opens[idx].host_to_connect,
3936 sc->permitted_opens[idx].port_to_connect);
3937 if (newport <= 0)
3938 fwd_perm_clear(&sc->permitted_opens[idx]);
3939 else {
3940 sc->permitted_opens[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11003941 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003942 }
3943}
3944
Damien Millera765cf42006-07-24 14:08:13 +10003945int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003946channel_add_adm_permitted_opens(struct ssh *ssh, char *host, int port)
Damien Miller9b439df2006-07-24 14:04:00 +10003947{
Damien Millera765cf42006-07-24 14:08:13 +10003948 debug("config allows port forwarding to host %s port %d", host, port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003949 return fwd_perm_list_add(ssh, FWDPERM_ADMIN, host, port,
3950 NULL, NULL, 0, NULL);
Damien Miller9b439df2006-07-24 14:04:00 +10003951}
3952
3953void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003954channel_disable_adm_local_opens(struct ssh *ssh)
Damien Millerc6081482012-04-22 11:18:53 +10003955{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003956 channel_clear_adm_permitted_opens(ssh);
3957 fwd_perm_list_add(ssh, FWDPERM_ADMIN, NULL, 0, NULL, NULL, 0, NULL);
Damien Millerc6081482012-04-22 11:18:53 +10003958}
3959
3960void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003961channel_clear_permitted_opens(struct ssh *ssh)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003962{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003963 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003964
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003965 sc->permitted_opens = xrecallocarray(sc->permitted_opens,
3966 sc->num_permitted_opens, 0, sizeof(*sc->permitted_opens));
3967 sc->num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003968}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003969
Damien Miller9b439df2006-07-24 14:04:00 +10003970void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003971channel_clear_adm_permitted_opens(struct ssh *ssh)
Damien Miller9b439df2006-07-24 14:04:00 +10003972{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003973 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller9b439df2006-07-24 14:04:00 +10003974
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003975 sc->permitted_adm_opens = xrecallocarray(sc->permitted_adm_opens,
3976 sc->num_adm_permitted_opens, 0, sizeof(*sc->permitted_adm_opens));
3977 sc->num_adm_permitted_opens = 0;
Darren Tuckere7140f22008-06-10 23:01:51 +10003978}
3979
Darren Tucker1338b9e2011-10-02 18:57:35 +11003980/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3981int
3982permitopen_port(const char *p)
3983{
3984 int port;
3985
3986 if (strcmp(p, "*") == 0)
3987 return FWD_PERMIT_ANY_PORT;
3988 if ((port = a2port(p)) > 0)
3989 return port;
3990 return -1;
3991}
3992
Damien Millerbd740252008-05-19 15:37:09 +10003993/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003994static int
Damien Millerbd740252008-05-19 15:37:09 +10003995connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003996{
Damien Millerbd740252008-05-19 15:37:09 +10003997 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003998 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003999 char ntop[NI_MAXHOST];
4000 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11004001
Damien Millerbd740252008-05-19 15:37:09 +10004002 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004003 switch (cctx->ai->ai_family) {
4004 case AF_UNIX:
4005 /* unix:pathname instead of host:port */
4006 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
4007 strlcpy(ntop, "unix", sizeof(ntop));
4008 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
4009 break;
4010 case AF_INET:
4011 case AF_INET6:
4012 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4013 ntop, sizeof(ntop), strport, sizeof(strport),
4014 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4015 error("connect_next: getnameinfo failed");
4016 continue;
4017 }
4018 break;
4019 default:
Damien Miller34132e52000-01-14 15:45:46 +11004020 continue;
4021 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004022 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4023 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004024 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004025 error("socket: %.100s", strerror(errno));
4026 else
4027 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004028 continue;
4029 }
Damien Miller232711f2004-06-15 10:35:30 +10004030 if (set_nonblock(sock) == -1)
4031 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004032 if (connect(sock, cctx->ai->ai_addr,
4033 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4034 debug("connect_next: host %.100s ([%.100s]:%s): "
4035 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004036 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004037 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004038 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004039 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004040 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004041 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004042 if (cctx->ai->ai_family != AF_UNIX)
4043 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004044 debug("connect_next: host %.100s ([%.100s]:%s) "
4045 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4046 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004047 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004048 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004049 return -1;
4050}
Damien Millerb38eff82000-04-01 11:09:21 +10004051
Damien Millerbd740252008-05-19 15:37:09 +10004052static void
4053channel_connect_ctx_free(struct channel_connect *cctx)
4054{
Darren Tuckera627d422013-06-02 07:31:17 +10004055 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004056 if (cctx->aitop) {
4057 if (cctx->aitop->ai_family == AF_UNIX)
4058 free(cctx->aitop);
4059 else
4060 freeaddrinfo(cctx->aitop);
4061 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004062 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004063}
4064
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004065/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004066 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004067 * passing back the failure reason if appropriate.
4068 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004069static int
4070connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4071 char *ctype, char *rname, struct channel_connect *cctx,
4072 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004073{
4074 struct addrinfo hints;
4075 int gaierr;
4076 int sock = -1;
4077 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004078
4079 if (port == PORT_STREAMLOCAL) {
4080 struct sockaddr_un *sunaddr;
4081 struct addrinfo *ai;
4082
4083 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4084 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004085 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004086 }
4087
4088 /*
4089 * Fake up a struct addrinfo for AF_UNIX connections.
4090 * channel_connect_ctx_free() must check ai_family
4091 * and use free() not freeaddirinfo() for AF_UNIX.
4092 */
4093 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4094 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4095 ai->ai_addr = (struct sockaddr *)(ai + 1);
4096 ai->ai_addrlen = sizeof(*sunaddr);
4097 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004098 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004099 ai->ai_protocol = PF_UNSPEC;
4100 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4101 sunaddr->sun_family = AF_UNIX;
4102 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004103 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004104 } else {
4105 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004106 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004107 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004108 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004109 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004110 != 0) {
4111 if (errmsg != NULL)
4112 *errmsg = ssh_gai_strerror(gaierr);
4113 if (reason != NULL)
4114 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004115 error("connect_to %.100s: unknown host (%s)", name,
4116 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004117 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004118 }
Damien Millerbd740252008-05-19 15:37:09 +10004119 }
4120
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004121 cctx->host = xstrdup(name);
4122 cctx->port = port;
4123 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004124
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004125 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004126 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004127 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004128 return -1;
4129 }
4130
4131 return sock;
4132}
4133
4134/* Return CONNECTING channel to remote host:port or local socket path */
4135static Channel *
4136connect_to(struct ssh *ssh, const char *host, int port,
4137 char *ctype, char *rname)
4138{
4139 struct channel_connect cctx;
4140 Channel *c;
4141 int sock;
4142
4143 memset(&cctx, 0, sizeof(cctx));
4144 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4145 &cctx, NULL, NULL);
4146 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004147 channel_connect_ctx_free(&cctx);
4148 return NULL;
4149 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004150 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004151 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004152 c->host_port = port;
4153 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004154 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004155
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004156 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004157}
4158
markus@openbsd.org8d057842016-09-30 09:19:13 +00004159/*
4160 * returns either the newly connected channel or the downstream channel
4161 * that needs to deal with this connection.
4162 */
Damien Millerbd740252008-05-19 15:37:09 +10004163Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004164channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004165 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004166{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004167 struct ssh_channels *sc = ssh->chanctxt;
4168 u_int i;
4169 ForwardPermission *fp;
Damien Millerbd740252008-05-19 15:37:09 +10004170
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004171 for (i = 0; i < sc->num_permitted_opens; i++) {
4172 fp = &sc->permitted_opens[i];
4173 if (open_listen_match_tcpip(fp, listen_host, listen_port, 1)) {
4174 if (fp->downstream)
4175 return fp->downstream;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004176 if (fp->port_to_connect == 0)
4177 return rdynamic_connect_prepare(ssh,
4178 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004179 return connect_to(ssh,
4180 fp->host_to_connect, fp->port_to_connect,
4181 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004182 }
4183 }
4184 error("WARNING: Server requests forwarding for unknown listen_port %d",
4185 listen_port);
4186 return NULL;
4187}
4188
Damien Miller7acefbb2014-07-18 14:11:24 +10004189Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004190channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4191 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004192{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004193 struct ssh_channels *sc = ssh->chanctxt;
4194 u_int i;
4195 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10004196
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004197 for (i = 0; i < sc->num_permitted_opens; i++) {
4198 fp = &sc->permitted_opens[i];
4199 if (open_listen_match_streamlocal(fp, path)) {
4200 return connect_to(ssh,
4201 fp->host_to_connect, fp->port_to_connect,
4202 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004203 }
4204 }
4205 error("WARNING: Server requests forwarding for unknown path %.100s",
4206 path);
4207 return NULL;
4208}
4209
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004210/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004211Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004212channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4213 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004214{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004215 struct ssh_channels *sc = ssh->chanctxt;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004216 struct channel_connect cctx;
4217 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004218 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004219 int sock;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004220 ForwardPermission *fp;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004221
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004222 permit = sc->all_opens_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004223 if (!permit) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004224 for (i = 0; i < sc->num_permitted_opens; i++) {
4225 fp = &sc->permitted_opens[i];
4226 if (open_match(fp, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004227 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004228 break;
4229 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004230 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004231 }
Damien Miller9b439df2006-07-24 14:04:00 +10004232
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004233 if (sc->num_adm_permitted_opens > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004234 permit_adm = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004235 for (i = 0; i < sc->num_adm_permitted_opens; i++) {
4236 fp = &sc->permitted_adm_opens[i];
4237 if (open_match(fp, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004238 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004239 break;
4240 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004241 }
Damien Miller9b439df2006-07-24 14:04:00 +10004242 }
4243
4244 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10004245 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004246 "but the request was denied.", host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004247 if (reason != NULL)
4248 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004249 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004250 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004251
4252 memset(&cctx, 0, sizeof(cctx));
4253 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4254 &cctx, reason, errmsg);
4255 if (sock == -1) {
4256 channel_connect_ctx_free(&cctx);
4257 return NULL;
4258 }
4259
4260 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4261 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4262 c->host_port = port;
4263 c->path = xstrdup(host);
4264 c->connect_ctx = cctx;
4265
4266 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004267}
4268
Damien Miller7acefbb2014-07-18 14:11:24 +10004269/* Check if connecting to that path is permitted and connect. */
4270Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004271channel_connect_to_path(struct ssh *ssh, const char *path,
4272 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004273{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004274 struct ssh_channels *sc = ssh->chanctxt;
4275 u_int i, permit, permit_adm = 1;
4276 ForwardPermission *fp;
Damien Miller7acefbb2014-07-18 14:11:24 +10004277
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004278 permit = sc->all_opens_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004279 if (!permit) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004280 for (i = 0; i < sc->num_permitted_opens; i++) {
4281 fp = &sc->permitted_opens[i];
4282 if (open_match(fp, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004283 permit = 1;
4284 break;
4285 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004286 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004287 }
4288
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004289 if (sc->num_adm_permitted_opens > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004290 permit_adm = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004291 for (i = 0; i < sc->num_adm_permitted_opens; i++) {
4292 fp = &sc->permitted_adm_opens[i];
4293 if (open_match(fp, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004294 permit_adm = 1;
4295 break;
4296 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004297 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004298 }
4299
4300 if (!permit || !permit_adm) {
4301 logit("Received request to connect to path %.100s, "
4302 "but the request was denied.", path);
4303 return NULL;
4304 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004305 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004306}
4307
Damien Miller0e220db2004-06-15 10:34:08 +10004308void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004309channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004310{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004311 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004312 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004313 int r;
4314 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004315
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004316 for (i = 0; i < sc->channels_alloc; i++) {
4317 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4318 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004319 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004320 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
Damien Miller0e220db2004-06-15 10:34:08 +10004321 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004322 channel_request_start(ssh, i, "window-change", 0);
4323 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4324 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4325 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4326 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4327 (r = sshpkt_send(ssh)) != 0)
4328 fatal("%s: channel %u: send window-change: %s",
4329 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004330 }
4331}
4332
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004333/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4334static Channel *
4335rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4336{
4337 Channel *c;
4338 int r;
4339
4340 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4341 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4342 c->host_port = 0;
4343 c->path = NULL;
4344
4345 /*
4346 * We need to open the channel before we have a FD,
4347 * so that we can get SOCKS header from peer.
4348 */
4349 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4350 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4351 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4352 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4353 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4354 fatal("%s: channel %i: confirm: %s", __func__,
4355 c->self, ssh_err(r));
4356 }
4357 return c;
4358}
4359
4360/* Return CONNECTING socket to remote host:port or local socket path */
4361static int
4362rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4363{
4364 struct channel_connect cctx;
4365 int sock;
4366
4367 memset(&cctx, 0, sizeof(cctx));
4368 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4369 NULL, &cctx, NULL, NULL);
4370 if (sock == -1)
4371 channel_connect_ctx_free(&cctx);
4372 else {
4373 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4374 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4375 c->connect_ctx = cctx;
4376 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4377 }
4378 return sock;
4379}
4380
Ben Lindstrome9c99912001-06-09 00:41:05 +00004381/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004382
Damien Miller5428f641999-11-25 11:54:57 +11004383/*
4384 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004385 * Returns 0 and a suitable display number for the DISPLAY variable
4386 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004387 */
Kevin Steves366298c2001-12-19 17:58:01 +00004388int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004389x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4390 int x11_use_localhost, int single_connection,
4391 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004392{
Damien Millere7378562001-12-21 14:58:35 +11004393 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004394 int display_number, sock;
4395 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004396 struct addrinfo hints, *ai, *aitop;
4397 char strport[NI_MAXSERV];
4398 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004399
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004400 if (chanids == NULL)
4401 return -1;
4402
Damien Millera34a28b1999-12-14 10:47:15 +11004403 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004404 display_number < MAX_DISPLAYS;
4405 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004406 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004407 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004408 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004409 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004410 hints.ai_socktype = SOCK_STREAM;
4411 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004412 if ((gaierr = getaddrinfo(NULL, strport,
4413 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004414 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004415 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004416 }
Damien Miller34132e52000-01-14 15:45:46 +11004417 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004418 if (ai->ai_family != AF_INET &&
4419 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004420 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004421 sock = socket(ai->ai_family, ai->ai_socktype,
4422 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004423 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11004424 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4425#ifdef EPFNOSUPPORT
4426 && (errno != EPFNOSUPPORT)
4427#endif
4428 ) {
Damien Millere2192732000-01-17 13:22:55 +11004429 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004430 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004431 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004432 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004433 debug("x11_create_display_inet: Socket family %d not supported",
4434 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004435 continue;
4436 }
Damien Miller34132e52000-01-14 15:45:46 +11004437 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004438 if (ai->ai_family == AF_INET6)
4439 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004440 if (x11_use_localhost)
4441 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11004442 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004443 debug2("%s: bind port %d: %.100s", __func__,
4444 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004445 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004446 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004447 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004448 num_socks = 0;
4449 break;
4450 }
4451 socks[num_socks++] = sock;
4452 if (num_socks == NUM_SOCKS)
4453 break;
Damien Miller95def091999-11-25 00:26:21 +11004454 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004455 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004456 if (num_socks > 0)
4457 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004458 }
Damien Miller95def091999-11-25 00:26:21 +11004459 if (display_number >= MAX_DISPLAYS) {
4460 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004461 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004462 }
Damien Miller95def091999-11-25 00:26:21 +11004463 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004464 for (n = 0; n < num_socks; n++) {
4465 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11004466 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11004467 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004468 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004469 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004470 }
Damien Miller95def091999-11-25 00:26:21 +11004471 }
Damien Miller34132e52000-01-14 15:45:46 +11004472
Damien Miller34132e52000-01-14 15:45:46 +11004473 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004474 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004475 for (n = 0; n < num_socks; n++) {
4476 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004477 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004478 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4479 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004480 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004481 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004482 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004483 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004484 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004485
Kevin Steves366298c2001-12-19 17:58:01 +00004486 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004487 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004488 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004489}
4490
Ben Lindstrombba81212001-06-25 05:01:22 +00004491static int
Damien Miller819dbb62009-01-21 16:46:26 +11004492connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004493{
Damien Miller95def091999-11-25 00:26:21 +11004494 int sock;
4495 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004496
Damien Miller3afe3752001-12-21 12:39:51 +11004497 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4498 if (sock < 0)
4499 error("socket: %.100s", strerror(errno));
4500 memset(&addr, 0, sizeof(addr));
4501 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004502 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004503 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004504 return sock;
4505 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004506 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4507 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004508}
4509
Damien Miller819dbb62009-01-21 16:46:26 +11004510static int
4511connect_local_xsocket(u_int dnr)
4512{
4513 char buf[1024];
4514 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4515 return connect_local_xsocket_path(buf);
4516}
4517
Darren Tuckerda39b092017-03-10 13:22:32 +11004518#ifdef __APPLE__
4519static int
4520is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4521{
4522 struct stat sbuf;
4523
4524 if (strlcpy(path, display, pathlen) >= pathlen) {
4525 error("%s: display path too long", __func__);
4526 return 0;
4527 }
4528 if (display[0] != '/')
4529 return 0;
4530 if (stat(path, &sbuf) == 0) {
4531 return 1;
4532 } else {
4533 char *dot = strrchr(path, '.');
4534 if (dot != NULL) {
4535 *dot = '\0';
4536 if (stat(path, &sbuf) == 0) {
4537 return 1;
4538 }
4539 }
4540 }
4541 return 0;
4542}
4543#endif
4544
Damien Millerbd483e72000-04-30 10:00:53 +10004545int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004546x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004547{
Damien Miller57c4e872006-03-31 23:11:07 +11004548 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004549 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004550 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004551 struct addrinfo hints, *ai, *aitop;
4552 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004553 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004554
Damien Miller95def091999-11-25 00:26:21 +11004555 /* Try to open a socket for the local X server. */
4556 display = getenv("DISPLAY");
4557 if (!display) {
4558 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004559 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004560 }
Damien Miller5428f641999-11-25 11:54:57 +11004561 /*
4562 * Now we decode the value of the DISPLAY variable and make a
4563 * connection to the real X server.
4564 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004565
Damien Miller819dbb62009-01-21 16:46:26 +11004566#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004567 /* Check if display is a path to a socket (as set by launchd). */
4568 {
4569 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004570
Darren Tuckerda39b092017-03-10 13:22:32 +11004571 if (is_path_to_xsocket(display, path, sizeof(path))) {
4572 debug("x11_connect_display: $DISPLAY is launchd");
4573
4574 /* Create a socket. */
4575 sock = connect_local_xsocket_path(path);
4576 if (sock < 0)
4577 return -1;
4578
4579 /* OK, we now have a connection to the display. */
4580 return sock;
4581 }
Damien Miller819dbb62009-01-21 16:46:26 +11004582 }
4583#endif
Damien Miller5428f641999-11-25 11:54:57 +11004584 /*
4585 * Check if it is a unix domain socket. Unix domain displays are in
4586 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4587 */
Damien Miller95def091999-11-25 00:26:21 +11004588 if (strncmp(display, "unix:", 5) == 0 ||
4589 display[0] == ':') {
4590 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004591 if (sscanf(strrchr(display, ':') + 1, "%u",
4592 &display_number) != 1) {
4593 error("Could not parse display number from DISPLAY: "
4594 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004595 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004596 }
4597 /* Create a socket. */
4598 sock = connect_local_xsocket(display_number);
4599 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004600 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004601
4602 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004603 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004604 }
Damien Miller5428f641999-11-25 11:54:57 +11004605 /*
4606 * Connect to an inet socket. The DISPLAY value is supposedly
4607 * hostname:d[.s], where hostname may also be numeric IP address.
4608 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004609 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004610 cp = strchr(buf, ':');
4611 if (!cp) {
4612 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004613 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004614 }
Damien Miller95def091999-11-25 00:26:21 +11004615 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004616 /*
4617 * buf now contains the host name. But first we parse the
4618 * display number.
4619 */
Damien Miller57c4e872006-03-31 23:11:07 +11004620 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004621 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004622 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004623 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004624 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004625
Damien Miller34132e52000-01-14 15:45:46 +11004626 /* Look up the host address */
4627 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004628 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004629 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004630 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004631 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004632 error("%.100s: unknown host. (%s)", buf,
4633 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004634 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004635 }
Damien Miller34132e52000-01-14 15:45:46 +11004636 for (ai = aitop; ai; ai = ai->ai_next) {
4637 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004638 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004639 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004640 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004641 continue;
4642 }
4643 /* Connect it to the display. */
4644 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004645 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004646 6000 + display_number, strerror(errno));
4647 close(sock);
4648 continue;
4649 }
4650 /* Success */
4651 break;
Damien Miller34132e52000-01-14 15:45:46 +11004652 }
Damien Miller34132e52000-01-14 15:45:46 +11004653 freeaddrinfo(aitop);
4654 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004655 error("connect %.100s port %u: %.100s", buf,
4656 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004657 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004658 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004659 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004660 return sock;
4661}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004662
Damien Millerbd483e72000-04-30 10:00:53 +10004663/*
Damien Miller5428f641999-11-25 11:54:57 +11004664 * Requests forwarding of X11 connections, generates fake authentication
4665 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004666 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004667 */
Damien Miller4af51302000-04-16 11:18:38 +10004668void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004669x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4670 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004671{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004672 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004673 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004674 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004675 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004676 char *new_data;
4677 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004678
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004679 if (sc->x11_saved_display == NULL)
4680 sc->x11_saved_display = xstrdup(disp);
4681 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004682 error("x11_request_forwarding_with_spoofing: different "
4683 "$DISPLAY already forwarded");
4684 return;
4685 }
4686
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004687 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004688 if (cp)
4689 cp = strchr(cp, '.');
4690 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004691 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004692 else
4693 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004694
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004695 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004696 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004697 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004698
4699 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004700 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004701 for (i = 0; i < data_len; i++) {
4702 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4703 fatal("x11_request_forwarding: bad "
4704 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004705 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004706 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004707 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004708
4709 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004710 sc->x11_fake_data = xmalloc(data_len);
4711 arc4random_buf(sc->x11_fake_data, data_len);
4712 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004713 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004714
Damien Miller95def091999-11-25 00:26:21 +11004715 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004716 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004717
Damien Miller95def091999-11-25 00:26:21 +11004718 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004719 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4720 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4721 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4722 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4723 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4724 (r = sshpkt_send(ssh)) != 0 ||
4725 (r = ssh_packet_write_wait(ssh)) != 0)
4726 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004727 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004728}