blob: e90f7fea9f62b511f954506407b20ccfdca63a10 [file] [log] [blame]
markus@openbsd.org5d140192018-07-27 12:03:17 +00001/* $OpenBSD: channels.c,v 1.384 2018/07/27 12:03:17 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100046#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110047#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100048#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100049#ifdef HAVE_SYS_TIME_H
50# include <sys/time.h>
51#endif
Damien Millerefc04e72006-07-10 20:26:27 +100052
53#include <netinet/in.h>
54#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055
Darren Tucker39972492006-07-12 22:22:46 +100056#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110057#include <fcntl.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000058#include <limits.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100059#include <netdb.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000060#include <stdarg.h>
Darren Tucker37f92202015-02-23 03:07:24 +110061#ifdef HAVE_STDINT_H
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000062 #include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110063#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110067#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Millerb84886b2008-05-19 15:05:07 +100070#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "ssh2.h"
markus@openbsd.org8d057842016-09-30 09:19:13 +000074#include "ssherr.h"
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000075#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "canohost.h"
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
230 if ((sc = calloc(1, sizeof(*sc))) == NULL ||
231 (sc->channel_pre = calloc(SSH_CHANNEL_MAX_TYPE,
232 sizeof(*sc->channel_pre))) == NULL ||
233 (sc->channel_post = calloc(SSH_CHANNEL_MAX_TYPE,
234 sizeof(*sc->channel_post))) == NULL)
235 fatal("%s: allocation failed", __func__);
236 sc->channels_alloc = 10;
237 sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
238 sc->IPv4or6 = AF_UNSPEC;
239 channel_handler_init(sc);
240
241 ssh->chanctxt = sc;
242}
243
Damien Millerb38eff82000-04-01 11:09:21 +1000244Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000245channel_by_id(struct ssh *ssh, int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000246{
247 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000248
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000249 if (id < 0 || (u_int)id >= ssh->chanctxt->channels_alloc) {
250 logit("%s: %d: bad id", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000251 return NULL;
252 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000253 c = ssh->chanctxt->channels[id];
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000254 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000255 logit("%s: %d: bad id: channel free", __func__, id);
Damien Millerb38eff82000-04-01 11:09:21 +1000256 return NULL;
257 }
258 return c;
259}
260
markus@openbsd.org8d057842016-09-30 09:19:13 +0000261Channel *
djm@openbsd.org9f532292017-09-12 06:35:31 +0000262channel_by_remote_id(struct ssh *ssh, u_int remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000263{
264 Channel *c;
265 u_int i;
266
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000267 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
268 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000269 if (c != NULL && c->have_remote_id && c->remote_id == remote_id)
markus@openbsd.org8d057842016-09-30 09:19:13 +0000270 return c;
271 }
272 return NULL;
273}
274
Damien Miller5428f641999-11-25 11:54:57 +1100275/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100276 * Returns the channel if it is allowed to receive protocol messages.
277 * Private channels, like listening sockets, may not receive messages.
278 */
279Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000280channel_lookup(struct ssh *ssh, int id)
Damien Millerd47c62a2005-12-13 19:33:57 +1100281{
282 Channel *c;
283
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000284 if ((c = channel_by_id(ssh, id)) == NULL)
285 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100286
Damien Millerd62f2ca2006-03-26 13:57:41 +1100287 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100288 case SSH_CHANNEL_X11_OPEN:
289 case SSH_CHANNEL_LARVAL:
290 case SSH_CHANNEL_CONNECTING:
291 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000292 case SSH_CHANNEL_RDYNAMIC_OPEN:
293 case SSH_CHANNEL_RDYNAMIC_FINISH:
Damien Millerd47c62a2005-12-13 19:33:57 +1100294 case SSH_CHANNEL_OPENING:
295 case SSH_CHANNEL_OPEN:
Damien Miller36187092013-06-10 13:07:11 +1000296 case SSH_CHANNEL_ABANDONED:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000297 case SSH_CHANNEL_MUX_PROXY:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000298 return c;
Damien Millerd47c62a2005-12-13 19:33:57 +1100299 }
300 logit("Non-public channel %d, type %d.", id, c->type);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000301 return NULL;
Damien Millerd47c62a2005-12-13 19:33:57 +1100302}
303
304/*
Damien Millere247cc42000-05-07 12:03:14 +1000305 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000306 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100307 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000309channel_register_fds(struct ssh *ssh, Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000310 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000312 struct ssh_channels *sc = ssh->chanctxt;
313
Damien Miller95def091999-11-25 00:26:21 +1100314 /* Update the maximum file descriptor value. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000315 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, rfd);
316 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, wfd);
317 sc->channel_max_fd = MAXIMUM(sc->channel_max_fd, efd);
Damien Miller5e953212001-01-30 09:14:00 +1100318
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100319 if (rfd != -1)
320 fcntl(rfd, F_SETFD, FD_CLOEXEC);
321 if (wfd != -1 && wfd != rfd)
322 fcntl(wfd, F_SETFD, FD_CLOEXEC);
323 if (efd != -1 && efd != rfd && efd != wfd)
324 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000325
Damien Miller6f83b8e2000-05-02 09:23:45 +1000326 c->rfd = rfd;
327 c->wfd = wfd;
328 c->sock = (rfd == wfd) ? rfd : -1;
329 c->efd = efd;
330 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100331
Darren Tuckered3cdc02008-06-16 23:29:18 +1000332 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000333 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000334#ifdef _AIX
335 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000336 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000337#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100338
Damien Miller69b69aa2000-10-28 14:19:58 +1100339 /* enable nonblocking mode */
340 if (nonblock) {
341 if (rfd != -1)
342 set_nonblock(rfd);
343 if (wfd != -1)
344 set_nonblock(wfd);
345 if (efd != -1)
346 set_nonblock(efd);
347 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000348}
349
350/*
351 * Allocate a new channel object and set its type and socket. This will cause
352 * remote_name to be freed.
353 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000354Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000355channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000356 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000357{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000358 struct ssh_channels *sc = ssh->chanctxt;
359 u_int i, found;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000360 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 /* Try to find a free slot where to put the new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000363 for (i = 0; i < sc->channels_alloc; i++) {
364 if (sc->channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100365 /* Found a free slot. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000366 found = i;
Damien Miller95def091999-11-25 00:26:21 +1100367 break;
368 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000369 }
370 if (i >= sc->channels_alloc) {
371 /*
372 * There are no free slots. Take last+1 slot and expand
373 * the array.
374 */
375 found = sc->channels_alloc;
376 if (sc->channels_alloc > CHANNELS_MAX_CHANNELS)
377 fatal("%s: internal error: channels_alloc %d too big",
378 __func__, sc->channels_alloc);
379 sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
380 sc->channels_alloc + 10, sizeof(*sc->channels));
381 sc->channels_alloc += 10;
382 debug2("channel: expanding %d", sc->channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100383 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000384 /* Initialize and return new channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000385 c = sc->channels[found] = xcalloc(1, sizeof(Channel));
386 if ((c->input = sshbuf_new()) == NULL ||
387 (c->output = sshbuf_new()) == NULL ||
388 (c->extended = sshbuf_new()) == NULL)
389 fatal("%s: sshbuf_new failed", __func__);
Damien Miller5144df92002-01-22 23:28:45 +1100390 c->ostate = CHAN_OUTPUT_OPEN;
391 c->istate = CHAN_INPUT_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000392 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100393 c->self = found;
394 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000395 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000396 c->local_window = window;
397 c->local_window_max = window;
Damien Millerbd483e72000-04-30 10:00:53 +1000398 c->local_maxpacket = maxpack;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000399 c->remote_name = xstrdup(remote_name);
Damien Millere1537f92010-01-26 13:26:22 +1100400 c->ctl_chan = -1;
Darren Tucker876045b2010-01-08 17:08:00 +1100401 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000402 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100403 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000404 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000406
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000407static void
408channel_find_maxfd(struct ssh_channels *sc)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000409{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000410 u_int i;
411 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000412 Channel *c;
413
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000414 for (i = 0; i < sc->channels_alloc; i++) {
415 c = sc->channels[i];
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000416 if (c != NULL) {
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000417 max = MAXIMUM(max, c->rfd);
418 max = MAXIMUM(max, c->wfd);
419 max = MAXIMUM(max, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000420 }
421 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000422 sc->channel_max_fd = max;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000423}
424
425int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000426channel_close_fd(struct ssh *ssh, int *fdp)
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000427{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000428 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000429 int ret = 0, fd = *fdp;
430
431 if (fd != -1) {
432 ret = close(fd);
433 *fdp = -1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000434 if (fd == sc->channel_max_fd)
435 channel_find_maxfd(sc);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000436 }
437 return ret;
438}
439
Damien Miller6f83b8e2000-05-02 09:23:45 +1000440/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000441static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000442channel_close_fds(struct ssh *ssh, Channel *c)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000443{
tb@openbsd.org50693202018-02-05 05:36:49 +0000444 int sock = c->sock, rfd = c->rfd, wfd = c->wfd, efd = c->efd;
445
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000446 channel_close_fd(ssh, &c->sock);
tb@openbsd.org50693202018-02-05 05:36:49 +0000447 if (rfd != sock)
448 channel_close_fd(ssh, &c->rfd);
449 if (wfd != sock && wfd != rfd)
450 channel_close_fd(ssh, &c->wfd);
451 if (efd != sock && efd != rfd && efd != wfd)
452 channel_close_fd(ssh, &c->efd);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000453}
454
455static void
djm@openbsd.org115063a2018-06-06 18:22:41 +0000456fwd_perm_clear(struct permission *perm)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000457{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000458 free(perm->host_to_connect);
459 free(perm->listen_host);
460 free(perm->listen_path);
461 bzero(perm, sizeof(*perm));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000462}
463
djm@openbsd.org115063a2018-06-06 18:22:41 +0000464/* Returns an printable name for the specified forwarding permission list */
465static const char *
466fwd_ident(int who, int where)
467{
468 if (who == FORWARD_ADM) {
469 if (where == FORWARD_LOCAL)
470 return "admin local";
471 else if (where == FORWARD_REMOTE)
472 return "admin remote";
473 } else if (who == FORWARD_USER) {
474 if (where == FORWARD_LOCAL)
475 return "user local";
476 else if (where == FORWARD_REMOTE)
477 return "user remote";
478 }
479 fatal("Unknown forward permission list %d/%d", who, where);
480}
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000481
djm@openbsd.org115063a2018-06-06 18:22:41 +0000482/* Returns the forwarding permission list for the specified direction */
483static struct permission_set *
484permission_set_get(struct ssh *ssh, int where)
485{
486 struct ssh_channels *sc = ssh->chanctxt;
487
488 switch (where) {
489 case FORWARD_LOCAL:
490 return &sc->local_perms;
491 break;
492 case FORWARD_REMOTE:
493 return &sc->remote_perms;
494 break;
495 default:
496 fatal("%s: invalid forwarding direction %d", __func__, where);
497 }
498}
499
500/* Reutrns pointers to the specified forwarding list and its element count */
501static void
502permission_set_get_array(struct ssh *ssh, int who, int where,
503 struct permission ***permpp, u_int **npermpp)
504{
505 struct permission_set *pset = permission_set_get(ssh, where);
506
507 switch (who) {
508 case FORWARD_USER:
509 *permpp = &pset->permitted_user;
510 *npermpp = &pset->num_permitted_user;
511 break;
512 case FORWARD_ADM:
513 *permpp = &pset->permitted_admin;
514 *npermpp = &pset->num_permitted_admin;
515 break;
516 default:
517 fatal("%s: invalid forwarding client %d", __func__, who);
518 }
519}
520
521/* Adds an entry to the spcified forwarding list */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000522static int
djm@openbsd.org115063a2018-06-06 18:22:41 +0000523permission_set_add(struct ssh *ssh, int who, int where,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000524 const char *host_to_connect, int port_to_connect,
525 const char *listen_host, const char *listen_path, int listen_port,
526 Channel *downstream)
527{
djm@openbsd.org115063a2018-06-06 18:22:41 +0000528 struct permission **permp;
529 u_int n, *npermp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000530
djm@openbsd.org115063a2018-06-06 18:22:41 +0000531 permission_set_get_array(ssh, who, where, &permp, &npermp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000532
djm@openbsd.org115063a2018-06-06 18:22:41 +0000533 if (*npermp >= INT_MAX)
534 fatal("%s: %s overflow", __func__, fwd_ident(who, where));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000535
djm@openbsd.org115063a2018-06-06 18:22:41 +0000536 *permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
537 n = (*npermp)++;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000538#define MAYBE_DUP(s) ((s == NULL) ? NULL : xstrdup(s))
djm@openbsd.org115063a2018-06-06 18:22:41 +0000539 (*permp)[n].host_to_connect = MAYBE_DUP(host_to_connect);
540 (*permp)[n].port_to_connect = port_to_connect;
541 (*permp)[n].listen_host = MAYBE_DUP(listen_host);
542 (*permp)[n].listen_path = MAYBE_DUP(listen_path);
543 (*permp)[n].listen_port = listen_port;
544 (*permp)[n].downstream = downstream;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000545#undef MAYBE_DUP
546 return (int)n;
547}
548
549static void
550mux_remove_remote_forwardings(struct ssh *ssh, Channel *c)
551{
552 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +0000553 struct permission_set *pset = &sc->local_perms;
554 struct permission *perm;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000555 int r;
556 u_int i;
557
djm@openbsd.org115063a2018-06-06 18:22:41 +0000558 for (i = 0; i < pset->num_permitted_user; i++) {
559 perm = &pset->permitted_user[i];
560 if (perm->downstream != c)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000561 continue;
562
563 /* cancel on the server, since mux client is gone */
564 debug("channel %d: cleanup remote forward for %s:%u",
djm@openbsd.org115063a2018-06-06 18:22:41 +0000565 c->self, perm->listen_host, perm->listen_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000566 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
567 (r = sshpkt_put_cstring(ssh,
568 "cancel-tcpip-forward")) != 0 ||
569 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
570 (r = sshpkt_put_cstring(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +0000571 channel_rfwd_bind_host(perm->listen_host))) != 0 ||
572 (r = sshpkt_put_u32(ssh, perm->listen_port)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000573 (r = sshpkt_send(ssh)) != 0) {
574 fatal("%s: channel %i: %s", __func__,
575 c->self, ssh_err(r));
576 }
djm@openbsd.org115063a2018-06-06 18:22:41 +0000577 fwd_perm_clear(perm); /* unregister */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000578 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000579}
580
581/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000582void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000583channel_free(struct ssh *ssh, Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000585 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000586 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000587 u_int i, n;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000588 Channel *other;
Damien Millerb84886b2008-05-19 15:05:07 +1000589 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000590
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000591 for (n = 0, i = 0; i < sc->channels_alloc; i++) {
592 if ((other = sc->channels[i]) == NULL)
593 continue;
594 n++;
595 /* detach from mux client and prepare for closing */
596 if (c->type == SSH_CHANNEL_MUX_CLIENT &&
597 other->type == SSH_CHANNEL_MUX_PROXY &&
598 other->mux_ctx == c) {
599 other->mux_ctx = NULL;
600 other->type = SSH_CHANNEL_OPEN;
601 other->istate = CHAN_INPUT_CLOSED;
602 other->ostate = CHAN_OUTPUT_CLOSED;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000603 }
604 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000605 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000606 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000607
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000608 if (c->type == SSH_CHANNEL_MUX_CLIENT)
609 mux_remove_remote_forwardings(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +0000610
markus@openbsd.org5d140192018-07-27 12:03:17 +0000611 if (log_level_get() >= SYSLOG_LEVEL_DEBUG3) {
612 s = channel_open_message(ssh);
613 debug3("channel %d: status: %s", c->self, s);
614 free(s);
615 }
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000616
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000617 channel_close_fds(ssh, c);
618 sshbuf_free(c->input);
619 sshbuf_free(c->output);
620 sshbuf_free(c->extended);
621 c->input = c->output = c->extended = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000622 free(c->remote_name);
623 c->remote_name = NULL;
624 free(c->path);
625 c->path = NULL;
626 free(c->listening_addr);
627 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000628 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
629 if (cc->abandon_cb != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000630 cc->abandon_cb(ssh, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +1000631 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100632 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000633 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000634 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000635 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000636 c->filter_cleanup(ssh, c->self, c->filter_ctx);
637 sc->channels[c->self] = NULL;
millert@openbsd.org3e8d1852017-09-19 12:10:30 +0000638 explicit_bzero(c, sizeof(*c));
Darren Tuckera627d422013-06-02 07:31:17 +1000639 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640}
641
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000643channel_free_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000645 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000647 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
648 if (ssh->chanctxt->channels[i] != NULL)
649 channel_free(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000650}
651
652/*
653 * Closes the sockets/fds of all channels. This is used to close extra file
654 * descriptors after a fork.
655 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000657channel_close_all(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000658{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000659 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000661 for (i = 0; i < ssh->chanctxt->channels_alloc; i++)
662 if (ssh->chanctxt->channels[i] != NULL)
663 channel_close_fds(ssh, ssh->chanctxt->channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664}
665
666/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000667 * Stop listening to channels.
668 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000669void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000670channel_stop_listening(struct ssh *ssh)
Ben Lindstrom809744e2001-07-04 05:26:06 +0000671{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000672 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000673 Channel *c;
674
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000675 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
676 c = ssh->chanctxt->channels[i];
Ben Lindstrom809744e2001-07-04 05:26:06 +0000677 if (c != NULL) {
678 switch (c->type) {
679 case SSH_CHANNEL_AUTH_SOCKET:
680 case SSH_CHANNEL_PORT_LISTENER:
681 case SSH_CHANNEL_RPORT_LISTENER:
682 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000683 case SSH_CHANNEL_UNIX_LISTENER:
684 case SSH_CHANNEL_RUNIX_LISTENER:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000685 channel_close_fd(ssh, &c->sock);
686 channel_free(ssh, c);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000687 break;
688 }
689 }
690 }
691}
692
693/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000694 * Returns true if no channel has too much buffered data, and false if one or
695 * more channel is overfull.
696 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000698channel_not_very_much_buffered_data(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699{
700 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000701 u_int maxsize = ssh_packet_get_maxsize(ssh);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000702 Channel *c;
703
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000704 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
705 c = ssh->chanctxt->channels[i];
706 if (c == NULL || c->type != SSH_CHANNEL_OPEN)
707 continue;
708 if (sshbuf_len(c->output) > maxsize) {
709 debug2("channel %d: big output buffer %zu > %u",
710 c->self, sshbuf_len(c->output), maxsize);
711 return 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712 }
713 }
714 return 1;
715}
716
717/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000719channel_still_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000721 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722 Channel *c;
723
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000724 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
725 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726 if (c == NULL)
727 continue;
728 switch (c->type) {
729 case SSH_CHANNEL_X11_LISTENER:
730 case SSH_CHANNEL_PORT_LISTENER:
731 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100732 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 case SSH_CHANNEL_CLOSED:
734 case SSH_CHANNEL_AUTH_SOCKET:
735 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000736 case SSH_CHANNEL_RDYNAMIC_OPEN:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737 case SSH_CHANNEL_CONNECTING:
738 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000739 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000740 case SSH_CHANNEL_UNIX_LISTENER:
741 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742 continue;
743 case SSH_CHANNEL_LARVAL:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744 continue;
745 case SSH_CHANNEL_OPENING:
746 case SSH_CHANNEL_OPEN:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000747 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100749 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000750 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751 return 1;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000753 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 /* NOTREACHED */
755 }
756 }
757 return 0;
758}
759
760/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000762channel_find_open(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000764 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765 Channel *c;
766
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000767 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
768 c = ssh->chanctxt->channels[i];
djm@openbsd.org9f532292017-09-12 06:35:31 +0000769 if (c == NULL || !c->have_remote_id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770 continue;
771 switch (c->type) {
772 case SSH_CHANNEL_CLOSED:
773 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000774 case SSH_CHANNEL_RDYNAMIC_OPEN:
775 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000776 case SSH_CHANNEL_X11_LISTENER:
777 case SSH_CHANNEL_PORT_LISTENER:
778 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100779 case SSH_CHANNEL_MUX_LISTENER:
780 case SSH_CHANNEL_MUX_CLIENT:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000781 case SSH_CHANNEL_MUX_PROXY:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000782 case SSH_CHANNEL_OPENING:
783 case SSH_CHANNEL_CONNECTING:
784 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000785 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000786 case SSH_CHANNEL_UNIX_LISTENER:
787 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000788 continue;
789 case SSH_CHANNEL_LARVAL:
790 case SSH_CHANNEL_AUTH_SOCKET:
791 case SSH_CHANNEL_OPEN:
792 case SSH_CHANNEL_X11_OPEN:
793 return i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000794 default:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000795 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000796 /* NOTREACHED */
797 }
798 }
799 return -1;
800}
801
Ben Lindstrome9c99912001-06-09 00:41:05 +0000802/*
803 * Returns a message describing the currently open forwarded connections,
804 * suitable for sending to the client. The message contains crlf pairs for
805 * newlines.
806 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000807char *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000808channel_open_message(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000809{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000810 struct sshbuf *buf;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000811 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000812 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000813 int r;
814 char *ret;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000815
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000816 if ((buf = sshbuf_new()) == NULL)
817 fatal("%s: sshbuf_new", __func__);
818 if ((r = sshbuf_putf(buf,
819 "The following connections are open:\r\n")) != 0)
820 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
821 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
822 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000823 if (c == NULL)
824 continue;
825 switch (c->type) {
826 case SSH_CHANNEL_X11_LISTENER:
827 case SSH_CHANNEL_PORT_LISTENER:
828 case SSH_CHANNEL_RPORT_LISTENER:
829 case SSH_CHANNEL_CLOSED:
830 case SSH_CHANNEL_AUTH_SOCKET:
831 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000832 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100833 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000834 case SSH_CHANNEL_UNIX_LISTENER:
835 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000836 continue;
837 case SSH_CHANNEL_LARVAL:
838 case SSH_CHANNEL_OPENING:
839 case SSH_CHANNEL_CONNECTING:
840 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000841 case SSH_CHANNEL_RDYNAMIC_OPEN:
842 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843 case SSH_CHANNEL_OPEN:
844 case SSH_CHANNEL_X11_OPEN:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000845 case SSH_CHANNEL_MUX_PROXY:
846 case SSH_CHANNEL_MUX_CLIENT:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000847 if ((r = sshbuf_putf(buf, " #%d %.300s "
djm@openbsd.org9f532292017-09-12 06:35:31 +0000848 "(t%d %s%u i%u/%zu o%u/%zu fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000849 c->self, c->remote_name,
djm@openbsd.org9f532292017-09-12 06:35:31 +0000850 c->type,
851 c->have_remote_id ? "r" : "nr", c->remote_id,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000852 c->istate, sshbuf_len(c->input),
853 c->ostate, sshbuf_len(c->output),
854 c->rfd, c->wfd, c->ctl_chan)) != 0)
855 fatal("%s: sshbuf_putf: %s",
856 __func__, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000857 continue;
858 default:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000859 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000860 /* NOTREACHED */
861 }
862 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000863 if ((ret = sshbuf_dup_string(buf)) == NULL)
864 fatal("%s: sshbuf_dup_string", __func__);
865 sshbuf_free(buf);
866 return ret;
867}
868
869static void
870open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
871{
872 int r;
873
874 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
875 (r = sshpkt_put_cstring(ssh, type)) != 0 ||
876 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
877 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
878 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
879 fatal("%s: channel %i: open: %s", where, c->self, ssh_err(r));
880 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000881}
882
883void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000884channel_send_open(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000885{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000886 Channel *c = channel_lookup(ssh, id);
887 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000888
Ben Lindstrome9c99912001-06-09 00:41:05 +0000889 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000890 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000891 return;
892 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000893 debug2("channel %d: send open", id);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000894 open_preamble(ssh, __func__, c, c->ctype);
895 if ((r = sshpkt_send(ssh)) != 0)
896 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000897}
898
899void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000900channel_request_start(struct ssh *ssh, int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000901{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000902 Channel *c = channel_lookup(ssh, id);
903 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000904
Ben Lindstrome9c99912001-06-09 00:41:05 +0000905 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000906 logit("%s: %d: unknown channel id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907 return;
908 }
djm@openbsd.org9f532292017-09-12 06:35:31 +0000909 if (!c->have_remote_id)
910 fatal(":%s: channel %d: no remote id", __func__, c->self);
911
Damien Miller0e220db2004-06-15 10:34:08 +1000912 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000913 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_REQUEST)) != 0 ||
914 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
915 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
916 (r = sshpkt_put_u8(ssh, wantconfirm)) != 0) {
917 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
918 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000919}
Damien Miller4f7becb2006-03-26 14:10:14 +1100920
Ben Lindstrome9c99912001-06-09 00:41:05 +0000921void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000922channel_register_status_confirm(struct ssh *ssh, int id,
923 channel_confirm_cb *cb, channel_confirm_abandon_cb *abandon_cb, void *ctx)
Damien Millerb84886b2008-05-19 15:05:07 +1000924{
925 struct channel_confirm *cc;
926 Channel *c;
927
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000928 if ((c = channel_lookup(ssh, id)) == NULL)
929 fatal("%s: %d: bad id", __func__, id);
Damien Millerb84886b2008-05-19 15:05:07 +1000930
Damien Miller6c81fee2013-11-08 12:19:55 +1100931 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000932 cc->cb = cb;
933 cc->abandon_cb = abandon_cb;
934 cc->ctx = ctx;
935 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
936}
937
938void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000939channel_register_open_confirm(struct ssh *ssh, int id,
940 channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000941{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000942 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000943
Ben Lindstrome9c99912001-06-09 00:41:05 +0000944 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000945 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000946 return;
947 }
Damien Millerb84886b2008-05-19 15:05:07 +1000948 c->open_confirm = fn;
949 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000950}
Damien Miller4f7becb2006-03-26 14:10:14 +1100951
Ben Lindstrome9c99912001-06-09 00:41:05 +0000952void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000953channel_register_cleanup(struct ssh *ssh, int id,
954 channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000955{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000956 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000957
Ben Lindstrome9c99912001-06-09 00:41:05 +0000958 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000959 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000960 return;
961 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000962 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100963 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000964}
Damien Miller4f7becb2006-03-26 14:10:14 +1100965
Ben Lindstrome9c99912001-06-09 00:41:05 +0000966void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000967channel_cancel_cleanup(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000968{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000969 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000970
Ben Lindstrome9c99912001-06-09 00:41:05 +0000971 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000972 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000973 return;
974 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000975 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100976 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000977}
Damien Miller4f7becb2006-03-26 14:10:14 +1100978
Ben Lindstrome9c99912001-06-09 00:41:05 +0000979void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000980channel_register_filter(struct ssh *ssh, int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000981 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000982{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000983 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000984
Ben Lindstrome9c99912001-06-09 00:41:05 +0000985 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000986 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000987 return;
988 }
Damien Miller077b2382005-12-31 16:22:32 +1100989 c->input_filter = ifn;
990 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000991 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000992 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000993}
994
995void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000996channel_set_fds(struct ssh *ssh, int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000997 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000998{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000999 Channel *c = channel_lookup(ssh, id);
1000 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001001
Ben Lindstrome9c99912001-06-09 00:41:05 +00001002 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
1003 fatal("channel_activate for non-larval channel %d.", id);
djm@openbsd.org9f532292017-09-12 06:35:31 +00001004 if (!c->have_remote_id)
1005 fatal(":%s: channel %d: no remote id", __func__, c->self);
1006
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001007 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001008 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +11001009 c->local_window = c->local_window_max = window_max;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001010
1011 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
1012 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1013 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1014 (r = sshpkt_send(ssh)) != 0)
1015 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001016}
1017
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001019channel_pre_listener(struct ssh *ssh, Channel *c,
1020 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001021{
1022 FD_SET(c->sock, readset);
1023}
1024
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001026channel_pre_connecting(struct ssh *ssh, Channel *c,
1027 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001028{
1029 debug3("channel %d: waiting for connection", c->self);
1030 FD_SET(c->sock, writeset);
1031}
1032
Ben Lindstrombba81212001-06-25 05:01:22 +00001033static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001034channel_pre_open(struct ssh *ssh, Channel *c,
1035 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001036{
Damien Miller33b13562000-04-04 14:38:59 +10001037 if (c->istate == CHAN_INPUT_OPEN &&
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001038 c->remote_window > 0 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001039 sshbuf_len(c->input) < c->remote_window &&
1040 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Miller33b13562000-04-04 14:38:59 +10001041 FD_SET(c->rfd, readset);
1042 if (c->ostate == CHAN_OUTPUT_OPEN ||
1043 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001044 if (sshbuf_len(c->output) > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001045 FD_SET(c->wfd, writeset);
1046 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +00001047 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001048 debug2("channel %d: "
1049 "obuf_empty delayed efd %d/(%zu)", c->self,
1050 c->efd, sshbuf_len(c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001051 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001052 chan_obuf_empty(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10001053 }
1054 }
1055 /** XXX check close conditions, too */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001056 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED &&
1057 c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +10001058 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001059 sshbuf_len(c->extended) > 0)
Damien Miller33b13562000-04-04 14:38:59 +10001060 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +10001061 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
1062 (c->extended_usage == CHAN_EXTENDED_READ ||
1063 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001064 sshbuf_len(c->extended) < c->remote_window)
Damien Miller33b13562000-04-04 14:38:59 +10001065 FD_SET(c->efd, readset);
1066 }
Damien Miller0e220db2004-06-15 10:34:08 +10001067 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +10001068}
1069
Damien Millerb38eff82000-04-01 11:09:21 +10001070/*
1071 * This is a special state for X11 authentication spoofing. An opened X11
1072 * connection (when authentication spoofing is being done) remains in this
1073 * state until the first packet has been completely read. The authentication
1074 * data in that packet is then substituted by the real data if it matches the
1075 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +10001076 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +00001077 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +10001078 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001079static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001080x11_open_helper(struct ssh *ssh, struct sshbuf *b)
Damien Millerb38eff82000-04-01 11:09:21 +10001081{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001082 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001083 u_char *ucp;
1084 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001085
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001086 /* Is this being called after the refusal deadline? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001087 if (sc->x11_refuse_time != 0 &&
1088 (u_int)monotime() >= sc->x11_refuse_time) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001089 verbose("Rejected X11 connection after ForwardX11Timeout "
1090 "expired");
1091 return -1;
1092 }
1093
Damien Millerb38eff82000-04-01 11:09:21 +10001094 /* Check if the fixed size part of the packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001095 if (sshbuf_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +10001096 return 0;
1097
1098 /* Parse the lengths of variable-length fields. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001099 ucp = sshbuf_mutable_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +10001100 if (ucp[0] == 0x42) { /* Byte order MSB first. */
1101 proto_len = 256 * ucp[6] + ucp[7];
1102 data_len = 256 * ucp[8] + ucp[9];
1103 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
1104 proto_len = ucp[6] + 256 * ucp[7];
1105 data_len = ucp[8] + 256 * ucp[9];
1106 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +10001107 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001108 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +10001109 return -1;
1110 }
1111
1112 /* Check if the whole packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001113 if (sshbuf_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +10001114 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
1115 return 0;
1116
1117 /* Check if authentication protocol matches. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001118 if (proto_len != strlen(sc->x11_saved_proto) ||
1119 memcmp(ucp + 12, sc->x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001120 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +10001121 return -1;
1122 }
1123 /* Check if authentication data matches our fake data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001124 if (data_len != sc->x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001125 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001126 sc->x11_fake_data, sc->x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001127 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +10001128 return -1;
1129 }
1130 /* Check fake data length */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001131 if (sc->x11_fake_data_len != sc->x11_saved_data_len) {
Damien Millerb38eff82000-04-01 11:09:21 +10001132 error("X11 fake_data_len %d != saved_data_len %d",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001133 sc->x11_fake_data_len, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001134 return -1;
1135 }
1136 /*
1137 * Received authentication protocol and data match
1138 * our fake data. Substitute the fake data with real
1139 * data.
1140 */
1141 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001142 sc->x11_saved_data, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001143 return 1;
1144}
1145
Ben Lindstrombba81212001-06-25 05:01:22 +00001146static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001147channel_pre_x11_open(struct ssh *ssh, Channel *c,
1148 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001149{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001150 int ret = x11_open_helper(ssh, c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001151
1152 /* c->force_drain = 1; */
1153
Damien Millerb38eff82000-04-01 11:09:21 +10001154 if (ret == 1) {
1155 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001156 channel_pre_open(ssh, c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001157 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001158 logit("X11 connection rejected because of wrong authentication.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001159 debug2("X11 rejected %d i%d/o%d",
1160 c->self, c->istate, c->ostate);
1161 chan_read_failed(ssh, c);
1162 sshbuf_reset(c->input);
1163 chan_ibuf_empty(ssh, c);
1164 sshbuf_reset(c->output);
1165 chan_write_failed(ssh, c);
Damien Millerfbdeece2003-09-02 22:52:31 +10001166 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001167 }
1168}
1169
Damien Millere1537f92010-01-26 13:26:22 +11001170static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001171channel_pre_mux_client(struct ssh *ssh,
1172 Channel *c, fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11001173{
Damien Millerd530f5f2010-05-21 14:57:10 +10001174 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001175 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Millere1537f92010-01-26 13:26:22 +11001176 FD_SET(c->rfd, readset);
1177 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1178 /* clear buffer immediately (discard any partial packet) */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001179 sshbuf_reset(c->input);
1180 chan_ibuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001181 /* Start output drain. XXX just kill chan? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001182 chan_rcvd_oclose(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001183 }
1184 if (c->ostate == CHAN_OUTPUT_OPEN ||
1185 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001186 if (sshbuf_len(c->output) > 0)
Damien Millere1537f92010-01-26 13:26:22 +11001187 FD_SET(c->wfd, writeset);
1188 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001189 chan_obuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001190 }
1191}
1192
Ben Lindstromb3921512001-04-11 15:57:50 +00001193/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +00001194static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001195channel_decode_socks4(Channel *c, struct sshbuf *input, struct sshbuf *output)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001196{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001197 const u_char *p;
1198 char *host;
Damien Miller1781f532009-01-28 16:24:41 +11001199 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001200 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001201 struct {
1202 u_int8_t version;
1203 u_int8_t command;
1204 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001205 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001206 } s4_req, s4_rsp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001207 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001208
Ben Lindstromb3921512001-04-11 15:57:50 +00001209 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001210
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001211 have = sshbuf_len(input);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001212 len = sizeof(s4_req);
1213 if (have < len)
1214 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001215 p = sshbuf_ptr(input);
Damien Miller1781f532009-01-28 16:24:41 +11001216
1217 need = 1;
1218 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1219 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1220 debug2("channel %d: socks4a request", c->self);
1221 /* ... and needs an extra string (the hostname) */
1222 need = 2;
1223 }
1224 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001225 for (found = 0, i = len; i < have; i++) {
1226 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001227 found++;
1228 if (found == need)
1229 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001230 }
1231 if (i > 1024) {
1232 /* the peer is probably sending garbage */
1233 debug("channel %d: decode socks4: too long",
1234 c->self);
1235 return -1;
1236 }
1237 }
Damien Miller1781f532009-01-28 16:24:41 +11001238 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001239 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001240 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1241 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1242 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1243 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001244 debug("channels %d: decode socks4: %s", c->self, ssh_err(r));
1245 return -1;
1246 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001247 have = sshbuf_len(input);
1248 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001249 if (memchr(p, '\0', have) == NULL) {
1250 error("channel %d: decode socks4: user not nul terminated",
Damien Miller13481292014-02-27 10:18:32 +11001251 c->self);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001252 return -1;
1253 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001254 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001255 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001256 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001257 strlcpy(username, p, sizeof(username));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001258 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001259 fatal("%s: channel %d: consume: %s", __func__,
1260 c->self, ssh_err(r));
1261 }
Darren Tuckera627d422013-06-02 07:31:17 +10001262 free(c->path);
1263 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001264 if (need == 1) { /* SOCKS4: one string */
1265 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001266 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001267 } else { /* SOCKS4A: two strings */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001268 have = sshbuf_len(input);
1269 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001270 if (memchr(p, '\0', have) == NULL) {
1271 error("channel %d: decode socks4a: host not nul "
1272 "terminated", c->self);
1273 return -1;
1274 }
Damien Miller1781f532009-01-28 16:24:41 +11001275 len = strlen(p);
1276 debug2("channel %d: decode socks4a: host %s/%d",
1277 c->self, p, len);
1278 len++; /* trailing '\0' */
Damien Millera1c1b6c2009-01-28 16:29:49 +11001279 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001280 error("channel %d: hostname \"%.100s\" too long",
1281 c->self, p);
1282 return -1;
1283 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001284 c->path = xstrdup(p);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001285 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001286 fatal("%s: channel %d: consume: %s", __func__,
1287 c->self, ssh_err(r));
1288 }
Damien Miller1781f532009-01-28 16:24:41 +11001289 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001290 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001291
Damien Millerfbdeece2003-09-02 22:52:31 +10001292 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001293 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001294
Ben Lindstromb3921512001-04-11 15:57:50 +00001295 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001296 debug("channel %d: cannot handle: %s cn %d",
1297 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001298 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001299 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001300 s4_rsp.version = 0; /* vn: 0 for reply */
1301 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001302 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001303 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001304 if ((r = sshbuf_put(output, &s4_rsp, sizeof(s4_rsp))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001305 fatal("%s: channel %d: append reply: %s", __func__,
1306 c->self, ssh_err(r));
1307 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001308 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001309}
1310
Darren Tucker46471c92003-07-03 13:55:19 +10001311/* try to decode a socks5 header */
1312#define SSH_SOCKS5_AUTHDONE 0x1000
1313#define SSH_SOCKS5_NOAUTH 0x00
1314#define SSH_SOCKS5_IPV4 0x01
1315#define SSH_SOCKS5_DOMAIN 0x03
1316#define SSH_SOCKS5_IPV6 0x04
1317#define SSH_SOCKS5_CONNECT 0x01
1318#define SSH_SOCKS5_SUCCESS 0x00
1319
1320static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001321channel_decode_socks5(Channel *c, struct sshbuf *input, struct sshbuf *output)
Darren Tucker46471c92003-07-03 13:55:19 +10001322{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001323 /* XXX use get/put_u8 instead of trusting struct padding */
Darren Tucker46471c92003-07-03 13:55:19 +10001324 struct {
1325 u_int8_t version;
1326 u_int8_t command;
1327 u_int8_t reserved;
1328 u_int8_t atyp;
1329 } s5_req, s5_rsp;
1330 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001331 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001332 const u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001333 u_int have, need, i, found, nmethods, addrlen, af;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001334 int r;
Darren Tucker46471c92003-07-03 13:55:19 +10001335
1336 debug2("channel %d: decode socks5", c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001337 p = sshbuf_ptr(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001338 if (p[0] != 0x05)
1339 return -1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001340 have = sshbuf_len(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001341 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1342 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001343 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001344 return 0;
1345 nmethods = p[1];
1346 if (have < nmethods + 2)
1347 return 0;
1348 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001349 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001350 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001351 found = 1;
1352 break;
1353 }
1354 }
1355 if (!found) {
1356 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1357 c->self);
1358 return -1;
1359 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001360 if ((r = sshbuf_consume(input, nmethods + 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001361 fatal("%s: channel %d: consume: %s", __func__,
1362 c->self, ssh_err(r));
1363 }
1364 /* version, method */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001365 if ((r = sshbuf_put_u8(output, 0x05)) != 0 ||
1366 (r = sshbuf_put_u8(output, SSH_SOCKS5_NOAUTH)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001367 fatal("%s: channel %d: append reply: %s", __func__,
1368 c->self, ssh_err(r));
1369 }
Darren Tucker46471c92003-07-03 13:55:19 +10001370 c->flags |= SSH_SOCKS5_AUTHDONE;
1371 debug2("channel %d: socks5 auth done", c->self);
1372 return 0; /* need more */
1373 }
1374 debug2("channel %d: socks5 post auth", c->self);
1375 if (have < sizeof(s5_req)+1)
1376 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001377 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001378 if (s5_req.version != 0x05 ||
1379 s5_req.command != SSH_SOCKS5_CONNECT ||
1380 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001381 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001382 return -1;
1383 }
Darren Tucker47eede72005-03-14 23:08:12 +11001384 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001385 case SSH_SOCKS5_IPV4:
1386 addrlen = 4;
1387 af = AF_INET;
1388 break;
1389 case SSH_SOCKS5_DOMAIN:
1390 addrlen = p[sizeof(s5_req)];
1391 af = -1;
1392 break;
1393 case SSH_SOCKS5_IPV6:
1394 addrlen = 16;
1395 af = AF_INET6;
1396 break;
1397 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001398 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001399 return -1;
1400 }
Damien Miller0f077072006-07-10 22:21:02 +10001401 need = sizeof(s5_req) + addrlen + 2;
1402 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1403 need++;
1404 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001405 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001406 if ((r = sshbuf_consume(input, sizeof(s5_req))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001407 fatal("%s: channel %d: consume: %s", __func__,
1408 c->self, ssh_err(r));
1409 }
1410 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1411 /* host string length */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001412 if ((r = sshbuf_consume(input, 1)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001413 fatal("%s: channel %d: consume: %s", __func__,
1414 c->self, ssh_err(r));
1415 }
1416 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001417 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1418 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001419 debug("channel %d: parse addr/port: %s", c->self, ssh_err(r));
1420 return -1;
1421 }
Darren Tucker46471c92003-07-03 13:55:19 +10001422 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001423 free(c->path);
1424 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001425 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001426 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001427 error("channel %d: dynamic request: socks5 hostname "
1428 "\"%.100s\" too long", c->self, dest_addr);
1429 return -1;
1430 }
1431 c->path = xstrdup(dest_addr);
1432 } else {
1433 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1434 return -1;
1435 c->path = xstrdup(ntop);
1436 }
Darren Tucker46471c92003-07-03 13:55:19 +10001437 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001438
Damien Millerfbdeece2003-09-02 22:52:31 +10001439 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001440 c->self, c->path, c->host_port, s5_req.command);
1441
1442 s5_rsp.version = 0x05;
1443 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1444 s5_rsp.reserved = 0; /* ignored */
1445 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001446 dest_port = 0; /* ignored */
1447
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001448 if ((r = sshbuf_put(output, &s5_rsp, sizeof(s5_rsp))) != 0 ||
1449 (r = sshbuf_put_u32(output, ntohl(INADDR_ANY))) != 0 ||
1450 (r = sshbuf_put(output, &dest_port, sizeof(dest_port))) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001451 fatal("%s: channel %d: append reply: %s", __func__,
1452 c->self, ssh_err(r));
Darren Tucker46471c92003-07-03 13:55:19 +10001453 return 1;
1454}
1455
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001456Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001457channel_connect_stdio_fwd(struct ssh *ssh,
1458 const char *host_to_connect, u_short port_to_connect, int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001459{
1460 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001461
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001462 debug("%s %s:%d", __func__, host_to_connect, port_to_connect);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001463
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001464 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001465 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1466 0, "stdio-forward", /*nonblock*/0);
1467
1468 c->path = xstrdup(host_to_connect);
1469 c->host_port = port_to_connect;
1470 c->listening_port = 0;
1471 c->force_drain = 1;
1472
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001473 channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
1474 port_open_helper(ssh, c, "direct-tcpip");
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001475
1476 return c;
1477}
1478
Ben Lindstromb3921512001-04-11 15:57:50 +00001479/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001480static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001481channel_pre_dynamic(struct ssh *ssh, Channel *c,
1482 fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001483{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001484 const u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001485 u_int have;
1486 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001487
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001488 have = sshbuf_len(c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001489 debug2("channel %d: pre_dynamic: have %d", c->self, have);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001490 /* sshbuf_dump(c->input, stderr); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001491 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001492 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001493 /* need more */
1494 FD_SET(c->sock, readset);
1495 return;
1496 }
1497 /* try to guess the protocol */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001498 p = sshbuf_ptr(c->input);
1499 /* XXX sshbuf_peek_u8? */
Ben Lindstromb3921512001-04-11 15:57:50 +00001500 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001501 case 0x04:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001502 ret = channel_decode_socks4(c, c->input, c->output);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001503 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001504 case 0x05:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001505 ret = channel_decode_socks5(c, c->input, c->output);
Darren Tucker46471c92003-07-03 13:55:19 +10001506 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001507 default:
1508 ret = -1;
1509 break;
1510 }
1511 if (ret < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001512 chan_mark_dead(ssh, c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001513 } else if (ret == 0) {
1514 debug2("channel %d: pre_dynamic: need more", c->self);
1515 /* need more */
1516 FD_SET(c->sock, readset);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001517 if (sshbuf_len(c->output))
1518 FD_SET(c->sock, writeset);
Ben Lindstromb3921512001-04-11 15:57:50 +00001519 } else {
1520 /* switch to the next state */
1521 c->type = SSH_CHANNEL_OPENING;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001522 port_open_helper(ssh, c, "direct-tcpip");
Ben Lindstromb3921512001-04-11 15:57:50 +00001523 }
1524}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001525
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001526/* simulate read-error */
1527static void
1528rdynamic_close(struct ssh *ssh, Channel *c)
1529{
1530 c->type = SSH_CHANNEL_OPEN;
1531 chan_read_failed(ssh, c);
1532 sshbuf_reset(c->input);
1533 chan_ibuf_empty(ssh, c);
1534 sshbuf_reset(c->output);
1535 chan_write_failed(ssh, c);
1536}
1537
1538/* reverse dynamic port forwarding */
1539static void
1540channel_before_prepare_select_rdynamic(struct ssh *ssh, Channel *c)
1541{
1542 const u_char *p;
1543 u_int have, len;
1544 int r, ret;
1545
1546 have = sshbuf_len(c->output);
1547 debug2("channel %d: pre_rdynamic: have %d", c->self, have);
1548 /* sshbuf_dump(c->output, stderr); */
1549 /* EOF received */
1550 if (c->flags & CHAN_EOF_RCVD) {
1551 if ((r = sshbuf_consume(c->output, have)) != 0) {
1552 fatal("%s: channel %d: consume: %s",
1553 __func__, c->self, ssh_err(r));
1554 }
1555 rdynamic_close(ssh, c);
1556 return;
1557 }
1558 /* check if the fixed size part of the packet is in buffer. */
1559 if (have < 3)
1560 return;
1561 /* try to guess the protocol */
1562 p = sshbuf_ptr(c->output);
1563 switch (p[0]) {
1564 case 0x04:
1565 /* switch input/output for reverse forwarding */
1566 ret = channel_decode_socks4(c, c->output, c->input);
1567 break;
1568 case 0x05:
1569 ret = channel_decode_socks5(c, c->output, c->input);
1570 break;
1571 default:
1572 ret = -1;
1573 break;
1574 }
1575 if (ret < 0) {
1576 rdynamic_close(ssh, c);
1577 } else if (ret == 0) {
1578 debug2("channel %d: pre_rdynamic: need more", c->self);
1579 /* send socks request to peer */
1580 len = sshbuf_len(c->input);
1581 if (len > 0 && len < c->remote_window) {
1582 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
1583 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1584 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
1585 (r = sshpkt_send(ssh)) != 0) {
1586 fatal("%s: channel %i: rdynamic: %s", __func__,
1587 c->self, ssh_err(r));
1588 }
1589 if ((r = sshbuf_consume(c->input, len)) != 0) {
1590 fatal("%s: channel %d: consume: %s",
1591 __func__, c->self, ssh_err(r));
1592 }
1593 c->remote_window -= len;
1594 }
1595 } else if (rdynamic_connect_finish(ssh, c) < 0) {
1596 /* the connect failed */
1597 rdynamic_close(ssh, c);
1598 }
1599}
1600
Damien Millerb38eff82000-04-01 11:09:21 +10001601/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001602static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001603channel_post_x11_listener(struct ssh *ssh, Channel *c,
1604 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001605{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001606 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001607 struct sockaddr_storage addr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001608 int r, newsock, oerrno, remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001609 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001610 char buf[16384], *remote_ipaddr;
Damien Millerb38eff82000-04-01 11:09:21 +10001611
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001612 if (!FD_ISSET(c->sock, readset))
1613 return;
Damien Millerbd483e72000-04-30 10:00:53 +10001614
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001615 debug("X11 connection requested.");
1616 addrlen = sizeof(addr);
1617 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1618 if (c->single_connection) {
1619 oerrno = errno;
1620 debug2("single_connection: closing X11 listener.");
1621 channel_close_fd(ssh, &c->sock);
1622 chan_mark_dead(ssh, c);
1623 errno = oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001624 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001625 if (newsock < 0) {
1626 if (errno != EINTR && errno != EWOULDBLOCK &&
1627 errno != ECONNABORTED)
1628 error("accept: %.100s", strerror(errno));
1629 if (errno == EMFILE || errno == ENFILE)
1630 c->notbefore = monotime() + 1;
1631 return;
1632 }
1633 set_nodelay(newsock);
1634 remote_ipaddr = get_peer_ipaddr(newsock);
1635 remote_port = get_peer_port(newsock);
1636 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1637 remote_ipaddr, remote_port);
1638
1639 nc = channel_new(ssh, "accepted x11 socket",
1640 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1641 c->local_window_max, c->local_maxpacket, 0, buf, 1);
1642 open_preamble(ssh, __func__, nc, "x11");
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001643 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1644 (r = sshpkt_put_u32(ssh, remote_port)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001645 fatal("%s: channel %i: reply %s", __func__,
1646 c->self, ssh_err(r));
1647 }
1648 if ((r = sshpkt_send(ssh)) != 0)
1649 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
1650 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001651}
1652
Ben Lindstrombba81212001-06-25 05:01:22 +00001653static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001654port_open_helper(struct ssh *ssh, Channel *c, char *rtype)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001655{
Damien Miller4def1842013-12-29 17:45:26 +11001656 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001657 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001658 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001659 int remote_port = get_peer_port(c->sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001660 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001661
Damien Millerd6369432010-02-02 17:02:07 +11001662 if (remote_port == -1) {
1663 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001664 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001665 remote_ipaddr = xstrdup("127.0.0.1");
1666 remote_port = 65535;
1667 }
1668
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001669 free(c->remote_name);
1670 xasprintf(&c->remote_name,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001671 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001672 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001673 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001674 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001675
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001676 open_preamble(ssh, __func__, c, rtype);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001677 if (strcmp(rtype, "direct-tcpip") == 0) {
1678 /* target host, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001679 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1680 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) {
1681 fatal("%s: channel %i: reply %s", __func__,
1682 c->self, ssh_err(r));
1683 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001684 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1685 /* target path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001686 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1687 fatal("%s: channel %i: reply %s", __func__,
1688 c->self, ssh_err(r));
1689 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001690 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1691 /* listen path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001692 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1693 fatal("%s: channel %i: reply %s", __func__,
1694 c->self, ssh_err(r));
1695 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001696 } else {
1697 /* listen address, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001698 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1699 (r = sshpkt_put_u32(ssh, local_port)) != 0) {
1700 fatal("%s: channel %i: reply %s", __func__,
1701 c->self, ssh_err(r));
1702 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001703 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001704 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1705 /* reserved for future owner/mode info */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001706 if ((r = sshpkt_put_cstring(ssh, "")) != 0) {
1707 fatal("%s: channel %i: reply %s", __func__,
1708 c->self, ssh_err(r));
1709 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001710 } else {
1711 /* originator host and port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001712 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1713 (r = sshpkt_put_u32(ssh, (u_int)remote_port)) != 0) {
1714 fatal("%s: channel %i: reply %s", __func__,
1715 c->self, ssh_err(r));
1716 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001717 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001718 if ((r = sshpkt_send(ssh)) != 0)
1719 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10001720 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001721 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001722}
1723
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001724void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001725channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001726{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001727 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001728}
1729
Damien Millerb38eff82000-04-01 11:09:21 +10001730/*
1731 * This socket is listening for connections to a forwarded TCP/IP port.
1732 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001733static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001734channel_post_port_listener(struct ssh *ssh, Channel *c,
1735 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001736{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001737 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001738 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001739 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001740 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001741 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001743 if (!FD_ISSET(c->sock, readset))
1744 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001745
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001746 debug("Connection to port %d forwarding to %.100s port %d requested.",
1747 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001748
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001749 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1750 nextstate = SSH_CHANNEL_OPENING;
1751 rtype = "forwarded-tcpip";
1752 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1753 nextstate = SSH_CHANNEL_OPENING;
1754 rtype = "forwarded-streamlocal@openssh.com";
1755 } else if (c->host_port == PORT_STREAMLOCAL) {
1756 nextstate = SSH_CHANNEL_OPENING;
1757 rtype = "direct-streamlocal@openssh.com";
1758 } else if (c->host_port == 0) {
1759 nextstate = SSH_CHANNEL_DYNAMIC;
1760 rtype = "dynamic-tcpip";
1761 } else {
1762 nextstate = SSH_CHANNEL_OPENING;
1763 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001764 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001765
1766 addrlen = sizeof(addr);
1767 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1768 if (newsock < 0) {
1769 if (errno != EINTR && errno != EWOULDBLOCK &&
1770 errno != ECONNABORTED)
1771 error("accept: %.100s", strerror(errno));
1772 if (errno == EMFILE || errno == ENFILE)
1773 c->notbefore = monotime() + 1;
1774 return;
1775 }
1776 if (c->host_port != PORT_STREAMLOCAL)
1777 set_nodelay(newsock);
1778 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1779 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1780 nc->listening_port = c->listening_port;
1781 nc->host_port = c->host_port;
1782 if (c->path != NULL)
1783 nc->path = xstrdup(c->path);
1784
1785 if (nextstate != SSH_CHANNEL_DYNAMIC)
1786 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001787}
1788
1789/*
1790 * This is the authentication agent socket listening for connections from
1791 * clients.
1792 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001793static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001794channel_post_auth_listener(struct ssh *ssh, Channel *c,
1795 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001796{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001797 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001798 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001799 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001800 socklen_t addrlen;
1801
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001802 if (!FD_ISSET(c->sock, readset))
1803 return;
1804
1805 addrlen = sizeof(addr);
1806 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1807 if (newsock < 0) {
1808 error("accept from auth socket: %.100s", strerror(errno));
1809 if (errno == EMFILE || errno == ENFILE)
1810 c->notbefore = monotime() + 1;
1811 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001812 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001813 nc = channel_new(ssh, "accepted auth socket",
1814 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1815 c->local_window_max, c->local_maxpacket,
1816 0, "accepted auth socket", 1);
1817 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1818 if ((r = sshpkt_send(ssh)) != 0)
1819 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001820}
1821
Ben Lindstrombba81212001-06-25 05:01:22 +00001822static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001823channel_post_connecting(struct ssh *ssh, Channel *c,
1824 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001825{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001826 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001827 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001828
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001829 if (!FD_ISSET(c->sock, writeset))
1830 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001831 if (!c->have_remote_id)
1832 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001833 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1834 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001835 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1836 err = errno;
1837 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001838 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001839 if (err == 0) {
1840 debug("channel %d: connected to %s port %d",
1841 c->self, c->connect_ctx.host, c->connect_ctx.port);
1842 channel_connect_ctx_free(&c->connect_ctx);
1843 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001844 if (isopen) {
1845 /* no message necessary */
1846 } else {
1847 if ((r = sshpkt_start(ssh,
1848 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1849 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1850 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1851 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1852 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1853 != 0)
1854 fatal("%s: channel %i: confirm: %s", __func__,
1855 c->self, ssh_err(r));
1856 if ((r = sshpkt_send(ssh)) != 0)
1857 fatal("%s: channel %i: %s", __func__, c->self,
1858 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001859 }
1860 } else {
1861 debug("channel %d: connection failed: %s",
1862 c->self, strerror(err));
1863 /* Try next address, if any */
1864 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1865 close(c->sock);
1866 c->sock = c->rfd = c->wfd = sock;
1867 channel_find_maxfd(ssh->chanctxt);
1868 return;
1869 }
1870 /* Exhausted all addresses */
1871 error("connect_to %.100s port %d: failed.",
1872 c->connect_ctx.host, c->connect_ctx.port);
1873 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001874 if (isopen) {
1875 rdynamic_close(ssh, c);
1876 } else {
1877 if ((r = sshpkt_start(ssh,
1878 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1879 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001880 (r = sshpkt_put_u32(ssh,
1881 SSH2_OPEN_CONNECT_FAILED)) != 0 ||
1882 (r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1883 (r = sshpkt_put_cstring(ssh, "")) != 0) {
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001884 fatal("%s: channel %i: failure: %s", __func__,
1885 c->self, ssh_err(r));
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001886 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001887 if ((r = sshpkt_send(ssh)) != 0)
1888 fatal("%s: channel %i: %s", __func__, c->self,
1889 ssh_err(r));
1890 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001891 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001892 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001893}
1894
Ben Lindstrombba81212001-06-25 05:01:22 +00001895static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001896channel_handle_rfd(struct ssh *ssh, Channel *c,
1897 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001898{
Darren Tucker11327cc2005-03-14 23:22:25 +11001899 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001900 ssize_t len;
1901 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001902
Damien Miller835284b2007-06-11 13:03:16 +10001903 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001904
1905 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1906 return 1;
1907
1908 errno = 0;
1909 len = read(c->rfd, buf, sizeof(buf));
1910 if (len < 0 && (errno == EINTR ||
1911 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1912 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001913#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001914 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001915#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001916 if ((!c->isatty && len <= 0) ||
1917 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001918#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001919 debug2("channel %d: read<=0 rfd %d len %zd",
1920 c->self, c->rfd, len);
1921 if (c->type != SSH_CHANNEL_OPEN) {
1922 debug2("channel %d: not open", c->self);
1923 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001924 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001925 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001926 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001927 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001928 return -1;
1929 }
1930 if (c->input_filter != NULL) {
1931 if (c->input_filter(ssh, c, buf, len) == -1) {
1932 debug2("channel %d: filter stops", c->self);
1933 chan_read_failed(ssh, c);
1934 }
1935 } else if (c->datagram) {
1936 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1937 fatal("%s: channel %d: put datagram: %s", __func__,
1938 c->self, ssh_err(r));
1939 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1940 fatal("%s: channel %d: put data: %s", __func__,
1941 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001942 }
1943 return 1;
1944}
Damien Miller4f7becb2006-03-26 14:10:14 +11001945
Ben Lindstrombba81212001-06-25 05:01:22 +00001946static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001947channel_handle_wfd(struct ssh *ssh, Channel *c,
1948 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001949{
Ben Lindstrome229b252001-03-05 06:28:06 +00001950 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001951 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1952 size_t dlen, olen = 0;
1953 int r, len;
1954
1955 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
1956 sshbuf_len(c->output) == 0)
1957 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001958
1959 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001960 olen = sshbuf_len(c->output);
1961 if (c->output_filter != NULL) {
1962 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
1963 debug2("channel %d: filter stops", c->self);
1964 if (c->type != SSH_CHANNEL_OPEN)
1965 chan_mark_dead(ssh, c);
1966 else
1967 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001968 return -1;
1969 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001970 } else if (c->datagram) {
1971 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
1972 fatal("%s: channel %d: get datagram: %s", __func__,
1973 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00001974 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001975 } else {
1976 buf = data = sshbuf_mutable_ptr(c->output);
1977 dlen = sshbuf_len(c->output);
1978 }
1979
1980 if (c->datagram) {
1981 /* ignore truncated writes, datagrams might get lost */
djm@openbsd.orgc704f642017-09-24 09:50:01 +00001982 len = write(c->wfd, buf, dlen);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001983 free(data);
1984 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1985 errno == EWOULDBLOCK))
1986 return 1;
1987 if (len <= 0)
1988 goto write_fail;
1989 goto out;
1990 }
1991
1992#ifdef _AIX
1993 /* XXX: Later AIX versions can't push as much data to tty */
1994 if (c->wfd_isatty)
1995 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10001996#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001997
1998 len = write(c->wfd, buf, dlen);
1999 if (len < 0 &&
2000 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
2001 return 1;
2002 if (len <= 0) {
2003 write_fail:
2004 if (c->type != SSH_CHANNEL_OPEN) {
2005 debug2("channel %d: not open", c->self);
2006 chan_mark_dead(ssh, c);
2007 return -1;
2008 } else {
2009 chan_write_failed(ssh, c);
2010 }
2011 return -1;
2012 }
2013#ifndef BROKEN_TCGETATTR_ICANON
2014 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
2015 if (tcgetattr(c->wfd, &tio) == 0 &&
2016 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
2017 /*
2018 * Simulate echo to reduce the impact of
2019 * traffic analysis. We need to match the
2020 * size of a SSH2_MSG_CHANNEL_DATA message
2021 * (4 byte channel id + buf)
2022 */
2023 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
2024 (r = sshpkt_send(ssh)) != 0)
2025 fatal("%s: channel %d: ignore: %s",
2026 __func__, c->self, ssh_err(r));
2027 }
2028 }
2029#endif /* BROKEN_TCGETATTR_ICANON */
2030 if ((r = sshbuf_consume(c->output, len)) != 0) {
2031 fatal("%s: channel %d: consume: %s",
2032 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002033 }
Damien Miller7d457182010-08-05 23:09:48 +10002034 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002035 c->local_consumed += olen - sshbuf_len(c->output);
2036
Damien Miller33b13562000-04-04 14:38:59 +10002037 return 1;
2038}
Damien Miller4f7becb2006-03-26 14:10:14 +11002039
Ben Lindstrombba81212001-06-25 05:01:22 +00002040static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002041channel_handle_efd_write(struct ssh *ssh, Channel *c,
2042 fd_set *readset, fd_set *writeset)
2043{
2044 int r;
2045 ssize_t len;
2046
2047 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2048 return 1;
2049
2050 len = write(c->efd, sshbuf_ptr(c->extended),
2051 sshbuf_len(c->extended));
2052 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
2053 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2054 errno == EWOULDBLOCK))
2055 return 1;
2056 if (len <= 0) {
2057 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2058 channel_close_fd(ssh, &c->efd);
2059 } else {
2060 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2061 fatal("%s: channel %d: consume: %s",
2062 __func__, c->self, ssh_err(r));
2063 }
2064 c->local_consumed += len;
2065 }
2066 return 1;
2067}
2068
2069static int
2070channel_handle_efd_read(struct ssh *ssh, Channel *c,
2071 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002072{
Darren Tucker11327cc2005-03-14 23:22:25 +11002073 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002074 int r;
2075 ssize_t len;
Damien Miller33b13562000-04-04 14:38:59 +10002076
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002077 if (!c->detach_close && !FD_ISSET(c->efd, readset))
2078 return 1;
2079
2080 len = read(c->efd, buf, sizeof(buf));
2081 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
2082 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
2083 errno == EWOULDBLOCK) && !c->detach_close)))
2084 return 1;
2085 if (len <= 0) {
2086 debug2("channel %d: closing read-efd %d",
2087 c->self, c->efd);
2088 channel_close_fd(ssh, &c->efd);
2089 } else {
2090 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2091 debug3("channel %d: discard efd",
2092 c->self);
2093 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2094 fatal("%s: channel %d: append: %s",
2095 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002096 }
2097 }
2098 return 1;
2099}
Damien Miller4f7becb2006-03-26 14:10:14 +11002100
Damien Miller0e220db2004-06-15 10:34:08 +10002101static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002102channel_handle_efd(struct ssh *ssh, Channel *c,
2103 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002104{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002105 if (c->efd == -1)
2106 return 1;
2107
2108 /** XXX handle drain efd, too */
2109
2110 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2111 return channel_handle_efd_write(ssh, c, readset, writeset);
2112 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2113 c->extended_usage == CHAN_EXTENDED_IGNORE)
2114 return channel_handle_efd_read(ssh, c, readset, writeset);
2115
2116 return 1;
2117}
2118
2119static int
2120channel_check_window(struct ssh *ssh, Channel *c)
2121{
2122 int r;
2123
Ben Lindstromb3921512001-04-11 15:57:50 +00002124 if (c->type == SSH_CHANNEL_OPEN &&
2125 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002126 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002127 c->local_maxpacket*3) ||
2128 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002129 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002130 if (!c->have_remote_id)
2131 fatal(":%s: channel %d: no remote id",
2132 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002133 if ((r = sshpkt_start(ssh,
2134 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2135 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2136 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2137 (r = sshpkt_send(ssh)) != 0) {
2138 fatal("%s: channel %i: %s", __func__,
2139 c->self, ssh_err(r));
2140 }
Damien Millerd3444942000-09-30 14:20:03 +11002141 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002142 c->self, c->local_window,
2143 c->local_consumed);
2144 c->local_window += c->local_consumed;
2145 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002146 }
2147 return 1;
2148}
2149
Ben Lindstrombba81212001-06-25 05:01:22 +00002150static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002151channel_post_open(struct ssh *ssh, Channel *c,
2152 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002153{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002154 channel_handle_rfd(ssh, c, readset, writeset);
2155 channel_handle_wfd(ssh, c, readset, writeset);
2156 channel_handle_efd(ssh, c, readset, writeset);
2157 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002158}
2159
Damien Millere1537f92010-01-26 13:26:22 +11002160static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002161read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002162{
2163 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002164 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002165 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002166 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002167
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002168 if (sshbuf_len(c->input) < need) {
2169 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002170 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002171 if (len < 0 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002172 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002173 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002174 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002175 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002176 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002177 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002178 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2179 fatal("%s: channel %d: append: %s",
2180 __func__, c->self, ssh_err(r));
2181 }
Damien Millere1537f92010-01-26 13:26:22 +11002182 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002183 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002184}
2185
2186static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002187channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2188 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002189{
2190 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002191
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002192 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2193 return;
2194 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2195 return;
2196 if (c->mux_pause)
2197 return;
2198
2199 /*
2200 * Don't not read past the precise end of packets to
2201 * avoid disrupting fd passing.
2202 */
2203 if (read_mux(ssh, c, 4) < 4) /* read header */
2204 return;
2205 /* XXX sshbuf_peek_u32 */
2206 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002207#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002208 if (need > CHANNEL_MUX_MAX_PACKET) {
2209 debug2("channel %d: packet too big %u > %u",
2210 c->self, CHANNEL_MUX_MAX_PACKET, need);
2211 chan_rcvd_oclose(ssh, c);
2212 return;
Damien Millere1537f92010-01-26 13:26:22 +11002213 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002214 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2215 return;
2216 if (c->mux_rcb(ssh, c) != 0) {
2217 debug("channel %d: mux_rcb failed", c->self);
2218 chan_mark_dead(ssh, c);
2219 return;
Damien Millere1537f92010-01-26 13:26:22 +11002220 }
2221}
2222
2223static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002224channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2225 fd_set *readset, fd_set *writeset)
2226{
2227 ssize_t len;
2228 int r;
2229
2230 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2231 sshbuf_len(c->output) == 0)
2232 return;
2233
2234 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
2235 if (len < 0 && (errno == EINTR || errno == EAGAIN))
2236 return;
2237 if (len <= 0) {
2238 chan_mark_dead(ssh, c);
2239 return;
2240 }
2241 if ((r = sshbuf_consume(c->output, len)) != 0)
2242 fatal("%s: channel %d: consume: %s", __func__,
2243 c->self, ssh_err(r));
2244}
2245
2246static void
2247channel_post_mux_client(struct ssh *ssh, Channel *c,
2248 fd_set *readset, fd_set *writeset)
2249{
2250 channel_post_mux_client_read(ssh, c, readset, writeset);
2251 channel_post_mux_client_write(ssh, c, readset, writeset);
2252}
2253
2254static void
2255channel_post_mux_listener(struct ssh *ssh, Channel *c,
2256 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002257{
2258 Channel *nc;
2259 struct sockaddr_storage addr;
2260 socklen_t addrlen;
2261 int newsock;
2262 uid_t euid;
2263 gid_t egid;
2264
2265 if (!FD_ISSET(c->sock, readset))
2266 return;
2267
2268 debug("multiplexing control connection");
2269
2270 /*
2271 * Accept connection on control socket
2272 */
2273 memset(&addr, 0, sizeof(addr));
2274 addrlen = sizeof(addr);
2275 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2276 &addrlen)) == -1) {
2277 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002278 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002279 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002280 return;
2281 }
2282
2283 if (getpeereid(newsock, &euid, &egid) < 0) {
2284 error("%s getpeereid failed: %s", __func__,
2285 strerror(errno));
2286 close(newsock);
2287 return;
2288 }
2289 if ((euid != 0) && (getuid() != euid)) {
2290 error("multiplex uid mismatch: peer euid %u != uid %u",
2291 (u_int)euid, (u_int)getuid());
2292 close(newsock);
2293 return;
2294 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002295 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002296 newsock, newsock, -1, c->local_window_max,
2297 c->local_maxpacket, 0, "mux-control", 1);
2298 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002299 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002300 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002301 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002302 /* mux state transitions must not elicit protocol messages */
2303 nc->flags |= CHAN_LOCAL;
2304}
2305
Ben Lindstrombba81212001-06-25 05:01:22 +00002306static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002307channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002308{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002309 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002310
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002311 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2312 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2313 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002314
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002315 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2316 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2317 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2318 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2319 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2320 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2321 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2322 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2323 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2324 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002325 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002326 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2327 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2328
2329 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2330 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2331 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2332 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2333 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2334 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2335 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2336 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2337 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002338 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002339 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2340 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2341
2342 sc->channel_pre = pre;
2343 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002344}
2345
Damien Miller3ec27592001-10-12 11:35:04 +10002346/* gc dead channels */
2347static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002348channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002349{
2350 if (c == NULL)
2351 return;
2352 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002353 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002354 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002355 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002356 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002357 /* if we still have a callback */
2358 if (c->detach_user != NULL)
2359 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002360 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002361 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002362 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002363 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002364 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002365 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002366}
2367
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002368enum channel_table { CHAN_PRE, CHAN_POST };
2369
Ben Lindstrombba81212001-06-25 05:01:22 +00002370static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002371channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002372 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002373{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002374 struct ssh_channels *sc = ssh->chanctxt;
2375 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002376 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002377 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002378 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002379
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002380 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002381 if (unpause_secs != NULL)
2382 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002383 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2384 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002385 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002386 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002387 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002388 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002389 c->delayed = 0;
2390 else
2391 continue;
2392 }
Damien Millera6508752012-04-22 11:21:10 +10002393 if (ftab[c->type] != NULL) {
2394 /*
2395 * Run handlers that are not paused.
2396 */
2397 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002398 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002399 else if (unpause_secs != NULL) {
2400 /*
2401 * Collect the time that the earliest
2402 * channel comes off pause.
2403 */
2404 debug3("%s: chan %d: skip for %d more seconds",
2405 __func__, c->self,
2406 (int)(c->notbefore - now));
2407 if (*unpause_secs == 0 ||
2408 (c->notbefore - now) < *unpause_secs)
2409 *unpause_secs = c->notbefore - now;
2410 }
2411 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002412 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002413 }
Damien Millera6508752012-04-22 11:21:10 +10002414 if (unpause_secs != NULL && *unpause_secs != 0)
2415 debug3("%s: first channel unpauses in %d seconds",
2416 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002417}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002418
Ben Lindstrome9c99912001-06-09 00:41:05 +00002419/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002420 * Create sockets before allocating the select bitmasks.
2421 * This is necessary for things that need to happen after reading
2422 * the network-input but before channel_prepare_select().
2423 */
2424static void
2425channel_before_prepare_select(struct ssh *ssh)
2426{
2427 struct ssh_channels *sc = ssh->chanctxt;
2428 Channel *c;
2429 u_int i, oalloc;
2430
2431 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2432 c = sc->channels[i];
2433 if (c == NULL)
2434 continue;
2435 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2436 channel_before_prepare_select_rdynamic(ssh, c);
2437 }
2438}
2439
2440/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002441 * Allocate/update select bitmasks and add any bits relevant to channels in
2442 * select bitmasks.
2443 */
Damien Miller4af51302000-04-16 11:18:38 +10002444void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002445channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2446 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002447{
Damien Miller36812092006-03-26 14:22:47 +11002448 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002449
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002450 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2451
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002452 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002453
Damien Miller36812092006-03-26 14:22:47 +11002454 nfdset = howmany(n+1, NFDBITS);
2455 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002456 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002457 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2458 sz = nfdset * sizeof(fd_mask);
2459
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002460 /* perhaps check sz < nalloc/2 and shrink? */
2461 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002462 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2463 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002464 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002465 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002466 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002467 memset(*readsetp, 0, sz);
2468 memset(*writesetp, 0, sz);
2469
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002470 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002471 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002472 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002473}
2474
Ben Lindstrome9c99912001-06-09 00:41:05 +00002475/*
2476 * After select, perform any appropriate operations for channels which have
2477 * events pending.
2478 */
Damien Miller4af51302000-04-16 11:18:38 +10002479void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002480channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002482 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002483}
2484
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002485/*
2486 * Enqueue data for channels with open or draining c->input.
2487 */
2488static void
2489channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2490{
djm@openbsd.org55486f52017-09-23 22:04:07 +00002491 size_t len, plen;
2492 const u_char *pkt;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002493 int r;
2494
2495 if ((len = sshbuf_len(c->input)) == 0) {
2496 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2497 /*
2498 * input-buffer is empty and read-socket shutdown:
2499 * tell peer, that we will not send more data:
2500 * send IEOF.
2501 * hack for extended data: delay EOF if EFD still
2502 * in use.
2503 */
2504 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2505 debug2("channel %d: "
2506 "ibuf_empty delayed efd %d/(%zu)",
2507 c->self, c->efd, sshbuf_len(c->extended));
2508 else
2509 chan_ibuf_empty(ssh, c);
2510 }
2511 return;
2512 }
2513
djm@openbsd.org9f532292017-09-12 06:35:31 +00002514 if (!c->have_remote_id)
2515 fatal(":%s: channel %d: no remote id", __func__, c->self);
2516
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002517 if (c->datagram) {
2518 /* Check datagram will fit; drop if not */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002519 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2520 fatal("%s: channel %d: get datagram: %s", __func__,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002521 c->self, ssh_err(r));
2522 /*
2523 * XXX this does tail-drop on the datagram queue which is
2524 * usually suboptimal compared to head-drop. Better to have
2525 * backpressure at read time? (i.e. read + discard)
2526 */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002527 if (plen > c->remote_window || plen > c->remote_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002528 debug("channel %d: datagram too big", c->self);
2529 return;
2530 }
2531 /* Enqueue it */
2532 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2533 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org55486f52017-09-23 22:04:07 +00002534 (r = sshpkt_put_string(ssh, pkt, plen)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002535 (r = sshpkt_send(ssh)) != 0) {
2536 fatal("%s: channel %i: datagram: %s", __func__,
2537 c->self, ssh_err(r));
2538 }
djm@openbsd.org55486f52017-09-23 22:04:07 +00002539 c->remote_window -= plen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002540 return;
2541 }
2542
2543 /* Enqueue packet for buffered data. */
2544 if (len > c->remote_window)
2545 len = c->remote_window;
2546 if (len > c->remote_maxpacket)
2547 len = c->remote_maxpacket;
2548 if (len == 0)
2549 return;
2550 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2551 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2552 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2553 (r = sshpkt_send(ssh)) != 0) {
2554 fatal("%s: channel %i: data: %s", __func__,
2555 c->self, ssh_err(r));
2556 }
2557 if ((r = sshbuf_consume(c->input, len)) != 0)
2558 fatal("%s: channel %i: consume: %s", __func__,
2559 c->self, ssh_err(r));
2560 c->remote_window -= len;
2561}
2562
2563/*
2564 * Enqueue data for channels with open c->extended in read mode.
2565 */
2566static void
2567channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2568{
2569 size_t len;
2570 int r;
2571
2572 if ((len = sshbuf_len(c->extended)) == 0)
2573 return;
2574
2575 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2576 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2577 if (len > c->remote_window)
2578 len = c->remote_window;
2579 if (len > c->remote_maxpacket)
2580 len = c->remote_maxpacket;
2581 if (len == 0)
2582 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002583 if (!c->have_remote_id)
2584 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002585 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2586 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2587 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2588 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2589 (r = sshpkt_send(ssh)) != 0) {
2590 fatal("%s: channel %i: data: %s", __func__,
2591 c->self, ssh_err(r));
2592 }
2593 if ((r = sshbuf_consume(c->extended, len)) != 0)
2594 fatal("%s: channel %i: consume: %s", __func__,
2595 c->self, ssh_err(r));
2596 c->remote_window -= len;
2597 debug2("channel %d: sent ext data %zu", c->self, len);
2598}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002599
Damien Miller5e953212001-01-30 09:14:00 +11002600/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002601void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002602channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002603{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002604 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002605 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002606 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002607
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002608 for (i = 0; i < sc->channels_alloc; i++) {
2609 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002610 if (c == NULL)
2611 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002612
Ben Lindstrome9c99912001-06-09 00:41:05 +00002613 /*
2614 * We are only interested in channels that can have buffered
2615 * incoming data.
2616 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002617 if (c->type != SSH_CHANNEL_OPEN)
2618 continue;
2619 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002620 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002621 debug3("channel %d: will not send data after close",
2622 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002623 continue;
2624 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002625
Damien Miller95def091999-11-25 00:26:21 +11002626 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002627 if (c->istate == CHAN_INPUT_OPEN ||
2628 c->istate == CHAN_INPUT_WAIT_DRAIN)
2629 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002630 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002631 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002632 c->extended_usage == CHAN_EXTENDED_READ)
2633 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002634 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002635}
2636
markus@openbsd.org8d057842016-09-30 09:19:13 +00002637/* -- mux proxy support */
2638
2639/*
2640 * When multiplexing channel messages for mux clients we have to deal
2641 * with downstream messages from the mux client and upstream messages
2642 * from the ssh server:
2643 * 1) Handling downstream messages is straightforward and happens
2644 * in channel_proxy_downstream():
2645 * - We forward all messages (mostly) unmodified to the server.
2646 * - However, in order to route messages from upstream to the correct
2647 * downstream client, we have to replace the channel IDs used by the
2648 * mux clients with a unique channel ID because the mux clients might
2649 * use conflicting channel IDs.
2650 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2651 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2652 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2653 * with the newly allocated channel ID.
2654 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
djm@openbsd.org001aa552018-04-10 00:10:49 +00002655 * channels and processed by channel_proxy_upstream(). The local channel ID
markus@openbsd.org8d057842016-09-30 09:19:13 +00002656 * is then translated back to the original mux client ID.
2657 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2658 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2659 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2660 * downstream mux client are removed.
2661 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2662 * requires more work, because they are not addressed to a specific
2663 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2664 * out whether the request is addressed to the local client or a
2665 * specific downstream client based on the listen-address/port.
djm@openbsd.org001aa552018-04-10 00:10:49 +00002666 * 6) Agent and X11-Forwarding have a similar problem and are currently
markus@openbsd.org8d057842016-09-30 09:19:13 +00002667 * not supported as the matching session/channel cannot be identified
2668 * easily.
2669 */
2670
2671/*
2672 * receive packets from downstream mux clients:
2673 * channel callback fired on read from mux client, creates
2674 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2675 * on channel creation.
2676 */
2677int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002678channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002679{
2680 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002681 struct sshbuf *original = NULL, *modified = NULL;
2682 const u_char *cp;
2683 char *ctype = NULL, *listen_host = NULL;
2684 u_char type;
2685 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002686 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002687 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002688
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002689 /* sshbuf_dump(downstream->input, stderr); */
2690 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002691 != 0) {
2692 error("%s: malformed message: %s", __func__, ssh_err(r));
2693 return -1;
2694 }
2695 if (have < 2) {
2696 error("%s: short message", __func__);
2697 return -1;
2698 }
2699 type = cp[1];
2700 /* skip padlen + type */
2701 cp += 2;
2702 have -= 2;
2703 if (ssh_packet_log_type(type))
2704 debug3("%s: channel %u: down->up: type %u", __func__,
2705 downstream->self, type);
2706
2707 switch (type) {
2708 case SSH2_MSG_CHANNEL_OPEN:
2709 if ((original = sshbuf_from(cp, have)) == NULL ||
2710 (modified = sshbuf_new()) == NULL) {
2711 error("%s: alloc", __func__);
2712 goto out;
2713 }
2714 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2715 (r = sshbuf_get_u32(original, &id)) != 0) {
2716 error("%s: parse error %s", __func__, ssh_err(r));
2717 goto out;
2718 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002719 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002720 -1, -1, -1, 0, 0, 0, ctype, 1);
2721 c->mux_ctx = downstream; /* point to mux client */
2722 c->mux_downstream_id = id; /* original downstream id */
2723 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2724 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2725 (r = sshbuf_putb(modified, original)) != 0) {
2726 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002727 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002728 goto out;
2729 }
2730 break;
2731 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2732 /*
2733 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2734 * need to parse 'remote_id' instead of 'ctype'.
2735 */
2736 if ((original = sshbuf_from(cp, have)) == NULL ||
2737 (modified = sshbuf_new()) == NULL) {
2738 error("%s: alloc", __func__);
2739 goto out;
2740 }
2741 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2742 (r = sshbuf_get_u32(original, &id)) != 0) {
2743 error("%s: parse error %s", __func__, ssh_err(r));
2744 goto out;
2745 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002746 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002747 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2748 c->mux_ctx = downstream; /* point to mux client */
2749 c->mux_downstream_id = id;
2750 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002751 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002752 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2753 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2754 (r = sshbuf_putb(modified, original)) != 0) {
2755 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002756 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002757 goto out;
2758 }
2759 break;
2760 case SSH2_MSG_GLOBAL_REQUEST:
2761 if ((original = sshbuf_from(cp, have)) == NULL) {
2762 error("%s: alloc", __func__);
2763 goto out;
2764 }
2765 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2766 error("%s: parse error %s", __func__, ssh_err(r));
2767 goto out;
2768 }
2769 if (strcmp(ctype, "tcpip-forward") != 0) {
2770 error("%s: unsupported request %s", __func__, ctype);
2771 goto out;
2772 }
2773 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2774 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2775 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2776 error("%s: parse error %s", __func__, ssh_err(r));
2777 goto out;
2778 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002779 if (listen_port > 65535) {
2780 error("%s: tcpip-forward for %s: bad port %u",
2781 __func__, listen_host, listen_port);
2782 goto out;
2783 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002784 /* Record that connection to this host/port is permitted. */
djm@openbsd.org115063a2018-06-06 18:22:41 +00002785 permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002786 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002787 listen_host = NULL;
2788 break;
2789 case SSH2_MSG_CHANNEL_CLOSE:
2790 if (have < 4)
2791 break;
2792 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002793 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002794 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002795 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002796 else
2797 c->flags |= CHAN_CLOSE_SENT;
2798 }
2799 break;
2800 }
2801 if (modified) {
2802 if ((r = sshpkt_start(ssh, type)) != 0 ||
2803 (r = sshpkt_putb(ssh, modified)) != 0 ||
2804 (r = sshpkt_send(ssh)) != 0) {
2805 error("%s: send %s", __func__, ssh_err(r));
2806 goto out;
2807 }
2808 } else {
2809 if ((r = sshpkt_start(ssh, type)) != 0 ||
2810 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2811 (r = sshpkt_send(ssh)) != 0) {
2812 error("%s: send %s", __func__, ssh_err(r));
2813 goto out;
2814 }
2815 }
2816 ret = 0;
2817 out:
2818 free(ctype);
2819 free(listen_host);
2820 sshbuf_free(original);
2821 sshbuf_free(modified);
2822 return ret;
2823}
2824
2825/*
2826 * receive packets from upstream server and de-multiplex packets
2827 * to correct downstream:
2828 * implemented as a helper for channel input handlers,
2829 * replaces local (proxy) channel ID with downstream channel ID.
2830 */
2831int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002832channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002833{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002834 struct sshbuf *b = NULL;
2835 Channel *downstream;
2836 const u_char *cp = NULL;
2837 size_t len;
2838 int r;
2839
2840 /*
2841 * When receiving packets from the peer we need to check whether we
2842 * need to forward the packets to the mux client. In this case we
djm@openbsd.org001aa552018-04-10 00:10:49 +00002843 * restore the original channel id and keep track of CLOSE messages,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002844 * so we can cleanup the channel.
2845 */
2846 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2847 return 0;
2848 if ((downstream = c->mux_ctx) == NULL)
2849 return 0;
2850 switch (type) {
2851 case SSH2_MSG_CHANNEL_CLOSE:
2852 case SSH2_MSG_CHANNEL_DATA:
2853 case SSH2_MSG_CHANNEL_EOF:
2854 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2855 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2856 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2857 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2858 case SSH2_MSG_CHANNEL_SUCCESS:
2859 case SSH2_MSG_CHANNEL_FAILURE:
2860 case SSH2_MSG_CHANNEL_REQUEST:
2861 break;
2862 default:
2863 debug2("%s: channel %u: unsupported type %u", __func__,
2864 c->self, type);
2865 return 0;
2866 }
2867 if ((b = sshbuf_new()) == NULL) {
2868 error("%s: alloc reply", __func__);
2869 goto out;
2870 }
2871 /* get remaining payload (after id) */
2872 cp = sshpkt_ptr(ssh, &len);
2873 if (cp == NULL) {
2874 error("%s: no packet", __func__);
2875 goto out;
2876 }
2877 /* translate id and send to muxclient */
2878 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2879 (r = sshbuf_put_u8(b, type)) != 0 ||
2880 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2881 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002882 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002883 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2884 goto out;
2885 }
2886 /* sshbuf_dump(b, stderr); */
2887 if (ssh_packet_log_type(type))
2888 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2889 type);
2890 out:
2891 /* update state */
2892 switch (type) {
2893 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2894 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002895 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002896 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002897 c->have_remote_id = 1;
2898 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002899 break;
2900 case SSH2_MSG_CHANNEL_CLOSE:
2901 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002902 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002903 else
2904 c->flags |= CHAN_CLOSE_RCVD;
2905 break;
2906 }
2907 sshbuf_free(b);
2908 return 1;
2909}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002910
2911/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002912
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002913/* Parse a channel ID from the current packet */
2914static int
2915channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2916{
2917 u_int32_t id;
2918 int r;
2919
2920 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2921 error("%s: parse id: %s", where, ssh_err(r));
2922 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2923 }
2924 if (id > INT_MAX) {
2925 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2926 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2927 }
2928 return (int)id;
2929}
2930
2931/* Lookup a channel from an ID in the current packet */
2932static Channel *
2933channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2934{
2935 int id = channel_parse_id(ssh, where, what);
2936 Channel *c;
2937
2938 if ((c = channel_lookup(ssh, id)) == NULL) {
2939 ssh_packet_disconnect(ssh,
2940 "%s packet referred to nonexistent channel %d", what, id);
2941 }
2942 return c;
2943}
2944
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002945int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002946channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002947{
Damien Miller633de332014-05-15 13:48:26 +10002948 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002949 size_t data_len, win_len;
2950 Channel *c = channel_from_packet_id(ssh, __func__, "data");
2951 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002952
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002953 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002954 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002955
Damien Miller95def091999-11-25 00:26:21 +11002956 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002957 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002958 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
2959 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10002960 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002961 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002962
Damien Miller95def091999-11-25 00:26:21 +11002963 /* Get the data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002964 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0)
2965 fatal("%s: channel %d: get data: %s", __func__,
2966 c->self, ssh_err(r));
2967 ssh_packet_check_eom(ssh);
2968
Damien Miller7d457182010-08-05 23:09:48 +10002969 win_len = data_len;
2970 if (c->datagram)
2971 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002972
Damien Millera04ad492004-01-21 11:02:09 +11002973 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002974 * The sending side reduces its window as it sends data, so we
2975 * must 'fake' consumption of the data in order to ensure that window
2976 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11002977 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002978 if (c->ostate != CHAN_OUTPUT_OPEN) {
2979 c->local_window -= win_len;
2980 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002981 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002982 }
2983
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002984 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002985 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002986 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002987 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002988 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002989 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002990 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002991 c->self, win_len, c->local_window);
2992 return 0;
2993 }
2994 c->local_window -= win_len;
2995
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002996 if (c->datagram) {
2997 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
2998 fatal("%s: channel %d: append datagram: %s",
2999 __func__, c->self, ssh_err(r));
3000 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
3001 fatal("%s: channel %d: append data: %s",
3002 __func__, c->self, ssh_err(r));
3003
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003004 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003005}
Ben Lindstrome9c99912001-06-09 00:41:05 +00003006
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003007int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003008channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003009{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003010 const u_char *data;
3011 size_t data_len;
3012 u_int32_t tcode;
3013 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
3014 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003015
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003016 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003017 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003018 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003019 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003020 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003021 }
Ben Lindstromcf159442002-03-26 03:26:24 +00003022 if (c->flags & CHAN_EOF_RCVD) {
3023 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003024 debug("channel %d: accepting ext data after eof",
3025 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003026 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003027 ssh_packet_disconnect(ssh, "Received extended_data "
3028 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003029 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003030
3031 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
3032 error("%s: parse tcode: %s", __func__, ssh_err(r));
3033 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3034 }
Damien Miller33b13562000-04-04 14:38:59 +10003035 if (c->efd == -1 ||
3036 c->extended_usage != CHAN_EXTENDED_WRITE ||
3037 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10003038 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003039 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003040 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003041 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0) {
3042 error("%s: parse data: %s", __func__, ssh_err(r));
3043 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3044 }
3045 ssh_packet_check_eom(ssh);
3046
Damien Miller33b13562000-04-04 14:38:59 +10003047 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003048 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10003049 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003050 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003051 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003052 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3053 /* XXX sshpkt_getb? */
3054 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3055 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003056 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003057 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003058}
3059
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003060int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003061channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003062{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003063 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
Damien Millerb38eff82000-04-01 11:09:21 +10003064
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003065 ssh_packet_check_eom(ssh);
3066
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003067 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003068 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003069 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003070
3071 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003072 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003073 debug("channel %d: FORCE input drain", c->self);
3074 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003075 if (sshbuf_len(c->input) == 0)
3076 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003077 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003078 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003079}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003080
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003081int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003082channel_input_oclose(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003083{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003084 Channel *c = channel_from_packet_id(ssh, __func__, "oclose");
Damien Miller66823cd2002-01-22 23:11:38 +11003085
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003086 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003087 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003088 ssh_packet_check_eom(ssh);
3089 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003090 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003091}
3092
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003093int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003094channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003095{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003096 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3097 u_int32_t remote_window, remote_maxpacket;
3098 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003099
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003100 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003101 return 0;
3102 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003103 packet_disconnect("Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003104 "non-opening channel %d.", c->self);
3105 /*
3106 * Record the remote channel number and mark that the channel
3107 * is now open.
3108 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003109 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3110 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003111 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0) {
3112 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
3113 packet_disconnect("Invalid open confirmation message");
3114 }
3115 ssh_packet_check_eom(ssh);
Damien Miller33b13562000-04-04 14:38:59 +10003116
djm@openbsd.org9f532292017-09-12 06:35:31 +00003117 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003118 c->remote_window = remote_window;
3119 c->remote_maxpacket = remote_maxpacket;
3120 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003121 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003122 debug2("%s: channel %d: callback start", __func__, c->self);
3123 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3124 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003125 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003126 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3127 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003128 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003129}
3130
Ben Lindstrombba81212001-06-25 05:01:22 +00003131static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003132reason2txt(int reason)
3133{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003134 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003135 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3136 return "administratively prohibited";
3137 case SSH2_OPEN_CONNECT_FAILED:
3138 return "connect failed";
3139 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3140 return "unknown channel type";
3141 case SSH2_OPEN_RESOURCE_SHORTAGE:
3142 return "resource shortage";
3143 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003144 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003145}
3146
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003147int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003148channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003150 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3151 u_int32_t reason;
3152 char *msg = NULL;
3153 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003154
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003155 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003156 return 0;
3157 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003158 packet_disconnect("Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003159 "non-opening channel %d.", c->self);
3160 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3161 error("%s: reason: %s", __func__, ssh_err(r));
3162 packet_disconnect("Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003163 }
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003164 /* skip language */
3165 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
3166 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) != 0) {
3167 error("%s: message/lang: %s", __func__, ssh_err(r));
3168 packet_disconnect("Invalid open failure message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003169 }
3170 ssh_packet_check_eom(ssh);
3171 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003172 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3173 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003174 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003175 debug2("%s: channel %d: callback start", __func__, c->self);
3176 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3177 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003178 }
Damien Miller7a606212009-01-28 16:22:34 +11003179 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003180 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003181 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003182}
3183
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003184int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003185channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003186{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003187 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003188 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003189 u_int32_t adjust;
3190 u_int new_rwin;
3191 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003192
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003193 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003194 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003195 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003196 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003197
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003198 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003199 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003200 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0) {
3201 error("%s: adjust: %s", __func__, ssh_err(r));
3202 packet_disconnect("Invalid window adjust message");
3203 }
3204 ssh_packet_check_eom(ssh);
3205 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3206 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003207 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003208 c->self, adjust, c->remote_window);
3209 }
3210 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003211 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003212}
3213
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003214int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003215channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003216{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003217 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003218 Channel *c;
3219 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003220
3221 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10003222 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10003223
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003224 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003225
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003226 if ((c = channel_lookup(ssh, id)) == NULL) {
3227 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003228 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003229 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003230 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003231 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003232 ssh_packet_check_eom(ssh);
Damien Millerb84886b2008-05-19 15:05:07 +10003233 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003234 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003235 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003236 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11003237 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10003238 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003239 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003240}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003241
Ben Lindstrome9c99912001-06-09 00:41:05 +00003242/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003243
Ben Lindstrom908afed2001-10-03 17:34:59 +00003244void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003245channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003246{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003247 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003248}
3249
Damien Millerf6dff7c2011-09-22 21:38:52 +10003250
3251/*
3252 * Determine whether or not a port forward listens to loopback, the
3253 * specified address or wildcard. On the client, a specified bind
3254 * address will always override gateway_ports. On the server, a
3255 * gateway_ports of 1 (``yes'') will override the client's specification
3256 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3257 * will bind to whatever address the client asked for.
3258 *
3259 * Special-case listen_addrs are:
3260 *
3261 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3262 * "" (empty string), "*" -> wildcard v4/v6
3263 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003264 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003265 */
3266static const char *
3267channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003268 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003269{
3270 const char *addr = NULL;
3271 int wildcard = 0;
3272
3273 if (listen_addr == NULL) {
3274 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003275 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003276 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003277 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003278 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3279 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3280 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003281 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003282 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003283 /*
3284 * Notify client if they requested a specific listen
3285 * address and it was overridden.
3286 */
3287 if (*listen_addr != '\0' &&
3288 strcmp(listen_addr, "0.0.0.0") != 0 &&
3289 strcmp(listen_addr, "*") != 0) {
3290 packet_send_debug("Forwarding listen address "
3291 "\"%s\" overridden by server "
3292 "GatewayPorts", listen_addr);
3293 }
Damien Miller602943d2014-07-04 08:59:41 +10003294 } else if (strcmp(listen_addr, "localhost") != 0 ||
3295 strcmp(listen_addr, "127.0.0.1") == 0 ||
3296 strcmp(listen_addr, "::1") == 0) {
3297 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10003298 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003299 }
3300 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3301 strcmp(listen_addr, "::1") == 0) {
3302 /*
3303 * If a specific IPv4/IPv6 localhost address has been
3304 * requested then accept it even if gateway_ports is in
3305 * effect. This allows the client to prefer IPv4 or IPv6.
3306 */
3307 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003308 }
3309 if (wildcardp != NULL)
3310 *wildcardp = wildcard;
3311 return addr;
3312}
3313
Damien Millerb16461c2002-01-22 23:29:22 +11003314static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003315channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3316 struct Forward *fwd, int *allocated_listen_port,
3317 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003318{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003319 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003320 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003321 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003322 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003323 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003324 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003325
Damien Millerf91ee4c2005-03-01 21:24:33 +11003326 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003327
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003328 if (is_client && fwd->connect_path != NULL) {
3329 host = fwd->connect_path;
3330 } else {
3331 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3332 fwd->listen_host : fwd->connect_host;
3333 if (host == NULL) {
3334 error("No forward host name.");
3335 return 0;
3336 }
3337 if (strlen(host) >= NI_MAXHOST) {
3338 error("Forward host name too long.");
3339 return 0;
3340 }
Kevin Steves12057502001-02-05 14:54:34 +00003341 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003342
Damien Millerf6dff7c2011-09-22 21:38:52 +10003343 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10003344 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3345 is_client, fwd_opts);
3346 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003347 type, wildcard, (addr == NULL) ? "NULL" : addr);
3348
3349 /*
Damien Miller34132e52000-01-14 15:45:46 +11003350 * getaddrinfo returns a loopback address if the hostname is
3351 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003352 */
Damien Miller34132e52000-01-14 15:45:46 +11003353 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003354 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003355 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003356 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003357 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003358 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3359 if (addr == NULL) {
3360 /* This really shouldn't happen */
3361 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003362 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003363 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003364 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003365 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003366 }
Damien Millera7270302005-07-06 09:36:05 +10003367 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003368 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003369 if (allocated_listen_port != NULL)
3370 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003371 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003372 switch (ai->ai_family) {
3373 case AF_INET:
3374 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3375 sin_port;
3376 break;
3377 case AF_INET6:
3378 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3379 sin6_port;
3380 break;
3381 default:
Damien Miller34132e52000-01-14 15:45:46 +11003382 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003383 }
3384 /*
3385 * If allocating a port for -R forwards, then use the
3386 * same port for all address families.
3387 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003388 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3389 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3390 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003391 *lport_p = htons(*allocated_listen_port);
3392
Damien Miller34132e52000-01-14 15:45:46 +11003393 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003394 strport, sizeof(strport),
3395 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003396 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003397 continue;
3398 }
3399 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003400 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003401 if (sock < 0) {
3402 /* this is no error since kernel may not support ipv6 */
djm@openbsd.org927f8512017-12-05 01:30:19 +00003403 verbose("socket [%s]:%s: %.100s", ntop, strport,
3404 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003405 continue;
3406 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003407
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00003408 set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003409 if (ai->ai_family == AF_INET6)
3410 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003411
Damien Miller4bf648f2009-02-14 16:28:21 +11003412 debug("Local forwarding listening on %s port %s.",
3413 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003414
Damien Miller34132e52000-01-14 15:45:46 +11003415 /* Bind the socket to the address. */
3416 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003417 /*
3418 * address can be in if use ipv6 address is
3419 * already bound
3420 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003421 if (!ai->ai_next)
djm@openbsd.org927f8512017-12-05 01:30:19 +00003422 error("bind [%s]:%s: %.100s",
3423 ntop, strport, strerror(errno));
Damien Miller3c7eeb22000-03-03 22:35:33 +11003424 else
djm@openbsd.org927f8512017-12-05 01:30:19 +00003425 verbose("bind [%s]:%s: %.100s",
3426 ntop, strport, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003427
Damien Miller34132e52000-01-14 15:45:46 +11003428 close(sock);
3429 continue;
3430 }
3431 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11003432 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003433 error("listen: %.100s", strerror(errno));
djm@openbsd.org927f8512017-12-05 01:30:19 +00003434 error("listen [%s]:%s: %.100s", ntop, strport,
3435 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003436 close(sock);
3437 continue;
3438 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003439
3440 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003441 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003442 * record what we got.
3443 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003444 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3445 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003446 allocated_listen_port != NULL &&
3447 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003448 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003449 debug("Allocated listen port %d",
3450 *allocated_listen_port);
3451 }
3452
Damien Miller34132e52000-01-14 15:45:46 +11003453 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003454 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003455 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003456 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003457 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003458 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003459 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003460 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003461 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3462 c->listening_port = *allocated_listen_port;
3463 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003464 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003465 success = 1;
3466 }
3467 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003468 error("%s: cannot listen to port: %d", __func__,
3469 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003470 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003471 return success;
Damien Miller95def091999-11-25 00:26:21 +11003472}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003473
Damien Miller7acefbb2014-07-18 14:11:24 +10003474static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003475channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3476 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003477{
3478 struct sockaddr_un sunaddr;
3479 const char *path;
3480 Channel *c;
3481 int port, sock;
3482 mode_t omask;
3483
3484 switch (type) {
3485 case SSH_CHANNEL_UNIX_LISTENER:
3486 if (fwd->connect_path != NULL) {
3487 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3488 error("Local connecting path too long: %s",
3489 fwd->connect_path);
3490 return 0;
3491 }
3492 path = fwd->connect_path;
3493 port = PORT_STREAMLOCAL;
3494 } else {
3495 if (fwd->connect_host == NULL) {
3496 error("No forward host name.");
3497 return 0;
3498 }
3499 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3500 error("Forward host name too long.");
3501 return 0;
3502 }
3503 path = fwd->connect_host;
3504 port = fwd->connect_port;
3505 }
3506 break;
3507 case SSH_CHANNEL_RUNIX_LISTENER:
3508 path = fwd->listen_path;
3509 port = PORT_STREAMLOCAL;
3510 break;
3511 default:
3512 error("%s: unexpected channel type %d", __func__, type);
3513 return 0;
3514 }
3515
3516 if (fwd->listen_path == NULL) {
3517 error("No forward path name.");
3518 return 0;
3519 }
3520 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3521 error("Local listening path too long: %s", fwd->listen_path);
3522 return 0;
3523 }
3524
3525 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3526
3527 /* Start a Unix domain listener. */
3528 omask = umask(fwd_opts->streamlocal_bind_mask);
3529 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3530 fwd_opts->streamlocal_bind_unlink);
3531 umask(omask);
3532 if (sock < 0)
3533 return 0;
3534
3535 debug("Local forwarding listening on path %s.", fwd->listen_path);
3536
3537 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003538 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003539 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3540 0, "unix listener", 1);
3541 c->path = xstrdup(path);
3542 c->host_port = port;
3543 c->listening_port = PORT_STREAMLOCAL;
3544 c->listening_addr = xstrdup(fwd->listen_path);
3545 return 1;
3546}
3547
3548static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003549channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3550 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003551{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003552 u_int i;
3553 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003554
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003555 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3556 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003557 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3558 continue;
3559 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3560 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003561 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003562 found = 1;
3563 }
3564 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003565
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003566 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003567}
3568
Damien Miller7acefbb2014-07-18 14:11:24 +10003569static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003570channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003571{
3572 u_int i;
3573 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003574
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003575 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3576 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003577 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3578 continue;
3579 if (c->path == NULL)
3580 continue;
3581 if (strcmp(c->path, path) == 0) {
3582 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003583 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003584 found = 1;
3585 }
3586 }
3587
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003588 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003589}
3590
3591int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003592channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003593{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003594 if (fwd->listen_path != NULL) {
3595 return channel_cancel_rport_listener_streamlocal(ssh,
3596 fwd->listen_path);
3597 } else {
3598 return channel_cancel_rport_listener_tcpip(ssh,
3599 fwd->listen_host, fwd->listen_port);
3600 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003601}
3602
3603static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003604channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3605 const char *lhost, u_short lport, int cport,
3606 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003607{
3608 u_int i;
3609 int found = 0;
3610 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003611
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003612 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3613 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003614 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3615 continue;
Damien Millerff773642011-09-22 21:39:48 +10003616 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003617 continue;
Damien Millerff773642011-09-22 21:39:48 +10003618 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3619 /* skip dynamic forwardings */
3620 if (c->host_port == 0)
3621 continue;
3622 } else {
3623 if (c->host_port != cport)
3624 continue;
3625 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003626 if ((c->listening_addr == NULL && addr != NULL) ||
3627 (c->listening_addr != NULL && addr == NULL))
3628 continue;
3629 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003630 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003631 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003632 found = 1;
3633 }
3634 }
3635
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003636 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003637}
3638
Damien Miller7acefbb2014-07-18 14:11:24 +10003639static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003640channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003641{
3642 u_int i;
3643 int found = 0;
3644
3645 if (path == NULL) {
3646 error("%s: no path specified.", __func__);
3647 return 0;
3648 }
3649
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003650 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3651 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003652 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3653 continue;
3654 if (c->listening_addr == NULL)
3655 continue;
3656 if (strcmp(c->listening_addr, path) == 0) {
3657 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003658 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003659 found = 1;
3660 }
3661 }
3662
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003663 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003664}
3665
3666int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003667channel_cancel_lport_listener(struct ssh *ssh,
3668 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003669{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003670 if (fwd->listen_path != NULL) {
3671 return channel_cancel_lport_listener_streamlocal(ssh,
3672 fwd->listen_path);
3673 } else {
3674 return channel_cancel_lport_listener_tcpip(ssh,
3675 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3676 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003677}
3678
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003679/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003680int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003681channel_setup_local_fwd_listener(struct ssh *ssh,
3682 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003683{
Damien Miller7acefbb2014-07-18 14:11:24 +10003684 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003685 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003686 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3687 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003688 return channel_setup_fwd_listener_tcpip(ssh,
3689 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003690 }
Damien Millerb16461c2002-01-22 23:29:22 +11003691}
3692
djm@openbsd.org115063a2018-06-06 18:22:41 +00003693/* Matches a remote forwarding permission against a requested forwarding */
3694static int
3695remote_open_match(struct permission *allowed_open, struct Forward *fwd)
3696{
3697 int ret;
3698 char *lhost;
3699
3700 /* XXX add ACLs for streamlocal */
3701 if (fwd->listen_path != NULL)
3702 return 1;
3703
3704 if (fwd->listen_host == NULL || allowed_open->listen_host == NULL)
3705 return 0;
3706
3707 if (allowed_open->listen_port != FWD_PERMIT_ANY_PORT &&
3708 allowed_open->listen_port != fwd->listen_port)
3709 return 0;
3710
3711 /* Match hostnames case-insensitively */
3712 lhost = xstrdup(fwd->listen_host);
3713 lowercase(lhost);
3714 ret = match_pattern(lhost, allowed_open->listen_host);
3715 free(lhost);
3716
3717 return ret;
3718}
3719
3720/* Checks whether a requested remote forwarding is permitted */
3721static int
3722check_rfwd_permission(struct ssh *ssh, struct Forward *fwd)
3723{
3724 struct ssh_channels *sc = ssh->chanctxt;
3725 struct permission_set *pset = &sc->remote_perms;
3726 u_int i, permit, permit_adm = 1;
3727 struct permission *perm;
3728
3729 /* XXX apply GatewayPorts override before checking? */
3730
3731 permit = pset->all_permitted;
3732 if (!permit) {
3733 for (i = 0; i < pset->num_permitted_user; i++) {
3734 perm = &pset->permitted_user[i];
3735 if (remote_open_match(perm, fwd)) {
3736 permit = 1;
3737 break;
3738 }
3739 }
3740 }
3741
3742 if (pset->num_permitted_admin > 0) {
3743 permit_adm = 0;
3744 for (i = 0; i < pset->num_permitted_admin; i++) {
3745 perm = &pset->permitted_admin[i];
3746 if (remote_open_match(perm, fwd)) {
3747 permit_adm = 1;
3748 break;
3749 }
3750 }
3751 }
3752
3753 return permit && permit_adm;
3754}
3755
Damien Millerb16461c2002-01-22 23:29:22 +11003756/* protocol v2 remote port fwd, used by sshd */
3757int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003758channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003759 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003760{
djm@openbsd.org115063a2018-06-06 18:22:41 +00003761 if (!check_rfwd_permission(ssh, fwd)) {
3762 packet_send_debug("port forwarding refused");
3763 return 0;
3764 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003765 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003766 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003767 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3768 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003769 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003770 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3771 fwd_opts);
3772 }
Damien Millerb16461c2002-01-22 23:29:22 +11003773}
3774
Damien Miller5428f641999-11-25 11:54:57 +11003775/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003776 * Translate the requested rfwd listen host to something usable for
3777 * this server.
3778 */
3779static const char *
3780channel_rfwd_bind_host(const char *listen_host)
3781{
3782 if (listen_host == NULL) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003783 return "localhost";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003784 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003785 return "";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003786 } else
3787 return listen_host;
3788}
3789
3790/*
Damien Miller5428f641999-11-25 11:54:57 +11003791 * Initiate forwarding of connections to port "port" on remote host through
3792 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003793 * Returns handle (index) for updating the dynamic listen port with
djm@openbsd.org115063a2018-06-06 18:22:41 +00003794 * channel_update_permission().
Damien Miller5428f641999-11-25 11:54:57 +11003795 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003796int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003797channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003798{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003799 int r, success = 0, idx = -1;
3800 char *host_to_connect, *listen_host, *listen_path;
3801 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003802
Damien Miller95def091999-11-25 00:26:21 +11003803 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003804 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003805 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3806 (r = sshpkt_put_cstring(ssh,
3807 "streamlocal-forward@openssh.com")) != 0 ||
3808 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3809 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3810 (r = sshpkt_send(ssh)) != 0 ||
3811 (r = ssh_packet_write_wait(ssh)) != 0)
3812 fatal("%s: request streamlocal: %s",
3813 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003814 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003815 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3816 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3817 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3818 (r = sshpkt_put_cstring(ssh,
3819 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3820 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3821 (r = sshpkt_send(ssh)) != 0 ||
3822 (r = ssh_packet_write_wait(ssh)) != 0)
3823 fatal("%s: request tcpip-forward: %s",
3824 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003825 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003826 /* Assume that server accepts the request */
3827 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003828 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003829 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003830 host_to_connect = listen_host = listen_path = NULL;
3831 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003832 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003833 host_to_connect = xstrdup(fwd->connect_path);
3834 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003835 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003836 host_to_connect = xstrdup(fwd->connect_host);
3837 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003838 }
3839 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003840 listen_path = xstrdup(fwd->listen_path);
3841 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003842 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003843 if (fwd->listen_host != NULL)
3844 listen_host = xstrdup(fwd->listen_host);
3845 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003846 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003847 idx = permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003848 host_to_connect, port_to_connect,
3849 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003850 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003851 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003852}
3853
Damien Miller4b3ed642014-07-02 15:29:40 +10003854static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003855open_match(struct permission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003856 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003857{
3858 if (allowed_open->host_to_connect == NULL)
3859 return 0;
3860 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3861 allowed_open->port_to_connect != requestedport)
3862 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003863 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3864 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003865 return 0;
3866 return 1;
3867}
3868
3869/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003870 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003871 * we don't support FWD_PERMIT_ANY_PORT and
3872 * need to translate between the configured-host (listen_host)
3873 * and what we've sent to the remote server (channel_rfwd_bind_host)
3874 */
3875static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003876open_listen_match_tcpip(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003877 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003878{
3879 const char *allowed_host;
3880
3881 if (allowed_open->host_to_connect == NULL)
3882 return 0;
3883 if (allowed_open->listen_port != requestedport)
3884 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003885 if (!translate && allowed_open->listen_host == NULL &&
3886 requestedhost == NULL)
3887 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003888 allowed_host = translate ?
3889 channel_rfwd_bind_host(allowed_open->listen_host) :
3890 allowed_open->listen_host;
djm@openbsd.org90e51d62018-06-25 22:28:33 +00003891 if (allowed_host == NULL || requestedhost == NULL ||
Damien Miller4b3ed642014-07-02 15:29:40 +10003892 strcmp(allowed_host, requestedhost) != 0)
3893 return 0;
3894 return 1;
3895}
3896
Damien Miller7acefbb2014-07-18 14:11:24 +10003897static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003898open_listen_match_streamlocal(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003899 const char *requestedpath)
3900{
3901 if (allowed_open->host_to_connect == NULL)
3902 return 0;
3903 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3904 return 0;
3905 if (allowed_open->listen_path == NULL ||
3906 strcmp(allowed_open->listen_path, requestedpath) != 0)
3907 return 0;
3908 return 1;
3909}
3910
Damien Miller5428f641999-11-25 11:54:57 +11003911/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003912 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003913 * local side.
3914 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003915static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003916channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3917 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003918{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003919 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003920 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003921 int r;
3922 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003923 struct permission *perm;
Darren Tuckere7066df2004-05-24 10:18:05 +10003924
djm@openbsd.org115063a2018-06-06 18:22:41 +00003925 for (i = 0; i < pset->num_permitted_user; i++) {
3926 perm = &pset->permitted_user[i];
3927 if (open_listen_match_tcpip(perm, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003928 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003929 perm = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10003930 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003931 if (perm == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003932 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003933 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003934 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003935 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3936 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
3937 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3938 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
3939 (r = sshpkt_put_u32(ssh, port)) != 0 ||
3940 (r = sshpkt_send(ssh)) != 0)
3941 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10003942
djm@openbsd.org115063a2018-06-06 18:22:41 +00003943 fwd_perm_clear(perm); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003944
3945 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003946}
3947
3948/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003949 * Request cancellation of remote forwarding of Unix domain socket
3950 * path from local side.
3951 */
3952static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003953channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003954{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003955 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003956 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003957 int r;
3958 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003959 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10003960
djm@openbsd.org115063a2018-06-06 18:22:41 +00003961 for (i = 0; i < pset->num_permitted_user; i++) {
3962 perm = &pset->permitted_user[i];
3963 if (open_listen_match_streamlocal(perm, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10003964 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003965 perm = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003966 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003967 if (perm == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003968 debug("%s: requested forward not found", __func__);
3969 return -1;
3970 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003971 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3972 (r = sshpkt_put_cstring(ssh,
3973 "cancel-streamlocal-forward@openssh.com")) != 0 ||
3974 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3975 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
3976 (r = sshpkt_send(ssh)) != 0)
3977 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003978
djm@openbsd.org115063a2018-06-06 18:22:41 +00003979 fwd_perm_clear(perm); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10003980
3981 return 0;
3982}
3983
3984/*
3985 * Request cancellation of remote forwarding of a connection from local side.
3986 */
3987int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003988channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003989{
3990 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003991 return channel_request_rforward_cancel_streamlocal(ssh,
3992 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10003993 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003994 return channel_request_rforward_cancel_tcpip(ssh,
3995 fwd->listen_host,
3996 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10003997 }
3998}
3999
4000/*
djm@openbsd.org115063a2018-06-06 18:22:41 +00004001 * Permits opening to any host/port if permitted_user[] is empty. This is
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004002 * usually called by the server, because the user could connect to any port
4003 * anyway, and the server has no way to know but to trust the client anyway.
4004 */
4005void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004006channel_permit_all(struct ssh *ssh, int where)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004007{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004008 struct permission_set *pset = permission_set_get(ssh, where);
4009
4010 if (pset->num_permitted_user == 0)
4011 pset->all_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004012}
4013
djm@openbsd.org115063a2018-06-06 18:22:41 +00004014/*
4015 * Permit the specified host/port for forwarding.
4016 */
Ben Lindstroma3700052001-04-05 23:26:32 +00004017void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004018channel_add_permission(struct ssh *ssh, int who, int where,
4019 char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004020{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004021 int local = where == FORWARD_LOCAL;
4022 struct permission_set *pset = permission_set_get(ssh, where);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004023
djm@openbsd.org115063a2018-06-06 18:22:41 +00004024 debug("allow %s forwarding to host %s port %d",
4025 fwd_ident(who, where), host, port);
4026 /*
4027 * Remote forwards set listen_host/port, local forwards set
4028 * host/port_to_connect.
4029 */
4030 permission_set_add(ssh, who, where,
4031 local ? host : 0, local ? port : 0,
4032 local ? NULL : host, NULL, local ? 0 : port, NULL);
4033 pset->all_permitted = 0;
4034}
4035
4036/*
4037 * Administratively disable forwarding.
4038 */
4039void
4040channel_disable_admin(struct ssh *ssh, int where)
4041{
4042 channel_clear_permission(ssh, FORWARD_ADM, where);
4043 permission_set_add(ssh, FORWARD_ADM, where,
4044 NULL, 0, NULL, NULL, 0, NULL);
4045}
4046
4047/*
4048 * Clear a list of permitted opens.
4049 */
4050void
4051channel_clear_permission(struct ssh *ssh, int who, int where)
4052{
4053 struct permission **permp;
4054 u_int *npermp;
4055
4056 permission_set_get_array(ssh, who, where, &permp, &npermp);
4057 *permp = xrecallocarray(*permp, *npermp, 0, sizeof(**permp));
4058 *npermp = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004059}
4060
Darren Tucker68afb8c2011-10-02 18:59:03 +11004061/*
4062 * Update the listen port for a dynamic remote forward, after
4063 * the actual 'newport' has been allocated. If 'newport' < 0 is
4064 * passed then they entry will be invalidated.
4065 */
4066void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004067channel_update_permission(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11004068{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004069 struct permission_set *pset = &ssh->chanctxt->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004070
djm@openbsd.org115063a2018-06-06 18:22:41 +00004071 if (idx < 0 || (u_int)idx >= pset->num_permitted_user) {
4072 debug("%s: index out of range: %d num_permitted_user %d",
4073 __func__, idx, pset->num_permitted_user);
Darren Tucker68afb8c2011-10-02 18:59:03 +11004074 return;
4075 }
4076 debug("%s allowed port %d for forwarding to host %s port %d",
4077 newport > 0 ? "Updating" : "Removing",
4078 newport,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004079 pset->permitted_user[idx].host_to_connect,
4080 pset->permitted_user[idx].port_to_connect);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004081 if (newport <= 0)
djm@openbsd.org115063a2018-06-06 18:22:41 +00004082 fwd_perm_clear(&pset->permitted_user[idx]);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004083 else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004084 pset->permitted_user[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11004085 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11004086 }
4087}
4088
Darren Tucker1338b9e2011-10-02 18:57:35 +11004089/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
4090int
4091permitopen_port(const char *p)
4092{
4093 int port;
4094
4095 if (strcmp(p, "*") == 0)
4096 return FWD_PERMIT_ANY_PORT;
4097 if ((port = a2port(p)) > 0)
4098 return port;
4099 return -1;
4100}
4101
Damien Millerbd740252008-05-19 15:37:09 +10004102/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00004103static int
Damien Millerbd740252008-05-19 15:37:09 +10004104connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004105{
Damien Millerbd740252008-05-19 15:37:09 +10004106 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10004107 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004108 char ntop[NI_MAXHOST];
4109 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11004110
Damien Millerbd740252008-05-19 15:37:09 +10004111 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004112 switch (cctx->ai->ai_family) {
4113 case AF_UNIX:
4114 /* unix:pathname instead of host:port */
4115 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
4116 strlcpy(ntop, "unix", sizeof(ntop));
4117 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
4118 break;
4119 case AF_INET:
4120 case AF_INET6:
4121 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4122 ntop, sizeof(ntop), strport, sizeof(strport),
4123 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4124 error("connect_next: getnameinfo failed");
4125 continue;
4126 }
4127 break;
4128 default:
Damien Miller34132e52000-01-14 15:45:46 +11004129 continue;
4130 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004131 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4132 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004133 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004134 error("socket: %.100s", strerror(errno));
4135 else
4136 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004137 continue;
4138 }
Damien Miller232711f2004-06-15 10:35:30 +10004139 if (set_nonblock(sock) == -1)
4140 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004141 if (connect(sock, cctx->ai->ai_addr,
4142 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4143 debug("connect_next: host %.100s ([%.100s]:%s): "
4144 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004145 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004146 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004147 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004148 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004149 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004150 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004151 if (cctx->ai->ai_family != AF_UNIX)
4152 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004153 debug("connect_next: host %.100s ([%.100s]:%s) "
4154 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4155 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004156 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004157 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004158 return -1;
4159}
Damien Millerb38eff82000-04-01 11:09:21 +10004160
Damien Millerbd740252008-05-19 15:37:09 +10004161static void
4162channel_connect_ctx_free(struct channel_connect *cctx)
4163{
Darren Tuckera627d422013-06-02 07:31:17 +10004164 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004165 if (cctx->aitop) {
4166 if (cctx->aitop->ai_family == AF_UNIX)
4167 free(cctx->aitop);
4168 else
4169 freeaddrinfo(cctx->aitop);
4170 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004171 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004172}
4173
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004174/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004175 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004176 * passing back the failure reason if appropriate.
4177 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004178static int
4179connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4180 char *ctype, char *rname, struct channel_connect *cctx,
4181 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004182{
4183 struct addrinfo hints;
4184 int gaierr;
4185 int sock = -1;
4186 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004187
4188 if (port == PORT_STREAMLOCAL) {
4189 struct sockaddr_un *sunaddr;
4190 struct addrinfo *ai;
4191
4192 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4193 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004194 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004195 }
4196
4197 /*
4198 * Fake up a struct addrinfo for AF_UNIX connections.
4199 * channel_connect_ctx_free() must check ai_family
4200 * and use free() not freeaddirinfo() for AF_UNIX.
4201 */
4202 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4203 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4204 ai->ai_addr = (struct sockaddr *)(ai + 1);
4205 ai->ai_addrlen = sizeof(*sunaddr);
4206 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004207 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004208 ai->ai_protocol = PF_UNSPEC;
4209 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4210 sunaddr->sun_family = AF_UNIX;
4211 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004212 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004213 } else {
4214 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004215 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004216 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004217 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004218 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004219 != 0) {
4220 if (errmsg != NULL)
4221 *errmsg = ssh_gai_strerror(gaierr);
4222 if (reason != NULL)
4223 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004224 error("connect_to %.100s: unknown host (%s)", name,
4225 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004226 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004227 }
Damien Millerbd740252008-05-19 15:37:09 +10004228 }
4229
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004230 cctx->host = xstrdup(name);
4231 cctx->port = port;
4232 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004233
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004234 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004235 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004236 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004237 return -1;
4238 }
4239
4240 return sock;
4241}
4242
4243/* Return CONNECTING channel to remote host:port or local socket path */
4244static Channel *
4245connect_to(struct ssh *ssh, const char *host, int port,
4246 char *ctype, char *rname)
4247{
4248 struct channel_connect cctx;
4249 Channel *c;
4250 int sock;
4251
4252 memset(&cctx, 0, sizeof(cctx));
4253 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4254 &cctx, NULL, NULL);
4255 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004256 channel_connect_ctx_free(&cctx);
4257 return NULL;
4258 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004259 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004260 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004261 c->host_port = port;
4262 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004263 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004264
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004265 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004266}
4267
markus@openbsd.org8d057842016-09-30 09:19:13 +00004268/*
4269 * returns either the newly connected channel or the downstream channel
4270 * that needs to deal with this connection.
4271 */
Damien Millerbd740252008-05-19 15:37:09 +10004272Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004273channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004274 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004275{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004276 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004277 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004278 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004279 struct permission *perm;
Damien Millerbd740252008-05-19 15:37:09 +10004280
djm@openbsd.org115063a2018-06-06 18:22:41 +00004281 for (i = 0; i < pset->num_permitted_user; i++) {
4282 perm = &pset->permitted_user[i];
4283 if (open_listen_match_tcpip(perm,
4284 listen_host, listen_port, 1)) {
4285 if (perm->downstream)
4286 return perm->downstream;
4287 if (perm->port_to_connect == 0)
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004288 return rdynamic_connect_prepare(ssh,
4289 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004290 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004291 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004292 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004293 }
4294 }
4295 error("WARNING: Server requests forwarding for unknown listen_port %d",
4296 listen_port);
4297 return NULL;
4298}
4299
Damien Miller7acefbb2014-07-18 14:11:24 +10004300Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004301channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4302 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004303{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004304 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004305 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004306 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004307 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004308
djm@openbsd.org115063a2018-06-06 18:22:41 +00004309 for (i = 0; i < pset->num_permitted_user; i++) {
4310 perm = &pset->permitted_user[i];
4311 if (open_listen_match_streamlocal(perm, path)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004312 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004313 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004314 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004315 }
4316 }
4317 error("WARNING: Server requests forwarding for unknown path %.100s",
4318 path);
4319 return NULL;
4320}
4321
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004322/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004323Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004324channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4325 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004326{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004327 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004328 struct permission_set *pset = &sc->local_perms;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004329 struct channel_connect cctx;
4330 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004331 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004332 int sock;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004333 struct permission *perm;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004334
djm@openbsd.org115063a2018-06-06 18:22:41 +00004335 permit = pset->all_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004336 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004337 for (i = 0; i < pset->num_permitted_user; i++) {
4338 perm = &pset->permitted_user[i];
4339 if (open_match(perm, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004340 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004341 break;
4342 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004343 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004344 }
Damien Miller9b439df2006-07-24 14:04:00 +10004345
djm@openbsd.org115063a2018-06-06 18:22:41 +00004346 if (pset->num_permitted_admin > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004347 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004348 for (i = 0; i < pset->num_permitted_admin; i++) {
4349 perm = &pset->permitted_admin[i];
4350 if (open_match(perm, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004351 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004352 break;
4353 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004354 }
Damien Miller9b439df2006-07-24 14:04:00 +10004355 }
4356
4357 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10004358 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004359 "but the request was denied.", host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004360 if (reason != NULL)
4361 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004362 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004363 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004364
4365 memset(&cctx, 0, sizeof(cctx));
4366 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4367 &cctx, reason, errmsg);
4368 if (sock == -1) {
4369 channel_connect_ctx_free(&cctx);
4370 return NULL;
4371 }
4372
4373 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4374 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4375 c->host_port = port;
4376 c->path = xstrdup(host);
4377 c->connect_ctx = cctx;
4378
4379 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004380}
4381
Damien Miller7acefbb2014-07-18 14:11:24 +10004382/* Check if connecting to that path is permitted and connect. */
4383Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004384channel_connect_to_path(struct ssh *ssh, const char *path,
4385 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004386{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004387 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004388 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004389 u_int i, permit, permit_adm = 1;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004390 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004391
djm@openbsd.org115063a2018-06-06 18:22:41 +00004392 permit = pset->all_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004393 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004394 for (i = 0; i < pset->num_permitted_user; i++) {
4395 perm = &pset->permitted_user[i];
4396 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004397 permit = 1;
4398 break;
4399 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004400 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004401 }
4402
djm@openbsd.org115063a2018-06-06 18:22:41 +00004403 if (pset->num_permitted_admin > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004404 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004405 for (i = 0; i < pset->num_permitted_admin; i++) {
4406 perm = &pset->permitted_admin[i];
4407 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004408 permit_adm = 1;
4409 break;
4410 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004411 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004412 }
4413
4414 if (!permit || !permit_adm) {
4415 logit("Received request to connect to path %.100s, "
4416 "but the request was denied.", path);
4417 return NULL;
4418 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004419 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004420}
4421
Damien Miller0e220db2004-06-15 10:34:08 +10004422void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004423channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004424{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004425 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004426 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004427 int r;
4428 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004429
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004430 for (i = 0; i < sc->channels_alloc; i++) {
4431 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4432 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004433 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004434 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
Damien Miller0e220db2004-06-15 10:34:08 +10004435 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004436 channel_request_start(ssh, i, "window-change", 0);
4437 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4438 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4439 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4440 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4441 (r = sshpkt_send(ssh)) != 0)
4442 fatal("%s: channel %u: send window-change: %s",
4443 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004444 }
4445}
4446
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004447/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4448static Channel *
4449rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4450{
4451 Channel *c;
4452 int r;
4453
4454 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4455 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4456 c->host_port = 0;
4457 c->path = NULL;
4458
4459 /*
4460 * We need to open the channel before we have a FD,
4461 * so that we can get SOCKS header from peer.
4462 */
4463 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4464 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4465 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4466 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4467 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4468 fatal("%s: channel %i: confirm: %s", __func__,
4469 c->self, ssh_err(r));
4470 }
4471 return c;
4472}
4473
4474/* Return CONNECTING socket to remote host:port or local socket path */
4475static int
4476rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4477{
4478 struct channel_connect cctx;
4479 int sock;
4480
4481 memset(&cctx, 0, sizeof(cctx));
4482 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4483 NULL, &cctx, NULL, NULL);
4484 if (sock == -1)
4485 channel_connect_ctx_free(&cctx);
4486 else {
4487 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4488 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4489 c->connect_ctx = cctx;
4490 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4491 }
4492 return sock;
4493}
4494
Ben Lindstrome9c99912001-06-09 00:41:05 +00004495/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004496
Damien Miller5428f641999-11-25 11:54:57 +11004497/*
4498 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004499 * Returns 0 and a suitable display number for the DISPLAY variable
4500 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004501 */
Kevin Steves366298c2001-12-19 17:58:01 +00004502int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004503x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4504 int x11_use_localhost, int single_connection,
4505 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004506{
Damien Millere7378562001-12-21 14:58:35 +11004507 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004508 int display_number, sock;
4509 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004510 struct addrinfo hints, *ai, *aitop;
4511 char strport[NI_MAXSERV];
4512 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004513
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004514 if (chanids == NULL)
4515 return -1;
4516
Damien Millera34a28b1999-12-14 10:47:15 +11004517 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004518 display_number < MAX_DISPLAYS;
4519 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004520 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004521 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004522 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004523 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004524 hints.ai_socktype = SOCK_STREAM;
4525 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004526 if ((gaierr = getaddrinfo(NULL, strport,
4527 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004528 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004529 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004530 }
Damien Miller34132e52000-01-14 15:45:46 +11004531 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004532 if (ai->ai_family != AF_INET &&
4533 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004534 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004535 sock = socket(ai->ai_family, ai->ai_socktype,
4536 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004537 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11004538 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4539#ifdef EPFNOSUPPORT
4540 && (errno != EPFNOSUPPORT)
4541#endif
4542 ) {
Damien Millere2192732000-01-17 13:22:55 +11004543 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004544 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004545 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004546 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004547 debug("x11_create_display_inet: Socket family %d not supported",
4548 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004549 continue;
4550 }
Damien Miller34132e52000-01-14 15:45:46 +11004551 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004552 if (ai->ai_family == AF_INET6)
4553 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004554 if (x11_use_localhost)
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00004555 set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11004556 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004557 debug2("%s: bind port %d: %.100s", __func__,
4558 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004559 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004560 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004561 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004562 num_socks = 0;
4563 break;
4564 }
4565 socks[num_socks++] = sock;
4566 if (num_socks == NUM_SOCKS)
4567 break;
Damien Miller95def091999-11-25 00:26:21 +11004568 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004569 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004570 if (num_socks > 0)
4571 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004572 }
Damien Miller95def091999-11-25 00:26:21 +11004573 if (display_number >= MAX_DISPLAYS) {
4574 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004575 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004576 }
Damien Miller95def091999-11-25 00:26:21 +11004577 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004578 for (n = 0; n < num_socks; n++) {
4579 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11004580 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11004581 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004582 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004583 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004584 }
Damien Miller95def091999-11-25 00:26:21 +11004585 }
Damien Miller34132e52000-01-14 15:45:46 +11004586
Damien Miller34132e52000-01-14 15:45:46 +11004587 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004588 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004589 for (n = 0; n < num_socks; n++) {
4590 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004591 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004592 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4593 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004594 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004595 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004596 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004597 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004598 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004599
Kevin Steves366298c2001-12-19 17:58:01 +00004600 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004601 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004602 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004603}
4604
Ben Lindstrombba81212001-06-25 05:01:22 +00004605static int
Damien Miller819dbb62009-01-21 16:46:26 +11004606connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004607{
Damien Miller95def091999-11-25 00:26:21 +11004608 int sock;
4609 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004610
Damien Miller3afe3752001-12-21 12:39:51 +11004611 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4612 if (sock < 0)
4613 error("socket: %.100s", strerror(errno));
4614 memset(&addr, 0, sizeof(addr));
4615 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004616 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004617 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004618 return sock;
4619 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004620 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4621 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004622}
4623
Damien Miller819dbb62009-01-21 16:46:26 +11004624static int
4625connect_local_xsocket(u_int dnr)
4626{
4627 char buf[1024];
4628 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4629 return connect_local_xsocket_path(buf);
4630}
4631
Darren Tuckerda39b092017-03-10 13:22:32 +11004632#ifdef __APPLE__
4633static int
4634is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4635{
4636 struct stat sbuf;
4637
4638 if (strlcpy(path, display, pathlen) >= pathlen) {
4639 error("%s: display path too long", __func__);
4640 return 0;
4641 }
4642 if (display[0] != '/')
4643 return 0;
4644 if (stat(path, &sbuf) == 0) {
4645 return 1;
4646 } else {
4647 char *dot = strrchr(path, '.');
4648 if (dot != NULL) {
4649 *dot = '\0';
4650 if (stat(path, &sbuf) == 0) {
4651 return 1;
4652 }
4653 }
4654 }
4655 return 0;
4656}
4657#endif
4658
Damien Millerbd483e72000-04-30 10:00:53 +10004659int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004660x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004661{
Damien Miller57c4e872006-03-31 23:11:07 +11004662 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004663 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004664 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004665 struct addrinfo hints, *ai, *aitop;
4666 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004667 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004668
Damien Miller95def091999-11-25 00:26:21 +11004669 /* Try to open a socket for the local X server. */
4670 display = getenv("DISPLAY");
4671 if (!display) {
4672 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004673 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004674 }
Damien Miller5428f641999-11-25 11:54:57 +11004675 /*
4676 * Now we decode the value of the DISPLAY variable and make a
4677 * connection to the real X server.
4678 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004679
Damien Miller819dbb62009-01-21 16:46:26 +11004680#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004681 /* Check if display is a path to a socket (as set by launchd). */
4682 {
4683 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004684
Darren Tuckerda39b092017-03-10 13:22:32 +11004685 if (is_path_to_xsocket(display, path, sizeof(path))) {
4686 debug("x11_connect_display: $DISPLAY is launchd");
4687
4688 /* Create a socket. */
4689 sock = connect_local_xsocket_path(path);
4690 if (sock < 0)
4691 return -1;
4692
4693 /* OK, we now have a connection to the display. */
4694 return sock;
4695 }
Damien Miller819dbb62009-01-21 16:46:26 +11004696 }
4697#endif
Damien Miller5428f641999-11-25 11:54:57 +11004698 /*
4699 * Check if it is a unix domain socket. Unix domain displays are in
4700 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4701 */
Damien Miller95def091999-11-25 00:26:21 +11004702 if (strncmp(display, "unix:", 5) == 0 ||
4703 display[0] == ':') {
4704 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004705 if (sscanf(strrchr(display, ':') + 1, "%u",
4706 &display_number) != 1) {
4707 error("Could not parse display number from DISPLAY: "
4708 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004709 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004710 }
4711 /* Create a socket. */
4712 sock = connect_local_xsocket(display_number);
4713 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004714 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004715
4716 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004717 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004718 }
Damien Miller5428f641999-11-25 11:54:57 +11004719 /*
4720 * Connect to an inet socket. The DISPLAY value is supposedly
4721 * hostname:d[.s], where hostname may also be numeric IP address.
4722 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004723 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004724 cp = strchr(buf, ':');
4725 if (!cp) {
4726 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004727 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004728 }
Damien Miller95def091999-11-25 00:26:21 +11004729 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004730 /*
4731 * buf now contains the host name. But first we parse the
4732 * display number.
4733 */
Damien Miller57c4e872006-03-31 23:11:07 +11004734 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004735 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004736 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004737 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004738 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004739
Damien Miller34132e52000-01-14 15:45:46 +11004740 /* Look up the host address */
4741 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004742 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004743 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004744 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004745 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004746 error("%.100s: unknown host. (%s)", buf,
4747 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004748 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004749 }
Damien Miller34132e52000-01-14 15:45:46 +11004750 for (ai = aitop; ai; ai = ai->ai_next) {
4751 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004752 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004753 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004754 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004755 continue;
4756 }
4757 /* Connect it to the display. */
4758 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004759 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004760 6000 + display_number, strerror(errno));
4761 close(sock);
4762 continue;
4763 }
4764 /* Success */
4765 break;
Damien Miller34132e52000-01-14 15:45:46 +11004766 }
Damien Miller34132e52000-01-14 15:45:46 +11004767 freeaddrinfo(aitop);
4768 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004769 error("connect %.100s port %u: %.100s", buf,
4770 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004771 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004772 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004773 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004774 return sock;
4775}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004776
Damien Millerbd483e72000-04-30 10:00:53 +10004777/*
Damien Miller5428f641999-11-25 11:54:57 +11004778 * Requests forwarding of X11 connections, generates fake authentication
4779 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004780 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004781 */
Damien Miller4af51302000-04-16 11:18:38 +10004782void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004783x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4784 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004785{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004786 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004787 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004788 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004789 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004790 char *new_data;
4791 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004792
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004793 if (sc->x11_saved_display == NULL)
4794 sc->x11_saved_display = xstrdup(disp);
4795 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004796 error("x11_request_forwarding_with_spoofing: different "
4797 "$DISPLAY already forwarded");
4798 return;
4799 }
4800
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004801 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004802 if (cp)
4803 cp = strchr(cp, '.');
4804 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004805 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004806 else
4807 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004808
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004809 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004810 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004811 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004812
4813 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004814 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004815 for (i = 0; i < data_len; i++) {
4816 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4817 fatal("x11_request_forwarding: bad "
4818 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004819 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004820 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004821 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004822
4823 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004824 sc->x11_fake_data = xmalloc(data_len);
4825 arc4random_buf(sc->x11_fake_data, data_len);
4826 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004827 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004828
Damien Miller95def091999-11-25 00:26:21 +11004829 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004830 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004831
Damien Miller95def091999-11-25 00:26:21 +11004832 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004833 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4834 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4835 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4836 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4837 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4838 (r = sshpkt_send(ssh)) != 0 ||
4839 (r = ssh_packet_write_wait(ssh)) != 0)
4840 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004841 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004842}