blob: 95a51e21b27114838f6e2089aa48f8c1050561a7 [file] [log] [blame]
dtucker@openbsd.org4d2c87b2020-04-25 06:59:36 +00001/* $OpenBSD: channels.c,v 1.398 2020/04/25 06:59:36 dtucker 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
Damien Millercfc18972019-10-09 09:06:35 +110062# 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.orgdbee4112017-09-12 06:32:07 +000087/* -- agent forwarding */
88#define NUM_SOCKS 10
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Ben Lindstrome9c99912001-06-09 00:41:05 +000090/* -- tcp forwarding */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000091/* special-case port number meaning allow any port */
92#define FWD_PERMIT_ANY_PORT 0
93
94/* special-case wildcard meaning allow any host */
95#define FWD_PERMIT_ANY_HOST "*"
96
97/* -- X11 forwarding */
98/* Maximum number of fake X11 displays to try. */
99#define MAX_DISPLAYS 1000
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
djm@openbsd.org115063a2018-06-06 18:22:41 +0000101/* Per-channel callback for pre/post select() actions */
102typedef void chan_fn(struct ssh *, Channel *c,
103 fd_set *readset, fd_set *writeset);
104
Damien Miller5428f641999-11-25 11:54:57 +1100105/*
106 * Data structure for storing which hosts are permitted for forward requests.
107 * The local sides of any remote forwards are stored in this array to prevent
108 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
109 * network (which might be behind a firewall).
110 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000111/* XXX: streamlocal wants a path instead of host:port */
112/* Overload host_to_connect; we could just make this match Forward */
113/* XXX - can we use listen_host instead of listen_path? */
djm@openbsd.org115063a2018-06-06 18:22:41 +0000114struct permission {
Damien Millerb38eff82000-04-01 11:09:21 +1000115 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000116 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000117 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000118 char *listen_path; /* Remote side should listen path. */
119 int listen_port; /* Remote side should listen port. */
markus@openbsd.org8d057842016-09-30 09:19:13 +0000120 Channel *downstream; /* Downstream mux*/
djm@openbsd.org115063a2018-06-06 18:22:41 +0000121};
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
djm@openbsd.org115063a2018-06-06 18:22:41 +0000123/*
124 * Stores the forwarding permission state for a single direction (local or
125 * remote).
126 */
127struct permission_set {
128 /*
129 * List of all local permitted host/port pairs to allow for the
130 * user.
131 */
132 u_int num_permitted_user;
133 struct permission *permitted_user;
134
135 /*
136 * List of all permitted host/port pairs to allow for the admin.
137 */
138 u_int num_permitted_admin;
139 struct permission *permitted_admin;
140
141 /*
142 * If this is true, all opens/listens are permitted. This is the
143 * case on the server on which we have to trust the client anyway,
144 * and the user could do anything after logging in.
145 */
146 int all_permitted;
147};
Ben Lindstrome9c99912001-06-09 00:41:05 +0000148
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000149/* Master structure for channels state */
150struct ssh_channels {
151 /*
152 * Pointer to an array containing all allocated channels. The array
153 * is dynamically extended as needed.
154 */
155 Channel **channels;
Damien Miller9b439df2006-07-24 14:04:00 +1000156
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000157 /*
158 * Size of the channel array. All slots of the array must always be
159 * initialized (at least the type field); unused slots set to NULL
160 */
161 u_int channels_alloc;
Damien Miller9b439df2006-07-24 14:04:00 +1000162
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000163 /*
164 * Maximum file descriptor value used in any of the channels. This is
165 * updated in channel_new.
166 */
167 int channel_max_fd;
Damien Miller9b439df2006-07-24 14:04:00 +1000168
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000169 /*
170 * 'channel_pre*' are called just before select() to add any bits
171 * relevant to channels in the select bitmasks.
172 *
173 * 'channel_post*': perform any appropriate operations for
174 * channels which have events pending.
175 */
176 chan_fn **channel_pre;
177 chan_fn **channel_post;
Darren Tucker1338b9e2011-10-02 18:57:35 +1100178
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000179 /* -- tcp forwarding */
djm@openbsd.org115063a2018-06-06 18:22:41 +0000180 struct permission_set local_perms;
181 struct permission_set remote_perms;
Damien Miller13390022005-07-06 09:44:19 +1000182
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000183 /* -- X11 forwarding */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000184
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000185 /* Saved X11 local (client) display. */
186 char *x11_saved_display;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000187
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000188 /* Saved X11 authentication protocol name. */
189 char *x11_saved_proto;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000190
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000191 /* Saved X11 authentication data. This is the real data. */
192 char *x11_saved_data;
193 u_int x11_saved_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000194
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000195 /* Deadline after which all X11 connections are refused */
196 u_int x11_refuse_time;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000197
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000198 /*
199 * Fake X11 authentication data. This is what the server will be
200 * sending us; we should replace any occurrences of this by the
201 * real data.
202 */
203 u_char *x11_fake_data;
204 u_int x11_fake_data_len;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000205
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000206 /* AF_UNSPEC or AF_INET or AF_INET6 */
207 int IPv4or6;
208};
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000209
Ben Lindstrome9c99912001-06-09 00:41:05 +0000210/* helper */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000211static void port_open_helper(struct ssh *ssh, Channel *c, char *rtype);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000212static const char *channel_rfwd_bind_host(const char *listen_host);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000213
Damien Millerbd740252008-05-19 15:37:09 +1000214/* non-blocking connect helpers */
215static int connect_next(struct channel_connect *);
216static void channel_connect_ctx_free(struct channel_connect *);
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000217static Channel *rdynamic_connect_prepare(struct ssh *, char *, char *);
218static int rdynamic_connect_finish(struct ssh *, Channel *);
Damien Millerbd740252008-05-19 15:37:09 +1000219
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000220/* Setup helper */
221static void channel_handler_init(struct ssh_channels *sc);
222
Ben Lindstrome9c99912001-06-09 00:41:05 +0000223/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000224
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000225void
226channel_init_channels(struct ssh *ssh)
227{
228 struct ssh_channels *sc;
229
djm@openbsd.org285310b2018-12-07 02:31:20 +0000230 if ((sc = calloc(1, sizeof(*sc))) == NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000231 fatal("%s: allocation failed", __func__);
232 sc->channels_alloc = 10;
233 sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
234 sc->IPv4or6 = AF_UNSPEC;
235 channel_handler_init(sc);
236
237 ssh->chanctxt = sc;
238}
239
Damien Millerb38eff82000-04-01 11:09:21 +1000240Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000241channel_by_id(struct ssh *ssh, int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000242{
243 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000244
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000245 if (id < 0 || (u_int)id >= ssh->chanctxt->channels_alloc) {
246 logit("%s: %d: bad id", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000247 return NULL;
248 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000249 c = ssh->chanctxt->channels[id];
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000250 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000251 logit("%s: %d: bad id: channel free", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000252 return NULL;
253 }
254 return c;
255}
256
markus@openbsd.org8d057842016-09-30 09:19:13 +0000257Channel *
djm@openbsd.org9f532292017-09-12 06:35:31 +0000258channel_by_remote_id(struct ssh *ssh, u_int remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000259{
260 Channel *c;
261 u_int i;
262
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000263 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
264 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000265 if (c != NULL && c->have_remote_id && c->remote_id == remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000266 return c;
267 }
268 return NULL;
269}
270
Damien Miller5428f641999-11-25 11:54:57 +1100271/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100272 * Returns the channel if it is allowed to receive protocol messages.
273 * Private channels, like listening sockets, may not receive messages.
274 */
275Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000276channel_lookup(struct ssh *ssh, int id)
Damien Millerd47c62a2005-12-13 19:33:57 +1100277{
278 Channel *c;
279
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000280 if ((c = channel_by_id(ssh, id)) == NULL)
281 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100282
Damien Millerd62f2ca2006-03-26 13:57:41 +1100283 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100284 case SSH_CHANNEL_X11_OPEN:
285 case SSH_CHANNEL_LARVAL:
286 case SSH_CHANNEL_CONNECTING:
287 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000288 case SSH_CHANNEL_RDYNAMIC_OPEN:
289 case SSH_CHANNEL_RDYNAMIC_FINISH:
Damien Millerd47c62a2005-12-13 19:33:57 +1100290 case SSH_CHANNEL_OPENING:
291 case SSH_CHANNEL_OPEN:
Damien Miller36187092013-06-10 13:07:11 +1000292 case SSH_CHANNEL_ABANDONED:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000293 case SSH_CHANNEL_MUX_PROXY:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000294 return c;
Damien Millerd47c62a2005-12-13 19:33:57 +1100295 }
296 logit("Non-public channel %d, type %d.", id, c->type);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000297 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100298}
299
300/*
Damien Millere247cc42000-05-07 12:03:14 +1000301 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000302 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100303 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000304static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000305channel_register_fds(struct ssh *ssh, Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000306 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000308 struct ssh_channels *sc = ssh->chanctxt;
309
Damien Miller95def091999-11-25 00:26:21 +1100310 /* Update the maximum file descriptor value. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000311 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, rfd);
312 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, wfd);
313 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, efd);
Damien Miller5e953212001-01-30 09:14:00 +1100314
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100315 if (rfd != -1)
316 fcntl(rfd, F_SETFD, FD_CLOEXEC);
317 if (wfd != -1 && wfd != rfd)
318 fcntl(wfd, F_SETFD, FD_CLOEXEC);
319 if (efd != -1 && efd != rfd && efd != wfd)
320 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000321
Damien Miller6f83b8e2000-05-02 09:23:45 +1000322 c->rfd = rfd;
323 c->wfd = wfd;
324 c->sock = (rfd == wfd) ? rfd : -1;
325 c->efd = efd;
326 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100327
Darren Tuckered3cdc02008-06-16 23:29:18 +1000328 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000329 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000330#ifdef _AIX
331 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000332 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000333#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100334
Damien Miller69b69aa2000-10-28 14:19:58 +1100335 /* enable nonblocking mode */
336 if (nonblock) {
337 if (rfd != -1)
338 set_nonblock(rfd);
339 if (wfd != -1)
340 set_nonblock(wfd);
341 if (efd != -1)
342 set_nonblock(efd);
343 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000344}
345
346/*
347 * Allocate a new channel object and set its type and socket. This will cause
348 * remote_name to be freed.
349 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000350Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000351channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000352 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000353{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000354 struct ssh_channels *sc = ssh->chanctxt;
355 u_int i, found;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000356 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller95def091999-11-25 00:26:21 +1100358 /* Try to find a free slot where to put the new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000359 for (i = 0; i < sc->channels_alloc; i++) {
360 if (sc->channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100361 /* Found a free slot. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000362 found = i;
Damien Miller95def091999-11-25 00:26:21 +1100363 break;
364 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000365 }
366 if (i >= sc->channels_alloc) {
367 /*
368 * There are no free slots. Take last+1 slot and expand
369 * the array.
370 */
371 found = sc->channels_alloc;
372 if (sc->channels_alloc > CHANNELS_MAX_CHANNELS)
373 fatal("%s: internal error: channels_alloc %d too big",
374 __func__, sc->channels_alloc);
375 sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
376 sc->channels_alloc + 10, sizeof(*sc->channels));
377 sc->channels_alloc += 10;
378 debug2("channel: expanding %d", sc->channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100379 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000380 /* Initialize and return new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000381 c = sc->channels[found] = xcalloc(1, sizeof(Channel));
382 if ((c->input = sshbuf_new()) == NULL ||
383 (c->output = sshbuf_new()) == NULL ||
384 (c->extended = sshbuf_new()) == NULL)
385 fatal("%s: sshbuf_new failed", __func__);
Damien Miller5144df92002-01-22 23:28:45 +1100386 c->ostate = CHAN_OUTPUT_OPEN;
387 c->istate = CHAN_INPUT_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000388 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100389 c->self = found;
390 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000391 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000392 c->local_window = window;
393 c->local_window_max = window;
Damien Millerbd483e72000-04-30 10:00:53 +1000394 c->local_maxpacket = maxpack;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000395 c->remote_name = xstrdup(remote_name);
Damien Millere1537f92010-01-26 13:26:22 +1100396 c->ctl_chan = -1;
Darren Tucker876045b2010-01-08 17:08:00 +1100397 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000398 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100399 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000400 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000402
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000403static void
404channel_find_maxfd(struct ssh_channels *sc)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000405{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000406 u_int i;
407 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000408 Channel *c;
409
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000410 for (i = 0; i < sc->channels_alloc; i++) {
411 c = sc->channels[i];
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000412 if (c != NULL) {
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000413 max = MAXIMUM(max, c->rfd);
414 max = MAXIMUM(max, c->wfd);
415 max = MAXIMUM(max, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000416 }
417 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000418 sc->channel_max_fd = max;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000419}
420
421int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000422channel_close_fd(struct ssh *ssh, int *fdp)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000423{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000424 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000425 int ret = 0, fd = *fdp;
426
427 if (fd != -1) {
428 ret = close(fd);
429 *fdp = -1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000430 if (fd == sc->channel_max_fd)
431 channel_find_maxfd(sc);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000432 }
433 return ret;
434}
435
Damien Miller6f83b8e2000-05-02 09:23:45 +1000436/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000437static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000438channel_close_fds(struct ssh *ssh, Channel *c)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000439{
tb@openbsd.org50693202018-02-05 05:36:49 +0000440 int sock = c->sock, rfd = c->rfd, wfd = c->wfd, efd = c->efd;
441
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000442 channel_close_fd(ssh, &c->sock);
tb@openbsd.org50693202018-02-05 05:36:49 +0000443 if (rfd != sock)
444 channel_close_fd(ssh, &c->rfd);
445 if (wfd != sock && wfd != rfd)
446 channel_close_fd(ssh, &c->wfd);
447 if (efd != sock && efd != rfd && efd != wfd)
448 channel_close_fd(ssh, &c->efd);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000449}
450
451static void
djm@openbsd.org115063a2018-06-06 18:22:41 +0000452fwd_perm_clear(struct permission *perm)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000453{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000454 free(perm->host_to_connect);
455 free(perm->listen_host);
456 free(perm->listen_path);
dtucker@openbsd.org4d2c87b2020-04-25 06:59:36 +0000457 memset(perm, 0, sizeof(*perm));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000458}
459
djm@openbsd.org115063a2018-06-06 18:22:41 +0000460/* Returns an printable name for the specified forwarding permission list */
461static const char *
462fwd_ident(int who, int where)
463{
464 if (who == FORWARD_ADM) {
465 if (where == FORWARD_LOCAL)
466 return "admin local";
467 else if (where == FORWARD_REMOTE)
468 return "admin remote";
469 } else if (who == FORWARD_USER) {
470 if (where == FORWARD_LOCAL)
471 return "user local";
472 else if (where == FORWARD_REMOTE)
473 return "user remote";
474 }
475 fatal("Unknown forward permission list %d/%d", who, where);
476}
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000477
djm@openbsd.org115063a2018-06-06 18:22:41 +0000478/* Returns the forwarding permission list for the specified direction */
479static struct permission_set *
480permission_set_get(struct ssh *ssh, int where)
481{
482 struct ssh_channels *sc = ssh->chanctxt;
483
484 switch (where) {
485 case FORWARD_LOCAL:
486 return &sc->local_perms;
487 break;
488 case FORWARD_REMOTE:
489 return &sc->remote_perms;
490 break;
491 default:
492 fatal("%s: invalid forwarding direction %d", __func__, where);
493 }
494}
495
dtucker@openbsd.org4b7dd222019-06-07 14:18:48 +0000496/* Returns pointers to the specified forwarding list and its element count */
djm@openbsd.org115063a2018-06-06 18:22:41 +0000497static void
498permission_set_get_array(struct ssh *ssh, int who, int where,
499 struct permission ***permpp, u_int **npermpp)
500{
501 struct permission_set *pset = permission_set_get(ssh, where);
502
503 switch (who) {
504 case FORWARD_USER:
505 *permpp = &pset->permitted_user;
506 *npermpp = &pset->num_permitted_user;
507 break;
508 case FORWARD_ADM:
509 *permpp = &pset->permitted_admin;
510 *npermpp = &pset->num_permitted_admin;
511 break;
512 default:
513 fatal("%s: invalid forwarding client %d", __func__, who);
514 }
515}
516
517/* Adds an entry to the spcified forwarding list */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000518static int
djm@openbsd.org115063a2018-06-06 18:22:41 +0000519permission_set_add(struct ssh *ssh, int who, int where,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000520 const char *host_to_connect, int port_to_connect,
521 const char *listen_host, const char *listen_path, int listen_port,
522 Channel *downstream)
523{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000524 struct permission **permp;
525 u_int n, *npermp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000526
djm@openbsd.org115063a2018-06-06 18:22:41 +0000527 permission_set_get_array(ssh, who, where, &permp, &npermp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000528
djm@openbsd.org115063a2018-06-06 18:22:41 +0000529 if (*npermp >= INT_MAX)
530 fatal("%s: %s overflow", __func__, fwd_ident(who, where));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000531
djm@openbsd.org115063a2018-06-06 18:22:41 +0000532 *permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
533 n = (*npermp)++;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000534#define MAYBE_DUP(s) ((s == NULL) ? NULL : xstrdup(s))
djm@openbsd.org115063a2018-06-06 18:22:41 +0000535 (*permp)[n].host_to_connect = MAYBE_DUP(host_to_connect);
536 (*permp)[n].port_to_connect = port_to_connect;
537 (*permp)[n].listen_host = MAYBE_DUP(listen_host);
538 (*permp)[n].listen_path = MAYBE_DUP(listen_path);
539 (*permp)[n].listen_port = listen_port;
540 (*permp)[n].downstream = downstream;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000541#undef MAYBE_DUP
542 return (int)n;
543}
544
545static void
546mux_remove_remote_forwardings(struct ssh *ssh, Channel *c)
547{
548 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +0000549 struct permission_set *pset = &sc->local_perms;
550 struct permission *perm;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000551 int r;
552 u_int i;
553
djm@openbsd.org115063a2018-06-06 18:22:41 +0000554 for (i = 0; i < pset->num_permitted_user; i++) {
555 perm = &pset->permitted_user[i];
556 if (perm->downstream != c)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000557 continue;
558
559 /* cancel on the server, since mux client is gone */
560 debug("channel %d: cleanup remote forward for %s:%u",
djm@openbsd.org115063a2018-06-06 18:22:41 +0000561 c->self, perm->listen_host, perm->listen_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000562 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
563 (r = sshpkt_put_cstring(ssh,
564 "cancel-tcpip-forward")) != 0 ||
565 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
566 (r = sshpkt_put_cstring(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +0000567 channel_rfwd_bind_host(perm->listen_host))) != 0 ||
568 (r = sshpkt_put_u32(ssh, perm->listen_port)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000569 (r = sshpkt_send(ssh)) != 0) {
570 fatal("%s: channel %i: %s", __func__,
571 c->self, ssh_err(r));
572 }
djm@openbsd.org115063a2018-06-06 18:22:41 +0000573 fwd_perm_clear(perm); /* unregister */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000574 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000575}
576
577/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000578void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000579channel_free(struct ssh *ssh, Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000581 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000582 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000583 u_int i, n;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000584 Channel *other;
Damien Millerb84886b2008-05-19 15:05:07 +1000585 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000586
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000587 for (n = 0, i = 0; i < sc->channels_alloc; i++) {
588 if ((other = sc->channels[i]) == NULL)
589 continue;
590 n++;
591 /* detach from mux client and prepare for closing */
592 if (c->type == SSH_CHANNEL_MUX_CLIENT &&
593 other->type == SSH_CHANNEL_MUX_PROXY &&
594 other->mux_ctx == c) {
595 other->mux_ctx = NULL;
596 other->type = SSH_CHANNEL_OPEN;
597 other->istate = CHAN_INPUT_CLOSED;
598 other->ostate = CHAN_OUTPUT_CLOSED;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000599 }
600 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000601 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000602 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000603
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000604 if (c->type == SSH_CHANNEL_MUX_CLIENT)
605 mux_remove_remote_forwardings(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000606
markus@openbsd.org5d140192018-07-27 12:03:17 +0000607 if (log_level_get() >= SYSLOG_LEVEL_DEBUG3) {
608 s = channel_open_message(ssh);
609 debug3("channel %d: status: %s", c->self, s);
610 free(s);
611 }
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000612
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000613 channel_close_fds(ssh, c);
614 sshbuf_free(c->input);
615 sshbuf_free(c->output);
616 sshbuf_free(c->extended);
617 c->input = c->output = c->extended = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000618 free(c->remote_name);
619 c->remote_name = NULL;
620 free(c->path);
621 c->path = NULL;
622 free(c->listening_addr);
623 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000624 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
625 if (cc->abandon_cb != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000626 cc->abandon_cb(ssh, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +1000627 TAILQ_REMOVE(&c->status_confirms, cc, entry);
jsg@openbsd.orgd5ba1c02020-02-26 13:40:09 +0000628 freezero(cc, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000629 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000630 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000631 c->filter_cleanup(ssh, c->self, c->filter_ctx);
632 sc->channels[c->self] = NULL;
jsg@openbsd.orgd5ba1c02020-02-26 13:40:09 +0000633 freezero(c, sizeof(*c));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634}
635
Ben Lindstrome9c99912001-06-09 00:41:05 +0000636void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000637channel_free_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000639 u_int i;
dtucker@openbsd.org62be1ff2019-05-03 04:11:00 +0000640 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641
dtucker@openbsd.org62be1ff2019-05-03 04:11:00 +0000642 for (i = 0; i < sc->channels_alloc; i++)
643 if (sc->channels[i] != NULL)
644 channel_free(ssh, sc->channels[i]);
645
646 free(sc->channels);
647 sc->channels = NULL;
648 sc->channels_alloc = 0;
649 sc->channel_max_fd = 0;
650
651 free(sc->x11_saved_display);
652 sc->x11_saved_display = NULL;
653
654 free(sc->x11_saved_proto);
655 sc->x11_saved_proto = NULL;
656
657 free(sc->x11_saved_data);
658 sc->x11_saved_data = NULL;
659 sc->x11_saved_data_len = 0;
660
661 free(sc->x11_fake_data);
662 sc->x11_fake_data = NULL;
663 sc->x11_fake_data_len = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664}
665
666/*
667 * Closes the sockets/fds of all channels. This is used to close extra file
668 * descriptors after a fork.
669 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000671channel_close_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000673 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000675 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
676 if (ssh->chanctxt->channels[i] != NULL)
677 channel_close_fds(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678}
679
680/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000681 * Stop listening to channels.
682 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000683void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000684channel_stop_listening(struct ssh *ssh)
Ben Lindstrom809744e2001-07-04 05:26:06 +0000685{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000686 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000687 Channel *c;
688
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000689 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
690 c = ssh->chanctxt->channels[i];
Ben Lindstrom809744e2001-07-04 05:26:06 +0000691 if (c != NULL) {
692 switch (c->type) {
693 case SSH_CHANNEL_AUTH_SOCKET:
694 case SSH_CHANNEL_PORT_LISTENER:
695 case SSH_CHANNEL_RPORT_LISTENER:
696 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000697 case SSH_CHANNEL_UNIX_LISTENER:
698 case SSH_CHANNEL_RUNIX_LISTENER:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000699 channel_close_fd(ssh, &c->sock);
700 channel_free(ssh, c);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000701 break;
702 }
703 }
704 }
705}
706
707/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 * Returns true if no channel has too much buffered data, and false if one or
709 * more channel is overfull.
710 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000712channel_not_very_much_buffered_data(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713{
714 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000715 u_int maxsize = ssh_packet_get_maxsize(ssh);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716 Channel *c;
717
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000718 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
719 c = ssh->chanctxt->channels[i];
720 if (c == NULL || c->type != SSH_CHANNEL_OPEN)
721 continue;
722 if (sshbuf_len(c->output) > maxsize) {
723 debug2("channel %d: big output buffer %zu > %u",
724 c->self, sshbuf_len(c->output), maxsize);
725 return 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726 }
727 }
728 return 1;
729}
730
731/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000732int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000733channel_still_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000735 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 Channel *c;
737
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000738 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
739 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740 if (c == NULL)
741 continue;
742 switch (c->type) {
743 case SSH_CHANNEL_X11_LISTENER:
744 case SSH_CHANNEL_PORT_LISTENER:
745 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100746 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 case SSH_CHANNEL_CLOSED:
748 case SSH_CHANNEL_AUTH_SOCKET:
749 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000750 case SSH_CHANNEL_RDYNAMIC_OPEN:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751 case SSH_CHANNEL_CONNECTING:
752 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000753 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000754 case SSH_CHANNEL_UNIX_LISTENER:
755 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756 continue;
757 case SSH_CHANNEL_LARVAL:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758 continue;
759 case SSH_CHANNEL_OPENING:
760 case SSH_CHANNEL_OPEN:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000761 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100763 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000764 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765 return 1;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000767 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000768 /* NOTREACHED */
769 }
770 }
771 return 0;
772}
773
774/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000776channel_find_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000777{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000778 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779 Channel *c;
780
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000781 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
782 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000783 if (c == NULL || !c->have_remote_id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000784 continue;
785 switch (c->type) {
786 case SSH_CHANNEL_CLOSED:
787 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000788 case SSH_CHANNEL_RDYNAMIC_OPEN:
789 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000790 case SSH_CHANNEL_X11_LISTENER:
791 case SSH_CHANNEL_PORT_LISTENER:
792 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100793 case SSH_CHANNEL_MUX_LISTENER:
794 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000795 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000796 case SSH_CHANNEL_OPENING:
797 case SSH_CHANNEL_CONNECTING:
798 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000799 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000800 case SSH_CHANNEL_UNIX_LISTENER:
801 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000802 continue;
803 case SSH_CHANNEL_LARVAL:
804 case SSH_CHANNEL_AUTH_SOCKET:
805 case SSH_CHANNEL_OPEN:
806 case SSH_CHANNEL_X11_OPEN:
807 return i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000808 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000809 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000810 /* NOTREACHED */
811 }
812 }
813 return -1;
814}
815
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +0000816/* Returns the state of the channel's extended usage flag */
817const char *
818channel_format_extended_usage(const Channel *c)
819{
820 if (c->efd == -1)
821 return "closed";
822
823 switch (c->extended_usage) {
824 case CHAN_EXTENDED_WRITE:
825 return "write";
826 case CHAN_EXTENDED_READ:
827 return "read";
828 case CHAN_EXTENDED_IGNORE:
829 return "ignore";
830 default:
831 return "UNKNOWN";
832 }
833}
834
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000835static char *
836channel_format_status(const Channel *c)
837{
838 char *ret = NULL;
839
840 xasprintf(&ret, "t%d %s%u i%u/%zu o%u/%zu e[%s]/%zu "
841 "fd %d/%d/%d sock %d cc %d",
842 c->type,
843 c->have_remote_id ? "r" : "nr", c->remote_id,
844 c->istate, sshbuf_len(c->input),
845 c->ostate, sshbuf_len(c->output),
846 channel_format_extended_usage(c), sshbuf_len(c->extended),
847 c->rfd, c->wfd, c->efd, c->sock, c->ctl_chan);
848 return ret;
849}
850
Ben Lindstrome9c99912001-06-09 00:41:05 +0000851/*
852 * Returns a message describing the currently open forwarded connections,
853 * suitable for sending to the client. The message contains crlf pairs for
854 * newlines.
855 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000856char *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000857channel_open_message(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000858{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000859 struct sshbuf *buf;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000860 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000861 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000862 int r;
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000863 char *cp, *ret;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000864
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000865 if ((buf = sshbuf_new()) == NULL)
866 fatal("%s: sshbuf_new", __func__);
867 if ((r = sshbuf_putf(buf,
868 "The following connections are open:\r\n")) != 0)
869 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
870 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
871 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000872 if (c == NULL)
873 continue;
874 switch (c->type) {
875 case SSH_CHANNEL_X11_LISTENER:
876 case SSH_CHANNEL_PORT_LISTENER:
877 case SSH_CHANNEL_RPORT_LISTENER:
878 case SSH_CHANNEL_CLOSED:
879 case SSH_CHANNEL_AUTH_SOCKET:
880 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000881 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100882 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000883 case SSH_CHANNEL_UNIX_LISTENER:
884 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000885 continue;
886 case SSH_CHANNEL_LARVAL:
887 case SSH_CHANNEL_OPENING:
888 case SSH_CHANNEL_CONNECTING:
889 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000890 case SSH_CHANNEL_RDYNAMIC_OPEN:
891 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892 case SSH_CHANNEL_OPEN:
893 case SSH_CHANNEL_X11_OPEN:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000894 case SSH_CHANNEL_MUX_PROXY:
895 case SSH_CHANNEL_MUX_CLIENT:
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000896 cp = channel_format_status(c);
897 if ((r = sshbuf_putf(buf, " #%d %.300s (%s)\r\n",
898 c->self, c->remote_name, cp)) != 0) {
899 free(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000900 fatal("%s: sshbuf_putf: %s",
901 __func__, ssh_err(r));
djm@openbsd.org6f1aabb2018-10-04 01:04:52 +0000902 }
903 free(cp);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000904 continue;
905 default:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000906 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907 /* NOTREACHED */
908 }
909 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000910 if ((ret = sshbuf_dup_string(buf)) == NULL)
911 fatal("%s: sshbuf_dup_string", __func__);
912 sshbuf_free(buf);
913 return ret;
914}
915
916static void
917open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
918{
919 int r;
920
921 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
922 (r = sshpkt_put_cstring(ssh, type)) != 0 ||
923 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
924 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
925 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
926 fatal("%s: channel %i: open: %s", where, c->self, ssh_err(r));
927 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000928}
929
930void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000931channel_send_open(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000932{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000933 Channel *c = channel_lookup(ssh, id);
934 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000935
Ben Lindstrome9c99912001-06-09 00:41:05 +0000936 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000937 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000938 return;
939 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000940 debug2("channel %d: send open", id);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000941 open_preamble(ssh, __func__, c, c->ctype);
942 if ((r = sshpkt_send(ssh)) != 0)
943 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000944}
945
946void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000947channel_request_start(struct ssh *ssh, int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000948{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000949 Channel *c = channel_lookup(ssh, id);
950 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000951
Ben Lindstrome9c99912001-06-09 00:41:05 +0000952 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000953 logit("%s: %d: unknown channel id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000954 return;
955 }
djm@openbsd.org9f532292017-09-12 06:35:31 +0000956 if (!c->have_remote_id)
957 fatal(":%s: channel %d: no remote id", __func__, c->self);
958
Damien Miller0e220db2004-06-15 10:34:08 +1000959 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000960 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_REQUEST)) != 0 ||
961 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
962 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
963 (r = sshpkt_put_u8(ssh, wantconfirm)) != 0) {
964 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
965 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000966}
Damien Miller4f7becb2006-03-26 14:10:14 +1100967
Ben Lindstrome9c99912001-06-09 00:41:05 +0000968void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000969channel_register_status_confirm(struct ssh *ssh, int id,
970 channel_confirm_cb *cb, channel_confirm_abandon_cb *abandon_cb, void *ctx)
Damien Millerb84886b2008-05-19 15:05:07 +1000971{
972 struct channel_confirm *cc;
973 Channel *c;
974
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000975 if ((c = channel_lookup(ssh, id)) == NULL)
976 fatal("%s: %d: bad id", __func__, id);
Damien Millerb84886b2008-05-19 15:05:07 +1000977
Damien Miller6c81fee2013-11-08 12:19:55 +1100978 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000979 cc->cb = cb;
980 cc->abandon_cb = abandon_cb;
981 cc->ctx = ctx;
982 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
983}
984
985void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000986channel_register_open_confirm(struct ssh *ssh, int id,
987 channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000988{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000989 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000990
Ben Lindstrome9c99912001-06-09 00:41:05 +0000991 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000992 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000993 return;
994 }
Damien Millerb84886b2008-05-19 15:05:07 +1000995 c->open_confirm = fn;
996 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000997}
Damien Miller4f7becb2006-03-26 14:10:14 +1100998
Ben Lindstrome9c99912001-06-09 00:41:05 +0000999void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001000channel_register_cleanup(struct ssh *ssh, int id,
1001 channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001002{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001003 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001004
Ben Lindstrome9c99912001-06-09 00:41:05 +00001005 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001006 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001007 return;
1008 }
Ben Lindstrom809744e2001-07-04 05:26:06 +00001009 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +11001010 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001011}
Damien Miller4f7becb2006-03-26 14:10:14 +11001012
Ben Lindstrome9c99912001-06-09 00:41:05 +00001013void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001014channel_cancel_cleanup(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001015{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001016 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001017
Ben Lindstrome9c99912001-06-09 00:41:05 +00001018 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001019 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001020 return;
1021 }
Ben Lindstrom809744e2001-07-04 05:26:06 +00001022 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +11001023 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001024}
Damien Miller4f7becb2006-03-26 14:10:14 +11001025
Ben Lindstrome9c99912001-06-09 00:41:05 +00001026void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001027channel_register_filter(struct ssh *ssh, int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +10001028 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001029{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001030 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001031
Ben Lindstrome9c99912001-06-09 00:41:05 +00001032 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001033 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001034 return;
1035 }
Damien Miller077b2382005-12-31 16:22:32 +11001036 c->input_filter = ifn;
1037 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001038 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +10001039 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001040}
1041
1042void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001043channel_set_fds(struct ssh *ssh, int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +10001044 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001045{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001046 Channel *c = channel_lookup(ssh, id);
1047 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001048
Ben Lindstrome9c99912001-06-09 00:41:05 +00001049 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
1050 fatal("channel_activate for non-larval channel %d.", id);
djm@openbsd.org9f532292017-09-12 06:35:31 +00001051 if (!c->have_remote_id)
1052 fatal(":%s: channel %d: no remote id", __func__, c->self);
1053
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001054 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001055 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +11001056 c->local_window = c->local_window_max = window_max;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001057
1058 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
1059 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1060 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1061 (r = sshpkt_send(ssh)) != 0)
1062 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001063}
1064
Ben Lindstrombba81212001-06-25 05:01:22 +00001065static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001066channel_pre_listener(struct ssh *ssh, Channel *c,
1067 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001068{
1069 FD_SET(c->sock, readset);
1070}
1071
Ben Lindstrombba81212001-06-25 05:01:22 +00001072static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001073channel_pre_connecting(struct ssh *ssh, Channel *c,
1074 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001075{
1076 debug3("channel %d: waiting for connection", c->self);
1077 FD_SET(c->sock, writeset);
1078}
1079
Ben Lindstrombba81212001-06-25 05:01:22 +00001080static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001081channel_pre_open(struct ssh *ssh, Channel *c,
1082 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001083{
Damien Miller33b13562000-04-04 14:38:59 +10001084 if (c->istate == CHAN_INPUT_OPEN &&
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001085 c->remote_window > 0 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001086 sshbuf_len(c->input) < c->remote_window &&
1087 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Miller33b13562000-04-04 14:38:59 +10001088 FD_SET(c->rfd, readset);
1089 if (c->ostate == CHAN_OUTPUT_OPEN ||
1090 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001091 if (sshbuf_len(c->output) > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001092 FD_SET(c->wfd, writeset);
1093 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +00001094 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001095 debug2("channel %d: "
1096 "obuf_empty delayed efd %d/(%zu)", c->self,
1097 c->efd, sshbuf_len(c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001098 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001099 chan_obuf_empty(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10001100 }
1101 }
1102 /** XXX check close conditions, too */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001103 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED &&
1104 c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +10001105 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001106 sshbuf_len(c->extended) > 0)
Damien Miller33b13562000-04-04 14:38:59 +10001107 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +10001108 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
1109 (c->extended_usage == CHAN_EXTENDED_READ ||
1110 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001111 sshbuf_len(c->extended) < c->remote_window)
Damien Miller33b13562000-04-04 14:38:59 +10001112 FD_SET(c->efd, readset);
1113 }
Damien Miller0e220db2004-06-15 10:34:08 +10001114 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +10001115}
1116
Damien Millerb38eff82000-04-01 11:09:21 +10001117/*
1118 * This is a special state for X11 authentication spoofing. An opened X11
1119 * connection (when authentication spoofing is being done) remains in this
1120 * state until the first packet has been completely read. The authentication
1121 * data in that packet is then substituted by the real data if it matches the
1122 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +10001123 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +00001124 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +10001125 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001126static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001127x11_open_helper(struct ssh *ssh, struct sshbuf *b)
Damien Millerb38eff82000-04-01 11:09:21 +10001128{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001129 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001130 u_char *ucp;
1131 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001132
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001133 /* Is this being called after the refusal deadline? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001134 if (sc->x11_refuse_time != 0 &&
1135 (u_int)monotime() >= sc->x11_refuse_time) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001136 verbose("Rejected X11 connection after ForwardX11Timeout "
1137 "expired");
1138 return -1;
1139 }
1140
Damien Millerb38eff82000-04-01 11:09:21 +10001141 /* Check if the fixed size part of the packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001142 if (sshbuf_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +10001143 return 0;
1144
1145 /* Parse the lengths of variable-length fields. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001146 ucp = sshbuf_mutable_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +10001147 if (ucp[0] == 0x42) { /* Byte order MSB first. */
1148 proto_len = 256 * ucp[6] + ucp[7];
1149 data_len = 256 * ucp[8] + ucp[9];
1150 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
1151 proto_len = ucp[6] + 256 * ucp[7];
1152 data_len = ucp[8] + 256 * ucp[9];
1153 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +10001154 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001155 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +10001156 return -1;
1157 }
1158
1159 /* Check if the whole packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001160 if (sshbuf_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +10001161 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
1162 return 0;
1163
1164 /* Check if authentication protocol matches. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001165 if (proto_len != strlen(sc->x11_saved_proto) ||
1166 memcmp(ucp + 12, sc->x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001167 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +10001168 return -1;
1169 }
1170 /* Check if authentication data matches our fake data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001171 if (data_len != sc->x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001172 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001173 sc->x11_fake_data, sc->x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001174 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +10001175 return -1;
1176 }
1177 /* Check fake data length */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001178 if (sc->x11_fake_data_len != sc->x11_saved_data_len) {
Damien Millerb38eff82000-04-01 11:09:21 +10001179 error("X11 fake_data_len %d != saved_data_len %d",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001180 sc->x11_fake_data_len, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001181 return -1;
1182 }
1183 /*
1184 * Received authentication protocol and data match
1185 * our fake data. Substitute the fake data with real
1186 * data.
1187 */
1188 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001189 sc->x11_saved_data, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001190 return 1;
1191}
1192
Ben Lindstrombba81212001-06-25 05:01:22 +00001193static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001194channel_pre_x11_open(struct ssh *ssh, Channel *c,
1195 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001196{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001197 int ret = x11_open_helper(ssh, c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001198
1199 /* c->force_drain = 1; */
1200
Damien Millerb38eff82000-04-01 11:09:21 +10001201 if (ret == 1) {
1202 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001203 channel_pre_open(ssh, c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001204 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001205 logit("X11 connection rejected because of wrong authentication.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001206 debug2("X11 rejected %d i%d/o%d",
1207 c->self, c->istate, c->ostate);
1208 chan_read_failed(ssh, c);
1209 sshbuf_reset(c->input);
1210 chan_ibuf_empty(ssh, c);
1211 sshbuf_reset(c->output);
1212 chan_write_failed(ssh, c);
Damien Millerfbdeece2003-09-02 22:52:31 +10001213 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001214 }
1215}
1216
Damien Millere1537f92010-01-26 13:26:22 +11001217static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001218channel_pre_mux_client(struct ssh *ssh,
1219 Channel *c, fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11001220{
Damien Millerd530f5f2010-05-21 14:57:10 +10001221 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001222 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Millere1537f92010-01-26 13:26:22 +11001223 FD_SET(c->rfd, readset);
1224 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1225 /* clear buffer immediately (discard any partial packet) */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001226 sshbuf_reset(c->input);
1227 chan_ibuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001228 /* Start output drain. XXX just kill chan? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001229 chan_rcvd_oclose(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001230 }
1231 if (c->ostate == CHAN_OUTPUT_OPEN ||
1232 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001233 if (sshbuf_len(c->output) > 0)
Damien Millere1537f92010-01-26 13:26:22 +11001234 FD_SET(c->wfd, writeset);
1235 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001236 chan_obuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001237 }
1238}
1239
Ben Lindstromb3921512001-04-11 15:57:50 +00001240/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +00001241static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001242channel_decode_socks4(Channel *c, struct sshbuf *input, struct sshbuf *output)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001243{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001244 const u_char *p;
1245 char *host;
Damien Miller1781f532009-01-28 16:24:41 +11001246 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001247 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001248 struct {
1249 u_int8_t version;
1250 u_int8_t command;
1251 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001252 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001253 } s4_req, s4_rsp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001254 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001255
Ben Lindstromb3921512001-04-11 15:57:50 +00001256 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001257
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001258 have = sshbuf_len(input);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001259 len = sizeof(s4_req);
1260 if (have < len)
1261 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001262 p = sshbuf_ptr(input);
Damien Miller1781f532009-01-28 16:24:41 +11001263
1264 need = 1;
1265 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1266 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1267 debug2("channel %d: socks4a request", c->self);
1268 /* ... and needs an extra string (the hostname) */
1269 need = 2;
1270 }
1271 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001272 for (found = 0, i = len; i < have; i++) {
1273 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001274 found++;
1275 if (found == need)
1276 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001277 }
1278 if (i > 1024) {
1279 /* the peer is probably sending garbage */
1280 debug("channel %d: decode socks4: too long",
1281 c->self);
1282 return -1;
1283 }
1284 }
Damien Miller1781f532009-01-28 16:24:41 +11001285 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001286 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001287 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1288 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1289 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1290 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001291 debug("channels %d: decode socks4: %s", c->self, ssh_err(r));
1292 return -1;
1293 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001294 have = sshbuf_len(input);
1295 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001296 if (memchr(p, '\0', have) == NULL) {
1297 error("channel %d: decode socks4: user not nul terminated",
Damien Miller13481292014-02-27 10:18:32 +11001298 c->self);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001299 return -1;
1300 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001301 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001302 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001303 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001304 strlcpy(username, p, sizeof(username));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001305 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001306 fatal("%s: channel %d: consume: %s", __func__,
1307 c->self, ssh_err(r));
1308 }
Darren Tuckera627d422013-06-02 07:31:17 +10001309 free(c->path);
1310 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001311 if (need == 1) { /* SOCKS4: one string */
1312 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001313 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001314 } else { /* SOCKS4A: two strings */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001315 have = sshbuf_len(input);
1316 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001317 if (memchr(p, '\0', have) == NULL) {
1318 error("channel %d: decode socks4a: host not nul "
1319 "terminated", c->self);
1320 return -1;
1321 }
Damien Miller1781f532009-01-28 16:24:41 +11001322 len = strlen(p);
1323 debug2("channel %d: decode socks4a: host %s/%d",
1324 c->self, p, len);
1325 len++; /* trailing '\0' */
Damien Millera1c1b6c2009-01-28 16:29:49 +11001326 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001327 error("channel %d: hostname \"%.100s\" too long",
1328 c->self, p);
1329 return -1;
1330 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001331 c->path = xstrdup(p);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001332 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001333 fatal("%s: channel %d: consume: %s", __func__,
1334 c->self, ssh_err(r));
1335 }
Damien Miller1781f532009-01-28 16:24:41 +11001336 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001337 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001338
Damien Millerfbdeece2003-09-02 22:52:31 +10001339 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001340 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001341
Ben Lindstromb3921512001-04-11 15:57:50 +00001342 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001343 debug("channel %d: cannot handle: %s cn %d",
1344 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001345 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001346 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001347 s4_rsp.version = 0; /* vn: 0 for reply */
1348 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001349 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001350 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001351 if ((r = sshbuf_put(output, &s4_rsp, sizeof(s4_rsp))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001352 fatal("%s: channel %d: append reply: %s", __func__,
1353 c->self, ssh_err(r));
1354 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001355 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001356}
1357
Darren Tucker46471c92003-07-03 13:55:19 +10001358/* try to decode a socks5 header */
1359#define SSH_SOCKS5_AUTHDONE 0x1000
1360#define SSH_SOCKS5_NOAUTH 0x00
1361#define SSH_SOCKS5_IPV4 0x01
1362#define SSH_SOCKS5_DOMAIN 0x03
1363#define SSH_SOCKS5_IPV6 0x04
1364#define SSH_SOCKS5_CONNECT 0x01
1365#define SSH_SOCKS5_SUCCESS 0x00
1366
1367static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001368channel_decode_socks5(Channel *c, struct sshbuf *input, struct sshbuf *output)
Darren Tucker46471c92003-07-03 13:55:19 +10001369{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001370 /* XXX use get/put_u8 instead of trusting struct padding */
Darren Tucker46471c92003-07-03 13:55:19 +10001371 struct {
1372 u_int8_t version;
1373 u_int8_t command;
1374 u_int8_t reserved;
1375 u_int8_t atyp;
1376 } s5_req, s5_rsp;
1377 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001378 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001379 const u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001380 u_int have, need, i, found, nmethods, addrlen, af;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001381 int r;
Darren Tucker46471c92003-07-03 13:55:19 +10001382
1383 debug2("channel %d: decode socks5", c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001384 p = sshbuf_ptr(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001385 if (p[0] != 0x05)
1386 return -1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001387 have = sshbuf_len(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001388 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1389 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001390 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001391 return 0;
1392 nmethods = p[1];
1393 if (have < nmethods + 2)
1394 return 0;
1395 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001396 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001397 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001398 found = 1;
1399 break;
1400 }
1401 }
1402 if (!found) {
1403 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1404 c->self);
1405 return -1;
1406 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001407 if ((r = sshbuf_consume(input, nmethods + 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001408 fatal("%s: channel %d: consume: %s", __func__,
1409 c->self, ssh_err(r));
1410 }
1411 /* version, method */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001412 if ((r = sshbuf_put_u8(output, 0x05)) != 0 ||
1413 (r = sshbuf_put_u8(output, SSH_SOCKS5_NOAUTH)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001414 fatal("%s: channel %d: append reply: %s", __func__,
1415 c->self, ssh_err(r));
1416 }
Darren Tucker46471c92003-07-03 13:55:19 +10001417 c->flags |= SSH_SOCKS5_AUTHDONE;
1418 debug2("channel %d: socks5 auth done", c->self);
1419 return 0; /* need more */
1420 }
1421 debug2("channel %d: socks5 post auth", c->self);
1422 if (have < sizeof(s5_req)+1)
1423 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001424 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001425 if (s5_req.version != 0x05 ||
1426 s5_req.command != SSH_SOCKS5_CONNECT ||
1427 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001428 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001429 return -1;
1430 }
Darren Tucker47eede72005-03-14 23:08:12 +11001431 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001432 case SSH_SOCKS5_IPV4:
1433 addrlen = 4;
1434 af = AF_INET;
1435 break;
1436 case SSH_SOCKS5_DOMAIN:
1437 addrlen = p[sizeof(s5_req)];
1438 af = -1;
1439 break;
1440 case SSH_SOCKS5_IPV6:
1441 addrlen = 16;
1442 af = AF_INET6;
1443 break;
1444 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001445 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001446 return -1;
1447 }
Damien Miller0f077072006-07-10 22:21:02 +10001448 need = sizeof(s5_req) + addrlen + 2;
1449 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1450 need++;
1451 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001452 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001453 if ((r = sshbuf_consume(input, sizeof(s5_req))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001454 fatal("%s: channel %d: consume: %s", __func__,
1455 c->self, ssh_err(r));
1456 }
1457 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1458 /* host string length */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001459 if ((r = sshbuf_consume(input, 1)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001460 fatal("%s: channel %d: consume: %s", __func__,
1461 c->self, ssh_err(r));
1462 }
1463 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001464 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1465 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001466 debug("channel %d: parse addr/port: %s", c->self, ssh_err(r));
1467 return -1;
1468 }
Darren Tucker46471c92003-07-03 13:55:19 +10001469 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001470 free(c->path);
1471 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001472 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001473 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001474 error("channel %d: dynamic request: socks5 hostname "
1475 "\"%.100s\" too long", c->self, dest_addr);
1476 return -1;
1477 }
1478 c->path = xstrdup(dest_addr);
1479 } else {
1480 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1481 return -1;
1482 c->path = xstrdup(ntop);
1483 }
Darren Tucker46471c92003-07-03 13:55:19 +10001484 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001485
Damien Millerfbdeece2003-09-02 22:52:31 +10001486 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001487 c->self, c->path, c->host_port, s5_req.command);
1488
1489 s5_rsp.version = 0x05;
1490 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1491 s5_rsp.reserved = 0; /* ignored */
1492 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001493 dest_port = 0; /* ignored */
1494
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001495 if ((r = sshbuf_put(output, &s5_rsp, sizeof(s5_rsp))) != 0 ||
1496 (r = sshbuf_put_u32(output, ntohl(INADDR_ANY))) != 0 ||
1497 (r = sshbuf_put(output, &dest_port, sizeof(dest_port))) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001498 fatal("%s: channel %d: append reply: %s", __func__,
1499 c->self, ssh_err(r));
Darren Tucker46471c92003-07-03 13:55:19 +10001500 return 1;
1501}
1502
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001503Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001504channel_connect_stdio_fwd(struct ssh *ssh,
1505 const char *host_to_connect, u_short port_to_connect, int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001506{
1507 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001508
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001509 debug("%s %s:%d", __func__, host_to_connect, port_to_connect);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001510
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001511 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001512 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1513 0, "stdio-forward", /*nonblock*/0);
1514
1515 c->path = xstrdup(host_to_connect);
1516 c->host_port = port_to_connect;
1517 c->listening_port = 0;
1518 c->force_drain = 1;
1519
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001520 channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
1521 port_open_helper(ssh, c, "direct-tcpip");
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001522
1523 return c;
1524}
1525
Ben Lindstromb3921512001-04-11 15:57:50 +00001526/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001527static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001528channel_pre_dynamic(struct ssh *ssh, Channel *c,
1529 fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001530{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001531 const u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001532 u_int have;
1533 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001534
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001535 have = sshbuf_len(c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001536 debug2("channel %d: pre_dynamic: have %d", c->self, have);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001537 /* sshbuf_dump(c->input, stderr); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001538 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001539 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001540 /* need more */
1541 FD_SET(c->sock, readset);
1542 return;
1543 }
1544 /* try to guess the protocol */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001545 p = sshbuf_ptr(c->input);
1546 /* XXX sshbuf_peek_u8? */
Ben Lindstromb3921512001-04-11 15:57:50 +00001547 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001548 case 0x04:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001549 ret = channel_decode_socks4(c, c->input, c->output);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001550 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001551 case 0x05:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001552 ret = channel_decode_socks5(c, c->input, c->output);
Darren Tucker46471c92003-07-03 13:55:19 +10001553 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001554 default:
1555 ret = -1;
1556 break;
1557 }
1558 if (ret < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001559 chan_mark_dead(ssh, c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001560 } else if (ret == 0) {
1561 debug2("channel %d: pre_dynamic: need more", c->self);
1562 /* need more */
1563 FD_SET(c->sock, readset);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001564 if (sshbuf_len(c->output))
1565 FD_SET(c->sock, writeset);
Ben Lindstromb3921512001-04-11 15:57:50 +00001566 } else {
1567 /* switch to the next state */
1568 c->type = SSH_CHANNEL_OPENING;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001569 port_open_helper(ssh, c, "direct-tcpip");
Ben Lindstromb3921512001-04-11 15:57:50 +00001570 }
1571}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001572
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001573/* simulate read-error */
1574static void
1575rdynamic_close(struct ssh *ssh, Channel *c)
1576{
1577 c->type = SSH_CHANNEL_OPEN;
1578 chan_read_failed(ssh, c);
1579 sshbuf_reset(c->input);
1580 chan_ibuf_empty(ssh, c);
1581 sshbuf_reset(c->output);
1582 chan_write_failed(ssh, c);
1583}
1584
1585/* reverse dynamic port forwarding */
1586static void
1587channel_before_prepare_select_rdynamic(struct ssh *ssh, Channel *c)
1588{
1589 const u_char *p;
1590 u_int have, len;
1591 int r, ret;
1592
1593 have = sshbuf_len(c->output);
1594 debug2("channel %d: pre_rdynamic: have %d", c->self, have);
1595 /* sshbuf_dump(c->output, stderr); */
1596 /* EOF received */
1597 if (c->flags & CHAN_EOF_RCVD) {
1598 if ((r = sshbuf_consume(c->output, have)) != 0) {
1599 fatal("%s: channel %d: consume: %s",
1600 __func__, c->self, ssh_err(r));
1601 }
1602 rdynamic_close(ssh, c);
1603 return;
1604 }
1605 /* check if the fixed size part of the packet is in buffer. */
1606 if (have < 3)
1607 return;
1608 /* try to guess the protocol */
1609 p = sshbuf_ptr(c->output);
1610 switch (p[0]) {
1611 case 0x04:
1612 /* switch input/output for reverse forwarding */
1613 ret = channel_decode_socks4(c, c->output, c->input);
1614 break;
1615 case 0x05:
1616 ret = channel_decode_socks5(c, c->output, c->input);
1617 break;
1618 default:
1619 ret = -1;
1620 break;
1621 }
1622 if (ret < 0) {
1623 rdynamic_close(ssh, c);
1624 } else if (ret == 0) {
1625 debug2("channel %d: pre_rdynamic: need more", c->self);
1626 /* send socks request to peer */
1627 len = sshbuf_len(c->input);
1628 if (len > 0 && len < c->remote_window) {
1629 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
1630 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1631 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
1632 (r = sshpkt_send(ssh)) != 0) {
1633 fatal("%s: channel %i: rdynamic: %s", __func__,
1634 c->self, ssh_err(r));
1635 }
1636 if ((r = sshbuf_consume(c->input, len)) != 0) {
1637 fatal("%s: channel %d: consume: %s",
1638 __func__, c->self, ssh_err(r));
1639 }
1640 c->remote_window -= len;
1641 }
1642 } else if (rdynamic_connect_finish(ssh, c) < 0) {
1643 /* the connect failed */
1644 rdynamic_close(ssh, c);
1645 }
1646}
1647
Damien Millerb38eff82000-04-01 11:09:21 +10001648/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001649static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001650channel_post_x11_listener(struct ssh *ssh, Channel *c,
1651 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001652{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001653 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001654 struct sockaddr_storage addr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001655 int r, newsock, oerrno, remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001656 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001657 char buf[16384], *remote_ipaddr;
Damien Millerb38eff82000-04-01 11:09:21 +10001658
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001659 if (!FD_ISSET(c->sock, readset))
1660 return;
Damien Millerbd483e72000-04-30 10:00:53 +10001661
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001662 debug("X11 connection requested.");
1663 addrlen = sizeof(addr);
1664 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1665 if (c->single_connection) {
1666 oerrno = errno;
1667 debug2("single_connection: closing X11 listener.");
1668 channel_close_fd(ssh, &c->sock);
1669 chan_mark_dead(ssh, c);
1670 errno = oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001671 }
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001672 if (newsock == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001673 if (errno != EINTR && errno != EWOULDBLOCK &&
1674 errno != ECONNABORTED)
1675 error("accept: %.100s", strerror(errno));
1676 if (errno == EMFILE || errno == ENFILE)
1677 c->notbefore = monotime() + 1;
1678 return;
1679 }
1680 set_nodelay(newsock);
1681 remote_ipaddr = get_peer_ipaddr(newsock);
1682 remote_port = get_peer_port(newsock);
1683 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1684 remote_ipaddr, remote_port);
1685
1686 nc = channel_new(ssh, "accepted x11 socket",
1687 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1688 c->local_window_max, c->local_maxpacket, 0, buf, 1);
1689 open_preamble(ssh, __func__, nc, "x11");
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001690 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1691 (r = sshpkt_put_u32(ssh, remote_port)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001692 fatal("%s: channel %i: reply %s", __func__,
1693 c->self, ssh_err(r));
1694 }
1695 if ((r = sshpkt_send(ssh)) != 0)
1696 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
1697 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001698}
1699
Ben Lindstrombba81212001-06-25 05:01:22 +00001700static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001701port_open_helper(struct ssh *ssh, Channel *c, char *rtype)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001702{
Damien Miller4def1842013-12-29 17:45:26 +11001703 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001704 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001705 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001706 int remote_port = get_peer_port(c->sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001707 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001708
Damien Millerd6369432010-02-02 17:02:07 +11001709 if (remote_port == -1) {
1710 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001711 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001712 remote_ipaddr = xstrdup("127.0.0.1");
1713 remote_port = 65535;
1714 }
1715
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001716 free(c->remote_name);
1717 xasprintf(&c->remote_name,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001718 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001719 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001720 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001721 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001722
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001723 open_preamble(ssh, __func__, c, rtype);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001724 if (strcmp(rtype, "direct-tcpip") == 0) {
1725 /* target host, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001726 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1727 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) {
1728 fatal("%s: channel %i: reply %s", __func__,
1729 c->self, ssh_err(r));
1730 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001731 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1732 /* target path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001733 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1734 fatal("%s: channel %i: reply %s", __func__,
1735 c->self, ssh_err(r));
1736 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001737 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1738 /* listen path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001739 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1740 fatal("%s: channel %i: reply %s", __func__,
1741 c->self, ssh_err(r));
1742 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001743 } else {
1744 /* listen address, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001745 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1746 (r = sshpkt_put_u32(ssh, local_port)) != 0) {
1747 fatal("%s: channel %i: reply %s", __func__,
1748 c->self, ssh_err(r));
1749 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001750 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001751 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1752 /* reserved for future owner/mode info */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001753 if ((r = sshpkt_put_cstring(ssh, "")) != 0) {
1754 fatal("%s: channel %i: reply %s", __func__,
1755 c->self, ssh_err(r));
1756 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001757 } else {
1758 /* originator host and port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001759 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1760 (r = sshpkt_put_u32(ssh, (u_int)remote_port)) != 0) {
1761 fatal("%s: channel %i: reply %s", __func__,
1762 c->self, ssh_err(r));
1763 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001764 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001765 if ((r = sshpkt_send(ssh)) != 0)
1766 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10001767 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001768 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001769}
1770
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001771void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001772channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001773{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001774 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001775}
1776
Damien Millerb38eff82000-04-01 11:09:21 +10001777/*
1778 * This socket is listening for connections to a forwarded TCP/IP port.
1779 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001780static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001781channel_post_port_listener(struct ssh *ssh, Channel *c,
1782 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001783{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001784 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001785 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001786 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001787 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001788 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001789
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001790 if (!FD_ISSET(c->sock, readset))
1791 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001792
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001793 debug("Connection to port %d forwarding to %.100s port %d requested.",
1794 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001795
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001796 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1797 nextstate = SSH_CHANNEL_OPENING;
1798 rtype = "forwarded-tcpip";
1799 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1800 nextstate = SSH_CHANNEL_OPENING;
1801 rtype = "forwarded-streamlocal@openssh.com";
1802 } else if (c->host_port == PORT_STREAMLOCAL) {
1803 nextstate = SSH_CHANNEL_OPENING;
1804 rtype = "direct-streamlocal@openssh.com";
1805 } else if (c->host_port == 0) {
1806 nextstate = SSH_CHANNEL_DYNAMIC;
1807 rtype = "dynamic-tcpip";
1808 } else {
1809 nextstate = SSH_CHANNEL_OPENING;
1810 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001811 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001812
1813 addrlen = sizeof(addr);
1814 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001815 if (newsock == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001816 if (errno != EINTR && errno != EWOULDBLOCK &&
1817 errno != ECONNABORTED)
1818 error("accept: %.100s", strerror(errno));
1819 if (errno == EMFILE || errno == ENFILE)
1820 c->notbefore = monotime() + 1;
1821 return;
1822 }
1823 if (c->host_port != PORT_STREAMLOCAL)
1824 set_nodelay(newsock);
1825 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1826 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1827 nc->listening_port = c->listening_port;
1828 nc->host_port = c->host_port;
1829 if (c->path != NULL)
1830 nc->path = xstrdup(c->path);
1831
1832 if (nextstate != SSH_CHANNEL_DYNAMIC)
1833 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001834}
1835
1836/*
1837 * This is the authentication agent socket listening for connections from
1838 * clients.
1839 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001840static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001841channel_post_auth_listener(struct ssh *ssh, Channel *c,
1842 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001843{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001844 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001845 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001846 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001847 socklen_t addrlen;
1848
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001849 if (!FD_ISSET(c->sock, readset))
1850 return;
1851
1852 addrlen = sizeof(addr);
1853 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001854 if (newsock == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001855 error("accept from auth socket: %.100s", strerror(errno));
1856 if (errno == EMFILE || errno == ENFILE)
1857 c->notbefore = monotime() + 1;
1858 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001859 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001860 nc = channel_new(ssh, "accepted auth socket",
1861 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1862 c->local_window_max, c->local_maxpacket,
1863 0, "accepted auth socket", 1);
1864 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1865 if ((r = sshpkt_send(ssh)) != 0)
1866 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001867}
1868
Ben Lindstrombba81212001-06-25 05:01:22 +00001869static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001870channel_post_connecting(struct ssh *ssh, Channel *c,
1871 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001872{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001873 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001874 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001875
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001876 if (!FD_ISSET(c->sock, writeset))
1877 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001878 if (!c->have_remote_id)
1879 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001880 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1881 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001882 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001883 err = errno;
1884 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001885 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001886 if (err == 0) {
1887 debug("channel %d: connected to %s port %d",
1888 c->self, c->connect_ctx.host, c->connect_ctx.port);
1889 channel_connect_ctx_free(&c->connect_ctx);
1890 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001891 if (isopen) {
1892 /* no message necessary */
1893 } else {
1894 if ((r = sshpkt_start(ssh,
1895 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1896 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1897 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1898 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1899 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1900 != 0)
1901 fatal("%s: channel %i: confirm: %s", __func__,
1902 c->self, ssh_err(r));
1903 if ((r = sshpkt_send(ssh)) != 0)
1904 fatal("%s: channel %i: %s", __func__, c->self,
1905 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001906 }
1907 } else {
1908 debug("channel %d: connection failed: %s",
1909 c->self, strerror(err));
1910 /* Try next address, if any */
1911 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1912 close(c->sock);
1913 c->sock = c->rfd = c->wfd = sock;
1914 channel_find_maxfd(ssh->chanctxt);
1915 return;
1916 }
1917 /* Exhausted all addresses */
1918 error("connect_to %.100s port %d: failed.",
1919 c->connect_ctx.host, c->connect_ctx.port);
1920 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001921 if (isopen) {
1922 rdynamic_close(ssh, c);
1923 } else {
1924 if ((r = sshpkt_start(ssh,
1925 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1926 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001927 (r = sshpkt_put_u32(ssh,
1928 SSH2_OPEN_CONNECT_FAILED)) != 0 ||
1929 (r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1930 (r = sshpkt_put_cstring(ssh, "")) != 0) {
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001931 fatal("%s: channel %i: failure: %s", __func__,
1932 c->self, ssh_err(r));
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001933 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001934 if ((r = sshpkt_send(ssh)) != 0)
1935 fatal("%s: channel %i: %s", __func__, c->self,
1936 ssh_err(r));
1937 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001938 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001939 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001940}
1941
Ben Lindstrombba81212001-06-25 05:01:22 +00001942static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001943channel_handle_rfd(struct ssh *ssh, Channel *c,
1944 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001945{
Darren Tucker11327cc2005-03-14 23:22:25 +11001946 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001947 ssize_t len;
1948 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001949
Damien Miller835284b2007-06-11 13:03:16 +10001950 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001951
1952 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1953 return 1;
1954
1955 errno = 0;
1956 len = read(c->rfd, buf, sizeof(buf));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001957 if (len == -1 && (errno == EINTR ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001958 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1959 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001960#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001961 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001962#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001963 if ((!c->isatty && len <= 0) ||
1964 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001965#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001966 debug2("channel %d: read<=0 rfd %d len %zd",
1967 c->self, c->rfd, len);
1968 if (c->type != SSH_CHANNEL_OPEN) {
1969 debug2("channel %d: not open", c->self);
1970 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001971 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001972 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001973 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001974 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001975 return -1;
1976 }
1977 if (c->input_filter != NULL) {
1978 if (c->input_filter(ssh, c, buf, len) == -1) {
1979 debug2("channel %d: filter stops", c->self);
1980 chan_read_failed(ssh, c);
1981 }
1982 } else if (c->datagram) {
1983 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1984 fatal("%s: channel %d: put datagram: %s", __func__,
1985 c->self, ssh_err(r));
1986 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1987 fatal("%s: channel %d: put data: %s", __func__,
1988 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001989 }
1990 return 1;
1991}
Damien Miller4f7becb2006-03-26 14:10:14 +11001992
Ben Lindstrombba81212001-06-25 05:01:22 +00001993static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001994channel_handle_wfd(struct ssh *ssh, Channel *c,
1995 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001996{
Ben Lindstrome229b252001-03-05 06:28:06 +00001997 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001998 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1999 size_t dlen, olen = 0;
2000 int r, len;
2001
2002 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2003 sshbuf_len(c->output) == 0)
2004 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10002005
2006 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002007 olen = sshbuf_len(c->output);
2008 if (c->output_filter != NULL) {
2009 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
2010 debug2("channel %d: filter stops", c->self);
2011 if (c->type != SSH_CHANNEL_OPEN)
2012 chan_mark_dead(ssh, c);
2013 else
2014 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002015 return -1;
2016 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002017 } else if (c->datagram) {
2018 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
2019 fatal("%s: channel %d: get datagram: %s", __func__,
2020 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00002021 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002022 } else {
2023 buf = data = sshbuf_mutable_ptr(c->output);
2024 dlen = sshbuf_len(c->output);
2025 }
2026
2027 if (c->datagram) {
2028 /* ignore truncated writes, datagrams might get lost */
djm@openbsd.orgc704f642017-09-24 09:50:01 +00002029 len = write(c->wfd, buf, dlen);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002030 free(data);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002031 if (len == -1 && (errno == EINTR || errno == EAGAIN ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002032 errno == EWOULDBLOCK))
2033 return 1;
2034 if (len <= 0)
2035 goto write_fail;
2036 goto out;
2037 }
2038
2039#ifdef _AIX
2040 /* XXX: Later AIX versions can't push as much data to tty */
2041 if (c->wfd_isatty)
2042 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10002043#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002044
2045 len = write(c->wfd, buf, dlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002046 if (len == -1 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002047 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
2048 return 1;
2049 if (len <= 0) {
2050 write_fail:
2051 if (c->type != SSH_CHANNEL_OPEN) {
2052 debug2("channel %d: not open", c->self);
2053 chan_mark_dead(ssh, c);
2054 return -1;
2055 } else {
2056 chan_write_failed(ssh, c);
2057 }
2058 return -1;
2059 }
2060#ifndef BROKEN_TCGETATTR_ICANON
2061 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
2062 if (tcgetattr(c->wfd, &tio) == 0 &&
2063 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
2064 /*
2065 * Simulate echo to reduce the impact of
2066 * traffic analysis. We need to match the
2067 * size of a SSH2_MSG_CHANNEL_DATA message
2068 * (4 byte channel id + buf)
2069 */
2070 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
2071 (r = sshpkt_send(ssh)) != 0)
2072 fatal("%s: channel %d: ignore: %s",
2073 __func__, c->self, ssh_err(r));
2074 }
2075 }
2076#endif /* BROKEN_TCGETATTR_ICANON */
2077 if ((r = sshbuf_consume(c->output, len)) != 0) {
2078 fatal("%s: channel %d: consume: %s",
2079 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002080 }
Damien Miller7d457182010-08-05 23:09:48 +10002081 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002082 c->local_consumed += olen - sshbuf_len(c->output);
2083
Damien Miller33b13562000-04-04 14:38:59 +10002084 return 1;
2085}
Damien Miller4f7becb2006-03-26 14:10:14 +11002086
Ben Lindstrombba81212001-06-25 05:01:22 +00002087static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002088channel_handle_efd_write(struct ssh *ssh, Channel *c,
2089 fd_set *readset, fd_set *writeset)
2090{
2091 int r;
2092 ssize_t len;
2093
2094 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2095 return 1;
2096
2097 len = write(c->efd, sshbuf_ptr(c->extended),
2098 sshbuf_len(c->extended));
2099 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002100 if (len == -1 && (errno == EINTR || errno == EAGAIN ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002101 errno == EWOULDBLOCK))
2102 return 1;
2103 if (len <= 0) {
2104 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2105 channel_close_fd(ssh, &c->efd);
2106 } else {
2107 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2108 fatal("%s: channel %d: consume: %s",
2109 __func__, c->self, ssh_err(r));
2110 }
2111 c->local_consumed += len;
2112 }
2113 return 1;
2114}
2115
2116static int
2117channel_handle_efd_read(struct ssh *ssh, Channel *c,
2118 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002119{
Darren Tucker11327cc2005-03-14 23:22:25 +11002120 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002121 ssize_t len;
Damien Miller03e92dd2019-02-08 14:50:36 +11002122 int r, force;
Damien Miller33b13562000-04-04 14:38:59 +10002123
Damien Miller03e92dd2019-02-08 14:50:36 +11002124 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
2125
2126 if (c->efd == -1 || (!force && !FD_ISSET(c->efd, readset)))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002127 return 1;
2128
2129 len = read(c->efd, buf, sizeof(buf));
2130 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002131 if (len == -1 && (errno == EINTR || ((errno == EAGAIN ||
Damien Miller03e92dd2019-02-08 14:50:36 +11002132 errno == EWOULDBLOCK) && !force)))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002133 return 1;
2134 if (len <= 0) {
2135 debug2("channel %d: closing read-efd %d",
2136 c->self, c->efd);
2137 channel_close_fd(ssh, &c->efd);
2138 } else {
2139 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2140 debug3("channel %d: discard efd",
2141 c->self);
2142 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2143 fatal("%s: channel %d: append: %s",
2144 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002145 }
2146 }
2147 return 1;
2148}
Damien Miller4f7becb2006-03-26 14:10:14 +11002149
Damien Miller0e220db2004-06-15 10:34:08 +10002150static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002151channel_handle_efd(struct ssh *ssh, Channel *c,
2152 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002153{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002154 if (c->efd == -1)
2155 return 1;
2156
2157 /** XXX handle drain efd, too */
2158
2159 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2160 return channel_handle_efd_write(ssh, c, readset, writeset);
2161 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2162 c->extended_usage == CHAN_EXTENDED_IGNORE)
2163 return channel_handle_efd_read(ssh, c, readset, writeset);
2164
2165 return 1;
2166}
2167
2168static int
2169channel_check_window(struct ssh *ssh, Channel *c)
2170{
2171 int r;
2172
Ben Lindstromb3921512001-04-11 15:57:50 +00002173 if (c->type == SSH_CHANNEL_OPEN &&
2174 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002175 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002176 c->local_maxpacket*3) ||
2177 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002178 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002179 if (!c->have_remote_id)
2180 fatal(":%s: channel %d: no remote id",
2181 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002182 if ((r = sshpkt_start(ssh,
2183 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2184 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2185 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2186 (r = sshpkt_send(ssh)) != 0) {
2187 fatal("%s: channel %i: %s", __func__,
2188 c->self, ssh_err(r));
2189 }
Damien Millerd3444942000-09-30 14:20:03 +11002190 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002191 c->self, c->local_window,
2192 c->local_consumed);
2193 c->local_window += c->local_consumed;
2194 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002195 }
2196 return 1;
2197}
2198
Ben Lindstrombba81212001-06-25 05:01:22 +00002199static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002200channel_post_open(struct ssh *ssh, Channel *c,
2201 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002202{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002203 channel_handle_rfd(ssh, c, readset, writeset);
2204 channel_handle_wfd(ssh, c, readset, writeset);
2205 channel_handle_efd(ssh, c, readset, writeset);
2206 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002207}
2208
Damien Millere1537f92010-01-26 13:26:22 +11002209static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002210read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002211{
2212 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002213 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002214 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002215 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002216
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002217 if (sshbuf_len(c->input) < need) {
2218 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002219 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002220 if (len == -1 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002221 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002222 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002223 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002224 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002225 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002226 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002227 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2228 fatal("%s: channel %d: append: %s",
2229 __func__, c->self, ssh_err(r));
2230 }
Damien Millere1537f92010-01-26 13:26:22 +11002231 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002232 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002233}
2234
2235static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002236channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2237 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002238{
2239 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002240
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002241 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2242 return;
2243 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2244 return;
2245 if (c->mux_pause)
2246 return;
2247
2248 /*
2249 * Don't not read past the precise end of packets to
2250 * avoid disrupting fd passing.
2251 */
2252 if (read_mux(ssh, c, 4) < 4) /* read header */
2253 return;
2254 /* XXX sshbuf_peek_u32 */
2255 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002256#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002257 if (need > CHANNEL_MUX_MAX_PACKET) {
2258 debug2("channel %d: packet too big %u > %u",
2259 c->self, CHANNEL_MUX_MAX_PACKET, need);
2260 chan_rcvd_oclose(ssh, c);
2261 return;
Damien Millere1537f92010-01-26 13:26:22 +11002262 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002263 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2264 return;
2265 if (c->mux_rcb(ssh, c) != 0) {
2266 debug("channel %d: mux_rcb failed", c->self);
2267 chan_mark_dead(ssh, c);
2268 return;
Damien Millere1537f92010-01-26 13:26:22 +11002269 }
2270}
2271
2272static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002273channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2274 fd_set *readset, fd_set *writeset)
2275{
2276 ssize_t len;
2277 int r;
2278
2279 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2280 sshbuf_len(c->output) == 0)
2281 return;
2282
2283 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002284 if (len == -1 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002285 return;
2286 if (len <= 0) {
2287 chan_mark_dead(ssh, c);
2288 return;
2289 }
2290 if ((r = sshbuf_consume(c->output, len)) != 0)
2291 fatal("%s: channel %d: consume: %s", __func__,
2292 c->self, ssh_err(r));
2293}
2294
2295static void
2296channel_post_mux_client(struct ssh *ssh, Channel *c,
2297 fd_set *readset, fd_set *writeset)
2298{
2299 channel_post_mux_client_read(ssh, c, readset, writeset);
2300 channel_post_mux_client_write(ssh, c, readset, writeset);
2301}
2302
2303static void
2304channel_post_mux_listener(struct ssh *ssh, Channel *c,
2305 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002306{
2307 Channel *nc;
2308 struct sockaddr_storage addr;
2309 socklen_t addrlen;
2310 int newsock;
2311 uid_t euid;
2312 gid_t egid;
2313
2314 if (!FD_ISSET(c->sock, readset))
2315 return;
2316
2317 debug("multiplexing control connection");
2318
2319 /*
2320 * Accept connection on control socket
2321 */
2322 memset(&addr, 0, sizeof(addr));
2323 addrlen = sizeof(addr);
2324 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2325 &addrlen)) == -1) {
2326 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002327 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002328 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002329 return;
2330 }
2331
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002332 if (getpeereid(newsock, &euid, &egid) == -1) {
Damien Millere1537f92010-01-26 13:26:22 +11002333 error("%s getpeereid failed: %s", __func__,
2334 strerror(errno));
2335 close(newsock);
2336 return;
2337 }
2338 if ((euid != 0) && (getuid() != euid)) {
2339 error("multiplex uid mismatch: peer euid %u != uid %u",
2340 (u_int)euid, (u_int)getuid());
2341 close(newsock);
2342 return;
2343 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002344 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002345 newsock, newsock, -1, c->local_window_max,
2346 c->local_maxpacket, 0, "mux-control", 1);
2347 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002348 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002349 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002350 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002351 /* mux state transitions must not elicit protocol messages */
2352 nc->flags |= CHAN_LOCAL;
2353}
2354
Ben Lindstrombba81212001-06-25 05:01:22 +00002355static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002356channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002357{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002358 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002359
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002360 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2361 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2362 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002363
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002364 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2365 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2366 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2367 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2368 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2369 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2370 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2371 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2372 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2373 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002374 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002375 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2376 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2377
2378 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2379 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2380 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2381 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2382 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2383 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2384 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2385 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2386 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002387 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002388 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2389 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2390
2391 sc->channel_pre = pre;
2392 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002393}
2394
Damien Miller3ec27592001-10-12 11:35:04 +10002395/* gc dead channels */
2396static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002397channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002398{
2399 if (c == NULL)
2400 return;
2401 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002402 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002403 return;
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002404
Damien Millerfbdeece2003-09-02 22:52:31 +10002405 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002406 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002407 /* if we still have a callback */
2408 if (c->detach_user != NULL)
2409 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002410 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002411 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002412 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002413 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002414 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002415 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002416}
2417
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002418enum channel_table { CHAN_PRE, CHAN_POST };
2419
Ben Lindstrombba81212001-06-25 05:01:22 +00002420static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002421channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002422 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002423{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002424 struct ssh_channels *sc = ssh->chanctxt;
2425 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002426 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002427 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002428 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002429
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002430 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002431 if (unpause_secs != NULL)
2432 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002433 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2434 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002435 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002436 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002437 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002438 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002439 c->delayed = 0;
2440 else
2441 continue;
2442 }
Damien Millera6508752012-04-22 11:21:10 +10002443 if (ftab[c->type] != NULL) {
2444 /*
2445 * Run handlers that are not paused.
2446 */
2447 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002448 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002449 else if (unpause_secs != NULL) {
2450 /*
2451 * Collect the time that the earliest
2452 * channel comes off pause.
2453 */
2454 debug3("%s: chan %d: skip for %d more seconds",
2455 __func__, c->self,
2456 (int)(c->notbefore - now));
2457 if (*unpause_secs == 0 ||
2458 (c->notbefore - now) < *unpause_secs)
2459 *unpause_secs = c->notbefore - now;
2460 }
2461 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002462 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002463 }
Damien Millera6508752012-04-22 11:21:10 +10002464 if (unpause_secs != NULL && *unpause_secs != 0)
2465 debug3("%s: first channel unpauses in %d seconds",
2466 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002467}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002468
Ben Lindstrome9c99912001-06-09 00:41:05 +00002469/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002470 * Create sockets before allocating the select bitmasks.
2471 * This is necessary for things that need to happen after reading
2472 * the network-input but before channel_prepare_select().
2473 */
2474static void
2475channel_before_prepare_select(struct ssh *ssh)
2476{
2477 struct ssh_channels *sc = ssh->chanctxt;
2478 Channel *c;
2479 u_int i, oalloc;
2480
2481 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2482 c = sc->channels[i];
2483 if (c == NULL)
2484 continue;
2485 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2486 channel_before_prepare_select_rdynamic(ssh, c);
2487 }
2488}
2489
2490/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002491 * Allocate/update select bitmasks and add any bits relevant to channels in
2492 * select bitmasks.
2493 */
Damien Miller4af51302000-04-16 11:18:38 +10002494void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002495channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2496 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002497{
Damien Miller36812092006-03-26 14:22:47 +11002498 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002499
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002500 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2501
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002502 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002503
Damien Miller36812092006-03-26 14:22:47 +11002504 nfdset = howmany(n+1, NFDBITS);
2505 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002506 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002507 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2508 sz = nfdset * sizeof(fd_mask);
2509
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002510 /* perhaps check sz < nalloc/2 and shrink? */
2511 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002512 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2513 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002514 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002515 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002516 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002517 memset(*readsetp, 0, sz);
2518 memset(*writesetp, 0, sz);
2519
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002520 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002521 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002522 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002523}
2524
Ben Lindstrome9c99912001-06-09 00:41:05 +00002525/*
2526 * After select, perform any appropriate operations for channels which have
2527 * events pending.
2528 */
Damien Miller4af51302000-04-16 11:18:38 +10002529void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002530channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002531{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002532 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002533}
2534
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002535/*
2536 * Enqueue data for channels with open or draining c->input.
2537 */
2538static void
2539channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2540{
djm@openbsd.org55486f52017-09-23 22:04:07 +00002541 size_t len, plen;
2542 const u_char *pkt;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002543 int r;
2544
2545 if ((len = sshbuf_len(c->input)) == 0) {
2546 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2547 /*
2548 * input-buffer is empty and read-socket shutdown:
2549 * tell peer, that we will not send more data:
2550 * send IEOF.
2551 * hack for extended data: delay EOF if EFD still
2552 * in use.
2553 */
2554 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2555 debug2("channel %d: "
2556 "ibuf_empty delayed efd %d/(%zu)",
2557 c->self, c->efd, sshbuf_len(c->extended));
2558 else
2559 chan_ibuf_empty(ssh, c);
2560 }
2561 return;
2562 }
2563
djm@openbsd.org9f532292017-09-12 06:35:31 +00002564 if (!c->have_remote_id)
2565 fatal(":%s: channel %d: no remote id", __func__, c->self);
2566
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002567 if (c->datagram) {
2568 /* Check datagram will fit; drop if not */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002569 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2570 fatal("%s: channel %d: get datagram: %s", __func__,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002571 c->self, ssh_err(r));
2572 /*
2573 * XXX this does tail-drop on the datagram queue which is
2574 * usually suboptimal compared to head-drop. Better to have
2575 * backpressure at read time? (i.e. read + discard)
2576 */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002577 if (plen > c->remote_window || plen > c->remote_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002578 debug("channel %d: datagram too big", c->self);
2579 return;
2580 }
2581 /* Enqueue it */
2582 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2583 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org55486f52017-09-23 22:04:07 +00002584 (r = sshpkt_put_string(ssh, pkt, plen)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002585 (r = sshpkt_send(ssh)) != 0) {
2586 fatal("%s: channel %i: datagram: %s", __func__,
2587 c->self, ssh_err(r));
2588 }
djm@openbsd.org55486f52017-09-23 22:04:07 +00002589 c->remote_window -= plen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002590 return;
2591 }
2592
2593 /* Enqueue packet for buffered data. */
2594 if (len > c->remote_window)
2595 len = c->remote_window;
2596 if (len > c->remote_maxpacket)
2597 len = c->remote_maxpacket;
2598 if (len == 0)
2599 return;
2600 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2601 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2602 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2603 (r = sshpkt_send(ssh)) != 0) {
2604 fatal("%s: channel %i: data: %s", __func__,
2605 c->self, ssh_err(r));
2606 }
2607 if ((r = sshbuf_consume(c->input, len)) != 0)
2608 fatal("%s: channel %i: consume: %s", __func__,
2609 c->self, ssh_err(r));
2610 c->remote_window -= len;
2611}
2612
2613/*
2614 * Enqueue data for channels with open c->extended in read mode.
2615 */
2616static void
2617channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2618{
2619 size_t len;
2620 int r;
2621
2622 if ((len = sshbuf_len(c->extended)) == 0)
2623 return;
2624
2625 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2626 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2627 if (len > c->remote_window)
2628 len = c->remote_window;
2629 if (len > c->remote_maxpacket)
2630 len = c->remote_maxpacket;
2631 if (len == 0)
2632 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002633 if (!c->have_remote_id)
2634 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002635 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2636 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2637 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2638 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2639 (r = sshpkt_send(ssh)) != 0) {
2640 fatal("%s: channel %i: data: %s", __func__,
2641 c->self, ssh_err(r));
2642 }
2643 if ((r = sshbuf_consume(c->extended, len)) != 0)
2644 fatal("%s: channel %i: consume: %s", __func__,
2645 c->self, ssh_err(r));
2646 c->remote_window -= len;
2647 debug2("channel %d: sent ext data %zu", c->self, len);
2648}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002649
Damien Miller5e953212001-01-30 09:14:00 +11002650/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002651void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002652channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002653{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002654 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002655 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002656 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002657
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002658 for (i = 0; i < sc->channels_alloc; i++) {
2659 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002660 if (c == NULL)
2661 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002662
Ben Lindstrome9c99912001-06-09 00:41:05 +00002663 /*
2664 * We are only interested in channels that can have buffered
2665 * incoming data.
2666 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002667 if (c->type != SSH_CHANNEL_OPEN)
2668 continue;
2669 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002670 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002671 debug3("channel %d: will not send data after close",
2672 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002673 continue;
2674 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002675
Damien Miller95def091999-11-25 00:26:21 +11002676 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002677 if (c->istate == CHAN_INPUT_OPEN ||
2678 c->istate == CHAN_INPUT_WAIT_DRAIN)
2679 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002680 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002681 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002682 c->extended_usage == CHAN_EXTENDED_READ)
2683 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002684 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002685}
2686
markus@openbsd.org8d057842016-09-30 09:19:13 +00002687/* -- mux proxy support */
2688
2689/*
2690 * When multiplexing channel messages for mux clients we have to deal
2691 * with downstream messages from the mux client and upstream messages
2692 * from the ssh server:
2693 * 1) Handling downstream messages is straightforward and happens
2694 * in channel_proxy_downstream():
2695 * - We forward all messages (mostly) unmodified to the server.
2696 * - However, in order to route messages from upstream to the correct
2697 * downstream client, we have to replace the channel IDs used by the
2698 * mux clients with a unique channel ID because the mux clients might
2699 * use conflicting channel IDs.
2700 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2701 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2702 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2703 * with the newly allocated channel ID.
2704 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
djm@openbsd.org001aa552018-04-10 00:10:49 +00002705 * channels and processed by channel_proxy_upstream(). The local channel ID
markus@openbsd.org8d057842016-09-30 09:19:13 +00002706 * is then translated back to the original mux client ID.
2707 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2708 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2709 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2710 * downstream mux client are removed.
2711 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2712 * requires more work, because they are not addressed to a specific
2713 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2714 * out whether the request is addressed to the local client or a
2715 * specific downstream client based on the listen-address/port.
djm@openbsd.org001aa552018-04-10 00:10:49 +00002716 * 6) Agent and X11-Forwarding have a similar problem and are currently
markus@openbsd.org8d057842016-09-30 09:19:13 +00002717 * not supported as the matching session/channel cannot be identified
2718 * easily.
2719 */
2720
2721/*
2722 * receive packets from downstream mux clients:
2723 * channel callback fired on read from mux client, creates
2724 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2725 * on channel creation.
2726 */
2727int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002728channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002729{
2730 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002731 struct sshbuf *original = NULL, *modified = NULL;
2732 const u_char *cp;
2733 char *ctype = NULL, *listen_host = NULL;
2734 u_char type;
2735 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002736 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002737 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002738
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002739 /* sshbuf_dump(downstream->input, stderr); */
2740 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002741 != 0) {
2742 error("%s: malformed message: %s", __func__, ssh_err(r));
2743 return -1;
2744 }
2745 if (have < 2) {
2746 error("%s: short message", __func__);
2747 return -1;
2748 }
2749 type = cp[1];
2750 /* skip padlen + type */
2751 cp += 2;
2752 have -= 2;
2753 if (ssh_packet_log_type(type))
2754 debug3("%s: channel %u: down->up: type %u", __func__,
2755 downstream->self, type);
2756
2757 switch (type) {
2758 case SSH2_MSG_CHANNEL_OPEN:
2759 if ((original = sshbuf_from(cp, have)) == NULL ||
2760 (modified = sshbuf_new()) == NULL) {
2761 error("%s: alloc", __func__);
2762 goto out;
2763 }
2764 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2765 (r = sshbuf_get_u32(original, &id)) != 0) {
2766 error("%s: parse error %s", __func__, ssh_err(r));
2767 goto out;
2768 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002769 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002770 -1, -1, -1, 0, 0, 0, ctype, 1);
2771 c->mux_ctx = downstream; /* point to mux client */
2772 c->mux_downstream_id = id; /* original downstream id */
2773 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2774 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2775 (r = sshbuf_putb(modified, original)) != 0) {
2776 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002777 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002778 goto out;
2779 }
2780 break;
2781 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2782 /*
2783 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2784 * need to parse 'remote_id' instead of 'ctype'.
2785 */
2786 if ((original = sshbuf_from(cp, have)) == NULL ||
2787 (modified = sshbuf_new()) == NULL) {
2788 error("%s: alloc", __func__);
2789 goto out;
2790 }
2791 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2792 (r = sshbuf_get_u32(original, &id)) != 0) {
2793 error("%s: parse error %s", __func__, ssh_err(r));
2794 goto out;
2795 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002796 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002797 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2798 c->mux_ctx = downstream; /* point to mux client */
2799 c->mux_downstream_id = id;
2800 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002801 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002802 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2803 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2804 (r = sshbuf_putb(modified, original)) != 0) {
2805 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002806 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002807 goto out;
2808 }
2809 break;
2810 case SSH2_MSG_GLOBAL_REQUEST:
2811 if ((original = sshbuf_from(cp, have)) == NULL) {
2812 error("%s: alloc", __func__);
2813 goto out;
2814 }
2815 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2816 error("%s: parse error %s", __func__, ssh_err(r));
2817 goto out;
2818 }
2819 if (strcmp(ctype, "tcpip-forward") != 0) {
2820 error("%s: unsupported request %s", __func__, ctype);
2821 goto out;
2822 }
2823 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2824 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2825 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2826 error("%s: parse error %s", __func__, ssh_err(r));
2827 goto out;
2828 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002829 if (listen_port > 65535) {
2830 error("%s: tcpip-forward for %s: bad port %u",
2831 __func__, listen_host, listen_port);
2832 goto out;
2833 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002834 /* Record that connection to this host/port is permitted. */
djm@openbsd.org115063a2018-06-06 18:22:41 +00002835 permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002836 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002837 listen_host = NULL;
2838 break;
2839 case SSH2_MSG_CHANNEL_CLOSE:
2840 if (have < 4)
2841 break;
2842 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002843 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002844 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002845 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002846 else
2847 c->flags |= CHAN_CLOSE_SENT;
2848 }
2849 break;
2850 }
2851 if (modified) {
2852 if ((r = sshpkt_start(ssh, type)) != 0 ||
2853 (r = sshpkt_putb(ssh, modified)) != 0 ||
2854 (r = sshpkt_send(ssh)) != 0) {
2855 error("%s: send %s", __func__, ssh_err(r));
2856 goto out;
2857 }
2858 } else {
2859 if ((r = sshpkt_start(ssh, type)) != 0 ||
2860 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2861 (r = sshpkt_send(ssh)) != 0) {
2862 error("%s: send %s", __func__, ssh_err(r));
2863 goto out;
2864 }
2865 }
2866 ret = 0;
2867 out:
2868 free(ctype);
2869 free(listen_host);
2870 sshbuf_free(original);
2871 sshbuf_free(modified);
2872 return ret;
2873}
2874
2875/*
2876 * receive packets from upstream server and de-multiplex packets
2877 * to correct downstream:
2878 * implemented as a helper for channel input handlers,
2879 * replaces local (proxy) channel ID with downstream channel ID.
2880 */
2881int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002882channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002883{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002884 struct sshbuf *b = NULL;
2885 Channel *downstream;
2886 const u_char *cp = NULL;
2887 size_t len;
2888 int r;
2889
2890 /*
2891 * When receiving packets from the peer we need to check whether we
2892 * need to forward the packets to the mux client. In this case we
djm@openbsd.org001aa552018-04-10 00:10:49 +00002893 * restore the original channel id and keep track of CLOSE messages,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002894 * so we can cleanup the channel.
2895 */
2896 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2897 return 0;
2898 if ((downstream = c->mux_ctx) == NULL)
2899 return 0;
2900 switch (type) {
2901 case SSH2_MSG_CHANNEL_CLOSE:
2902 case SSH2_MSG_CHANNEL_DATA:
2903 case SSH2_MSG_CHANNEL_EOF:
2904 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2905 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2906 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2907 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2908 case SSH2_MSG_CHANNEL_SUCCESS:
2909 case SSH2_MSG_CHANNEL_FAILURE:
2910 case SSH2_MSG_CHANNEL_REQUEST:
2911 break;
2912 default:
2913 debug2("%s: channel %u: unsupported type %u", __func__,
2914 c->self, type);
2915 return 0;
2916 }
2917 if ((b = sshbuf_new()) == NULL) {
2918 error("%s: alloc reply", __func__);
2919 goto out;
2920 }
2921 /* get remaining payload (after id) */
2922 cp = sshpkt_ptr(ssh, &len);
2923 if (cp == NULL) {
2924 error("%s: no packet", __func__);
2925 goto out;
2926 }
2927 /* translate id and send to muxclient */
2928 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2929 (r = sshbuf_put_u8(b, type)) != 0 ||
2930 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2931 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002932 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002933 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2934 goto out;
2935 }
2936 /* sshbuf_dump(b, stderr); */
2937 if (ssh_packet_log_type(type))
2938 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2939 type);
2940 out:
2941 /* update state */
2942 switch (type) {
2943 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2944 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002945 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002946 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002947 c->have_remote_id = 1;
2948 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002949 break;
2950 case SSH2_MSG_CHANNEL_CLOSE:
2951 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002952 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002953 else
2954 c->flags |= CHAN_CLOSE_RCVD;
2955 break;
2956 }
2957 sshbuf_free(b);
2958 return 1;
2959}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002960
2961/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002962
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002963/* Parse a channel ID from the current packet */
2964static int
2965channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2966{
2967 u_int32_t id;
2968 int r;
2969
2970 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2971 error("%s: parse id: %s", where, ssh_err(r));
2972 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2973 }
2974 if (id > INT_MAX) {
2975 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2976 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2977 }
2978 return (int)id;
2979}
2980
2981/* Lookup a channel from an ID in the current packet */
2982static Channel *
2983channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2984{
2985 int id = channel_parse_id(ssh, where, what);
2986 Channel *c;
2987
2988 if ((c = channel_lookup(ssh, id)) == NULL) {
2989 ssh_packet_disconnect(ssh,
2990 "%s packet referred to nonexistent channel %d", what, id);
2991 }
2992 return c;
2993}
2994
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002995int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002996channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002997{
Damien Miller633de332014-05-15 13:48:26 +10002998 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002999 size_t data_len, win_len;
3000 Channel *c = channel_from_packet_id(ssh, __func__, "data");
3001 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003002
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003003 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003004 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003005
Damien Miller95def091999-11-25 00:26:21 +11003006 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10003007 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003008 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
3009 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10003010 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003011 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11003012
Damien Miller95def091999-11-25 00:26:21 +11003013 /* Get the data. */
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003014 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0 ||
3015 (r = sshpkt_get_end(ssh)) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003016 fatal("%s: channel %d: get data: %s", __func__,
3017 c->self, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003018
Damien Miller7d457182010-08-05 23:09:48 +10003019 win_len = data_len;
3020 if (c->datagram)
3021 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10003022
Damien Millera04ad492004-01-21 11:02:09 +11003023 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003024 * The sending side reduces its window as it sends data, so we
3025 * must 'fake' consumption of the data in order to ensure that window
3026 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11003027 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003028 if (c->ostate != CHAN_OUTPUT_OPEN) {
3029 c->local_window -= win_len;
3030 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003031 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11003032 }
3033
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003034 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003035 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003036 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003037 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003038 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003039 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003040 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003041 c->self, win_len, c->local_window);
3042 return 0;
3043 }
3044 c->local_window -= win_len;
3045
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003046 if (c->datagram) {
3047 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
3048 fatal("%s: channel %d: append datagram: %s",
3049 __func__, c->self, ssh_err(r));
3050 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
3051 fatal("%s: channel %d: append data: %s",
3052 __func__, c->self, ssh_err(r));
3053
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003054 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003055}
Ben Lindstrome9c99912001-06-09 00:41:05 +00003056
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003057int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003058channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003059{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003060 const u_char *data;
3061 size_t data_len;
3062 u_int32_t tcode;
3063 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
3064 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003065
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003066 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003067 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003068 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003069 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003070 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003071 }
Ben Lindstromcf159442002-03-26 03:26:24 +00003072 if (c->flags & CHAN_EOF_RCVD) {
3073 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003074 debug("channel %d: accepting ext data after eof",
3075 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003076 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003077 ssh_packet_disconnect(ssh, "Received extended_data "
3078 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003079 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003080
3081 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
3082 error("%s: parse tcode: %s", __func__, ssh_err(r));
3083 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3084 }
Damien Miller33b13562000-04-04 14:38:59 +10003085 if (c->efd == -1 ||
3086 c->extended_usage != CHAN_EXTENDED_WRITE ||
3087 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10003088 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003089 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003090 }
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003091 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0 ||
3092 (r = sshpkt_get_end(ssh)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003093 error("%s: parse data: %s", __func__, ssh_err(r));
3094 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3095 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003096
Damien Miller33b13562000-04-04 14:38:59 +10003097 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003098 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10003099 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003100 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003101 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003102 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3103 /* XXX sshpkt_getb? */
3104 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3105 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003106 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003107 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003108}
3109
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003110int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003111channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003112{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003113 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003114 int r;
Damien Millerb38eff82000-04-01 11:09:21 +10003115
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003116 if ((r = sshpkt_get_end(ssh)) != 0) {
3117 error("%s: parse data: %s", __func__, ssh_err(r));
3118 ssh_packet_disconnect(ssh, "Invalid ieof message");
3119 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003120
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003121 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003122 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003123 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003124
3125 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003126 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003127 debug("channel %d: FORCE input drain", c->self);
3128 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003129 if (sshbuf_len(c->input) == 0)
3130 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003131 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003132 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003133}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003134
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003135int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003136channel_input_oclose(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003137{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003138 Channel *c = channel_from_packet_id(ssh, __func__, "oclose");
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003139 int r;
Damien Miller66823cd2002-01-22 23:11:38 +11003140
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003141 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003142 return 0;
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003143 if ((r = sshpkt_get_end(ssh)) != 0) {
3144 error("%s: parse data: %s", __func__, ssh_err(r));
3145 ssh_packet_disconnect(ssh, "Invalid oclose message");
3146 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003147 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003148 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149}
3150
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003151int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003152channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003153{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003154 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3155 u_int32_t remote_window, remote_maxpacket;
3156 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003157
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003158 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003159 return 0;
3160 if (c->type != SSH_CHANNEL_OPENING)
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003161 ssh_packet_disconnect(ssh, "Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003162 "non-opening channel %d.", c->self);
3163 /*
3164 * Record the remote channel number and mark that the channel
3165 * is now open.
3166 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003167 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3168 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003169 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0 ||
3170 (r = sshpkt_get_end(ssh)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003171 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003172 ssh_packet_disconnect(ssh, "Invalid open confirmation message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003173 }
Damien Miller33b13562000-04-04 14:38:59 +10003174
djm@openbsd.org9f532292017-09-12 06:35:31 +00003175 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003176 c->remote_window = remote_window;
3177 c->remote_maxpacket = remote_maxpacket;
3178 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003179 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003180 debug2("%s: channel %d: callback start", __func__, c->self);
3181 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3182 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003183 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003184 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3185 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003186 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003187}
3188
Ben Lindstrombba81212001-06-25 05:01:22 +00003189static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003190reason2txt(int reason)
3191{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003192 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003193 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3194 return "administratively prohibited";
3195 case SSH2_OPEN_CONNECT_FAILED:
3196 return "connect failed";
3197 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3198 return "unknown channel type";
3199 case SSH2_OPEN_RESOURCE_SHORTAGE:
3200 return "resource shortage";
3201 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003202 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003203}
3204
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003205int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003206channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003207{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003208 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3209 u_int32_t reason;
3210 char *msg = NULL;
3211 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003212
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003213 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003214 return 0;
3215 if (c->type != SSH_CHANNEL_OPENING)
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003216 ssh_packet_disconnect(ssh, "Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003217 "non-opening channel %d.", c->self);
3218 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3219 error("%s: reason: %s", __func__, ssh_err(r));
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003220 ssh_packet_disconnect(ssh, "Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003221 }
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003222 /* skip language */
3223 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003224 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) != 0 ||
3225 (r = sshpkt_get_end(ssh)) != 0) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003226 error("%s: message/lang: %s", __func__, ssh_err(r));
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003227 ssh_packet_disconnect(ssh, "Invalid open failure message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003228 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003229 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003230 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3231 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003232 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003233 debug2("%s: channel %d: callback start", __func__, c->self);
3234 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3235 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003236 }
Damien Miller7a606212009-01-28 16:22:34 +11003237 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003238 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003239 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003240}
3241
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003242int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003243channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003244{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003245 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003246 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003247 u_int32_t adjust;
3248 u_int new_rwin;
3249 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003250
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003251 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003252 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003253 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003254 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003255
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003256 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003257 return 0;
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003258 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0 ||
3259 (r = sshpkt_get_end(ssh)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003260 error("%s: adjust: %s", __func__, ssh_err(r));
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003261 ssh_packet_disconnect(ssh, "Invalid window adjust message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003262 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003263 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3264 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003265 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003266 c->self, adjust, c->remote_window);
3267 }
3268 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003269 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003270}
3271
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003272int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003273channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003274{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003275 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003276 Channel *c;
3277 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003278
3279 /* Reset keepalive timeout */
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003280 ssh_packet_set_alive_timeouts(ssh, 0);
Damien Millerb84886b2008-05-19 15:05:07 +10003281
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003282 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003283
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003284 if ((c = channel_lookup(ssh, id)) == NULL) {
3285 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003286 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003287 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003288 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003289 return 0;
dtucker@openbsd.org696fb422019-07-07 01:05:00 +00003290 if (sshpkt_get_end(ssh) != 0)
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003291 ssh_packet_disconnect(ssh, "Invalid status confirm message");
Damien Millerb84886b2008-05-19 15:05:07 +10003292 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003293 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003294 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003295 TAILQ_REMOVE(&c->status_confirms, cc, entry);
jsg@openbsd.orgd5ba1c02020-02-26 13:40:09 +00003296 freezero(cc, sizeof(*cc));
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003297 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003298}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003299
Ben Lindstrome9c99912001-06-09 00:41:05 +00003300/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003301
Ben Lindstrom908afed2001-10-03 17:34:59 +00003302void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003303channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003304{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003305 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003306}
3307
Damien Millerf6dff7c2011-09-22 21:38:52 +10003308
3309/*
3310 * Determine whether or not a port forward listens to loopback, the
3311 * specified address or wildcard. On the client, a specified bind
3312 * address will always override gateway_ports. On the server, a
3313 * gateway_ports of 1 (``yes'') will override the client's specification
3314 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3315 * will bind to whatever address the client asked for.
3316 *
3317 * Special-case listen_addrs are:
3318 *
3319 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3320 * "" (empty string), "*" -> wildcard v4/v6
3321 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003322 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003323 */
3324static const char *
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003325channel_fwd_bind_addr(struct ssh *ssh, const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003326 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003327{
3328 const char *addr = NULL;
3329 int wildcard = 0;
3330
3331 if (listen_addr == NULL) {
3332 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003333 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003334 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003335 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003336 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3337 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3338 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003339 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003340 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003341 /*
3342 * Notify client if they requested a specific listen
3343 * address and it was overridden.
3344 */
3345 if (*listen_addr != '\0' &&
3346 strcmp(listen_addr, "0.0.0.0") != 0 &&
3347 strcmp(listen_addr, "*") != 0) {
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003348 ssh_packet_send_debug(ssh,
3349 "Forwarding listen address "
Darren Tucker71152bc2013-10-10 10:27:21 +11003350 "\"%s\" overridden by server "
3351 "GatewayPorts", listen_addr);
3352 }
Damien Miller602943d2014-07-04 08:59:41 +10003353 } else if (strcmp(listen_addr, "localhost") != 0 ||
3354 strcmp(listen_addr, "127.0.0.1") == 0 ||
3355 strcmp(listen_addr, "::1") == 0) {
djm@openbsd.org846446b2020-01-25 06:40:20 +00003356 /*
3357 * Accept explicit localhost address when
3358 * GatewayPorts=yes. The "localhost" hostname is
3359 * deliberately skipped here so it will listen on all
3360 * available local address families.
3361 */
Damien Millere84d1032014-05-21 17:13:36 +10003362 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003363 }
3364 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3365 strcmp(listen_addr, "::1") == 0) {
3366 /*
3367 * If a specific IPv4/IPv6 localhost address has been
3368 * requested then accept it even if gateway_ports is in
3369 * effect. This allows the client to prefer IPv4 or IPv6.
3370 */
3371 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003372 }
3373 if (wildcardp != NULL)
3374 *wildcardp = wildcard;
3375 return addr;
3376}
3377
Damien Millerb16461c2002-01-22 23:29:22 +11003378static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003379channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3380 struct Forward *fwd, int *allocated_listen_port,
3381 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003382{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003383 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003384 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003385 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003386 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003387 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003388 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003389
Damien Millerf91ee4c2005-03-01 21:24:33 +11003390 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003391
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003392 if (is_client && fwd->connect_path != NULL) {
3393 host = fwd->connect_path;
3394 } else {
3395 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3396 fwd->listen_host : fwd->connect_host;
3397 if (host == NULL) {
3398 error("No forward host name.");
3399 return 0;
3400 }
3401 if (strlen(host) >= NI_MAXHOST) {
3402 error("Forward host name too long.");
3403 return 0;
3404 }
Kevin Steves12057502001-02-05 14:54:34 +00003405 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003406
Damien Millerf6dff7c2011-09-22 21:38:52 +10003407 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003408 addr = channel_fwd_bind_addr(ssh, fwd->listen_host, &wildcard,
Damien Miller7acefbb2014-07-18 14:11:24 +10003409 is_client, fwd_opts);
3410 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003411 type, wildcard, (addr == NULL) ? "NULL" : addr);
3412
3413 /*
Damien Miller34132e52000-01-14 15:45:46 +11003414 * getaddrinfo returns a loopback address if the hostname is
3415 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003416 */
Damien Miller34132e52000-01-14 15:45:46 +11003417 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003418 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003419 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003420 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003421 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003422 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3423 if (addr == NULL) {
3424 /* This really shouldn't happen */
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003425 ssh_packet_disconnect(ssh, "getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003426 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003427 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003428 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003429 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003430 }
Damien Millera7270302005-07-06 09:36:05 +10003431 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003432 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003433 if (allocated_listen_port != NULL)
3434 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003435 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003436 switch (ai->ai_family) {
3437 case AF_INET:
3438 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3439 sin_port;
3440 break;
3441 case AF_INET6:
3442 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3443 sin6_port;
3444 break;
3445 default:
Damien Miller34132e52000-01-14 15:45:46 +11003446 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003447 }
3448 /*
3449 * If allocating a port for -R forwards, then use the
3450 * same port for all address families.
3451 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003452 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3453 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3454 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003455 *lport_p = htons(*allocated_listen_port);
3456
Damien Miller34132e52000-01-14 15:45:46 +11003457 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003458 strport, sizeof(strport),
3459 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003460 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003461 continue;
3462 }
3463 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003464 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003465 if (sock == -1) {
Damien Miller34132e52000-01-14 15:45:46 +11003466 /* this is no error since kernel may not support ipv6 */
djm@openbsd.org927f8512017-12-05 01:30:19 +00003467 verbose("socket [%s]:%s: %.100s", ntop, strport,
3468 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003469 continue;
3470 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003471
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00003472 set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003473 if (ai->ai_family == AF_INET6)
3474 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003475
Damien Miller4bf648f2009-02-14 16:28:21 +11003476 debug("Local forwarding listening on %s port %s.",
3477 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003478
Damien Miller34132e52000-01-14 15:45:46 +11003479 /* Bind the socket to the address. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003480 if (bind(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003481 /*
3482 * address can be in if use ipv6 address is
3483 * already bound
3484 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003485 if (!ai->ai_next)
djm@openbsd.org927f8512017-12-05 01:30:19 +00003486 error("bind [%s]:%s: %.100s",
3487 ntop, strport, strerror(errno));
Damien Miller3c7eeb22000-03-03 22:35:33 +11003488 else
djm@openbsd.org927f8512017-12-05 01:30:19 +00003489 verbose("bind [%s]:%s: %.100s",
3490 ntop, strport, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003491
Damien Miller34132e52000-01-14 15:45:46 +11003492 close(sock);
3493 continue;
3494 }
3495 /* Start listening for connections on the socket. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003496 if (listen(sock, SSH_LISTEN_BACKLOG) == -1) {
Damien Miller34132e52000-01-14 15:45:46 +11003497 error("listen: %.100s", strerror(errno));
djm@openbsd.org927f8512017-12-05 01:30:19 +00003498 error("listen [%s]:%s: %.100s", ntop, strport,
3499 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003500 close(sock);
3501 continue;
3502 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003503
3504 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003505 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003506 * record what we got.
3507 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003508 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3509 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003510 allocated_listen_port != NULL &&
3511 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003512 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003513 debug("Allocated listen port %d",
3514 *allocated_listen_port);
3515 }
3516
Damien Miller34132e52000-01-14 15:45:46 +11003517 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003518 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003519 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003520 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003521 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003522 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003523 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003524 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003525 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3526 c->listening_port = *allocated_listen_port;
3527 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003528 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003529 success = 1;
3530 }
3531 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003532 error("%s: cannot listen to port: %d", __func__,
3533 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003534 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003535 return success;
Damien Miller95def091999-11-25 00:26:21 +11003536}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003537
Damien Miller7acefbb2014-07-18 14:11:24 +10003538static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003539channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3540 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003541{
3542 struct sockaddr_un sunaddr;
3543 const char *path;
3544 Channel *c;
3545 int port, sock;
3546 mode_t omask;
3547
3548 switch (type) {
3549 case SSH_CHANNEL_UNIX_LISTENER:
3550 if (fwd->connect_path != NULL) {
3551 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3552 error("Local connecting path too long: %s",
3553 fwd->connect_path);
3554 return 0;
3555 }
3556 path = fwd->connect_path;
3557 port = PORT_STREAMLOCAL;
3558 } else {
3559 if (fwd->connect_host == NULL) {
3560 error("No forward host name.");
3561 return 0;
3562 }
3563 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3564 error("Forward host name too long.");
3565 return 0;
3566 }
3567 path = fwd->connect_host;
3568 port = fwd->connect_port;
3569 }
3570 break;
3571 case SSH_CHANNEL_RUNIX_LISTENER:
3572 path = fwd->listen_path;
3573 port = PORT_STREAMLOCAL;
3574 break;
3575 default:
3576 error("%s: unexpected channel type %d", __func__, type);
3577 return 0;
3578 }
3579
3580 if (fwd->listen_path == NULL) {
3581 error("No forward path name.");
3582 return 0;
3583 }
3584 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3585 error("Local listening path too long: %s", fwd->listen_path);
3586 return 0;
3587 }
3588
3589 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3590
3591 /* Start a Unix domain listener. */
3592 omask = umask(fwd_opts->streamlocal_bind_mask);
3593 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3594 fwd_opts->streamlocal_bind_unlink);
3595 umask(omask);
3596 if (sock < 0)
3597 return 0;
3598
3599 debug("Local forwarding listening on path %s.", fwd->listen_path);
3600
3601 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003602 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003603 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3604 0, "unix listener", 1);
3605 c->path = xstrdup(path);
3606 c->host_port = port;
3607 c->listening_port = PORT_STREAMLOCAL;
3608 c->listening_addr = xstrdup(fwd->listen_path);
3609 return 1;
3610}
3611
3612static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003613channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3614 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003615{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003616 u_int i;
3617 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003618
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003619 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3620 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003621 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3622 continue;
3623 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3624 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003625 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003626 found = 1;
3627 }
3628 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003629
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003630 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003631}
3632
Damien Miller7acefbb2014-07-18 14:11:24 +10003633static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003634channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003635{
3636 u_int i;
3637 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003638
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003639 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3640 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003641 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3642 continue;
3643 if (c->path == NULL)
3644 continue;
3645 if (strcmp(c->path, path) == 0) {
3646 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003647 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003648 found = 1;
3649 }
3650 }
3651
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003652 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003653}
3654
3655int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003656channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003657{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003658 if (fwd->listen_path != NULL) {
3659 return channel_cancel_rport_listener_streamlocal(ssh,
3660 fwd->listen_path);
3661 } else {
3662 return channel_cancel_rport_listener_tcpip(ssh,
3663 fwd->listen_host, fwd->listen_port);
3664 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003665}
3666
3667static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003668channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3669 const char *lhost, u_short lport, int cport,
3670 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003671{
3672 u_int i;
3673 int found = 0;
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003674 const char *addr = channel_fwd_bind_addr(ssh, lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003675
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003676 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3677 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003678 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3679 continue;
Damien Millerff773642011-09-22 21:39:48 +10003680 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003681 continue;
Damien Millerff773642011-09-22 21:39:48 +10003682 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3683 /* skip dynamic forwardings */
3684 if (c->host_port == 0)
3685 continue;
3686 } else {
3687 if (c->host_port != cport)
3688 continue;
3689 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003690 if ((c->listening_addr == NULL && addr != NULL) ||
3691 (c->listening_addr != NULL && addr == NULL))
3692 continue;
3693 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003694 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003695 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003696 found = 1;
3697 }
3698 }
3699
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003700 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003701}
3702
Damien Miller7acefbb2014-07-18 14:11:24 +10003703static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003704channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003705{
3706 u_int i;
3707 int found = 0;
3708
3709 if (path == NULL) {
3710 error("%s: no path specified.", __func__);
3711 return 0;
3712 }
3713
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003714 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3715 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003716 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3717 continue;
3718 if (c->listening_addr == NULL)
3719 continue;
3720 if (strcmp(c->listening_addr, path) == 0) {
3721 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003722 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003723 found = 1;
3724 }
3725 }
3726
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003727 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003728}
3729
3730int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003731channel_cancel_lport_listener(struct ssh *ssh,
3732 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003733{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003734 if (fwd->listen_path != NULL) {
3735 return channel_cancel_lport_listener_streamlocal(ssh,
3736 fwd->listen_path);
3737 } else {
3738 return channel_cancel_lport_listener_tcpip(ssh,
3739 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3740 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003741}
3742
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003743/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003744int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003745channel_setup_local_fwd_listener(struct ssh *ssh,
3746 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003747{
Damien Miller7acefbb2014-07-18 14:11:24 +10003748 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003749 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003750 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3751 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003752 return channel_setup_fwd_listener_tcpip(ssh,
3753 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003754 }
Damien Millerb16461c2002-01-22 23:29:22 +11003755}
3756
djm@openbsd.org115063a2018-06-06 18:22:41 +00003757/* Matches a remote forwarding permission against a requested forwarding */
3758static int
3759remote_open_match(struct permission *allowed_open, struct Forward *fwd)
3760{
3761 int ret;
3762 char *lhost;
3763
3764 /* XXX add ACLs for streamlocal */
3765 if (fwd->listen_path != NULL)
3766 return 1;
3767
3768 if (fwd->listen_host == NULL || allowed_open->listen_host == NULL)
3769 return 0;
3770
3771 if (allowed_open->listen_port != FWD_PERMIT_ANY_PORT &&
3772 allowed_open->listen_port != fwd->listen_port)
3773 return 0;
3774
3775 /* Match hostnames case-insensitively */
3776 lhost = xstrdup(fwd->listen_host);
3777 lowercase(lhost);
3778 ret = match_pattern(lhost, allowed_open->listen_host);
3779 free(lhost);
3780
3781 return ret;
3782}
3783
3784/* Checks whether a requested remote forwarding is permitted */
3785static int
3786check_rfwd_permission(struct ssh *ssh, struct Forward *fwd)
3787{
3788 struct ssh_channels *sc = ssh->chanctxt;
3789 struct permission_set *pset = &sc->remote_perms;
3790 u_int i, permit, permit_adm = 1;
3791 struct permission *perm;
3792
3793 /* XXX apply GatewayPorts override before checking? */
3794
3795 permit = pset->all_permitted;
3796 if (!permit) {
3797 for (i = 0; i < pset->num_permitted_user; i++) {
3798 perm = &pset->permitted_user[i];
3799 if (remote_open_match(perm, fwd)) {
3800 permit = 1;
3801 break;
3802 }
3803 }
3804 }
3805
3806 if (pset->num_permitted_admin > 0) {
3807 permit_adm = 0;
3808 for (i = 0; i < pset->num_permitted_admin; i++) {
3809 perm = &pset->permitted_admin[i];
3810 if (remote_open_match(perm, fwd)) {
3811 permit_adm = 1;
3812 break;
3813 }
3814 }
3815 }
3816
3817 return permit && permit_adm;
3818}
3819
Damien Millerb16461c2002-01-22 23:29:22 +11003820/* protocol v2 remote port fwd, used by sshd */
3821int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003822channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003823 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003824{
djm@openbsd.org115063a2018-06-06 18:22:41 +00003825 if (!check_rfwd_permission(ssh, fwd)) {
djm@openbsd.org8cc7a672019-01-19 21:37:13 +00003826 ssh_packet_send_debug(ssh, "port forwarding refused");
florian@openbsd.orgcb4accb2019-05-10 18:55:17 +00003827 if (fwd->listen_path != NULL)
3828 /* XXX always allowed, see remote_open_match() */
3829 logit("Received request from %.100s port %d to "
3830 "remote forward to path \"%.100s\", "
3831 "but the request was denied.",
3832 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
3833 fwd->listen_path);
3834 else if(fwd->listen_host != NULL)
3835 logit("Received request from %.100s port %d to "
3836 "remote forward to host %.100s port %d, "
3837 "but the request was denied.",
3838 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
3839 fwd->listen_host, fwd->listen_port );
3840 else
3841 logit("Received request from %.100s port %d to remote "
3842 "forward, but the request was denied.",
3843 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
djm@openbsd.org115063a2018-06-06 18:22:41 +00003844 return 0;
3845 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003846 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003847 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003848 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3849 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003850 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003851 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3852 fwd_opts);
3853 }
Damien Millerb16461c2002-01-22 23:29:22 +11003854}
3855
Damien Miller5428f641999-11-25 11:54:57 +11003856/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003857 * Translate the requested rfwd listen host to something usable for
3858 * this server.
3859 */
3860static const char *
3861channel_rfwd_bind_host(const char *listen_host)
3862{
3863 if (listen_host == NULL) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003864 return "localhost";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003865 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003866 return "";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003867 } else
3868 return listen_host;
3869}
3870
3871/*
Damien Miller5428f641999-11-25 11:54:57 +11003872 * Initiate forwarding of connections to port "port" on remote host through
3873 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003874 * Returns handle (index) for updating the dynamic listen port with
djm@openbsd.org115063a2018-06-06 18:22:41 +00003875 * channel_update_permission().
Damien Miller5428f641999-11-25 11:54:57 +11003876 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003877int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003878channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003879{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003880 int r, success = 0, idx = -1;
3881 char *host_to_connect, *listen_host, *listen_path;
3882 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003883
Damien Miller95def091999-11-25 00:26:21 +11003884 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003885 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003886 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3887 (r = sshpkt_put_cstring(ssh,
3888 "streamlocal-forward@openssh.com")) != 0 ||
3889 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3890 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3891 (r = sshpkt_send(ssh)) != 0 ||
3892 (r = ssh_packet_write_wait(ssh)) != 0)
3893 fatal("%s: request streamlocal: %s",
3894 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003895 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003896 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3897 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3898 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3899 (r = sshpkt_put_cstring(ssh,
3900 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3901 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3902 (r = sshpkt_send(ssh)) != 0 ||
3903 (r = ssh_packet_write_wait(ssh)) != 0)
3904 fatal("%s: request tcpip-forward: %s",
3905 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003906 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003907 /* Assume that server accepts the request */
3908 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003909 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003910 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003911 host_to_connect = listen_host = listen_path = NULL;
3912 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003913 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003914 host_to_connect = xstrdup(fwd->connect_path);
3915 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003916 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003917 host_to_connect = xstrdup(fwd->connect_host);
3918 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003919 }
3920 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003921 listen_path = xstrdup(fwd->listen_path);
3922 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003923 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003924 if (fwd->listen_host != NULL)
3925 listen_host = xstrdup(fwd->listen_host);
3926 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003927 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003928 idx = permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003929 host_to_connect, port_to_connect,
3930 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003931 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003932 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003933}
3934
Damien Miller4b3ed642014-07-02 15:29:40 +10003935static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003936open_match(struct permission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003937 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003938{
3939 if (allowed_open->host_to_connect == NULL)
3940 return 0;
3941 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3942 allowed_open->port_to_connect != requestedport)
3943 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003944 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3945 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003946 return 0;
3947 return 1;
3948}
3949
3950/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003951 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003952 * we don't support FWD_PERMIT_ANY_PORT and
3953 * need to translate between the configured-host (listen_host)
3954 * and what we've sent to the remote server (channel_rfwd_bind_host)
3955 */
3956static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003957open_listen_match_tcpip(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003958 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003959{
3960 const char *allowed_host;
3961
3962 if (allowed_open->host_to_connect == NULL)
3963 return 0;
3964 if (allowed_open->listen_port != requestedport)
3965 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003966 if (!translate && allowed_open->listen_host == NULL &&
3967 requestedhost == NULL)
3968 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003969 allowed_host = translate ?
3970 channel_rfwd_bind_host(allowed_open->listen_host) :
3971 allowed_open->listen_host;
djm@openbsd.org90e51d62018-06-25 22:28:33 +00003972 if (allowed_host == NULL || requestedhost == NULL ||
Damien Miller4b3ed642014-07-02 15:29:40 +10003973 strcmp(allowed_host, requestedhost) != 0)
3974 return 0;
3975 return 1;
3976}
3977
Damien Miller7acefbb2014-07-18 14:11:24 +10003978static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003979open_listen_match_streamlocal(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003980 const char *requestedpath)
3981{
3982 if (allowed_open->host_to_connect == NULL)
3983 return 0;
3984 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3985 return 0;
3986 if (allowed_open->listen_path == NULL ||
3987 strcmp(allowed_open->listen_path, requestedpath) != 0)
3988 return 0;
3989 return 1;
3990}
3991
Damien Miller5428f641999-11-25 11:54:57 +11003992/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003993 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003994 * local side.
3995 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003996static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003997channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3998 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003999{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004000 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004001 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004002 int r;
4003 u_int i;
markus@openbsd.orga6134b02020-03-06 18:19:21 +00004004 struct permission *perm = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10004005
djm@openbsd.org115063a2018-06-06 18:22:41 +00004006 for (i = 0; i < pset->num_permitted_user; i++) {
4007 perm = &pset->permitted_user[i];
4008 if (open_listen_match_tcpip(perm, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10004009 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004010 perm = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10004011 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00004012 if (perm == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10004013 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10004014 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10004015 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004016 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
4017 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
4018 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
4019 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
4020 (r = sshpkt_put_u32(ssh, port)) != 0 ||
4021 (r = sshpkt_send(ssh)) != 0)
4022 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10004023
djm@openbsd.org115063a2018-06-06 18:22:41 +00004024 fwd_perm_clear(perm); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10004025
4026 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10004027}
4028
4029/*
Damien Miller7acefbb2014-07-18 14:11:24 +10004030 * Request cancellation of remote forwarding of Unix domain socket
4031 * path from local side.
4032 */
4033static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004034channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10004035{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004036 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004037 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004038 int r;
4039 u_int i;
markus@openbsd.orga6134b02020-03-06 18:19:21 +00004040 struct permission *perm = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10004041
djm@openbsd.org115063a2018-06-06 18:22:41 +00004042 for (i = 0; i < pset->num_permitted_user; i++) {
4043 perm = &pset->permitted_user[i];
4044 if (open_listen_match_streamlocal(perm, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10004045 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004046 perm = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10004047 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00004048 if (perm == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004049 debug("%s: requested forward not found", __func__);
4050 return -1;
4051 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004052 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
4053 (r = sshpkt_put_cstring(ssh,
4054 "cancel-streamlocal-forward@openssh.com")) != 0 ||
4055 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
4056 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
4057 (r = sshpkt_send(ssh)) != 0)
4058 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10004059
djm@openbsd.org115063a2018-06-06 18:22:41 +00004060 fwd_perm_clear(perm); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10004061
4062 return 0;
4063}
4064
4065/*
4066 * Request cancellation of remote forwarding of a connection from local side.
4067 */
4068int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004069channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10004070{
4071 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004072 return channel_request_rforward_cancel_streamlocal(ssh,
4073 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10004074 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004075 return channel_request_rforward_cancel_tcpip(ssh,
4076 fwd->listen_host,
4077 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10004078 }
4079}
4080
4081/*
djm@openbsd.org115063a2018-06-06 18:22:41 +00004082 * Permits opening to any host/port if permitted_user[] is empty. This is
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004083 * usually called by the server, because the user could connect to any port
4084 * anyway, and the server has no way to know but to trust the client anyway.
4085 */
4086void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004087channel_permit_all(struct ssh *ssh, int where)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004088{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004089 struct permission_set *pset = permission_set_get(ssh, where);
4090
4091 if (pset->num_permitted_user == 0)
4092 pset->all_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004093}
4094
djm@openbsd.org115063a2018-06-06 18:22:41 +00004095/*
4096 * Permit the specified host/port for forwarding.
4097 */
Ben Lindstroma3700052001-04-05 23:26:32 +00004098void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004099channel_add_permission(struct ssh *ssh, int who, int where,
4100 char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004101{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004102 int local = where == FORWARD_LOCAL;
4103 struct permission_set *pset = permission_set_get(ssh, where);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004104
djm@openbsd.org115063a2018-06-06 18:22:41 +00004105 debug("allow %s forwarding to host %s port %d",
4106 fwd_ident(who, where), host, port);
4107 /*
4108 * Remote forwards set listen_host/port, local forwards set
4109 * host/port_to_connect.
4110 */
4111 permission_set_add(ssh, who, where,
4112 local ? host : 0, local ? port : 0,
4113 local ? NULL : host, NULL, local ? 0 : port, NULL);
4114 pset->all_permitted = 0;
4115}
4116
4117/*
4118 * Administratively disable forwarding.
4119 */
4120void
4121channel_disable_admin(struct ssh *ssh, int where)
4122{
4123 channel_clear_permission(ssh, FORWARD_ADM, where);
4124 permission_set_add(ssh, FORWARD_ADM, where,
4125 NULL, 0, NULL, NULL, 0, NULL);
4126}
4127
4128/*
4129 * Clear a list of permitted opens.
4130 */
4131void
4132channel_clear_permission(struct ssh *ssh, int who, int where)
4133{
4134 struct permission **permp;
4135 u_int *npermp;
4136
4137 permission_set_get_array(ssh, who, where, &permp, &npermp);
4138 *permp = xrecallocarray(*permp, *npermp, 0, sizeof(**permp));
4139 *npermp = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004140}
4141
Darren Tucker68afb8c2011-10-02 18:59:03 +11004142/*
4143 * Update the listen port for a dynamic remote forward, after
4144 * the actual 'newport' has been allocated. If 'newport' < 0 is
4145 * passed then they entry will be invalidated.
4146 */
4147void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004148channel_update_permission(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11004149{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004150 struct permission_set *pset = &ssh->chanctxt->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004151
djm@openbsd.org115063a2018-06-06 18:22:41 +00004152 if (idx < 0 || (u_int)idx >= pset->num_permitted_user) {
4153 debug("%s: index out of range: %d num_permitted_user %d",
4154 __func__, idx, pset->num_permitted_user);
Darren Tucker68afb8c2011-10-02 18:59:03 +11004155 return;
4156 }
4157 debug("%s allowed port %d for forwarding to host %s port %d",
4158 newport > 0 ? "Updating" : "Removing",
4159 newport,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004160 pset->permitted_user[idx].host_to_connect,
4161 pset->permitted_user[idx].port_to_connect);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004162 if (newport <= 0)
djm@openbsd.org115063a2018-06-06 18:22:41 +00004163 fwd_perm_clear(&pset->permitted_user[idx]);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004164 else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004165 pset->permitted_user[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11004166 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11004167 }
4168}
4169
Darren Tucker1338b9e2011-10-02 18:57:35 +11004170/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
4171int
4172permitopen_port(const char *p)
4173{
4174 int port;
4175
4176 if (strcmp(p, "*") == 0)
4177 return FWD_PERMIT_ANY_PORT;
4178 if ((port = a2port(p)) > 0)
4179 return port;
4180 return -1;
4181}
4182
Damien Millerbd740252008-05-19 15:37:09 +10004183/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00004184static int
Damien Millerbd740252008-05-19 15:37:09 +10004185connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004186{
Damien Millerbd740252008-05-19 15:37:09 +10004187 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10004188 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004189 char ntop[NI_MAXHOST];
4190 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11004191
Damien Millerbd740252008-05-19 15:37:09 +10004192 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004193 switch (cctx->ai->ai_family) {
4194 case AF_UNIX:
4195 /* unix:pathname instead of host:port */
4196 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
4197 strlcpy(ntop, "unix", sizeof(ntop));
4198 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
4199 break;
4200 case AF_INET:
4201 case AF_INET6:
4202 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4203 ntop, sizeof(ntop), strport, sizeof(strport),
4204 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4205 error("connect_next: getnameinfo failed");
4206 continue;
4207 }
4208 break;
4209 default:
Damien Miller34132e52000-01-14 15:45:46 +11004210 continue;
4211 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004212 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4213 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004214 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004215 error("socket: %.100s", strerror(errno));
4216 else
4217 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004218 continue;
4219 }
Damien Miller232711f2004-06-15 10:35:30 +10004220 if (set_nonblock(sock) == -1)
4221 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004222 if (connect(sock, cctx->ai->ai_addr,
4223 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4224 debug("connect_next: host %.100s ([%.100s]:%s): "
4225 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004226 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004227 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004228 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004229 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004230 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004231 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004232 if (cctx->ai->ai_family != AF_UNIX)
4233 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004234 debug("connect_next: host %.100s ([%.100s]:%s) "
4235 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4236 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004237 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004238 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004239 return -1;
4240}
Damien Millerb38eff82000-04-01 11:09:21 +10004241
Damien Millerbd740252008-05-19 15:37:09 +10004242static void
4243channel_connect_ctx_free(struct channel_connect *cctx)
4244{
Darren Tuckera627d422013-06-02 07:31:17 +10004245 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004246 if (cctx->aitop) {
4247 if (cctx->aitop->ai_family == AF_UNIX)
4248 free(cctx->aitop);
4249 else
4250 freeaddrinfo(cctx->aitop);
4251 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004252 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004253}
4254
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004255/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004256 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004257 * passing back the failure reason if appropriate.
4258 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004259static int
4260connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4261 char *ctype, char *rname, struct channel_connect *cctx,
4262 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004263{
4264 struct addrinfo hints;
4265 int gaierr;
4266 int sock = -1;
4267 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004268
4269 if (port == PORT_STREAMLOCAL) {
4270 struct sockaddr_un *sunaddr;
4271 struct addrinfo *ai;
4272
4273 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4274 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004275 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004276 }
4277
4278 /*
4279 * Fake up a struct addrinfo for AF_UNIX connections.
4280 * channel_connect_ctx_free() must check ai_family
4281 * and use free() not freeaddirinfo() for AF_UNIX.
4282 */
4283 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4284 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4285 ai->ai_addr = (struct sockaddr *)(ai + 1);
4286 ai->ai_addrlen = sizeof(*sunaddr);
4287 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004288 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004289 ai->ai_protocol = PF_UNSPEC;
4290 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4291 sunaddr->sun_family = AF_UNIX;
4292 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004293 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004294 } else {
4295 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004296 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004297 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004298 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004299 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004300 != 0) {
4301 if (errmsg != NULL)
4302 *errmsg = ssh_gai_strerror(gaierr);
4303 if (reason != NULL)
4304 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004305 error("connect_to %.100s: unknown host (%s)", name,
4306 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004307 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004308 }
Damien Millerbd740252008-05-19 15:37:09 +10004309 }
4310
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004311 cctx->host = xstrdup(name);
4312 cctx->port = port;
4313 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004314
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004315 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004316 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004317 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004318 return -1;
4319 }
4320
4321 return sock;
4322}
4323
4324/* Return CONNECTING channel to remote host:port or local socket path */
4325static Channel *
4326connect_to(struct ssh *ssh, const char *host, int port,
4327 char *ctype, char *rname)
4328{
4329 struct channel_connect cctx;
4330 Channel *c;
4331 int sock;
4332
4333 memset(&cctx, 0, sizeof(cctx));
4334 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4335 &cctx, NULL, NULL);
4336 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004337 channel_connect_ctx_free(&cctx);
4338 return NULL;
4339 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004340 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004341 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004342 c->host_port = port;
4343 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004344 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004345
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004346 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004347}
4348
markus@openbsd.org8d057842016-09-30 09:19:13 +00004349/*
4350 * returns either the newly connected channel or the downstream channel
4351 * that needs to deal with this connection.
4352 */
Damien Millerbd740252008-05-19 15:37:09 +10004353Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004354channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004355 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004356{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004357 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004358 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004359 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004360 struct permission *perm;
Damien Millerbd740252008-05-19 15:37:09 +10004361
djm@openbsd.org115063a2018-06-06 18:22:41 +00004362 for (i = 0; i < pset->num_permitted_user; i++) {
4363 perm = &pset->permitted_user[i];
4364 if (open_listen_match_tcpip(perm,
4365 listen_host, listen_port, 1)) {
4366 if (perm->downstream)
4367 return perm->downstream;
4368 if (perm->port_to_connect == 0)
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004369 return rdynamic_connect_prepare(ssh,
4370 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004371 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004372 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004373 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004374 }
4375 }
4376 error("WARNING: Server requests forwarding for unknown listen_port %d",
4377 listen_port);
4378 return NULL;
4379}
4380
Damien Miller7acefbb2014-07-18 14:11:24 +10004381Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004382channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4383 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004384{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004385 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004386 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004387 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004388 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004389
djm@openbsd.org115063a2018-06-06 18:22:41 +00004390 for (i = 0; i < pset->num_permitted_user; i++) {
4391 perm = &pset->permitted_user[i];
4392 if (open_listen_match_streamlocal(perm, path)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004393 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004394 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004395 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004396 }
4397 }
4398 error("WARNING: Server requests forwarding for unknown path %.100s",
4399 path);
4400 return NULL;
4401}
4402
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004403/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004404Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004405channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4406 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004407{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004408 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004409 struct permission_set *pset = &sc->local_perms;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004410 struct channel_connect cctx;
4411 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004412 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004413 int sock;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004414 struct permission *perm;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004415
djm@openbsd.org115063a2018-06-06 18:22:41 +00004416 permit = pset->all_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004417 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004418 for (i = 0; i < pset->num_permitted_user; i++) {
4419 perm = &pset->permitted_user[i];
4420 if (open_match(perm, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004421 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004422 break;
4423 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004424 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004425 }
Damien Miller9b439df2006-07-24 14:04:00 +10004426
djm@openbsd.org115063a2018-06-06 18:22:41 +00004427 if (pset->num_permitted_admin > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004428 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004429 for (i = 0; i < pset->num_permitted_admin; i++) {
4430 perm = &pset->permitted_admin[i];
4431 if (open_match(perm, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004432 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004433 break;
4434 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004435 }
Damien Miller9b439df2006-07-24 14:04:00 +10004436 }
4437
4438 if (!permit || !permit_adm) {
florian@openbsd.orgcb4accb2019-05-10 18:55:17 +00004439 logit("Received request from %.100s port %d to connect to "
4440 "host %.100s port %d, but the request was denied.",
4441 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004442 if (reason != NULL)
4443 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004444 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004445 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004446
4447 memset(&cctx, 0, sizeof(cctx));
4448 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4449 &cctx, reason, errmsg);
4450 if (sock == -1) {
4451 channel_connect_ctx_free(&cctx);
4452 return NULL;
4453 }
4454
4455 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4456 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4457 c->host_port = port;
4458 c->path = xstrdup(host);
4459 c->connect_ctx = cctx;
4460
4461 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004462}
4463
Damien Miller7acefbb2014-07-18 14:11:24 +10004464/* Check if connecting to that path is permitted and connect. */
4465Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004466channel_connect_to_path(struct ssh *ssh, const char *path,
4467 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004468{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004469 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004470 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004471 u_int i, permit, permit_adm = 1;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004472 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004473
djm@openbsd.org115063a2018-06-06 18:22:41 +00004474 permit = pset->all_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004475 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004476 for (i = 0; i < pset->num_permitted_user; i++) {
4477 perm = &pset->permitted_user[i];
4478 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004479 permit = 1;
4480 break;
4481 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004482 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004483 }
4484
djm@openbsd.org115063a2018-06-06 18:22:41 +00004485 if (pset->num_permitted_admin > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004486 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004487 for (i = 0; i < pset->num_permitted_admin; i++) {
4488 perm = &pset->permitted_admin[i];
4489 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004490 permit_adm = 1;
4491 break;
4492 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004493 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004494 }
4495
4496 if (!permit || !permit_adm) {
4497 logit("Received request to connect to path %.100s, "
4498 "but the request was denied.", path);
4499 return NULL;
4500 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004501 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004502}
4503
Damien Miller0e220db2004-06-15 10:34:08 +10004504void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004505channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004506{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004507 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004508 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004509 int r;
4510 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004511
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004512 for (i = 0; i < sc->channels_alloc; i++) {
4513 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4514 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004515 continue;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004516 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10004517 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004518 channel_request_start(ssh, i, "window-change", 0);
4519 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4520 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4521 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4522 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4523 (r = sshpkt_send(ssh)) != 0)
4524 fatal("%s: channel %u: send window-change: %s",
4525 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004526 }
4527}
4528
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004529/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4530static Channel *
4531rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4532{
4533 Channel *c;
4534 int r;
4535
4536 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4537 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4538 c->host_port = 0;
4539 c->path = NULL;
4540
4541 /*
4542 * We need to open the channel before we have a FD,
4543 * so that we can get SOCKS header from peer.
4544 */
4545 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4546 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4547 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4548 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4549 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4550 fatal("%s: channel %i: confirm: %s", __func__,
4551 c->self, ssh_err(r));
4552 }
4553 return c;
4554}
4555
4556/* Return CONNECTING socket to remote host:port or local socket path */
4557static int
4558rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4559{
4560 struct channel_connect cctx;
4561 int sock;
4562
4563 memset(&cctx, 0, sizeof(cctx));
4564 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4565 NULL, &cctx, NULL, NULL);
4566 if (sock == -1)
4567 channel_connect_ctx_free(&cctx);
4568 else {
4569 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4570 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4571 c->connect_ctx = cctx;
4572 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4573 }
4574 return sock;
4575}
4576
Ben Lindstrome9c99912001-06-09 00:41:05 +00004577/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004578
Damien Miller5428f641999-11-25 11:54:57 +11004579/*
4580 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004581 * Returns 0 and a suitable display number for the DISPLAY variable
4582 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004583 */
Kevin Steves366298c2001-12-19 17:58:01 +00004584int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004585x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4586 int x11_use_localhost, int single_connection,
4587 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004588{
Damien Millere7378562001-12-21 14:58:35 +11004589 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004590 int display_number, sock;
4591 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004592 struct addrinfo hints, *ai, *aitop;
4593 char strport[NI_MAXSERV];
4594 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004595
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004596 if (chanids == NULL)
4597 return -1;
4598
Damien Millera34a28b1999-12-14 10:47:15 +11004599 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004600 display_number < MAX_DISPLAYS;
4601 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004602 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004603 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004604 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004605 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004606 hints.ai_socktype = SOCK_STREAM;
4607 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004608 if ((gaierr = getaddrinfo(NULL, strport,
4609 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004610 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004611 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004612 }
Damien Miller34132e52000-01-14 15:45:46 +11004613 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004614 if (ai->ai_family != AF_INET &&
4615 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004616 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004617 sock = socket(ai->ai_family, ai->ai_socktype,
4618 ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004619 if (sock == -1) {
Damien Miller6480c632010-03-26 11:09:44 +11004620 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4621#ifdef EPFNOSUPPORT
4622 && (errno != EPFNOSUPPORT)
4623#endif
4624 ) {
Damien Millere2192732000-01-17 13:22:55 +11004625 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004626 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004627 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004628 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004629 debug("x11_create_display_inet: Socket family %d not supported",
4630 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004631 continue;
4632 }
Damien Miller34132e52000-01-14 15:45:46 +11004633 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004634 if (ai->ai_family == AF_INET6)
4635 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004636 if (x11_use_localhost)
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00004637 set_reuseaddr(sock);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004638 if (bind(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004639 debug2("%s: bind port %d: %.100s", __func__,
4640 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004641 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004642 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004643 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004644 num_socks = 0;
4645 break;
4646 }
4647 socks[num_socks++] = sock;
4648 if (num_socks == NUM_SOCKS)
4649 break;
Damien Miller95def091999-11-25 00:26:21 +11004650 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004651 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004652 if (num_socks > 0)
4653 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004654 }
Damien Miller95def091999-11-25 00:26:21 +11004655 if (display_number >= MAX_DISPLAYS) {
4656 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004657 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004658 }
Damien Miller95def091999-11-25 00:26:21 +11004659 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004660 for (n = 0; n < num_socks; n++) {
4661 sock = socks[n];
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004662 if (listen(sock, SSH_LISTEN_BACKLOG) == -1) {
Damien Miller34132e52000-01-14 15:45:46 +11004663 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004664 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004665 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004666 }
Damien Miller95def091999-11-25 00:26:21 +11004667 }
Damien Miller34132e52000-01-14 15:45:46 +11004668
Damien Miller34132e52000-01-14 15:45:46 +11004669 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004670 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004671 for (n = 0; n < num_socks; n++) {
4672 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004673 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004674 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4675 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004676 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004677 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004678 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004679 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004680 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004681
Kevin Steves366298c2001-12-19 17:58:01 +00004682 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004683 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004684 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004685}
4686
Ben Lindstrombba81212001-06-25 05:01:22 +00004687static int
Damien Miller819dbb62009-01-21 16:46:26 +11004688connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004689{
Damien Miller95def091999-11-25 00:26:21 +11004690 int sock;
4691 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004692
Damien Miller3afe3752001-12-21 12:39:51 +11004693 sock = socket(AF_UNIX, SOCK_STREAM, 0);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004694 if (sock == -1)
Damien Miller3afe3752001-12-21 12:39:51 +11004695 error("socket: %.100s", strerror(errno));
4696 memset(&addr, 0, sizeof(addr));
4697 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004698 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004699 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004700 return sock;
4701 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004702 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4703 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004704}
4705
Damien Miller819dbb62009-01-21 16:46:26 +11004706static int
4707connect_local_xsocket(u_int dnr)
4708{
4709 char buf[1024];
4710 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4711 return connect_local_xsocket_path(buf);
4712}
4713
Darren Tuckerda39b092017-03-10 13:22:32 +11004714#ifdef __APPLE__
4715static int
4716is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4717{
4718 struct stat sbuf;
4719
4720 if (strlcpy(path, display, pathlen) >= pathlen) {
4721 error("%s: display path too long", __func__);
4722 return 0;
4723 }
4724 if (display[0] != '/')
4725 return 0;
4726 if (stat(path, &sbuf) == 0) {
4727 return 1;
4728 } else {
4729 char *dot = strrchr(path, '.');
4730 if (dot != NULL) {
4731 *dot = '\0';
4732 if (stat(path, &sbuf) == 0) {
4733 return 1;
4734 }
4735 }
4736 }
4737 return 0;
4738}
4739#endif
4740
Damien Millerbd483e72000-04-30 10:00:53 +10004741int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004742x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004743{
Damien Miller57c4e872006-03-31 23:11:07 +11004744 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004745 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004746 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004747 struct addrinfo hints, *ai, *aitop;
4748 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004749 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004750
Damien Miller95def091999-11-25 00:26:21 +11004751 /* Try to open a socket for the local X server. */
4752 display = getenv("DISPLAY");
4753 if (!display) {
4754 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004755 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004756 }
Damien Miller5428f641999-11-25 11:54:57 +11004757 /*
4758 * Now we decode the value of the DISPLAY variable and make a
4759 * connection to the real X server.
4760 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004761
Damien Miller819dbb62009-01-21 16:46:26 +11004762#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004763 /* Check if display is a path to a socket (as set by launchd). */
4764 {
4765 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004766
Darren Tuckerda39b092017-03-10 13:22:32 +11004767 if (is_path_to_xsocket(display, path, sizeof(path))) {
4768 debug("x11_connect_display: $DISPLAY is launchd");
4769
4770 /* Create a socket. */
4771 sock = connect_local_xsocket_path(path);
4772 if (sock < 0)
4773 return -1;
4774
4775 /* OK, we now have a connection to the display. */
4776 return sock;
4777 }
Damien Miller819dbb62009-01-21 16:46:26 +11004778 }
4779#endif
Damien Miller5428f641999-11-25 11:54:57 +11004780 /*
4781 * Check if it is a unix domain socket. Unix domain displays are in
4782 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4783 */
Damien Miller95def091999-11-25 00:26:21 +11004784 if (strncmp(display, "unix:", 5) == 0 ||
4785 display[0] == ':') {
4786 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004787 if (sscanf(strrchr(display, ':') + 1, "%u",
4788 &display_number) != 1) {
4789 error("Could not parse display number from DISPLAY: "
4790 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004791 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004792 }
4793 /* Create a socket. */
4794 sock = connect_local_xsocket(display_number);
4795 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004796 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004797
4798 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004799 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004800 }
Damien Miller5428f641999-11-25 11:54:57 +11004801 /*
4802 * Connect to an inet socket. The DISPLAY value is supposedly
4803 * hostname:d[.s], where hostname may also be numeric IP address.
4804 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004805 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004806 cp = strchr(buf, ':');
4807 if (!cp) {
4808 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004809 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004810 }
Damien Miller95def091999-11-25 00:26:21 +11004811 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004812 /*
4813 * buf now contains the host name. But first we parse the
4814 * display number.
4815 */
Damien Miller57c4e872006-03-31 23:11:07 +11004816 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004817 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004818 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004819 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004820 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004821
Damien Miller34132e52000-01-14 15:45:46 +11004822 /* Look up the host address */
4823 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004824 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004825 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004826 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004827 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004828 error("%.100s: unknown host. (%s)", buf,
4829 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004830 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004831 }
Damien Miller34132e52000-01-14 15:45:46 +11004832 for (ai = aitop; ai; ai = ai->ai_next) {
4833 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004834 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004835 if (sock == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004836 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004837 continue;
4838 }
4839 /* Connect it to the display. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00004840 if (connect(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
Damien Miller57c4e872006-03-31 23:11:07 +11004841 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004842 6000 + display_number, strerror(errno));
4843 close(sock);
4844 continue;
4845 }
4846 /* Success */
4847 break;
Damien Miller34132e52000-01-14 15:45:46 +11004848 }
Damien Miller34132e52000-01-14 15:45:46 +11004849 freeaddrinfo(aitop);
4850 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004851 error("connect %.100s port %u: %.100s", buf,
4852 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004853 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004854 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004855 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004856 return sock;
4857}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004858
Damien Millerbd483e72000-04-30 10:00:53 +10004859/*
Damien Miller5428f641999-11-25 11:54:57 +11004860 * Requests forwarding of X11 connections, generates fake authentication
4861 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004862 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004863 */
Damien Miller4af51302000-04-16 11:18:38 +10004864void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004865x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4866 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004867{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004868 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004869 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004870 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004871 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004872 char *new_data;
4873 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004874
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004875 if (sc->x11_saved_display == NULL)
4876 sc->x11_saved_display = xstrdup(disp);
4877 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004878 error("x11_request_forwarding_with_spoofing: different "
4879 "$DISPLAY already forwarded");
4880 return;
4881 }
4882
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004883 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004884 if (cp)
4885 cp = strchr(cp, '.');
4886 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004887 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004888 else
4889 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004890
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004891 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004892 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004893 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004894
4895 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004896 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004897 for (i = 0; i < data_len; i++) {
4898 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4899 fatal("x11_request_forwarding: bad "
4900 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004901 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004902 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004903 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004904
4905 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004906 sc->x11_fake_data = xmalloc(data_len);
4907 arc4random_buf(sc->x11_fake_data, data_len);
4908 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004909 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004910
Damien Miller95def091999-11-25 00:26:21 +11004911 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004912 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004913
Damien Miller95def091999-11-25 00:26:21 +11004914 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004915 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4916 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4917 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4918 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4919 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4920 (r = sshpkt_send(ssh)) != 0 ||
4921 (r = ssh_packet_write_wait(ssh)) != 0)
4922 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004923 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004924}