blob: 5d8c2a0c0490bfc12864086667ece8edc5f761b5 [file] [log] [blame]
natano@openbsd.org49271082016-09-19 07:52:42 +00001/* $OpenBSD: channels.c,v 1.353 2016/09/19 07:52:42 natano 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>
Damien Millerb8fe89c2006-07-24 14:51:00 +100058#include <netdb.h>
Darren Tucker37f92202015-02-23 03:07:24 +110059#ifdef HAVE_STDINT_H
millert@openbsd.orgfd368342015-02-06 23:21:59 +000060#include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110061#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100062#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100063#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100064#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110065#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100066#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100067#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Millerb84886b2008-05-19 15:05:07 +100069#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100070#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000072#include "ssh1.h"
73#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000075#include "log.h"
76#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100077#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100081#include "key.h"
82#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110083#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Ben Lindstrome9c99912001-06-09 00:41:05 +000085/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * Pointer to an array containing all allocated channels. The array is
89 * dynamically extended as needed.
90 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000095 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110096 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100097static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000101 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +1100102 */
Damien Miller5e953212001-01-30 09:14:00 +1100103static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Ben Lindstrome9c99912001-06-09 00:41:05 +0000106/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Data structure for storing which hosts are permitted for forward requests.
110 * The local sides of any remote forwards are stored in this array to prevent
111 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
112 * network (which might be behind a firewall).
113 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000114/* XXX: streamlocal wants a path instead of host:port */
115/* Overload host_to_connect; we could just make this match Forward */
116/* XXX - can we use listen_host instead of listen_path? */
Damien Miller95def091999-11-25 00:26:21 +1100117typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000118 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000119 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000120 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000121 char *listen_path; /* Remote side should listen path. */
122 int listen_port; /* Remote side should listen port. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123} ForwardPermission;
124
Damien Miller9b439df2006-07-24 14:04:00 +1000125/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000126static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000127
Damien Miller9b439df2006-07-24 14:04:00 +1000128/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000129static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000130
131/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000133
134/* Number of permitted host/port pair in the array permitted by the admin. */
135static int num_adm_permitted_opens = 0;
136
Darren Tucker1338b9e2011-10-02 18:57:35 +1100137/* special-case port number meaning allow any port */
138#define FWD_PERMIT_ANY_PORT 0
139
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +0000140/* special-case wildcard meaning allow any host */
141#define FWD_PERMIT_ANY_HOST "*"
142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * If this is true, all opens are permitted. This is the case on the server
145 * on which we have to trust the client anyway, and the user could do
146 * anything after logging in anyway.
147 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148static int all_opens_permitted = 0;
149
Ben Lindstrome9c99912001-06-09 00:41:05 +0000150
151/* -- X11 forwarding */
152
153/* Maximum number of fake X11 displays to try. */
154#define MAX_DISPLAYS 1000
155
Damien Miller13390022005-07-06 09:44:19 +1000156/* Saved X11 local (client) display. */
157static char *x11_saved_display = NULL;
158
Ben Lindstrome9c99912001-06-09 00:41:05 +0000159/* Saved X11 authentication protocol name. */
160static char *x11_saved_proto = NULL;
161
162/* Saved X11 authentication data. This is the real data. */
163static char *x11_saved_data = NULL;
164static u_int x11_saved_data_len = 0;
165
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000166/* Deadline after which all X11 connections are refused */
167static u_int x11_refuse_time;
168
Ben Lindstrome9c99912001-06-09 00:41:05 +0000169/*
170 * Fake X11 authentication data. This is what the server will be sending us;
171 * we should replace any occurrences of this by the real data.
172 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100173static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000174static u_int x11_fake_data_len;
175
176
177/* -- agent forwarding */
178
179#define NUM_SOCKS 10
180
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000181/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000182static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000183
Ben Lindstrome9c99912001-06-09 00:41:05 +0000184/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000185static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000186
Damien Millerbd740252008-05-19 15:37:09 +1000187/* non-blocking connect helpers */
188static int connect_next(struct channel_connect *);
189static void channel_connect_ctx_free(struct channel_connect *);
190
Ben Lindstrome9c99912001-06-09 00:41:05 +0000191/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000192
193Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100194channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000195{
196 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000197
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000198 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100199 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000200 return NULL;
201 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000202 c = channels[id];
203 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100204 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000205 return NULL;
206 }
207 return c;
208}
209
Damien Miller5428f641999-11-25 11:54:57 +1100210/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100211 * Returns the channel if it is allowed to receive protocol messages.
212 * Private channels, like listening sockets, may not receive messages.
213 */
214Channel *
215channel_lookup(int id)
216{
217 Channel *c;
218
219 if ((c = channel_by_id(id)) == NULL)
220 return (NULL);
221
Damien Millerd62f2ca2006-03-26 13:57:41 +1100222 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100223 case SSH_CHANNEL_X11_OPEN:
224 case SSH_CHANNEL_LARVAL:
225 case SSH_CHANNEL_CONNECTING:
226 case SSH_CHANNEL_DYNAMIC:
227 case SSH_CHANNEL_OPENING:
228 case SSH_CHANNEL_OPEN:
229 case SSH_CHANNEL_INPUT_DRAINING:
230 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller36187092013-06-10 13:07:11 +1000231 case SSH_CHANNEL_ABANDONED:
Damien Millerd47c62a2005-12-13 19:33:57 +1100232 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100233 }
234 logit("Non-public channel %d, type %d.", id, c->type);
235 return (NULL);
236}
237
238/*
Damien Millere247cc42000-05-07 12:03:14 +1000239 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000240 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100241 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100243channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000244 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245{
Damien Miller95def091999-11-25 00:26:21 +1100246 /* Update the maximum file descriptor value. */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000247 channel_max_fd = MAXIMUM(channel_max_fd, rfd);
248 channel_max_fd = MAXIMUM(channel_max_fd, wfd);
249 channel_max_fd = MAXIMUM(channel_max_fd, efd);
Damien Miller5e953212001-01-30 09:14:00 +1100250
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100251 if (rfd != -1)
252 fcntl(rfd, F_SETFD, FD_CLOEXEC);
253 if (wfd != -1 && wfd != rfd)
254 fcntl(wfd, F_SETFD, FD_CLOEXEC);
255 if (efd != -1 && efd != rfd && efd != wfd)
256 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000257
Damien Miller6f83b8e2000-05-02 09:23:45 +1000258 c->rfd = rfd;
259 c->wfd = wfd;
260 c->sock = (rfd == wfd) ? rfd : -1;
261 c->efd = efd;
262 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100263
Darren Tuckered3cdc02008-06-16 23:29:18 +1000264 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000265 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000266#ifdef _AIX
267 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000268 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000269#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100270
Damien Miller69b69aa2000-10-28 14:19:58 +1100271 /* enable nonblocking mode */
272 if (nonblock) {
273 if (rfd != -1)
274 set_nonblock(rfd);
275 if (wfd != -1)
276 set_nonblock(wfd);
277 if (efd != -1)
278 set_nonblock(efd);
279 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000280}
281
282/*
283 * Allocate a new channel object and set its type and socket. This will cause
284 * remote_name to be freed.
285 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000286Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000287channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000288 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000289{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000290 int found;
291 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000292 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller95def091999-11-25 00:26:21 +1100294 /* Do initial allocation if this is the first call. */
295 if (channels_alloc == 0) {
296 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100297 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100298 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000299 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100300 }
301 /* Try to find a free slot where to put the new channel. */
302 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000303 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100304 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000305 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100306 break;
307 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000308 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100309 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100310 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000311 if (channels_alloc > 10000)
312 fatal("channel_new: internal error: channels_alloc %d "
313 "too big.", channels_alloc);
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000314 channels = xreallocarray(channels, channels_alloc + 10,
Damien Miller36812092006-03-26 14:22:47 +1100315 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000316 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100317 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100318 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000319 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100320 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000321 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100322 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100323 buffer_init(&c->input);
324 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000325 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100326 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000327 c->listening_addr = NULL;
328 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100329 c->ostate = CHAN_OUTPUT_OPEN;
330 c->istate = CHAN_INPUT_OPEN;
331 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000332 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000333 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100334 c->self = found;
335 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000336 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000337 c->local_window = window;
338 c->local_window_max = window;
339 c->local_consumed = 0;
340 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100341 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000342 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000343 c->remote_window = 0;
344 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000345 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100346 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000347 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100348 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000349 c->open_confirm = NULL;
350 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000351 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100352 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000353 c->filter_ctx = NULL;
354 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100355 c->ctl_chan = -1;
356 c->mux_rcb = NULL;
357 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000358 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100359 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000360 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100361 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000362 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000364
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000365static int
366channel_find_maxfd(void)
367{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000368 u_int i;
369 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000370 Channel *c;
371
372 for (i = 0; i < channels_alloc; i++) {
373 c = channels[i];
374 if (c != NULL) {
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000375 max = MAXIMUM(max, c->rfd);
376 max = MAXIMUM(max, c->wfd);
377 max = MAXIMUM(max, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000378 }
379 }
380 return max;
381}
382
383int
384channel_close_fd(int *fdp)
385{
386 int ret = 0, fd = *fdp;
387
388 if (fd != -1) {
389 ret = close(fd);
390 *fdp = -1;
391 if (fd == channel_max_fd)
392 channel_max_fd = channel_find_maxfd();
393 }
394 return ret;
395}
396
Damien Miller6f83b8e2000-05-02 09:23:45 +1000397/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000398static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000399channel_close_fds(Channel *c)
400{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000401 channel_close_fd(&c->sock);
402 channel_close_fd(&c->rfd);
403 channel_close_fd(&c->wfd);
404 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000405}
406
407/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000408void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000409channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000411 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000412 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000413 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000414
415 for (n = 0, i = 0; i < channels_alloc; i++)
416 if (channels[i])
417 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000418 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000419 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000420
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000421 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000422 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000423 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000424
Damien Miller6f83b8e2000-05-02 09:23:45 +1000425 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000426 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000427 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000428 buffer_free(&c->input);
429 buffer_free(&c->output);
430 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000431 free(c->remote_name);
432 c->remote_name = NULL;
433 free(c->path);
434 c->path = NULL;
435 free(c->listening_addr);
436 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000437 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
438 if (cc->abandon_cb != NULL)
439 cc->abandon_cb(c, cc->ctx);
440 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100441 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000442 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000443 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000444 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
445 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000446 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000447 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448}
449
Ben Lindstrome9c99912001-06-09 00:41:05 +0000450void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000451channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000452{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000453 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000454
Ben Lindstrom601e4362001-06-21 03:19:23 +0000455 for (i = 0; i < channels_alloc; i++)
456 if (channels[i] != NULL)
457 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000458}
459
460/*
461 * Closes the sockets/fds of all channels. This is used to close extra file
462 * descriptors after a fork.
463 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000464void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000465channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000466{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000467 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000468
469 for (i = 0; i < channels_alloc; i++)
470 if (channels[i] != NULL)
471 channel_close_fds(channels[i]);
472}
473
474/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000475 * Stop listening to channels.
476 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000477void
478channel_stop_listening(void)
479{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000480 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000481 Channel *c;
482
483 for (i = 0; i < channels_alloc; i++) {
484 c = channels[i];
485 if (c != NULL) {
486 switch (c->type) {
487 case SSH_CHANNEL_AUTH_SOCKET:
488 case SSH_CHANNEL_PORT_LISTENER:
489 case SSH_CHANNEL_RPORT_LISTENER:
490 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000491 case SSH_CHANNEL_UNIX_LISTENER:
492 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000493 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000494 channel_free(c);
495 break;
496 }
497 }
498 }
499}
500
501/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502 * Returns true if no channel has too much buffered data, and false if one or
503 * more channel is overfull.
504 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000505int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000506channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000507{
508 u_int i;
509 Channel *c;
510
511 for (i = 0; i < channels_alloc; i++) {
512 c = channels[i];
513 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000514#if 0
515 if (!compat20 &&
516 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100517 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000518 c->self, buffer_len(&c->input));
519 return 0;
520 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000521#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000522 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000523 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000524 c->self, buffer_len(&c->output),
525 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526 return 0;
527 }
528 }
529 }
530 return 1;
531}
532
533/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000534int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000535channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000536{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000537 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000538 Channel *c;
539
540 for (i = 0; i < channels_alloc; i++) {
541 c = channels[i];
542 if (c == NULL)
543 continue;
544 switch (c->type) {
545 case SSH_CHANNEL_X11_LISTENER:
546 case SSH_CHANNEL_PORT_LISTENER:
547 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100548 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000549 case SSH_CHANNEL_CLOSED:
550 case SSH_CHANNEL_AUTH_SOCKET:
551 case SSH_CHANNEL_DYNAMIC:
552 case SSH_CHANNEL_CONNECTING:
553 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000554 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000555 case SSH_CHANNEL_UNIX_LISTENER:
556 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557 continue;
558 case SSH_CHANNEL_LARVAL:
559 if (!compat20)
560 fatal("cannot happen: SSH_CHANNEL_LARVAL");
561 continue;
562 case SSH_CHANNEL_OPENING:
563 case SSH_CHANNEL_OPEN:
564 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100565 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566 return 1;
567 case SSH_CHANNEL_INPUT_DRAINING:
568 case SSH_CHANNEL_OUTPUT_DRAINING:
569 if (!compat13)
570 fatal("cannot happen: OUT_DRAIN");
571 return 1;
572 default:
573 fatal("channel_still_open: bad channel type %d", c->type);
574 /* NOTREACHED */
575 }
576 }
577 return 0;
578}
579
580/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000581int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000582channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000583{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000584 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000585 Channel *c;
586
587 for (i = 0; i < channels_alloc; i++) {
588 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000589 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000590 continue;
591 switch (c->type) {
592 case SSH_CHANNEL_CLOSED:
593 case SSH_CHANNEL_DYNAMIC:
594 case SSH_CHANNEL_X11_LISTENER:
595 case SSH_CHANNEL_PORT_LISTENER:
596 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100597 case SSH_CHANNEL_MUX_LISTENER:
598 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000599 case SSH_CHANNEL_OPENING:
600 case SSH_CHANNEL_CONNECTING:
601 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000602 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000603 case SSH_CHANNEL_UNIX_LISTENER:
604 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605 continue;
606 case SSH_CHANNEL_LARVAL:
607 case SSH_CHANNEL_AUTH_SOCKET:
608 case SSH_CHANNEL_OPEN:
609 case SSH_CHANNEL_X11_OPEN:
610 return i;
611 case SSH_CHANNEL_INPUT_DRAINING:
612 case SSH_CHANNEL_OUTPUT_DRAINING:
613 if (!compat13)
614 fatal("cannot happen: OUT_DRAIN");
615 return i;
616 default:
617 fatal("channel_find_open: bad channel type %d", c->type);
618 /* NOTREACHED */
619 }
620 }
621 return -1;
622}
623
624
625/*
626 * Returns a message describing the currently open forwarded connections,
627 * suitable for sending to the client. The message contains crlf pairs for
628 * newlines.
629 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000630char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000631channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632{
633 Buffer buffer;
634 Channel *c;
635 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000636 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000637
638 buffer_init(&buffer);
639 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
640 buffer_append(&buffer, buf, strlen(buf));
641 for (i = 0; i < channels_alloc; i++) {
642 c = channels[i];
643 if (c == NULL)
644 continue;
645 switch (c->type) {
646 case SSH_CHANNEL_X11_LISTENER:
647 case SSH_CHANNEL_PORT_LISTENER:
648 case SSH_CHANNEL_RPORT_LISTENER:
649 case SSH_CHANNEL_CLOSED:
650 case SSH_CHANNEL_AUTH_SOCKET:
651 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000652 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100653 case SSH_CHANNEL_MUX_CLIENT:
654 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000655 case SSH_CHANNEL_UNIX_LISTENER:
656 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657 continue;
658 case SSH_CHANNEL_LARVAL:
659 case SSH_CHANNEL_OPENING:
660 case SSH_CHANNEL_CONNECTING:
661 case SSH_CHANNEL_DYNAMIC:
662 case SSH_CHANNEL_OPEN:
663 case SSH_CHANNEL_X11_OPEN:
664 case SSH_CHANNEL_INPUT_DRAINING:
665 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000666 snprintf(buf, sizeof buf,
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000667 " #%d %.300s (t%d r%d i%u/%d o%u/%d fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 c->self, c->remote_name,
669 c->type, c->remote_id,
670 c->istate, buffer_len(&c->input),
671 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100672 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673 buffer_append(&buffer, buf, strlen(buf));
674 continue;
675 default:
676 fatal("channel_open_message: bad channel type %d", c->type);
677 /* NOTREACHED */
678 }
679 }
680 buffer_append(&buffer, "\0", 1);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +0000681 cp = xstrdup((char *)buffer_ptr(&buffer));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682 buffer_free(&buffer);
683 return cp;
684}
685
686void
687channel_send_open(int id)
688{
689 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000690
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000692 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 return;
694 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000695 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696 packet_start(SSH2_MSG_CHANNEL_OPEN);
697 packet_put_cstring(c->ctype);
698 packet_put_int(c->self);
699 packet_put_int(c->local_window);
700 packet_put_int(c->local_maxpacket);
701 packet_send();
702}
703
704void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000705channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000707 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000708
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000710 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711 return;
712 }
Damien Miller0e220db2004-06-15 10:34:08 +1000713 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714 packet_start(SSH2_MSG_CHANNEL_REQUEST);
715 packet_put_int(c->remote_id);
716 packet_put_cstring(service);
717 packet_put_char(wantconfirm);
718}
Damien Miller4f7becb2006-03-26 14:10:14 +1100719
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720void
Damien Millerb84886b2008-05-19 15:05:07 +1000721channel_register_status_confirm(int id, channel_confirm_cb *cb,
722 channel_confirm_abandon_cb *abandon_cb, void *ctx)
723{
724 struct channel_confirm *cc;
725 Channel *c;
726
727 if ((c = channel_lookup(id)) == NULL)
728 fatal("channel_register_expect: %d: bad id", id);
729
Damien Miller6c81fee2013-11-08 12:19:55 +1100730 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000731 cc->cb = cb;
732 cc->abandon_cb = abandon_cb;
733 cc->ctx = ctx;
734 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
735}
736
737void
Damien Millerd530f5f2010-05-21 14:57:10 +1000738channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739{
740 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000741
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100743 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744 return;
745 }
Damien Millerb84886b2008-05-19 15:05:07 +1000746 c->open_confirm = fn;
747 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748}
Damien Miller4f7becb2006-03-26 14:10:14 +1100749
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750void
Damien Miller39eda6e2005-11-05 14:52:50 +1100751channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752{
Damien Millerd47c62a2005-12-13 19:33:57 +1100753 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000754
Ben Lindstrome9c99912001-06-09 00:41:05 +0000755 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000756 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000757 return;
758 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000759 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100760 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761}
Damien Miller4f7becb2006-03-26 14:10:14 +1100762
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763void
764channel_cancel_cleanup(int id)
765{
Damien Millerd47c62a2005-12-13 19:33:57 +1100766 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000767
Ben Lindstrome9c99912001-06-09 00:41:05 +0000768 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000769 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770 return;
771 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000772 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100773 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000774}
Damien Miller4f7becb2006-03-26 14:10:14 +1100775
Ben Lindstrome9c99912001-06-09 00:41:05 +0000776void
Damien Miller077b2382005-12-31 16:22:32 +1100777channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000778 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779{
780 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000781
Ben Lindstrome9c99912001-06-09 00:41:05 +0000782 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000783 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000784 return;
785 }
Damien Miller077b2382005-12-31 16:22:32 +1100786 c->input_filter = ifn;
787 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000788 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000789 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000790}
791
792void
793channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000794 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000795{
796 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000797
Ben Lindstrome9c99912001-06-09 00:41:05 +0000798 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
799 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000800 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000801 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100802 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000803 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
804 packet_put_int(c->remote_id);
805 packet_put_int(c->local_window);
806 packet_send();
807}
808
Damien Miller5428f641999-11-25 11:54:57 +1100809/*
Damien Millerb38eff82000-04-01 11:09:21 +1000810 * 'channel_pre*' are called just before select() to add any bits relevant to
811 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100812 */
Damien Millerb38eff82000-04-01 11:09:21 +1000813/*
814 * 'channel_post*': perform any appropriate operations for channels which
815 * have events pending.
816 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100817typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000818chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
819chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
820
Damien Miller8473dd82006-07-24 14:08:32 +1000821/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100823channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000824{
825 FD_SET(c->sock, readset);
826}
827
Damien Miller8473dd82006-07-24 14:08:32 +1000828/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000829static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100830channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000831{
832 debug3("channel %d: waiting for connection", c->self);
833 FD_SET(c->sock, writeset);
834}
835
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100837channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
839 if (buffer_len(&c->input) < packet_get_maxsize())
840 FD_SET(c->sock, readset);
841 if (buffer_len(&c->output) > 0)
842 FD_SET(c->sock, writeset);
843}
844
Ben Lindstrombba81212001-06-25 05:01:22 +0000845static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100846channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000847{
Damien Millerde6987c2002-01-22 23:20:40 +1100848 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000849
Damien Miller33b13562000-04-04 14:38:59 +1000850 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100851 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000852 buffer_len(&c->input) < limit &&
853 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000854 FD_SET(c->rfd, readset);
855 if (c->ostate == CHAN_OUTPUT_OPEN ||
856 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
857 if (buffer_len(&c->output) > 0) {
858 FD_SET(c->wfd, writeset);
859 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000860 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000861 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
862 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000863 else
864 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000865 }
866 }
867 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000868 if (compat20 && c->efd != -1 &&
869 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000870 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
871 buffer_len(&c->extended) > 0)
872 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000873 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
874 (c->extended_usage == CHAN_EXTENDED_READ ||
875 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000876 buffer_len(&c->extended) < c->remote_window)
877 FD_SET(c->efd, readset);
878 }
Damien Miller0e220db2004-06-15 10:34:08 +1000879 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000880}
881
Damien Miller8473dd82006-07-24 14:08:32 +1000882/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000883static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100884channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000885{
886 if (buffer_len(&c->input) == 0) {
887 packet_start(SSH_MSG_CHANNEL_CLOSE);
888 packet_put_int(c->remote_id);
889 packet_send();
890 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000891 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000892 }
893}
894
Damien Miller8473dd82006-07-24 14:08:32 +1000895/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000896static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100897channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000898{
899 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000900 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000901 else
Damien Millerb38eff82000-04-01 11:09:21 +1000902 FD_SET(c->sock, writeset);
903}
904
905/*
906 * This is a special state for X11 authentication spoofing. An opened X11
907 * connection (when authentication spoofing is being done) remains in this
908 * state until the first packet has been completely read. The authentication
909 * data in that packet is then substituted by the real data if it matches the
910 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000911 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000912 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000913 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000914static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000915x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000916{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000917 u_char *ucp;
918 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000919
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000920 /* Is this being called after the refusal deadline? */
921 if (x11_refuse_time != 0 && (u_int)monotime() >= x11_refuse_time) {
922 verbose("Rejected X11 connection after ForwardX11Timeout "
923 "expired");
924 return -1;
925 }
926
Damien Millerb38eff82000-04-01 11:09:21 +1000927 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000928 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000929 return 0;
930
931 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100932 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000933 if (ucp[0] == 0x42) { /* Byte order MSB first. */
934 proto_len = 256 * ucp[6] + ucp[7];
935 data_len = 256 * ucp[8] + ucp[9];
936 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
937 proto_len = ucp[6] + 256 * ucp[7];
938 data_len = ucp[8] + 256 * ucp[9];
939 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000940 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100941 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000942 return -1;
943 }
944
945 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000946 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000947 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
948 return 0;
949
950 /* Check if authentication protocol matches. */
951 if (proto_len != strlen(x11_saved_proto) ||
952 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000953 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000954 return -1;
955 }
956 /* Check if authentication data matches our fake data. */
957 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000958 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000959 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000960 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000961 return -1;
962 }
963 /* Check fake data length */
964 if (x11_fake_data_len != x11_saved_data_len) {
965 error("X11 fake_data_len %d != saved_data_len %d",
966 x11_fake_data_len, x11_saved_data_len);
967 return -1;
968 }
969 /*
970 * Received authentication protocol and data match
971 * our fake data. Substitute the fake data with real
972 * data.
973 */
974 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
975 x11_saved_data, x11_saved_data_len);
976 return 1;
977}
978
Ben Lindstrombba81212001-06-25 05:01:22 +0000979static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100980channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000981{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000982 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000983
Damien Millerb38eff82000-04-01 11:09:21 +1000984 if (ret == 1) {
985 /* Start normal processing for the channel. */
986 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000987 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000988 } else if (ret == -1) {
989 /*
990 * We have received an X11 connection that has bad
991 * authentication information.
992 */
Damien Miller996acd22003-04-09 20:59:48 +1000993 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000994 buffer_clear(&c->input);
995 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000996 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000997 c->sock = -1;
998 c->type = SSH_CHANNEL_CLOSED;
999 packet_start(SSH_MSG_CHANNEL_CLOSE);
1000 packet_put_int(c->remote_id);
1001 packet_send();
1002 }
1003}
1004
Ben Lindstrombba81212001-06-25 05:01:22 +00001005static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001006channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001007{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001008 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001009
1010 /* c->force_drain = 1; */
1011
Damien Millerb38eff82000-04-01 11:09:21 +10001012 if (ret == 1) {
1013 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +11001014 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001015 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001016 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +10001017 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +11001018 chan_read_failed(c);
1019 buffer_clear(&c->input);
1020 chan_ibuf_empty(c);
1021 buffer_clear(&c->output);
1022 /* for proto v1, the peer will send an IEOF */
1023 if (compat20)
1024 chan_write_failed(c);
1025 else
1026 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +10001027 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001028 }
1029}
1030
Damien Millere1537f92010-01-26 13:26:22 +11001031static void
1032channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1033{
Damien Millerd530f5f2010-05-21 14:57:10 +10001034 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001035 buffer_check_alloc(&c->input, CHAN_RBUF))
1036 FD_SET(c->rfd, readset);
1037 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1038 /* clear buffer immediately (discard any partial packet) */
1039 buffer_clear(&c->input);
1040 chan_ibuf_empty(c);
1041 /* Start output drain. XXX just kill chan? */
1042 chan_rcvd_oclose(c);
1043 }
1044 if (c->ostate == CHAN_OUTPUT_OPEN ||
1045 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1046 if (buffer_len(&c->output) > 0)
1047 FD_SET(c->wfd, writeset);
1048 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1049 chan_obuf_empty(c);
1050 }
1051}
1052
Ben Lindstromb3921512001-04-11 15:57:50 +00001053/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001054/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001055static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001056channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001057{
Damien Millera10f5612002-09-12 09:49:15 +10001058 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001059 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001060 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001061 struct {
1062 u_int8_t version;
1063 u_int8_t command;
1064 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001065 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001066 } s4_req, s4_rsp;
1067
Ben Lindstromb3921512001-04-11 15:57:50 +00001068 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001069
1070 have = buffer_len(&c->input);
1071 len = sizeof(s4_req);
1072 if (have < len)
1073 return 0;
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001074 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001075
1076 need = 1;
1077 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1078 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1079 debug2("channel %d: socks4a request", c->self);
1080 /* ... and needs an extra string (the hostname) */
1081 need = 2;
1082 }
1083 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001084 for (found = 0, i = len; i < have; i++) {
1085 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001086 found++;
1087 if (found == need)
1088 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001089 }
1090 if (i > 1024) {
1091 /* the peer is probably sending garbage */
1092 debug("channel %d: decode socks4: too long",
1093 c->self);
1094 return -1;
1095 }
1096 }
Damien Miller1781f532009-01-28 16:24:41 +11001097 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001098 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001099 buffer_get(&c->input, (char *)&s4_req.version, 1);
1100 buffer_get(&c->input, (char *)&s4_req.command, 1);
1101 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001102 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001103 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001104 p = (char *)buffer_ptr(&c->input);
Damien Miller13481292014-02-27 10:18:32 +11001105 if (memchr(p, '\0', have) == NULL)
1106 fatal("channel %d: decode socks4: user not nul terminated",
1107 c->self);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001109 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001110 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001111 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001113 c->self, len, have);
1114 strlcpy(username, p, sizeof(username));
1115 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116
Darren Tuckera627d422013-06-02 07:31:17 +10001117 free(c->path);
1118 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001119 if (need == 1) { /* SOCKS4: one string */
1120 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001121 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001122 } else { /* SOCKS4A: two strings */
1123 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001124 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001125 len = strlen(p);
1126 debug2("channel %d: decode socks4a: host %s/%d",
1127 c->self, p, len);
1128 len++; /* trailing '\0' */
1129 if (len > have)
1130 fatal("channel %d: decode socks4a: len %d > have %d",
1131 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001132 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001133 error("channel %d: hostname \"%.100s\" too long",
1134 c->self, p);
1135 return -1;
1136 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001137 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001138 buffer_consume(&c->input, len);
1139 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001140 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001141
Damien Millerfbdeece2003-09-02 22:52:31 +10001142 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001143 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001144
Ben Lindstromb3921512001-04-11 15:57:50 +00001145 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001146 debug("channel %d: cannot handle: %s cn %d",
1147 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001148 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001149 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001150 s4_rsp.version = 0; /* vn: 0 for reply */
1151 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001152 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001153 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001154 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001155 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001156}
1157
Darren Tucker46471c92003-07-03 13:55:19 +10001158/* try to decode a socks5 header */
1159#define SSH_SOCKS5_AUTHDONE 0x1000
1160#define SSH_SOCKS5_NOAUTH 0x00
1161#define SSH_SOCKS5_IPV4 0x01
1162#define SSH_SOCKS5_DOMAIN 0x03
1163#define SSH_SOCKS5_IPV6 0x04
1164#define SSH_SOCKS5_CONNECT 0x01
1165#define SSH_SOCKS5_SUCCESS 0x00
1166
Damien Miller8473dd82006-07-24 14:08:32 +10001167/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001168static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001169channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001170{
1171 struct {
1172 u_int8_t version;
1173 u_int8_t command;
1174 u_int8_t reserved;
1175 u_int8_t atyp;
1176 } s5_req, s5_rsp;
1177 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001178 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1179 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001180 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001181
1182 debug2("channel %d: decode socks5", c->self);
1183 p = buffer_ptr(&c->input);
1184 if (p[0] != 0x05)
1185 return -1;
1186 have = buffer_len(&c->input);
1187 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1188 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001189 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001190 return 0;
1191 nmethods = p[1];
1192 if (have < nmethods + 2)
1193 return 0;
1194 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001195 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001196 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001197 found = 1;
1198 break;
1199 }
1200 }
1201 if (!found) {
1202 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1203 c->self);
1204 return -1;
1205 }
1206 buffer_consume(&c->input, nmethods + 2);
1207 buffer_put_char(&c->output, 0x05); /* version */
1208 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1209 FD_SET(c->sock, writeset);
1210 c->flags |= SSH_SOCKS5_AUTHDONE;
1211 debug2("channel %d: socks5 auth done", c->self);
1212 return 0; /* need more */
1213 }
1214 debug2("channel %d: socks5 post auth", c->self);
1215 if (have < sizeof(s5_req)+1)
1216 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001217 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001218 if (s5_req.version != 0x05 ||
1219 s5_req.command != SSH_SOCKS5_CONNECT ||
1220 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001221 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001222 return -1;
1223 }
Darren Tucker47eede72005-03-14 23:08:12 +11001224 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001225 case SSH_SOCKS5_IPV4:
1226 addrlen = 4;
1227 af = AF_INET;
1228 break;
1229 case SSH_SOCKS5_DOMAIN:
1230 addrlen = p[sizeof(s5_req)];
1231 af = -1;
1232 break;
1233 case SSH_SOCKS5_IPV6:
1234 addrlen = 16;
1235 af = AF_INET6;
1236 break;
1237 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001238 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001239 return -1;
1240 }
Damien Miller0f077072006-07-10 22:21:02 +10001241 need = sizeof(s5_req) + addrlen + 2;
1242 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1243 need++;
1244 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001245 return 0;
1246 buffer_consume(&c->input, sizeof(s5_req));
1247 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1248 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001249 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001250 buffer_get(&c->input, (char *)&dest_port, 2);
1251 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001252 free(c->path);
1253 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001254 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001255 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001256 error("channel %d: dynamic request: socks5 hostname "
1257 "\"%.100s\" too long", c->self, dest_addr);
1258 return -1;
1259 }
1260 c->path = xstrdup(dest_addr);
1261 } else {
1262 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1263 return -1;
1264 c->path = xstrdup(ntop);
1265 }
Darren Tucker46471c92003-07-03 13:55:19 +10001266 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001267
Damien Millerfbdeece2003-09-02 22:52:31 +10001268 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001269 c->self, c->path, c->host_port, s5_req.command);
1270
1271 s5_rsp.version = 0x05;
1272 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1273 s5_rsp.reserved = 0; /* ignored */
1274 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001275 dest_port = 0; /* ignored */
1276
Damien Millera0fdce92006-03-26 14:28:50 +11001277 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
Damien Miller13840e02013-09-14 09:49:43 +10001278 buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
Damien Millera0fdce92006-03-26 14:28:50 +11001279 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001280 return 1;
1281}
1282
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001283Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001284channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1285 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001286{
1287 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001288
1289 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1290 port_to_connect);
1291
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001292 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1293 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1294 0, "stdio-forward", /*nonblock*/0);
1295
1296 c->path = xstrdup(host_to_connect);
1297 c->host_port = port_to_connect;
1298 c->listening_port = 0;
1299 c->force_drain = 1;
1300
1301 channel_register_fds(c, in, out, -1, 0, 1, 0);
1302 port_open_helper(c, "direct-tcpip");
1303
1304 return c;
1305}
1306
Ben Lindstromb3921512001-04-11 15:57:50 +00001307/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001308static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001309channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001310{
1311 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001312 u_int have;
1313 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001314
1315 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001316 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001317 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001318 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001319 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001320 /* need more */
1321 FD_SET(c->sock, readset);
1322 return;
1323 }
1324 /* try to guess the protocol */
1325 p = buffer_ptr(&c->input);
1326 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001327 case 0x04:
1328 ret = channel_decode_socks4(c, readset, writeset);
1329 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001330 case 0x05:
1331 ret = channel_decode_socks5(c, readset, writeset);
1332 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001333 default:
1334 ret = -1;
1335 break;
1336 }
1337 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001338 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001339 } else if (ret == 0) {
1340 debug2("channel %d: pre_dynamic: need more", c->self);
1341 /* need more */
1342 FD_SET(c->sock, readset);
1343 } else {
1344 /* switch to the next state */
1345 c->type = SSH_CHANNEL_OPENING;
1346 port_open_helper(c, "direct-tcpip");
1347 }
1348}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001349
Damien Millerb38eff82000-04-01 11:09:21 +10001350/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001351/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001352static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001353channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001354{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001355 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001356 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001357 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001358 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001359 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001360 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001361
1362 if (FD_ISSET(c->sock, readset)) {
1363 debug("X11 connection requested.");
1364 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001365 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001366 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001367 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001368 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001369 channel_close_fd(&c->sock);
1370 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001371 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001372 }
Damien Millerb38eff82000-04-01 11:09:21 +10001373 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001374 if (errno != EINTR && errno != EWOULDBLOCK &&
1375 errno != ECONNABORTED)
1376 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001377 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001378 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001379 return;
1380 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001381 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001382 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001383 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001384 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001385 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001386
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001387 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001388 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001389 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001390 if (compat20) {
1391 packet_start(SSH2_MSG_CHANNEL_OPEN);
1392 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001393 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001394 packet_put_int(nc->local_window_max);
1395 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001396 /* originator ipaddr and port */
1397 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001398 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001399 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001400 } else {
1401 packet_put_int(remote_port);
1402 }
Damien Millerbd483e72000-04-30 10:00:53 +10001403 packet_send();
1404 } else {
1405 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001406 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001407 if (packet_get_protocol_flags() &
1408 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001409 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001410 packet_send();
1411 }
Darren Tuckera627d422013-06-02 07:31:17 +10001412 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001413 }
1414}
1415
Ben Lindstrombba81212001-06-25 05:01:22 +00001416static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001417port_open_helper(Channel *c, char *rtype)
1418{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001419 char buf[1024];
Damien Miller4def1842013-12-29 17:45:26 +11001420 char *local_ipaddr = get_local_ipaddr(c->sock);
djm@openbsd.org95767262016-03-07 19:02:43 +00001421 int local_port = c->sock == -1 ? 65536 : get_local_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001422 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001423 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001424
Damien Millerd6369432010-02-02 17:02:07 +11001425 if (remote_port == -1) {
1426 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001427 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001428 remote_ipaddr = xstrdup("127.0.0.1");
1429 remote_port = 65535;
1430 }
1431
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001432 snprintf(buf, sizeof buf,
1433 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001434 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001435 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001436 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001437
Darren Tuckera627d422013-06-02 07:31:17 +10001438 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001439 c->remote_name = xstrdup(buf);
1440
1441 if (compat20) {
1442 packet_start(SSH2_MSG_CHANNEL_OPEN);
1443 packet_put_cstring(rtype);
1444 packet_put_int(c->self);
1445 packet_put_int(c->local_window_max);
1446 packet_put_int(c->local_maxpacket);
Damien Miller7acefbb2014-07-18 14:11:24 +10001447 if (strcmp(rtype, "direct-tcpip") == 0) {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001448 /* target host, port */
1449 packet_put_cstring(c->path);
1450 packet_put_int(c->host_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10001451 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1452 /* target path */
1453 packet_put_cstring(c->path);
1454 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1455 /* listen path */
1456 packet_put_cstring(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001457 } else {
1458 /* listen address, port */
1459 packet_put_cstring(c->path);
Damien Miller4def1842013-12-29 17:45:26 +11001460 packet_put_int(local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001461 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001462 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1463 /* reserved for future owner/mode info */
1464 packet_put_cstring("");
1465 } else {
1466 /* originator host and port */
1467 packet_put_cstring(remote_ipaddr);
1468 packet_put_int((u_int)remote_port);
1469 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001470 packet_send();
1471 } else {
1472 packet_start(SSH_MSG_PORT_OPEN);
1473 packet_put_int(c->self);
1474 packet_put_cstring(c->path);
1475 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001476 if (packet_get_protocol_flags() &
1477 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001478 packet_put_cstring(c->remote_name);
1479 packet_send();
1480 }
Darren Tuckera627d422013-06-02 07:31:17 +10001481 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001482 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001483}
1484
Damien Miller5e7fd072005-11-05 14:53:39 +11001485static void
1486channel_set_reuseaddr(int fd)
1487{
1488 int on = 1;
1489
1490 /*
1491 * Set socket options.
1492 * Allow local port reuse in TIME_WAIT.
1493 */
1494 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1495 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1496}
1497
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001498void
1499channel_set_x11_refuse_time(u_int refuse_time)
1500{
1501 x11_refuse_time = refuse_time;
1502}
1503
Damien Millerb38eff82000-04-01 11:09:21 +10001504/*
1505 * This socket is listening for connections to a forwarded TCP/IP port.
1506 */
Damien Miller8473dd82006-07-24 14:08:32 +10001507/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001508static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001509channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001510{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001511 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001512 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001513 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001514 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001515 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001516
Damien Millerb38eff82000-04-01 11:09:21 +10001517 if (FD_ISSET(c->sock, readset)) {
1518 debug("Connection to port %d forwarding "
1519 "to %.100s port %d requested.",
1520 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001521
Damien Miller4623a752001-10-10 15:03:58 +10001522 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1523 nextstate = SSH_CHANNEL_OPENING;
1524 rtype = "forwarded-tcpip";
Damien Miller7acefbb2014-07-18 14:11:24 +10001525 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1526 nextstate = SSH_CHANNEL_OPENING;
1527 rtype = "forwarded-streamlocal@openssh.com";
1528 } else if (c->host_port == PORT_STREAMLOCAL) {
1529 nextstate = SSH_CHANNEL_OPENING;
1530 rtype = "direct-streamlocal@openssh.com";
1531 } else if (c->host_port == 0) {
1532 nextstate = SSH_CHANNEL_DYNAMIC;
1533 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001534 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10001535 nextstate = SSH_CHANNEL_OPENING;
1536 rtype = "direct-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001537 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001538
Damien Millerb38eff82000-04-01 11:09:21 +10001539 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001540 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001541 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001542 if (errno != EINTR && errno != EWOULDBLOCK &&
1543 errno != ECONNABORTED)
1544 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001545 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001546 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001547 return;
1548 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001549 if (c->host_port != PORT_STREAMLOCAL)
1550 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001551 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1552 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001553 nc->listening_port = c->listening_port;
1554 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001555 if (c->path != NULL)
1556 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001557
Darren Tucker876045b2010-01-08 17:08:00 +11001558 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001559 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001560 }
1561}
1562
1563/*
1564 * This is the authentication agent socket listening for connections from
1565 * clients.
1566 */
Damien Miller8473dd82006-07-24 14:08:32 +10001567/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001568static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001569channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001570{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001571 Channel *nc;
1572 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001573 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001574 socklen_t addrlen;
1575
1576 if (FD_ISSET(c->sock, readset)) {
1577 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001578 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001579 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001580 error("accept from auth socket: %.100s",
1581 strerror(errno));
1582 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001583 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001584 return;
1585 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001586 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001587 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1588 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001589 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001590 if (compat20) {
1591 packet_start(SSH2_MSG_CHANNEL_OPEN);
1592 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001593 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001594 packet_put_int(c->local_window_max);
1595 packet_put_int(c->local_maxpacket);
1596 } else {
1597 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001598 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001599 }
Damien Millerb38eff82000-04-01 11:09:21 +10001600 packet_send();
1601 }
1602}
1603
Damien Miller8473dd82006-07-24 14:08:32 +10001604/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001605static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001606channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001607{
Damien Millerbd740252008-05-19 15:37:09 +10001608 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001609 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001610
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001611 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001612 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001613 err = errno;
1614 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001615 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001616 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001617 debug("channel %d: connected to %s port %d",
1618 c->self, c->connect_ctx.host, c->connect_ctx.port);
1619 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001620 c->type = SSH_CHANNEL_OPEN;
1621 if (compat20) {
1622 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1623 packet_put_int(c->remote_id);
1624 packet_put_int(c->self);
1625 packet_put_int(c->local_window);
1626 packet_put_int(c->local_maxpacket);
1627 } else {
1628 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1629 packet_put_int(c->remote_id);
1630 packet_put_int(c->self);
1631 }
1632 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001633 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001634 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001635 /* Try next address, if any */
1636 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1637 close(c->sock);
1638 c->sock = c->rfd = c->wfd = sock;
1639 channel_max_fd = channel_find_maxfd();
1640 return;
1641 }
1642 /* Exhausted all addresses */
1643 error("connect_to %.100s port %d: failed.",
1644 c->connect_ctx.host, c->connect_ctx.port);
1645 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001646 if (compat20) {
1647 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1648 packet_put_int(c->remote_id);
1649 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1650 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1651 packet_put_cstring(strerror(err));
1652 packet_put_cstring("");
1653 }
1654 } else {
1655 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1656 packet_put_int(c->remote_id);
1657 }
1658 chan_mark_dead(c);
1659 }
1660 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001661 }
1662}
1663
Damien Miller8473dd82006-07-24 14:08:32 +10001664/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001665static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001666channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001667{
Darren Tucker11327cc2005-03-14 23:22:25 +11001668 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001669 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001670
Damien Miller835284b2007-06-11 13:03:16 +10001671 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1672 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001673 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001674 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001675 if (len < 0 && (errno == EINTR ||
1676 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001677 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001678#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001679 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001680#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001681 if ((!c->isatty && len <= 0) ||
1682 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001683#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001684 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001685 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001686 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001687 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001688 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001689 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001690 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001691 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001692 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001693 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001694 } else {
1695 chan_read_failed(c);
1696 }
1697 return -1;
1698 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001699 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001700 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001701 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001702 chan_read_failed(c);
1703 }
Damien Millerd27b9472005-12-13 19:29:02 +11001704 } else if (c->datagram) {
1705 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001706 } else {
1707 buffer_append(&c->input, buf, len);
1708 }
Damien Millerb38eff82000-04-01 11:09:21 +10001709 }
1710 return 1;
1711}
Damien Miller4f7becb2006-03-26 14:10:14 +11001712
Damien Miller8473dd82006-07-24 14:08:32 +10001713/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001714static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001715channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001716{
Ben Lindstrome229b252001-03-05 06:28:06 +00001717 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001718 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001719 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001720 int len;
1721
1722 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001723 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001724 FD_ISSET(c->wfd, writeset) &&
1725 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001726 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001727 if (c->output_filter != NULL) {
1728 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1729 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001730 if (c->type != SSH_CHANNEL_OPEN)
1731 chan_mark_dead(c);
1732 else
1733 chan_write_failed(c);
1734 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001735 }
1736 } else if (c->datagram) {
1737 buf = data = buffer_get_string(&c->output, &dlen);
1738 } else {
1739 buf = data = buffer_ptr(&c->output);
1740 dlen = buffer_len(&c->output);
1741 }
1742
Damien Millerd27b9472005-12-13 19:29:02 +11001743 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001744 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001745 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001746 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001747 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1748 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001749 return 1;
1750 if (len <= 0) {
1751 if (c->type != SSH_CHANNEL_OPEN)
1752 chan_mark_dead(c);
1753 else
1754 chan_write_failed(c);
1755 return -1;
1756 }
Damien Miller7d457182010-08-05 23:09:48 +10001757 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001758 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001759#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001760 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001761 if (compat20 && c->wfd_isatty)
1762 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001763#endif
Damien Miller077b2382005-12-31 16:22:32 +11001764
1765 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001766 if (len < 0 &&
1767 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001768 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001769 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001770 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001771 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001772 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001773 return -1;
1774 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001775 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001776 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001777 c->type = SSH_CHANNEL_INPUT_DRAINING;
1778 } else {
1779 chan_write_failed(c);
1780 }
1781 return -1;
1782 }
Darren Tucker3980b632009-08-28 11:02:37 +10001783#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001784 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001785 if (tcgetattr(c->wfd, &tio) == 0 &&
1786 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1787 /*
1788 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001789 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001790 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001791 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001792 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001793 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001794 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001795 }
1796 }
Darren Tucker3980b632009-08-28 11:02:37 +10001797#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001798 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001799 }
Damien Miller7d457182010-08-05 23:09:48 +10001800 out:
1801 if (compat20 && olen > 0)
1802 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001803 return 1;
1804}
Damien Miller4f7becb2006-03-26 14:10:14 +11001805
Ben Lindstrombba81212001-06-25 05:01:22 +00001806static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001807channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001808{
Darren Tucker11327cc2005-03-14 23:22:25 +11001809 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001810 int len;
1811
Damien Miller1383bd82000-04-06 12:32:37 +10001812/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001813 if (c->efd != -1) {
1814 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1815 FD_ISSET(c->efd, writeset) &&
1816 buffer_len(&c->extended) > 0) {
1817 len = write(c->efd, buffer_ptr(&c->extended),
1818 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001819 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001820 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001821 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1822 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001823 return 1;
1824 if (len <= 0) {
1825 debug2("channel %d: closing write-efd %d",
1826 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001827 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001828 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001829 buffer_consume(&c->extended, len);
1830 c->local_consumed += len;
1831 }
Damien Miller8853ca52010-06-26 10:00:14 +10001832 } else if (c->efd != -1 &&
1833 (c->extended_usage == CHAN_EXTENDED_READ ||
1834 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001835 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001836 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001837 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001838 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001839 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1840 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001841 return 1;
1842 if (len <= 0) {
1843 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001844 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001845 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001846 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001847 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1848 debug3("channel %d: discard efd",
1849 c->self);
1850 } else
1851 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001852 }
Damien Miller33b13562000-04-04 14:38:59 +10001853 }
1854 }
1855 return 1;
1856}
Damien Miller4f7becb2006-03-26 14:10:14 +11001857
Damien Miller0e220db2004-06-15 10:34:08 +10001858static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001859channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001860{
Ben Lindstromb3921512001-04-11 15:57:50 +00001861 if (c->type == SSH_CHANNEL_OPEN &&
1862 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001863 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001864 c->local_maxpacket*3) ||
1865 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001866 c->local_consumed > 0) {
1867 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1868 packet_put_int(c->remote_id);
1869 packet_put_int(c->local_consumed);
1870 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001871 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001872 c->self, c->local_window,
1873 c->local_consumed);
1874 c->local_window += c->local_consumed;
1875 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001876 }
1877 return 1;
1878}
1879
Ben Lindstrombba81212001-06-25 05:01:22 +00001880static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001881channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001882{
1883 channel_handle_rfd(c, readset, writeset);
1884 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001885 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001886 return;
Damien Miller33b13562000-04-04 14:38:59 +10001887 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001888 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001889}
1890
Damien Millere1537f92010-01-26 13:26:22 +11001891static u_int
1892read_mux(Channel *c, u_int need)
1893{
1894 char buf[CHAN_RBUF];
1895 int len;
1896 u_int rlen;
1897
1898 if (buffer_len(&c->input) < need) {
1899 rlen = need - buffer_len(&c->input);
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001900 len = read(c->rfd, buf, MINIMUM(rlen, CHAN_RBUF));
naddy@openbsd.org603ba412016-02-05 13:28:19 +00001901 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1902 return buffer_len(&c->input);
Damien Millere1537f92010-01-26 13:26:22 +11001903 if (len <= 0) {
naddy@openbsd.org603ba412016-02-05 13:28:19 +00001904 debug2("channel %d: ctl read<=0 rfd %d len %d",
1905 c->self, c->rfd, len);
1906 chan_read_failed(c);
1907 return 0;
Damien Millere1537f92010-01-26 13:26:22 +11001908 } else
1909 buffer_append(&c->input, buf, len);
1910 }
1911 return buffer_len(&c->input);
1912}
1913
1914static void
1915channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1916{
1917 u_int need;
1918 ssize_t len;
1919
1920 if (!compat20)
1921 fatal("%s: entered with !compat20", __func__);
1922
Damien Millerd530f5f2010-05-21 14:57:10 +10001923 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001924 (c->istate == CHAN_INPUT_OPEN ||
1925 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1926 /*
1927 * Don't not read past the precise end of packets to
1928 * avoid disrupting fd passing.
1929 */
1930 if (read_mux(c, 4) < 4) /* read header */
1931 return;
1932 need = get_u32(buffer_ptr(&c->input));
1933#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1934 if (need > CHANNEL_MUX_MAX_PACKET) {
1935 debug2("channel %d: packet too big %u > %u",
1936 c->self, CHANNEL_MUX_MAX_PACKET, need);
1937 chan_rcvd_oclose(c);
1938 return;
1939 }
1940 if (read_mux(c, need + 4) < need + 4) /* read body */
1941 return;
1942 if (c->mux_rcb(c) != 0) {
1943 debug("channel %d: mux_rcb failed", c->self);
1944 chan_mark_dead(c);
1945 return;
1946 }
1947 }
1948
1949 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1950 buffer_len(&c->output) > 0) {
1951 len = write(c->wfd, buffer_ptr(&c->output),
1952 buffer_len(&c->output));
1953 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1954 return;
1955 if (len <= 0) {
1956 chan_mark_dead(c);
1957 return;
1958 }
1959 buffer_consume(&c->output, len);
1960 }
1961}
1962
1963static void
1964channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1965{
1966 Channel *nc;
1967 struct sockaddr_storage addr;
1968 socklen_t addrlen;
1969 int newsock;
1970 uid_t euid;
1971 gid_t egid;
1972
1973 if (!FD_ISSET(c->sock, readset))
1974 return;
1975
1976 debug("multiplexing control connection");
1977
1978 /*
1979 * Accept connection on control socket
1980 */
1981 memset(&addr, 0, sizeof(addr));
1982 addrlen = sizeof(addr);
1983 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1984 &addrlen)) == -1) {
1985 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001986 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001987 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001988 return;
1989 }
1990
1991 if (getpeereid(newsock, &euid, &egid) < 0) {
1992 error("%s getpeereid failed: %s", __func__,
1993 strerror(errno));
1994 close(newsock);
1995 return;
1996 }
1997 if ((euid != 0) && (getuid() != euid)) {
1998 error("multiplex uid mismatch: peer euid %u != uid %u",
1999 (u_int)euid, (u_int)getuid());
2000 close(newsock);
2001 return;
2002 }
2003 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
2004 newsock, newsock, -1, c->local_window_max,
2005 c->local_maxpacket, 0, "mux-control", 1);
2006 nc->mux_rcb = c->mux_rcb;
2007 debug3("%s: new mux channel %d fd %d", __func__,
2008 nc->self, nc->sock);
2009 /* establish state */
2010 nc->mux_rcb(nc);
2011 /* mux state transitions must not elicit protocol messages */
2012 nc->flags |= CHAN_LOCAL;
2013}
2014
Damien Miller8473dd82006-07-24 14:08:32 +10002015/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00002016static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002017channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002018{
2019 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002020
Damien Millerb38eff82000-04-01 11:09:21 +10002021 /* Send buffered output data to the socket. */
2022 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
2023 len = write(c->sock, buffer_ptr(&c->output),
2024 buffer_len(&c->output));
2025 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11002026 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10002027 else
2028 buffer_consume(&c->output, len);
2029 }
2030}
2031
Ben Lindstrombba81212001-06-25 05:01:22 +00002032static void
Damien Miller33b13562000-04-04 14:38:59 +10002033channel_handler_init_20(void)
2034{
Damien Millerde6987c2002-01-22 23:20:40 +11002035 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002036 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10002037 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002038 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002039 channel_pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2040 channel_pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002041 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002042 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002043 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002044 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11002045 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2046 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002047
Damien Millerde6987c2002-01-22 23:20:40 +11002048 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10002049 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002050 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002051 channel_post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2052 channel_post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002053 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002054 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002055 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002056 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11002057 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2058 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002059}
2060
Ben Lindstrombba81212001-06-25 05:01:22 +00002061static void
Damien Millerb38eff82000-04-01 11:09:21 +10002062channel_handler_init_13(void)
2063{
2064 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2065 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2066 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2067 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2068 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2069 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2070 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002071 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002072 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002073
Damien Millerde6987c2002-01-22 23:20:40 +11002074 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002075 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2076 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2077 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2078 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002079 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002080 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002081}
2082
Ben Lindstrombba81212001-06-25 05:01:22 +00002083static void
Damien Millerb38eff82000-04-01 11:09:21 +10002084channel_handler_init_15(void)
2085{
Damien Millerde6987c2002-01-22 23:20:40 +11002086 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002087 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002088 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2089 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2090 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002091 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002092 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002093
2094 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2095 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2096 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002097 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002098 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002099 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002100}
2101
Ben Lindstrombba81212001-06-25 05:01:22 +00002102static void
Damien Millerb38eff82000-04-01 11:09:21 +10002103channel_handler_init(void)
2104{
2105 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002106
Damien Miller9f0f5c62001-12-21 14:45:46 +11002107 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002108 channel_pre[i] = NULL;
2109 channel_post[i] = NULL;
2110 }
Damien Miller33b13562000-04-04 14:38:59 +10002111 if (compat20)
2112 channel_handler_init_20();
2113 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002114 channel_handler_init_13();
2115 else
2116 channel_handler_init_15();
2117}
2118
Damien Miller3ec27592001-10-12 11:35:04 +10002119/* gc dead channels */
2120static void
2121channel_garbage_collect(Channel *c)
2122{
2123 if (c == NULL)
2124 return;
2125 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002126 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002127 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002128 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002129 c->detach_user(c->self, NULL);
2130 /* if we still have a callback */
2131 if (c->detach_user != NULL)
2132 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002133 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002134 }
2135 if (!chan_is_dead(c, 1))
2136 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002137 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002138 channel_free(c);
2139}
2140
Ben Lindstrombba81212001-06-25 05:01:22 +00002141static void
Damien Millera6508752012-04-22 11:21:10 +10002142channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2143 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002144{
2145 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002146 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002147 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002148 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002149
2150 if (!did_init) {
2151 channel_handler_init();
2152 did_init = 1;
2153 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002154 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002155 if (unpause_secs != NULL)
2156 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002157 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002158 c = channels[i];
2159 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002160 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002161 if (c->delayed) {
2162 if (ftab == channel_pre)
2163 c->delayed = 0;
2164 else
2165 continue;
2166 }
Damien Millera6508752012-04-22 11:21:10 +10002167 if (ftab[c->type] != NULL) {
2168 /*
2169 * Run handlers that are not paused.
2170 */
2171 if (c->notbefore <= now)
2172 (*ftab[c->type])(c, readset, writeset);
2173 else if (unpause_secs != NULL) {
2174 /*
2175 * Collect the time that the earliest
2176 * channel comes off pause.
2177 */
2178 debug3("%s: chan %d: skip for %d more seconds",
2179 __func__, c->self,
2180 (int)(c->notbefore - now));
2181 if (*unpause_secs == 0 ||
2182 (c->notbefore - now) < *unpause_secs)
2183 *unpause_secs = c->notbefore - now;
2184 }
2185 }
Damien Miller3ec27592001-10-12 11:35:04 +10002186 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002187 }
Damien Millera6508752012-04-22 11:21:10 +10002188 if (unpause_secs != NULL && *unpause_secs != 0)
2189 debug3("%s: first channel unpauses in %d seconds",
2190 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002191}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002192
Ben Lindstrome9c99912001-06-09 00:41:05 +00002193/*
2194 * Allocate/update select bitmasks and add any bits relevant to channels in
2195 * select bitmasks.
2196 */
Damien Miller4af51302000-04-16 11:18:38 +10002197void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002198channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002199 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002200{
Damien Miller36812092006-03-26 14:22:47 +11002201 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002202
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00002203 n = MAXIMUM(*maxfdp, channel_max_fd);
Damien Miller5e953212001-01-30 09:14:00 +11002204
Damien Miller36812092006-03-26 14:22:47 +11002205 nfdset = howmany(n+1, NFDBITS);
2206 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002207 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002208 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2209 sz = nfdset * sizeof(fd_mask);
2210
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002211 /* perhaps check sz < nalloc/2 and shrink? */
2212 if (*readsetp == NULL || sz > *nallocp) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00002213 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2214 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002215 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002216 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002217 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002218 memset(*readsetp, 0, sz);
2219 memset(*writesetp, 0, sz);
2220
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002221 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002222 channel_handler(channel_pre, *readsetp, *writesetp,
2223 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002224}
2225
Ben Lindstrome9c99912001-06-09 00:41:05 +00002226/*
2227 * After select, perform any appropriate operations for channels which have
2228 * events pending.
2229 */
Damien Miller4af51302000-04-16 11:18:38 +10002230void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002231channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002232{
Damien Millera6508752012-04-22 11:21:10 +10002233 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002234}
2235
Ben Lindstrome9c99912001-06-09 00:41:05 +00002236
Damien Miller5e953212001-01-30 09:14:00 +11002237/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002238void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002239channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240{
Damien Millerb38eff82000-04-01 11:09:21 +10002241 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002242 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002243
Damien Miller95def091999-11-25 00:26:21 +11002244 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002245 c = channels[i];
2246 if (c == NULL)
2247 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002248
Ben Lindstrome9c99912001-06-09 00:41:05 +00002249 /*
2250 * We are only interested in channels that can have buffered
2251 * incoming data.
2252 */
Damien Miller34132e52000-01-14 15:45:46 +11002253 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002254 if (c->type != SSH_CHANNEL_OPEN &&
2255 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002256 continue;
2257 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002258 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002259 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002260 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002261 if (compat20 &&
2262 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002263 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002264 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002265 continue;
2266 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267
Damien Miller95def091999-11-25 00:26:21 +11002268 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002269 if ((c->istate == CHAN_INPUT_OPEN ||
2270 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2271 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002272 if (c->datagram) {
2273 if (len > 0) {
2274 u_char *data;
2275 u_int dlen;
2276
2277 data = buffer_get_string(&c->input,
2278 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002279 if (dlen > c->remote_window ||
2280 dlen > c->remote_maxpacket) {
2281 debug("channel %d: datagram "
2282 "too big for channel",
2283 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002284 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002285 continue;
2286 }
Damien Millerd27b9472005-12-13 19:29:02 +11002287 packet_start(SSH2_MSG_CHANNEL_DATA);
2288 packet_put_int(c->remote_id);
2289 packet_put_string(data, dlen);
2290 packet_send();
djm@openbsd.orgf715afe2015-06-30 05:23:25 +00002291 c->remote_window -= dlen;
Darren Tuckera627d422013-06-02 07:31:17 +10002292 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002293 }
2294 continue;
2295 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002296 /*
2297 * Send some data for the other side over the secure
2298 * connection.
2299 */
Damien Miller33b13562000-04-04 14:38:59 +10002300 if (compat20) {
2301 if (len > c->remote_window)
2302 len = c->remote_window;
2303 if (len > c->remote_maxpacket)
2304 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002305 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002306 if (packet_is_interactive()) {
2307 if (len > 1024)
2308 len = 512;
2309 } else {
2310 /* Keep the packets at reasonable size. */
2311 if (len > packet_get_maxsize()/2)
2312 len = packet_get_maxsize()/2;
2313 }
Damien Miller95def091999-11-25 00:26:21 +11002314 }
Damien Millerb38eff82000-04-01 11:09:21 +10002315 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002316 packet_start(compat20 ?
2317 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002318 packet_put_int(c->remote_id);
2319 packet_put_string(buffer_ptr(&c->input), len);
2320 packet_send();
2321 buffer_consume(&c->input, len);
2322 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002323 }
2324 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002325 if (compat13)
2326 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002327 /*
2328 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002329 * tell peer, that we will not send more data: send IEOF.
2330 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002331 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002332 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002333 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2334 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002335 else
2336 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002337 }
Damien Miller33b13562000-04-04 14:38:59 +10002338 /* Send extended data, i.e. stderr */
2339 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002340 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002341 c->remote_window > 0 &&
2342 (len = buffer_len(&c->extended)) > 0 &&
2343 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002344 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002345 c->self, c->remote_window, buffer_len(&c->extended),
2346 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002347 if (len > c->remote_window)
2348 len = c->remote_window;
2349 if (len > c->remote_maxpacket)
2350 len = c->remote_maxpacket;
2351 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2352 packet_put_int(c->remote_id);
2353 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2354 packet_put_string(buffer_ptr(&c->extended), len);
2355 packet_send();
2356 buffer_consume(&c->extended, len);
2357 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002358 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002359 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002360 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002361}
2362
Ben Lindstrome9c99912001-06-09 00:41:05 +00002363
2364/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002365
2366/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002367int
Damien Miller630d6f42002-01-22 23:17:30 +11002368channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002369{
Damien Miller34132e52000-01-14 15:45:46 +11002370 int id;
Damien Miller633de332014-05-15 13:48:26 +10002371 const u_char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002372 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002373 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002374
Damien Miller95def091999-11-25 00:26:21 +11002375 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002376 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002377 c = channel_lookup(id);
2378 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002379 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002380
Damien Miller95def091999-11-25 00:26:21 +11002381 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002382 if (c->type != SSH_CHANNEL_OPEN &&
2383 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002384 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002385
Damien Miller95def091999-11-25 00:26:21 +11002386 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002387 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002388 win_len = data_len;
2389 if (c->datagram)
2390 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002391
Damien Millera04ad492004-01-21 11:02:09 +11002392 /*
2393 * Ignore data for protocol > 1.3 if output end is no longer open.
2394 * For protocol 2 the sending side is reducing its window as it sends
2395 * data, so we must 'fake' consumption of the data in order to ensure
2396 * that window updates are sent back. Otherwise the connection might
2397 * deadlock.
2398 */
2399 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2400 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002401 c->local_window -= win_len;
2402 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002403 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002404 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002405 }
2406
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002407 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002408 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002409 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002410 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002411 }
Damien Miller7d457182010-08-05 23:09:48 +10002412 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002413 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002414 c->self, win_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002415 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002416 }
Damien Miller7d457182010-08-05 23:09:48 +10002417 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002418 }
Damien Millerd27b9472005-12-13 19:29:02 +11002419 if (c->datagram)
2420 buffer_put_string(&c->output, data, data_len);
2421 else
2422 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002423 packet_check_eom();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002424 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002425}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002426
Damien Millerd79b4242006-03-31 23:11:44 +11002427/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002428int
Damien Miller630d6f42002-01-22 23:17:30 +11002429channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002430{
2431 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002432 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002433 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002434 Channel *c;
2435
2436 /* Get the channel number and verify it. */
2437 id = packet_get_int();
2438 c = channel_lookup(id);
2439
2440 if (c == NULL)
2441 packet_disconnect("Received extended_data for bad channel %d.", id);
2442 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002443 logit("channel %d: ext data for non open", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002444 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002445 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002446 if (c->flags & CHAN_EOF_RCVD) {
2447 if (datafellows & SSH_BUG_EXTEOF)
2448 debug("channel %d: accepting ext data after eof", id);
2449 else
2450 packet_disconnect("Received extended_data after EOF "
2451 "on channel %d.", id);
2452 }
Damien Miller33b13562000-04-04 14:38:59 +10002453 tcode = packet_get_int();
2454 if (c->efd == -1 ||
2455 c->extended_usage != CHAN_EXTENDED_WRITE ||
2456 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002457 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002458 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002459 }
2460 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002461 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002462 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002463 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002464 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002465 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002466 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002467 }
Damien Millerd3444942000-09-30 14:20:03 +11002468 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002469 c->local_window -= data_len;
2470 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002471 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002472 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002473}
2474
Damien Millerd79b4242006-03-31 23:11:44 +11002475/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002476int
Damien Miller630d6f42002-01-22 23:17:30 +11002477channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002478{
2479 int id;
2480 Channel *c;
2481
Damien Millerb38eff82000-04-01 11:09:21 +10002482 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002483 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002484 c = channel_lookup(id);
2485 if (c == NULL)
2486 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2487 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002488
2489 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002490 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002491 debug("channel %d: FORCE input drain", c->self);
2492 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002493 if (buffer_len(&c->input) == 0)
2494 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002495 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002496 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002497}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002498
Damien Millerd79b4242006-03-31 23:11:44 +11002499/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002500int
Damien Miller630d6f42002-01-22 23:17:30 +11002501channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002502{
Damien Millerb38eff82000-04-01 11:09:21 +10002503 int id;
2504 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002505
Damien Millerb38eff82000-04-01 11:09:21 +10002506 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002507 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002508 c = channel_lookup(id);
2509 if (c == NULL)
2510 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002511
2512 /*
2513 * Send a confirmation that we have closed the channel and no more
2514 * data is coming for it.
2515 */
Damien Miller95def091999-11-25 00:26:21 +11002516 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002517 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002518 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002519
Damien Miller5428f641999-11-25 11:54:57 +11002520 /*
2521 * If the channel is in closed state, we have sent a close request,
2522 * and the other side will eventually respond with a confirmation.
2523 * Thus, we cannot free the channel here, because then there would be
2524 * no-one to receive the confirmation. The channel gets freed when
2525 * the confirmation arrives.
2526 */
Damien Millerb38eff82000-04-01 11:09:21 +10002527 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002528 /*
2529 * Not a closed channel - mark it as draining, which will
2530 * cause it to be freed later.
2531 */
Damien Miller76765c02002-01-22 23:21:15 +11002532 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002533 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002534 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002535 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002536}
2537
Damien Millerb38eff82000-04-01 11:09:21 +10002538/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002539/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002540int
Damien Miller630d6f42002-01-22 23:17:30 +11002541channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002542{
Damien Millerb38eff82000-04-01 11:09:21 +10002543 int id = packet_get_int();
2544 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002545
Damien Miller48b03fc2002-01-22 23:11:40 +11002546 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002547 if (c == NULL)
2548 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2549 chan_rcvd_oclose(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002550 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551}
2552
Damien Millerd79b4242006-03-31 23:11:44 +11002553/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002554int
Damien Miller630d6f42002-01-22 23:17:30 +11002555channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002556{
2557 int id = packet_get_int();
2558 Channel *c = channel_lookup(id);
2559
Damien Miller48b03fc2002-01-22 23:11:40 +11002560 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002561 if (c == NULL)
2562 packet_disconnect("Received close confirmation for "
2563 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002564 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002565 packet_disconnect("Received close confirmation for "
2566 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002567 channel_free(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002568 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002569}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002570
Damien Millerd79b4242006-03-31 23:11:44 +11002571/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002572int
Damien Miller630d6f42002-01-22 23:17:30 +11002573channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002574{
Damien Millerb38eff82000-04-01 11:09:21 +10002575 int id, remote_id;
2576 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002577
Damien Millerb38eff82000-04-01 11:09:21 +10002578 id = packet_get_int();
2579 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002580
Damien Millerb38eff82000-04-01 11:09:21 +10002581 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2582 packet_disconnect("Received open confirmation for "
2583 "non-opening channel %d.", id);
2584 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002585 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002586 c->remote_id = remote_id;
2587 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002588
2589 if (compat20) {
2590 c->remote_window = packet_get_int();
2591 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002592 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002593 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002594 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002595 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002596 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002597 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002598 c->remote_window, c->remote_maxpacket);
2599 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002600 packet_check_eom();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002601 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002602}
2603
Ben Lindstrombba81212001-06-25 05:01:22 +00002604static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002605reason2txt(int reason)
2606{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002607 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002608 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2609 return "administratively prohibited";
2610 case SSH2_OPEN_CONNECT_FAILED:
2611 return "connect failed";
2612 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2613 return "unknown channel type";
2614 case SSH2_OPEN_RESOURCE_SHORTAGE:
2615 return "resource shortage";
2616 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002617 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002618}
2619
Damien Millerd79b4242006-03-31 23:11:44 +11002620/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002621int
Damien Miller630d6f42002-01-22 23:17:30 +11002622channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002623{
Kevin Steves12057502001-02-05 14:54:34 +00002624 int id, reason;
2625 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002626 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002627
Damien Millerb38eff82000-04-01 11:09:21 +10002628 id = packet_get_int();
2629 c = channel_lookup(id);
2630
2631 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2632 packet_disconnect("Received open failure for "
2633 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002634 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002635 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002636 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002637 msg = packet_get_string(NULL);
2638 lang = packet_get_string(NULL);
2639 }
Damien Miller996acd22003-04-09 20:59:48 +10002640 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002641 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002642 free(msg);
2643 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002644 if (c->open_confirm) {
2645 debug2("callback start");
2646 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2647 debug2("callback done");
2648 }
Damien Miller33b13562000-04-04 14:38:59 +10002649 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002650 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002651 /* Schedule the channel for cleanup/deletion. */
2652 chan_mark_dead(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002653 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002654}
2655
Damien Millerd79b4242006-03-31 23:11:44 +11002656/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002657int
Damien Miller630d6f42002-01-22 23:17:30 +11002658channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002659{
2660 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002661 int id;
djm@openbsd.org629df772015-06-30 05:25:07 +00002662 u_int adjust, tmp;
Damien Miller33b13562000-04-04 14:38:59 +10002663
2664 if (!compat20)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002665 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002666
2667 /* Get the channel number and verify it. */
2668 id = packet_get_int();
2669 c = channel_lookup(id);
2670
Damien Millerd47c62a2005-12-13 19:33:57 +11002671 if (c == NULL) {
2672 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002673 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002674 }
2675 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002676 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002677 debug2("channel %d: rcvd adjust %u", id, adjust);
djm@openbsd.org629df772015-06-30 05:25:07 +00002678 if ((tmp = c->remote_window + adjust) < c->remote_window)
2679 fatal("channel %d: adjust %u overflows remote window %u",
2680 id, adjust, c->remote_window);
2681 c->remote_window = tmp;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002682 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002683}
2684
Damien Millerd79b4242006-03-31 23:11:44 +11002685/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002686int
Damien Miller630d6f42002-01-22 23:17:30 +11002687channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002688{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002689 Channel *c = NULL;
2690 u_short host_port;
2691 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002692 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002693
Ben Lindstrome9c99912001-06-09 00:41:05 +00002694 remote_id = packet_get_int();
2695 host = packet_get_string(NULL);
2696 host_port = packet_get_int();
2697
2698 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2699 originator_string = packet_get_string(NULL);
2700 } else {
2701 originator_string = xstrdup("unknown (remote did not supply name)");
2702 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002703 packet_check_eom();
Damien Miller7acefbb2014-07-18 14:11:24 +10002704 c = channel_connect_to_port(host, host_port,
Damien Millerbd740252008-05-19 15:37:09 +10002705 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002706 free(originator_string);
2707 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002708 if (c == NULL) {
2709 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2710 packet_put_int(remote_id);
2711 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002712 } else
2713 c->remote_id = remote_id;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002714 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002715}
2716
Damien Millerb84886b2008-05-19 15:05:07 +10002717/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002718int
Damien Millerb84886b2008-05-19 15:05:07 +10002719channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2720{
2721 Channel *c;
2722 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002723 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002724
2725 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002726 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002727
Damien Miller16a73072008-12-08 09:55:25 +11002728 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002729 packet_check_eom();
2730
Damien Miller16a73072008-12-08 09:55:25 +11002731 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002732
Damien Miller16a73072008-12-08 09:55:25 +11002733 if ((c = channel_lookup(id)) == NULL) {
2734 logit("channel_input_status_confirm: %d: unknown", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002735 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002736 }
Damien Millerb84886b2008-05-19 15:05:07 +10002737 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002738 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002739 cc->cb(type, c, cc->ctx);
2740 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11002741 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002742 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002743 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002744}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002745
Ben Lindstrome9c99912001-06-09 00:41:05 +00002746/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002747
Ben Lindstrom908afed2001-10-03 17:34:59 +00002748void
2749channel_set_af(int af)
2750{
2751 IPv4or6 = af;
2752}
2753
Damien Millerf6dff7c2011-09-22 21:38:52 +10002754
2755/*
2756 * Determine whether or not a port forward listens to loopback, the
2757 * specified address or wildcard. On the client, a specified bind
2758 * address will always override gateway_ports. On the server, a
2759 * gateway_ports of 1 (``yes'') will override the client's specification
2760 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2761 * will bind to whatever address the client asked for.
2762 *
2763 * Special-case listen_addrs are:
2764 *
2765 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2766 * "" (empty string), "*" -> wildcard v4/v6
2767 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10002768 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10002769 */
2770static const char *
2771channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10002772 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002773{
2774 const char *addr = NULL;
2775 int wildcard = 0;
2776
2777 if (listen_addr == NULL) {
2778 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10002779 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002780 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002781 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002782 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2783 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2784 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10002785 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002786 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11002787 /*
2788 * Notify client if they requested a specific listen
2789 * address and it was overridden.
2790 */
2791 if (*listen_addr != '\0' &&
2792 strcmp(listen_addr, "0.0.0.0") != 0 &&
2793 strcmp(listen_addr, "*") != 0) {
2794 packet_send_debug("Forwarding listen address "
2795 "\"%s\" overridden by server "
2796 "GatewayPorts", listen_addr);
2797 }
Damien Miller602943d2014-07-04 08:59:41 +10002798 } else if (strcmp(listen_addr, "localhost") != 0 ||
2799 strcmp(listen_addr, "127.0.0.1") == 0 ||
2800 strcmp(listen_addr, "::1") == 0) {
2801 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10002802 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10002803 }
2804 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
2805 strcmp(listen_addr, "::1") == 0) {
2806 /*
2807 * If a specific IPv4/IPv6 localhost address has been
2808 * requested then accept it even if gateway_ports is in
2809 * effect. This allows the client to prefer IPv4 or IPv6.
2810 */
2811 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002812 }
2813 if (wildcardp != NULL)
2814 *wildcardp = wildcard;
2815 return addr;
2816}
2817
Damien Millerb16461c2002-01-22 23:29:22 +11002818static int
Damien Miller7acefbb2014-07-18 14:11:24 +10002819channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd,
2820 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002821{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002822 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002823 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002824 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002825 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002826 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002827 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828
Damien Millerf91ee4c2005-03-01 21:24:33 +11002829 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002830
millert@openbsd.orgec04dc42015-06-05 15:13:13 +00002831 if (is_client && fwd->connect_path != NULL) {
2832 host = fwd->connect_path;
2833 } else {
2834 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2835 fwd->listen_host : fwd->connect_host;
2836 if (host == NULL) {
2837 error("No forward host name.");
2838 return 0;
2839 }
2840 if (strlen(host) >= NI_MAXHOST) {
2841 error("Forward host name too long.");
2842 return 0;
2843 }
Kevin Steves12057502001-02-05 14:54:34 +00002844 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002845
Damien Millerf6dff7c2011-09-22 21:38:52 +10002846 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10002847 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
2848 is_client, fwd_opts);
2849 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002850 type, wildcard, (addr == NULL) ? "NULL" : addr);
2851
2852 /*
Damien Miller34132e52000-01-14 15:45:46 +11002853 * getaddrinfo returns a loopback address if the hostname is
2854 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002855 */
Damien Miller34132e52000-01-14 15:45:46 +11002856 memset(&hints, 0, sizeof(hints));
2857 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002858 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002859 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10002860 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002861 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2862 if (addr == NULL) {
2863 /* This really shouldn't happen */
2864 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002865 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002866 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002867 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11002868 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002869 }
Damien Millera7270302005-07-06 09:36:05 +10002870 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002871 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002872 if (allocated_listen_port != NULL)
2873 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002874 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002875 switch (ai->ai_family) {
2876 case AF_INET:
2877 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2878 sin_port;
2879 break;
2880 case AF_INET6:
2881 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2882 sin6_port;
2883 break;
2884 default:
Damien Miller34132e52000-01-14 15:45:46 +11002885 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002886 }
2887 /*
2888 * If allocating a port for -R forwards, then use the
2889 * same port for all address families.
2890 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002891 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002892 allocated_listen_port != NULL && *allocated_listen_port > 0)
2893 *lport_p = htons(*allocated_listen_port);
2894
Damien Miller34132e52000-01-14 15:45:46 +11002895 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2896 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10002897 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11002898 continue;
2899 }
2900 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002901 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002902 if (sock < 0) {
2903 /* this is no error since kernel may not support ipv6 */
2904 verbose("socket: %.100s", strerror(errno));
2905 continue;
2906 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002907
2908 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002909 if (ai->ai_family == AF_INET6)
2910 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002911
Damien Miller4bf648f2009-02-14 16:28:21 +11002912 debug("Local forwarding listening on %s port %s.",
2913 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002914
Damien Miller34132e52000-01-14 15:45:46 +11002915 /* Bind the socket to the address. */
2916 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2917 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002918 if (!ai->ai_next)
2919 error("bind: %.100s", strerror(errno));
2920 else
2921 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002922
Damien Miller34132e52000-01-14 15:45:46 +11002923 close(sock);
2924 continue;
2925 }
2926 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002927 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002928 error("listen: %.100s", strerror(errno));
2929 close(sock);
2930 continue;
2931 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002932
2933 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10002934 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11002935 * record what we got.
2936 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002937 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002938 allocated_listen_port != NULL &&
2939 *allocated_listen_port == 0) {
djm@openbsd.org95767262016-03-07 19:02:43 +00002940 *allocated_listen_port = get_local_port(sock);
Damien Miller4bf648f2009-02-14 16:28:21 +11002941 debug("Allocated listen port %d",
2942 *allocated_listen_port);
2943 }
2944
Damien Miller34132e52000-01-14 15:45:46 +11002945 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002946 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002947 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002948 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002949 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10002950 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002951 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10002952 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11002953 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2954 c->listening_port = *allocated_listen_port;
2955 else
Damien Miller7acefbb2014-07-18 14:11:24 +10002956 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002957 success = 1;
2958 }
2959 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10002960 error("%s: cannot listen to port: %d", __func__,
2961 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002962 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002963 return success;
Damien Miller95def091999-11-25 00:26:21 +11002964}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002965
Damien Miller7acefbb2014-07-18 14:11:24 +10002966static int
2967channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
2968 struct ForwardOptions *fwd_opts)
2969{
2970 struct sockaddr_un sunaddr;
2971 const char *path;
2972 Channel *c;
2973 int port, sock;
2974 mode_t omask;
2975
2976 switch (type) {
2977 case SSH_CHANNEL_UNIX_LISTENER:
2978 if (fwd->connect_path != NULL) {
2979 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
2980 error("Local connecting path too long: %s",
2981 fwd->connect_path);
2982 return 0;
2983 }
2984 path = fwd->connect_path;
2985 port = PORT_STREAMLOCAL;
2986 } else {
2987 if (fwd->connect_host == NULL) {
2988 error("No forward host name.");
2989 return 0;
2990 }
2991 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
2992 error("Forward host name too long.");
2993 return 0;
2994 }
2995 path = fwd->connect_host;
2996 port = fwd->connect_port;
2997 }
2998 break;
2999 case SSH_CHANNEL_RUNIX_LISTENER:
3000 path = fwd->listen_path;
3001 port = PORT_STREAMLOCAL;
3002 break;
3003 default:
3004 error("%s: unexpected channel type %d", __func__, type);
3005 return 0;
3006 }
3007
3008 if (fwd->listen_path == NULL) {
3009 error("No forward path name.");
3010 return 0;
3011 }
3012 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
3013 error("Local listening path too long: %s", fwd->listen_path);
3014 return 0;
3015 }
3016
3017 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
3018
3019 /* Start a Unix domain listener. */
3020 omask = umask(fwd_opts->streamlocal_bind_mask);
3021 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
3022 fwd_opts->streamlocal_bind_unlink);
3023 umask(omask);
3024 if (sock < 0)
3025 return 0;
3026
3027 debug("Local forwarding listening on path %s.", fwd->listen_path);
3028
3029 /* Allocate a channel number for the socket. */
3030 c = channel_new("unix listener", type, sock, sock, -1,
3031 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3032 0, "unix listener", 1);
3033 c->path = xstrdup(path);
3034 c->host_port = port;
3035 c->listening_port = PORT_STREAMLOCAL;
3036 c->listening_addr = xstrdup(fwd->listen_path);
3037 return 1;
3038}
3039
3040static int
3041channel_cancel_rport_listener_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003042{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003043 u_int i;
3044 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003045
Darren Tucker47eede72005-03-14 23:08:12 +11003046 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003047 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003048 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3049 continue;
3050 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3051 debug2("%s: close channel %d", __func__, i);
3052 channel_free(c);
3053 found = 1;
3054 }
3055 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003056
Damien Millerf6dff7c2011-09-22 21:38:52 +10003057 return (found);
3058}
3059
Damien Miller7acefbb2014-07-18 14:11:24 +10003060static int
3061channel_cancel_rport_listener_streamlocal(const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003062{
3063 u_int i;
3064 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003065
3066 for (i = 0; i < channels_alloc; i++) {
3067 Channel *c = channels[i];
3068 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3069 continue;
3070 if (c->path == NULL)
3071 continue;
3072 if (strcmp(c->path, path) == 0) {
3073 debug2("%s: close channel %d", __func__, i);
3074 channel_free(c);
3075 found = 1;
3076 }
3077 }
3078
3079 return (found);
3080}
3081
3082int
3083channel_cancel_rport_listener(struct Forward *fwd)
3084{
3085 if (fwd->listen_path != NULL)
3086 return channel_cancel_rport_listener_streamlocal(fwd->listen_path);
3087 else
3088 return channel_cancel_rport_listener_tcpip(fwd->listen_host, fwd->listen_port);
3089}
3090
3091static int
3092channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport,
3093 int cport, struct ForwardOptions *fwd_opts)
3094{
3095 u_int i;
3096 int found = 0;
3097 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003098
3099 for (i = 0; i < channels_alloc; i++) {
3100 Channel *c = channels[i];
3101 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3102 continue;
Damien Millerff773642011-09-22 21:39:48 +10003103 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003104 continue;
Damien Millerff773642011-09-22 21:39:48 +10003105 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3106 /* skip dynamic forwardings */
3107 if (c->host_port == 0)
3108 continue;
3109 } else {
3110 if (c->host_port != cport)
3111 continue;
3112 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003113 if ((c->listening_addr == NULL && addr != NULL) ||
3114 (c->listening_addr != NULL && addr == NULL))
3115 continue;
3116 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003117 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10003118 channel_free(c);
3119 found = 1;
3120 }
3121 }
3122
3123 return (found);
3124}
3125
Damien Miller7acefbb2014-07-18 14:11:24 +10003126static int
3127channel_cancel_lport_listener_streamlocal(const char *path)
3128{
3129 u_int i;
3130 int found = 0;
3131
3132 if (path == NULL) {
3133 error("%s: no path specified.", __func__);
3134 return 0;
3135 }
3136
3137 for (i = 0; i < channels_alloc; i++) {
3138 Channel *c = channels[i];
3139 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3140 continue;
3141 if (c->listening_addr == NULL)
3142 continue;
3143 if (strcmp(c->listening_addr, path) == 0) {
3144 debug2("%s: close channel %d", __func__, i);
3145 channel_free(c);
3146 found = 1;
3147 }
3148 }
3149
3150 return (found);
3151}
3152
3153int
3154channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
3155{
3156 if (fwd->listen_path != NULL)
3157 return channel_cancel_lport_listener_streamlocal(fwd->listen_path);
3158 else
3159 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3160}
3161
Damien Millerb16461c2002-01-22 23:29:22 +11003162/* protocol local port fwd, used by ssh (and sshd in v1) */
3163int
Damien Miller7acefbb2014-07-18 14:11:24 +10003164channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003165{
Damien Miller7acefbb2014-07-18 14:11:24 +10003166 if (fwd->listen_path != NULL) {
3167 return channel_setup_fwd_listener_streamlocal(
3168 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3169 } else {
3170 return channel_setup_fwd_listener_tcpip(SSH_CHANNEL_PORT_LISTENER,
3171 fwd, NULL, fwd_opts);
3172 }
Damien Millerb16461c2002-01-22 23:29:22 +11003173}
3174
3175/* protocol v2 remote port fwd, used by sshd */
3176int
Damien Miller7acefbb2014-07-18 14:11:24 +10003177channel_setup_remote_fwd_listener(struct Forward *fwd,
3178 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003179{
Damien Miller7acefbb2014-07-18 14:11:24 +10003180 if (fwd->listen_path != NULL) {
3181 return channel_setup_fwd_listener_streamlocal(
3182 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3183 } else {
3184 return channel_setup_fwd_listener_tcpip(
3185 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3186 fwd_opts);
3187 }
Damien Millerb16461c2002-01-22 23:29:22 +11003188}
3189
Damien Miller5428f641999-11-25 11:54:57 +11003190/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003191 * Translate the requested rfwd listen host to something usable for
3192 * this server.
3193 */
3194static const char *
3195channel_rfwd_bind_host(const char *listen_host)
3196{
3197 if (listen_host == NULL) {
3198 if (datafellows & SSH_BUG_RFWD_ADDR)
3199 return "127.0.0.1";
3200 else
3201 return "localhost";
3202 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3203 if (datafellows & SSH_BUG_RFWD_ADDR)
3204 return "0.0.0.0";
3205 else
3206 return "";
3207 } else
3208 return listen_host;
3209}
3210
3211/*
Damien Miller5428f641999-11-25 11:54:57 +11003212 * Initiate forwarding of connections to port "port" on remote host through
3213 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003214 * Returns handle (index) for updating the dynamic listen port with
3215 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003216 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003217int
Damien Miller7acefbb2014-07-18 14:11:24 +10003218channel_request_remote_forwarding(struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003219{
Darren Tucker68afb8c2011-10-02 18:59:03 +11003220 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003221
Damien Miller95def091999-11-25 00:26:21 +11003222 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10003223 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10003224 packet_start(SSH2_MSG_GLOBAL_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003225 if (fwd->listen_path != NULL) {
3226 packet_put_cstring("streamlocal-forward@openssh.com");
3227 packet_put_char(1); /* boolean: want reply */
3228 packet_put_cstring(fwd->listen_path);
3229 } else {
3230 packet_put_cstring("tcpip-forward");
3231 packet_put_char(1); /* boolean: want reply */
3232 packet_put_cstring(channel_rfwd_bind_host(fwd->listen_host));
3233 packet_put_int(fwd->listen_port);
3234 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003235 packet_send();
3236 packet_write_wait();
3237 /* Assume that server accepts the request */
3238 success = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003239 } else if (fwd->listen_path == NULL) {
Damien Miller33b13562000-04-04 14:38:59 +10003240 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003241 packet_put_int(fwd->listen_port);
3242 packet_put_cstring(fwd->connect_host);
3243 packet_put_int(fwd->connect_port);
Damien Miller33b13562000-04-04 14:38:59 +10003244 packet_send();
3245 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003246
3247 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003248 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003249 switch (type) {
3250 case SSH_SMSG_SUCCESS:
3251 success = 1;
3252 break;
3253 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003254 break;
3255 default:
3256 /* Unknown packet */
3257 packet_disconnect("Protocol error for port forward request:"
3258 "received packet type %d.", type);
3259 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003260 } else {
3261 logit("Warning: Server does not support remote stream local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11003262 }
3263 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003264 /* Record that connection to this host/port is permitted. */
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00003265 permitted_opens = xreallocarray(permitted_opens,
Damien Miller232cfb12010-06-26 09:50:30 +10003266 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003267 idx = num_permitted_opens++;
Damien Miller7acefbb2014-07-18 14:11:24 +10003268 if (fwd->connect_path != NULL) {
3269 permitted_opens[idx].host_to_connect =
3270 xstrdup(fwd->connect_path);
3271 permitted_opens[idx].port_to_connect =
3272 PORT_STREAMLOCAL;
3273 } else {
3274 permitted_opens[idx].host_to_connect =
3275 xstrdup(fwd->connect_host);
3276 permitted_opens[idx].port_to_connect =
3277 fwd->connect_port;
3278 }
3279 if (fwd->listen_path != NULL) {
3280 permitted_opens[idx].listen_host = NULL;
3281 permitted_opens[idx].listen_path =
3282 xstrdup(fwd->listen_path);
3283 permitted_opens[idx].listen_port = PORT_STREAMLOCAL;
3284 } else {
3285 permitted_opens[idx].listen_host =
3286 fwd->listen_host ? xstrdup(fwd->listen_host) : NULL;
3287 permitted_opens[idx].listen_path = NULL;
3288 permitted_opens[idx].listen_port = fwd->listen_port;
3289 }
Damien Miller33b13562000-04-04 14:38:59 +10003290 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003291 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003292}
3293
Damien Miller4b3ed642014-07-02 15:29:40 +10003294static int
3295open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003296 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003297{
3298 if (allowed_open->host_to_connect == NULL)
3299 return 0;
3300 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3301 allowed_open->port_to_connect != requestedport)
3302 return 0;
dtucker@openbsd.orgd7eabc82016-07-19 11:38:53 +00003303 if (strcmp(allowed_open->host_to_connect, FWD_PERMIT_ANY_HOST) != 0 &&
3304 strcmp(allowed_open->host_to_connect, requestedhost) != 0)
Damien Miller4b3ed642014-07-02 15:29:40 +10003305 return 0;
3306 return 1;
3307}
3308
3309/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003310 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003311 * we don't support FWD_PERMIT_ANY_PORT and
3312 * need to translate between the configured-host (listen_host)
3313 * and what we've sent to the remote server (channel_rfwd_bind_host)
3314 */
3315static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003316open_listen_match_tcpip(ForwardPermission *allowed_open,
3317 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003318{
3319 const char *allowed_host;
3320
3321 if (allowed_open->host_to_connect == NULL)
3322 return 0;
3323 if (allowed_open->listen_port != requestedport)
3324 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003325 if (!translate && allowed_open->listen_host == NULL &&
3326 requestedhost == NULL)
3327 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003328 allowed_host = translate ?
3329 channel_rfwd_bind_host(allowed_open->listen_host) :
3330 allowed_open->listen_host;
3331 if (allowed_host == NULL ||
3332 strcmp(allowed_host, requestedhost) != 0)
3333 return 0;
3334 return 1;
3335}
3336
Damien Miller7acefbb2014-07-18 14:11:24 +10003337static int
3338open_listen_match_streamlocal(ForwardPermission *allowed_open,
3339 const char *requestedpath)
3340{
3341 if (allowed_open->host_to_connect == NULL)
3342 return 0;
3343 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3344 return 0;
3345 if (allowed_open->listen_path == NULL ||
3346 strcmp(allowed_open->listen_path, requestedpath) != 0)
3347 return 0;
3348 return 1;
3349}
3350
Damien Miller5428f641999-11-25 11:54:57 +11003351/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003352 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003353 * local side.
3354 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003355static int
3356channel_request_rforward_cancel_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003357{
3358 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003359
3360 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003361 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003362
3363 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003364 if (open_listen_match_tcpip(&permitted_opens[i], host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003365 break;
3366 }
3367 if (i >= num_permitted_opens) {
3368 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003369 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003370 }
3371 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3372 packet_put_cstring("cancel-tcpip-forward");
3373 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003374 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003375 packet_put_int(port);
3376 packet_send();
3377
Damien Miller4b3ed642014-07-02 15:29:40 +10003378 permitted_opens[i].listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003379 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003380 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003381 permitted_opens[i].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003382 free(permitted_opens[i].listen_host);
3383 permitted_opens[i].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003384 permitted_opens[i].listen_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003385
3386 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003387}
3388
3389/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003390 * Request cancellation of remote forwarding of Unix domain socket
3391 * path from local side.
3392 */
3393static int
3394channel_request_rforward_cancel_streamlocal(const char *path)
3395{
3396 int i;
3397
3398 if (!compat20)
3399 return -1;
3400
3401 for (i = 0; i < num_permitted_opens; i++) {
3402 if (open_listen_match_streamlocal(&permitted_opens[i], path))
3403 break;
3404 }
3405 if (i >= num_permitted_opens) {
3406 debug("%s: requested forward not found", __func__);
3407 return -1;
3408 }
3409 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3410 packet_put_cstring("cancel-streamlocal-forward@openssh.com");
3411 packet_put_char(0);
3412 packet_put_cstring(path);
3413 packet_send();
3414
3415 permitted_opens[i].listen_port = 0;
3416 permitted_opens[i].port_to_connect = 0;
3417 free(permitted_opens[i].host_to_connect);
3418 permitted_opens[i].host_to_connect = NULL;
3419 permitted_opens[i].listen_host = NULL;
3420 free(permitted_opens[i].listen_path);
3421 permitted_opens[i].listen_path = NULL;
3422
3423 return 0;
3424}
3425
3426/*
3427 * Request cancellation of remote forwarding of a connection from local side.
3428 */
3429int
3430channel_request_rforward_cancel(struct Forward *fwd)
3431{
3432 if (fwd->listen_path != NULL) {
3433 return (channel_request_rforward_cancel_streamlocal(
3434 fwd->listen_path));
3435 } else {
3436 return (channel_request_rforward_cancel_tcpip(fwd->listen_host,
3437 fwd->listen_port ? fwd->listen_port : fwd->allocated_port));
3438 }
3439}
3440
3441/*
Damien Miller5428f641999-11-25 11:54:57 +11003442 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3443 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003444 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003445 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003446int
Damien Miller7acefbb2014-07-18 14:11:24 +10003447channel_input_port_forward_request(int is_root, struct ForwardOptions *fwd_opts)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003448{
Darren Tuckere7d4b192006-07-12 22:17:10 +10003449 int success = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003450 struct Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003451
Damien Miller95def091999-11-25 00:26:21 +11003452 /* Get arguments from the packet. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003453 memset(&fwd, 0, sizeof(fwd));
3454 fwd.listen_port = packet_get_int();
3455 fwd.connect_host = packet_get_string(NULL);
3456 fwd.connect_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003457
Damien Millerbac2d8a2000-09-05 16:13:06 +11003458#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003459 /*
3460 * Check that an unprivileged user is not trying to forward a
3461 * privileged port.
3462 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003463 if (fwd.listen_port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003464 packet_disconnect(
3465 "Requested forwarding of port %d but user is not root.",
Damien Miller7acefbb2014-07-18 14:11:24 +10003466 fwd.listen_port);
3467 if (fwd.connect_port == 0)
Darren Tucker9189ff82003-07-03 13:52:04 +10003468 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003469#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003470
Damien Miller0bc1bd82000-11-13 22:57:25 +11003471 /* Initiate forwarding */
Damien Miller7acefbb2014-07-18 14:11:24 +10003472 success = channel_setup_local_fwd_listener(&fwd, fwd_opts);
Damien Miller95def091999-11-25 00:26:21 +11003473
3474 /* Free the argument string. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003475 free(fwd.connect_host);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003476
3477 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003478}
3479
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003480/*
3481 * Permits opening to any host/port if permitted_opens[] is empty. This is
3482 * usually called by the server, because the user could connect to any port
3483 * anyway, and the server has no way to know but to trust the client anyway.
3484 */
3485void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003486channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003487{
3488 if (num_permitted_opens == 0)
3489 all_opens_permitted = 1;
3490}
3491
Ben Lindstroma3700052001-04-05 23:26:32 +00003492void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003493channel_add_permitted_opens(char *host, int port)
3494{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003495 debug("allow port forwarding to host %s port %d", host, port);
3496
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00003497 permitted_opens = xreallocarray(permitted_opens,
Damien Miller232cfb12010-06-26 09:50:30 +10003498 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003499 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3500 permitted_opens[num_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003501 permitted_opens[num_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003502 permitted_opens[num_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003503 permitted_opens[num_permitted_opens].listen_port = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003504 num_permitted_opens++;
3505
3506 all_opens_permitted = 0;
3507}
3508
Darren Tucker68afb8c2011-10-02 18:59:03 +11003509/*
3510 * Update the listen port for a dynamic remote forward, after
3511 * the actual 'newport' has been allocated. If 'newport' < 0 is
3512 * passed then they entry will be invalidated.
3513 */
3514void
3515channel_update_permitted_opens(int idx, int newport)
3516{
3517 if (idx < 0 || idx >= num_permitted_opens) {
3518 debug("channel_update_permitted_opens: index out of range:"
3519 " %d num_permitted_opens %d", idx, num_permitted_opens);
3520 return;
3521 }
3522 debug("%s allowed port %d for forwarding to host %s port %d",
3523 newport > 0 ? "Updating" : "Removing",
3524 newport,
3525 permitted_opens[idx].host_to_connect,
3526 permitted_opens[idx].port_to_connect);
3527 if (newport >= 0) {
3528 permitted_opens[idx].listen_port =
3529 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3530 } else {
3531 permitted_opens[idx].listen_port = 0;
3532 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003533 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003534 permitted_opens[idx].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003535 free(permitted_opens[idx].listen_host);
3536 permitted_opens[idx].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003537 free(permitted_opens[idx].listen_path);
3538 permitted_opens[idx].listen_path = NULL;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003539 }
3540}
3541
Damien Millera765cf42006-07-24 14:08:13 +10003542int
Damien Miller9b439df2006-07-24 14:04:00 +10003543channel_add_adm_permitted_opens(char *host, int port)
3544{
Damien Millera765cf42006-07-24 14:08:13 +10003545 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003546
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00003547 permitted_adm_opens = xreallocarray(permitted_adm_opens,
Damien Miller232cfb12010-06-26 09:50:30 +10003548 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003549 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3550 = xstrdup(host);
3551 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003552 permitted_adm_opens[num_adm_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003553 permitted_adm_opens[num_adm_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003554 permitted_adm_opens[num_adm_permitted_opens].listen_port = 0;
Damien Millera765cf42006-07-24 14:08:13 +10003555 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003556}
3557
3558void
Damien Millerc6081482012-04-22 11:18:53 +10003559channel_disable_adm_local_opens(void)
3560{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003561 channel_clear_adm_permitted_opens();
dtucker@openbsd.org297060f2015-05-08 03:25:07 +00003562 permitted_adm_opens = xcalloc(sizeof(*permitted_adm_opens), 1);
Damien Milleraa5b3f82012-12-03 09:50:54 +11003563 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3564 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003565}
3566
3567void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003568channel_clear_permitted_opens(void)
3569{
3570 int i;
3571
Damien Miller4b3ed642014-07-02 15:29:40 +10003572 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003573 free(permitted_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003574 free(permitted_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003575 free(permitted_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003576 }
Darren Tuckera627d422013-06-02 07:31:17 +10003577 free(permitted_opens);
3578 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003579 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003580}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003581
Damien Miller9b439df2006-07-24 14:04:00 +10003582void
3583channel_clear_adm_permitted_opens(void)
3584{
3585 int i;
3586
Damien Miller4b3ed642014-07-02 15:29:40 +10003587 for (i = 0; i < num_adm_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003588 free(permitted_adm_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003589 free(permitted_adm_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003590 free(permitted_adm_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003591 }
Darren Tuckera627d422013-06-02 07:31:17 +10003592 free(permitted_adm_opens);
3593 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003594 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003595}
3596
Darren Tuckere7140f22008-06-10 23:01:51 +10003597void
3598channel_print_adm_permitted_opens(void)
3599{
Damien Miller6ef17492008-07-16 22:42:06 +10003600 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003601
Damien Millerb53d8a12009-01-28 16:13:04 +11003602 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003603 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003604 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003605 return;
3606 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003607 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003608 if (permitted_adm_opens[i].host_to_connect == NULL)
3609 printf(" none");
3610 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003611 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3612 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003613 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003614}
3615
Darren Tucker1338b9e2011-10-02 18:57:35 +11003616/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3617int
3618permitopen_port(const char *p)
3619{
3620 int port;
3621
3622 if (strcmp(p, "*") == 0)
3623 return FWD_PERMIT_ANY_PORT;
3624 if ((port = a2port(p)) > 0)
3625 return port;
3626 return -1;
3627}
3628
Damien Millerbd740252008-05-19 15:37:09 +10003629/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003630static int
Damien Millerbd740252008-05-19 15:37:09 +10003631connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003632{
Damien Millerbd740252008-05-19 15:37:09 +10003633 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003634 struct sockaddr_un *sunaddr;
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00003635 char ntop[NI_MAXHOST], strport[MAXIMUM(NI_MAXSERV,sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003636
Damien Millerbd740252008-05-19 15:37:09 +10003637 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003638 switch (cctx->ai->ai_family) {
3639 case AF_UNIX:
3640 /* unix:pathname instead of host:port */
3641 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3642 strlcpy(ntop, "unix", sizeof(ntop));
3643 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3644 break;
3645 case AF_INET:
3646 case AF_INET6:
3647 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3648 ntop, sizeof(ntop), strport, sizeof(strport),
3649 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3650 error("connect_next: getnameinfo failed");
3651 continue;
3652 }
3653 break;
3654 default:
Damien Miller34132e52000-01-14 15:45:46 +11003655 continue;
3656 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003657 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3658 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003659 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003660 error("socket: %.100s", strerror(errno));
3661 else
3662 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003663 continue;
3664 }
Damien Miller232711f2004-06-15 10:35:30 +10003665 if (set_nonblock(sock) == -1)
3666 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003667 if (connect(sock, cctx->ai->ai_addr,
3668 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3669 debug("connect_next: host %.100s ([%.100s]:%s): "
3670 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003671 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003672 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003673 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003674 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003675 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003676 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003677 if (cctx->ai->ai_family != AF_UNIX)
3678 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003679 debug("connect_next: host %.100s ([%.100s]:%s) "
3680 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3681 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10003682 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003683 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003684 return -1;
3685}
Damien Millerb38eff82000-04-01 11:09:21 +10003686
Damien Millerbd740252008-05-19 15:37:09 +10003687static void
3688channel_connect_ctx_free(struct channel_connect *cctx)
3689{
Darren Tuckera627d422013-06-02 07:31:17 +10003690 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003691 if (cctx->aitop) {
3692 if (cctx->aitop->ai_family == AF_UNIX)
3693 free(cctx->aitop);
3694 else
3695 freeaddrinfo(cctx->aitop);
3696 }
Damien Miller1d2c4562014-02-04 11:18:20 +11003697 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003698}
3699
Damien Miller7acefbb2014-07-18 14:11:24 +10003700/* Return CONNECTING channel to remote host:port or local socket path */
Damien Millerbd740252008-05-19 15:37:09 +10003701static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003702connect_to(const char *name, int port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003703{
3704 struct addrinfo hints;
3705 int gaierr;
3706 int sock = -1;
3707 char strport[NI_MAXSERV];
3708 struct channel_connect cctx;
3709 Channel *c;
3710
Damien Miller2bcb8662008-07-12 17:12:29 +10003711 memset(&cctx, 0, sizeof(cctx));
Damien Miller7acefbb2014-07-18 14:11:24 +10003712
3713 if (port == PORT_STREAMLOCAL) {
3714 struct sockaddr_un *sunaddr;
3715 struct addrinfo *ai;
3716
3717 if (strlen(name) > sizeof(sunaddr->sun_path)) {
3718 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
3719 return (NULL);
3720 }
3721
3722 /*
3723 * Fake up a struct addrinfo for AF_UNIX connections.
3724 * channel_connect_ctx_free() must check ai_family
3725 * and use free() not freeaddirinfo() for AF_UNIX.
3726 */
3727 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
3728 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
3729 ai->ai_addr = (struct sockaddr *)(ai + 1);
3730 ai->ai_addrlen = sizeof(*sunaddr);
3731 ai->ai_family = AF_UNIX;
3732 ai->ai_socktype = SOCK_STREAM;
3733 ai->ai_protocol = PF_UNSPEC;
3734 sunaddr = (struct sockaddr_un *)ai->ai_addr;
3735 sunaddr->sun_family = AF_UNIX;
3736 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
3737 cctx.aitop = ai;
3738 } else {
3739 memset(&hints, 0, sizeof(hints));
3740 hints.ai_family = IPv4or6;
3741 hints.ai_socktype = SOCK_STREAM;
3742 snprintf(strport, sizeof strport, "%d", port);
3743 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx.aitop)) != 0) {
3744 error("connect_to %.100s: unknown host (%s)", name,
3745 ssh_gai_strerror(gaierr));
3746 return NULL;
3747 }
Damien Millerbd740252008-05-19 15:37:09 +10003748 }
3749
Damien Miller7acefbb2014-07-18 14:11:24 +10003750 cctx.host = xstrdup(name);
Damien Millerbd740252008-05-19 15:37:09 +10003751 cctx.port = port;
3752 cctx.ai = cctx.aitop;
3753
3754 if ((sock = connect_next(&cctx)) == -1) {
3755 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10003756 name, port, strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003757 channel_connect_ctx_free(&cctx);
3758 return NULL;
3759 }
3760 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3761 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3762 c->connect_ctx = cctx;
3763 return c;
3764}
3765
3766Channel *
Damien Miller4b3ed642014-07-02 15:29:40 +10003767channel_connect_by_listen_address(const char *listen_host,
3768 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003769{
3770 int i;
3771
3772 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003773 if (open_listen_match_tcpip(&permitted_opens[i], listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10003774 listen_port, 1)) {
Damien Millerbd740252008-05-19 15:37:09 +10003775 return connect_to(
3776 permitted_opens[i].host_to_connect,
3777 permitted_opens[i].port_to_connect, ctype, rname);
3778 }
3779 }
3780 error("WARNING: Server requests forwarding for unknown listen_port %d",
3781 listen_port);
3782 return NULL;
3783}
3784
Damien Miller7acefbb2014-07-18 14:11:24 +10003785Channel *
3786channel_connect_by_listen_path(const char *path, char *ctype, char *rname)
3787{
3788 int i;
3789
3790 for (i = 0; i < num_permitted_opens; i++) {
3791 if (open_listen_match_streamlocal(&permitted_opens[i], path)) {
3792 return connect_to(
3793 permitted_opens[i].host_to_connect,
3794 permitted_opens[i].port_to_connect, ctype, rname);
3795 }
3796 }
3797 error("WARNING: Server requests forwarding for unknown path %.100s",
3798 path);
3799 return NULL;
3800}
3801
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003802/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003803Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003804channel_connect_to_port(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003805{
Damien Miller9b439df2006-07-24 14:04:00 +10003806 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003807
3808 permit = all_opens_permitted;
3809 if (!permit) {
3810 for (i = 0; i < num_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003811 if (open_match(&permitted_opens[i], host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003812 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003813 break;
3814 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003815 }
Damien Miller9b439df2006-07-24 14:04:00 +10003816
3817 if (num_adm_permitted_opens > 0) {
3818 permit_adm = 0;
3819 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003820 if (open_match(&permitted_adm_opens[i], host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10003821 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003822 break;
3823 }
Damien Miller9b439df2006-07-24 14:04:00 +10003824 }
3825
3826 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003827 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003828 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003829 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003830 }
Damien Millerbd740252008-05-19 15:37:09 +10003831 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003832}
3833
Damien Miller7acefbb2014-07-18 14:11:24 +10003834/* Check if connecting to that path is permitted and connect. */
3835Channel *
3836channel_connect_to_path(const char *path, char *ctype, char *rname)
3837{
3838 int i, permit, permit_adm = 1;
3839
3840 permit = all_opens_permitted;
3841 if (!permit) {
3842 for (i = 0; i < num_permitted_opens; i++)
3843 if (open_match(&permitted_opens[i], path, PORT_STREAMLOCAL)) {
3844 permit = 1;
3845 break;
3846 }
3847 }
3848
3849 if (num_adm_permitted_opens > 0) {
3850 permit_adm = 0;
3851 for (i = 0; i < num_adm_permitted_opens; i++)
3852 if (open_match(&permitted_adm_opens[i], path, PORT_STREAMLOCAL)) {
3853 permit_adm = 1;
3854 break;
3855 }
3856 }
3857
3858 if (!permit || !permit_adm) {
3859 logit("Received request to connect to path %.100s, "
3860 "but the request was denied.", path);
3861 return NULL;
3862 }
3863 return connect_to(path, PORT_STREAMLOCAL, ctype, rname);
3864}
3865
Damien Miller0e220db2004-06-15 10:34:08 +10003866void
3867channel_send_window_changes(void)
3868{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003869 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003870 struct winsize ws;
3871
3872 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003873 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003874 channels[i]->type != SSH_CHANNEL_OPEN)
3875 continue;
3876 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3877 continue;
3878 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003879 packet_put_int((u_int)ws.ws_col);
3880 packet_put_int((u_int)ws.ws_row);
3881 packet_put_int((u_int)ws.ws_xpixel);
3882 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003883 packet_send();
3884 }
3885}
3886
Ben Lindstrome9c99912001-06-09 00:41:05 +00003887/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003888
Damien Miller5428f641999-11-25 11:54:57 +11003889/*
3890 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003891 * Returns 0 and a suitable display number for the DISPLAY variable
3892 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003893 */
Kevin Steves366298c2001-12-19 17:58:01 +00003894int
Damien Miller95c249f2002-02-05 12:11:34 +11003895x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003896 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003897{
Damien Millere7378562001-12-21 14:58:35 +11003898 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003899 int display_number, sock;
3900 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003901 struct addrinfo hints, *ai, *aitop;
3902 char strport[NI_MAXSERV];
3903 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003904
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003905 if (chanids == NULL)
3906 return -1;
3907
Damien Millera34a28b1999-12-14 10:47:15 +11003908 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003909 display_number < MAX_DISPLAYS;
3910 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003911 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003912 memset(&hints, 0, sizeof(hints));
3913 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003914 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003915 hints.ai_socktype = SOCK_STREAM;
3916 snprintf(strport, sizeof strport, "%d", port);
3917 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003918 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003919 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003920 }
Damien Miller34132e52000-01-14 15:45:46 +11003921 for (ai = aitop; ai; ai = ai->ai_next) {
3922 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3923 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003924 sock = socket(ai->ai_family, ai->ai_socktype,
3925 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003926 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003927 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3928#ifdef EPFNOSUPPORT
3929 && (errno != EPFNOSUPPORT)
3930#endif
3931 ) {
Damien Millere2192732000-01-17 13:22:55 +11003932 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003933 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003934 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003935 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003936 debug("x11_create_display_inet: Socket family %d not supported",
3937 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003938 continue;
3939 }
Damien Miller34132e52000-01-14 15:45:46 +11003940 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003941 if (ai->ai_family == AF_INET6)
3942 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003943 if (x11_use_localhost)
3944 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003945 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003946 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003947 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003948
Damien Miller34132e52000-01-14 15:45:46 +11003949 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003950 close(socks[n]);
3951 }
3952 num_socks = 0;
3953 break;
3954 }
3955 socks[num_socks++] = sock;
3956 if (num_socks == NUM_SOCKS)
3957 break;
Damien Miller95def091999-11-25 00:26:21 +11003958 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003959 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003960 if (num_socks > 0)
3961 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003962 }
Damien Miller95def091999-11-25 00:26:21 +11003963 if (display_number >= MAX_DISPLAYS) {
3964 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003965 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003966 }
Damien Miller95def091999-11-25 00:26:21 +11003967 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003968 for (n = 0; n < num_socks; n++) {
3969 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003970 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003971 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003972 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003973 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003974 }
Damien Miller95def091999-11-25 00:26:21 +11003975 }
Damien Miller34132e52000-01-14 15:45:46 +11003976
Damien Miller34132e52000-01-14 15:45:46 +11003977 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003978 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003979 for (n = 0; n < num_socks; n++) {
3980 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003981 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003982 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3983 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003984 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003985 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003986 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003987 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003988 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003989
Kevin Steves366298c2001-12-19 17:58:01 +00003990 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003991 *display_numberp = display_number;
3992 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003993}
3994
Ben Lindstrombba81212001-06-25 05:01:22 +00003995static int
Damien Miller819dbb62009-01-21 16:46:26 +11003996connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003997{
Damien Miller95def091999-11-25 00:26:21 +11003998 int sock;
3999 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004000
Damien Miller3afe3752001-12-21 12:39:51 +11004001 sock = socket(AF_UNIX, SOCK_STREAM, 0);
4002 if (sock < 0)
4003 error("socket: %.100s", strerror(errno));
4004 memset(&addr, 0, sizeof(addr));
4005 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11004006 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11004007 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11004008 return sock;
4009 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11004010 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
4011 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004012}
4013
Damien Miller819dbb62009-01-21 16:46:26 +11004014static int
4015connect_local_xsocket(u_int dnr)
4016{
4017 char buf[1024];
4018 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
4019 return connect_local_xsocket_path(buf);
4020}
4021
Damien Millerbd483e72000-04-30 10:00:53 +10004022int
4023x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004024{
Damien Miller57c4e872006-03-31 23:11:07 +11004025 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004026 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004027 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004028 struct addrinfo hints, *ai, *aitop;
4029 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004030 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004031
Damien Miller95def091999-11-25 00:26:21 +11004032 /* Try to open a socket for the local X server. */
4033 display = getenv("DISPLAY");
4034 if (!display) {
4035 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004036 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004037 }
Damien Miller5428f641999-11-25 11:54:57 +11004038 /*
4039 * Now we decode the value of the DISPLAY variable and make a
4040 * connection to the real X server.
4041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004042
Damien Miller819dbb62009-01-21 16:46:26 +11004043 /* Check if the display is from launchd. */
4044#ifdef __APPLE__
4045 if (strncmp(display, "/tmp/launch", 11) == 0) {
4046 sock = connect_local_xsocket_path(display);
4047 if (sock < 0)
4048 return -1;
4049
4050 /* OK, we now have a connection to the display. */
4051 return sock;
4052 }
4053#endif
Damien Miller5428f641999-11-25 11:54:57 +11004054 /*
4055 * Check if it is a unix domain socket. Unix domain displays are in
4056 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4057 */
Damien Miller95def091999-11-25 00:26:21 +11004058 if (strncmp(display, "unix:", 5) == 0 ||
4059 display[0] == ':') {
4060 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11004061 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004062 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004063 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004064 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004065 }
4066 /* Create a socket. */
4067 sock = connect_local_xsocket(display_number);
4068 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004069 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004070
4071 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004072 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004073 }
Damien Miller5428f641999-11-25 11:54:57 +11004074 /*
4075 * Connect to an inet socket. The DISPLAY value is supposedly
4076 * hostname:d[.s], where hostname may also be numeric IP address.
4077 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004078 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004079 cp = strchr(buf, ':');
4080 if (!cp) {
4081 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004082 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004083 }
Damien Miller95def091999-11-25 00:26:21 +11004084 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11004085 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11004086 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004087 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004088 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004089 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004090 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004091
Damien Miller34132e52000-01-14 15:45:46 +11004092 /* Look up the host address */
4093 memset(&hints, 0, sizeof(hints));
4094 hints.ai_family = IPv4or6;
4095 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004096 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004097 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004098 error("%.100s: unknown host. (%s)", buf,
4099 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004100 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004101 }
Damien Miller34132e52000-01-14 15:45:46 +11004102 for (ai = aitop; ai; ai = ai->ai_next) {
4103 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004104 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004105 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004106 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004107 continue;
4108 }
4109 /* Connect it to the display. */
4110 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004111 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004112 6000 + display_number, strerror(errno));
4113 close(sock);
4114 continue;
4115 }
4116 /* Success */
4117 break;
Damien Miller34132e52000-01-14 15:45:46 +11004118 }
Damien Miller34132e52000-01-14 15:45:46 +11004119 freeaddrinfo(aitop);
4120 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11004121 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11004122 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004123 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004124 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004125 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004126 return sock;
4127}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004128
Damien Millerbd483e72000-04-30 10:00:53 +10004129/*
4130 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
4131 * the remote channel number. We should do whatever we want, and respond
4132 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
4133 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004134
Damien Miller8473dd82006-07-24 14:08:32 +10004135/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004136int
Damien Miller630d6f42002-01-22 23:17:30 +11004137x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10004138{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004139 Channel *c = NULL;
4140 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10004141 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10004142
4143 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004144
4145 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00004146
4147 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004148 remote_host = packet_get_string(NULL);
4149 } else {
4150 remote_host = xstrdup("unknown (remote did not supply name)");
4151 }
Damien Miller48b03fc2002-01-22 23:11:40 +11004152 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10004153
4154 /* Obtain a connection to the real X display. */
4155 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004156 if (sock != -1) {
4157 /* Allocate a channel for this connection. */
4158 c = channel_new("connected x11 socket",
4159 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
4160 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11004161 c->remote_id = remote_id;
4162 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004163 }
Darren Tuckera627d422013-06-02 07:31:17 +10004164 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004165 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10004166 /* Send refusal to the remote host. */
4167 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004168 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10004169 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10004170 /* Send a confirmation to the remote host. */
4171 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004172 packet_put_int(remote_id);
4173 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10004174 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004175 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004176 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004177}
4178
Damien Miller69b69aa2000-10-28 14:19:58 +11004179/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10004180/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004181int
Damien Miller630d6f42002-01-22 23:17:30 +11004182deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11004183{
4184 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00004185
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00004186 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11004187 case SSH_SMSG_AGENT_OPEN:
4188 error("Warning: ssh server tried agent forwarding.");
4189 break;
4190 case SSH_SMSG_X11_OPEN:
4191 error("Warning: ssh server tried X11 forwarding.");
4192 break;
4193 default:
Damien Miller630d6f42002-01-22 23:17:30 +11004194 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11004195 break;
4196 }
Damien Miller5eb137c2005-12-31 16:19:53 +11004197 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11004198 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
4199 packet_put_int(rchan);
4200 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004201 return 0;
Damien Miller69b69aa2000-10-28 14:19:58 +11004202}
4203
Damien Miller5428f641999-11-25 11:54:57 +11004204/*
4205 * Requests forwarding of X11 connections, generates fake authentication
4206 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004207 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004208 */
Damien Miller4af51302000-04-16 11:18:38 +10004209void
Damien Miller17e7ed02005-06-17 12:54:33 +10004210x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10004211 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004212{
Ben Lindstrom46c16222000-12-22 01:43:59 +00004213 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004214 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004215 char *new_data;
4216 int screen_number;
4217 const char *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004218
Damien Millerf92c0792005-07-06 09:45:26 +10004219 if (x11_saved_display == NULL)
4220 x11_saved_display = xstrdup(disp);
4221 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004222 error("x11_request_forwarding_with_spoofing: different "
4223 "$DISPLAY already forwarded");
4224 return;
4225 }
4226
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004227 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004228 if (cp)
4229 cp = strchr(cp, '.');
4230 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004231 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004232 else
4233 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004234
Damien Miller13390022005-07-06 09:44:19 +10004235 if (x11_saved_proto == NULL) {
4236 /* Save protocol name. */
4237 x11_saved_proto = xstrdup(proto);
natano@openbsd.org49271082016-09-19 07:52:42 +00004238
4239 /* Extract real authentication data. */
Damien Miller13390022005-07-06 09:44:19 +10004240 x11_saved_data = xmalloc(data_len);
Damien Miller13390022005-07-06 09:44:19 +10004241 for (i = 0; i < data_len; i++) {
4242 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4243 fatal("x11_request_forwarding: bad "
4244 "authentication data: %.100s", data);
Damien Miller13390022005-07-06 09:44:19 +10004245 x11_saved_data[i] = value;
Damien Miller13390022005-07-06 09:44:19 +10004246 }
4247 x11_saved_data_len = data_len;
natano@openbsd.org49271082016-09-19 07:52:42 +00004248
4249 /* Generate fake data of the same length. */
4250 x11_fake_data = xmalloc(data_len);
4251 arc4random_buf(x11_fake_data, data_len);
Damien Miller13390022005-07-06 09:44:19 +10004252 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004253 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004254
Damien Miller95def091999-11-25 00:26:21 +11004255 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10004256 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004257
Damien Miller95def091999-11-25 00:26:21 +11004258 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10004259 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10004260 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10004261 packet_put_char(0); /* XXX bool single connection */
4262 } else {
4263 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
4264 }
4265 packet_put_cstring(proto);
4266 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11004267 packet_put_int(screen_number);
4268 packet_send();
4269 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10004270 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004271}
4272
Ben Lindstrome9c99912001-06-09 00:41:05 +00004273
4274/* -- agent forwarding */
4275
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004276/* Sends a message to the server to request authentication fd forwarding. */
4277
Damien Miller4af51302000-04-16 11:18:38 +10004278void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00004279auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004280{
Damien Miller95def091999-11-25 00:26:21 +11004281 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
4282 packet_send();
4283 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004284}