blob: bd68177b782bec25327627d71e5c9f0d1461ea80 [file] [log] [blame]
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00001/* $OpenBSD: channels.c,v 1.385 2018/10/04 00:10:11 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100045#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100046#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110047#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100048#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100049#ifdef HAVE_SYS_TIME_H
50# include <sys/time.h>
51#endif
Damien Millerefc04e72006-07-10 20:26:27 +100052
53#include <netinet/in.h>
54#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055
Darren Tucker39972492006-07-12 22:22:46 +100056#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110057#include <fcntl.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000058#include <limits.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100059#include <netdb.h>
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000060#include <stdarg.h>
Darren Tucker37f92202015-02-23 03:07:24 +110061#ifdef HAVE_STDINT_H
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000062 #include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110063#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110067#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Millerb84886b2008-05-19 15:05:07 +100070#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "ssh2.h"
markus@openbsd.org8d057842016-09-30 09:19:13 +000074#include "ssherr.h"
djm@openbsd.orgdbee4112017-09-12 06:32:07 +000075#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "canohost.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000082#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100083#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110084#include "pathnames.h"
djm@openbsd.org115063a2018-06-06 18:22:41 +000085#include "match.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
djm@openbsd.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
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +0000802/* Returns the state of the channel's extended usage flag */
803const char *
804channel_format_extended_usage(const Channel *c)
805{
806 if (c->efd == -1)
807 return "closed";
808
809 switch (c->extended_usage) {
810 case CHAN_EXTENDED_WRITE:
811 return "write";
812 case CHAN_EXTENDED_READ:
813 return "read";
814 case CHAN_EXTENDED_IGNORE:
815 return "ignore";
816 default:
817 return "UNKNOWN";
818 }
819}
820
Ben Lindstrome9c99912001-06-09 00:41:05 +0000821/*
822 * Returns a message describing the currently open forwarded connections,
823 * suitable for sending to the client. The message contains crlf pairs for
824 * newlines.
825 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000826char *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000827channel_open_message(struct ssh *ssh)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000828{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000829 struct sshbuf *buf;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000830 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000831 u_int i;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000832 int r;
833 char *ret;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000834
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000835 if ((buf = sshbuf_new()) == NULL)
836 fatal("%s: sshbuf_new", __func__);
837 if ((r = sshbuf_putf(buf,
838 "The following connections are open:\r\n")) != 0)
839 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
840 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
841 c = ssh->chanctxt->channels[i];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000842 if (c == NULL)
843 continue;
844 switch (c->type) {
845 case SSH_CHANNEL_X11_LISTENER:
846 case SSH_CHANNEL_PORT_LISTENER:
847 case SSH_CHANNEL_RPORT_LISTENER:
848 case SSH_CHANNEL_CLOSED:
849 case SSH_CHANNEL_AUTH_SOCKET:
850 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000851 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100852 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000853 case SSH_CHANNEL_UNIX_LISTENER:
854 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000855 continue;
856 case SSH_CHANNEL_LARVAL:
857 case SSH_CHANNEL_OPENING:
858 case SSH_CHANNEL_CONNECTING:
859 case SSH_CHANNEL_DYNAMIC:
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000860 case SSH_CHANNEL_RDYNAMIC_OPEN:
861 case SSH_CHANNEL_RDYNAMIC_FINISH:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000862 case SSH_CHANNEL_OPEN:
863 case SSH_CHANNEL_X11_OPEN:
markus@openbsd.org8d057842016-09-30 09:19:13 +0000864 case SSH_CHANNEL_MUX_PROXY:
865 case SSH_CHANNEL_MUX_CLIENT:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000866 if ((r = sshbuf_putf(buf, " #%d %.300s "
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +0000867 "(t%d %s%u i%u/%zu o%u/%zu "
868 "fd %d/%d/%d [%s] sock %d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000869 c->self, c->remote_name,
djm@openbsd.org9f532292017-09-12 06:35:31 +0000870 c->type,
871 c->have_remote_id ? "r" : "nr", c->remote_id,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000872 c->istate, sshbuf_len(c->input),
873 c->ostate, sshbuf_len(c->output),
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +0000874 c->rfd, c->wfd, c->efd,
875 channel_format_extended_usage(c),
876 c->sock, c->ctl_chan)) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000877 fatal("%s: sshbuf_putf: %s",
878 __func__, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000879 continue;
880 default:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000881 fatal("%s: bad channel type %d", __func__, c->type);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882 /* NOTREACHED */
883 }
884 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000885 if ((ret = sshbuf_dup_string(buf)) == NULL)
886 fatal("%s: sshbuf_dup_string", __func__);
887 sshbuf_free(buf);
888 return ret;
889}
890
891static void
892open_preamble(struct ssh *ssh, const char *where, Channel *c, const char *type)
893{
894 int r;
895
896 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
897 (r = sshpkt_put_cstring(ssh, type)) != 0 ||
898 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
899 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
900 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
901 fatal("%s: channel %i: open: %s", where, c->self, ssh_err(r));
902 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000903}
904
905void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000906channel_send_open(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000908 Channel *c = channel_lookup(ssh, id);
909 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000910
Ben Lindstrome9c99912001-06-09 00:41:05 +0000911 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000912 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000913 return;
914 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000915 debug2("channel %d: send open", id);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000916 open_preamble(ssh, __func__, c, c->ctype);
917 if ((r = sshpkt_send(ssh)) != 0)
918 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000919}
920
921void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000922channel_request_start(struct ssh *ssh, int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000923{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000924 Channel *c = channel_lookup(ssh, id);
925 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000926
Ben Lindstrome9c99912001-06-09 00:41:05 +0000927 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000928 logit("%s: %d: unknown channel id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000929 return;
930 }
djm@openbsd.org9f532292017-09-12 06:35:31 +0000931 if (!c->have_remote_id)
932 fatal(":%s: channel %d: no remote id", __func__, c->self);
933
Damien Miller0e220db2004-06-15 10:34:08 +1000934 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000935 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_REQUEST)) != 0 ||
936 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
937 (r = sshpkt_put_cstring(ssh, service)) != 0 ||
938 (r = sshpkt_put_u8(ssh, wantconfirm)) != 0) {
939 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
940 }
Ben Lindstrome9c99912001-06-09 00:41:05 +0000941}
Damien Miller4f7becb2006-03-26 14:10:14 +1100942
Ben Lindstrome9c99912001-06-09 00:41:05 +0000943void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000944channel_register_status_confirm(struct ssh *ssh, int id,
945 channel_confirm_cb *cb, channel_confirm_abandon_cb *abandon_cb, void *ctx)
Damien Millerb84886b2008-05-19 15:05:07 +1000946{
947 struct channel_confirm *cc;
948 Channel *c;
949
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000950 if ((c = channel_lookup(ssh, id)) == NULL)
951 fatal("%s: %d: bad id", __func__, id);
Damien Millerb84886b2008-05-19 15:05:07 +1000952
Damien Miller6c81fee2013-11-08 12:19:55 +1100953 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000954 cc->cb = cb;
955 cc->abandon_cb = abandon_cb;
956 cc->ctx = ctx;
957 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
958}
959
960void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000961channel_register_open_confirm(struct ssh *ssh, int id,
962 channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000963{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000964 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000965
Ben Lindstrome9c99912001-06-09 00:41:05 +0000966 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000967 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000968 return;
969 }
Damien Millerb84886b2008-05-19 15:05:07 +1000970 c->open_confirm = fn;
971 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000972}
Damien Miller4f7becb2006-03-26 14:10:14 +1100973
Ben Lindstrome9c99912001-06-09 00:41:05 +0000974void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000975channel_register_cleanup(struct ssh *ssh, int id,
976 channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000977{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000978 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000979
Ben Lindstrome9c99912001-06-09 00:41:05 +0000980 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000981 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000982 return;
983 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000984 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100985 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000986}
Damien Miller4f7becb2006-03-26 14:10:14 +1100987
Ben Lindstrome9c99912001-06-09 00:41:05 +0000988void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000989channel_cancel_cleanup(struct ssh *ssh, int id)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000990{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000991 Channel *c = channel_by_id(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000992
Ben Lindstrome9c99912001-06-09 00:41:05 +0000993 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000994 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000995 return;
996 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000997 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100998 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000999}
Damien Miller4f7becb2006-03-26 14:10:14 +11001000
Ben Lindstrome9c99912001-06-09 00:41:05 +00001001void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001002channel_register_filter(struct ssh *ssh, int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +10001003 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001004{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001005 Channel *c = channel_lookup(ssh, id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001006
Ben Lindstrome9c99912001-06-09 00:41:05 +00001007 if (c == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001008 logit("%s: %d: bad id", __func__, id);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001009 return;
1010 }
Damien Miller077b2382005-12-31 16:22:32 +11001011 c->input_filter = ifn;
1012 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001013 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +10001014 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001015}
1016
1017void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001018channel_set_fds(struct ssh *ssh, int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +10001019 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +00001020{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001021 Channel *c = channel_lookup(ssh, id);
1022 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001023
Ben Lindstrome9c99912001-06-09 00:41:05 +00001024 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
1025 fatal("channel_activate for non-larval channel %d.", id);
djm@openbsd.org9f532292017-09-12 06:35:31 +00001026 if (!c->have_remote_id)
1027 fatal(":%s: channel %d: no remote id", __func__, c->self);
1028
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001029 channel_register_fds(ssh, c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001030 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +11001031 c->local_window = c->local_window_max = window_max;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001032
1033 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
1034 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1035 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1036 (r = sshpkt_send(ssh)) != 0)
1037 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001038}
1039
Ben Lindstrombba81212001-06-25 05:01:22 +00001040static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001041channel_pre_listener(struct ssh *ssh, Channel *c,
1042 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001043{
1044 FD_SET(c->sock, readset);
1045}
1046
Ben Lindstrombba81212001-06-25 05:01:22 +00001047static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001048channel_pre_connecting(struct ssh *ssh, Channel *c,
1049 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001050{
1051 debug3("channel %d: waiting for connection", c->self);
1052 FD_SET(c->sock, writeset);
1053}
1054
Ben Lindstrombba81212001-06-25 05:01:22 +00001055static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001056channel_pre_open(struct ssh *ssh, Channel *c,
1057 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001058{
Damien Miller33b13562000-04-04 14:38:59 +10001059 if (c->istate == CHAN_INPUT_OPEN &&
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001060 c->remote_window > 0 &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001061 sshbuf_len(c->input) < c->remote_window &&
1062 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Miller33b13562000-04-04 14:38:59 +10001063 FD_SET(c->rfd, readset);
1064 if (c->ostate == CHAN_OUTPUT_OPEN ||
1065 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001066 if (sshbuf_len(c->output) > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001067 FD_SET(c->wfd, writeset);
1068 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +00001069 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001070 debug2("channel %d: "
1071 "obuf_empty delayed efd %d/(%zu)", c->self,
1072 c->efd, sshbuf_len(c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001073 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001074 chan_obuf_empty(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10001075 }
1076 }
1077 /** XXX check close conditions, too */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001078 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED &&
1079 c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +10001080 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001081 sshbuf_len(c->extended) > 0)
Damien Miller33b13562000-04-04 14:38:59 +10001082 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +10001083 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
1084 (c->extended_usage == CHAN_EXTENDED_READ ||
1085 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001086 sshbuf_len(c->extended) < c->remote_window)
Damien Miller33b13562000-04-04 14:38:59 +10001087 FD_SET(c->efd, readset);
1088 }
Damien Miller0e220db2004-06-15 10:34:08 +10001089 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +10001090}
1091
Damien Millerb38eff82000-04-01 11:09:21 +10001092/*
1093 * This is a special state for X11 authentication spoofing. An opened X11
1094 * connection (when authentication spoofing is being done) remains in this
1095 * state until the first packet has been completely read. The authentication
1096 * data in that packet is then substituted by the real data if it matches the
1097 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +10001098 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +00001099 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +10001100 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001101static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001102x11_open_helper(struct ssh *ssh, struct sshbuf *b)
Damien Millerb38eff82000-04-01 11:09:21 +10001103{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001104 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001105 u_char *ucp;
1106 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001107
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001108 /* Is this being called after the refusal deadline? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001109 if (sc->x11_refuse_time != 0 &&
1110 (u_int)monotime() >= sc->x11_refuse_time) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001111 verbose("Rejected X11 connection after ForwardX11Timeout "
1112 "expired");
1113 return -1;
1114 }
1115
Damien Millerb38eff82000-04-01 11:09:21 +10001116 /* Check if the fixed size part of the packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001117 if (sshbuf_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +10001118 return 0;
1119
1120 /* Parse the lengths of variable-length fields. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001121 ucp = sshbuf_mutable_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +10001122 if (ucp[0] == 0x42) { /* Byte order MSB first. */
1123 proto_len = 256 * ucp[6] + ucp[7];
1124 data_len = 256 * ucp[8] + ucp[9];
1125 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
1126 proto_len = ucp[6] + 256 * ucp[7];
1127 data_len = ucp[8] + 256 * ucp[9];
1128 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +10001129 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001130 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +10001131 return -1;
1132 }
1133
1134 /* Check if the whole packet is in buffer. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001135 if (sshbuf_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +10001136 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
1137 return 0;
1138
1139 /* Check if authentication protocol matches. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001140 if (proto_len != strlen(sc->x11_saved_proto) ||
1141 memcmp(ucp + 12, sc->x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001142 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +10001143 return -1;
1144 }
1145 /* Check if authentication data matches our fake data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001146 if (data_len != sc->x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +10001147 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001148 sc->x11_fake_data, sc->x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001149 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +10001150 return -1;
1151 }
1152 /* Check fake data length */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001153 if (sc->x11_fake_data_len != sc->x11_saved_data_len) {
Damien Millerb38eff82000-04-01 11:09:21 +10001154 error("X11 fake_data_len %d != saved_data_len %d",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001155 sc->x11_fake_data_len, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001156 return -1;
1157 }
1158 /*
1159 * Received authentication protocol and data match
1160 * our fake data. Substitute the fake data with real
1161 * data.
1162 */
1163 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001164 sc->x11_saved_data, sc->x11_saved_data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001165 return 1;
1166}
1167
Ben Lindstrombba81212001-06-25 05:01:22 +00001168static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001169channel_pre_x11_open(struct ssh *ssh, Channel *c,
1170 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001171{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001172 int ret = x11_open_helper(ssh, c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001173
1174 /* c->force_drain = 1; */
1175
Damien Millerb38eff82000-04-01 11:09:21 +10001176 if (ret == 1) {
1177 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001178 channel_pre_open(ssh, c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001179 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001180 logit("X11 connection rejected because of wrong authentication.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001181 debug2("X11 rejected %d i%d/o%d",
1182 c->self, c->istate, c->ostate);
1183 chan_read_failed(ssh, c);
1184 sshbuf_reset(c->input);
1185 chan_ibuf_empty(ssh, c);
1186 sshbuf_reset(c->output);
1187 chan_write_failed(ssh, c);
Damien Millerfbdeece2003-09-02 22:52:31 +10001188 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001189 }
1190}
1191
Damien Millere1537f92010-01-26 13:26:22 +11001192static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001193channel_pre_mux_client(struct ssh *ssh,
1194 Channel *c, fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11001195{
Damien Millerd530f5f2010-05-21 14:57:10 +10001196 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001197 sshbuf_check_reserve(c->input, CHAN_RBUF) == 0)
Damien Millere1537f92010-01-26 13:26:22 +11001198 FD_SET(c->rfd, readset);
1199 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1200 /* clear buffer immediately (discard any partial packet) */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001201 sshbuf_reset(c->input);
1202 chan_ibuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001203 /* Start output drain. XXX just kill chan? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001204 chan_rcvd_oclose(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001205 }
1206 if (c->ostate == CHAN_OUTPUT_OPEN ||
1207 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001208 if (sshbuf_len(c->output) > 0)
Damien Millere1537f92010-01-26 13:26:22 +11001209 FD_SET(c->wfd, writeset);
1210 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001211 chan_obuf_empty(ssh, c);
Damien Millere1537f92010-01-26 13:26:22 +11001212 }
1213}
1214
Ben Lindstromb3921512001-04-11 15:57:50 +00001215/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +00001216static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001217channel_decode_socks4(Channel *c, struct sshbuf *input, struct sshbuf *output)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001218{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001219 const u_char *p;
1220 char *host;
Damien Miller1781f532009-01-28 16:24:41 +11001221 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001222 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001223 struct {
1224 u_int8_t version;
1225 u_int8_t command;
1226 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001227 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001228 } s4_req, s4_rsp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001229 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001230
Ben Lindstromb3921512001-04-11 15:57:50 +00001231 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001232
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001233 have = sshbuf_len(input);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001234 len = sizeof(s4_req);
1235 if (have < len)
1236 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001237 p = sshbuf_ptr(input);
Damien Miller1781f532009-01-28 16:24:41 +11001238
1239 need = 1;
1240 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1241 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1242 debug2("channel %d: socks4a request", c->self);
1243 /* ... and needs an extra string (the hostname) */
1244 need = 2;
1245 }
1246 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001247 for (found = 0, i = len; i < have; i++) {
1248 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001249 found++;
1250 if (found == need)
1251 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001252 }
1253 if (i > 1024) {
1254 /* the peer is probably sending garbage */
1255 debug("channel %d: decode socks4: too long",
1256 c->self);
1257 return -1;
1258 }
1259 }
Damien Miller1781f532009-01-28 16:24:41 +11001260 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001261 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001262 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1263 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1264 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1265 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001266 debug("channels %d: decode socks4: %s", c->self, ssh_err(r));
1267 return -1;
1268 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001269 have = sshbuf_len(input);
1270 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001271 if (memchr(p, '\0', have) == NULL) {
1272 error("channel %d: decode socks4: user not nul terminated",
Damien Miller13481292014-02-27 10:18:32 +11001273 c->self);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001274 return -1;
1275 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001276 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001277 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001278 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001279 strlcpy(username, p, sizeof(username));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001280 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001281 fatal("%s: channel %d: consume: %s", __func__,
1282 c->self, ssh_err(r));
1283 }
Darren Tuckera627d422013-06-02 07:31:17 +10001284 free(c->path);
1285 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001286 if (need == 1) { /* SOCKS4: one string */
1287 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001288 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001289 } else { /* SOCKS4A: two strings */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001290 have = sshbuf_len(input);
1291 p = sshbuf_ptr(input);
djm@openbsd.orgc04e9792017-05-31 00:43:04 +00001292 if (memchr(p, '\0', have) == NULL) {
1293 error("channel %d: decode socks4a: host not nul "
1294 "terminated", c->self);
1295 return -1;
1296 }
Damien Miller1781f532009-01-28 16:24:41 +11001297 len = strlen(p);
1298 debug2("channel %d: decode socks4a: host %s/%d",
1299 c->self, p, len);
1300 len++; /* trailing '\0' */
Damien Millera1c1b6c2009-01-28 16:29:49 +11001301 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001302 error("channel %d: hostname \"%.100s\" too long",
1303 c->self, p);
1304 return -1;
1305 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001306 c->path = xstrdup(p);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001307 if ((r = sshbuf_consume(input, len)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001308 fatal("%s: channel %d: consume: %s", __func__,
1309 c->self, ssh_err(r));
1310 }
Damien Miller1781f532009-01-28 16:24:41 +11001311 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001312 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001313
Damien Millerfbdeece2003-09-02 22:52:31 +10001314 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001315 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001316
Ben Lindstromb3921512001-04-11 15:57:50 +00001317 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001318 debug("channel %d: cannot handle: %s cn %d",
1319 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001320 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001321 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001322 s4_rsp.version = 0; /* vn: 0 for reply */
1323 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001324 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001325 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001326 if ((r = sshbuf_put(output, &s4_rsp, sizeof(s4_rsp))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001327 fatal("%s: channel %d: append reply: %s", __func__,
1328 c->self, ssh_err(r));
1329 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001330 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001331}
1332
Darren Tucker46471c92003-07-03 13:55:19 +10001333/* try to decode a socks5 header */
1334#define SSH_SOCKS5_AUTHDONE 0x1000
1335#define SSH_SOCKS5_NOAUTH 0x00
1336#define SSH_SOCKS5_IPV4 0x01
1337#define SSH_SOCKS5_DOMAIN 0x03
1338#define SSH_SOCKS5_IPV6 0x04
1339#define SSH_SOCKS5_CONNECT 0x01
1340#define SSH_SOCKS5_SUCCESS 0x00
1341
1342static int
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001343channel_decode_socks5(Channel *c, struct sshbuf *input, struct sshbuf *output)
Darren Tucker46471c92003-07-03 13:55:19 +10001344{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001345 /* XXX use get/put_u8 instead of trusting struct padding */
Darren Tucker46471c92003-07-03 13:55:19 +10001346 struct {
1347 u_int8_t version;
1348 u_int8_t command;
1349 u_int8_t reserved;
1350 u_int8_t atyp;
1351 } s5_req, s5_rsp;
1352 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001353 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001354 const u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001355 u_int have, need, i, found, nmethods, addrlen, af;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001356 int r;
Darren Tucker46471c92003-07-03 13:55:19 +10001357
1358 debug2("channel %d: decode socks5", c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001359 p = sshbuf_ptr(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001360 if (p[0] != 0x05)
1361 return -1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001362 have = sshbuf_len(input);
Darren Tucker46471c92003-07-03 13:55:19 +10001363 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1364 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001365 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001366 return 0;
1367 nmethods = p[1];
1368 if (have < nmethods + 2)
1369 return 0;
1370 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001371 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001372 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001373 found = 1;
1374 break;
1375 }
1376 }
1377 if (!found) {
1378 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1379 c->self);
1380 return -1;
1381 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001382 if ((r = sshbuf_consume(input, nmethods + 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001383 fatal("%s: channel %d: consume: %s", __func__,
1384 c->self, ssh_err(r));
1385 }
1386 /* version, method */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001387 if ((r = sshbuf_put_u8(output, 0x05)) != 0 ||
1388 (r = sshbuf_put_u8(output, SSH_SOCKS5_NOAUTH)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001389 fatal("%s: channel %d: append reply: %s", __func__,
1390 c->self, ssh_err(r));
1391 }
Darren Tucker46471c92003-07-03 13:55:19 +10001392 c->flags |= SSH_SOCKS5_AUTHDONE;
1393 debug2("channel %d: socks5 auth done", c->self);
1394 return 0; /* need more */
1395 }
1396 debug2("channel %d: socks5 post auth", c->self);
1397 if (have < sizeof(s5_req)+1)
1398 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001399 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001400 if (s5_req.version != 0x05 ||
1401 s5_req.command != SSH_SOCKS5_CONNECT ||
1402 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001403 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001404 return -1;
1405 }
Darren Tucker47eede72005-03-14 23:08:12 +11001406 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001407 case SSH_SOCKS5_IPV4:
1408 addrlen = 4;
1409 af = AF_INET;
1410 break;
1411 case SSH_SOCKS5_DOMAIN:
1412 addrlen = p[sizeof(s5_req)];
1413 af = -1;
1414 break;
1415 case SSH_SOCKS5_IPV6:
1416 addrlen = 16;
1417 af = AF_INET6;
1418 break;
1419 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001420 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001421 return -1;
1422 }
Damien Miller0f077072006-07-10 22:21:02 +10001423 need = sizeof(s5_req) + addrlen + 2;
1424 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1425 need++;
1426 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001427 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001428 if ((r = sshbuf_consume(input, sizeof(s5_req))) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001429 fatal("%s: channel %d: consume: %s", __func__,
1430 c->self, ssh_err(r));
1431 }
1432 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
1433 /* host string length */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001434 if ((r = sshbuf_consume(input, 1)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001435 fatal("%s: channel %d: consume: %s", __func__,
1436 c->self, ssh_err(r));
1437 }
1438 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001439 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1440 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001441 debug("channel %d: parse addr/port: %s", c->self, ssh_err(r));
1442 return -1;
1443 }
Darren Tucker46471c92003-07-03 13:55:19 +10001444 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001445 free(c->path);
1446 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001447 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001448 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001449 error("channel %d: dynamic request: socks5 hostname "
1450 "\"%.100s\" too long", c->self, dest_addr);
1451 return -1;
1452 }
1453 c->path = xstrdup(dest_addr);
1454 } else {
1455 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1456 return -1;
1457 c->path = xstrdup(ntop);
1458 }
Darren Tucker46471c92003-07-03 13:55:19 +10001459 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001460
Damien Millerfbdeece2003-09-02 22:52:31 +10001461 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001462 c->self, c->path, c->host_port, s5_req.command);
1463
1464 s5_rsp.version = 0x05;
1465 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1466 s5_rsp.reserved = 0; /* ignored */
1467 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001468 dest_port = 0; /* ignored */
1469
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001470 if ((r = sshbuf_put(output, &s5_rsp, sizeof(s5_rsp))) != 0 ||
1471 (r = sshbuf_put_u32(output, ntohl(INADDR_ANY))) != 0 ||
1472 (r = sshbuf_put(output, &dest_port, sizeof(dest_port))) != 0)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001473 fatal("%s: channel %d: append reply: %s", __func__,
1474 c->self, ssh_err(r));
Darren Tucker46471c92003-07-03 13:55:19 +10001475 return 1;
1476}
1477
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001478Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001479channel_connect_stdio_fwd(struct ssh *ssh,
1480 const char *host_to_connect, u_short port_to_connect, int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001481{
1482 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001483
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001484 debug("%s %s:%d", __func__, host_to_connect, port_to_connect);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001485
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001486 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out,
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001487 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1488 0, "stdio-forward", /*nonblock*/0);
1489
1490 c->path = xstrdup(host_to_connect);
1491 c->host_port = port_to_connect;
1492 c->listening_port = 0;
1493 c->force_drain = 1;
1494
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001495 channel_register_fds(ssh, c, in, out, -1, 0, 1, 0);
1496 port_open_helper(ssh, c, "direct-tcpip");
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001497
1498 return c;
1499}
1500
Ben Lindstromb3921512001-04-11 15:57:50 +00001501/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001502static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001503channel_pre_dynamic(struct ssh *ssh, Channel *c,
1504 fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001505{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001506 const u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001507 u_int have;
1508 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001509
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001510 have = sshbuf_len(c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001511 debug2("channel %d: pre_dynamic: have %d", c->self, have);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001512 /* sshbuf_dump(c->input, stderr); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001513 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001514 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001515 /* need more */
1516 FD_SET(c->sock, readset);
1517 return;
1518 }
1519 /* try to guess the protocol */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001520 p = sshbuf_ptr(c->input);
1521 /* XXX sshbuf_peek_u8? */
Ben Lindstromb3921512001-04-11 15:57:50 +00001522 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001523 case 0x04:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001524 ret = channel_decode_socks4(c, c->input, c->output);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001525 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001526 case 0x05:
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001527 ret = channel_decode_socks5(c, c->input, c->output);
Darren Tucker46471c92003-07-03 13:55:19 +10001528 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001529 default:
1530 ret = -1;
1531 break;
1532 }
1533 if (ret < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001534 chan_mark_dead(ssh, c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001535 } else if (ret == 0) {
1536 debug2("channel %d: pre_dynamic: need more", c->self);
1537 /* need more */
1538 FD_SET(c->sock, readset);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001539 if (sshbuf_len(c->output))
1540 FD_SET(c->sock, writeset);
Ben Lindstromb3921512001-04-11 15:57:50 +00001541 } else {
1542 /* switch to the next state */
1543 c->type = SSH_CHANNEL_OPENING;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001544 port_open_helper(ssh, c, "direct-tcpip");
Ben Lindstromb3921512001-04-11 15:57:50 +00001545 }
1546}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001547
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001548/* simulate read-error */
1549static void
1550rdynamic_close(struct ssh *ssh, Channel *c)
1551{
1552 c->type = SSH_CHANNEL_OPEN;
1553 chan_read_failed(ssh, c);
1554 sshbuf_reset(c->input);
1555 chan_ibuf_empty(ssh, c);
1556 sshbuf_reset(c->output);
1557 chan_write_failed(ssh, c);
1558}
1559
1560/* reverse dynamic port forwarding */
1561static void
1562channel_before_prepare_select_rdynamic(struct ssh *ssh, Channel *c)
1563{
1564 const u_char *p;
1565 u_int have, len;
1566 int r, ret;
1567
1568 have = sshbuf_len(c->output);
1569 debug2("channel %d: pre_rdynamic: have %d", c->self, have);
1570 /* sshbuf_dump(c->output, stderr); */
1571 /* EOF received */
1572 if (c->flags & CHAN_EOF_RCVD) {
1573 if ((r = sshbuf_consume(c->output, have)) != 0) {
1574 fatal("%s: channel %d: consume: %s",
1575 __func__, c->self, ssh_err(r));
1576 }
1577 rdynamic_close(ssh, c);
1578 return;
1579 }
1580 /* check if the fixed size part of the packet is in buffer. */
1581 if (have < 3)
1582 return;
1583 /* try to guess the protocol */
1584 p = sshbuf_ptr(c->output);
1585 switch (p[0]) {
1586 case 0x04:
1587 /* switch input/output for reverse forwarding */
1588 ret = channel_decode_socks4(c, c->output, c->input);
1589 break;
1590 case 0x05:
1591 ret = channel_decode_socks5(c, c->output, c->input);
1592 break;
1593 default:
1594 ret = -1;
1595 break;
1596 }
1597 if (ret < 0) {
1598 rdynamic_close(ssh, c);
1599 } else if (ret == 0) {
1600 debug2("channel %d: pre_rdynamic: need more", c->self);
1601 /* send socks request to peer */
1602 len = sshbuf_len(c->input);
1603 if (len > 0 && len < c->remote_window) {
1604 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
1605 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1606 (r = sshpkt_put_stringb(ssh, c->input)) != 0 ||
1607 (r = sshpkt_send(ssh)) != 0) {
1608 fatal("%s: channel %i: rdynamic: %s", __func__,
1609 c->self, ssh_err(r));
1610 }
1611 if ((r = sshbuf_consume(c->input, len)) != 0) {
1612 fatal("%s: channel %d: consume: %s",
1613 __func__, c->self, ssh_err(r));
1614 }
1615 c->remote_window -= len;
1616 }
1617 } else if (rdynamic_connect_finish(ssh, c) < 0) {
1618 /* the connect failed */
1619 rdynamic_close(ssh, c);
1620 }
1621}
1622
Damien Millerb38eff82000-04-01 11:09:21 +10001623/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001624static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001625channel_post_x11_listener(struct ssh *ssh, Channel *c,
1626 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001627{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001628 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001629 struct sockaddr_storage addr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001630 int r, newsock, oerrno, remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001631 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001632 char buf[16384], *remote_ipaddr;
Damien Millerb38eff82000-04-01 11:09:21 +10001633
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001634 if (!FD_ISSET(c->sock, readset))
1635 return;
Damien Millerbd483e72000-04-30 10:00:53 +10001636
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001637 debug("X11 connection requested.");
1638 addrlen = sizeof(addr);
1639 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1640 if (c->single_connection) {
1641 oerrno = errno;
1642 debug2("single_connection: closing X11 listener.");
1643 channel_close_fd(ssh, &c->sock);
1644 chan_mark_dead(ssh, c);
1645 errno = oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001646 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001647 if (newsock < 0) {
1648 if (errno != EINTR && errno != EWOULDBLOCK &&
1649 errno != ECONNABORTED)
1650 error("accept: %.100s", strerror(errno));
1651 if (errno == EMFILE || errno == ENFILE)
1652 c->notbefore = monotime() + 1;
1653 return;
1654 }
1655 set_nodelay(newsock);
1656 remote_ipaddr = get_peer_ipaddr(newsock);
1657 remote_port = get_peer_port(newsock);
1658 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
1659 remote_ipaddr, remote_port);
1660
1661 nc = channel_new(ssh, "accepted x11 socket",
1662 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1663 c->local_window_max, c->local_maxpacket, 0, buf, 1);
1664 open_preamble(ssh, __func__, nc, "x11");
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001665 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1666 (r = sshpkt_put_u32(ssh, remote_port)) != 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001667 fatal("%s: channel %i: reply %s", __func__,
1668 c->self, ssh_err(r));
1669 }
1670 if ((r = sshpkt_send(ssh)) != 0)
1671 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
1672 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001673}
1674
Ben Lindstrombba81212001-06-25 05:01:22 +00001675static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001676port_open_helper(struct ssh *ssh, Channel *c, char *rtype)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001677{
Damien Miller4def1842013-12-29 17:45:26 +11001678 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001679 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001680 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001681 int remote_port = get_peer_port(c->sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001682 int r;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001683
Damien Millerd6369432010-02-02 17:02:07 +11001684 if (remote_port == -1) {
1685 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001686 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001687 remote_ipaddr = xstrdup("127.0.0.1");
1688 remote_port = 65535;
1689 }
1690
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001691 free(c->remote_name);
1692 xasprintf(&c->remote_name,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001693 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001694 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001695 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001696 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001697
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001698 open_preamble(ssh, __func__, c, rtype);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001699 if (strcmp(rtype, "direct-tcpip") == 0) {
1700 /* target host, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001701 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1702 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) {
1703 fatal("%s: channel %i: reply %s", __func__,
1704 c->self, ssh_err(r));
1705 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001706 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1707 /* target path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001708 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1709 fatal("%s: channel %i: reply %s", __func__,
1710 c->self, ssh_err(r));
1711 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001712 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1713 /* listen path */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001714 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) {
1715 fatal("%s: channel %i: reply %s", __func__,
1716 c->self, ssh_err(r));
1717 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001718 } else {
1719 /* listen address, port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001720 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 ||
1721 (r = sshpkt_put_u32(ssh, local_port)) != 0) {
1722 fatal("%s: channel %i: reply %s", __func__,
1723 c->self, ssh_err(r));
1724 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001725 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001726 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1727 /* reserved for future owner/mode info */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001728 if ((r = sshpkt_put_cstring(ssh, "")) != 0) {
1729 fatal("%s: channel %i: reply %s", __func__,
1730 c->self, ssh_err(r));
1731 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001732 } else {
1733 /* originator host and port */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001734 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 ||
1735 (r = sshpkt_put_u32(ssh, (u_int)remote_port)) != 0) {
1736 fatal("%s: channel %i: reply %s", __func__,
1737 c->self, ssh_err(r));
1738 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001739 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001740 if ((r = sshpkt_send(ssh)) != 0)
1741 fatal("%s: channel %i: send %s", __func__, c->self, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10001742 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001743 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001744}
1745
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001746void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001747channel_set_x11_refuse_time(struct ssh *ssh, u_int refuse_time)
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001748{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001749 ssh->chanctxt->x11_refuse_time = refuse_time;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001750}
1751
Damien Millerb38eff82000-04-01 11:09:21 +10001752/*
1753 * This socket is listening for connections to a forwarded TCP/IP port.
1754 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001755static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001756channel_post_port_listener(struct ssh *ssh, Channel *c,
1757 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001758{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001759 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001760 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001761 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001762 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001763 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001764
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001765 if (!FD_ISSET(c->sock, readset))
1766 return;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001767
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001768 debug("Connection to port %d forwarding to %.100s port %d requested.",
1769 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001770
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001771 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1772 nextstate = SSH_CHANNEL_OPENING;
1773 rtype = "forwarded-tcpip";
1774 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1775 nextstate = SSH_CHANNEL_OPENING;
1776 rtype = "forwarded-streamlocal@openssh.com";
1777 } else if (c->host_port == PORT_STREAMLOCAL) {
1778 nextstate = SSH_CHANNEL_OPENING;
1779 rtype = "direct-streamlocal@openssh.com";
1780 } else if (c->host_port == 0) {
1781 nextstate = SSH_CHANNEL_DYNAMIC;
1782 rtype = "dynamic-tcpip";
1783 } else {
1784 nextstate = SSH_CHANNEL_OPENING;
1785 rtype = "direct-tcpip";
Damien Millerb38eff82000-04-01 11:09:21 +10001786 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001787
1788 addrlen = sizeof(addr);
1789 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1790 if (newsock < 0) {
1791 if (errno != EINTR && errno != EWOULDBLOCK &&
1792 errno != ECONNABORTED)
1793 error("accept: %.100s", strerror(errno));
1794 if (errno == EMFILE || errno == ENFILE)
1795 c->notbefore = monotime() + 1;
1796 return;
1797 }
1798 if (c->host_port != PORT_STREAMLOCAL)
1799 set_nodelay(newsock);
1800 nc = channel_new(ssh, rtype, nextstate, newsock, newsock, -1,
1801 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1802 nc->listening_port = c->listening_port;
1803 nc->host_port = c->host_port;
1804 if (c->path != NULL)
1805 nc->path = xstrdup(c->path);
1806
1807 if (nextstate != SSH_CHANNEL_DYNAMIC)
1808 port_open_helper(ssh, nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001809}
1810
1811/*
1812 * This is the authentication agent socket listening for connections from
1813 * clients.
1814 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001815static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001816channel_post_auth_listener(struct ssh *ssh, Channel *c,
1817 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001818{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001819 Channel *nc;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001820 int r, newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001821 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001822 socklen_t addrlen;
1823
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001824 if (!FD_ISSET(c->sock, readset))
1825 return;
1826
1827 addrlen = sizeof(addr);
1828 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
1829 if (newsock < 0) {
1830 error("accept from auth socket: %.100s", strerror(errno));
1831 if (errno == EMFILE || errno == ENFILE)
1832 c->notbefore = monotime() + 1;
1833 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001834 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001835 nc = channel_new(ssh, "accepted auth socket",
1836 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1837 c->local_window_max, c->local_maxpacket,
1838 0, "accepted auth socket", 1);
1839 open_preamble(ssh, __func__, nc, "auth-agent@openssh.com");
1840 if ((r = sshpkt_send(ssh)) != 0)
1841 fatal("%s: channel %i: %s", __func__, c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001842}
1843
Ben Lindstrombba81212001-06-25 05:01:22 +00001844static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001845channel_post_connecting(struct ssh *ssh, Channel *c,
1846 fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001847{
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001848 int err = 0, sock, isopen, r;
Ben Lindstrom11180952001-07-04 05:13:35 +00001849 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001850
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001851 if (!FD_ISSET(c->sock, writeset))
1852 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00001853 if (!c->have_remote_id)
1854 fatal(":%s: channel %d: no remote id", __func__, c->self);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001855 /* for rdynamic the OPEN_CONFIRMATION has been sent already */
1856 isopen = (c->type == SSH_CHANNEL_RDYNAMIC_FINISH);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001857 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
1858 err = errno;
1859 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001860 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001861 if (err == 0) {
1862 debug("channel %d: connected to %s port %d",
1863 c->self, c->connect_ctx.host, c->connect_ctx.port);
1864 channel_connect_ctx_free(&c->connect_ctx);
1865 c->type = SSH_CHANNEL_OPEN;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001866 if (isopen) {
1867 /* no message necessary */
1868 } else {
1869 if ((r = sshpkt_start(ssh,
1870 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
1871 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
1872 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
1873 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
1874 (r = sshpkt_put_u32(ssh, c->local_maxpacket))
1875 != 0)
1876 fatal("%s: channel %i: confirm: %s", __func__,
1877 c->self, ssh_err(r));
1878 if ((r = sshpkt_send(ssh)) != 0)
1879 fatal("%s: channel %i: %s", __func__, c->self,
1880 ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001881 }
1882 } else {
1883 debug("channel %d: connection failed: %s",
1884 c->self, strerror(err));
1885 /* Try next address, if any */
1886 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1887 close(c->sock);
1888 c->sock = c->rfd = c->wfd = sock;
1889 channel_find_maxfd(ssh->chanctxt);
1890 return;
1891 }
1892 /* Exhausted all addresses */
1893 error("connect_to %.100s port %d: failed.",
1894 c->connect_ctx.host, c->connect_ctx.port);
1895 channel_connect_ctx_free(&c->connect_ctx);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001896 if (isopen) {
1897 rdynamic_close(ssh, c);
1898 } else {
1899 if ((r = sshpkt_start(ssh,
1900 SSH2_MSG_CHANNEL_OPEN_FAILURE)) != 0 ||
1901 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001902 (r = sshpkt_put_u32(ssh,
1903 SSH2_OPEN_CONNECT_FAILED)) != 0 ||
1904 (r = sshpkt_put_cstring(ssh, strerror(err))) != 0 ||
1905 (r = sshpkt_put_cstring(ssh, "")) != 0) {
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001906 fatal("%s: channel %i: failure: %s", __func__,
1907 c->self, ssh_err(r));
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001908 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00001909 if ((r = sshpkt_send(ssh)) != 0)
1910 fatal("%s: channel %i: %s", __func__, c->self,
1911 ssh_err(r));
1912 chan_mark_dead(ssh, c);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001913 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001914 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001915}
1916
Ben Lindstrombba81212001-06-25 05:01:22 +00001917static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001918channel_handle_rfd(struct ssh *ssh, Channel *c,
1919 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001920{
Darren Tucker11327cc2005-03-14 23:22:25 +11001921 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001922 ssize_t len;
1923 int r, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001924
Damien Miller835284b2007-06-11 13:03:16 +10001925 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001926
1927 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1928 return 1;
1929
1930 errno = 0;
1931 len = read(c->rfd, buf, sizeof(buf));
1932 if (len < 0 && (errno == EINTR ||
1933 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1934 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001935#ifndef PTY_ZEROREAD
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001936 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001937#else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001938 if ((!c->isatty && len <= 0) ||
1939 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001940#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001941 debug2("channel %d: read<=0 rfd %d len %zd",
1942 c->self, c->rfd, len);
1943 if (c->type != SSH_CHANNEL_OPEN) {
1944 debug2("channel %d: not open", c->self);
1945 chan_mark_dead(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001946 return -1;
Damien Millerad833b32000-08-23 10:46:23 +10001947 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001948 chan_read_failed(ssh, c);
Damien Millerad833b32000-08-23 10:46:23 +10001949 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001950 return -1;
1951 }
1952 if (c->input_filter != NULL) {
1953 if (c->input_filter(ssh, c, buf, len) == -1) {
1954 debug2("channel %d: filter stops", c->self);
1955 chan_read_failed(ssh, c);
1956 }
1957 } else if (c->datagram) {
1958 if ((r = sshbuf_put_string(c->input, buf, len)) != 0)
1959 fatal("%s: channel %d: put datagram: %s", __func__,
1960 c->self, ssh_err(r));
1961 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
1962 fatal("%s: channel %d: put data: %s", __func__,
1963 c->self, ssh_err(r));
Damien Millerb38eff82000-04-01 11:09:21 +10001964 }
1965 return 1;
1966}
Damien Miller4f7becb2006-03-26 14:10:14 +11001967
Ben Lindstrombba81212001-06-25 05:01:22 +00001968static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001969channel_handle_wfd(struct ssh *ssh, Channel *c,
1970 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001971{
Ben Lindstrome229b252001-03-05 06:28:06 +00001972 struct termios tio;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001973 u_char *data = NULL, *buf; /* XXX const; need filter API change */
1974 size_t dlen, olen = 0;
1975 int r, len;
1976
1977 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
1978 sshbuf_len(c->output) == 0)
1979 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001980
1981 /* Send buffered output data to the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001982 olen = sshbuf_len(c->output);
1983 if (c->output_filter != NULL) {
1984 if ((buf = c->output_filter(ssh, c, &data, &dlen)) == NULL) {
1985 debug2("channel %d: filter stops", c->self);
1986 if (c->type != SSH_CHANNEL_OPEN)
1987 chan_mark_dead(ssh, c);
1988 else
1989 chan_write_failed(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10001990 return -1;
1991 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001992 } else if (c->datagram) {
1993 if ((r = sshbuf_get_string(c->output, &data, &dlen)) != 0)
1994 fatal("%s: channel %d: get datagram: %s", __func__,
1995 c->self, ssh_err(r));
djm@openbsd.org9145a732017-09-12 07:32:04 +00001996 buf = data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001997 } else {
1998 buf = data = sshbuf_mutable_ptr(c->output);
1999 dlen = sshbuf_len(c->output);
2000 }
2001
2002 if (c->datagram) {
2003 /* ignore truncated writes, datagrams might get lost */
djm@openbsd.orgc704f642017-09-24 09:50:01 +00002004 len = write(c->wfd, buf, dlen);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002005 free(data);
2006 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2007 errno == EWOULDBLOCK))
2008 return 1;
2009 if (len <= 0)
2010 goto write_fail;
2011 goto out;
2012 }
2013
2014#ifdef _AIX
2015 /* XXX: Later AIX versions can't push as much data to tty */
2016 if (c->wfd_isatty)
2017 dlen = MIN(dlen, 8*1024);
Darren Tucker3980b632009-08-28 11:02:37 +10002018#endif
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002019
2020 len = write(c->wfd, buf, dlen);
2021 if (len < 0 &&
2022 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
2023 return 1;
2024 if (len <= 0) {
2025 write_fail:
2026 if (c->type != SSH_CHANNEL_OPEN) {
2027 debug2("channel %d: not open", c->self);
2028 chan_mark_dead(ssh, c);
2029 return -1;
2030 } else {
2031 chan_write_failed(ssh, c);
2032 }
2033 return -1;
2034 }
2035#ifndef BROKEN_TCGETATTR_ICANON
2036 if (c->isatty && dlen >= 1 && buf[0] != '\r') {
2037 if (tcgetattr(c->wfd, &tio) == 0 &&
2038 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
2039 /*
2040 * Simulate echo to reduce the impact of
2041 * traffic analysis. We need to match the
2042 * size of a SSH2_MSG_CHANNEL_DATA message
2043 * (4 byte channel id + buf)
2044 */
2045 if ((r = sshpkt_msg_ignore(ssh, 4+len)) != 0 ||
2046 (r = sshpkt_send(ssh)) != 0)
2047 fatal("%s: channel %d: ignore: %s",
2048 __func__, c->self, ssh_err(r));
2049 }
2050 }
2051#endif /* BROKEN_TCGETATTR_ICANON */
2052 if ((r = sshbuf_consume(c->output, len)) != 0) {
2053 fatal("%s: channel %d: consume: %s",
2054 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002055 }
Damien Miller7d457182010-08-05 23:09:48 +10002056 out:
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002057 c->local_consumed += olen - sshbuf_len(c->output);
2058
Damien Miller33b13562000-04-04 14:38:59 +10002059 return 1;
2060}
Damien Miller4f7becb2006-03-26 14:10:14 +11002061
Ben Lindstrombba81212001-06-25 05:01:22 +00002062static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002063channel_handle_efd_write(struct ssh *ssh, Channel *c,
2064 fd_set *readset, fd_set *writeset)
2065{
2066 int r;
2067 ssize_t len;
2068
2069 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2070 return 1;
2071
2072 len = write(c->efd, sshbuf_ptr(c->extended),
2073 sshbuf_len(c->extended));
2074 debug2("channel %d: written %zd to efd %d", c->self, len, c->efd);
2075 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
2076 errno == EWOULDBLOCK))
2077 return 1;
2078 if (len <= 0) {
2079 debug2("channel %d: closing write-efd %d", c->self, c->efd);
2080 channel_close_fd(ssh, &c->efd);
2081 } else {
2082 if ((r = sshbuf_consume(c->extended, len)) != 0) {
2083 fatal("%s: channel %d: consume: %s",
2084 __func__, c->self, ssh_err(r));
2085 }
2086 c->local_consumed += len;
2087 }
2088 return 1;
2089}
2090
2091static int
2092channel_handle_efd_read(struct ssh *ssh, Channel *c,
2093 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002094{
Darren Tucker11327cc2005-03-14 23:22:25 +11002095 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002096 int r;
2097 ssize_t len;
Damien Miller33b13562000-04-04 14:38:59 +10002098
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002099 if (!c->detach_close && !FD_ISSET(c->efd, readset))
2100 return 1;
2101
2102 len = read(c->efd, buf, sizeof(buf));
2103 debug2("channel %d: read %zd from efd %d", c->self, len, c->efd);
2104 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
2105 errno == EWOULDBLOCK) && !c->detach_close)))
2106 return 1;
2107 if (len <= 0) {
2108 debug2("channel %d: closing read-efd %d",
2109 c->self, c->efd);
2110 channel_close_fd(ssh, &c->efd);
2111 } else {
2112 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
2113 debug3("channel %d: discard efd",
2114 c->self);
2115 } else if ((r = sshbuf_put(c->extended, buf, len)) != 0) {
2116 fatal("%s: channel %d: append: %s",
2117 __func__, c->self, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10002118 }
2119 }
2120 return 1;
2121}
Damien Miller4f7becb2006-03-26 14:10:14 +11002122
Damien Miller0e220db2004-06-15 10:34:08 +10002123static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002124channel_handle_efd(struct ssh *ssh, Channel *c,
2125 fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10002126{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002127 if (c->efd == -1)
2128 return 1;
2129
2130 /** XXX handle drain efd, too */
2131
2132 if (c->extended_usage == CHAN_EXTENDED_WRITE)
2133 return channel_handle_efd_write(ssh, c, readset, writeset);
2134 else if (c->extended_usage == CHAN_EXTENDED_READ ||
2135 c->extended_usage == CHAN_EXTENDED_IGNORE)
2136 return channel_handle_efd_read(ssh, c, readset, writeset);
2137
2138 return 1;
2139}
2140
2141static int
2142channel_check_window(struct ssh *ssh, Channel *c)
2143{
2144 int r;
2145
Ben Lindstromb3921512001-04-11 15:57:50 +00002146 if (c->type == SSH_CHANNEL_OPEN &&
2147 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10002148 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10002149 c->local_maxpacket*3) ||
2150 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10002151 c->local_consumed > 0) {
djm@openbsd.org9f532292017-09-12 06:35:31 +00002152 if (!c->have_remote_id)
2153 fatal(":%s: channel %d: no remote id",
2154 __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002155 if ((r = sshpkt_start(ssh,
2156 SSH2_MSG_CHANNEL_WINDOW_ADJUST)) != 0 ||
2157 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2158 (r = sshpkt_put_u32(ssh, c->local_consumed)) != 0 ||
2159 (r = sshpkt_send(ssh)) != 0) {
2160 fatal("%s: channel %i: %s", __func__,
2161 c->self, ssh_err(r));
2162 }
Damien Millerd3444942000-09-30 14:20:03 +11002163 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10002164 c->self, c->local_window,
2165 c->local_consumed);
2166 c->local_window += c->local_consumed;
2167 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002168 }
2169 return 1;
2170}
2171
Ben Lindstrombba81212001-06-25 05:01:22 +00002172static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002173channel_post_open(struct ssh *ssh, Channel *c,
2174 fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002175{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002176 channel_handle_rfd(ssh, c, readset, writeset);
2177 channel_handle_wfd(ssh, c, readset, writeset);
2178 channel_handle_efd(ssh, c, readset, writeset);
2179 channel_check_window(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002180}
2181
Damien Millere1537f92010-01-26 13:26:22 +11002182static u_int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002183read_mux(struct ssh *ssh, Channel *c, u_int need)
Damien Millere1537f92010-01-26 13:26:22 +11002184{
2185 char buf[CHAN_RBUF];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002186 ssize_t len;
Damien Millere1537f92010-01-26 13:26:22 +11002187 u_int rlen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002188 int r;
Damien Millere1537f92010-01-26 13:26:22 +11002189
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002190 if (sshbuf_len(c->input) < need) {
2191 rlen = need - sshbuf_len(c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002192 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002193 if (len < 0 && (errno == EINTR || errno == EAGAIN))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002194 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002195 if (len <= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002196 debug2("channel %d: ctl read<=0 rfd %d len %zd",
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002197 c->self, c->rfd, len);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002198 chan_read_failed(ssh, c);
naddy@openbsd.org603ba412016-02-05 13:28:19 +00002199 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002200 } else if ((r = sshbuf_put(c->input, buf, len)) != 0) {
2201 fatal("%s: channel %d: append: %s",
2202 __func__, c->self, ssh_err(r));
2203 }
Damien Millere1537f92010-01-26 13:26:22 +11002204 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002205 return sshbuf_len(c->input);
Damien Millere1537f92010-01-26 13:26:22 +11002206}
2207
2208static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002209channel_post_mux_client_read(struct ssh *ssh, Channel *c,
2210 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002211{
2212 u_int need;
Damien Millere1537f92010-01-26 13:26:22 +11002213
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002214 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2215 return;
2216 if (c->istate != CHAN_INPUT_OPEN && c->istate != CHAN_INPUT_WAIT_DRAIN)
2217 return;
2218 if (c->mux_pause)
2219 return;
2220
2221 /*
2222 * Don't not read past the precise end of packets to
2223 * avoid disrupting fd passing.
2224 */
2225 if (read_mux(ssh, c, 4) < 4) /* read header */
2226 return;
2227 /* XXX sshbuf_peek_u32 */
2228 need = PEEK_U32(sshbuf_ptr(c->input));
Damien Millere1537f92010-01-26 13:26:22 +11002229#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002230 if (need > CHANNEL_MUX_MAX_PACKET) {
2231 debug2("channel %d: packet too big %u > %u",
2232 c->self, CHANNEL_MUX_MAX_PACKET, need);
2233 chan_rcvd_oclose(ssh, c);
2234 return;
Damien Millere1537f92010-01-26 13:26:22 +11002235 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002236 if (read_mux(ssh, c, need + 4) < need + 4) /* read body */
2237 return;
2238 if (c->mux_rcb(ssh, c) != 0) {
2239 debug("channel %d: mux_rcb failed", c->self);
2240 chan_mark_dead(ssh, c);
2241 return;
Damien Millere1537f92010-01-26 13:26:22 +11002242 }
2243}
2244
2245static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002246channel_post_mux_client_write(struct ssh *ssh, Channel *c,
2247 fd_set *readset, fd_set *writeset)
2248{
2249 ssize_t len;
2250 int r;
2251
2252 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2253 sshbuf_len(c->output) == 0)
2254 return;
2255
2256 len = write(c->wfd, sshbuf_ptr(c->output), sshbuf_len(c->output));
2257 if (len < 0 && (errno == EINTR || errno == EAGAIN))
2258 return;
2259 if (len <= 0) {
2260 chan_mark_dead(ssh, c);
2261 return;
2262 }
2263 if ((r = sshbuf_consume(c->output, len)) != 0)
2264 fatal("%s: channel %d: consume: %s", __func__,
2265 c->self, ssh_err(r));
2266}
2267
2268static void
2269channel_post_mux_client(struct ssh *ssh, Channel *c,
2270 fd_set *readset, fd_set *writeset)
2271{
2272 channel_post_mux_client_read(ssh, c, readset, writeset);
2273 channel_post_mux_client_write(ssh, c, readset, writeset);
2274}
2275
2276static void
2277channel_post_mux_listener(struct ssh *ssh, Channel *c,
2278 fd_set *readset, fd_set *writeset)
Damien Millere1537f92010-01-26 13:26:22 +11002279{
2280 Channel *nc;
2281 struct sockaddr_storage addr;
2282 socklen_t addrlen;
2283 int newsock;
2284 uid_t euid;
2285 gid_t egid;
2286
2287 if (!FD_ISSET(c->sock, readset))
2288 return;
2289
2290 debug("multiplexing control connection");
2291
2292 /*
2293 * Accept connection on control socket
2294 */
2295 memset(&addr, 0, sizeof(addr));
2296 addrlen = sizeof(addr);
2297 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
2298 &addrlen)) == -1) {
2299 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10002300 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002301 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11002302 return;
2303 }
2304
2305 if (getpeereid(newsock, &euid, &egid) < 0) {
2306 error("%s getpeereid failed: %s", __func__,
2307 strerror(errno));
2308 close(newsock);
2309 return;
2310 }
2311 if ((euid != 0) && (getuid() != euid)) {
2312 error("multiplex uid mismatch: peer euid %u != uid %u",
2313 (u_int)euid, (u_int)getuid());
2314 close(newsock);
2315 return;
2316 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002317 nc = channel_new(ssh, "multiplex client", SSH_CHANNEL_MUX_CLIENT,
Damien Millere1537f92010-01-26 13:26:22 +11002318 newsock, newsock, -1, c->local_window_max,
2319 c->local_maxpacket, 0, "mux-control", 1);
2320 nc->mux_rcb = c->mux_rcb;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002321 debug3("%s: new mux channel %d fd %d", __func__, nc->self, nc->sock);
Damien Millere1537f92010-01-26 13:26:22 +11002322 /* establish state */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002323 nc->mux_rcb(ssh, nc);
Damien Millere1537f92010-01-26 13:26:22 +11002324 /* mux state transitions must not elicit protocol messages */
2325 nc->flags |= CHAN_LOCAL;
2326}
2327
Ben Lindstrombba81212001-06-25 05:01:22 +00002328static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002329channel_handler_init(struct ssh_channels *sc)
Damien Millerb38eff82000-04-01 11:09:21 +10002330{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002331 chan_fn **pre, **post;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002332
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002333 if ((pre = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*pre))) == NULL ||
2334 (post = calloc(SSH_CHANNEL_MAX_TYPE, sizeof(*post))) == NULL)
2335 fatal("%s: allocation failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +10002336
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002337 pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
2338 pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
2339 pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2340 pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
2341 pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2342 pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
2343 pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2344 pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2345 pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
2346 pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002347 pre[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_pre_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002348 pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2349 pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
2350
2351 post[SSH_CHANNEL_OPEN] = &channel_post_open;
2352 post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2353 post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
2354 post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2355 post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
2356 post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2357 post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2358 post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
2359 post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002360 post[SSH_CHANNEL_RDYNAMIC_FINISH] = &channel_post_connecting;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002361 post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2362 post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
2363
2364 sc->channel_pre = pre;
2365 sc->channel_post = post;
Damien Miller33b13562000-04-04 14:38:59 +10002366}
2367
Damien Miller3ec27592001-10-12 11:35:04 +10002368/* gc dead channels */
2369static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002370channel_garbage_collect(struct ssh *ssh, Channel *c)
Damien Miller3ec27592001-10-12 11:35:04 +10002371{
2372 if (c == NULL)
2373 return;
2374 if (c->detach_user != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002375 if (!chan_is_dead(ssh, c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002376 return;
djm@openbsd.orgf1dd1792018-10-04 00:10:11 +00002377
Damien Millerfbdeece2003-09-02 22:52:31 +10002378 debug2("channel %d: gc: notify user", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002379 c->detach_user(ssh, c->self, NULL);
Damien Miller3ec27592001-10-12 11:35:04 +10002380 /* if we still have a callback */
2381 if (c->detach_user != NULL)
2382 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002383 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002384 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002385 if (!chan_is_dead(ssh, c, 1))
Damien Miller3ec27592001-10-12 11:35:04 +10002386 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002387 debug2("channel %d: garbage collecting", c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002388 channel_free(ssh, c);
Damien Miller3ec27592001-10-12 11:35:04 +10002389}
2390
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002391enum channel_table { CHAN_PRE, CHAN_POST };
2392
Ben Lindstrombba81212001-06-25 05:01:22 +00002393static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002394channel_handler(struct ssh *ssh, int table,
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002395 fd_set *readset, fd_set *writeset, time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002396{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002397 struct ssh_channels *sc = ssh->chanctxt;
2398 chan_fn **ftab = table == CHAN_PRE ? sc->channel_pre : sc->channel_post;
Darren Tucker876045b2010-01-08 17:08:00 +11002399 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002400 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002401 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002402
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002403 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002404 if (unpause_secs != NULL)
2405 *unpause_secs = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002406 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2407 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002408 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002409 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002410 if (c->delayed) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002411 if (table == CHAN_PRE)
Darren Tucker876045b2010-01-08 17:08:00 +11002412 c->delayed = 0;
2413 else
2414 continue;
2415 }
Damien Millera6508752012-04-22 11:21:10 +10002416 if (ftab[c->type] != NULL) {
2417 /*
2418 * Run handlers that are not paused.
2419 */
2420 if (c->notbefore <= now)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002421 (*ftab[c->type])(ssh, c, readset, writeset);
Damien Millera6508752012-04-22 11:21:10 +10002422 else if (unpause_secs != NULL) {
2423 /*
2424 * Collect the time that the earliest
2425 * channel comes off pause.
2426 */
2427 debug3("%s: chan %d: skip for %d more seconds",
2428 __func__, c->self,
2429 (int)(c->notbefore - now));
2430 if (*unpause_secs == 0 ||
2431 (c->notbefore - now) < *unpause_secs)
2432 *unpause_secs = c->notbefore - now;
2433 }
2434 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002435 channel_garbage_collect(ssh, c);
Damien Millerb38eff82000-04-01 11:09:21 +10002436 }
Damien Millera6508752012-04-22 11:21:10 +10002437 if (unpause_secs != NULL && *unpause_secs != 0)
2438 debug3("%s: first channel unpauses in %d seconds",
2439 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002440}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002441
Ben Lindstrome9c99912001-06-09 00:41:05 +00002442/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002443 * Create sockets before allocating the select bitmasks.
2444 * This is necessary for things that need to happen after reading
2445 * the network-input but before channel_prepare_select().
2446 */
2447static void
2448channel_before_prepare_select(struct ssh *ssh)
2449{
2450 struct ssh_channels *sc = ssh->chanctxt;
2451 Channel *c;
2452 u_int i, oalloc;
2453
2454 for (i = 0, oalloc = sc->channels_alloc; i < oalloc; i++) {
2455 c = sc->channels[i];
2456 if (c == NULL)
2457 continue;
2458 if (c->type == SSH_CHANNEL_RDYNAMIC_OPEN)
2459 channel_before_prepare_select_rdynamic(ssh, c);
2460 }
2461}
2462
2463/*
Ben Lindstrome9c99912001-06-09 00:41:05 +00002464 * Allocate/update select bitmasks and add any bits relevant to channels in
2465 * select bitmasks.
2466 */
Damien Miller4af51302000-04-16 11:18:38 +10002467void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002468channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp,
2469 int *maxfdp, u_int *nallocp, time_t *minwait_secs)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002470{
Damien Miller36812092006-03-26 14:22:47 +11002471 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002472
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002473 channel_before_prepare_select(ssh); /* might update channel_max_fd */
2474
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002475 n = MAXIMUM(*maxfdp, ssh->chanctxt->channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002476
Damien Miller36812092006-03-26 14:22:47 +11002477 nfdset = howmany(n+1, NFDBITS);
2478 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002479 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002480 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2481 sz = nfdset * sizeof(fd_mask);
2482
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002483 /* perhaps check sz < nalloc/2 and shrink? */
2484 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002485 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2486 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002487 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002488 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002489 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002490 memset(*readsetp, 0, sz);
2491 memset(*writesetp, 0, sz);
2492
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002493 if (!ssh_packet_is_rekeying(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002494 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
Damien Millera6508752012-04-22 11:21:10 +10002495 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002496}
2497
Ben Lindstrome9c99912001-06-09 00:41:05 +00002498/*
2499 * After select, perform any appropriate operations for channels which have
2500 * events pending.
2501 */
Damien Miller4af51302000-04-16 11:18:38 +10002502void
djm@openbsd.org71e5a532017-08-30 03:59:08 +00002503channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002504{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002505 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506}
2507
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002508/*
2509 * Enqueue data for channels with open or draining c->input.
2510 */
2511static void
2512channel_output_poll_input_open(struct ssh *ssh, Channel *c)
2513{
djm@openbsd.org55486f52017-09-23 22:04:07 +00002514 size_t len, plen;
2515 const u_char *pkt;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002516 int r;
2517
2518 if ((len = sshbuf_len(c->input)) == 0) {
2519 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
2520 /*
2521 * input-buffer is empty and read-socket shutdown:
2522 * tell peer, that we will not send more data:
2523 * send IEOF.
2524 * hack for extended data: delay EOF if EFD still
2525 * in use.
2526 */
2527 if (CHANNEL_EFD_INPUT_ACTIVE(c))
2528 debug2("channel %d: "
2529 "ibuf_empty delayed efd %d/(%zu)",
2530 c->self, c->efd, sshbuf_len(c->extended));
2531 else
2532 chan_ibuf_empty(ssh, c);
2533 }
2534 return;
2535 }
2536
djm@openbsd.org9f532292017-09-12 06:35:31 +00002537 if (!c->have_remote_id)
2538 fatal(":%s: channel %d: no remote id", __func__, c->self);
2539
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002540 if (c->datagram) {
2541 /* Check datagram will fit; drop if not */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002542 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2543 fatal("%s: channel %d: get datagram: %s", __func__,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002544 c->self, ssh_err(r));
2545 /*
2546 * XXX this does tail-drop on the datagram queue which is
2547 * usually suboptimal compared to head-drop. Better to have
2548 * backpressure at read time? (i.e. read + discard)
2549 */
djm@openbsd.org55486f52017-09-23 22:04:07 +00002550 if (plen > c->remote_window || plen > c->remote_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002551 debug("channel %d: datagram too big", c->self);
2552 return;
2553 }
2554 /* Enqueue it */
2555 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2556 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
djm@openbsd.org55486f52017-09-23 22:04:07 +00002557 (r = sshpkt_put_string(ssh, pkt, plen)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002558 (r = sshpkt_send(ssh)) != 0) {
2559 fatal("%s: channel %i: datagram: %s", __func__,
2560 c->self, ssh_err(r));
2561 }
djm@openbsd.org55486f52017-09-23 22:04:07 +00002562 c->remote_window -= plen;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002563 return;
2564 }
2565
2566 /* Enqueue packet for buffered data. */
2567 if (len > c->remote_window)
2568 len = c->remote_window;
2569 if (len > c->remote_maxpacket)
2570 len = c->remote_maxpacket;
2571 if (len == 0)
2572 return;
2573 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_DATA)) != 0 ||
2574 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2575 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->input), len)) != 0 ||
2576 (r = sshpkt_send(ssh)) != 0) {
2577 fatal("%s: channel %i: data: %s", __func__,
2578 c->self, ssh_err(r));
2579 }
2580 if ((r = sshbuf_consume(c->input, len)) != 0)
2581 fatal("%s: channel %i: consume: %s", __func__,
2582 c->self, ssh_err(r));
2583 c->remote_window -= len;
2584}
2585
2586/*
2587 * Enqueue data for channels with open c->extended in read mode.
2588 */
2589static void
2590channel_output_poll_extended_read(struct ssh *ssh, Channel *c)
2591{
2592 size_t len;
2593 int r;
2594
2595 if ((len = sshbuf_len(c->extended)) == 0)
2596 return;
2597
2598 debug2("channel %d: rwin %u elen %zu euse %d", c->self,
2599 c->remote_window, sshbuf_len(c->extended), c->extended_usage);
2600 if (len > c->remote_window)
2601 len = c->remote_window;
2602 if (len > c->remote_maxpacket)
2603 len = c->remote_maxpacket;
2604 if (len == 0)
2605 return;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002606 if (!c->have_remote_id)
2607 fatal(":%s: channel %d: no remote id", __func__, c->self);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002608 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA)) != 0 ||
2609 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
2610 (r = sshpkt_put_u32(ssh, SSH2_EXTENDED_DATA_STDERR)) != 0 ||
2611 (r = sshpkt_put_string(ssh, sshbuf_ptr(c->extended), len)) != 0 ||
2612 (r = sshpkt_send(ssh)) != 0) {
2613 fatal("%s: channel %i: data: %s", __func__,
2614 c->self, ssh_err(r));
2615 }
2616 if ((r = sshbuf_consume(c->extended, len)) != 0)
2617 fatal("%s: channel %i: consume: %s", __func__,
2618 c->self, ssh_err(r));
2619 c->remote_window -= len;
2620 debug2("channel %d: sent ext data %zu", c->self, len);
2621}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002622
Damien Miller5e953212001-01-30 09:14:00 +11002623/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002624void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002625channel_output_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002626{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002627 struct ssh_channels *sc = ssh->chanctxt;
Damien Millerb38eff82000-04-01 11:09:21 +10002628 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002629 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002630
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002631 for (i = 0; i < sc->channels_alloc; i++) {
2632 c = sc->channels[i];
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002633 if (c == NULL)
2634 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002635
Ben Lindstrome9c99912001-06-09 00:41:05 +00002636 /*
2637 * We are only interested in channels that can have buffered
2638 * incoming data.
2639 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002640 if (c->type != SSH_CHANNEL_OPEN)
2641 continue;
2642 if ((c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002643 /* XXX is this true? */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002644 debug3("channel %d: will not send data after close",
2645 c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002646 continue;
2647 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002648
Damien Miller95def091999-11-25 00:26:21 +11002649 /* Get the amount of buffered data for this channel. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002650 if (c->istate == CHAN_INPUT_OPEN ||
2651 c->istate == CHAN_INPUT_WAIT_DRAIN)
2652 channel_output_poll_input_open(ssh, c);
Damien Miller33b13562000-04-04 14:38:59 +10002653 /* Send extended data, i.e. stderr */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002654 if (!(c->flags & CHAN_EOF_SENT) &&
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002655 c->extended_usage == CHAN_EXTENDED_READ)
2656 channel_output_poll_extended_read(ssh, c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002657 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002658}
2659
markus@openbsd.org8d057842016-09-30 09:19:13 +00002660/* -- mux proxy support */
2661
2662/*
2663 * When multiplexing channel messages for mux clients we have to deal
2664 * with downstream messages from the mux client and upstream messages
2665 * from the ssh server:
2666 * 1) Handling downstream messages is straightforward and happens
2667 * in channel_proxy_downstream():
2668 * - We forward all messages (mostly) unmodified to the server.
2669 * - However, in order to route messages from upstream to the correct
2670 * downstream client, we have to replace the channel IDs used by the
2671 * mux clients with a unique channel ID because the mux clients might
2672 * use conflicting channel IDs.
2673 * - so we inspect and change both SSH2_MSG_CHANNEL_OPEN and
2674 * SSH2_MSG_CHANNEL_OPEN_CONFIRMATION messages, create a local
2675 * SSH_CHANNEL_MUX_PROXY channel and replace the mux clients ID
2676 * with the newly allocated channel ID.
2677 * 2) Upstream messages are received by matching SSH_CHANNEL_MUX_PROXY
djm@openbsd.org001aa552018-04-10 00:10:49 +00002678 * channels and processed by channel_proxy_upstream(). The local channel ID
markus@openbsd.org8d057842016-09-30 09:19:13 +00002679 * is then translated back to the original mux client ID.
2680 * 3) In both cases we need to keep track of matching SSH2_MSG_CHANNEL_CLOSE
2681 * messages so we can clean up SSH_CHANNEL_MUX_PROXY channels.
2682 * 4) The SSH_CHANNEL_MUX_PROXY channels also need to closed when the
2683 * downstream mux client are removed.
2684 * 5) Handling SSH2_MSG_CHANNEL_OPEN messages from the upstream server
2685 * requires more work, because they are not addressed to a specific
2686 * channel. E.g. client_request_forwarded_tcpip() needs to figure
2687 * out whether the request is addressed to the local client or a
2688 * specific downstream client based on the listen-address/port.
djm@openbsd.org001aa552018-04-10 00:10:49 +00002689 * 6) Agent and X11-Forwarding have a similar problem and are currently
markus@openbsd.org8d057842016-09-30 09:19:13 +00002690 * not supported as the matching session/channel cannot be identified
2691 * easily.
2692 */
2693
2694/*
2695 * receive packets from downstream mux clients:
2696 * channel callback fired on read from mux client, creates
2697 * SSH_CHANNEL_MUX_PROXY channels and translates channel IDs
2698 * on channel creation.
2699 */
2700int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002701channel_proxy_downstream(struct ssh *ssh, Channel *downstream)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002702{
2703 Channel *c = NULL;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002704 struct sshbuf *original = NULL, *modified = NULL;
2705 const u_char *cp;
2706 char *ctype = NULL, *listen_host = NULL;
2707 u_char type;
2708 size_t have;
djm@openbsd.org4ec0bb92017-09-12 07:55:48 +00002709 int ret = -1, r;
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002710 u_int id, remote_id, listen_port;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002711
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002712 /* sshbuf_dump(downstream->input, stderr); */
2713 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002714 != 0) {
2715 error("%s: malformed message: %s", __func__, ssh_err(r));
2716 return -1;
2717 }
2718 if (have < 2) {
2719 error("%s: short message", __func__);
2720 return -1;
2721 }
2722 type = cp[1];
2723 /* skip padlen + type */
2724 cp += 2;
2725 have -= 2;
2726 if (ssh_packet_log_type(type))
2727 debug3("%s: channel %u: down->up: type %u", __func__,
2728 downstream->self, type);
2729
2730 switch (type) {
2731 case SSH2_MSG_CHANNEL_OPEN:
2732 if ((original = sshbuf_from(cp, have)) == NULL ||
2733 (modified = sshbuf_new()) == NULL) {
2734 error("%s: alloc", __func__);
2735 goto out;
2736 }
2737 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0 ||
2738 (r = sshbuf_get_u32(original, &id)) != 0) {
2739 error("%s: parse error %s", __func__, ssh_err(r));
2740 goto out;
2741 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002742 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002743 -1, -1, -1, 0, 0, 0, ctype, 1);
2744 c->mux_ctx = downstream; /* point to mux client */
2745 c->mux_downstream_id = id; /* original downstream id */
2746 if ((r = sshbuf_put_cstring(modified, ctype)) != 0 ||
2747 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2748 (r = sshbuf_putb(modified, original)) != 0) {
2749 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002750 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002751 goto out;
2752 }
2753 break;
2754 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2755 /*
2756 * Almost the same as SSH2_MSG_CHANNEL_OPEN, except then we
2757 * need to parse 'remote_id' instead of 'ctype'.
2758 */
2759 if ((original = sshbuf_from(cp, have)) == NULL ||
2760 (modified = sshbuf_new()) == NULL) {
2761 error("%s: alloc", __func__);
2762 goto out;
2763 }
2764 if ((r = sshbuf_get_u32(original, &remote_id)) != 0 ||
2765 (r = sshbuf_get_u32(original, &id)) != 0) {
2766 error("%s: parse error %s", __func__, ssh_err(r));
2767 goto out;
2768 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002769 c = channel_new(ssh, "mux proxy", SSH_CHANNEL_MUX_PROXY,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002770 -1, -1, -1, 0, 0, 0, "mux-down-connect", 1);
2771 c->mux_ctx = downstream; /* point to mux client */
2772 c->mux_downstream_id = id;
2773 c->remote_id = remote_id;
djm@openbsd.org9f532292017-09-12 06:35:31 +00002774 c->have_remote_id = 1;
markus@openbsd.org8d057842016-09-30 09:19:13 +00002775 if ((r = sshbuf_put_u32(modified, remote_id)) != 0 ||
2776 (r = sshbuf_put_u32(modified, c->self)) != 0 ||
2777 (r = sshbuf_putb(modified, original)) != 0) {
2778 error("%s: compose error %s", __func__, ssh_err(r));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002779 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002780 goto out;
2781 }
2782 break;
2783 case SSH2_MSG_GLOBAL_REQUEST:
2784 if ((original = sshbuf_from(cp, have)) == NULL) {
2785 error("%s: alloc", __func__);
2786 goto out;
2787 }
2788 if ((r = sshbuf_get_cstring(original, &ctype, NULL)) != 0) {
2789 error("%s: parse error %s", __func__, ssh_err(r));
2790 goto out;
2791 }
2792 if (strcmp(ctype, "tcpip-forward") != 0) {
2793 error("%s: unsupported request %s", __func__, ctype);
2794 goto out;
2795 }
2796 if ((r = sshbuf_get_u8(original, NULL)) != 0 ||
2797 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2798 (r = sshbuf_get_u32(original, &listen_port)) != 0) {
2799 error("%s: parse error %s", __func__, ssh_err(r));
2800 goto out;
2801 }
djm@openbsd.org2f78a2a2016-09-30 20:24:46 +00002802 if (listen_port > 65535) {
2803 error("%s: tcpip-forward for %s: bad port %u",
2804 __func__, listen_host, listen_port);
2805 goto out;
2806 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002807 /* Record that connection to this host/port is permitted. */
djm@openbsd.org115063a2018-06-06 18:22:41 +00002808 permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL, "<mux>", -1,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002809 listen_host, NULL, (int)listen_port, downstream);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002810 listen_host = NULL;
2811 break;
2812 case SSH2_MSG_CHANNEL_CLOSE:
2813 if (have < 4)
2814 break;
2815 remote_id = PEEK_U32(cp);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002816 if ((c = channel_by_remote_id(ssh, remote_id)) != NULL) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002817 if (c->flags & CHAN_CLOSE_RCVD)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002818 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002819 else
2820 c->flags |= CHAN_CLOSE_SENT;
2821 }
2822 break;
2823 }
2824 if (modified) {
2825 if ((r = sshpkt_start(ssh, type)) != 0 ||
2826 (r = sshpkt_putb(ssh, modified)) != 0 ||
2827 (r = sshpkt_send(ssh)) != 0) {
2828 error("%s: send %s", __func__, ssh_err(r));
2829 goto out;
2830 }
2831 } else {
2832 if ((r = sshpkt_start(ssh, type)) != 0 ||
2833 (r = sshpkt_put(ssh, cp, have)) != 0 ||
2834 (r = sshpkt_send(ssh)) != 0) {
2835 error("%s: send %s", __func__, ssh_err(r));
2836 goto out;
2837 }
2838 }
2839 ret = 0;
2840 out:
2841 free(ctype);
2842 free(listen_host);
2843 sshbuf_free(original);
2844 sshbuf_free(modified);
2845 return ret;
2846}
2847
2848/*
2849 * receive packets from upstream server and de-multiplex packets
2850 * to correct downstream:
2851 * implemented as a helper for channel input handlers,
2852 * replaces local (proxy) channel ID with downstream channel ID.
2853 */
2854int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002855channel_proxy_upstream(Channel *c, int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org8d057842016-09-30 09:19:13 +00002856{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002857 struct sshbuf *b = NULL;
2858 Channel *downstream;
2859 const u_char *cp = NULL;
2860 size_t len;
2861 int r;
2862
2863 /*
2864 * When receiving packets from the peer we need to check whether we
2865 * need to forward the packets to the mux client. In this case we
djm@openbsd.org001aa552018-04-10 00:10:49 +00002866 * restore the original channel id and keep track of CLOSE messages,
markus@openbsd.org8d057842016-09-30 09:19:13 +00002867 * so we can cleanup the channel.
2868 */
2869 if (c == NULL || c->type != SSH_CHANNEL_MUX_PROXY)
2870 return 0;
2871 if ((downstream = c->mux_ctx) == NULL)
2872 return 0;
2873 switch (type) {
2874 case SSH2_MSG_CHANNEL_CLOSE:
2875 case SSH2_MSG_CHANNEL_DATA:
2876 case SSH2_MSG_CHANNEL_EOF:
2877 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
2878 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2879 case SSH2_MSG_CHANNEL_OPEN_FAILURE:
2880 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
2881 case SSH2_MSG_CHANNEL_SUCCESS:
2882 case SSH2_MSG_CHANNEL_FAILURE:
2883 case SSH2_MSG_CHANNEL_REQUEST:
2884 break;
2885 default:
2886 debug2("%s: channel %u: unsupported type %u", __func__,
2887 c->self, type);
2888 return 0;
2889 }
2890 if ((b = sshbuf_new()) == NULL) {
2891 error("%s: alloc reply", __func__);
2892 goto out;
2893 }
2894 /* get remaining payload (after id) */
2895 cp = sshpkt_ptr(ssh, &len);
2896 if (cp == NULL) {
2897 error("%s: no packet", __func__);
2898 goto out;
2899 }
2900 /* translate id and send to muxclient */
2901 if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
2902 (r = sshbuf_put_u8(b, type)) != 0 ||
2903 (r = sshbuf_put_u32(b, c->mux_downstream_id)) != 0 ||
2904 (r = sshbuf_put(b, cp, len)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002905 (r = sshbuf_put_stringb(downstream->output, b)) != 0) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002906 error("%s: compose for muxclient %s", __func__, ssh_err(r));
2907 goto out;
2908 }
2909 /* sshbuf_dump(b, stderr); */
2910 if (ssh_packet_log_type(type))
2911 debug3("%s: channel %u: up->down: type %u", __func__, c->self,
2912 type);
2913 out:
2914 /* update state */
2915 switch (type) {
2916 case SSH2_MSG_CHANNEL_OPEN_CONFIRMATION:
2917 /* record remote_id for SSH2_MSG_CHANNEL_CLOSE */
djm@openbsd.org9f532292017-09-12 06:35:31 +00002918 if (cp && len > 4) {
markus@openbsd.org8d057842016-09-30 09:19:13 +00002919 c->remote_id = PEEK_U32(cp);
djm@openbsd.org9f532292017-09-12 06:35:31 +00002920 c->have_remote_id = 1;
2921 }
markus@openbsd.org8d057842016-09-30 09:19:13 +00002922 break;
2923 case SSH2_MSG_CHANNEL_CLOSE:
2924 if (c->flags & CHAN_CLOSE_SENT)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002925 channel_free(ssh, c);
markus@openbsd.org8d057842016-09-30 09:19:13 +00002926 else
2927 c->flags |= CHAN_CLOSE_RCVD;
2928 break;
2929 }
2930 sshbuf_free(b);
2931 return 1;
2932}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002933
2934/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002935
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002936/* Parse a channel ID from the current packet */
2937static int
2938channel_parse_id(struct ssh *ssh, const char *where, const char *what)
2939{
2940 u_int32_t id;
2941 int r;
2942
2943 if ((r = sshpkt_get_u32(ssh, &id)) != 0) {
2944 error("%s: parse id: %s", where, ssh_err(r));
2945 ssh_packet_disconnect(ssh, "Invalid %s message", what);
2946 }
2947 if (id > INT_MAX) {
2948 error("%s: bad channel id %u: %s", where, id, ssh_err(r));
2949 ssh_packet_disconnect(ssh, "Invalid %s channel id", what);
2950 }
2951 return (int)id;
2952}
2953
2954/* Lookup a channel from an ID in the current packet */
2955static Channel *
2956channel_from_packet_id(struct ssh *ssh, const char *where, const char *what)
2957{
2958 int id = channel_parse_id(ssh, where, what);
2959 Channel *c;
2960
2961 if ((c = channel_lookup(ssh, id)) == NULL) {
2962 ssh_packet_disconnect(ssh,
2963 "%s packet referred to nonexistent channel %d", what, id);
2964 }
2965 return c;
2966}
2967
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002968int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002969channel_input_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002970{
Damien Miller633de332014-05-15 13:48:26 +10002971 const u_char *data;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002972 size_t data_len, win_len;
2973 Channel *c = channel_from_packet_id(ssh, __func__, "data");
2974 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002975
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00002976 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00002977 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002978
Damien Miller95def091999-11-25 00:26:21 +11002979 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002980 if (c->type != SSH_CHANNEL_OPEN &&
markus@openbsd.org609d7a62017-09-21 19:16:53 +00002981 c->type != SSH_CHANNEL_RDYNAMIC_OPEN &&
2982 c->type != SSH_CHANNEL_RDYNAMIC_FINISH &&
Damien Millerb38eff82000-04-01 11:09:21 +10002983 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002984 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002985
Damien Miller95def091999-11-25 00:26:21 +11002986 /* Get the data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002987 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0)
2988 fatal("%s: channel %d: get data: %s", __func__,
2989 c->self, ssh_err(r));
2990 ssh_packet_check_eom(ssh);
2991
Damien Miller7d457182010-08-05 23:09:48 +10002992 win_len = data_len;
2993 if (c->datagram)
2994 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002995
Damien Millera04ad492004-01-21 11:02:09 +11002996 /*
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002997 * The sending side reduces its window as it sends data, so we
2998 * must 'fake' consumption of the data in order to ensure that window
2999 * updates are sent back. Otherwise the connection might deadlock.
Damien Millera04ad492004-01-21 11:02:09 +11003000 */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003001 if (c->ostate != CHAN_OUTPUT_OPEN) {
3002 c->local_window -= win_len;
3003 c->local_consumed += win_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003004 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11003005 }
3006
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003007 if (win_len > c->local_maxpacket) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003008 logit("channel %d: rcvd big packet %zu, maxpack %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003009 c->self, win_len, c->local_maxpacket);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003010 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003011 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003012 if (win_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003013 logit("channel %d: rcvd too much data %zu, win %u",
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003014 c->self, win_len, c->local_window);
3015 return 0;
3016 }
3017 c->local_window -= win_len;
3018
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003019 if (c->datagram) {
3020 if ((r = sshbuf_put_string(c->output, data, data_len)) != 0)
3021 fatal("%s: channel %d: append datagram: %s",
3022 __func__, c->self, ssh_err(r));
3023 } else if ((r = sshbuf_put(c->output, data, data_len)) != 0)
3024 fatal("%s: channel %d: append data: %s",
3025 __func__, c->self, ssh_err(r));
3026
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003027 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003028}
Ben Lindstrome9c99912001-06-09 00:41:05 +00003029
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003030int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003031channel_input_extended_data(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003032{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003033 const u_char *data;
3034 size_t data_len;
3035 u_int32_t tcode;
3036 Channel *c = channel_from_packet_id(ssh, __func__, "extended data");
3037 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003038
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003039 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003040 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003041 if (c->type != SSH_CHANNEL_OPEN) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003042 logit("channel %d: ext data for non open", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003043 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003044 }
Ben Lindstromcf159442002-03-26 03:26:24 +00003045 if (c->flags & CHAN_EOF_RCVD) {
3046 if (datafellows & SSH_BUG_EXTEOF)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003047 debug("channel %d: accepting ext data after eof",
3048 c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003049 else
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003050 ssh_packet_disconnect(ssh, "Received extended_data "
3051 "after EOF on channel %d.", c->self);
Ben Lindstromcf159442002-03-26 03:26:24 +00003052 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003053
3054 if ((r = sshpkt_get_u32(ssh, &tcode)) != 0) {
3055 error("%s: parse tcode: %s", __func__, ssh_err(r));
3056 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3057 }
Damien Miller33b13562000-04-04 14:38:59 +10003058 if (c->efd == -1 ||
3059 c->extended_usage != CHAN_EXTENDED_WRITE ||
3060 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10003061 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003062 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003063 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003064 if ((r = sshpkt_get_string_direct(ssh, &data, &data_len)) != 0) {
3065 error("%s: parse data: %s", __func__, ssh_err(r));
3066 ssh_packet_disconnect(ssh, "Invalid extended_data message");
3067 }
3068 ssh_packet_check_eom(ssh);
3069
Damien Miller33b13562000-04-04 14:38:59 +10003070 if (data_len > c->local_window) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003071 logit("channel %d: rcvd too much extended_data %zu, win %u",
Damien Miller33b13562000-04-04 14:38:59 +10003072 c->self, data_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003073 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003074 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003075 debug2("channel %d: rcvd ext data %zu", c->self, data_len);
3076 /* XXX sshpkt_getb? */
3077 if ((r = sshbuf_put(c->extended, data, data_len)) != 0)
3078 error("%s: append: %s", __func__, ssh_err(r));
Damien Miller33b13562000-04-04 14:38:59 +10003079 c->local_window -= data_len;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003080 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003081}
3082
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003083int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003084channel_input_ieof(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb38eff82000-04-01 11:09:21 +10003085{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003086 Channel *c = channel_from_packet_id(ssh, __func__, "ieof");
Damien Millerb38eff82000-04-01 11:09:21 +10003087
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003088 ssh_packet_check_eom(ssh);
3089
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003090 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003091 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003092 chan_rcvd_ieof(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003093
3094 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11003095 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003096 debug("channel %d: FORCE input drain", c->self);
3097 c->istate = CHAN_INPUT_WAIT_DRAIN;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003098 if (sshbuf_len(c->input) == 0)
3099 chan_ibuf_empty(ssh, c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00003100 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003101 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10003102}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003103
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003104int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003105channel_input_oclose(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003106{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003107 Channel *c = channel_from_packet_id(ssh, __func__, "oclose");
Damien Miller66823cd2002-01-22 23:11:38 +11003108
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003109 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003110 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003111 ssh_packet_check_eom(ssh);
3112 chan_rcvd_oclose(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003113 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003114}
3115
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003116int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003117channel_input_open_confirmation(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003118{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003119 Channel *c = channel_from_packet_id(ssh, __func__, "open confirmation");
3120 u_int32_t remote_window, remote_maxpacket;
3121 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003122
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003123 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003124 return 0;
3125 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003126 packet_disconnect("Received open confirmation for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003127 "non-opening channel %d.", c->self);
3128 /*
3129 * Record the remote channel number and mark that the channel
3130 * is now open.
3131 */
djm@openbsd.org9f532292017-09-12 06:35:31 +00003132 if ((r = sshpkt_get_u32(ssh, &c->remote_id)) != 0 ||
3133 (r = sshpkt_get_u32(ssh, &remote_window)) != 0 ||
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003134 (r = sshpkt_get_u32(ssh, &remote_maxpacket)) != 0) {
3135 error("%s: window/maxpacket: %s", __func__, ssh_err(r));
3136 packet_disconnect("Invalid open confirmation message");
3137 }
3138 ssh_packet_check_eom(ssh);
Damien Miller33b13562000-04-04 14:38:59 +10003139
djm@openbsd.org9f532292017-09-12 06:35:31 +00003140 c->have_remote_id = 1;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003141 c->remote_window = remote_window;
3142 c->remote_maxpacket = remote_maxpacket;
3143 c->type = SSH_CHANNEL_OPEN;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003144 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003145 debug2("%s: channel %d: callback start", __func__, c->self);
3146 c->open_confirm(ssh, c->self, 1, c->open_confirm_ctx);
3147 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003148 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003149 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
3150 c->remote_window, c->remote_maxpacket);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003151 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003152}
3153
Ben Lindstrombba81212001-06-25 05:01:22 +00003154static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00003155reason2txt(int reason)
3156{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003157 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00003158 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
3159 return "administratively prohibited";
3160 case SSH2_OPEN_CONNECT_FAILED:
3161 return "connect failed";
3162 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
3163 return "unknown channel type";
3164 case SSH2_OPEN_RESOURCE_SHORTAGE:
3165 return "resource shortage";
3166 }
Ben Lindstrome2595442001-06-05 20:01:39 +00003167 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00003168}
3169
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003170int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003171channel_input_open_failure(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003172{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003173 Channel *c = channel_from_packet_id(ssh, __func__, "open failure");
3174 u_int32_t reason;
3175 char *msg = NULL;
3176 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003177
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003178 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003179 return 0;
3180 if (c->type != SSH_CHANNEL_OPENING)
Damien Millerb38eff82000-04-01 11:09:21 +10003181 packet_disconnect("Received open failure for "
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003182 "non-opening channel %d.", c->self);
3183 if ((r = sshpkt_get_u32(ssh, &reason)) != 0) {
3184 error("%s: reason: %s", __func__, ssh_err(r));
3185 packet_disconnect("Invalid open failure message");
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003186 }
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003187 /* skip language */
3188 if ((r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
3189 (r = sshpkt_get_string_direct(ssh, NULL, NULL)) != 0) {
3190 error("%s: message/lang: %s", __func__, ssh_err(r));
3191 packet_disconnect("Invalid open failure message");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003192 }
3193 ssh_packet_check_eom(ssh);
3194 logit("channel %d: open failed: %s%s%s", c->self,
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003195 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
3196 free(msg);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003197 if (c->open_confirm) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003198 debug2("%s: channel %d: callback start", __func__, c->self);
3199 c->open_confirm(ssh, c->self, 0, c->open_confirm_ctx);
3200 debug2("%s: channel %d: callback done", __func__, c->self);
Damien Miller33b13562000-04-04 14:38:59 +10003201 }
Damien Miller7a606212009-01-28 16:22:34 +11003202 /* Schedule the channel for cleanup/deletion. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003203 chan_mark_dead(ssh, c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003204 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003205}
3206
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003207int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003208channel_input_window_adjust(int type, u_int32_t seq, struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10003209{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003210 int id = channel_parse_id(ssh, __func__, "window adjust");
Damien Miller33b13562000-04-04 14:38:59 +10003211 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003212 u_int32_t adjust;
3213 u_int new_rwin;
3214 int r;
Damien Miller33b13562000-04-04 14:38:59 +10003215
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003216 if ((c = channel_lookup(ssh, id)) == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +11003217 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003218 return 0;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00003219 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003220
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003221 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003222 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003223 if ((r = sshpkt_get_u32(ssh, &adjust)) != 0) {
3224 error("%s: adjust: %s", __func__, ssh_err(r));
3225 packet_disconnect("Invalid window adjust message");
3226 }
3227 ssh_packet_check_eom(ssh);
3228 debug2("channel %d: rcvd adjust %u", c->self, adjust);
3229 if ((new_rwin = c->remote_window + adjust) < c->remote_window) {
djm@openbsd.org629df772015-06-30 05:25:07 +00003230 fatal("channel %d: adjust %u overflows remote window %u",
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003231 c->self, adjust, c->remote_window);
3232 }
3233 c->remote_window = new_rwin;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003234 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10003235}
3236
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003237int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003238channel_input_status_confirm(int type, u_int32_t seq, struct ssh *ssh)
Damien Millerb84886b2008-05-19 15:05:07 +10003239{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003240 int id = channel_parse_id(ssh, __func__, "status confirm");
Damien Millerb84886b2008-05-19 15:05:07 +10003241 Channel *c;
3242 struct channel_confirm *cc;
Damien Millerb84886b2008-05-19 15:05:07 +10003243
3244 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10003245 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10003246
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003247 debug2("%s: type %d id %d", __func__, type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10003248
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003249 if ((c = channel_lookup(ssh, id)) == NULL) {
3250 logit("%s: %d: unknown", __func__, id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003251 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003252 }
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00003253 if (channel_proxy_upstream(c, type, seq, ssh))
markus@openbsd.org8d057842016-09-30 09:19:13 +00003254 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003255 ssh_packet_check_eom(ssh);
Damien Millerb84886b2008-05-19 15:05:07 +10003256 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003257 return 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003258 cc->cb(ssh, type, c, cc->ctx);
Damien Millerb84886b2008-05-19 15:05:07 +10003259 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11003260 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10003261 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00003262 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10003263}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00003264
Ben Lindstrome9c99912001-06-09 00:41:05 +00003265/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003266
Ben Lindstrom908afed2001-10-03 17:34:59 +00003267void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003268channel_set_af(struct ssh *ssh, int af)
Ben Lindstrom908afed2001-10-03 17:34:59 +00003269{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003270 ssh->chanctxt->IPv4or6 = af;
Ben Lindstrom908afed2001-10-03 17:34:59 +00003271}
3272
Damien Millerf6dff7c2011-09-22 21:38:52 +10003273
3274/*
3275 * Determine whether or not a port forward listens to loopback, the
3276 * specified address or wildcard. On the client, a specified bind
3277 * address will always override gateway_ports. On the server, a
3278 * gateway_ports of 1 (``yes'') will override the client's specification
3279 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
3280 * will bind to whatever address the client asked for.
3281 *
3282 * Special-case listen_addrs are:
3283 *
3284 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
3285 * "" (empty string), "*" -> wildcard v4/v6
3286 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10003287 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10003288 */
3289static const char *
3290channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10003291 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003292{
3293 const char *addr = NULL;
3294 int wildcard = 0;
3295
3296 if (listen_addr == NULL) {
3297 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10003298 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003299 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003300 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003301 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
3302 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
3303 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10003304 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10003305 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11003306 /*
3307 * Notify client if they requested a specific listen
3308 * address and it was overridden.
3309 */
3310 if (*listen_addr != '\0' &&
3311 strcmp(listen_addr, "0.0.0.0") != 0 &&
3312 strcmp(listen_addr, "*") != 0) {
3313 packet_send_debug("Forwarding listen address "
3314 "\"%s\" overridden by server "
3315 "GatewayPorts", listen_addr);
3316 }
Damien Miller602943d2014-07-04 08:59:41 +10003317 } else if (strcmp(listen_addr, "localhost") != 0 ||
3318 strcmp(listen_addr, "127.0.0.1") == 0 ||
3319 strcmp(listen_addr, "::1") == 0) {
3320 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10003321 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10003322 }
3323 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
3324 strcmp(listen_addr, "::1") == 0) {
3325 /*
3326 * If a specific IPv4/IPv6 localhost address has been
3327 * requested then accept it even if gateway_ports is in
3328 * effect. This allows the client to prefer IPv4 or IPv6.
3329 */
3330 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003331 }
3332 if (wildcardp != NULL)
3333 *wildcardp = wildcard;
3334 return addr;
3335}
3336
Damien Millerb16461c2002-01-22 23:29:22 +11003337static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003338channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
3339 struct Forward *fwd, int *allocated_listen_port,
3340 struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11003341{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003342 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11003343 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11003344 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003345 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11003346 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11003347 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348
Damien Millerf91ee4c2005-03-01 21:24:33 +11003349 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00003350
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00003351 if (is_client && fwd->connect_path != NULL) {
3352 host = fwd->connect_path;
3353 } else {
3354 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
3355 fwd->listen_host : fwd->connect_host;
3356 if (host == NULL) {
3357 error("No forward host name.");
3358 return 0;
3359 }
3360 if (strlen(host) >= NI_MAXHOST) {
3361 error("Forward host name too long.");
3362 return 0;
3363 }
Kevin Steves12057502001-02-05 14:54:34 +00003364 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003365
Damien Millerf6dff7c2011-09-22 21:38:52 +10003366 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10003367 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3368 is_client, fwd_opts);
3369 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003370 type, wildcard, (addr == NULL) ? "NULL" : addr);
3371
3372 /*
Damien Miller34132e52000-01-14 15:45:46 +11003373 * getaddrinfo returns a loopback address if the hostname is
3374 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11003375 */
Damien Miller34132e52000-01-14 15:45:46 +11003376 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003377 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003378 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11003379 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10003380 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11003381 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
3382 if (addr == NULL) {
3383 /* This really shouldn't happen */
3384 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11003385 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003386 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10003387 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11003388 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11003389 }
Damien Millera7270302005-07-06 09:36:05 +10003390 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11003391 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003392 if (allocated_listen_port != NULL)
3393 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11003394 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11003395 switch (ai->ai_family) {
3396 case AF_INET:
3397 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
3398 sin_port;
3399 break;
3400 case AF_INET6:
3401 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
3402 sin6_port;
3403 break;
3404 default:
Damien Miller34132e52000-01-14 15:45:46 +11003405 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11003406 }
3407 /*
3408 * If allocating a port for -R forwards, then use the
3409 * same port for all address families.
3410 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003411 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3412 fwd->listen_port == 0 && allocated_listen_port != NULL &&
3413 *allocated_listen_port > 0)
Damien Miller4bf648f2009-02-14 16:28:21 +11003414 *lport_p = htons(*allocated_listen_port);
3415
Damien Miller34132e52000-01-14 15:45:46 +11003416 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003417 strport, sizeof(strport),
3418 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003419 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11003420 continue;
3421 }
3422 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003423 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003424 if (sock < 0) {
3425 /* this is no error since kernel may not support ipv6 */
djm@openbsd.org927f8512017-12-05 01:30:19 +00003426 verbose("socket [%s]:%s: %.100s", ntop, strport,
3427 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003428 continue;
3429 }
Damien Miller5e7fd072005-11-05 14:53:39 +11003430
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00003431 set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11003432 if (ai->ai_family == AF_INET6)
3433 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10003434
Damien Miller4bf648f2009-02-14 16:28:21 +11003435 debug("Local forwarding listening on %s port %s.",
3436 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11003437
Damien Miller34132e52000-01-14 15:45:46 +11003438 /* Bind the socket to the address. */
3439 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003440 /*
3441 * address can be in if use ipv6 address is
3442 * already bound
3443 */
Damien Miller3c7eeb22000-03-03 22:35:33 +11003444 if (!ai->ai_next)
djm@openbsd.org927f8512017-12-05 01:30:19 +00003445 error("bind [%s]:%s: %.100s",
3446 ntop, strport, strerror(errno));
Damien Miller3c7eeb22000-03-03 22:35:33 +11003447 else
djm@openbsd.org927f8512017-12-05 01:30:19 +00003448 verbose("bind [%s]:%s: %.100s",
3449 ntop, strport, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00003450
Damien Miller34132e52000-01-14 15:45:46 +11003451 close(sock);
3452 continue;
3453 }
3454 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11003455 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003456 error("listen: %.100s", strerror(errno));
djm@openbsd.org927f8512017-12-05 01:30:19 +00003457 error("listen [%s]:%s: %.100s", ntop, strport,
3458 strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003459 close(sock);
3460 continue;
3461 }
Damien Miller4bf648f2009-02-14 16:28:21 +11003462
3463 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10003464 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11003465 * record what we got.
3466 */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003467 if (type == SSH_CHANNEL_RPORT_LISTENER &&
3468 fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11003469 allocated_listen_port != NULL &&
3470 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00003471 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11003472 debug("Allocated listen port %d",
3473 *allocated_listen_port);
3474 }
3475
Damien Miller34132e52000-01-14 15:45:46 +11003476 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003477 c = channel_new(ssh, "port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10003478 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003479 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11003480 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003481 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003482 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10003483 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11003484 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
3485 c->listening_port = *allocated_listen_port;
3486 else
Damien Miller7acefbb2014-07-18 14:11:24 +10003487 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11003488 success = 1;
3489 }
3490 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10003491 error("%s: cannot listen to port: %d", __func__,
3492 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11003493 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00003494 return success;
Damien Miller95def091999-11-25 00:26:21 +11003495}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003496
Damien Miller7acefbb2014-07-18 14:11:24 +10003497static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003498channel_setup_fwd_listener_streamlocal(struct ssh *ssh, int type,
3499 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003500{
3501 struct sockaddr_un sunaddr;
3502 const char *path;
3503 Channel *c;
3504 int port, sock;
3505 mode_t omask;
3506
3507 switch (type) {
3508 case SSH_CHANNEL_UNIX_LISTENER:
3509 if (fwd->connect_path != NULL) {
3510 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
3511 error("Local connecting path too long: %s",
3512 fwd->connect_path);
3513 return 0;
3514 }
3515 path = fwd->connect_path;
3516 port = PORT_STREAMLOCAL;
3517 } else {
3518 if (fwd->connect_host == NULL) {
3519 error("No forward host name.");
3520 return 0;
3521 }
3522 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
3523 error("Forward host name too long.");
3524 return 0;
3525 }
3526 path = fwd->connect_host;
3527 port = fwd->connect_port;
3528 }
3529 break;
3530 case SSH_CHANNEL_RUNIX_LISTENER:
3531 path = fwd->listen_path;
3532 port = PORT_STREAMLOCAL;
3533 break;
3534 default:
3535 error("%s: unexpected channel type %d", __func__, type);
3536 return 0;
3537 }
3538
3539 if (fwd->listen_path == NULL) {
3540 error("No forward path name.");
3541 return 0;
3542 }
3543 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3544 error("Local listening path too long: %s", fwd->listen_path);
3545 return 0;
3546 }
3547
3548 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3549
3550 /* Start a Unix domain listener. */
3551 omask = umask(fwd_opts->streamlocal_bind_mask);
3552 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3553 fwd_opts->streamlocal_bind_unlink);
3554 umask(omask);
3555 if (sock < 0)
3556 return 0;
3557
3558 debug("Local forwarding listening on path %s.", fwd->listen_path);
3559
3560 /* Allocate a channel number for the socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003561 c = channel_new(ssh, "unix listener", type, sock, sock, -1,
Damien Miller7acefbb2014-07-18 14:11:24 +10003562 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3563 0, "unix listener", 1);
3564 c->path = xstrdup(path);
3565 c->host_port = port;
3566 c->listening_port = PORT_STREAMLOCAL;
3567 c->listening_addr = xstrdup(fwd->listen_path);
3568 return 1;
3569}
3570
3571static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003572channel_cancel_rport_listener_tcpip(struct ssh *ssh,
3573 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003574{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003575 u_int i;
3576 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003577
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003578 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3579 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003580 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3581 continue;
3582 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3583 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003584 channel_free(ssh, c);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003585 found = 1;
3586 }
3587 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003588
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003589 return found;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003590}
3591
Damien Miller7acefbb2014-07-18 14:11:24 +10003592static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003593channel_cancel_rport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003594{
3595 u_int i;
3596 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003597
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003598 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3599 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003600 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3601 continue;
3602 if (c->path == NULL)
3603 continue;
3604 if (strcmp(c->path, path) == 0) {
3605 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003606 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003607 found = 1;
3608 }
3609 }
3610
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003611 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003612}
3613
3614int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003615channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10003616{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003617 if (fwd->listen_path != NULL) {
3618 return channel_cancel_rport_listener_streamlocal(ssh,
3619 fwd->listen_path);
3620 } else {
3621 return channel_cancel_rport_listener_tcpip(ssh,
3622 fwd->listen_host, fwd->listen_port);
3623 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003624}
3625
3626static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003627channel_cancel_lport_listener_tcpip(struct ssh *ssh,
3628 const char *lhost, u_short lport, int cport,
3629 struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003630{
3631 u_int i;
3632 int found = 0;
3633 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003634
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003635 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3636 Channel *c = ssh->chanctxt->channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003637 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3638 continue;
Damien Millerff773642011-09-22 21:39:48 +10003639 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003640 continue;
Damien Millerff773642011-09-22 21:39:48 +10003641 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3642 /* skip dynamic forwardings */
3643 if (c->host_port == 0)
3644 continue;
3645 } else {
3646 if (c->host_port != cport)
3647 continue;
3648 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003649 if ((c->listening_addr == NULL && addr != NULL) ||
3650 (c->listening_addr != NULL && addr == NULL))
3651 continue;
3652 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003653 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003654 channel_free(ssh, c);
Darren Tuckere7066df2004-05-24 10:18:05 +10003655 found = 1;
3656 }
3657 }
3658
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003659 return found;
Darren Tuckere7066df2004-05-24 10:18:05 +10003660}
3661
Damien Miller7acefbb2014-07-18 14:11:24 +10003662static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003663channel_cancel_lport_listener_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003664{
3665 u_int i;
3666 int found = 0;
3667
3668 if (path == NULL) {
3669 error("%s: no path specified.", __func__);
3670 return 0;
3671 }
3672
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003673 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
3674 Channel *c = ssh->chanctxt->channels[i];
Damien Miller7acefbb2014-07-18 14:11:24 +10003675 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3676 continue;
3677 if (c->listening_addr == NULL)
3678 continue;
3679 if (strcmp(c->listening_addr, path) == 0) {
3680 debug2("%s: close channel %d", __func__, i);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003681 channel_free(ssh, c);
Damien Miller7acefbb2014-07-18 14:11:24 +10003682 found = 1;
3683 }
3684 }
3685
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003686 return found;
Damien Miller7acefbb2014-07-18 14:11:24 +10003687}
3688
3689int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003690channel_cancel_lport_listener(struct ssh *ssh,
3691 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
Damien Miller7acefbb2014-07-18 14:11:24 +10003692{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003693 if (fwd->listen_path != NULL) {
3694 return channel_cancel_lport_listener_streamlocal(ssh,
3695 fwd->listen_path);
3696 } else {
3697 return channel_cancel_lport_listener_tcpip(ssh,
3698 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3699 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003700}
3701
markus@openbsd.orgc2212192017-05-30 08:49:58 +00003702/* protocol local port fwd, used by ssh */
Damien Millerb16461c2002-01-22 23:29:22 +11003703int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003704channel_setup_local_fwd_listener(struct ssh *ssh,
3705 struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003706{
Damien Miller7acefbb2014-07-18 14:11:24 +10003707 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003708 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003709 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3710 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003711 return channel_setup_fwd_listener_tcpip(ssh,
3712 SSH_CHANNEL_PORT_LISTENER, fwd, NULL, fwd_opts);
Damien Miller7acefbb2014-07-18 14:11:24 +10003713 }
Damien Millerb16461c2002-01-22 23:29:22 +11003714}
3715
djm@openbsd.org115063a2018-06-06 18:22:41 +00003716/* Matches a remote forwarding permission against a requested forwarding */
3717static int
3718remote_open_match(struct permission *allowed_open, struct Forward *fwd)
3719{
3720 int ret;
3721 char *lhost;
3722
3723 /* XXX add ACLs for streamlocal */
3724 if (fwd->listen_path != NULL)
3725 return 1;
3726
3727 if (fwd->listen_host == NULL || allowed_open->listen_host == NULL)
3728 return 0;
3729
3730 if (allowed_open->listen_port != FWD_PERMIT_ANY_PORT &&
3731 allowed_open->listen_port != fwd->listen_port)
3732 return 0;
3733
3734 /* Match hostnames case-insensitively */
3735 lhost = xstrdup(fwd->listen_host);
3736 lowercase(lhost);
3737 ret = match_pattern(lhost, allowed_open->listen_host);
3738 free(lhost);
3739
3740 return ret;
3741}
3742
3743/* Checks whether a requested remote forwarding is permitted */
3744static int
3745check_rfwd_permission(struct ssh *ssh, struct Forward *fwd)
3746{
3747 struct ssh_channels *sc = ssh->chanctxt;
3748 struct permission_set *pset = &sc->remote_perms;
3749 u_int i, permit, permit_adm = 1;
3750 struct permission *perm;
3751
3752 /* XXX apply GatewayPorts override before checking? */
3753
3754 permit = pset->all_permitted;
3755 if (!permit) {
3756 for (i = 0; i < pset->num_permitted_user; i++) {
3757 perm = &pset->permitted_user[i];
3758 if (remote_open_match(perm, fwd)) {
3759 permit = 1;
3760 break;
3761 }
3762 }
3763 }
3764
3765 if (pset->num_permitted_admin > 0) {
3766 permit_adm = 0;
3767 for (i = 0; i < pset->num_permitted_admin; i++) {
3768 perm = &pset->permitted_admin[i];
3769 if (remote_open_match(perm, fwd)) {
3770 permit_adm = 1;
3771 break;
3772 }
3773 }
3774 }
3775
3776 return permit && permit_adm;
3777}
3778
Damien Millerb16461c2002-01-22 23:29:22 +11003779/* protocol v2 remote port fwd, used by sshd */
3780int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003781channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd,
Damien Miller7acefbb2014-07-18 14:11:24 +10003782 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003783{
djm@openbsd.org115063a2018-06-06 18:22:41 +00003784 if (!check_rfwd_permission(ssh, fwd)) {
3785 packet_send_debug("port forwarding refused");
3786 return 0;
3787 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003788 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003789 return channel_setup_fwd_listener_streamlocal(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003790 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3791 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003792 return channel_setup_fwd_listener_tcpip(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10003793 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3794 fwd_opts);
3795 }
Damien Millerb16461c2002-01-22 23:29:22 +11003796}
3797
Damien Miller5428f641999-11-25 11:54:57 +11003798/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003799 * Translate the requested rfwd listen host to something usable for
3800 * this server.
3801 */
3802static const char *
3803channel_rfwd_bind_host(const char *listen_host)
3804{
3805 if (listen_host == NULL) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003806 return "localhost";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003807 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
djm@openbsd.org14b5c632018-01-23 05:27:21 +00003808 return "";
Damien Millerf6dff7c2011-09-22 21:38:52 +10003809 } else
3810 return listen_host;
3811}
3812
3813/*
Damien Miller5428f641999-11-25 11:54:57 +11003814 * Initiate forwarding of connections to port "port" on remote host through
3815 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003816 * Returns handle (index) for updating the dynamic listen port with
djm@openbsd.org115063a2018-06-06 18:22:41 +00003817 * channel_update_permission().
Damien Miller5428f641999-11-25 11:54:57 +11003818 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003819int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003820channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003821{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003822 int r, success = 0, idx = -1;
3823 char *host_to_connect, *listen_host, *listen_path;
3824 int port_to_connect, listen_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003825
Damien Miller95def091999-11-25 00:26:21 +11003826 /* Send the forward request to the remote side. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003827 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003828 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3829 (r = sshpkt_put_cstring(ssh,
3830 "streamlocal-forward@openssh.com")) != 0 ||
3831 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3832 (r = sshpkt_put_cstring(ssh, fwd->listen_path)) != 0 ||
3833 (r = sshpkt_send(ssh)) != 0 ||
3834 (r = ssh_packet_write_wait(ssh)) != 0)
3835 fatal("%s: request streamlocal: %s",
3836 __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10003837 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003838 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3839 (r = sshpkt_put_cstring(ssh, "tcpip-forward")) != 0 ||
3840 (r = sshpkt_put_u8(ssh, 1)) != 0 || /* want reply */
3841 (r = sshpkt_put_cstring(ssh,
3842 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3843 (r = sshpkt_put_u32(ssh, fwd->listen_port)) != 0 ||
3844 (r = sshpkt_send(ssh)) != 0 ||
3845 (r = ssh_packet_write_wait(ssh)) != 0)
3846 fatal("%s: request tcpip-forward: %s",
3847 __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11003848 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00003849 /* Assume that server accepts the request */
3850 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003851 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003852 /* Record that connection to this host/port is permitted. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003853 host_to_connect = listen_host = listen_path = NULL;
3854 port_to_connect = listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003855 if (fwd->connect_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003856 host_to_connect = xstrdup(fwd->connect_path);
3857 port_to_connect = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003858 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003859 host_to_connect = xstrdup(fwd->connect_host);
3860 port_to_connect = fwd->connect_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003861 }
3862 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003863 listen_path = xstrdup(fwd->listen_path);
3864 listen_port = PORT_STREAMLOCAL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003865 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003866 if (fwd->listen_host != NULL)
3867 listen_host = xstrdup(fwd->listen_host);
3868 listen_port = fwd->listen_port;
Damien Miller7acefbb2014-07-18 14:11:24 +10003869 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003870 idx = permission_set_add(ssh, FORWARD_USER, FORWARD_LOCAL,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003871 host_to_connect, port_to_connect,
3872 listen_host, listen_path, listen_port, NULL);
Damien Miller33b13562000-04-04 14:38:59 +10003873 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003874 return idx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003875}
3876
Damien Miller4b3ed642014-07-02 15:29:40 +10003877static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003878open_match(struct permission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003879 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003880{
3881 if (allowed_open->host_to_connect == NULL)
3882 return 0;
3883 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3884 allowed_open->port_to_connect != requestedport)
3885 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003886 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3887 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003888 return 0;
3889 return 1;
3890}
3891
3892/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003893 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003894 * we don't support FWD_PERMIT_ANY_PORT and
3895 * need to translate between the configured-host (listen_host)
3896 * and what we've sent to the remote server (channel_rfwd_bind_host)
3897 */
3898static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003899open_listen_match_tcpip(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003900 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003901{
3902 const char *allowed_host;
3903
3904 if (allowed_open->host_to_connect == NULL)
3905 return 0;
3906 if (allowed_open->listen_port != requestedport)
3907 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003908 if (!translate && allowed_open->listen_host == NULL &&
3909 requestedhost == NULL)
3910 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003911 allowed_host = translate ?
3912 channel_rfwd_bind_host(allowed_open->listen_host) :
3913 allowed_open->listen_host;
djm@openbsd.org90e51d62018-06-25 22:28:33 +00003914 if (allowed_host == NULL || requestedhost == NULL ||
Damien Miller4b3ed642014-07-02 15:29:40 +10003915 strcmp(allowed_host, requestedhost) != 0)
3916 return 0;
3917 return 1;
3918}
3919
Damien Miller7acefbb2014-07-18 14:11:24 +10003920static int
djm@openbsd.org115063a2018-06-06 18:22:41 +00003921open_listen_match_streamlocal(struct permission *allowed_open,
Damien Miller7acefbb2014-07-18 14:11:24 +10003922 const char *requestedpath)
3923{
3924 if (allowed_open->host_to_connect == NULL)
3925 return 0;
3926 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3927 return 0;
3928 if (allowed_open->listen_path == NULL ||
3929 strcmp(allowed_open->listen_path, requestedpath) != 0)
3930 return 0;
3931 return 1;
3932}
3933
Damien Miller5428f641999-11-25 11:54:57 +11003934/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003935 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003936 * local side.
3937 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003938static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003939channel_request_rforward_cancel_tcpip(struct ssh *ssh,
3940 const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003941{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003942 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003943 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003944 int r;
3945 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003946 struct permission *perm;
Darren Tuckere7066df2004-05-24 10:18:05 +10003947
djm@openbsd.org115063a2018-06-06 18:22:41 +00003948 for (i = 0; i < pset->num_permitted_user; i++) {
3949 perm = &pset->permitted_user[i];
3950 if (open_listen_match_tcpip(perm, host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003951 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003952 perm = NULL;
Darren Tuckere7066df2004-05-24 10:18:05 +10003953 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003954 if (perm == NULL) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003955 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003956 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003957 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003958 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3959 (r = sshpkt_put_cstring(ssh, "cancel-tcpip-forward")) != 0 ||
3960 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3961 (r = sshpkt_put_cstring(ssh, channel_rfwd_bind_host(host))) != 0 ||
3962 (r = sshpkt_put_u32(ssh, port)) != 0 ||
3963 (r = sshpkt_send(ssh)) != 0)
3964 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Darren Tuckere7066df2004-05-24 10:18:05 +10003965
djm@openbsd.org115063a2018-06-06 18:22:41 +00003966 fwd_perm_clear(perm); /* unregister */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003967
3968 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003969}
3970
3971/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003972 * Request cancellation of remote forwarding of Unix domain socket
3973 * path from local side.
3974 */
3975static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003976channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
Damien Miller7acefbb2014-07-18 14:11:24 +10003977{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003978 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003979 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003980 int r;
3981 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003982 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10003983
djm@openbsd.org115063a2018-06-06 18:22:41 +00003984 for (i = 0; i < pset->num_permitted_user; i++) {
3985 perm = &pset->permitted_user[i];
3986 if (open_listen_match_streamlocal(perm, path))
Damien Miller7acefbb2014-07-18 14:11:24 +10003987 break;
djm@openbsd.org115063a2018-06-06 18:22:41 +00003988 perm = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003989 }
djm@openbsd.org115063a2018-06-06 18:22:41 +00003990 if (perm == NULL) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003991 debug("%s: requested forward not found", __func__);
3992 return -1;
3993 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00003994 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
3995 (r = sshpkt_put_cstring(ssh,
3996 "cancel-streamlocal-forward@openssh.com")) != 0 ||
3997 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* want reply */
3998 (r = sshpkt_put_cstring(ssh, path)) != 0 ||
3999 (r = sshpkt_send(ssh)) != 0)
4000 fatal("%s: send cancel: %s", __func__, ssh_err(r));
Damien Miller7acefbb2014-07-18 14:11:24 +10004001
djm@openbsd.org115063a2018-06-06 18:22:41 +00004002 fwd_perm_clear(perm); /* unregister */
Damien Miller7acefbb2014-07-18 14:11:24 +10004003
4004 return 0;
4005}
4006
4007/*
4008 * Request cancellation of remote forwarding of a connection from local side.
4009 */
4010int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004011channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd)
Damien Miller7acefbb2014-07-18 14:11:24 +10004012{
4013 if (fwd->listen_path != NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004014 return channel_request_rforward_cancel_streamlocal(ssh,
4015 fwd->listen_path);
Damien Miller7acefbb2014-07-18 14:11:24 +10004016 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004017 return channel_request_rforward_cancel_tcpip(ssh,
4018 fwd->listen_host,
4019 fwd->listen_port ? fwd->listen_port : fwd->allocated_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10004020 }
4021}
4022
4023/*
djm@openbsd.org115063a2018-06-06 18:22:41 +00004024 * Permits opening to any host/port if permitted_user[] is empty. This is
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004025 * usually called by the server, because the user could connect to any port
4026 * anyway, and the server has no way to know but to trust the client anyway.
4027 */
4028void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004029channel_permit_all(struct ssh *ssh, int where)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004030{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004031 struct permission_set *pset = permission_set_get(ssh, where);
4032
4033 if (pset->num_permitted_user == 0)
4034 pset->all_permitted = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004035}
4036
djm@openbsd.org115063a2018-06-06 18:22:41 +00004037/*
4038 * Permit the specified host/port for forwarding.
4039 */
Ben Lindstroma3700052001-04-05 23:26:32 +00004040void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004041channel_add_permission(struct ssh *ssh, int who, int where,
4042 char *host, int port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004043{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004044 int local = where == FORWARD_LOCAL;
4045 struct permission_set *pset = permission_set_get(ssh, where);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004046
djm@openbsd.org115063a2018-06-06 18:22:41 +00004047 debug("allow %s forwarding to host %s port %d",
4048 fwd_ident(who, where), host, port);
4049 /*
4050 * Remote forwards set listen_host/port, local forwards set
4051 * host/port_to_connect.
4052 */
4053 permission_set_add(ssh, who, where,
4054 local ? host : 0, local ? port : 0,
4055 local ? NULL : host, NULL, local ? 0 : port, NULL);
4056 pset->all_permitted = 0;
4057}
4058
4059/*
4060 * Administratively disable forwarding.
4061 */
4062void
4063channel_disable_admin(struct ssh *ssh, int where)
4064{
4065 channel_clear_permission(ssh, FORWARD_ADM, where);
4066 permission_set_add(ssh, FORWARD_ADM, where,
4067 NULL, 0, NULL, NULL, 0, NULL);
4068}
4069
4070/*
4071 * Clear a list of permitted opens.
4072 */
4073void
4074channel_clear_permission(struct ssh *ssh, int who, int where)
4075{
4076 struct permission **permp;
4077 u_int *npermp;
4078
4079 permission_set_get_array(ssh, who, where, &permp, &npermp);
4080 *permp = xrecallocarray(*permp, *npermp, 0, sizeof(**permp));
4081 *npermp = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004082}
4083
Darren Tucker68afb8c2011-10-02 18:59:03 +11004084/*
4085 * Update the listen port for a dynamic remote forward, after
4086 * the actual 'newport' has been allocated. If 'newport' < 0 is
4087 * passed then they entry will be invalidated.
4088 */
4089void
djm@openbsd.org115063a2018-06-06 18:22:41 +00004090channel_update_permission(struct ssh *ssh, int idx, int newport)
Darren Tucker68afb8c2011-10-02 18:59:03 +11004091{
djm@openbsd.org115063a2018-06-06 18:22:41 +00004092 struct permission_set *pset = &ssh->chanctxt->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004093
djm@openbsd.org115063a2018-06-06 18:22:41 +00004094 if (idx < 0 || (u_int)idx >= pset->num_permitted_user) {
4095 debug("%s: index out of range: %d num_permitted_user %d",
4096 __func__, idx, pset->num_permitted_user);
Darren Tucker68afb8c2011-10-02 18:59:03 +11004097 return;
4098 }
4099 debug("%s allowed port %d for forwarding to host %s port %d",
4100 newport > 0 ? "Updating" : "Removing",
4101 newport,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004102 pset->permitted_user[idx].host_to_connect,
4103 pset->permitted_user[idx].port_to_connect);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004104 if (newport <= 0)
djm@openbsd.org115063a2018-06-06 18:22:41 +00004105 fwd_perm_clear(&pset->permitted_user[idx]);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004106 else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004107 pset->permitted_user[idx].listen_port =
Darren Tucker68afb8c2011-10-02 18:59:03 +11004108 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
Darren Tucker68afb8c2011-10-02 18:59:03 +11004109 }
4110}
4111
Darren Tucker1338b9e2011-10-02 18:57:35 +11004112/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
4113int
4114permitopen_port(const char *p)
4115{
4116 int port;
4117
4118 if (strcmp(p, "*") == 0)
4119 return FWD_PERMIT_ANY_PORT;
4120 if ((port = a2port(p)) > 0)
4121 return port;
4122 return -1;
4123}
4124
Damien Millerbd740252008-05-19 15:37:09 +10004125/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00004126static int
Damien Millerbd740252008-05-19 15:37:09 +10004127connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004128{
Damien Millerbd740252008-05-19 15:37:09 +10004129 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10004130 struct sockaddr_un *sunaddr;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004131 char ntop[NI_MAXHOST];
4132 char strport[MAXIMUM(NI_MAXSERV, sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11004133
Damien Millerbd740252008-05-19 15:37:09 +10004134 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004135 switch (cctx->ai->ai_family) {
4136 case AF_UNIX:
4137 /* unix:pathname instead of host:port */
4138 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
4139 strlcpy(ntop, "unix", sizeof(ntop));
4140 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
4141 break;
4142 case AF_INET:
4143 case AF_INET6:
4144 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
4145 ntop, sizeof(ntop), strport, sizeof(strport),
4146 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4147 error("connect_next: getnameinfo failed");
4148 continue;
4149 }
4150 break;
4151 default:
Damien Miller34132e52000-01-14 15:45:46 +11004152 continue;
4153 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11004154 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
4155 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004156 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11004157 error("socket: %.100s", strerror(errno));
4158 else
4159 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004160 continue;
4161 }
Damien Miller232711f2004-06-15 10:35:30 +10004162 if (set_nonblock(sock) == -1)
4163 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10004164 if (connect(sock, cctx->ai->ai_addr,
4165 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
4166 debug("connect_next: host %.100s ([%.100s]:%s): "
4167 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11004168 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10004169 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11004170 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004171 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00004172 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11004173 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004174 if (cctx->ai->ai_family != AF_UNIX)
4175 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10004176 debug("connect_next: host %.100s ([%.100s]:%s) "
4177 "in progress, fd=%d", cctx->host, ntop, strport, sock);
4178 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10004179 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11004180 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11004181 return -1;
4182}
Damien Millerb38eff82000-04-01 11:09:21 +10004183
Damien Millerbd740252008-05-19 15:37:09 +10004184static void
4185channel_connect_ctx_free(struct channel_connect *cctx)
4186{
Darren Tuckera627d422013-06-02 07:31:17 +10004187 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10004188 if (cctx->aitop) {
4189 if (cctx->aitop->ai_family == AF_UNIX)
4190 free(cctx->aitop);
4191 else
4192 freeaddrinfo(cctx->aitop);
4193 }
Damien Miller1d2c4562014-02-04 11:18:20 +11004194 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10004195}
4196
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004197/*
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004198 * Return connecting socket to remote host:port or local socket path,
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004199 * passing back the failure reason if appropriate.
4200 */
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004201static int
4202connect_to_helper(struct ssh *ssh, const char *name, int port, int socktype,
4203 char *ctype, char *rname, struct channel_connect *cctx,
4204 int *reason, const char **errmsg)
Damien Millerbd740252008-05-19 15:37:09 +10004205{
4206 struct addrinfo hints;
4207 int gaierr;
4208 int sock = -1;
4209 char strport[NI_MAXSERV];
Damien Miller7acefbb2014-07-18 14:11:24 +10004210
4211 if (port == PORT_STREAMLOCAL) {
4212 struct sockaddr_un *sunaddr;
4213 struct addrinfo *ai;
4214
4215 if (strlen(name) > sizeof(sunaddr->sun_path)) {
4216 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004217 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004218 }
4219
4220 /*
4221 * Fake up a struct addrinfo for AF_UNIX connections.
4222 * channel_connect_ctx_free() must check ai_family
4223 * and use free() not freeaddirinfo() for AF_UNIX.
4224 */
4225 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
4226 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
4227 ai->ai_addr = (struct sockaddr *)(ai + 1);
4228 ai->ai_addrlen = sizeof(*sunaddr);
4229 ai->ai_family = AF_UNIX;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004230 ai->ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004231 ai->ai_protocol = PF_UNSPEC;
4232 sunaddr = (struct sockaddr_un *)ai->ai_addr;
4233 sunaddr->sun_family = AF_UNIX;
4234 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004235 cctx->aitop = ai;
Damien Miller7acefbb2014-07-18 14:11:24 +10004236 } else {
4237 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004238 hints.ai_family = ssh->chanctxt->IPv4or6;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004239 hints.ai_socktype = socktype;
Damien Miller7acefbb2014-07-18 14:11:24 +10004240 snprintf(strport, sizeof strport, "%d", port);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004241 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop))
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004242 != 0) {
4243 if (errmsg != NULL)
4244 *errmsg = ssh_gai_strerror(gaierr);
4245 if (reason != NULL)
4246 *reason = SSH2_OPEN_CONNECT_FAILED;
Damien Miller7acefbb2014-07-18 14:11:24 +10004247 error("connect_to %.100s: unknown host (%s)", name,
4248 ssh_gai_strerror(gaierr));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004249 return -1;
Damien Miller7acefbb2014-07-18 14:11:24 +10004250 }
Damien Millerbd740252008-05-19 15:37:09 +10004251 }
4252
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004253 cctx->host = xstrdup(name);
4254 cctx->port = port;
4255 cctx->ai = cctx->aitop;
Damien Millerbd740252008-05-19 15:37:09 +10004256
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004257 if ((sock = connect_next(cctx)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004258 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10004259 name, port, strerror(errno));
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004260 return -1;
4261 }
4262
4263 return sock;
4264}
4265
4266/* Return CONNECTING channel to remote host:port or local socket path */
4267static Channel *
4268connect_to(struct ssh *ssh, const char *host, int port,
4269 char *ctype, char *rname)
4270{
4271 struct channel_connect cctx;
4272 Channel *c;
4273 int sock;
4274
4275 memset(&cctx, 0, sizeof(cctx));
4276 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4277 &cctx, NULL, NULL);
4278 if (sock == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10004279 channel_connect_ctx_free(&cctx);
4280 return NULL;
4281 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004282 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Millerbd740252008-05-19 15:37:09 +10004283 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004284 c->host_port = port;
4285 c->path = xstrdup(host);
Damien Millerbd740252008-05-19 15:37:09 +10004286 c->connect_ctx = cctx;
Damien Millerbd740252008-05-19 15:37:09 +10004287
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004288 return c;
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004289}
4290
markus@openbsd.org8d057842016-09-30 09:19:13 +00004291/*
4292 * returns either the newly connected channel or the downstream channel
4293 * that needs to deal with this connection.
4294 */
Damien Millerbd740252008-05-19 15:37:09 +10004295Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004296channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10004297 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10004298{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004299 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004300 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004301 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004302 struct permission *perm;
Damien Millerbd740252008-05-19 15:37:09 +10004303
djm@openbsd.org115063a2018-06-06 18:22:41 +00004304 for (i = 0; i < pset->num_permitted_user; i++) {
4305 perm = &pset->permitted_user[i];
4306 if (open_listen_match_tcpip(perm,
4307 listen_host, listen_port, 1)) {
4308 if (perm->downstream)
4309 return perm->downstream;
4310 if (perm->port_to_connect == 0)
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004311 return rdynamic_connect_prepare(ssh,
4312 ctype, rname);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004313 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004314 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004315 ctype, rname);
Damien Millerbd740252008-05-19 15:37:09 +10004316 }
4317 }
4318 error("WARNING: Server requests forwarding for unknown listen_port %d",
4319 listen_port);
4320 return NULL;
4321}
4322
Damien Miller7acefbb2014-07-18 14:11:24 +10004323Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004324channel_connect_by_listen_path(struct ssh *ssh, const char *path,
4325 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004326{
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;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004329 u_int i;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004330 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004331
djm@openbsd.org115063a2018-06-06 18:22:41 +00004332 for (i = 0; i < pset->num_permitted_user; i++) {
4333 perm = &pset->permitted_user[i];
4334 if (open_listen_match_streamlocal(perm, path)) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004335 return connect_to(ssh,
djm@openbsd.org115063a2018-06-06 18:22:41 +00004336 perm->host_to_connect, perm->port_to_connect,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004337 ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004338 }
4339 }
4340 error("WARNING: Server requests forwarding for unknown path %.100s",
4341 path);
4342 return NULL;
4343}
4344
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004345/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10004346Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004347channel_connect_to_port(struct ssh *ssh, const char *host, u_short port,
4348 char *ctype, char *rname, int *reason, const char **errmsg)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004349{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004350 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004351 struct permission_set *pset = &sc->local_perms;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004352 struct channel_connect cctx;
4353 Channel *c;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004354 u_int i, permit, permit_adm = 1;
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004355 int sock;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004356 struct permission *perm;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004357
djm@openbsd.org115063a2018-06-06 18:22:41 +00004358 permit = pset->all_permitted;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004359 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004360 for (i = 0; i < pset->num_permitted_user; i++) {
4361 perm = &pset->permitted_user[i];
4362 if (open_match(perm, host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004363 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004364 break;
4365 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004366 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004367 }
Damien Miller9b439df2006-07-24 14:04:00 +10004368
djm@openbsd.org115063a2018-06-06 18:22:41 +00004369 if (pset->num_permitted_admin > 0) {
Damien Miller9b439df2006-07-24 14:04:00 +10004370 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004371 for (i = 0; i < pset->num_permitted_admin; i++) {
4372 perm = &pset->permitted_admin[i];
4373 if (open_match(perm, host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10004374 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10004375 break;
4376 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004377 }
Damien Miller9b439df2006-07-24 14:04:00 +10004378 }
4379
4380 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10004381 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004382 "but the request was denied.", host, port);
dtucker@openbsd.org858252f2017-02-01 02:59:09 +00004383 if (reason != NULL)
4384 *reason = SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED;
Damien Millerbd740252008-05-19 15:37:09 +10004385 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004386 }
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004387
4388 memset(&cctx, 0, sizeof(cctx));
4389 sock = connect_to_helper(ssh, host, port, SOCK_STREAM, ctype, rname,
4390 &cctx, reason, errmsg);
4391 if (sock == -1) {
4392 channel_connect_ctx_free(&cctx);
4393 return NULL;
4394 }
4395
4396 c = channel_new(ssh, ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
4397 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4398 c->host_port = port;
4399 c->path = xstrdup(host);
4400 c->connect_ctx = cctx;
4401
4402 return c;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00004403}
4404
Damien Miller7acefbb2014-07-18 14:11:24 +10004405/* Check if connecting to that path is permitted and connect. */
4406Channel *
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004407channel_connect_to_path(struct ssh *ssh, const char *path,
4408 char *ctype, char *rname)
Damien Miller7acefbb2014-07-18 14:11:24 +10004409{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004410 struct ssh_channels *sc = ssh->chanctxt;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004411 struct permission_set *pset = &sc->local_perms;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004412 u_int i, permit, permit_adm = 1;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004413 struct permission *perm;
Damien Miller7acefbb2014-07-18 14:11:24 +10004414
djm@openbsd.org115063a2018-06-06 18:22:41 +00004415 permit = pset->all_permitted;
Damien Miller7acefbb2014-07-18 14:11:24 +10004416 if (!permit) {
djm@openbsd.org115063a2018-06-06 18:22:41 +00004417 for (i = 0; i < pset->num_permitted_user; i++) {
4418 perm = &pset->permitted_user[i];
4419 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004420 permit = 1;
4421 break;
4422 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004423 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004424 }
4425
djm@openbsd.org115063a2018-06-06 18:22:41 +00004426 if (pset->num_permitted_admin > 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004427 permit_adm = 0;
djm@openbsd.org115063a2018-06-06 18:22:41 +00004428 for (i = 0; i < pset->num_permitted_admin; i++) {
4429 perm = &pset->permitted_admin[i];
4430 if (open_match(perm, path, PORT_STREAMLOCAL)) {
Damien Miller7acefbb2014-07-18 14:11:24 +10004431 permit_adm = 1;
4432 break;
4433 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004434 }
Damien Miller7acefbb2014-07-18 14:11:24 +10004435 }
4436
4437 if (!permit || !permit_adm) {
4438 logit("Received request to connect to path %.100s, "
4439 "but the request was denied.", path);
4440 return NULL;
4441 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004442 return connect_to(ssh, path, PORT_STREAMLOCAL, ctype, rname);
Damien Miller7acefbb2014-07-18 14:11:24 +10004443}
4444
Damien Miller0e220db2004-06-15 10:34:08 +10004445void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004446channel_send_window_changes(struct ssh *ssh)
Damien Miller0e220db2004-06-15 10:34:08 +10004447{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004448 struct ssh_channels *sc = ssh->chanctxt;
Damien Miller0e220db2004-06-15 10:34:08 +10004449 struct winsize ws;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004450 int r;
4451 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10004452
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004453 for (i = 0; i < sc->channels_alloc; i++) {
4454 if (sc->channels[i] == NULL || !sc->channels[i]->client_tty ||
4455 sc->channels[i]->type != SSH_CHANNEL_OPEN)
Damien Miller0e220db2004-06-15 10:34:08 +10004456 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004457 if (ioctl(sc->channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
Damien Miller0e220db2004-06-15 10:34:08 +10004458 continue;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004459 channel_request_start(ssh, i, "window-change", 0);
4460 if ((r = sshpkt_put_u32(ssh, (u_int)ws.ws_col)) != 0 ||
4461 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_row)) != 0 ||
4462 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_xpixel)) != 0 ||
4463 (r = sshpkt_put_u32(ssh, (u_int)ws.ws_ypixel)) != 0 ||
4464 (r = sshpkt_send(ssh)) != 0)
4465 fatal("%s: channel %u: send window-change: %s",
4466 __func__, i, ssh_err(r));
Damien Miller0e220db2004-06-15 10:34:08 +10004467 }
4468}
4469
markus@openbsd.org609d7a62017-09-21 19:16:53 +00004470/* Return RDYNAMIC_OPEN channel: channel allows SOCKS, but is not connected */
4471static Channel *
4472rdynamic_connect_prepare(struct ssh *ssh, char *ctype, char *rname)
4473{
4474 Channel *c;
4475 int r;
4476
4477 c = channel_new(ssh, ctype, SSH_CHANNEL_RDYNAMIC_OPEN, -1, -1, -1,
4478 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
4479 c->host_port = 0;
4480 c->path = NULL;
4481
4482 /*
4483 * We need to open the channel before we have a FD,
4484 * so that we can get SOCKS header from peer.
4485 */
4486 if ((r = sshpkt_start(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION)) != 0 ||
4487 (r = sshpkt_put_u32(ssh, c->remote_id)) != 0 ||
4488 (r = sshpkt_put_u32(ssh, c->self)) != 0 ||
4489 (r = sshpkt_put_u32(ssh, c->local_window)) != 0 ||
4490 (r = sshpkt_put_u32(ssh, c->local_maxpacket)) != 0) {
4491 fatal("%s: channel %i: confirm: %s", __func__,
4492 c->self, ssh_err(r));
4493 }
4494 return c;
4495}
4496
4497/* Return CONNECTING socket to remote host:port or local socket path */
4498static int
4499rdynamic_connect_finish(struct ssh *ssh, Channel *c)
4500{
4501 struct channel_connect cctx;
4502 int sock;
4503
4504 memset(&cctx, 0, sizeof(cctx));
4505 sock = connect_to_helper(ssh, c->path, c->host_port, SOCK_STREAM, NULL,
4506 NULL, &cctx, NULL, NULL);
4507 if (sock == -1)
4508 channel_connect_ctx_free(&cctx);
4509 else {
4510 /* similar to SSH_CHANNEL_CONNECTING but we've already sent the open */
4511 c->type = SSH_CHANNEL_RDYNAMIC_FINISH;
4512 c->connect_ctx = cctx;
4513 channel_register_fds(ssh, c, sock, sock, -1, 0, 1, 0);
4514 }
4515 return sock;
4516}
4517
Ben Lindstrome9c99912001-06-09 00:41:05 +00004518/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004519
Damien Miller5428f641999-11-25 11:54:57 +11004520/*
4521 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004522 * Returns 0 and a suitable display number for the DISPLAY variable
4523 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11004524 */
Kevin Steves366298c2001-12-19 17:58:01 +00004525int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004526x11_create_display_inet(struct ssh *ssh, int x11_display_offset,
4527 int x11_use_localhost, int single_connection,
4528 u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004529{
Damien Millere7378562001-12-21 14:58:35 +11004530 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11004531 int display_number, sock;
4532 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11004533 struct addrinfo hints, *ai, *aitop;
4534 char strport[NI_MAXSERV];
4535 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004536
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004537 if (chanids == NULL)
4538 return -1;
4539
Damien Millera34a28b1999-12-14 10:47:15 +11004540 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11004541 display_number < MAX_DISPLAYS;
4542 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11004543 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11004544 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004545 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11004546 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11004547 hints.ai_socktype = SOCK_STREAM;
4548 snprintf(strport, sizeof strport, "%d", port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004549 if ((gaierr = getaddrinfo(NULL, strport,
4550 &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004551 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00004552 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004553 }
Damien Miller34132e52000-01-14 15:45:46 +11004554 for (ai = aitop; ai; ai = ai->ai_next) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004555 if (ai->ai_family != AF_INET &&
4556 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11004557 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11004558 sock = socket(ai->ai_family, ai->ai_socktype,
4559 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004560 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11004561 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
4562#ifdef EPFNOSUPPORT
4563 && (errno != EPFNOSUPPORT)
4564#endif
4565 ) {
Damien Millere2192732000-01-17 13:22:55 +11004566 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10004567 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00004568 return -1;
Damien Millere2192732000-01-17 13:22:55 +11004569 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11004570 debug("x11_create_display_inet: Socket family %d not supported",
4571 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11004572 continue;
4573 }
Damien Miller34132e52000-01-14 15:45:46 +11004574 }
Damien Miller04ee0f82009-11-18 17:48:30 +11004575 if (ai->ai_family == AF_INET6)
4576 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10004577 if (x11_use_localhost)
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00004578 set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11004579 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004580 debug2("%s: bind port %d: %.100s", __func__,
4581 port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004582 close(sock);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004583 for (n = 0; n < num_socks; n++)
Damien Miller34132e52000-01-14 15:45:46 +11004584 close(socks[n]);
Damien Miller34132e52000-01-14 15:45:46 +11004585 num_socks = 0;
4586 break;
4587 }
4588 socks[num_socks++] = sock;
4589 if (num_socks == NUM_SOCKS)
4590 break;
Damien Miller95def091999-11-25 00:26:21 +11004591 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00004592 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11004593 if (num_socks > 0)
4594 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004595 }
Damien Miller95def091999-11-25 00:26:21 +11004596 if (display_number >= MAX_DISPLAYS) {
4597 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00004598 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004599 }
Damien Miller95def091999-11-25 00:26:21 +11004600 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11004601 for (n = 0; n < num_socks; n++) {
4602 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11004603 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11004604 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11004605 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00004606 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11004607 }
Damien Miller95def091999-11-25 00:26:21 +11004608 }
Damien Miller34132e52000-01-14 15:45:46 +11004609
Damien Miller34132e52000-01-14 15:45:46 +11004610 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11004611 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11004612 for (n = 0; n < num_socks; n++) {
4613 sock = socks[n];
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004614 nc = channel_new(ssh, "x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10004615 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
4616 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10004617 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11004618 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004619 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11004620 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10004621 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004622
Kevin Steves366298c2001-12-19 17:58:01 +00004623 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00004624 *display_numberp = display_number;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004625 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004626}
4627
Ben Lindstrombba81212001-06-25 05:01:22 +00004628static int
Damien Miller819dbb62009-01-21 16:46:26 +11004629connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004630{
Damien Miller95def091999-11-25 00:26:21 +11004631 int sock;
4632 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004633
Damien Miller3afe3752001-12-21 12:39:51 +11004634 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4635 if (sock < 0)
4636 error("socket: %.100s", strerror(errno));
4637 memset(&addr, 0, sizeof(addr));
4638 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004639 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004640 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004641 return sock;
4642 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004643 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4644 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004645}
4646
Damien Miller819dbb62009-01-21 16:46:26 +11004647static int
4648connect_local_xsocket(u_int dnr)
4649{
4650 char buf[1024];
4651 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4652 return connect_local_xsocket_path(buf);
4653}
4654
Darren Tuckerda39b092017-03-10 13:22:32 +11004655#ifdef __APPLE__
4656static int
4657is_path_to_xsocket(const char *display, char *path, size_t pathlen)
4658{
4659 struct stat sbuf;
4660
4661 if (strlcpy(path, display, pathlen) >= pathlen) {
4662 error("%s: display path too long", __func__);
4663 return 0;
4664 }
4665 if (display[0] != '/')
4666 return 0;
4667 if (stat(path, &sbuf) == 0) {
4668 return 1;
4669 } else {
4670 char *dot = strrchr(path, '.');
4671 if (dot != NULL) {
4672 *dot = '\0';
4673 if (stat(path, &sbuf) == 0) {
4674 return 1;
4675 }
4676 }
4677 }
4678 return 0;
4679}
4680#endif
4681
Damien Millerbd483e72000-04-30 10:00:53 +10004682int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004683x11_connect_display(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004684{
Damien Miller57c4e872006-03-31 23:11:07 +11004685 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004686 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004687 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004688 struct addrinfo hints, *ai, *aitop;
4689 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004690 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004691
Damien Miller95def091999-11-25 00:26:21 +11004692 /* Try to open a socket for the local X server. */
4693 display = getenv("DISPLAY");
4694 if (!display) {
4695 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004696 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004697 }
Damien Miller5428f641999-11-25 11:54:57 +11004698 /*
4699 * Now we decode the value of the DISPLAY variable and make a
4700 * connection to the real X server.
4701 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004702
Damien Miller819dbb62009-01-21 16:46:26 +11004703#ifdef __APPLE__
Darren Tuckerda39b092017-03-10 13:22:32 +11004704 /* Check if display is a path to a socket (as set by launchd). */
4705 {
4706 char path[PATH_MAX];
Damien Miller819dbb62009-01-21 16:46:26 +11004707
Darren Tuckerda39b092017-03-10 13:22:32 +11004708 if (is_path_to_xsocket(display, path, sizeof(path))) {
4709 debug("x11_connect_display: $DISPLAY is launchd");
4710
4711 /* Create a socket. */
4712 sock = connect_local_xsocket_path(path);
4713 if (sock < 0)
4714 return -1;
4715
4716 /* OK, we now have a connection to the display. */
4717 return sock;
4718 }
Damien Miller819dbb62009-01-21 16:46:26 +11004719 }
4720#endif
Damien Miller5428f641999-11-25 11:54:57 +11004721 /*
4722 * Check if it is a unix domain socket. Unix domain displays are in
4723 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4724 */
Damien Miller95def091999-11-25 00:26:21 +11004725 if (strncmp(display, "unix:", 5) == 0 ||
4726 display[0] == ':') {
4727 /* Connect to the unix domain socket. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004728 if (sscanf(strrchr(display, ':') + 1, "%u",
4729 &display_number) != 1) {
4730 error("Could not parse display number from DISPLAY: "
4731 "%.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004732 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004733 }
4734 /* Create a socket. */
4735 sock = connect_local_xsocket(display_number);
4736 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004737 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004738
4739 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004740 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004741 }
Damien Miller5428f641999-11-25 11:54:57 +11004742 /*
4743 * Connect to an inet socket. The DISPLAY value is supposedly
4744 * hostname:d[.s], where hostname may also be numeric IP address.
4745 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004746 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004747 cp = strchr(buf, ':');
4748 if (!cp) {
4749 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004750 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004751 }
Damien Miller95def091999-11-25 00:26:21 +11004752 *cp = 0;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004753 /*
4754 * buf now contains the host name. But first we parse the
4755 * display number.
4756 */
Damien Miller57c4e872006-03-31 23:11:07 +11004757 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004758 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004759 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004760 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004761 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004762
Damien Miller34132e52000-01-14 15:45:46 +11004763 /* Look up the host address */
4764 memset(&hints, 0, sizeof(hints));
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004765 hints.ai_family = ssh->chanctxt->IPv4or6;
Damien Miller34132e52000-01-14 15:45:46 +11004766 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004767 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004768 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004769 error("%.100s: unknown host. (%s)", buf,
4770 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004771 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004772 }
Damien Miller34132e52000-01-14 15:45:46 +11004773 for (ai = aitop; ai; ai = ai->ai_next) {
4774 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004775 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004776 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004777 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004778 continue;
4779 }
4780 /* Connect it to the display. */
4781 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004782 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004783 6000 + display_number, strerror(errno));
4784 close(sock);
4785 continue;
4786 }
4787 /* Success */
4788 break;
Damien Miller34132e52000-01-14 15:45:46 +11004789 }
Damien Miller34132e52000-01-14 15:45:46 +11004790 freeaddrinfo(aitop);
4791 if (!ai) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004792 error("connect %.100s port %u: %.100s", buf,
4793 6000 + display_number, strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004794 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004795 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004796 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004797 return sock;
4798}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004799
Damien Millerbd483e72000-04-30 10:00:53 +10004800/*
Damien Miller5428f641999-11-25 11:54:57 +11004801 * Requests forwarding of X11 connections, generates fake authentication
4802 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004803 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004804 */
Damien Miller4af51302000-04-16 11:18:38 +10004805void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004806x11_request_forwarding_with_spoofing(struct ssh *ssh, int client_session_id,
4807 const char *disp, const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004808{
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004809 struct ssh_channels *sc = ssh->chanctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +00004810 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004811 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004812 const char *cp;
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004813 char *new_data;
4814 int r, screen_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004815
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004816 if (sc->x11_saved_display == NULL)
4817 sc->x11_saved_display = xstrdup(disp);
4818 else if (strcmp(disp, sc->x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004819 error("x11_request_forwarding_with_spoofing: different "
4820 "$DISPLAY already forwarded");
4821 return;
4822 }
4823
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004824 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004825 if (cp)
4826 cp = strchr(cp, '.');
4827 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004828 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004829 else
4830 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004831
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004832 if (sc->x11_saved_proto == NULL) {
Damien Miller13390022005-07-06 09:44:19 +10004833 /* Save protocol name. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004834 sc->x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004835
4836 /* Extract real authentication data. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004837 sc->x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004838 for (i = 0; i < data_len; i++) {
4839 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4840 fatal("x11_request_forwarding: bad "
4841 "authentication data: %.100s", data);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004842 sc->x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004843 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004844 sc->x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004845
4846 /* Generate fake data of the same length. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004847 sc->x11_fake_data = xmalloc(data_len);
4848 arc4random_buf(sc->x11_fake_data, data_len);
4849 sc->x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004850 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004851
Damien Miller95def091999-11-25 00:26:21 +11004852 /* Convert the fake data into hex. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004853 new_data = tohex(sc->x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004854
Damien Miller95def091999-11-25 00:26:21 +11004855 /* Send the request packet. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00004856 channel_request_start(ssh, client_session_id, "x11-req", want_reply);
4857 if ((r = sshpkt_put_u8(ssh, 0)) != 0 || /* bool: single connection */
4858 (r = sshpkt_put_cstring(ssh, proto)) != 0 ||
4859 (r = sshpkt_put_cstring(ssh, new_data)) != 0 ||
4860 (r = sshpkt_put_u32(ssh, screen_number)) != 0 ||
4861 (r = sshpkt_send(ssh)) != 0 ||
4862 (r = ssh_packet_write_wait(ssh)) != 0)
4863 fatal("%s: send x11-req: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10004864 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004865}