blob: dcda44b07970ac755b9cf8d31dde14abf6160d73 [file] [log] [blame]
djm@openbsd.org0fa174e2019-01-19 21:31:32 +00001/* $OpenBSD: channels.c,v 1.388 2019/01/19 21:31:32 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100046#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110047#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100048#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100049#ifdef HAVE_SYS_TIME_H
50# include <sys/time.h>
51#endif
Damien Millerefc04e72006-07-10 20:26:27 +100052
53#include <netinet/in.h>
54#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055
Darren Tucker39972492006-07-12 22:22:46 +100056#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110057#include <fcntl.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000058#include <limits.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100059#include <netdb.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000060#include <stdarg.h>
Darren Tucker37f92202015-02-23 03:07:24 +110061#ifdef HAVE_STDINT_H
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000062 #include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110063#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110067#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Millerb84886b2008-05-19 15:05:07 +100070#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "ssh2.h"
markus@openbsd.org8d057842016-09-30 09:19:13 +000074#include "ssherr.h"
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000075#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "canohost.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000082#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100083#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110084#include "pathnames.h"
djm@openbsd.org115063a2018-06-06 18:22:41 +000085#include "match.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
djm@openbsd.org0fa174e2019-01-19 21:31:32 +000087#include "opacket.h" /* XXX */
88extern struct ssh *active_state; /* XXX */
89
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000090/* -- agent forwarding */
91#define NUM_SOCKS 10
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Ben Lindstrome9c99912001-06-09 00:41:05 +000093/* -- tcp forwarding */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000094/* special-case port number meaning allow any port */
95#define FWD_PERMIT_ANY_PORT 0
96
97/* special-case wildcard meaning allow any host */
98#define FWD_PERMIT_ANY_HOST "*"
99
100/* -- X11 forwarding */
101/* Maximum number of fake X11 displays to try. */
102#define MAX_DISPLAYS 1000
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
djm@openbsd.org115063a2018-06-06 18:22:41 +0000104/* Per-channel callback for pre/post select() actions */
105typedef void chan_fn(struct ssh *, Channel *c,
106 fd_set *readset, fd_set *writeset);
107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Data structure for storing which hosts are permitted for forward requests.
110 * The local sides of any remote forwards are stored in this array to prevent
111 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
112 * network (which might be behind a firewall).
113 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000114/* XXX: streamlocal wants a path instead of host:port */
115/* Overload host_to_connect; we could just make this match Forward */
116/* XXX - can we use listen_host instead of listen_path? */
djm@openbsd.org115063a2018-06-06 18:22:41 +0000117struct permission {
Damien Millerb38eff82000-04-01 11:09:21 +1000118 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000119 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000120 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000121 char *listen_path; /* Remote side should listen path. */
122 int listen_port; /* Remote side should listen port. */
markus@openbsd.org8d057842016-09-30 09:19:13 +0000123 Channel *downstream; /* Downstream mux*/
djm@openbsd.org115063a2018-06-06 18:22:41 +0000124};
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
djm@openbsd.org115063a2018-06-06 18:22:41 +0000126/*
127 * Stores the forwarding permission state for a single direction (local or
128 * remote).
129 */
130struct permission_set {
131 /*
132 * List of all local permitted host/port pairs to allow for the
133 * user.
134 */
135 u_int num_permitted_user;
136 struct permission *permitted_user;
137
138 /*
139 * List of all permitted host/port pairs to allow for the admin.
140 */
141 u_int num_permitted_admin;
142 struct permission *permitted_admin;
143
144 /*
145 * If this is true, all opens/listens are permitted. This is the
146 * case on the server on which we have to trust the client anyway,
147 * and the user could do anything after logging in.
148 */
149 int all_permitted;
150};
Ben Lindstrome9c99912001-06-09 00:41:05 +0000151
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000152/* Master structure for channels state */
153struct ssh_channels {
154 /*
155 * Pointer to an array containing all allocated channels. The array
156 * is dynamically extended as needed.
157 */
158 Channel **channels;
Damien Miller9b439df2006-07-24 14:04:00 +1000159
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000160 /*
161 * Size of the channel array. All slots of the array must always be
162 * initialized (at least the type field); unused slots set to NULL
163 */
164 u_int channels_alloc;
Damien Miller9b439df2006-07-24 14:04:00 +1000165
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000166 /*
167 * Maximum file descriptor value used in any of the channels. This is
168 * updated in channel_new.
169 */
170 int channel_max_fd;
Damien Miller9b439df2006-07-24 14:04:00 +1000171
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000172 /*
173 * 'channel_pre*' are called just before select() to add any bits
174 * relevant to channels in the select bitmasks.
175 *
176 * 'channel_post*': perform any appropriate operations for
177 * channels which have events pending.
178 */
179 chan_fn **channel_pre;
180 chan_fn **channel_post;
Darren Tucker1338b9e2011-10-02 18:57:35 +1100181
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000182 /* -- tcp forwarding */
djm@openbsd.org115063a2018-06-06 18:22:41 +0000183 struct permission_set local_perms;
184 struct permission_set remote_perms;
Damien Miller13390022005-07-06 09:44:19 +1000185
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000186 /* -- X11 forwarding */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000187
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000188 /* Saved X11 local (client) display. */
189 char *x11_saved_display;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000190
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000191 /* Saved X11 authentication protocol name. */
192 char *x11_saved_proto;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000193
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000194 /* Saved X11 authentication data. This is the real data. */
195 char *x11_saved_data;
196 u_int x11_saved_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000197
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000198 /* Deadline after which all X11 connections are refused */
199 u_int x11_refuse_time;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000200
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000201 /*
202 * Fake X11 authentication data. This is what the server will be
203 * sending us; we should replace any occurrences of this by the
204 * real data.
205 */
206 u_char *x11_fake_data;
207 u_int x11_fake_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000208
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000209 /* AF_UNSPEC or AF_INET or AF_INET6 */
210 int IPv4or6;
211};
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000212
Ben Lindstrome9c99912001-06-09 00:41:05 +0000213/* helper */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000214static void port_open_helper(struct ssh *ssh, Channel *c, char *rtype);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000215static const char *channel_rfwd_bind_host(const char *listen_host);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000216
Damien Millerbd740252008-05-19 15:37:09 +1000217/* non-blocking connect helpers */
218static int connect_next(struct channel_connect *);
219static void channel_connect_ctx_free(struct channel_connect *);
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000220static Channel *rdynamic_connect_prepare(struct ssh *, char *, char *);
221static int rdynamic_connect_finish(struct ssh *, Channel *);
Damien Millerbd740252008-05-19 15:37:09 +1000222
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000223/* Setup helper */
224static void channel_handler_init(struct ssh_channels *sc);
225
Ben Lindstrome9c99912001-06-09 00:41:05 +0000226/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000227
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000228void
229channel_init_channels(struct ssh *ssh)
230{
231 struct ssh_channels *sc;
232
djm@openbsd.org285310b2018-12-07 02:31:20 +0000233 if ((sc = calloc(1, sizeof(*sc))) == NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000234 fatal("%s: allocation failed", __func__);
235 sc->channels_alloc = 10;
236 sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
237 sc->IPv4or6 = AF_UNSPEC;
238 channel_handler_init(sc);
239
240 ssh->chanctxt = sc;
241}
242
Damien Millerb38eff82000-04-01 11:09:21 +1000243Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000244channel_by_id(struct ssh *ssh, int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000245{
246 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000247
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000248 if (id < 0 || (u_int)id >= ssh->chanctxt->channels_alloc) {
249 logit("%s: %d: bad id", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000250 return NULL;
251 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000252 c = ssh->chanctxt->channels[id];
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000253 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000254 logit("%s: %d: bad id: channel free", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000255 return NULL;
256 }
257 return c;
258}
259
markus@openbsd.org8d057842016-09-30 09:19:13 +0000260Channel *
djm@openbsd.org9f532292017-09-12 06:35:31 +0000261channel_by_remote_id(struct ssh *ssh, u_int remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000262{
263 Channel *c;
264 u_int i;
265
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000266 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
267 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000268 if (c != NULL && c->have_remote_id && c->remote_id == remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000269 return c;
270 }
271 return NULL;
272}
273
Damien Miller5428f641999-11-25 11:54:57 +1100274/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100275 * Returns the channel if it is allowed to receive protocol messages.
276 * Private channels, like listening sockets, may not receive messages.
277 */
278Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000279channel_lookup(struct ssh *ssh, int id)
Damien Millerd47c62a2005-12-13 19:33:57 +1100280{
281 Channel *c;
282
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000283 if ((c = channel_by_id(ssh, id)) == NULL)
284 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100285
Damien Millerd62f2ca2006-03-26 13:57:41 +1100286 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100287 case SSH_CHANNEL_X11_OPEN:
288 case SSH_CHANNEL_LARVAL:
289 case SSH_CHANNEL_CONNECTING:
290 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000291 case SSH_CHANNEL_RDYNAMIC_OPEN:
292 case SSH_CHANNEL_RDYNAMIC_FINISH:
Damien Millerd47c62a2005-12-13 19:33:57 +1100293 case SSH_CHANNEL_OPENING:
294 case SSH_CHANNEL_OPEN:
Damien Miller36187092013-06-10 13:07:11 +1000295 case SSH_CHANNEL_ABANDONED:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000296 case SSH_CHANNEL_MUX_PROXY:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000297 return c;
Damien Millerd47c62a2005-12-13 19:33:57 +1100298 }
299 logit("Non-public channel %d, type %d.", id, c->type);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000300 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100301}
302
303/*
Damien Millere247cc42000-05-07 12:03:14 +1000304 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000305 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100306 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000307static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000308channel_register_fds(struct ssh *ssh, Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000309 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000311 struct ssh_channels *sc = ssh->chanctxt;
312
Damien Miller95def091999-11-25 00:26:21 +1100313 /* Update the maximum file descriptor value. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000314 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, rfd);
315 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, wfd);
316 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, efd);
Damien Miller5e953212001-01-30 09:14:00 +1100317
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100318 if (rfd != -1)
319 fcntl(rfd, F_SETFD, FD_CLOEXEC);
320 if (wfd != -1 && wfd != rfd)
321 fcntl(wfd, F_SETFD, FD_CLOEXEC);
322 if (efd != -1 && efd != rfd && efd != wfd)
323 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000324
Damien Miller6f83b8e2000-05-02 09:23:45 +1000325 c->rfd = rfd;
326 c->wfd = wfd;
327 c->sock = (rfd == wfd) ? rfd : -1;
328 c->efd = efd;
329 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100330
Darren Tuckered3cdc02008-06-16 23:29:18 +1000331 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000332 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000333#ifdef _AIX
334 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000335 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000336#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100337
Damien Miller69b69aa2000-10-28 14:19:58 +1100338 /* enable nonblocking mode */
339 if (nonblock) {
340 if (rfd != -1)
341 set_nonblock(rfd);
342 if (wfd != -1)
343 set_nonblock(wfd);
344 if (efd != -1)
345 set_nonblock(efd);
346 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000347}
348
349/*
350 * Allocate a new channel object and set its type and socket. This will cause
351 * remote_name to be freed.
352 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000353Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000354channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000355 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000356{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000357 struct ssh_channels *sc = ssh->chanctxt;
358 u_int i, found;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000359 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360
Damien Miller95def091999-11-25 00:26:21 +1100361 /* Try to find a free slot where to put the new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000362 for (i = 0; i < sc->channels_alloc; i++) {
363 if (sc->channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100364 /* Found a free slot. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000365 found = i;
Damien Miller95def091999-11-25 00:26:21 +1100366 break;
367 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000368 }
369 if (i >= sc->channels_alloc) {
370 /*
371 * There are no free slots. Take last+1 slot and expand
372 * the array.
373 */
374 found = sc->channels_alloc;
375 if (sc->channels_alloc > CHANNELS_MAX_CHANNELS)
376 fatal("%s: internal error: channels_alloc %d too big",
377 __func__, sc->channels_alloc);
378 sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
379 sc->channels_alloc + 10, sizeof(*sc->channels));
380 sc->channels_alloc += 10;
381 debug2("channel: expanding %d", sc->channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100382 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000383 /* Initialize and return new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000384 c = sc->channels[found] = xcalloc(1, sizeof(Channel));
385 if ((c->input = sshbuf_new()) == NULL ||
386 (c->output = sshbuf_new()) == NULL ||
387 (c->extended = sshbuf_new()) == NULL)
388 fatal("%s: sshbuf_new failed", __func__);
Damien Miller5144df92002-01-22 23:28:45 +1100389 c->ostate = CHAN_OUTPUT_OPEN;
390 c->istate = CHAN_INPUT_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000391 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100392 c->self = found;
393 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000394 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000395 c->local_window = window;
396 c->local_window_max = window;
Damien Millerbd483e72000-04-30 10:00:53 +1000397 c->local_maxpacket = maxpack;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000398 c->remote_name = xstrdup(remote_name);
Damien Millere1537f92010-01-26 13:26:22 +1100399 c->ctl_chan = -1;
Darren Tucker876045b2010-01-08 17:08:00 +1100400 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000401 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100402 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000403 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000404}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000405
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000406static void
407channel_find_maxfd(struct ssh_channels *sc)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000408{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000409 u_int i;
410 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000411 Channel *c;
412
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000413 for (i = 0; i < sc->channels_alloc; i++) {
414 c = sc->channels[i];
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000415 if (c != NULL) {
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000416 max = MAXIMUM(max, c->rfd);
417 max = MAXIMUM(max, c->wfd);
418 max = MAXIMUM(max, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000419 }
420 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000421 sc->channel_max_fd = max;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000422}
423
424int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000425channel_close_fd(struct ssh *ssh, int *fdp)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000426{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000427 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000428 int ret = 0, fd = *fdp;
429
430 if (fd != -1) {
431 ret = close(fd);
432 *fdp = -1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000433 if (fd == sc->channel_max_fd)
434 channel_find_maxfd(sc);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000435 }
436 return ret;
437}
438
Damien Miller6f83b8e2000-05-02 09:23:45 +1000439/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000440static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000441channel_close_fds(struct ssh *ssh, Channel *c)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000442{
tb@openbsd.org50693202018-02-05 05:36:49 +0000443 int sock = c->sock, rfd = c->rfd, wfd = c->wfd, efd = c->efd;
444
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000445 channel_close_fd(ssh, &c->sock);
tb@openbsd.org50693202018-02-05 05:36:49 +0000446 if (rfd != sock)
447 channel_close_fd(ssh, &c->rfd);
448 if (wfd != sock && wfd != rfd)
449 channel_close_fd(ssh, &c->wfd);
450 if (efd != sock && efd != rfd && efd != wfd)
451 channel_close_fd(ssh, &c->efd);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000452}
453
454static void
djm@openbsd.org115063a2018-06-06 18:22:41 +0000455fwd_perm_clear(struct permission *perm)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000456{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000457 free(perm->host_to_connect);
458 free(perm->listen_host);
459 free(perm->listen_path);
460 bzero(perm, sizeof(*perm));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000461}
462
djm@openbsd.org115063a2018-06-06 18:22:41 +0000463/* Returns an printable name for the specified forwarding permission list */
464static const char *
465fwd_ident(int who, int where)
466{
467 if (who == FORWARD_ADM) {
468 if (where == FORWARD_LOCAL)
469 return "admin local";
470 else if (where == FORWARD_REMOTE)
471 return "admin remote";
472 } else if (who == FORWARD_USER) {
473 if (where == FORWARD_LOCAL)
474 return "user local";
475 else if (where == FORWARD_REMOTE)
476 return "user remote";
477 }
478 fatal("Unknown forward permission list %d/%d", who, where);
479}
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000480
djm@openbsd.org115063a2018-06-06 18:22:41 +0000481/* Returns the forwarding permission list for the specified direction */
482static struct permission_set *
483permission_set_get(struct ssh *ssh, int where)
484{
485 struct ssh_channels *sc = ssh->chanctxt;
486
487 switch (where) {
488 case FORWARD_LOCAL:
489 return &sc->local_perms;
490 break;
491 case FORWARD_REMOTE:
492 return &sc->remote_perms;
493 break;
494 default:
495 fatal("%s: invalid forwarding direction %d", __func__, where);
496 }
497}
498
499/* Reutrns pointers to the specified forwarding list and its element count */
500static void
501permission_set_get_array(struct ssh *ssh, int who, int where,
502 struct permission ***permpp, u_int **npermpp)
503{
504 struct permission_set *pset = permission_set_get(ssh, where);
505
506 switch (who) {
507 case FORWARD_USER:
508 *permpp = &pset->permitted_user;
509 *npermpp = &pset->num_permitted_user;
510 break;
511 case FORWARD_ADM:
512 *permpp = &pset->permitted_admin;
513 *npermpp = &pset->num_permitted_admin;
514 break;
515 default:
516 fatal("%s: invalid forwarding client %d", __func__, who);
517 }
518}
519
520/* Adds an entry to the spcified forwarding list */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000521static int
djm@openbsd.org115063a2018-06-06 18:22:41 +0000522permission_set_add(struct ssh *ssh, int who, int where,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000523 const char *host_to_connect, int port_to_connect,
524 const char *listen_host, const char *listen_path, int listen_port,
525 Channel *downstream)
526{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000527 struct permission **permp;
528 u_int n, *npermp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000529
djm@openbsd.org115063a2018-06-06 18:22:41 +0000530 permission_set_get_array(ssh, who, where, &permp, &npermp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000531
djm@openbsd.org115063a2018-06-06 18:22:41 +0000532 if (*npermp >= INT_MAX)
533 fatal("%s: %s overflow", __func__, fwd_ident(who, where));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000534
djm@openbsd.org115063a2018-06-06 18:22:41 +0000535 *permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
536 n = (*npermp)++;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000537#define MAYBE_DUP(s) ((s == NULL) ? NULL : xstrdup(s))
djm@openbsd.org115063a2018-06-06 18:22:41 +0000538 (*permp)[n].host_to_connect = MAYBE_DUP(host_to_connect);
539 (*permp)[n].port_to_connect = port_to_connect;
540 (*permp)[n].listen_host = MAYBE_DUP(listen_host);
541 (*permp)[n].listen_path = MAYBE_DUP(listen_path);
542 (*permp)[n].listen_port = listen_port;
543 (*permp)[n].downstream = downstream;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000544#undef MAYBE_DUP
545 return (int)n;
546}
547
548static void
549mux_remove_remote_forwardings(struct ssh *ssh, Channel *c)
550{
551 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +0000552 struct permission_set *pset = &sc->local_perms;
553 struct permission *perm;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000554 int r;
555 u_int i;
556
djm@openbsd.org115063a2018-06-06 18:22:41 +0000557 for (i = 0; i < pset->num_permitted_user; i++) {
558 perm = &pset->permitted_user[i];
559 if (perm->downstream != c)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000560 continue;
561
562 /* cancel on the server, since mux client is gone */
563 debug("channel %d: cleanup remote forward for %s:%u",
djm@openbsd.org115063a2018-06-06 18:22:41 +0000564 c->self, perm->listen_host, perm->listen_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000565 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
566 (r = sshpkt_put_cstring(ssh,
567 "cancel-tcpip-forward")) != 0 ||
568 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
569 (r = sshpkt_put_cstring(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +0000570 channel_rfwd_bind_host(perm->listen_host))) != 0 ||
571 (r = sshpkt_put_u32(ssh, perm->listen_port)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000572 (r = sshpkt_send(ssh)) != 0) {
573 fatal("%s: channel %i: %s", __func__,
574 c->self, ssh_err(r));
575 }
djm@openbsd.org115063a2018-06-06 18:22:41 +0000576 fwd_perm_clear(perm); /* unregister */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000577 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000578}
579
580/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000581void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000582channel_free(struct ssh *ssh, Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000584 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000585 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000586 u_int i, n;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000587 Channel *other;
Damien Millerb84886b2008-05-19 15:05:07 +1000588 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000589
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000590 for (n = 0, i = 0; i < sc->channels_alloc; i++) {
591 if ((other = sc->channels[i]) == NULL)
592 continue;
593 n++;
594 /* detach from mux client and prepare for closing */
595 if (c->type == SSH_CHANNEL_MUX_CLIENT &&
596 other->type == SSH_CHANNEL_MUX_PROXY &&
597 other->mux_ctx == c) {
598 other->mux_ctx = NULL;
599 other->type = SSH_CHANNEL_OPEN;
600 other->istate = CHAN_INPUT_CLOSED;
601 other->ostate = CHAN_OUTPUT_CLOSED;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000602 }
603 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000604 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000605 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000606
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000607 if (c->type == SSH_CHANNEL_MUX_CLIENT)
608 mux_remove_remote_forwardings(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000609
markus@openbsd.org5d140192018-07-27 12:03:17 +0000610 if (log_level_get() >= SYSLOG_LEVEL_DEBUG3) {
611 s = channel_open_message(ssh);
612 debug3("channel %d: status: %s", c->self, s);
613 free(s);
614 }
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000615
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000616 channel_close_fds(ssh, c);
617 sshbuf_free(c->input);
618 sshbuf_free(c->output);
619 sshbuf_free(c->extended);
620 c->input = c->output = c->extended = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000621 free(c->remote_name);
622 c->remote_name = NULL;
623 free(c->path);
624 c->path = NULL;
625 free(c->listening_addr);
626 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000627 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
628 if (cc->abandon_cb != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000629 cc->abandon_cb(ssh, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +1000630 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100631 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000632 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000633 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000634 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000635 c->filter_cleanup(ssh, c->self, c->filter_ctx);
636 sc->channels[c->self] = NULL;
millert@openbsd.org3e8d1852017-09-19 12:10:30 +0000637 explicit_bzero(c, sizeof(*c));
Darren Tuckera627d422013-06-02 07:31:17 +1000638 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639}
640
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000642channel_free_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000644 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000646 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
647 if (ssh->chanctxt->channels[i] != NULL)
648 channel_free(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649}
650
651/*
652 * Closes the sockets/fds of all channels. This is used to close extra file
653 * descriptors after a fork.
654 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000656channel_close_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000658 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000660 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
661 if (ssh->chanctxt->channels[i] != NULL)
662 channel_close_fds(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000663}
664
665/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000666 * Stop listening to channels.
667 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000668void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000669channel_stop_listening(struct ssh *ssh)
Ben Lindstrom809744e2001-07-04 05:26:06 +0000670{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000671 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000672 Channel *c;
673
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000674 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
675 c = ssh->chanctxt->channels[i];
Ben Lindstrom809744e2001-07-04 05:26:06 +0000676 if (c != NULL) {
677 switch (c->type) {
678 case SSH_CHANNEL_AUTH_SOCKET:
679 case SSH_CHANNEL_PORT_LISTENER:
680 case SSH_CHANNEL_RPORT_LISTENER:
681 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000682 case SSH_CHANNEL_UNIX_LISTENER:
683 case SSH_CHANNEL_RUNIX_LISTENER:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000684 channel_close_fd(ssh, &c->sock);
685 channel_free(ssh, c);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000686 break;
687 }
688 }
689 }
690}
691
692/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 * Returns true if no channel has too much buffered data, and false if one or
694 * more channel is overfull.
695 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000697channel_not_very_much_buffered_data(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000698{
699 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000700 u_int maxsize = ssh_packet_get_maxsize(ssh);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701 Channel *c;
702
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000703 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
704 c = ssh->chanctxt->channels[i];
705 if (c == NULL || c->type != SSH_CHANNEL_OPEN)
706 continue;
707 if (sshbuf_len(c->output) > maxsize) {
708 debug2("channel %d: big output buffer %zu > %u",
709 c->self, sshbuf_len(c->output), maxsize);
710 return 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711 }
712 }
713 return 1;
714}
715
716/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000717int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000718channel_still_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000720 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 Channel *c;
722
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000723 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
724 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000725 if (c == NULL)
726 continue;
727 switch (c->type) {
728 case SSH_CHANNEL_X11_LISTENER:
729 case SSH_CHANNEL_PORT_LISTENER:
730 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100731 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000732 case SSH_CHANNEL_CLOSED:
733 case SSH_CHANNEL_AUTH_SOCKET:
734 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000735 case SSH_CHANNEL_RDYNAMIC_OPEN:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 case SSH_CHANNEL_CONNECTING:
737 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000738 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000739 case SSH_CHANNEL_UNIX_LISTENER:
740 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741 continue;
742 case SSH_CHANNEL_LARVAL:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000743 continue;
744 case SSH_CHANNEL_OPENING:
745 case SSH_CHANNEL_OPEN:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000746 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100748 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000749 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750 return 1;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000752 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753 /* NOTREACHED */
754 }
755 }
756 return 0;
757}
758
759/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000761channel_find_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000763 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764 Channel *c;
765
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000766 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
767 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000768 if (c == NULL || !c->have_remote_id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769 continue;
770 switch (c->type) {
771 case SSH_CHANNEL_CLOSED:
772 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000773 case SSH_CHANNEL_RDYNAMIC_OPEN:
774 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775 case SSH_CHANNEL_X11_LISTENER:
776 case SSH_CHANNEL_PORT_LISTENER:
777 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100778 case SSH_CHANNEL_MUX_LISTENER:
779 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000780 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000781 case SSH_CHANNEL_OPENING:
782 case SSH_CHANNEL_CONNECTING:
783 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000784 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000785 case SSH_CHANNEL_UNIX_LISTENER:
786 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000787 continue;
788 case SSH_CHANNEL_LARVAL:
789 case SSH_CHANNEL_AUTH_SOCKET:
790 case SSH_CHANNEL_OPEN:
791 case SSH_CHANNEL_X11_OPEN:
792 return i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000793 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000794 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000795 /* NOTREACHED */
796 }
797 }
798 return -1;
799}
800
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +0000801/* Returns the state of the channel's extended usage flag */
802const char *
803channel_format_extended_usage(const Channel *c)
804{
805 if (c->efd == -1)
806 return "closed";
807
808 switch (c->extended_usage) {
809 case CHAN_EXTENDED_WRITE:
810 return "write";
811 case CHAN_EXTENDED_READ:
812 return "read";
813 case CHAN_EXTENDED_IGNORE:
814 return "ignore";
815 default:
816 return "UNKNOWN";
817 }
818}
819
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000820static char *
821channel_format_status(const Channel *c)
822{
823 char *ret = NULL;
824
825 xasprintf(&ret, "t%d %s%u i%u/%zu o%u/%zu e[%s]/%zu "
826 "fd %d/%d/%d sock %d cc %d",
827 c->type,
828 c->have_remote_id ? "r" : "nr", c->remote_id,
829 c->istate, sshbuf_len(c->input),
830 c->ostate, sshbuf_len(c->output),
831 channel_format_extended_usage(c), sshbuf_len(c->extended),
832 c->rfd, c->wfd, c->efd, c->sock, c->ctl_chan);
833 return ret;
834}
835
Ben Lindstrome9c99912001-06-09 00:41:05 +0000836/*
837 * Returns a message describing the currently open forwarded connections,
838 * suitable for sending to the client. The message contains crlf pairs for
839 * newlines.
840 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000841char *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000842channel_open_message(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000844 struct sshbuf *buf;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000845 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000846 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000847 int r;
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000848 char *cp, *ret;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000849
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000850 if ((buf = sshbuf_new()) == NULL)
851 fatal("%s: sshbuf_new", __func__);
852 if ((r = sshbuf_putf(buf,
853 "The following connections are open:\r\n")) != 0)
854 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
855 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
856 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000857 if (c == NULL)
858 continue;
859 switch (c->type) {
860 case SSH_CHANNEL_X11_LISTENER:
861 case SSH_CHANNEL_PORT_LISTENER:
862 case SSH_CHANNEL_RPORT_LISTENER:
863 case SSH_CHANNEL_CLOSED:
864 case SSH_CHANNEL_AUTH_SOCKET:
865 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000866 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100867 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000868 case SSH_CHANNEL_UNIX_LISTENER:
869 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000870 continue;
871 case SSH_CHANNEL_LARVAL:
872 case SSH_CHANNEL_OPENING:
873 case SSH_CHANNEL_CONNECTING:
874 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000875 case SSH_CHANNEL_RDYNAMIC_OPEN:
876 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000877 case SSH_CHANNEL_OPEN:
878 case SSH_CHANNEL_X11_OPEN:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000879 case SSH_CHANNEL_MUX_PROXY:
880 case SSH_CHANNEL_MUX_CLIENT:
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000881 cp = channel_format_status(c);
882 if ((r = sshbuf_putf(buf, " #%d %.300s (%s)\r\n",
883 c->self, c->remote_name, cp)) != 0) {
884 free(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000885 fatal("%s: sshbuf_putf: %s",
886 __func__, ssh_err(r));
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000887 }
888 free(cp);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000889 continue;
890 default:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000891 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892 /* NOTREACHED */
893 }
894 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000895 if ((ret = sshbuf_dup_string(buf)) == NULL)
896 fatal("%s: sshbuf_dup_string", __func__);
897 sshbuf_free(buf);
898 return ret;
899}
900
901static void
902open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
903{
904 int r;
905
906 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
907 (r = sshpkt_put_cstring(ssh, type)) != 0 ||
908 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
909 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
910 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
911 fatal("%s: channel %i: open: %s", where, c->self, ssh_err(r));
912 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000913}
914
915void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000916channel_send_open(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000917{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000918 Channel *c = channel_lookup(ssh, id);
919 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000920
Ben Lindstrome9c99912001-06-09 00:41:05 +0000921 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000922 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000923 return;
924 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000925 debug2("channel %d: send open", id);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000926 open_preamble(ssh, __func__, c, c->ctype);
927 if ((r = sshpkt_send(ssh)) != 0)
928 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000929}
930
931void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000932channel_request_start(struct ssh *ssh, int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000933{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000934 Channel *c = channel_lookup(ssh, id);
935 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000936
Ben Lindstrome9c99912001-06-09 00:41:05 +0000937 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000938 logit("%s: %d: unknown channel id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000939 return;
940 }
djm@openbsd.org9f532292017-09-12 06:35:31 +0000941 if (!c->have_remote_id)
942 fatal(":%s: channel %d: no remote id", __func__, c->self);
943
Damien Miller0e220db2004-06-15 10:34:08 +1000944 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000945 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_REQUEST)) != 0 ||
946 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
947 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
948 (r = sshpkt_put_u8(ssh, wantconfirm)) != 0) {
949 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
950 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000951}
Damien Miller4f7becb2006-03-26 14:10:14 +1100952
Ben Lindstrome9c99912001-06-09 00:41:05 +0000953void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000954channel_register_status_confirm(struct ssh *ssh, int id,
955 channel_confirm_cb *cb, channel_confirm_abandon_cb *abandon_cb, void *ctx)
Damien Millerb84886b2008-05-19 15:05:07 +1000956{
957 struct channel_confirm *cc;
958 Channel *c;
959
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000960 if ((c = channel_lookup(ssh, id)) == NULL)
961 fatal("%s: %d: bad id", __func__, id);
Damien Millerb84886b2008-05-19 15:05:07 +1000962
Damien Miller6c81fee2013-11-08 12:19:55 +1100963 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000964 cc->cb = cb;
965 cc->abandon_cb = abandon_cb;
966 cc->ctx = ctx;
967 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
968}
969
970void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000971channel_register_open_confirm(struct ssh *ssh, int id,
972 channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000973{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000974 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000975
Ben Lindstrome9c99912001-06-09 00:41:05 +0000976 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000977 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000978 return;
979 }
Damien Millerb84886b2008-05-19 15:05:07 +1000980 c->open_confirm = fn;
981 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000982}
Damien Miller4f7becb2006-03-26 14:10:14 +1100983
Ben Lindstrome9c99912001-06-09 00:41:05 +0000984void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000985channel_register_cleanup(struct ssh *ssh, int id,
986 channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000987{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000988 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000989
Ben Lindstrome9c99912001-06-09 00:41:05 +0000990 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000991 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000992 return;
993 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000994 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100995 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000996}
Damien Miller4f7becb2006-03-26 14:10:14 +1100997
Ben Lindstrome9c99912001-06-09 00:41:05 +0000998void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000999channel_cancel_cleanup(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001000{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001001 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001002
Ben Lindstrome9c99912001-06-09 00:41:05 +00001003 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001004 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001005 return;
1006 }
Ben Lindstrom809744e2001-07-04 05:26:06 +00001007 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +11001008 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001009}
Damien Miller4f7becb2006-03-26 14:10:14 +11001010
Ben Lindstrome9c99912001-06-09 00:41:05 +00001011void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001012channel_register_filter(struct ssh *ssh, int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +10001013 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001014{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001015 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001016
Ben Lindstrome9c99912001-06-09 00:41:05 +00001017 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001018 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001019 return;
1020 }
Damien Miller077b2382005-12-31 16:22:32 +11001021 c->input_filter = ifn;
1022 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001023 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +10001024 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001025}
1026
1027void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001028channel_set_fds(struct ssh *ssh, int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +10001029 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001030{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001031 Channel *c = channel_lookup(ssh, id);
1032 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001033
Ben Lindstrome9c99912001-06-09 00:41:05 +00001034 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
1035 fatal("channel_activate for non-larval channel %d.", id);
djm@openbsd.org9f532292017-09-12 06:35:31 +00001036 if (!c->have_remote_id)
1037 fatal(":%s: channel %d: no remote id", __func__, c->self);
1038
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001039 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001040 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +11001041 c->local_window = c->local_window_max = window_max;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001042
1043 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
1044 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1045 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1046 (r = sshpkt_send(ssh)) != 0)
1047 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001048}
1049
Ben Lindstrombba81212001-06-25 05:01:22 +00001050static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001051channel_pre_listener(struct ssh *ssh, Channel *c,
1052 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001053{
1054 FD_SET(c->sock, readset);
1055}
1056
Ben Lindstrombba81212001-06-25 05:01:22 +00001057static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001058channel_pre_connecting(struct ssh *ssh, Channel *c,
1059 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001060{
1061 debug3("channel %d: waiting for connection", c->self);
1062 FD_SET(c->sock, writeset);
1063}
1064
Ben Lindstrombba81212001-06-25 05:01:22 +00001065static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001066channel_pre_open(struct ssh *ssh, Channel *c,
1067 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001068{
Damien Miller33b13562000-04-04 14:38:59 +10001069 if (c->istate == CHAN_INPUT_OPEN &&
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001070 c->remote_window > 0 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001071 sshbuf_len(c->input) < c->remote_window &&
1072 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Miller33b13562000-04-04 14:38:59 +10001073 FD_SET(c->rfd, readset);
1074 if (c->ostate == CHAN_OUTPUT_OPEN ||
1075 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001076 if (sshbuf_len(c->output) > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001077 FD_SET(c->wfd, writeset);
1078 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +00001079 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001080 debug2("channel %d: "
1081 "obuf_empty delayed efd %d/(%zu)", c->self,
1082 c->efd, sshbuf_len(c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001083 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001084 chan_obuf_empty(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10001085 }
1086 }
1087 /** XXX check close conditions, too */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001088 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED &&
1089 c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +10001090 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001091 sshbuf_len(c->extended) > 0)
Damien Miller33b13562000-04-04 14:38:59 +10001092 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +10001093 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
1094 (c->extended_usage == CHAN_EXTENDED_READ ||
1095 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001096 sshbuf_len(c->extended) < c->remote_window)
Damien Miller33b13562000-04-04 14:38:59 +10001097 FD_SET(c->efd, readset);
1098 }
Damien Miller0e220db2004-06-15 10:34:08 +10001099 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +10001100}
1101
Damien Millerb38eff82000-04-01 11:09:21 +10001102/*
1103 * This is a special state for X11 authentication spoofing. An opened X11
1104 * connection (when authentication spoofing is being done) remains in this
1105 * state until the first packet has been completely read. The authentication
1106 * data in that packet is then substituted by the real data if it matches the
1107 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +10001108 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +00001109 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +10001110 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001111static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001112x11_open_helper(struct ssh *ssh, struct sshbuf *b)
Damien Millerb38eff82000-04-01 11:09:21 +10001113{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001114 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001115 u_char *ucp;
1116 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001117
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001118 /* Is this being called after the refusal deadline? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001119 if (sc->x11_refuse_time != 0 &&
1120 (u_int)monotime() >= sc->x11_refuse_time) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001121 verbose("Rejected X11 connection after ForwardX11Timeout "
1122 "expired");
1123 return -1;
1124 }
1125
Damien Millerb38eff82000-04-01 11:09:21 +10001126 /* Check if the fixed size part of the packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001127 if (sshbuf_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +10001128 return 0;
1129
1130 /* Parse the lengths of variable-length fields. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001131 ucp = sshbuf_mutable_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +10001132 if (ucp[0] == 0x42) { /* Byte order MSB first. */
1133 proto_len = 256 * ucp[6] + ucp[7];
1134 data_len = 256 * ucp[8] + ucp[9];
1135 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
1136 proto_len = ucp[6] + 256 * ucp[7];
1137 data_len = ucp[8] + 256 * ucp[9];
1138 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +10001139 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001140 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +10001141 return -1;
1142 }
1143
1144 /* Check if the whole packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001145 if (sshbuf_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +10001146 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
1147 return 0;
1148
1149 /* Check if authentication protocol matches. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001150 if (proto_len != strlen(sc->x11_saved_proto) ||
1151 memcmp(ucp + 12, sc->x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001152 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +10001153 return -1;
1154 }
1155 /* Check if authentication data matches our fake data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001156 if (data_len != sc->x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001157 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001158 sc->x11_fake_data, sc->x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001159 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +10001160 return -1;
1161 }
1162 /* Check fake data length */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001163 if (sc->x11_fake_data_len != sc->x11_saved_data_len) {
Damien Millerb38eff82000-04-01 11:09:21 +10001164 error("X11 fake_data_len %d != saved_data_len %d",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001165 sc->x11_fake_data_len, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001166 return -1;
1167 }
1168 /*
1169 * Received authentication protocol and data match
1170 * our fake data. Substitute the fake data with real
1171 * data.
1172 */
1173 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001174 sc->x11_saved_data, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001175 return 1;
1176}
1177
Ben Lindstrombba81212001-06-25 05:01:22 +00001178static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001179channel_pre_x11_open(struct ssh *ssh, Channel *c,
1180 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001181{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001182 int ret = x11_open_helper(ssh, c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001183
1184 /* c->force_drain = 1; */
1185
Damien Millerb38eff82000-04-01 11:09:21 +10001186 if (ret == 1) {
1187 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001188 channel_pre_open(ssh, c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001189 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001190 logit("X11 connection rejected because of wrong authentication.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001191 debug2("X11 rejected %d i%d/o%d",
1192 c->self, c->istate, c->ostate);
1193 chan_read_failed(ssh, c);
1194 sshbuf_reset(c->input);
1195 chan_ibuf_empty(ssh, c);
1196 sshbuf_reset(c->output);
1197 chan_write_failed(ssh, c);
Damien Millerfbdeece2003-09-02 22:52:31 +10001198 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001199 }
1200}
1201
Damien Millere1537f92010-01-26 13:26:22 +11001202static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001203channel_pre_mux_client(struct ssh *ssh,
1204 Channel *c, fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11001205{
Damien Millerd530f5f2010-05-21 14:57:10 +10001206 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001207 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Millere1537f92010-01-26 13:26:22 +11001208 FD_SET(c->rfd, readset);
1209 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1210 /* clear buffer immediately (discard any partial packet) */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001211 sshbuf_reset(c->input);
1212 chan_ibuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001213 /* Start output drain. XXX just kill chan? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001214 chan_rcvd_oclose(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001215 }
1216 if (c->ostate == CHAN_OUTPUT_OPEN ||
1217 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001218 if (sshbuf_len(c->output) > 0)
Damien Millere1537f92010-01-26 13:26:22 +11001219 FD_SET(c->wfd, writeset);
1220 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001221 chan_obuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001222 }
1223}
1224
Ben Lindstromb3921512001-04-11 15:57:50 +00001225/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +00001226static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001227channel_decode_socks4(Channel *c, struct sshbuf *input, struct sshbuf *output)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001228{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001229 const u_char *p;
1230 char *host;
Damien Miller1781f532009-01-28 16:24:41 +11001231 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001232 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001233 struct {
1234 u_int8_t version;
1235 u_int8_t command;
1236 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001237 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001238 } s4_req, s4_rsp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001239 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001240
Ben Lindstromb3921512001-04-11 15:57:50 +00001241 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001242
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001243 have = sshbuf_len(input);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001244 len = sizeof(s4_req);
1245 if (have < len)
1246 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001247 p = sshbuf_ptr(input);
Damien Miller1781f532009-01-28 16:24:41 +11001248
1249 need = 1;
1250 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1251 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1252 debug2("channel %d: socks4a request", c->self);
1253 /* ... and needs an extra string (the hostname) */
1254 need = 2;
1255 }
1256 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001257 for (found = 0, i = len; i < have; i++) {
1258 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001259 found++;
1260 if (found == need)
1261 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001262 }
1263 if (i > 1024) {
1264 /* the peer is probably sending garbage */
1265 debug("channel %d: decode socks4: too long",
1266 c->self);
1267 return -1;
1268 }
1269 }
Damien Miller1781f532009-01-28 16:24:41 +11001270 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001271 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001272 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1273 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1274 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1275 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001276 debug("channels %d: decode socks4: %s", c->self, ssh_err(r));
1277 return -1;
1278 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001279 have = sshbuf_len(input);
1280 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001281 if (memchr(p, '\0', have) == NULL) {
1282 error("channel %d: decode socks4: user not nul terminated",
Damien Miller13481292014-02-27 10:18:32 +11001283 c->self);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001284 return -1;
1285 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001286 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001287 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001288 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001289 strlcpy(username, p, sizeof(username));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001290 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001291 fatal("%s: channel %d: consume: %s", __func__,
1292 c->self, ssh_err(r));
1293 }
Darren Tuckera627d422013-06-02 07:31:17 +10001294 free(c->path);
1295 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001296 if (need == 1) { /* SOCKS4: one string */
1297 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001298 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001299 } else { /* SOCKS4A: two strings */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001300 have = sshbuf_len(input);
1301 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001302 if (memchr(p, '\0', have) == NULL) {
1303 error("channel %d: decode socks4a: host not nul "
1304 "terminated", c->self);
1305 return -1;
1306 }
Damien Miller1781f532009-01-28 16:24:41 +11001307 len = strlen(p);
1308 debug2("channel %d: decode socks4a: host %s/%d",
1309 c->self, p, len);
1310 len++; /* trailing '\0' */
Damien Millera1c1b6c2009-01-28 16:29:49 +11001311 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001312 error("channel %d: hostname \"%.100s\" too long",
1313 c->self, p);
1314 return -1;
1315 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001316 c->path = xstrdup(p);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001317 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001318 fatal("%s: channel %d: consume: %s", __func__,
1319 c->self, ssh_err(r));
1320 }
Damien Miller1781f532009-01-28 16:24:41 +11001321 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001322 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001323
Damien Millerfbdeece2003-09-02 22:52:31 +10001324 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001325 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001326
Ben Lindstromb3921512001-04-11 15:57:50 +00001327 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001328 debug("channel %d: cannot handle: %s cn %d",
1329 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001330 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001331 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001332 s4_rsp.version = 0; /* vn: 0 for reply */
1333 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001334 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001335 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001336 if ((r = sshbuf_put(output, &s4_rsp, sizeof(s4_rsp))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001337 fatal("%s: channel %d: append reply: %s", __func__,
1338 c->self, ssh_err(r));
1339 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001340 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001341}
1342
Darren Tucker46471c92003-07-03 13:55:19 +10001343/* try to decode a socks5 header */
1344#define SSH_SOCKS5_AUTHDONE 0x1000
1345#define SSH_SOCKS5_NOAUTH 0x00
1346#define SSH_SOCKS5_IPV4 0x01
1347#define SSH_SOCKS5_DOMAIN 0x03
1348#define SSH_SOCKS5_IPV6 0x04
1349#define SSH_SOCKS5_CONNECT 0x01
1350#define SSH_SOCKS5_SUCCESS 0x00
1351
1352static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001353channel_decode_socks5(Channel *c, struct sshbuf *input, struct sshbuf *output)
Darren Tucker46471c92003-07-03 13:55:19 +10001354{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001355 /* XXX use get/put_u8 instead of trusting struct padding */
Darren Tucker46471c92003-07-03 13:55:19 +10001356 struct {
1357 u_int8_t version;
1358 u_int8_t command;
1359 u_int8_t reserved;
1360 u_int8_t atyp;
1361 } s5_req, s5_rsp;
1362 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001363 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001364 const u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001365 u_int have, need, i, found, nmethods, addrlen, af;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001366 int r;
Darren Tucker46471c92003-07-03 13:55:19 +10001367
1368 debug2("channel %d: decode socks5", c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001369 p = sshbuf_ptr(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001370 if (p[0] != 0x05)
1371 return -1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001372 have = sshbuf_len(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001373 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1374 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001375 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001376 return 0;
1377 nmethods = p[1];
1378 if (have < nmethods + 2)
1379 return 0;
1380 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001381 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001382 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001383 found = 1;
1384 break;
1385 }
1386 }
1387 if (!found) {
1388 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1389 c->self);
1390 return -1;
1391 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001392 if ((r = sshbuf_consume(input, nmethods + 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001393 fatal("%s: channel %d: consume: %s", __func__,
1394 c->self, ssh_err(r));
1395 }
1396 /* version, method */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001397 if ((r = sshbuf_put_u8(output, 0x05)) != 0 ||
1398 (r = sshbuf_put_u8(output, SSH_SOCKS5_NOAUTH)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001399 fatal("%s: channel %d: append reply: %s", __func__,
1400 c->self, ssh_err(r));
1401 }
Darren Tucker46471c92003-07-03 13:55:19 +10001402 c->flags |= SSH_SOCKS5_AUTHDONE;
1403 debug2("channel %d: socks5 auth done", c->self);
1404 return 0; /* need more */
1405 }
1406 debug2("channel %d: socks5 post auth", c->self);
1407 if (have < sizeof(s5_req)+1)
1408 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001409 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001410 if (s5_req.version != 0x05 ||
1411 s5_req.command != SSH_SOCKS5_CONNECT ||
1412 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001413 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001414 return -1;
1415 }
Darren Tucker47eede72005-03-14 23:08:12 +11001416 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001417 case SSH_SOCKS5_IPV4:
1418 addrlen = 4;
1419 af = AF_INET;
1420 break;
1421 case SSH_SOCKS5_DOMAIN:
1422 addrlen = p[sizeof(s5_req)];
1423 af = -1;
1424 break;
1425 case SSH_SOCKS5_IPV6:
1426 addrlen = 16;
1427 af = AF_INET6;
1428 break;
1429 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001430 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001431 return -1;
1432 }
Damien Miller0f077072006-07-10 22:21:02 +10001433 need = sizeof(s5_req) + addrlen + 2;
1434 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1435 need++;
1436 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001437 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001438 if ((r = sshbuf_consume(input, sizeof(s5_req))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001439 fatal("%s: channel %d: consume: %s", __func__,
1440 c->self, ssh_err(r));
1441 }
1442 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1443 /* host string length */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001444 if ((r = sshbuf_consume(input, 1)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001445 fatal("%s: channel %d: consume: %s", __func__,
1446 c->self, ssh_err(r));
1447 }
1448 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001449 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1450 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001451 debug("channel %d: parse addr/port: %s", c->self, ssh_err(r));
1452 return -1;
1453 }
Darren Tucker46471c92003-07-03 13:55:19 +10001454 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001455 free(c->path);
1456 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001457 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001458 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001459 error("channel %d: dynamic request: socks5 hostname "
1460 "\"%.100s\" too long", c->self, dest_addr);
1461 return -1;
1462 }
1463 c->path = xstrdup(dest_addr);
1464 } else {
1465 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1466 return -1;
1467 c->path = xstrdup(ntop);
1468 }
Darren Tucker46471c92003-07-03 13:55:19 +10001469 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001470
Damien Millerfbdeece2003-09-02 22:52:31 +10001471 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001472 c->self, c->path, c->host_port, s5_req.command);
1473
1474 s5_rsp.version = 0x05;
1475 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1476 s5_rsp.reserved = 0; /* ignored */
1477 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001478 dest_port = 0; /* ignored */
1479
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001480 if ((r = sshbuf_put(output, &s5_rsp, sizeof(s5_rsp))) != 0 ||
1481 (r = sshbuf_put_u32(output, ntohl(INADDR_ANY))) != 0 ||
1482 (r = sshbuf_put(output, &dest_port, sizeof(dest_port))) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001483 fatal("%s: channel %d: append reply: %s", __func__,
1484 c->self, ssh_err(r));
Darren Tucker46471c92003-07-03 13:55:19 +10001485 return 1;
1486}
1487
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001488Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001489channel_connect_stdio_fwd(struct ssh *ssh,
1490 const char *host_to_connect, u_short port_to_connect, int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001491{
1492 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001493
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001494 debug("%s %s:%d", __func__, host_to_connect, port_to_connect);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001495
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001496 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001497 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1498 0, "stdio-forward", /*nonblock*/0);
1499
1500 c->path = xstrdup(host_to_connect);
1501 c->host_port = port_to_connect;
1502 c->listening_port = 0;
1503 c->force_drain = 1;
1504
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001505 channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
1506 port_open_helper(ssh, c, "direct-tcpip");
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001507
1508 return c;
1509}
1510
Ben Lindstromb3921512001-04-11 15:57:50 +00001511/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001512static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001513channel_pre_dynamic(struct ssh *ssh, Channel *c,
1514 fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001515{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001516 const u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001517 u_int have;
1518 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001519
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001520 have = sshbuf_len(c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001521 debug2("channel %d: pre_dynamic: have %d", c->self, have);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001522 /* sshbuf_dump(c->input, stderr); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001523 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001524 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001525 /* need more */
1526 FD_SET(c->sock, readset);
1527 return;
1528 }
1529 /* try to guess the protocol */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001530 p = sshbuf_ptr(c->input);
1531 /* XXX sshbuf_peek_u8? */
Ben Lindstromb3921512001-04-11 15:57:50 +00001532 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001533 case 0x04:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001534 ret = channel_decode_socks4(c, c->input, c->output);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001535 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001536 case 0x05:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001537 ret = channel_decode_socks5(c, c->input, c->output);
Darren Tucker46471c92003-07-03 13:55:19 +10001538 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001539 default:
1540 ret = -1;
1541 break;
1542 }
1543 if (ret < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001544 chan_mark_dead(ssh, c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001545 } else if (ret == 0) {
1546 debug2("channel %d: pre_dynamic: need more", c->self);
1547 /* need more */
1548 FD_SET(c->sock, readset);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001549 if (sshbuf_len(c->output))
1550 FD_SET(c->sock, writeset);
Ben Lindstromb3921512001-04-11 15:57:50 +00001551 } else {
1552 /* switch to the next state */
1553 c->type = SSH_CHANNEL_OPENING;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001554 port_open_helper(ssh, c, "direct-tcpip");
Ben Lindstromb3921512001-04-11 15:57:50 +00001555 }
1556}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001557
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001558/* simulate read-error */
1559static void
1560rdynamic_close(struct ssh *ssh, Channel *c)
1561{
1562 c->type = SSH_CHANNEL_OPEN;
1563 chan_read_failed(ssh, c);
1564 sshbuf_reset(c->input);
1565 chan_ibuf_empty(ssh, c);
1566 sshbuf_reset(c->output);
1567 chan_write_failed(ssh, c);
1568}
1569
1570/* reverse dynamic port forwarding */
1571static void
1572channel_before_prepare_select_rdynamic(struct ssh *ssh, Channel *c)
1573{
1574 const u_char *p;
1575 u_int have, len;
1576 int r, ret;
1577
1578 have = sshbuf_len(c->output);
1579 debug2("channel %d: pre_rdynamic: have %d", c->self, have);
1580 /* sshbuf_dump(c->output, stderr); */
1581 /* EOF received */
1582 if (c->flags & CHAN_EOF_RCVD) {
1583 if ((r = sshbuf_consume(c->output, have)) != 0) {
1584 fatal("%s: channel %d: consume: %s",
1585 __func__, c->self, ssh_err(r));
1586 }
1587 rdynamic_close(ssh, c);
1588 return;
1589 }
1590 /* check if the fixed size part of the packet is in buffer. */
1591 if (have < 3)
1592 return;
1593 /* try to guess the protocol */
1594 p = sshbuf_ptr(c->output);
1595 switch (p[0]) {
1596 case 0x04:
1597 /* switch input/output for reverse forwarding */
1598 ret = channel_decode_socks4(c, c->output, c->input);
1599 break;
1600 case 0x05:
1601 ret = channel_decode_socks5(c, c->output, c->input);
1602 break;
1603 default:
1604 ret = -1;
1605 break;
1606 }
1607 if (ret < 0) {
1608 rdynamic_close(ssh, c);
1609 } else if (ret == 0) {
1610 debug2("channel %d: pre_rdynamic: need more", c->self);
1611 /* send socks request to peer */
1612 len = sshbuf_len(c->input);
1613 if (len > 0 && len < c->remote_window) {
1614 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
1615 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1616 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
1617 (r = sshpkt_send(ssh)) != 0) {
1618 fatal("%s: channel %i: rdynamic: %s", __func__,
1619 c->self, ssh_err(r));
1620 }
1621 if ((r = sshbuf_consume(c->input, len)) != 0) {
1622 fatal("%s: channel %d: consume: %s",
1623 __func__, c->self, ssh_err(r));
1624 }
1625 c->remote_window -= len;
1626 }
1627 } else if (rdynamic_connect_finish(ssh, c) < 0) {
1628 /* the connect failed */
1629 rdynamic_close(ssh, c);
1630 }
1631}
1632
Damien Millerb38eff82000-04-01 11:09:21 +10001633/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001634static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001635channel_post_x11_listener(struct ssh *ssh, Channel *c,
1636 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001637{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001638 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001639 struct sockaddr_storage addr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001640 int r, newsock, oerrno, remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001641 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001642 char buf[16384], *remote_ipaddr;
Damien Millerb38eff82000-04-01 11:09:21 +10001643
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001644 if (!FD_ISSET(c->sock, readset))
1645 return;
Damien Millerbd483e72000-04-30 10:00:53 +10001646
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001647 debug("X11 connection requested.");
1648 addrlen = sizeof(addr);
1649 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1650 if (c->single_connection) {
1651 oerrno = errno;
1652 debug2("single_connection: closing X11 listener.");
1653 channel_close_fd(ssh, &c->sock);
1654 chan_mark_dead(ssh, c);
1655 errno = oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001656 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001657 if (newsock < 0) {
1658 if (errno != EINTR && errno != EWOULDBLOCK &&
1659 errno != ECONNABORTED)
1660 error("accept: %.100s", strerror(errno));
1661 if (errno == EMFILE || errno == ENFILE)
1662 c->notbefore = monotime() + 1;
1663 return;
1664 }
1665 set_nodelay(newsock);
1666 remote_ipaddr = get_peer_ipaddr(newsock);
1667 remote_port = get_peer_port(newsock);
1668 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1669 remote_ipaddr, remote_port);
1670
1671 nc = channel_new(ssh, "accepted x11 socket",
1672 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1673 c->local_window_max, c->local_maxpacket, 0, buf, 1);
1674 open_preamble(ssh, __func__, nc, "x11");
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001675 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1676 (r = sshpkt_put_u32(ssh, remote_port)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001677 fatal("%s: channel %i: reply %s", __func__,
1678 c->self, ssh_err(r));
1679 }
1680 if ((r = sshpkt_send(ssh)) != 0)
1681 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
1682 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001683}
1684
Ben Lindstrombba81212001-06-25 05:01:22 +00001685static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001686port_open_helper(struct ssh *ssh, Channel *c, char *rtype)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001687{
Damien Miller4def1842013-12-29 17:45:26 +11001688 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001689 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001690 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001691 int remote_port = get_peer_port(c->sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001692 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001693
Damien Millerd6369432010-02-02 17:02:07 +11001694 if (remote_port == -1) {
1695 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001696 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001697 remote_ipaddr = xstrdup("127.0.0.1");
1698 remote_port = 65535;
1699 }
1700
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001701 free(c->remote_name);
1702 xasprintf(&c->remote_name,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001703 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001704 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001705 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001706 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001707
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001708 open_preamble(ssh, __func__, c, rtype);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001709 if (strcmp(rtype, "direct-tcpip") == 0) {
1710 /* target host, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001711 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1712 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) {
1713 fatal("%s: channel %i: reply %s", __func__,
1714 c->self, ssh_err(r));
1715 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001716 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1717 /* target path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001718 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1719 fatal("%s: channel %i: reply %s", __func__,
1720 c->self, ssh_err(r));
1721 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001722 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1723 /* listen path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001724 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1725 fatal("%s: channel %i: reply %s", __func__,
1726 c->self, ssh_err(r));
1727 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001728 } else {
1729 /* listen address, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001730 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1731 (r = sshpkt_put_u32(ssh, local_port)) != 0) {
1732 fatal("%s: channel %i: reply %s", __func__,
1733 c->self, ssh_err(r));
1734 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001735 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001736 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1737 /* reserved for future owner/mode info */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001738 if ((r = sshpkt_put_cstring(ssh, "")) != 0) {
1739 fatal("%s: channel %i: reply %s", __func__,
1740 c->self, ssh_err(r));
1741 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001742 } else {
1743 /* originator host and port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001744 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1745 (r = sshpkt_put_u32(ssh, (u_int)remote_port)) != 0) {
1746 fatal("%s: channel %i: reply %s", __func__,
1747 c->self, ssh_err(r));
1748 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001749 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001750 if ((r = sshpkt_send(ssh)) != 0)
1751 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10001752 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001753 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001754}
1755
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001756void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001757channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001758{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001759 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001760}
1761
Damien Millerb38eff82000-04-01 11:09:21 +10001762/*
1763 * This socket is listening for connections to a forwarded TCP/IP port.
1764 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001765static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001766channel_post_port_listener(struct ssh *ssh, Channel *c,
1767 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001768{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001769 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001770 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001771 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001772 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001773 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001774
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001775 if (!FD_ISSET(c->sock, readset))
1776 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001777
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001778 debug("Connection to port %d forwarding to %.100s port %d requested.",
1779 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001780
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001781 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1782 nextstate = SSH_CHANNEL_OPENING;
1783 rtype = "forwarded-tcpip";
1784 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1785 nextstate = SSH_CHANNEL_OPENING;
1786 rtype = "forwarded-streamlocal@openssh.com";
1787 } else if (c->host_port == PORT_STREAMLOCAL) {
1788 nextstate = SSH_CHANNEL_OPENING;
1789 rtype = "direct-streamlocal@openssh.com";
1790 } else if (c->host_port == 0) {
1791 nextstate = SSH_CHANNEL_DYNAMIC;
1792 rtype = "dynamic-tcpip";
1793 } else {
1794 nextstate = SSH_CHANNEL_OPENING;
1795 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001796 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001797
1798 addrlen = sizeof(addr);
1799 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1800 if (newsock < 0) {
1801 if (errno != EINTR && errno != EWOULDBLOCK &&
1802 errno != ECONNABORTED)
1803 error("accept: %.100s", strerror(errno));
1804 if (errno == EMFILE || errno == ENFILE)
1805 c->notbefore = monotime() + 1;
1806 return;
1807 }
1808 if (c->host_port != PORT_STREAMLOCAL)
1809 set_nodelay(newsock);
1810 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1811 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1812 nc->listening_port = c->listening_port;
1813 nc->host_port = c->host_port;
1814 if (c->path != NULL)
1815 nc->path = xstrdup(c->path);
1816
1817 if (nextstate != SSH_CHANNEL_DYNAMIC)
1818 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001819}
1820
1821/*
1822 * This is the authentication agent socket listening for connections from
1823 * clients.
1824 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001825static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001826channel_post_auth_listener(struct ssh *ssh, Channel *c,
1827 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001828{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001829 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001830 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001831 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001832 socklen_t addrlen;
1833
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001834 if (!FD_ISSET(c->sock, readset))
1835 return;
1836
1837 addrlen = sizeof(addr);
1838 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1839 if (newsock < 0) {
1840 error("accept from auth socket: %.100s", strerror(errno));
1841 if (errno == EMFILE || errno == ENFILE)
1842 c->notbefore = monotime() + 1;
1843 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001844 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001845 nc = channel_new(ssh, "accepted auth socket",
1846 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1847 c->local_window_max, c->local_maxpacket,
1848 0, "accepted auth socket", 1);
1849 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1850 if ((r = sshpkt_send(ssh)) != 0)
1851 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001852}
1853
Ben Lindstrombba81212001-06-25 05:01:22 +00001854static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001855channel_post_connecting(struct ssh *ssh, Channel *c,
1856 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001857{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001858 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001859 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001860
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001861 if (!FD_ISSET(c->sock, writeset))
1862 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001863 if (!c->have_remote_id)
1864 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001865 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1866 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001867 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1868 err = errno;
1869 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001870 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001871 if (err == 0) {
1872 debug("channel %d: connected to %s port %d",
1873 c->self, c->connect_ctx.host, c->connect_ctx.port);
1874 channel_connect_ctx_free(&c->connect_ctx);
1875 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001876 if (isopen) {
1877 /* no message necessary */
1878 } else {
1879 if ((r = sshpkt_start(ssh,
1880 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1881 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1882 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1883 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1884 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1885 != 0)
1886 fatal("%s: channel %i: confirm: %s", __func__,
1887 c->self, ssh_err(r));
1888 if ((r = sshpkt_send(ssh)) != 0)
1889 fatal("%s: channel %i: %s", __func__, c->self,
1890 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001891 }
1892 } else {
1893 debug("channel %d: connection failed: %s",
1894 c->self, strerror(err));
1895 /* Try next address, if any */
1896 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1897 close(c->sock);
1898 c->sock = c->rfd = c->wfd = sock;
1899 channel_find_maxfd(ssh->chanctxt);
1900 return;
1901 }
1902 /* Exhausted all addresses */
1903 error("connect_to %.100s port %d: failed.",
1904 c->connect_ctx.host, c->connect_ctx.port);
1905 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001906 if (isopen) {
1907 rdynamic_close(ssh, c);
1908 } else {
1909 if ((r = sshpkt_start(ssh,
1910 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1911 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001912 (r = sshpkt_put_u32(ssh,
1913 SSH2_OPEN_CONNECT_FAILED)) != 0 ||
1914 (r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1915 (r = sshpkt_put_cstring(ssh, "")) != 0) {
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001916 fatal("%s: channel %i: failure: %s", __func__,
1917 c->self, ssh_err(r));
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001918 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001919 if ((r = sshpkt_send(ssh)) != 0)
1920 fatal("%s: channel %i: %s", __func__, c->self,
1921 ssh_err(r));
1922 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001923 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001924 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001925}
1926
Ben Lindstrombba81212001-06-25 05:01:22 +00001927static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001928channel_handle_rfd(struct ssh *ssh, Channel *c,
1929 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001930{
Darren Tucker11327cc2005-03-14 23:22:25 +11001931 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001932 ssize_t len;
1933 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001934
Damien Miller835284b2007-06-11 13:03:16 +10001935 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001936
1937 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1938 return 1;
1939
1940 errno = 0;
1941 len = read(c->rfd, buf, sizeof(buf));
1942 if (len < 0 && (errno == EINTR ||
1943 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1944 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001945#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001946 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001947#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001948 if ((!c->isatty && len <= 0) ||
1949 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001950#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001951 debug2("channel %d: read<=0 rfd %d len %zd",
1952 c->self, c->rfd, len);
1953 if (c->type != SSH_CHANNEL_OPEN) {
1954 debug2("channel %d: not open", c->self);
1955 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001956 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001957 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001958 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001959 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001960 return -1;
1961 }
1962 if (c->input_filter != NULL) {
1963 if (c->input_filter(ssh, c, buf, len) == -1) {
1964 debug2("channel %d: filter stops", c->self);
1965 chan_read_failed(ssh, c);
1966 }
1967 } else if (c->datagram) {
1968 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1969 fatal("%s: channel %d: put datagram: %s", __func__,
1970 c->self, ssh_err(r));
1971 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1972 fatal("%s: channel %d: put data: %s", __func__,
1973 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001974 }
1975 return 1;
1976}
Damien Miller4f7becb2006-03-26 14:10:14 +11001977
Ben Lindstrombba81212001-06-25 05:01:22 +00001978static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001979channel_handle_wfd(struct ssh *ssh, Channel *c,
1980 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001981{
Ben Lindstrome229b252001-03-05 06:28:06 +00001982 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001983 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1984 size_t dlen, olen = 0;
1985 int r, len;
1986
1987 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
1988 sshbuf_len(c->output) == 0)
1989 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001990
1991 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001992 olen = sshbuf_len(c->output);
1993 if (c->output_filter != NULL) {
1994 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
1995 debug2("channel %d: filter stops", c->self);
1996 if (c->type != SSH_CHANNEL_OPEN)
1997 chan_mark_dead(ssh, c);
1998 else
1999 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002000 return -1;
2001 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002002 } else if (c->datagram) {
2003 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
2004 fatal("%s: channel %d: get datagram: %s", __func__,
2005 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00002006 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002007 } else {
2008 buf = data = sshbuf_mutable_ptr(c->output);
2009 dlen = sshbuf_len(c->output);
2010 }
2011
2012 if (c->datagram) {
2013 /* ignore truncated writes, datagrams might get lost */
djm@openbsd.orgc704f642017-09-24 09:50:01 +00002014 len = write(c->wfd, buf, dlen);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002015 free(data);
2016 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2017 errno == EWOULDBLOCK))
2018 return 1;
2019 if (len <= 0)
2020 goto write_fail;
2021 goto out;
2022 }
2023
2024#ifdef _AIX
2025 /* XXX: Later AIX versions can't push as much data to tty */
2026 if (c->wfd_isatty)
2027 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10002028#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002029
2030 len = write(c->wfd, buf, dlen);
2031 if (len < 0 &&
2032 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
2033 return 1;
2034 if (len <= 0) {
2035 write_fail:
2036 if (c->type != SSH_CHANNEL_OPEN) {
2037 debug2("channel %d: not open", c->self);
2038 chan_mark_dead(ssh, c);
2039 return -1;
2040 } else {
2041 chan_write_failed(ssh, c);
2042 }
2043 return -1;
2044 }
2045#ifndef BROKEN_TCGETATTR_ICANON
2046 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
2047 if (tcgetattr(c->wfd, &tio) == 0 &&
2048 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
2049 /*
2050 * Simulate echo to reduce the impact of
2051 * traffic analysis. We need to match the
2052 * size of a SSH2_MSG_CHANNEL_DATA message
2053 * (4 byte channel id + buf)
2054 */
2055 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
2056 (r = sshpkt_send(ssh)) != 0)
2057 fatal("%s: channel %d: ignore: %s",
2058 __func__, c->self, ssh_err(r));
2059 }
2060 }
2061#endif /* BROKEN_TCGETATTR_ICANON */
2062 if ((r = sshbuf_consume(c->output, len)) != 0) {
2063 fatal("%s: channel %d: consume: %s",
2064 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002065 }
Damien Miller7d457182010-08-05 23:09:48 +10002066 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002067 c->local_consumed += olen - sshbuf_len(c->output);
2068
Damien Miller33b13562000-04-04 14:38:59 +10002069 return 1;
2070}
Damien Miller4f7becb2006-03-26 14:10:14 +11002071
Ben Lindstrombba81212001-06-25 05:01:22 +00002072static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002073channel_handle_efd_write(struct ssh *ssh, Channel *c,
2074 fd_set *readset, fd_set *writeset)
2075{
2076 int r;
2077 ssize_t len;
2078
2079 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2080 return 1;
2081
2082 len = write(c->efd, sshbuf_ptr(c->extended),
2083 sshbuf_len(c->extended));
2084 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
2085 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2086 errno == EWOULDBLOCK))
2087 return 1;
2088 if (len <= 0) {
2089 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2090 channel_close_fd(ssh, &c->efd);
2091 } else {
2092 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2093 fatal("%s: channel %d: consume: %s",
2094 __func__, c->self, ssh_err(r));
2095 }
2096 c->local_consumed += len;
2097 }
2098 return 1;
2099}
2100
2101static int
2102channel_handle_efd_read(struct ssh *ssh, Channel *c,
2103 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002104{
Darren Tucker11327cc2005-03-14 23:22:25 +11002105 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002106 int r;
2107 ssize_t len;
Damien Miller33b13562000-04-04 14:38:59 +10002108
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002109 if (!c->detach_close && !FD_ISSET(c->efd, readset))
2110 return 1;
2111
2112 len = read(c->efd, buf, sizeof(buf));
2113 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
2114 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
2115 errno == EWOULDBLOCK) && !c->detach_close)))
2116 return 1;
2117 if (len <= 0) {
2118 debug2("channel %d: closing read-efd %d",
2119 c->self, c->efd);
2120 channel_close_fd(ssh, &c->efd);
2121 } else {
2122 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2123 debug3("channel %d: discard efd",
2124 c->self);
2125 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2126 fatal("%s: channel %d: append: %s",
2127 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002128 }
2129 }
2130 return 1;
2131}
Damien Miller4f7becb2006-03-26 14:10:14 +11002132
Damien Miller0e220db2004-06-15 10:34:08 +10002133static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002134channel_handle_efd(struct ssh *ssh, Channel *c,
2135 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002136{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002137 if (c->efd == -1)
2138 return 1;
2139
2140 /** XXX handle drain efd, too */
2141
2142 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2143 return channel_handle_efd_write(ssh, c, readset, writeset);
2144 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2145 c->extended_usage == CHAN_EXTENDED_IGNORE)
2146 return channel_handle_efd_read(ssh, c, readset, writeset);
2147
2148 return 1;
2149}
2150
2151static int
2152channel_check_window(struct ssh *ssh, Channel *c)
2153{
2154 int r;
2155
Ben Lindstromb3921512001-04-11 15:57:50 +00002156 if (c->type == SSH_CHANNEL_OPEN &&
2157 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002158 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002159 c->local_maxpacket*3) ||
2160 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002161 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002162 if (!c->have_remote_id)
2163 fatal(":%s: channel %d: no remote id",
2164 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002165 if ((r = sshpkt_start(ssh,
2166 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2167 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2168 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2169 (r = sshpkt_send(ssh)) != 0) {
2170 fatal("%s: channel %i: %s", __func__,
2171 c->self, ssh_err(r));
2172 }
Damien Millerd3444942000-09-30 14:20:03 +11002173 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002174 c->self, c->local_window,
2175 c->local_consumed);
2176 c->local_window += c->local_consumed;
2177 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002178 }
2179 return 1;
2180}
2181
Ben Lindstrombba81212001-06-25 05:01:22 +00002182static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002183channel_post_open(struct ssh *ssh, Channel *c,
2184 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002185{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002186 channel_handle_rfd(ssh, c, readset, writeset);
2187 channel_handle_wfd(ssh, c, readset, writeset);
2188 channel_handle_efd(ssh, c, readset, writeset);
2189 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002190}
2191
Damien Millere1537f92010-01-26 13:26:22 +11002192static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002193read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002194{
2195 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002196 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002197 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002198 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002199
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002200 if (sshbuf_len(c->input) < need) {
2201 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002202 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002203 if (len < 0 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002204 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002205 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002206 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002207 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002208 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002209 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002210 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2211 fatal("%s: channel %d: append: %s",
2212 __func__, c->self, ssh_err(r));
2213 }
Damien Millere1537f92010-01-26 13:26:22 +11002214 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002215 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002216}
2217
2218static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002219channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2220 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002221{
2222 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002223
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002224 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2225 return;
2226 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2227 return;
2228 if (c->mux_pause)
2229 return;
2230
2231 /*
2232 * Don't not read past the precise end of packets to
2233 * avoid disrupting fd passing.
2234 */
2235 if (read_mux(ssh, c, 4) < 4) /* read header */
2236 return;
2237 /* XXX sshbuf_peek_u32 */
2238 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002239#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002240 if (need > CHANNEL_MUX_MAX_PACKET) {
2241 debug2("channel %d: packet too big %u > %u",
2242 c->self, CHANNEL_MUX_MAX_PACKET, need);
2243 chan_rcvd_oclose(ssh, c);
2244 return;
Damien Millere1537f92010-01-26 13:26:22 +11002245 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002246 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2247 return;
2248 if (c->mux_rcb(ssh, c) != 0) {
2249 debug("channel %d: mux_rcb failed", c->self);
2250 chan_mark_dead(ssh, c);
2251 return;
Damien Millere1537f92010-01-26 13:26:22 +11002252 }
2253}
2254
2255static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002256channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2257 fd_set *readset, fd_set *writeset)
2258{
2259 ssize_t len;
2260 int r;
2261
2262 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2263 sshbuf_len(c->output) == 0)
2264 return;
2265
2266 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
2267 if (len < 0 && (errno == EINTR || errno == EAGAIN))
2268 return;
2269 if (len <= 0) {
2270 chan_mark_dead(ssh, c);
2271 return;
2272 }
2273 if ((r = sshbuf_consume(c->output, len)) != 0)
2274 fatal("%s: channel %d: consume: %s", __func__,
2275 c->self, ssh_err(r));
2276}
2277
2278static void
2279channel_post_mux_client(struct ssh *ssh, Channel *c,
2280 fd_set *readset, fd_set *writeset)
2281{
2282 channel_post_mux_client_read(ssh, c, readset, writeset);
2283 channel_post_mux_client_write(ssh, c, readset, writeset);
2284}
2285
2286static void
2287channel_post_mux_listener(struct ssh *ssh, Channel *c,
2288 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002289{
2290 Channel *nc;
2291 struct sockaddr_storage addr;
2292 socklen_t addrlen;
2293 int newsock;
2294 uid_t euid;
2295 gid_t egid;
2296
2297 if (!FD_ISSET(c->sock, readset))
2298 return;
2299
2300 debug("multiplexing control connection");
2301
2302 /*
2303 * Accept connection on control socket
2304 */
2305 memset(&addr, 0, sizeof(addr));
2306 addrlen = sizeof(addr);
2307 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2308 &addrlen)) == -1) {
2309 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002310 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002311 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002312 return;
2313 }
2314
2315 if (getpeereid(newsock, &euid, &egid) < 0) {
2316 error("%s getpeereid failed: %s", __func__,
2317 strerror(errno));
2318 close(newsock);
2319 return;
2320 }
2321 if ((euid != 0) && (getuid() != euid)) {
2322 error("multiplex uid mismatch: peer euid %u != uid %u",
2323 (u_int)euid, (u_int)getuid());
2324 close(newsock);
2325 return;
2326 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002327 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002328 newsock, newsock, -1, c->local_window_max,
2329 c->local_maxpacket, 0, "mux-control", 1);
2330 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002331 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002332 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002333 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002334 /* mux state transitions must not elicit protocol messages */
2335 nc->flags |= CHAN_LOCAL;
2336}
2337
Ben Lindstrombba81212001-06-25 05:01:22 +00002338static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002339channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002340{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002341 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002342
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002343 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2344 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2345 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002346
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002347 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2348 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2349 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2350 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2351 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2352 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2353 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2354 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2355 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2356 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002357 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002358 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2359 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2360
2361 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2362 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2363 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2364 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2365 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2366 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2367 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2368 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2369 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002370 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002371 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2372 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2373
2374 sc->channel_pre = pre;
2375 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002376}
2377
Damien Miller3ec27592001-10-12 11:35:04 +10002378/* gc dead channels */
2379static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002380channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002381{
2382 if (c == NULL)
2383 return;
2384 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002385 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002386 return;
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002387
Damien Millerfbdeece2003-09-02 22:52:31 +10002388 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002389 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002390 /* if we still have a callback */
2391 if (c->detach_user != NULL)
2392 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002393 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002394 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002395 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002396 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002397 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002398 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002399}
2400
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002401enum channel_table { CHAN_PRE, CHAN_POST };
2402
Ben Lindstrombba81212001-06-25 05:01:22 +00002403static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002404channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002405 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002406{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002407 struct ssh_channels *sc = ssh->chanctxt;
2408 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002409 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002410 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002411 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002412
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002413 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002414 if (unpause_secs != NULL)
2415 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002416 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2417 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002418 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002419 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002420 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002421 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002422 c->delayed = 0;
2423 else
2424 continue;
2425 }
Damien Millera6508752012-04-22 11:21:10 +10002426 if (ftab[c->type] != NULL) {
2427 /*
2428 * Run handlers that are not paused.
2429 */
2430 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002431 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002432 else if (unpause_secs != NULL) {
2433 /*
2434 * Collect the time that the earliest
2435 * channel comes off pause.
2436 */
2437 debug3("%s: chan %d: skip for %d more seconds",
2438 __func__, c->self,
2439 (int)(c->notbefore - now));
2440 if (*unpause_secs == 0 ||
2441 (c->notbefore - now) < *unpause_secs)
2442 *unpause_secs = c->notbefore - now;
2443 }
2444 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002445 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002446 }
Damien Millera6508752012-04-22 11:21:10 +10002447 if (unpause_secs != NULL && *unpause_secs != 0)
2448 debug3("%s: first channel unpauses in %d seconds",
2449 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002450}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002451
Ben Lindstrome9c99912001-06-09 00:41:05 +00002452/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002453 * Create sockets before allocating the select bitmasks.
2454 * This is necessary for things that need to happen after reading
2455 * the network-input but before channel_prepare_select().
2456 */
2457static void
2458channel_before_prepare_select(struct ssh *ssh)
2459{
2460 struct ssh_channels *sc = ssh->chanctxt;
2461 Channel *c;
2462 u_int i, oalloc;
2463
2464 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2465 c = sc->channels[i];
2466 if (c == NULL)
2467 continue;
2468 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2469 channel_before_prepare_select_rdynamic(ssh, c);
2470 }
2471}
2472
2473/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002474 * Allocate/update select bitmasks and add any bits relevant to channels in
2475 * select bitmasks.
2476 */
Damien Miller4af51302000-04-16 11:18:38 +10002477void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002478channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2479 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002480{
Damien Miller36812092006-03-26 14:22:47 +11002481 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002482
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002483 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2484
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002485 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002486
Damien Miller36812092006-03-26 14:22:47 +11002487 nfdset = howmany(n+1, NFDBITS);
2488 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002489 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002490 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2491 sz = nfdset * sizeof(fd_mask);
2492
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002493 /* perhaps check sz < nalloc/2 and shrink? */
2494 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002495 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2496 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002497 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002498 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002499 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002500 memset(*readsetp, 0, sz);
2501 memset(*writesetp, 0, sz);
2502
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002503 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002504 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002505 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506}
2507
Ben Lindstrome9c99912001-06-09 00:41:05 +00002508/*
2509 * After select, perform any appropriate operations for channels which have
2510 * events pending.
2511 */
Damien Miller4af51302000-04-16 11:18:38 +10002512void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002513channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002515 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002516}
2517
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002518/*
2519 * Enqueue data for channels with open or draining c->input.
2520 */
2521static void
2522channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2523{
djm@openbsd.org55486f52017-09-23 22:04:07 +00002524 size_t len, plen;
2525 const u_char *pkt;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002526 int r;
2527
2528 if ((len = sshbuf_len(c->input)) == 0) {
2529 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2530 /*
2531 * input-buffer is empty and read-socket shutdown:
2532 * tell peer, that we will not send more data:
2533 * send IEOF.
2534 * hack for extended data: delay EOF if EFD still
2535 * in use.
2536 */
2537 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2538 debug2("channel %d: "
2539 "ibuf_empty delayed efd %d/(%zu)",
2540 c->self, c->efd, sshbuf_len(c->extended));
2541 else
2542 chan_ibuf_empty(ssh, c);
2543 }
2544 return;
2545 }
2546
djm@openbsd.org9f532292017-09-12 06:35:31 +00002547 if (!c->have_remote_id)
2548 fatal(":%s: channel %d: no remote id", __func__, c->self);
2549
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002550 if (c->datagram) {
2551 /* Check datagram will fit; drop if not */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002552 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2553 fatal("%s: channel %d: get datagram: %s", __func__,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002554 c->self, ssh_err(r));
2555 /*
2556 * XXX this does tail-drop on the datagram queue which is
2557 * usually suboptimal compared to head-drop. Better to have
2558 * backpressure at read time? (i.e. read + discard)
2559 */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002560 if (plen > c->remote_window || plen > c->remote_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002561 debug("channel %d: datagram too big", c->self);
2562 return;
2563 }
2564 /* Enqueue it */
2565 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2566 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org55486f52017-09-23 22:04:07 +00002567 (r = sshpkt_put_string(ssh, pkt, plen)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002568 (r = sshpkt_send(ssh)) != 0) {
2569 fatal("%s: channel %i: datagram: %s", __func__,
2570 c->self, ssh_err(r));
2571 }
djm@openbsd.org55486f52017-09-23 22:04:07 +00002572 c->remote_window -= plen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002573 return;
2574 }
2575
2576 /* Enqueue packet for buffered data. */
2577 if (len > c->remote_window)
2578 len = c->remote_window;
2579 if (len > c->remote_maxpacket)
2580 len = c->remote_maxpacket;
2581 if (len == 0)
2582 return;
2583 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2584 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2585 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2586 (r = sshpkt_send(ssh)) != 0) {
2587 fatal("%s: channel %i: data: %s", __func__,
2588 c->self, ssh_err(r));
2589 }
2590 if ((r = sshbuf_consume(c->input, len)) != 0)
2591 fatal("%s: channel %i: consume: %s", __func__,
2592 c->self, ssh_err(r));
2593 c->remote_window -= len;
2594}
2595
2596/*
2597 * Enqueue data for channels with open c->extended in read mode.
2598 */
2599static void
2600channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2601{
2602 size_t len;
2603 int r;
2604
2605 if ((len = sshbuf_len(c->extended)) == 0)
2606 return;
2607
2608 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2609 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2610 if (len > c->remote_window)
2611 len = c->remote_window;
2612 if (len > c->remote_maxpacket)
2613 len = c->remote_maxpacket;
2614 if (len == 0)
2615 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002616 if (!c->have_remote_id)
2617 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002618 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2619 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2620 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2621 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2622 (r = sshpkt_send(ssh)) != 0) {
2623 fatal("%s: channel %i: data: %s", __func__,
2624 c->self, ssh_err(r));
2625 }
2626 if ((r = sshbuf_consume(c->extended, len)) != 0)
2627 fatal("%s: channel %i: consume: %s", __func__,
2628 c->self, ssh_err(r));
2629 c->remote_window -= len;
2630 debug2("channel %d: sent ext data %zu", c->self, len);
2631}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002632
Damien Miller5e953212001-01-30 09:14:00 +11002633/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002634void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002635channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002636{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002637 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002638 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002639 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002640
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002641 for (i = 0; i < sc->channels_alloc; i++) {
2642 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002643 if (c == NULL)
2644 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002645
Ben Lindstrome9c99912001-06-09 00:41:05 +00002646 /*
2647 * We are only interested in channels that can have buffered
2648 * incoming data.
2649 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002650 if (c->type != SSH_CHANNEL_OPEN)
2651 continue;
2652 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002653 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002654 debug3("channel %d: will not send data after close",
2655 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002656 continue;
2657 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002658
Damien Miller95def091999-11-25 00:26:21 +11002659 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002660 if (c->istate == CHAN_INPUT_OPEN ||
2661 c->istate == CHAN_INPUT_WAIT_DRAIN)
2662 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002663 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002664 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002665 c->extended_usage == CHAN_EXTENDED_READ)
2666 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002667 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002668}
2669
markus@openbsd.org8d057842016-09-30 09:19:13 +00002670/* -- mux proxy support */
2671
2672/*
2673 * When multiplexing channel messages for mux clients we have to deal
2674 * with downstream messages from the mux client and upstream messages
2675 * from the ssh server:
2676 * 1) Handling downstream messages is straightforward and happens
2677 * in channel_proxy_downstream():
2678 * - We forward all messages (mostly) unmodified to the server.
2679 * - However, in order to route messages from upstream to the correct
2680 * downstream client, we have to replace the channel IDs used by the
2681 * mux clients with a unique channel ID because the mux clients might
2682 * use conflicting channel IDs.
2683 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2684 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2685 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2686 * with the newly allocated channel ID.
2687 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
djm@openbsd.org001aa552018-04-10 00:10:49 +00002688 * channels and processed by channel_proxy_upstream(). The local channel ID
markus@openbsd.org8d057842016-09-30 09:19:13 +00002689 * is then translated back to the original mux client ID.
2690 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2691 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2692 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2693 * downstream mux client are removed.
2694 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2695 * requires more work, because they are not addressed to a specific
2696 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2697 * out whether the request is addressed to the local client or a
2698 * specific downstream client based on the listen-address/port.
djm@openbsd.org001aa552018-04-10 00:10:49 +00002699 * 6) Agent and X11-Forwarding have a similar problem and are currently
markus@openbsd.org8d057842016-09-30 09:19:13 +00002700 * not supported as the matching session/channel cannot be identified
2701 * easily.
2702 */
2703
2704/*
2705 * receive packets from downstream mux clients:
2706 * channel callback fired on read from mux client, creates
2707 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2708 * on channel creation.
2709 */
2710int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002711channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002712{
2713 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002714 struct sshbuf *original = NULL, *modified = NULL;
2715 const u_char *cp;
2716 char *ctype = NULL, *listen_host = NULL;
2717 u_char type;
2718 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002719 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002720 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002721
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002722 /* sshbuf_dump(downstream->input, stderr); */
2723 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002724 != 0) {
2725 error("%s: malformed message: %s", __func__, ssh_err(r));
2726 return -1;
2727 }
2728 if (have < 2) {
2729 error("%s: short message", __func__);
2730 return -1;
2731 }
2732 type = cp[1];
2733 /* skip padlen + type */
2734 cp += 2;
2735 have -= 2;
2736 if (ssh_packet_log_type(type))
2737 debug3("%s: channel %u: down->up: type %u", __func__,
2738 downstream->self, type);
2739
2740 switch (type) {
2741 case SSH2_MSG_CHANNEL_OPEN:
2742 if ((original = sshbuf_from(cp, have)) == NULL ||
2743 (modified = sshbuf_new()) == NULL) {
2744 error("%s: alloc", __func__);
2745 goto out;
2746 }
2747 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2748 (r = sshbuf_get_u32(original, &id)) != 0) {
2749 error("%s: parse error %s", __func__, ssh_err(r));
2750 goto out;
2751 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002752 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002753 -1, -1, -1, 0, 0, 0, ctype, 1);
2754 c->mux_ctx = downstream; /* point to mux client */
2755 c->mux_downstream_id = id; /* original downstream id */
2756 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2757 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2758 (r = sshbuf_putb(modified, original)) != 0) {
2759 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002760 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002761 goto out;
2762 }
2763 break;
2764 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2765 /*
2766 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2767 * need to parse 'remote_id' instead of 'ctype'.
2768 */
2769 if ((original = sshbuf_from(cp, have)) == NULL ||
2770 (modified = sshbuf_new()) == NULL) {
2771 error("%s: alloc", __func__);
2772 goto out;
2773 }
2774 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2775 (r = sshbuf_get_u32(original, &id)) != 0) {
2776 error("%s: parse error %s", __func__, ssh_err(r));
2777 goto out;
2778 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002779 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002780 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2781 c->mux_ctx = downstream; /* point to mux client */
2782 c->mux_downstream_id = id;
2783 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002784 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002785 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2786 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2787 (r = sshbuf_putb(modified, original)) != 0) {
2788 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002789 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002790 goto out;
2791 }
2792 break;
2793 case SSH2_MSG_GLOBAL_REQUEST:
2794 if ((original = sshbuf_from(cp, have)) == NULL) {
2795 error("%s: alloc", __func__);
2796 goto out;
2797 }
2798 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2799 error("%s: parse error %s", __func__, ssh_err(r));
2800 goto out;
2801 }
2802 if (strcmp(ctype, "tcpip-forward") != 0) {
2803 error("%s: unsupported request %s", __func__, ctype);
2804 goto out;
2805 }
2806 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2807 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2808 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2809 error("%s: parse error %s", __func__, ssh_err(r));
2810 goto out;
2811 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002812 if (listen_port > 65535) {
2813 error("%s: tcpip-forward for %s: bad port %u",
2814 __func__, listen_host, listen_port);
2815 goto out;
2816 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002817 /* Record that connection to this host/port is permitted. */
djm@openbsd.org115063a2018-06-06 18:22:41 +00002818 permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002819 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002820 listen_host = NULL;
2821 break;
2822 case SSH2_MSG_CHANNEL_CLOSE:
2823 if (have < 4)
2824 break;
2825 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002826 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002827 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002828 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002829 else
2830 c->flags |= CHAN_CLOSE_SENT;
2831 }
2832 break;
2833 }
2834 if (modified) {
2835 if ((r = sshpkt_start(ssh, type)) != 0 ||
2836 (r = sshpkt_putb(ssh, modified)) != 0 ||
2837 (r = sshpkt_send(ssh)) != 0) {
2838 error("%s: send %s", __func__, ssh_err(r));
2839 goto out;
2840 }
2841 } else {
2842 if ((r = sshpkt_start(ssh, type)) != 0 ||
2843 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2844 (r = sshpkt_send(ssh)) != 0) {
2845 error("%s: send %s", __func__, ssh_err(r));
2846 goto out;
2847 }
2848 }
2849 ret = 0;
2850 out:
2851 free(ctype);
2852 free(listen_host);
2853 sshbuf_free(original);
2854 sshbuf_free(modified);
2855 return ret;
2856}
2857
2858/*
2859 * receive packets from upstream server and de-multiplex packets
2860 * to correct downstream:
2861 * implemented as a helper for channel input handlers,
2862 * replaces local (proxy) channel ID with downstream channel ID.
2863 */
2864int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002865channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002866{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002867 struct sshbuf *b = NULL;
2868 Channel *downstream;
2869 const u_char *cp = NULL;
2870 size_t len;
2871 int r;
2872
2873 /*
2874 * When receiving packets from the peer we need to check whether we
2875 * need to forward the packets to the mux client. In this case we
djm@openbsd.org001aa552018-04-10 00:10:49 +00002876 * restore the original channel id and keep track of CLOSE messages,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002877 * so we can cleanup the channel.
2878 */
2879 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2880 return 0;
2881 if ((downstream = c->mux_ctx) == NULL)
2882 return 0;
2883 switch (type) {
2884 case SSH2_MSG_CHANNEL_CLOSE:
2885 case SSH2_MSG_CHANNEL_DATA:
2886 case SSH2_MSG_CHANNEL_EOF:
2887 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2888 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2889 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2890 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2891 case SSH2_MSG_CHANNEL_SUCCESS:
2892 case SSH2_MSG_CHANNEL_FAILURE:
2893 case SSH2_MSG_CHANNEL_REQUEST:
2894 break;
2895 default:
2896 debug2("%s: channel %u: unsupported type %u", __func__,
2897 c->self, type);
2898 return 0;
2899 }
2900 if ((b = sshbuf_new()) == NULL) {
2901 error("%s: alloc reply", __func__);
2902 goto out;
2903 }
2904 /* get remaining payload (after id) */
2905 cp = sshpkt_ptr(ssh, &len);
2906 if (cp == NULL) {
2907 error("%s: no packet", __func__);
2908 goto out;
2909 }
2910 /* translate id and send to muxclient */
2911 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2912 (r = sshbuf_put_u8(b, type)) != 0 ||
2913 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2914 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002915 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002916 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2917 goto out;
2918 }
2919 /* sshbuf_dump(b, stderr); */
2920 if (ssh_packet_log_type(type))
2921 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2922 type);
2923 out:
2924 /* update state */
2925 switch (type) {
2926 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2927 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002928 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002929 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002930 c->have_remote_id = 1;
2931 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002932 break;
2933 case SSH2_MSG_CHANNEL_CLOSE:
2934 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002935 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002936 else
2937 c->flags |= CHAN_CLOSE_RCVD;
2938 break;
2939 }
2940 sshbuf_free(b);
2941 return 1;
2942}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002943
2944/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002945
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002946/* Parse a channel ID from the current packet */
2947static int
2948channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2949{
2950 u_int32_t id;
2951 int r;
2952
2953 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2954 error("%s: parse id: %s", where, ssh_err(r));
2955 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2956 }
2957 if (id > INT_MAX) {
2958 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2959 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2960 }
2961 return (int)id;
2962}
2963
2964/* Lookup a channel from an ID in the current packet */
2965static Channel *
2966channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2967{
2968 int id = channel_parse_id(ssh, where, what);
2969 Channel *c;
2970
2971 if ((c = channel_lookup(ssh, id)) == NULL) {
2972 ssh_packet_disconnect(ssh,
2973 "%s packet referred to nonexistent channel %d", what, id);
2974 }
2975 return c;
2976}
2977
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002978int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002979channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002980{
Damien Miller633de332014-05-15 13:48:26 +10002981 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002982 size_t data_len, win_len;
2983 Channel *c = channel_from_packet_id(ssh, __func__, "data");
2984 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002985
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002986 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002987 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002988
Damien Miller95def091999-11-25 00:26:21 +11002989 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002990 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002991 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
2992 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10002993 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002994 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002995
Damien Miller95def091999-11-25 00:26:21 +11002996 /* Get the data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002997 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0)
2998 fatal("%s: channel %d: get data: %s", __func__,
2999 c->self, ssh_err(r));
3000 ssh_packet_check_eom(ssh);
3001
Damien Miller7d457182010-08-05 23:09:48 +10003002 win_len = data_len;
3003 if (c->datagram)
3004 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10003005
Damien Millera04ad492004-01-21 11:02:09 +11003006 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003007 * The sending side reduces its window as it sends data, so we
3008 * must 'fake' consumption of the data in order to ensure that window
3009 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11003010 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003011 if (c->ostate != CHAN_OUTPUT_OPEN) {
3012 c->local_window -= win_len;
3013 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003014 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11003015 }
3016
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003017 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003018 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003019 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003020 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003021 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003022 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003023 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003024 c->self, win_len, c->local_window);
3025 return 0;
3026 }
3027 c->local_window -= win_len;
3028
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003029 if (c->datagram) {
3030 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
3031 fatal("%s: channel %d: append datagram: %s",
3032 __func__, c->self, ssh_err(r));
3033 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
3034 fatal("%s: channel %d: append data: %s",
3035 __func__, c->self, ssh_err(r));
3036
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003037 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003038}
Ben Lindstrome9c99912001-06-09 00:41:05 +00003039
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003040int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003041channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003042{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003043 const u_char *data;
3044 size_t data_len;
3045 u_int32_t tcode;
3046 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
3047 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003048
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003049 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003050 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003051 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003052 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003053 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003054 }
Ben Lindstromcf159442002-03-26 03:26:24 +00003055 if (c->flags & CHAN_EOF_RCVD) {
3056 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003057 debug("channel %d: accepting ext data after eof",
3058 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003059 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003060 ssh_packet_disconnect(ssh, "Received extended_data "
3061 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003062 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003063
3064 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
3065 error("%s: parse tcode: %s", __func__, ssh_err(r));
3066 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3067 }
Damien Miller33b13562000-04-04 14:38:59 +10003068 if (c->efd == -1 ||
3069 c->extended_usage != CHAN_EXTENDED_WRITE ||
3070 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10003071 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003072 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003073 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003074 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0) {
3075 error("%s: parse data: %s", __func__, ssh_err(r));
3076 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3077 }
3078 ssh_packet_check_eom(ssh);
3079
Damien Miller33b13562000-04-04 14:38:59 +10003080 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003081 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10003082 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003083 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003084 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003085 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3086 /* XXX sshpkt_getb? */
3087 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3088 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003089 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003090 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003091}
3092
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003093int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003094channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003095{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003096 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
Damien Millerb38eff82000-04-01 11:09:21 +10003097
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003098 ssh_packet_check_eom(ssh);
3099
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003100 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003101 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003102 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003103
3104 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003105 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003106 debug("channel %d: FORCE input drain", c->self);
3107 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003108 if (sshbuf_len(c->input) == 0)
3109 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003110 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003111 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003112}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003113
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003114int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003115channel_input_oclose(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003116{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003117 Channel *c = channel_from_packet_id(ssh, __func__, "oclose");
Damien Miller66823cd2002-01-22 23:11:38 +11003118
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003119 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003120 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003121 ssh_packet_check_eom(ssh);
3122 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003123 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003124}
3125
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003126int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003127channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003128{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003129 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3130 u_int32_t remote_window, remote_maxpacket;
3131 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003132
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003133 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003134 return 0;
3135 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003136 packet_disconnect("Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003137 "non-opening channel %d.", c->self);
3138 /*
3139 * Record the remote channel number and mark that the channel
3140 * is now open.
3141 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003142 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3143 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003144 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0) {
3145 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
3146 packet_disconnect("Invalid open confirmation message");
3147 }
3148 ssh_packet_check_eom(ssh);
Damien Miller33b13562000-04-04 14:38:59 +10003149
djm@openbsd.org9f532292017-09-12 06:35:31 +00003150 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003151 c->remote_window = remote_window;
3152 c->remote_maxpacket = remote_maxpacket;
3153 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003154 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003155 debug2("%s: channel %d: callback start", __func__, c->self);
3156 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3157 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003158 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003159 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3160 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003161 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003162}
3163
Ben Lindstrombba81212001-06-25 05:01:22 +00003164static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003165reason2txt(int reason)
3166{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003167 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003168 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3169 return "administratively prohibited";
3170 case SSH2_OPEN_CONNECT_FAILED:
3171 return "connect failed";
3172 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3173 return "unknown channel type";
3174 case SSH2_OPEN_RESOURCE_SHORTAGE:
3175 return "resource shortage";
3176 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003177 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003178}
3179
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003180int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003181channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003182{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003183 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3184 u_int32_t reason;
3185 char *msg = NULL;
3186 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003187
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003188 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003189 return 0;
3190 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003191 packet_disconnect("Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003192 "non-opening channel %d.", c->self);
3193 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3194 error("%s: reason: %s", __func__, ssh_err(r));
3195 packet_disconnect("Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003196 }
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003197 /* skip language */
3198 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
3199 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) != 0) {
3200 error("%s: message/lang: %s", __func__, ssh_err(r));
3201 packet_disconnect("Invalid open failure message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003202 }
3203 ssh_packet_check_eom(ssh);
3204 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003205 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3206 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003207 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003208 debug2("%s: channel %d: callback start", __func__, c->self);
3209 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3210 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003211 }
Damien Miller7a606212009-01-28 16:22:34 +11003212 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003213 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003214 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003215}
3216
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003217int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003218channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003219{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003220 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003221 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003222 u_int32_t adjust;
3223 u_int new_rwin;
3224 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003225
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003226 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003227 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003228 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003229 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003230
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003231 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003232 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003233 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0) {
3234 error("%s: adjust: %s", __func__, ssh_err(r));
3235 packet_disconnect("Invalid window adjust message");
3236 }
3237 ssh_packet_check_eom(ssh);
3238 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3239 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003240 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003241 c->self, adjust, c->remote_window);
3242 }
3243 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003244 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003245}
3246
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003247int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003248channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003249{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003250 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003251 Channel *c;
3252 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003253
3254 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10003255 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10003256
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003257 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003258
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003259 if ((c = channel_lookup(ssh, id)) == NULL) {
3260 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003261 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003262 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003263 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003264 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003265 ssh_packet_check_eom(ssh);
Damien Millerb84886b2008-05-19 15:05:07 +10003266 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003267 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003268 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003269 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11003270 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10003271 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003272 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003273}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003274
Ben Lindstrome9c99912001-06-09 00:41:05 +00003275/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003276
Ben Lindstrom908afed2001-10-03 17:34:59 +00003277void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003278channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003279{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003280 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003281}
3282
Damien Millerf6dff7c2011-09-22 21:38:52 +10003283
3284/*
3285 * Determine whether or not a port forward listens to loopback, the
3286 * specified address or wildcard. On the client, a specified bind
3287 * address will always override gateway_ports. On the server, a
3288 * gateway_ports of 1 (``yes'') will override the client's specification
3289 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3290 * will bind to whatever address the client asked for.
3291 *
3292 * Special-case listen_addrs are:
3293 *
3294 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3295 * "" (empty string), "*" -> wildcard v4/v6
3296 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003297 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003298 */
3299static const char *
3300channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003301 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003302{
3303 const char *addr = NULL;
3304 int wildcard = 0;
3305
3306 if (listen_addr == NULL) {
3307 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003308 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003309 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003310 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003311 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3312 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3313 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003314 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003315 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003316 /*
3317 * Notify client if they requested a specific listen
3318 * address and it was overridden.
3319 */
3320 if (*listen_addr != '\0' &&
3321 strcmp(listen_addr, "0.0.0.0") != 0 &&
3322 strcmp(listen_addr, "*") != 0) {
3323 packet_send_debug("Forwarding listen address "
3324 "\"%s\" overridden by server "
3325 "GatewayPorts", listen_addr);
3326 }
Damien Miller602943d2014-07-04 08:59:41 +10003327 } else if (strcmp(listen_addr, "localhost") != 0 ||
3328 strcmp(listen_addr, "127.0.0.1") == 0 ||
3329 strcmp(listen_addr, "::1") == 0) {
3330 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10003331 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003332 }
3333 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3334 strcmp(listen_addr, "::1") == 0) {
3335 /*
3336 * If a specific IPv4/IPv6 localhost address has been
3337 * requested then accept it even if gateway_ports is in
3338 * effect. This allows the client to prefer IPv4 or IPv6.
3339 */
3340 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003341 }
3342 if (wildcardp != NULL)
3343 *wildcardp = wildcard;
3344 return addr;
3345}
3346
Damien Millerb16461c2002-01-22 23:29:22 +11003347static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003348channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3349 struct Forward *fwd, int *allocated_listen_port,
3350 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003351{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003352 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003353 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003354 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003355 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003356 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003357 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003358
Damien Millerf91ee4c2005-03-01 21:24:33 +11003359 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003360
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003361 if (is_client && fwd->connect_path != NULL) {
3362 host = fwd->connect_path;
3363 } else {
3364 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3365 fwd->listen_host : fwd->connect_host;
3366 if (host == NULL) {
3367 error("No forward host name.");
3368 return 0;
3369 }
3370 if (strlen(host) >= NI_MAXHOST) {
3371 error("Forward host name too long.");
3372 return 0;
3373 }
Kevin Steves12057502001-02-05 14:54:34 +00003374 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003375
Damien Millerf6dff7c2011-09-22 21:38:52 +10003376 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10003377 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3378 is_client, fwd_opts);
3379 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003380 type, wildcard, (addr == NULL) ? "NULL" : addr);
3381
3382 /*
Damien Miller34132e52000-01-14 15:45:46 +11003383 * getaddrinfo returns a loopback address if the hostname is
3384 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003385 */
Damien Miller34132e52000-01-14 15:45:46 +11003386 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003387 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003388 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003389 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003390 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003391 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3392 if (addr == NULL) {
3393 /* This really shouldn't happen */
3394 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003395 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003396 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003397 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003398 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003399 }
Damien Millera7270302005-07-06 09:36:05 +10003400 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003401 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003402 if (allocated_listen_port != NULL)
3403 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003404 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003405 switch (ai->ai_family) {
3406 case AF_INET:
3407 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3408 sin_port;
3409 break;
3410 case AF_INET6:
3411 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3412 sin6_port;
3413 break;
3414 default:
Damien Miller34132e52000-01-14 15:45:46 +11003415 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003416 }
3417 /*
3418 * If allocating a port for -R forwards, then use the
3419 * same port for all address families.
3420 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003421 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3422 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3423 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003424 *lport_p = htons(*allocated_listen_port);
3425
Damien Miller34132e52000-01-14 15:45:46 +11003426 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003427 strport, sizeof(strport),
3428 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003429 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003430 continue;
3431 }
3432 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003433 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003434 if (sock < 0) {
3435 /* this is no error since kernel may not support ipv6 */
djm@openbsd.org927f8512017-12-05 01:30:19 +00003436 verbose("socket [%s]:%s: %.100s", ntop, strport,
3437 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003438 continue;
3439 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003440
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00003441 set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003442 if (ai->ai_family == AF_INET6)
3443 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003444
Damien Miller4bf648f2009-02-14 16:28:21 +11003445 debug("Local forwarding listening on %s port %s.",
3446 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003447
Damien Miller34132e52000-01-14 15:45:46 +11003448 /* Bind the socket to the address. */
3449 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003450 /*
3451 * address can be in if use ipv6 address is
3452 * already bound
3453 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003454 if (!ai->ai_next)
djm@openbsd.org927f8512017-12-05 01:30:19 +00003455 error("bind [%s]:%s: %.100s",
3456 ntop, strport, strerror(errno));
Damien Miller3c7eeb22000-03-03 22:35:33 +11003457 else
djm@openbsd.org927f8512017-12-05 01:30:19 +00003458 verbose("bind [%s]:%s: %.100s",
3459 ntop, strport, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003460
Damien Miller34132e52000-01-14 15:45:46 +11003461 close(sock);
3462 continue;
3463 }
3464 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11003465 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003466 error("listen: %.100s", strerror(errno));
djm@openbsd.org927f8512017-12-05 01:30:19 +00003467 error("listen [%s]:%s: %.100s", ntop, strport,
3468 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003469 close(sock);
3470 continue;
3471 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003472
3473 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003474 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003475 * record what we got.
3476 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003477 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3478 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003479 allocated_listen_port != NULL &&
3480 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003481 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003482 debug("Allocated listen port %d",
3483 *allocated_listen_port);
3484 }
3485
Damien Miller34132e52000-01-14 15:45:46 +11003486 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003487 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003488 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003489 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003490 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003491 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003492 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003493 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003494 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3495 c->listening_port = *allocated_listen_port;
3496 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003497 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003498 success = 1;
3499 }
3500 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003501 error("%s: cannot listen to port: %d", __func__,
3502 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003503 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003504 return success;
Damien Miller95def091999-11-25 00:26:21 +11003505}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003506
Damien Miller7acefbb2014-07-18 14:11:24 +10003507static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003508channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3509 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003510{
3511 struct sockaddr_un sunaddr;
3512 const char *path;
3513 Channel *c;
3514 int port, sock;
3515 mode_t omask;
3516
3517 switch (type) {
3518 case SSH_CHANNEL_UNIX_LISTENER:
3519 if (fwd->connect_path != NULL) {
3520 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3521 error("Local connecting path too long: %s",
3522 fwd->connect_path);
3523 return 0;
3524 }
3525 path = fwd->connect_path;
3526 port = PORT_STREAMLOCAL;
3527 } else {
3528 if (fwd->connect_host == NULL) {
3529 error("No forward host name.");
3530 return 0;
3531 }
3532 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3533 error("Forward host name too long.");
3534 return 0;
3535 }
3536 path = fwd->connect_host;
3537 port = fwd->connect_port;
3538 }
3539 break;
3540 case SSH_CHANNEL_RUNIX_LISTENER:
3541 path = fwd->listen_path;
3542 port = PORT_STREAMLOCAL;
3543 break;
3544 default:
3545 error("%s: unexpected channel type %d", __func__, type);
3546 return 0;
3547 }
3548
3549 if (fwd->listen_path == NULL) {
3550 error("No forward path name.");
3551 return 0;
3552 }
3553 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3554 error("Local listening path too long: %s", fwd->listen_path);
3555 return 0;
3556 }
3557
3558 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3559
3560 /* Start a Unix domain listener. */
3561 omask = umask(fwd_opts->streamlocal_bind_mask);
3562 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3563 fwd_opts->streamlocal_bind_unlink);
3564 umask(omask);
3565 if (sock < 0)
3566 return 0;
3567
3568 debug("Local forwarding listening on path %s.", fwd->listen_path);
3569
3570 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003571 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003572 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3573 0, "unix listener", 1);
3574 c->path = xstrdup(path);
3575 c->host_port = port;
3576 c->listening_port = PORT_STREAMLOCAL;
3577 c->listening_addr = xstrdup(fwd->listen_path);
3578 return 1;
3579}
3580
3581static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003582channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3583 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003584{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003585 u_int i;
3586 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003587
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003588 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3589 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003590 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3591 continue;
3592 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3593 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003594 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003595 found = 1;
3596 }
3597 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003598
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003599 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003600}
3601
Damien Miller7acefbb2014-07-18 14:11:24 +10003602static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003603channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003604{
3605 u_int i;
3606 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003607
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_RUNIX_LISTENER)
3611 continue;
3612 if (c->path == NULL)
3613 continue;
3614 if (strcmp(c->path, 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_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003626{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003627 if (fwd->listen_path != NULL) {
3628 return channel_cancel_rport_listener_streamlocal(ssh,
3629 fwd->listen_path);
3630 } else {
3631 return channel_cancel_rport_listener_tcpip(ssh,
3632 fwd->listen_host, fwd->listen_port);
3633 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003634}
3635
3636static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003637channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3638 const char *lhost, u_short lport, int cport,
3639 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003640{
3641 u_int i;
3642 int found = 0;
3643 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003644
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003645 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3646 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003647 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3648 continue;
Damien Millerff773642011-09-22 21:39:48 +10003649 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003650 continue;
Damien Millerff773642011-09-22 21:39:48 +10003651 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3652 /* skip dynamic forwardings */
3653 if (c->host_port == 0)
3654 continue;
3655 } else {
3656 if (c->host_port != cport)
3657 continue;
3658 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003659 if ((c->listening_addr == NULL && addr != NULL) ||
3660 (c->listening_addr != NULL && addr == NULL))
3661 continue;
3662 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003663 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003664 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003665 found = 1;
3666 }
3667 }
3668
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003669 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003670}
3671
Damien Miller7acefbb2014-07-18 14:11:24 +10003672static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003673channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003674{
3675 u_int i;
3676 int found = 0;
3677
3678 if (path == NULL) {
3679 error("%s: no path specified.", __func__);
3680 return 0;
3681 }
3682
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003683 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3684 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003685 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3686 continue;
3687 if (c->listening_addr == NULL)
3688 continue;
3689 if (strcmp(c->listening_addr, path) == 0) {
3690 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003691 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003692 found = 1;
3693 }
3694 }
3695
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003696 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003697}
3698
3699int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003700channel_cancel_lport_listener(struct ssh *ssh,
3701 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003702{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003703 if (fwd->listen_path != NULL) {
3704 return channel_cancel_lport_listener_streamlocal(ssh,
3705 fwd->listen_path);
3706 } else {
3707 return channel_cancel_lport_listener_tcpip(ssh,
3708 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3709 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003710}
3711
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003712/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003713int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003714channel_setup_local_fwd_listener(struct ssh *ssh,
3715 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003716{
Damien Miller7acefbb2014-07-18 14:11:24 +10003717 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003718 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003719 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3720 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003721 return channel_setup_fwd_listener_tcpip(ssh,
3722 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003723 }
Damien Millerb16461c2002-01-22 23:29:22 +11003724}
3725
djm@openbsd.org115063a2018-06-06 18:22:41 +00003726/* Matches a remote forwarding permission against a requested forwarding */
3727static int
3728remote_open_match(struct permission *allowed_open, struct Forward *fwd)
3729{
3730 int ret;
3731 char *lhost;
3732
3733 /* XXX add ACLs for streamlocal */
3734 if (fwd->listen_path != NULL)
3735 return 1;
3736
3737 if (fwd->listen_host == NULL || allowed_open->listen_host == NULL)
3738 return 0;
3739
3740 if (allowed_open->listen_port != FWD_PERMIT_ANY_PORT &&
3741 allowed_open->listen_port != fwd->listen_port)
3742 return 0;
3743
3744 /* Match hostnames case-insensitively */
3745 lhost = xstrdup(fwd->listen_host);
3746 lowercase(lhost);
3747 ret = match_pattern(lhost, allowed_open->listen_host);
3748 free(lhost);
3749
3750 return ret;
3751}
3752
3753/* Checks whether a requested remote forwarding is permitted */
3754static int
3755check_rfwd_permission(struct ssh *ssh, struct Forward *fwd)
3756{
3757 struct ssh_channels *sc = ssh->chanctxt;
3758 struct permission_set *pset = &sc->remote_perms;
3759 u_int i, permit, permit_adm = 1;
3760 struct permission *perm;
3761
3762 /* XXX apply GatewayPorts override before checking? */
3763
3764 permit = pset->all_permitted;
3765 if (!permit) {
3766 for (i = 0; i < pset->num_permitted_user; i++) {
3767 perm = &pset->permitted_user[i];
3768 if (remote_open_match(perm, fwd)) {
3769 permit = 1;
3770 break;
3771 }
3772 }
3773 }
3774
3775 if (pset->num_permitted_admin > 0) {
3776 permit_adm = 0;
3777 for (i = 0; i < pset->num_permitted_admin; i++) {
3778 perm = &pset->permitted_admin[i];
3779 if (remote_open_match(perm, fwd)) {
3780 permit_adm = 1;
3781 break;
3782 }
3783 }
3784 }
3785
3786 return permit && permit_adm;
3787}
3788
Damien Millerb16461c2002-01-22 23:29:22 +11003789/* protocol v2 remote port fwd, used by sshd */
3790int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003791channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003792 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003793{
djm@openbsd.org115063a2018-06-06 18:22:41 +00003794 if (!check_rfwd_permission(ssh, fwd)) {
3795 packet_send_debug("port forwarding refused");
3796 return 0;
3797 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003798 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003799 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003800 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3801 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003802 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003803 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3804 fwd_opts);
3805 }
Damien Millerb16461c2002-01-22 23:29:22 +11003806}
3807
Damien Miller5428f641999-11-25 11:54:57 +11003808/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003809 * Translate the requested rfwd listen host to something usable for
3810 * this server.
3811 */
3812static const char *
3813channel_rfwd_bind_host(const char *listen_host)
3814{
3815 if (listen_host == NULL) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003816 return "localhost";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003817 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003818 return "";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003819 } else
3820 return listen_host;
3821}
3822
3823/*
Damien Miller5428f641999-11-25 11:54:57 +11003824 * Initiate forwarding of connections to port "port" on remote host through
3825 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003826 * Returns handle (index) for updating the dynamic listen port with
djm@openbsd.org115063a2018-06-06 18:22:41 +00003827 * channel_update_permission().
Damien Miller5428f641999-11-25 11:54:57 +11003828 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003829int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003830channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003831{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003832 int r, success = 0, idx = -1;
3833 char *host_to_connect, *listen_host, *listen_path;
3834 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003835
Damien Miller95def091999-11-25 00:26:21 +11003836 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003837 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003838 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3839 (r = sshpkt_put_cstring(ssh,
3840 "streamlocal-forward@openssh.com")) != 0 ||
3841 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3842 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3843 (r = sshpkt_send(ssh)) != 0 ||
3844 (r = ssh_packet_write_wait(ssh)) != 0)
3845 fatal("%s: request streamlocal: %s",
3846 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003847 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003848 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3849 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3850 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3851 (r = sshpkt_put_cstring(ssh,
3852 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3853 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3854 (r = sshpkt_send(ssh)) != 0 ||
3855 (r = ssh_packet_write_wait(ssh)) != 0)
3856 fatal("%s: request tcpip-forward: %s",
3857 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003858 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003859 /* Assume that server accepts the request */
3860 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003861 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003862 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003863 host_to_connect = listen_host = listen_path = NULL;
3864 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003865 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003866 host_to_connect = xstrdup(fwd->connect_path);
3867 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003868 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003869 host_to_connect = xstrdup(fwd->connect_host);
3870 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003871 }
3872 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003873 listen_path = xstrdup(fwd->listen_path);
3874 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003875 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003876 if (fwd->listen_host != NULL)
3877 listen_host = xstrdup(fwd->listen_host);
3878 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003879 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003880 idx = permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003881 host_to_connect, port_to_connect,
3882 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003883 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003884 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003885}
3886
Damien Miller4b3ed642014-07-02 15:29:40 +10003887static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003888open_match(struct permission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003889 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003890{
3891 if (allowed_open->host_to_connect == NULL)
3892 return 0;
3893 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3894 allowed_open->port_to_connect != requestedport)
3895 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003896 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3897 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003898 return 0;
3899 return 1;
3900}
3901
3902/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003903 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003904 * we don't support FWD_PERMIT_ANY_PORT and
3905 * need to translate between the configured-host (listen_host)
3906 * and what we've sent to the remote server (channel_rfwd_bind_host)
3907 */
3908static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003909open_listen_match_tcpip(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003910 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003911{
3912 const char *allowed_host;
3913
3914 if (allowed_open->host_to_connect == NULL)
3915 return 0;
3916 if (allowed_open->listen_port != requestedport)
3917 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003918 if (!translate && allowed_open->listen_host == NULL &&
3919 requestedhost == NULL)
3920 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003921 allowed_host = translate ?
3922 channel_rfwd_bind_host(allowed_open->listen_host) :
3923 allowed_open->listen_host;
djm@openbsd.org90e51d62018-06-25 22:28:33 +00003924 if (allowed_host == NULL || requestedhost == NULL ||
Damien Miller4b3ed642014-07-02 15:29:40 +10003925 strcmp(allowed_host, requestedhost) != 0)
3926 return 0;
3927 return 1;
3928}
3929
Damien Miller7acefbb2014-07-18 14:11:24 +10003930static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003931open_listen_match_streamlocal(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003932 const char *requestedpath)
3933{
3934 if (allowed_open->host_to_connect == NULL)
3935 return 0;
3936 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3937 return 0;
3938 if (allowed_open->listen_path == NULL ||
3939 strcmp(allowed_open->listen_path, requestedpath) != 0)
3940 return 0;
3941 return 1;
3942}
3943
Damien Miller5428f641999-11-25 11:54:57 +11003944/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003945 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003946 * local side.
3947 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003948static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003949channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3950 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003951{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003952 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003953 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003954 int r;
3955 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003956 struct permission *perm;
Darren Tuckere7066df2004-05-24 10:18:05 +10003957
djm@openbsd.org115063a2018-06-06 18:22:41 +00003958 for (i = 0; i < pset->num_permitted_user; i++) {
3959 perm = &pset->permitted_user[i];
3960 if (open_listen_match_tcpip(perm, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003961 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003962 perm = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10003963 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003964 if (perm == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003965 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003966 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003967 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003968 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3969 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
3970 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3971 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
3972 (r = sshpkt_put_u32(ssh, port)) != 0 ||
3973 (r = sshpkt_send(ssh)) != 0)
3974 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10003975
djm@openbsd.org115063a2018-06-06 18:22:41 +00003976 fwd_perm_clear(perm); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003977
3978 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003979}
3980
3981/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003982 * Request cancellation of remote forwarding of Unix domain socket
3983 * path from local side.
3984 */
3985static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003986channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003987{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003988 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003989 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003990 int r;
3991 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003992 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10003993
djm@openbsd.org115063a2018-06-06 18:22:41 +00003994 for (i = 0; i < pset->num_permitted_user; i++) {
3995 perm = &pset->permitted_user[i];
3996 if (open_listen_match_streamlocal(perm, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10003997 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003998 perm = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003999 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00004000 if (perm == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004001 debug("%s: requested forward not found", __func__);
4002 return -1;
4003 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004004 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
4005 (r = sshpkt_put_cstring(ssh,
4006 "cancel-streamlocal-forward@openssh.com")) != 0 ||
4007 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
4008 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
4009 (r = sshpkt_send(ssh)) != 0)
4010 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10004011
djm@openbsd.org115063a2018-06-06 18:22:41 +00004012 fwd_perm_clear(perm); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10004013
4014 return 0;
4015}
4016
4017/*
4018 * Request cancellation of remote forwarding of a connection from local side.
4019 */
4020int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004021channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10004022{
4023 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004024 return channel_request_rforward_cancel_streamlocal(ssh,
4025 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10004026 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004027 return channel_request_rforward_cancel_tcpip(ssh,
4028 fwd->listen_host,
4029 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10004030 }
4031}
4032
4033/*
djm@openbsd.org115063a2018-06-06 18:22:41 +00004034 * Permits opening to any host/port if permitted_user[] is empty. This is
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004035 * usually called by the server, because the user could connect to any port
4036 * anyway, and the server has no way to know but to trust the client anyway.
4037 */
4038void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004039channel_permit_all(struct ssh *ssh, int where)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004040{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004041 struct permission_set *pset = permission_set_get(ssh, where);
4042
4043 if (pset->num_permitted_user == 0)
4044 pset->all_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004045}
4046
djm@openbsd.org115063a2018-06-06 18:22:41 +00004047/*
4048 * Permit the specified host/port for forwarding.
4049 */
Ben Lindstroma3700052001-04-05 23:26:32 +00004050void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004051channel_add_permission(struct ssh *ssh, int who, int where,
4052 char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004053{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004054 int local = where == FORWARD_LOCAL;
4055 struct permission_set *pset = permission_set_get(ssh, where);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004056
djm@openbsd.org115063a2018-06-06 18:22:41 +00004057 debug("allow %s forwarding to host %s port %d",
4058 fwd_ident(who, where), host, port);
4059 /*
4060 * Remote forwards set listen_host/port, local forwards set
4061 * host/port_to_connect.
4062 */
4063 permission_set_add(ssh, who, where,
4064 local ? host : 0, local ? port : 0,
4065 local ? NULL : host, NULL, local ? 0 : port, NULL);
4066 pset->all_permitted = 0;
4067}
4068
4069/*
4070 * Administratively disable forwarding.
4071 */
4072void
4073channel_disable_admin(struct ssh *ssh, int where)
4074{
4075 channel_clear_permission(ssh, FORWARD_ADM, where);
4076 permission_set_add(ssh, FORWARD_ADM, where,
4077 NULL, 0, NULL, NULL, 0, NULL);
4078}
4079
4080/*
4081 * Clear a list of permitted opens.
4082 */
4083void
4084channel_clear_permission(struct ssh *ssh, int who, int where)
4085{
4086 struct permission **permp;
4087 u_int *npermp;
4088
4089 permission_set_get_array(ssh, who, where, &permp, &npermp);
4090 *permp = xrecallocarray(*permp, *npermp, 0, sizeof(**permp));
4091 *npermp = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004092}
4093
Darren Tucker68afb8c2011-10-02 18:59:03 +11004094/*
4095 * Update the listen port for a dynamic remote forward, after
4096 * the actual 'newport' has been allocated. If 'newport' < 0 is
4097 * passed then they entry will be invalidated.
4098 */
4099void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004100channel_update_permission(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11004101{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004102 struct permission_set *pset = &ssh->chanctxt->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004103
djm@openbsd.org115063a2018-06-06 18:22:41 +00004104 if (idx < 0 || (u_int)idx >= pset->num_permitted_user) {
4105 debug("%s: index out of range: %d num_permitted_user %d",
4106 __func__, idx, pset->num_permitted_user);
Darren Tucker68afb8c2011-10-02 18:59:03 +11004107 return;
4108 }
4109 debug("%s allowed port %d for forwarding to host %s port %d",
4110 newport > 0 ? "Updating" : "Removing",
4111 newport,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004112 pset->permitted_user[idx].host_to_connect,
4113 pset->permitted_user[idx].port_to_connect);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004114 if (newport <= 0)
djm@openbsd.org115063a2018-06-06 18:22:41 +00004115 fwd_perm_clear(&pset->permitted_user[idx]);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004116 else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004117 pset->permitted_user[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11004118 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11004119 }
4120}
4121
Darren Tucker1338b9e2011-10-02 18:57:35 +11004122/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
4123int
4124permitopen_port(const char *p)
4125{
4126 int port;
4127
4128 if (strcmp(p, "*") == 0)
4129 return FWD_PERMIT_ANY_PORT;
4130 if ((port = a2port(p)) > 0)
4131 return port;
4132 return -1;
4133}
4134
Damien Millerbd740252008-05-19 15:37:09 +10004135/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00004136static int
Damien Millerbd740252008-05-19 15:37:09 +10004137connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004138{
Damien Millerbd740252008-05-19 15:37:09 +10004139 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10004140 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004141 char ntop[NI_MAXHOST];
4142 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11004143
Damien Millerbd740252008-05-19 15:37:09 +10004144 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004145 switch (cctx->ai->ai_family) {
4146 case AF_UNIX:
4147 /* unix:pathname instead of host:port */
4148 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
4149 strlcpy(ntop, "unix", sizeof(ntop));
4150 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
4151 break;
4152 case AF_INET:
4153 case AF_INET6:
4154 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4155 ntop, sizeof(ntop), strport, sizeof(strport),
4156 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4157 error("connect_next: getnameinfo failed");
4158 continue;
4159 }
4160 break;
4161 default:
Damien Miller34132e52000-01-14 15:45:46 +11004162 continue;
4163 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004164 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4165 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004166 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004167 error("socket: %.100s", strerror(errno));
4168 else
4169 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004170 continue;
4171 }
Damien Miller232711f2004-06-15 10:35:30 +10004172 if (set_nonblock(sock) == -1)
4173 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004174 if (connect(sock, cctx->ai->ai_addr,
4175 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4176 debug("connect_next: host %.100s ([%.100s]:%s): "
4177 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004178 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004179 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004180 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004181 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004182 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004183 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004184 if (cctx->ai->ai_family != AF_UNIX)
4185 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004186 debug("connect_next: host %.100s ([%.100s]:%s) "
4187 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4188 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004189 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004190 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004191 return -1;
4192}
Damien Millerb38eff82000-04-01 11:09:21 +10004193
Damien Millerbd740252008-05-19 15:37:09 +10004194static void
4195channel_connect_ctx_free(struct channel_connect *cctx)
4196{
Darren Tuckera627d422013-06-02 07:31:17 +10004197 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004198 if (cctx->aitop) {
4199 if (cctx->aitop->ai_family == AF_UNIX)
4200 free(cctx->aitop);
4201 else
4202 freeaddrinfo(cctx->aitop);
4203 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004204 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004205}
4206
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004207/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004208 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004209 * passing back the failure reason if appropriate.
4210 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004211static int
4212connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4213 char *ctype, char *rname, struct channel_connect *cctx,
4214 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004215{
4216 struct addrinfo hints;
4217 int gaierr;
4218 int sock = -1;
4219 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004220
4221 if (port == PORT_STREAMLOCAL) {
4222 struct sockaddr_un *sunaddr;
4223 struct addrinfo *ai;
4224
4225 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4226 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004227 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004228 }
4229
4230 /*
4231 * Fake up a struct addrinfo for AF_UNIX connections.
4232 * channel_connect_ctx_free() must check ai_family
4233 * and use free() not freeaddirinfo() for AF_UNIX.
4234 */
4235 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4236 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4237 ai->ai_addr = (struct sockaddr *)(ai + 1);
4238 ai->ai_addrlen = sizeof(*sunaddr);
4239 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004240 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004241 ai->ai_protocol = PF_UNSPEC;
4242 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4243 sunaddr->sun_family = AF_UNIX;
4244 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004245 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004246 } else {
4247 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004248 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004249 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004250 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004251 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004252 != 0) {
4253 if (errmsg != NULL)
4254 *errmsg = ssh_gai_strerror(gaierr);
4255 if (reason != NULL)
4256 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004257 error("connect_to %.100s: unknown host (%s)", name,
4258 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004259 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004260 }
Damien Millerbd740252008-05-19 15:37:09 +10004261 }
4262
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004263 cctx->host = xstrdup(name);
4264 cctx->port = port;
4265 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004266
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004267 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004268 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004269 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004270 return -1;
4271 }
4272
4273 return sock;
4274}
4275
4276/* Return CONNECTING channel to remote host:port or local socket path */
4277static Channel *
4278connect_to(struct ssh *ssh, const char *host, int port,
4279 char *ctype, char *rname)
4280{
4281 struct channel_connect cctx;
4282 Channel *c;
4283 int sock;
4284
4285 memset(&cctx, 0, sizeof(cctx));
4286 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4287 &cctx, NULL, NULL);
4288 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004289 channel_connect_ctx_free(&cctx);
4290 return NULL;
4291 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004292 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004293 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004294 c->host_port = port;
4295 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004296 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004297
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004298 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004299}
4300
markus@openbsd.org8d057842016-09-30 09:19:13 +00004301/*
4302 * returns either the newly connected channel or the downstream channel
4303 * that needs to deal with this connection.
4304 */
Damien Millerbd740252008-05-19 15:37:09 +10004305Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004306channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004307 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004308{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004309 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004310 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004311 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004312 struct permission *perm;
Damien Millerbd740252008-05-19 15:37:09 +10004313
djm@openbsd.org115063a2018-06-06 18:22:41 +00004314 for (i = 0; i < pset->num_permitted_user; i++) {
4315 perm = &pset->permitted_user[i];
4316 if (open_listen_match_tcpip(perm,
4317 listen_host, listen_port, 1)) {
4318 if (perm->downstream)
4319 return perm->downstream;
4320 if (perm->port_to_connect == 0)
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004321 return rdynamic_connect_prepare(ssh,
4322 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004323 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004324 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004325 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004326 }
4327 }
4328 error("WARNING: Server requests forwarding for unknown listen_port %d",
4329 listen_port);
4330 return NULL;
4331}
4332
Damien Miller7acefbb2014-07-18 14:11:24 +10004333Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004334channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4335 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004336{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004337 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004338 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004339 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004340 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004341
djm@openbsd.org115063a2018-06-06 18:22:41 +00004342 for (i = 0; i < pset->num_permitted_user; i++) {
4343 perm = &pset->permitted_user[i];
4344 if (open_listen_match_streamlocal(perm, path)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004345 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004346 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004347 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004348 }
4349 }
4350 error("WARNING: Server requests forwarding for unknown path %.100s",
4351 path);
4352 return NULL;
4353}
4354
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004355/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004356Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004357channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4358 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004359{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004360 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004361 struct permission_set *pset = &sc->local_perms;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004362 struct channel_connect cctx;
4363 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004364 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004365 int sock;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004366 struct permission *perm;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004367
djm@openbsd.org115063a2018-06-06 18:22:41 +00004368 permit = pset->all_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004369 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004370 for (i = 0; i < pset->num_permitted_user; i++) {
4371 perm = &pset->permitted_user[i];
4372 if (open_match(perm, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004373 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004374 break;
4375 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004376 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004377 }
Damien Miller9b439df2006-07-24 14:04:00 +10004378
djm@openbsd.org115063a2018-06-06 18:22:41 +00004379 if (pset->num_permitted_admin > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004380 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004381 for (i = 0; i < pset->num_permitted_admin; i++) {
4382 perm = &pset->permitted_admin[i];
4383 if (open_match(perm, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004384 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004385 break;
4386 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004387 }
Damien Miller9b439df2006-07-24 14:04:00 +10004388 }
4389
4390 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10004391 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004392 "but the request was denied.", host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004393 if (reason != NULL)
4394 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004395 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004396 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004397
4398 memset(&cctx, 0, sizeof(cctx));
4399 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4400 &cctx, reason, errmsg);
4401 if (sock == -1) {
4402 channel_connect_ctx_free(&cctx);
4403 return NULL;
4404 }
4405
4406 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4407 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4408 c->host_port = port;
4409 c->path = xstrdup(host);
4410 c->connect_ctx = cctx;
4411
4412 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004413}
4414
Damien Miller7acefbb2014-07-18 14:11:24 +10004415/* Check if connecting to that path is permitted and connect. */
4416Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004417channel_connect_to_path(struct ssh *ssh, const char *path,
4418 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004419{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004420 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004421 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004422 u_int i, permit, permit_adm = 1;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004423 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004424
djm@openbsd.org115063a2018-06-06 18:22:41 +00004425 permit = pset->all_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004426 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004427 for (i = 0; i < pset->num_permitted_user; i++) {
4428 perm = &pset->permitted_user[i];
4429 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004430 permit = 1;
4431 break;
4432 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004433 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004434 }
4435
djm@openbsd.org115063a2018-06-06 18:22:41 +00004436 if (pset->num_permitted_admin > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004437 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004438 for (i = 0; i < pset->num_permitted_admin; i++) {
4439 perm = &pset->permitted_admin[i];
4440 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004441 permit_adm = 1;
4442 break;
4443 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004444 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004445 }
4446
4447 if (!permit || !permit_adm) {
4448 logit("Received request to connect to path %.100s, "
4449 "but the request was denied.", path);
4450 return NULL;
4451 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004452 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004453}
4454
Damien Miller0e220db2004-06-15 10:34:08 +10004455void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004456channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004457{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004458 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004459 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004460 int r;
4461 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004462
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004463 for (i = 0; i < sc->channels_alloc; i++) {
4464 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4465 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004466 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004467 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
Damien Miller0e220db2004-06-15 10:34:08 +10004468 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004469 channel_request_start(ssh, i, "window-change", 0);
4470 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4471 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4472 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4473 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4474 (r = sshpkt_send(ssh)) != 0)
4475 fatal("%s: channel %u: send window-change: %s",
4476 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004477 }
4478}
4479
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004480/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4481static Channel *
4482rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4483{
4484 Channel *c;
4485 int r;
4486
4487 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4488 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4489 c->host_port = 0;
4490 c->path = NULL;
4491
4492 /*
4493 * We need to open the channel before we have a FD,
4494 * so that we can get SOCKS header from peer.
4495 */
4496 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4497 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4498 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4499 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4500 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4501 fatal("%s: channel %i: confirm: %s", __func__,
4502 c->self, ssh_err(r));
4503 }
4504 return c;
4505}
4506
4507/* Return CONNECTING socket to remote host:port or local socket path */
4508static int
4509rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4510{
4511 struct channel_connect cctx;
4512 int sock;
4513
4514 memset(&cctx, 0, sizeof(cctx));
4515 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4516 NULL, &cctx, NULL, NULL);
4517 if (sock == -1)
4518 channel_connect_ctx_free(&cctx);
4519 else {
4520 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4521 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4522 c->connect_ctx = cctx;
4523 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4524 }
4525 return sock;
4526}
4527
Ben Lindstrome9c99912001-06-09 00:41:05 +00004528/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004529
Damien Miller5428f641999-11-25 11:54:57 +11004530/*
4531 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004532 * Returns 0 and a suitable display number for the DISPLAY variable
4533 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004534 */
Kevin Steves366298c2001-12-19 17:58:01 +00004535int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004536x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4537 int x11_use_localhost, int single_connection,
4538 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004539{
Damien Millere7378562001-12-21 14:58:35 +11004540 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004541 int display_number, sock;
4542 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004543 struct addrinfo hints, *ai, *aitop;
4544 char strport[NI_MAXSERV];
4545 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004546
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004547 if (chanids == NULL)
4548 return -1;
4549
Damien Millera34a28b1999-12-14 10:47:15 +11004550 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004551 display_number < MAX_DISPLAYS;
4552 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004553 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004554 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004555 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004556 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004557 hints.ai_socktype = SOCK_STREAM;
4558 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004559 if ((gaierr = getaddrinfo(NULL, strport,
4560 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004561 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004562 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004563 }
Damien Miller34132e52000-01-14 15:45:46 +11004564 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004565 if (ai->ai_family != AF_INET &&
4566 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004567 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004568 sock = socket(ai->ai_family, ai->ai_socktype,
4569 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004570 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11004571 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4572#ifdef EPFNOSUPPORT
4573 && (errno != EPFNOSUPPORT)
4574#endif
4575 ) {
Damien Millere2192732000-01-17 13:22:55 +11004576 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004577 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004578 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004579 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004580 debug("x11_create_display_inet: Socket family %d not supported",
4581 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004582 continue;
4583 }
Damien Miller34132e52000-01-14 15:45:46 +11004584 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004585 if (ai->ai_family == AF_INET6)
4586 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004587 if (x11_use_localhost)
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00004588 set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11004589 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004590 debug2("%s: bind port %d: %.100s", __func__,
4591 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004592 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004593 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004594 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004595 num_socks = 0;
4596 break;
4597 }
4598 socks[num_socks++] = sock;
4599 if (num_socks == NUM_SOCKS)
4600 break;
Damien Miller95def091999-11-25 00:26:21 +11004601 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004602 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004603 if (num_socks > 0)
4604 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004605 }
Damien Miller95def091999-11-25 00:26:21 +11004606 if (display_number >= MAX_DISPLAYS) {
4607 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004608 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004609 }
Damien Miller95def091999-11-25 00:26:21 +11004610 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004611 for (n = 0; n < num_socks; n++) {
4612 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11004613 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11004614 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004615 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004616 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004617 }
Damien Miller95def091999-11-25 00:26:21 +11004618 }
Damien Miller34132e52000-01-14 15:45:46 +11004619
Damien Miller34132e52000-01-14 15:45:46 +11004620 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004621 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004622 for (n = 0; n < num_socks; n++) {
4623 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004624 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004625 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4626 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004627 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004628 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004629 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004630 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004631 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004632
Kevin Steves366298c2001-12-19 17:58:01 +00004633 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004634 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004635 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004636}
4637
Ben Lindstrombba81212001-06-25 05:01:22 +00004638static int
Damien Miller819dbb62009-01-21 16:46:26 +11004639connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004640{
Damien Miller95def091999-11-25 00:26:21 +11004641 int sock;
4642 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004643
Damien Miller3afe3752001-12-21 12:39:51 +11004644 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4645 if (sock < 0)
4646 error("socket: %.100s", strerror(errno));
4647 memset(&addr, 0, sizeof(addr));
4648 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004649 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004650 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004651 return sock;
4652 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004653 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4654 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004655}
4656
Damien Miller819dbb62009-01-21 16:46:26 +11004657static int
4658connect_local_xsocket(u_int dnr)
4659{
4660 char buf[1024];
4661 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4662 return connect_local_xsocket_path(buf);
4663}
4664
Darren Tuckerda39b092017-03-10 13:22:32 +11004665#ifdef __APPLE__
4666static int
4667is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4668{
4669 struct stat sbuf;
4670
4671 if (strlcpy(path, display, pathlen) >= pathlen) {
4672 error("%s: display path too long", __func__);
4673 return 0;
4674 }
4675 if (display[0] != '/')
4676 return 0;
4677 if (stat(path, &sbuf) == 0) {
4678 return 1;
4679 } else {
4680 char *dot = strrchr(path, '.');
4681 if (dot != NULL) {
4682 *dot = '\0';
4683 if (stat(path, &sbuf) == 0) {
4684 return 1;
4685 }
4686 }
4687 }
4688 return 0;
4689}
4690#endif
4691
Damien Millerbd483e72000-04-30 10:00:53 +10004692int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004693x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004694{
Damien Miller57c4e872006-03-31 23:11:07 +11004695 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004696 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004697 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004698 struct addrinfo hints, *ai, *aitop;
4699 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004700 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004701
Damien Miller95def091999-11-25 00:26:21 +11004702 /* Try to open a socket for the local X server. */
4703 display = getenv("DISPLAY");
4704 if (!display) {
4705 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004706 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004707 }
Damien Miller5428f641999-11-25 11:54:57 +11004708 /*
4709 * Now we decode the value of the DISPLAY variable and make a
4710 * connection to the real X server.
4711 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004712
Damien Miller819dbb62009-01-21 16:46:26 +11004713#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004714 /* Check if display is a path to a socket (as set by launchd). */
4715 {
4716 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004717
Darren Tuckerda39b092017-03-10 13:22:32 +11004718 if (is_path_to_xsocket(display, path, sizeof(path))) {
4719 debug("x11_connect_display: $DISPLAY is launchd");
4720
4721 /* Create a socket. */
4722 sock = connect_local_xsocket_path(path);
4723 if (sock < 0)
4724 return -1;
4725
4726 /* OK, we now have a connection to the display. */
4727 return sock;
4728 }
Damien Miller819dbb62009-01-21 16:46:26 +11004729 }
4730#endif
Damien Miller5428f641999-11-25 11:54:57 +11004731 /*
4732 * Check if it is a unix domain socket. Unix domain displays are in
4733 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4734 */
Damien Miller95def091999-11-25 00:26:21 +11004735 if (strncmp(display, "unix:", 5) == 0 ||
4736 display[0] == ':') {
4737 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004738 if (sscanf(strrchr(display, ':') + 1, "%u",
4739 &display_number) != 1) {
4740 error("Could not parse display number from DISPLAY: "
4741 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004742 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004743 }
4744 /* Create a socket. */
4745 sock = connect_local_xsocket(display_number);
4746 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004747 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004748
4749 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004750 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004751 }
Damien Miller5428f641999-11-25 11:54:57 +11004752 /*
4753 * Connect to an inet socket. The DISPLAY value is supposedly
4754 * hostname:d[.s], where hostname may also be numeric IP address.
4755 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004756 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004757 cp = strchr(buf, ':');
4758 if (!cp) {
4759 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004760 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004761 }
Damien Miller95def091999-11-25 00:26:21 +11004762 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004763 /*
4764 * buf now contains the host name. But first we parse the
4765 * display number.
4766 */
Damien Miller57c4e872006-03-31 23:11:07 +11004767 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004768 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004769 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004770 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004771 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004772
Damien Miller34132e52000-01-14 15:45:46 +11004773 /* Look up the host address */
4774 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004775 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004776 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004777 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004778 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004779 error("%.100s: unknown host. (%s)", buf,
4780 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004781 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004782 }
Damien Miller34132e52000-01-14 15:45:46 +11004783 for (ai = aitop; ai; ai = ai->ai_next) {
4784 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004785 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004786 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004787 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004788 continue;
4789 }
4790 /* Connect it to the display. */
4791 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004792 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004793 6000 + display_number, strerror(errno));
4794 close(sock);
4795 continue;
4796 }
4797 /* Success */
4798 break;
Damien Miller34132e52000-01-14 15:45:46 +11004799 }
Damien Miller34132e52000-01-14 15:45:46 +11004800 freeaddrinfo(aitop);
4801 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004802 error("connect %.100s port %u: %.100s", buf,
4803 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004804 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004805 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004806 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004807 return sock;
4808}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004809
Damien Millerbd483e72000-04-30 10:00:53 +10004810/*
Damien Miller5428f641999-11-25 11:54:57 +11004811 * Requests forwarding of X11 connections, generates fake authentication
4812 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004813 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004814 */
Damien Miller4af51302000-04-16 11:18:38 +10004815void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004816x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4817 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004818{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004819 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004820 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004821 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004822 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004823 char *new_data;
4824 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004825
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004826 if (sc->x11_saved_display == NULL)
4827 sc->x11_saved_display = xstrdup(disp);
4828 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004829 error("x11_request_forwarding_with_spoofing: different "
4830 "$DISPLAY already forwarded");
4831 return;
4832 }
4833
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004834 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004835 if (cp)
4836 cp = strchr(cp, '.');
4837 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004838 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004839 else
4840 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004841
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004842 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004843 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004844 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004845
4846 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004847 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004848 for (i = 0; i < data_len; i++) {
4849 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4850 fatal("x11_request_forwarding: bad "
4851 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004852 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004853 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004854 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004855
4856 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004857 sc->x11_fake_data = xmalloc(data_len);
4858 arc4random_buf(sc->x11_fake_data, data_len);
4859 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004860 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004861
Damien Miller95def091999-11-25 00:26:21 +11004862 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004863 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004864
Damien Miller95def091999-11-25 00:26:21 +11004865 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004866 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4867 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4868 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4869 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4870 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4871 (r = sshpkt_send(ssh)) != 0 ||
4872 (r = ssh_packet_write_wait(ssh)) != 0)
4873 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004874 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004875}